From adfef48a65cbbe8019e97ac850d873f843d9f923 Mon Sep 17 00:00:00 2001 From: Mohd Haris Date: Fri, 19 Jun 2026 10:51:36 +0530 Subject: [PATCH 001/161] fix: allow rename for Quality Inspection Parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Quality Inspection Parameter DocType did not have `allow_rename` enabled, so the "Rename" action was hidden from the form's menu (the 3-dots / ⋮ options). Since the DocType is auto-named from the `parameter` field (`autoname: field:parameter`), users had no way to correct or change a parameter's name once created. Enable `allow_rename` so users can rename a Quality Inspection Parameter from the form menu. Co-Authored-By: Claude Opus 4.8 --- .../quality_inspection_parameter.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json b/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json index de7d83624ff..4eadca9a04d 100644 --- a/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +++ b/erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_rename": 1, "autoname": "field:parameter", "creation": "2020-12-28 17:06:00.254129", "doctype": "DocType", @@ -34,7 +35,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2024-03-27 13:10:28.861722", + "modified": "2026-06-19 10:55:00.000000", "modified_by": "Administrator", "module": "Stock", "name": "Quality Inspection Parameter", From 168c24f8f0d09195cea02b0cb4314d21809b4845 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 24 Jun 2026 12:23:04 +0530 Subject: [PATCH 002/161] test: add coverage for Fixed Asset Register report The Fixed Asset Register report had no test file. Add tests for asset value (net purchase amount, reduced by opening accumulated depreciation), the status (In Location) and asset category filters, and group-by-asset-category value totals. --- .../test_fixed_asset_register.py | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py diff --git a/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py b/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py new file mode 100644 index 00000000000..d419a839fee --- /dev/null +++ b/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py @@ -0,0 +1,72 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.assets.doctype.asset.test_asset import create_asset, set_depreciation_settings_in_company +from erpnext.assets.report.fixed_asset_register.fixed_asset_register import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestFixedAssetRegister(ERPNextTestSuite): + def setUp(self): + set_depreciation_settings_in_company() + + def run_report(self, **extra): + filters = frappe._dict(company="_Test Company", **extra) + return execute(filters)[1] + + def test_asset_appears_with_purchase_value(self): + asset = create_asset( + item_code="Macbook Pro", net_purchase_amount=100000, purchase_amount=100000, submit=True + ) + + row = next(row for row in self.run_report() if row["asset_id"] == asset.name) + self.assertEqual(row["net_purchase_amount"], 100000) + self.assertEqual(row["asset_value"], 100000) # no depreciation yet + self.assertEqual(row["asset_category"], "Computers") + + def test_asset_value_reduced_by_opening_depreciation(self): + asset = create_asset( + item_code="Macbook Pro", + net_purchase_amount=100000, + purchase_amount=100000, + opening_accumulated_depreciation=20000, + opening_number_of_booked_depreciations=2, + submit=True, + ) + + row = next(row for row in self.run_report() if row["asset_id"] == asset.name) + self.assertEqual(row["opening_accumulated_depreciation"], 20000) + self.assertEqual(row["asset_value"], 80000) # 100000 - 20000 + + def test_status_in_location_filter_shows_active_asset(self): + asset = create_asset( + item_code="Macbook Pro", net_purchase_amount=100000, purchase_amount=100000, submit=True + ) + + ids = {row["asset_id"] for row in self.run_report(status="In Location")} + self.assertIn(asset.name, ids) + + def test_asset_category_filter(self): + asset = create_asset( + item_code="Macbook Pro", net_purchase_amount=100000, purchase_amount=100000, submit=True + ) + + ids = {row["asset_id"] for row in self.run_report(asset_category="Computers")} + self.assertIn(asset.name, ids) + + def test_group_by_asset_category_sums_values(self): + create_asset(item_code="Macbook Pro", net_purchase_amount=100000, purchase_amount=100000, submit=True) + create_asset( + item_code="Macbook Pro", + asset_name="Macbook Pro 2", + net_purchase_amount=50000, + purchase_amount=50000, + submit=True, + ) + + rows = self.run_report(group_by="Asset Category") + computers = next(row for row in rows if row["asset_category"] == "Computers") + self.assertEqual(computers["net_purchase_amount"], 150000) + self.assertEqual(computers["asset_value"], 150000) From 2373db06ec7e939bbac58c768bc8a62e8cbdeea4 Mon Sep 17 00:00:00 2001 From: Sudharsanan11 Date: Thu, 25 Jun 2026 11:51:00 +0530 Subject: [PATCH 003/161] fix: support quality inspection for stock entry by purpose Fetch QI items by warehouse direction per inspection_type, require QI on the correct rows per stock entry purpose (finished good for Manufacture, inward goods for Receipt/Repack, outgoing rows for issue/transfer), and show the QI field only on those rows. --- erpnext/public/js/controllers/transaction.js | 21 +++++++++----- .../quality_inspection/quality_inspection.py | 29 +++++++++++++++---- .../stock/doctype/stock_entry/stock_entry.js | 12 +++++++- .../stock_entry_detail.json | 3 +- .../services/quality_inspection_service.py | 12 ++++++-- 5 files changed, 59 insertions(+), 18 deletions(-) diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js index 1c6af4fc978..d9b62bee8e8 100644 --- a/erpnext/public/js/controllers/transaction.js +++ b/erpnext/public/js/controllers/transaction.js @@ -405,7 +405,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe } const incoming_doctypes = ["Purchase Receipt", "Purchase Invoice", "Subcontracting Receipt"]; - const incoming_purposes = ["Manufacture", "Material Receipt"]; + const incoming_purposes = ["Manufacture", "Material Receipt", "Repack"]; const inspection_type = incoming_doctypes.includes(this.frm.doc.doctype) || (this.frm.doc.doctype === "Stock Entry" && incoming_purposes.includes(this.frm.doc.purpose)) @@ -2967,7 +2967,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe const me = this; const incoming_doctypes = ["Purchase Receipt", "Purchase Invoice", "Subcontracting Receipt"]; - const incoming_purposes = ["Manufacture", "Material Receipt"]; + const incoming_purposes = ["Manufacture", "Material Receipt", "Repack"]; const inspection_type = incoming_doctypes.includes(this.frm.doc.doctype) || (this.frm.doc.doctype === "Stock Entry" && incoming_purposes.includes(this.frm.doc.purpose)) @@ -3065,13 +3065,20 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe } has_inspection_required(item) { - if (this.frm.doc.doctype === "Stock Entry" && this.frm.doc.purpose == "Manufacture") { - if (item.is_finished_item && !item.quality_inspection) { - return true; - } - } else if (!item.quality_inspection) { + if (item.quality_inspection) { + return false; + } + if (this.frm.doc.doctype !== "Stock Entry") { return true; } + const purpose = this.frm.doc.purpose; + if (purpose === "Manufacture") { + return !!item.is_finished_item; + } + if (["Material Receipt", "Repack"].includes(purpose)) { + return !!item.t_warehouse; + } + return !!item.s_warehouse && item.s_warehouse !== item.t_warehouse; } get_method_for_payment() { diff --git a/erpnext/stock/doctype/quality_inspection/quality_inspection.py b/erpnext/stock/doctype/quality_inspection/quality_inspection.py index ff536f01d55..d51d384b1c2 100644 --- a/erpnext/stock/doctype/quality_inspection/quality_inspection.py +++ b/erpnext/stock/doctype/quality_inspection/quality_inspection.py @@ -387,12 +387,29 @@ def item_query(doctype: Any, txt: str | None, searchfield: Any, start: int, page ] if reference_doctype == "Stock Entry": - my_filters.extend( - [ - "and", - ["items.t_warehouse", "is", "not set"], - ] - ) + if filters.get("inspection_type") == "Incoming": + purpose = frappe.db.get_value("Stock Entry", filters.get("reference_name"), "purpose") + if purpose == "Manufacture": + my_filters.extend( + [ + "and", + ["items.is_finished_item", "=", 1], + ] + ) + else: + my_filters.extend( + [ + "and", + ["items.t_warehouse", "is", "set"], + ] + ) + elif filters.get("inspection_type") == "Outgoing": + my_filters.extend( + [ + "and", + ["items.s_warehouse", "is", "set"], + ] + ) elif filters.get("inspection_type") != "In Process": my_filters.extend( [ diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js index 58185d3c40e..19025148116 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.js +++ b/erpnext/stock/doctype/stock_entry/stock_entry.js @@ -199,6 +199,17 @@ frappe.ui.form.on("Stock Entry", { }, setup_quality_inspection: function (frm) { + const incoming_purposes = ["Manufacture", "Material Receipt", "Repack"]; + + // Show the Quality Inspection field only on rows that require inspection. + frm.get_docfield("items", "quality_inspection").depends_on = (row) => + frm.doc.inspection_required && + (frm.doc.purpose === "Manufacture" + ? row.is_finished_item + : incoming_purposes.includes(frm.doc.purpose) + ? row.t_warehouse + : row.s_warehouse && row.s_warehouse !== row.t_warehouse); + if (!frm.doc.inspection_required) { return; } @@ -216,7 +227,6 @@ frappe.ui.form.on("Stock Entry", { } let quality_inspection_field = frm.get_docfield("items", "quality_inspection"); - const incoming_purposes = ["Manufacture", "Material Receipt"]; quality_inspection_field.get_route_options_for_new_doc = function (row) { if (frm.is_new()) return {}; return { diff --git a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json index c21d9ec91cb..71adb7ed566 100644 --- a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +++ b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json @@ -324,7 +324,6 @@ "options": "Batch" }, { - "depends_on": "eval:parent.inspection_required && doc.t_warehouse", "fieldname": "quality_inspection", "fieldtype": "Link", "label": "Quality Inspection", @@ -679,7 +678,7 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2026-06-01 10:00:00.000000", + "modified": "2026-06-25 11:39:55.152526", "modified_by": "Administrator", "module": "Stock", "name": "Stock Entry Detail", diff --git a/erpnext/stock/services/quality_inspection_service.py b/erpnext/stock/services/quality_inspection_service.py index 7e7fc4ba078..e524eda4e2c 100644 --- a/erpnext/stock/services/quality_inspection_service.py +++ b/erpnext/stock/services/quality_inspection_service.py @@ -49,8 +49,16 @@ class QualityInspectionService: "Item", row.item_code, inspection_required_fieldname ): qi_required = True - elif self.doc.doctype == "Stock Entry" and row.t_warehouse: - qi_required = True # inward stock needs inspection + elif self.doc.doctype == "Stock Entry": + if self.doc.purpose == "Manufacture": + # only the finished good needs inspection + if row.is_finished_item: + qi_required = True + elif self.doc.purpose in ["Material Receipt", "Repack"]: + if row.t_warehouse: + qi_required = True + elif row.s_warehouse and row.s_warehouse != row.t_warehouse: + qi_required = True if row.get("secondary_item_type") or row.get("is_legacy_scrap_item"): continue From 4fa8a12bcb5e767f863767b970e2ef9959c25246 Mon Sep 17 00:00:00 2001 From: Sudharsanan11 Date: Thu, 25 Jun 2026 13:17:47 +0530 Subject: [PATCH 004/161] fix(selling): update sales order per billed on credit note submission --- erpnext/stock/doctype/delivery_note/mapper.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/delivery_note/mapper.py b/erpnext/stock/doctype/delivery_note/mapper.py index 605a2d22df6..42ac1517e59 100644 --- a/erpnext/stock/doctype/delivery_note/mapper.py +++ b/erpnext/stock/doctype/delivery_note/mapper.py @@ -172,7 +172,12 @@ def make_sales_invoice( frappe.get_single_value("Accounts Settings", "automatically_fetch_payment_terms") ) - if not doc.is_return: + if doc.is_return: + # A credit note made from a return Delivery Note should roll back the billed + # amount on the linked Sales Order too, so that per_billed stays consistent with + # per_delivered (which the return already reset). + doc.update_billed_amount_in_sales_order = True + else: from erpnext.accounts.services.payment_schedule import PaymentScheduleService ps = PaymentScheduleService(doc) From f4413ebda3067c6ee79f42b68273d57abe12a032 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 25 Jun 2026 16:30:22 +0530 Subject: [PATCH 005/161] test: cover depreciation, sale, revaluation and capitalization in FA register Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_fixed_asset_register.py | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py b/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py index d419a839fee..7d2c385da8e 100644 --- a/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py +++ b/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py @@ -3,7 +3,15 @@ import frappe +from erpnext.accounts.doctype.sales_invoice.test_sales_invoice import create_sales_invoice +from erpnext.assets.doctype.asset.depreciation import post_depreciation_entries from erpnext.assets.doctype.asset.test_asset import create_asset, set_depreciation_settings_in_company +from erpnext.assets.doctype.asset_capitalization.test_asset_capitalization import ( + create_asset_capitalization, +) +from erpnext.assets.doctype.asset_value_adjustment.test_asset_value_adjustment import ( + make_asset_value_adjustment, +) from erpnext.assets.report.fixed_asset_register.fixed_asset_register import execute from erpnext.tests.utils import ERPNextTestSuite @@ -16,6 +24,9 @@ class TestFixedAssetRegister(ERPNextTestSuite): filters = frappe._dict(company="_Test Company", **extra) return execute(filters)[1] + def report_row(self, asset_name, **extra): + return next(row for row in self.run_report(**extra) if row["asset_id"] == asset_name) + def test_asset_appears_with_purchase_value(self): asset = create_asset( item_code="Macbook Pro", net_purchase_amount=100000, purchase_amount=100000, submit=True @@ -70,3 +81,71 @@ class TestFixedAssetRegister(ERPNextTestSuite): computers = next(row for row in rows if row["asset_category"] == "Computers") self.assertEqual(computers["net_purchase_amount"], 150000) self.assertEqual(computers["asset_value"], 150000) + + def test_booked_depreciation_reduces_asset_value(self): + asset = create_asset( + item_code="Macbook Pro", + calculate_depreciation=1, + available_for_use_date="2019-12-31", + depreciation_start_date="2020-12-31", + frequency_of_depreciation=12, + total_number_of_depreciations=3, + expected_value_after_useful_life=10000, + net_purchase_amount=100000, + purchase_amount=100000, + submit=True, + ) + + # books one depreciation entry of (100000 - 10000) / 3 = 30000 + post_depreciation_entries(date="2021-01-01") + + row = self.report_row(asset.name) + self.assertEqual(row["depreciated_amount"], 30000) + self.assertEqual(row["asset_value"], 70000) # 100000 - 30000 + + def test_revaluation_adjusts_asset_value(self): + asset = create_asset( + item_code="Macbook Pro", net_purchase_amount=100000, purchase_amount=100000, submit=True + ) + + # revalue the asset upwards by 20000 + make_asset_value_adjustment( + asset=asset.name, current_asset_value=100000, new_asset_value=120000 + ).submit() + + row = self.report_row(asset.name) + self.assertEqual(row["asset_value"], 120000) # 100000 + 20000 revaluation + + def test_sold_asset_hidden_from_in_location_and_shown_in_disposed(self): + asset = create_asset( + item_code="Macbook Pro", net_purchase_amount=100000, purchase_amount=100000, submit=True + ) + + create_sales_invoice(item_code="Macbook Pro", asset=asset.name, qty=1, rate=80000) + self.assertEqual(frappe.db.get_value("Asset", asset.name, "status"), "Sold") + + self.assertNotIn(asset.name, {row["asset_id"] for row in self.run_report(status="In Location")}) + self.assertIn(asset.name, {row["asset_id"] for row in self.run_report(status="Disposed")}) + + def test_capitalized_asset_hidden_from_in_location_and_shown_in_disposed(self): + consumed_asset = create_asset( + asset_name="Consumed Asset", + net_purchase_amount=100000, + purchase_amount=100000, + submit=True, + ) + composite_asset = create_asset( + asset_name="Composite Asset", asset_type="Composite Asset", submit=False + ) + + create_asset_capitalization( + target_asset=composite_asset.name, consumed_asset=consumed_asset.name, submit=1 + ) + self.assertEqual(frappe.db.get_value("Asset", consumed_asset.name, "status"), "Capitalized") + + self.assertNotIn( + consumed_asset.name, {row["asset_id"] for row in self.run_report(status="In Location")} + ) + self.assertIn( + consumed_asset.name, {row["asset_id"] for row in self.run_report(status="Disposed")} + ) From 0a462f8d2f80e07bf497b51e19928c30c9248084 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 25 Jun 2026 16:46:02 +0530 Subject: [PATCH 006/161] test: cover combined depreciation and revaluation in FA register Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_fixed_asset_register.py | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py b/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py index 7d2c385da8e..0479697bf6f 100644 --- a/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py +++ b/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py @@ -116,6 +116,32 @@ class TestFixedAssetRegister(ERPNextTestSuite): row = self.report_row(asset.name) self.assertEqual(row["asset_value"], 120000) # 100000 + 20000 revaluation + def test_depreciation_and_revaluation_together(self): + asset = create_asset( + item_code="Macbook Pro", + calculate_depreciation=1, + available_for_use_date="2019-12-31", + depreciation_start_date="2020-12-31", + frequency_of_depreciation=12, + total_number_of_depreciations=3, + expected_value_after_useful_life=10000, + net_purchase_amount=100000, + purchase_amount=100000, + submit=True, + ) + + # books one depreciation entry of (100000 - 10000) / 3 = 30000, leaving 70000 + post_depreciation_entries(date="2021-01-01") + + # revalue the depreciated asset down from 70000 to 60000 + make_asset_value_adjustment( + asset=asset.name, current_asset_value=70000, new_asset_value=60000 + ).submit() + + row = self.report_row(asset.name) + self.assertEqual(row["depreciated_amount"], 30000) + self.assertEqual(row["asset_value"], 60000) # 100000 - 30000 depreciation - 10000 revaluation + def test_sold_asset_hidden_from_in_location_and_shown_in_disposed(self): asset = create_asset( item_code="Macbook Pro", net_purchase_amount=100000, purchase_amount=100000, submit=True From 11da80c9c5429b20a098dae8111e00ab4c1b95b3 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 25 Jun 2026 15:53:33 +0530 Subject: [PATCH 007/161] chore: rewrite user-facing messages in Stock module Conservative cleanup of frappe.throw/msgprint messages per the message style guide; meaning, severity, and .format() arguments are unchanged: - index bare {} placeholders as {0}/{1}/... so translators can reorder - move f-strings / .format() / concatenation out of _() (they break gettext extraction and never translate) - wrap translatable dynamic values (DocType/Select labels) in _() - fix grammar and colloquialisms - drop no-op _() wrapping runtime-built strings Part of #53976. --- erpnext/stock/doctype/batch/batch.py | 2 +- erpnext/stock/doctype/delivery_note/mapper.py | 2 +- .../doctype/delivery_trip/delivery_trip.py | 2 +- erpnext/stock/doctype/item/item.py | 6 ++- .../item_alternative/item_alternative.py | 6 +-- .../stock/doctype/item_price/item_price.py | 2 +- .../landed_cost_voucher.py | 12 +++-- .../material_request/material_request.py | 4 +- .../doctype/packing_slip/packing_slip.py | 6 +-- erpnext/stock/doctype/pick_list/mapper.py | 2 +- erpnext/stock/doctype/pick_list/pick_list.py | 4 +- .../purchase_receipt/purchase_receipt.py | 18 ++++--- .../doctype/putaway_rule/putaway_rule.py | 4 +- .../quality_inspection/quality_inspection.py | 4 +- .../repost_item_valuation.py | 2 +- .../serial_and_batch_bundle.py | 48 +++++++++---------- .../stock_closing_entry.py | 2 +- .../stock_entry/services/manufacturing.py | 3 +- .../stock_entry/services/subcontracting.py | 2 +- .../stock/doctype/stock_entry/stock_entry.py | 18 +++---- .../stock_entry_detail/stock_entry_detail.py | 4 +- .../stock_entry_type/stock_entry_type.py | 2 +- .../stock_ledger_entry/stock_ledger_entry.py | 2 +- .../stock_reconciliation.py | 4 +- .../stock_reservation_entry.py | 32 ++++++------- .../doctype/stock_settings/stock_settings.py | 4 +- erpnext/stock/get_item_details.py | 7 +-- .../item_variant_details.py | 2 +- erpnext/stock/serial_batch_bundle.py | 4 +- erpnext/stock/services/internal_transfer.py | 2 +- .../services/serial_batch_bundle_service.py | 2 +- erpnext/stock/stock_ledger.py | 5 +- 32 files changed, 114 insertions(+), 105 deletions(-) diff --git a/erpnext/stock/doctype/batch/batch.py b/erpnext/stock/doctype/batch/batch.py index 46c059b25c9..59fdd3bc0a1 100644 --- a/erpnext/stock/doctype/batch/batch.py +++ b/erpnext/stock/doctype/batch/batch.py @@ -390,7 +390,7 @@ def validate_serial_no_with_batch(serial_nos, item_code): serial_no_link = ",".join(get_link_to_form("Serial No", sn) for sn in serial_nos) - message = "Serial Nos" if len(serial_nos) > 1 else "Serial No" + message = _("Serial Nos") if len(serial_nos) > 1 else _("Serial No") frappe.throw(_("There is no batch found against the {0}: {1}").format(message, serial_no_link)) diff --git a/erpnext/stock/doctype/delivery_note/mapper.py b/erpnext/stock/doctype/delivery_note/mapper.py index e4a0eaefe93..3606c6eac3e 100644 --- a/erpnext/stock/doctype/delivery_note/mapper.py +++ b/erpnext/stock/doctype/delivery_note/mapper.py @@ -79,7 +79,7 @@ def make_sales_invoice( target.run_method("set_po_nos") if len(target.get("items")) == 0: - frappe.throw(_("All these items have already been Invoiced/Returned")) + frappe.throw(_("All these items have already been invoiced/returned")) if args and args.get("merge_taxes"): merge_taxes(source, target) diff --git a/erpnext/stock/doctype/delivery_trip/delivery_trip.py b/erpnext/stock/doctype/delivery_trip/delivery_trip.py index 857ba0618e4..907cdac76d0 100644 --- a/erpnext/stock/doctype/delivery_trip/delivery_trip.py +++ b/erpnext/stock/doctype/delivery_trip/delivery_trip.py @@ -216,7 +216,7 @@ class DeliveryTrip(Document): (list of list of str): List of address routes split at locks, if optimize is `True` """ if not self.driver_address: - frappe.throw(_("Cannot Calculate Arrival Time as Driver Address is Missing.")) + frappe.throw(_("Cannot calculate arrival time as the driver address is missing.")) home_address = get_address_display(frappe.get_doc("Address", self.driver_address).as_dict()) diff --git a/erpnext/stock/doctype/item/item.py b/erpnext/stock/doctype/item/item.py index 3cec8d45845..b3af09513cc 100644 --- a/erpnext/stock/doctype/item/item.py +++ b/erpnext/stock/doctype/item/item.py @@ -463,7 +463,7 @@ class Item(Document): def validate_item_type(self): if self.has_serial_no == 1 and self.is_stock_item == 0 and not self.is_fixed_asset: - frappe.throw(_("'Has Serial No' can not be 'Yes' for non-stock item")) + frappe.throw(_("'Has Serial No' cannot be 'Yes' for non-stock item")) if self.has_serial_no == 0 and self.serial_no_series: self.serial_no_series = None @@ -1508,7 +1508,9 @@ def validate_item_default_company_links(item_defaults: list[ItemDefault]) -> Non company = frappe.db.get_value(doctype, item_default.get(field), "company", cache=True) if company and company != item_default.company: frappe.throw( - _("Row #{}: {} {} doesn't belong to Company {}. Please select valid {}.").format( + _( + "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." + ).format( item_default.idx, doctype, frappe.bold(item_default.get(field)), diff --git a/erpnext/stock/doctype/item_alternative/item_alternative.py b/erpnext/stock/doctype/item_alternative/item_alternative.py index 6b9bb210fa9..ae536ab2a25 100644 --- a/erpnext/stock/doctype/item_alternative/item_alternative.py +++ b/erpnext/stock/doctype/item_alternative/item_alternative.py @@ -33,7 +33,7 @@ class ItemAlternative(Document): def has_alternative_item(self): if self.item_code and not frappe.db.get_value("Item", self.item_code, "allow_alternative_item"): - frappe.throw(_("Not allow to set alternative item for the item {0}").format(self.item_code)) + frappe.throw(_("Cannot set alternative item for the item {0}").format(self.item_code)) def validate_alternative_item(self): if self.item_code == self.alternative_item_code: @@ -65,7 +65,7 @@ class ItemAlternative(Document): indicator="Orange", ) - alternate_item_check_msg = _("Allow Alternative Item must be checked on Item {}") + alternate_item_check_msg = _("Allow Alternative Item must be checked on Item {0}") if not item_data.allow_alternative_item: frappe.throw(alternate_item_check_msg.format(self.item_code)) @@ -81,7 +81,7 @@ class ItemAlternative(Document): "name": ("!=", self.name), }, ): - frappe.throw(_("Already record exists for the item {0}").format(self.item_code)) + frappe.throw(_("Record already exists for the item {0}").format(self.item_code)) @frappe.whitelist() diff --git a/erpnext/stock/doctype/item_price/item_price.py b/erpnext/stock/doctype/item_price/item_price.py index dc693890cd7..262ed2844a8 100644 --- a/erpnext/stock/doctype/item_price/item_price.py +++ b/erpnext/stock/doctype/item_price/item_price.py @@ -68,7 +68,7 @@ class ItemPrice(Document): if not price_list_details: link = frappe.utils.get_link_to_form("Price List", self.price_list) - frappe.throw(f"The price list {link} does not exist or is disabled") + frappe.throw(_("The price list {0} does not exist or is disabled").format(link)) self.buying, self.selling, self.currency = price_list_details diff --git a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py index 5bdcf920458..17543143cb3 100644 --- a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +++ b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py @@ -129,8 +129,10 @@ class LandedCostVoucher(Document): d.receipt_document_type, d.receipt_document, ["docstatus", "company"] ) if docstatus != 1: - msg = f"Row {d.idx}: {d.receipt_document_type} {frappe.bold(d.receipt_document)} must be submitted" - frappe.throw(_(msg), title=_("Invalid Document")) + msg = _("Row {0}: {1} {2} must be submitted").format( + d.idx, d.receipt_document_type, frappe.bold(d.receipt_document) + ) + frappe.throw(msg, title=_("Invalid Document")) if company != self.company: frappe.throw( @@ -244,7 +246,7 @@ class LandedCostVoucher(Document): if not total: frappe.throw( _( - "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" + "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" ).format(based_on) ) @@ -375,8 +377,8 @@ class LandedCostVoucher(Document): if not docs or total_asset_qty < item.qty: frappe.throw( _( - "For item {0}, only {1} asset have been created or linked to {2}. " - "Please create or link {3} more asset with the respective document." + "For item {0}, only {1} assets have been created or linked to {2}. " + "Please create or link {3} more assets with the respective document." ).format( item.item_code, total_asset_qty, item.receipt_document, item.qty - total_asset_qty ) diff --git a/erpnext/stock/doctype/material_request/material_request.py b/erpnext/stock/doctype/material_request/material_request.py index 4faa24941a0..1eb6b87e45b 100644 --- a/erpnext/stock/doctype/material_request/material_request.py +++ b/erpnext/stock/doctype/material_request/material_request.py @@ -350,7 +350,7 @@ class MaterialRequest(BuyingController): if d.ordered_qty and flt(d.ordered_qty, precision) > flt(allowed_qty, precision): frappe.throw( _( - "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" + "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" ).format(d.ordered_qty, d.parent, allowed_qty, d.item_code) ) @@ -576,7 +576,7 @@ def raise_work_orders(material_request: str, company: str): if errors: frappe.throw( - _("Work Order cannot be created for following reason:
{0}").format(new_line_sep(errors)) + _("Work Order cannot be created for the following reason:
{0}").format(new_line_sep(errors)) ) return work_orders diff --git a/erpnext/stock/doctype/packing_slip/packing_slip.py b/erpnext/stock/doctype/packing_slip/packing_slip.py index b9423027ffd..d08aec68d71 100644 --- a/erpnext/stock/doctype/packing_slip/packing_slip.py +++ b/erpnext/stock/doctype/packing_slip/packing_slip.py @@ -80,15 +80,13 @@ class PackingSlip(StatusUpdater): """Raises an exception if the `Delivery Note` status is not Draft""" if cint(frappe.db.get_value("Delivery Note", self.delivery_note, "docstatus")) != 0: - frappe.throw( - _("A Packing Slip can only be created for Draft Delivery Note.").format(self.delivery_note) - ) + frappe.throw(_("A Packing Slip can only be created for a Draft Delivery Note.")) def validate_case_nos(self): """Validate if case nos overlap. If they do, recommend next case no.""" if cint(self.from_case_no) <= 0: - frappe.throw(_("The 'From Package No.' field must neither be empty nor it's value less than 1.")) + frappe.throw(_("The 'From Package No.' field must not be empty or have a value less than 1.")) elif not self.to_case_no: self.to_case_no = self.from_case_no elif cint(self.to_case_no) < cint(self.from_case_no): diff --git a/erpnext/stock/doctype/pick_list/mapper.py b/erpnext/stock/doctype/pick_list/mapper.py index b1168e112a8..f9f5fdc8e08 100644 --- a/erpnext/stock/doctype/pick_list/mapper.py +++ b/erpnext/stock/doctype/pick_list/mapper.py @@ -286,7 +286,7 @@ def create_stock_entry(pick_list: str | dict): validate_item_locations(pick_list) if stock_entry_exists(pick_list.get("name")): - return frappe.msgprint(_("Stock Entry has been already created against this Pick List")) + return frappe.msgprint(_("Stock Entry has already been created against this Pick List")) stock_entry = frappe.new_doc("Stock Entry") stock_entry.pick_list = pick_list.get("name") diff --git a/erpnext/stock/doctype/pick_list/pick_list.py b/erpnext/stock/doctype/pick_list/pick_list.py index a793d75f6c4..a25770351e4 100644 --- a/erpnext/stock/doctype/pick_list/pick_list.py +++ b/erpnext/stock/doctype/pick_list/pick_list.py @@ -232,7 +232,7 @@ class PickList(TransactionBase): and frappe.db.get_value("Sales Order", location.sales_order, "per_picked", cache=True) == 100 ): frappe.throw( - _("Row #{}: item {} has been picked already.").format(location.idx, location.item_code) + _("Row #{0}: item {1} has been picked already.").format(location.idx, location.item_code) ) def before_submit(self): @@ -647,7 +647,7 @@ class PickList(TransactionBase): continue if not item.item_code: - frappe.throw(f"Row #{item.idx}: Item Code is Mandatory") + frappe.throw(_("Row #{0}: Item Code is Mandatory").format(item.idx)) if not cint( frappe.get_cached_value("Item", item.item_code, "is_stock_item") ) and not get_active_product_bundle(item.item_code): diff --git a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py index fbb9a38150c..f1d4fb9cea6 100644 --- a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +++ b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py @@ -260,7 +260,7 @@ class PurchaseReceipt(BuyingController): self.check_for_on_hold_or_closed_status("Purchase Order", "purchase_order") if getdate(self.posting_date) > getdate(nowdate()): - throw(_("Posting Date cannot be future date")) + throw(_("Posting Date cannot be a future date")) self.get_current_stock() self.reset_default_field_value("set_warehouse", "items", "warehouse") @@ -329,14 +329,18 @@ class PurchaseReceipt(BuyingController): ) if qi.reference_type != self.doctype or qi.reference_name != self.name: - msg = f"""Row #{item.idx}: Please select a valid Quality Inspection with Reference Type - {frappe.bold(self.doctype)} and Reference Name {frappe.bold(self.name)}.""" - frappe.throw(_(msg)) + frappe.throw( + _( + "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." + ).format(item.idx, frappe.bold(self.doctype), frappe.bold(self.name)) + ) if qi.item_code != item.item_code: - msg = f"""Row #{item.idx}: Please select a valid Quality Inspection with Item Code - {frappe.bold(item.item_code)}.""" - frappe.throw(_(msg)) + frappe.throw( + _("Row #{0}: Please select a valid Quality Inspection with Item Code {1}.").format( + item.idx, frappe.bold(item.item_code) + ) + ) def get_already_received_qty(self, po, po_detail): qty = frappe.get_all( diff --git a/erpnext/stock/doctype/putaway_rule/putaway_rule.py b/erpnext/stock/doctype/putaway_rule/putaway_rule.py index 4f5967654ac..ade6e7d005c 100644 --- a/erpnext/stock/doctype/putaway_rule/putaway_rule.py +++ b/erpnext/stock/doctype/putaway_rule/putaway_rule.py @@ -58,7 +58,7 @@ class PutawayRule(Document): def validate_priority(self): if self.priority < 1: - frappe.throw(_("Priority cannot be lesser than 1."), title=_("Invalid Priority")) + frappe.throw(_("Priority cannot be less than 1."), title=_("Invalid Priority")) def validate_warehouse_and_company(self): company = frappe.db.get_value("Warehouse", self.warehouse, "company") @@ -303,7 +303,7 @@ def add_row(item, to_allocate, warehouse, updated_table, rule=None, serial_nos=N def show_unassigned_items_message(items_not_accomodated): - msg = _("The following Items, having Putaway Rules, could not be accomodated:") + "

" + msg = _("The following Items, having Putaway Rules, could not be accommodated:") + "

" formatted_item_rows = "" for entry in items_not_accomodated: diff --git a/erpnext/stock/doctype/quality_inspection/quality_inspection.py b/erpnext/stock/doctype/quality_inspection/quality_inspection.py index ff536f01d55..33c80545fd5 100644 --- a/erpnext/stock/doctype/quality_inspection/quality_inspection.py +++ b/erpnext/stock/doctype/quality_inspection/quality_inspection.py @@ -134,7 +134,7 @@ class QualityInspection(Document): ): frappe.throw( _( - "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" + "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" ).format(get_link_to_form("Item", self.item_code)) ) @@ -143,7 +143,7 @@ class QualityInspection(Document): ): frappe.throw( _( - "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" + "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" ).format(get_link_to_form("Item", self.item_code)) ) diff --git a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py index befb52c444a..9b316198000 100644 --- a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py +++ b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py @@ -209,7 +209,7 @@ class RepostItemValuation(Document): ): frappe.msgprint(_("Caution: This might alter frozen accounts.")) return - frappe.throw(_("You cannot repost item valuation before {}").format(acc_frozen_till_date)) + frappe.throw(_("You cannot repost item valuation before {0}").format(acc_frozen_till_date)) def reset_field_values(self): if self.based_on == "Transaction": diff --git a/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py b/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py index 951023d8bb7..98337e97cd6 100644 --- a/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py +++ b/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py @@ -165,7 +165,7 @@ class SerialandBatchBundle(Document): if invalid_serial_nos: msg = _( - "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." + "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." ).format(_("Serial Nos") if len(invalid_serial_nos) > 1 else _("Serial No")) msg += "
" msg += ", ".join(sn for sn in invalid_serial_nos) @@ -183,7 +183,7 @@ class SerialandBatchBundle(Document): if self.voucher_type == "POS Invoice": if not frappe.db.exists("POS Invoice Item", self.voucher_detail_no): frappe.throw( - _("The serial and batch bundle {0} not linked to {1} {2}").format( + _("The serial and batch bundle {0} is not linked to {1} {2}").format( bold(self.name), self.voucher_type, bold(self.voucher_no) ) ) @@ -195,7 +195,7 @@ class SerialandBatchBundle(Document): return frappe.throw( - _("The serial and batch bundle {0} not linked to {1} {2}").format( + _("The serial and batch bundle {0} is not linked to {1} {2}").format( bold(self.name), self.voucher_type, bold(self.voucher_no) ) ) @@ -227,7 +227,7 @@ class SerialandBatchBundle(Document): for row in data: frappe.throw( _( - "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" + "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" ).format( row.serial_no, get_link_to_form("Serial and Batch Bundle", row.parent), @@ -376,7 +376,7 @@ class SerialandBatchBundle(Document): if len(serial_nos) == 1: frappe.throw( _( - "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." + "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." ).format(bold(serial_nos[0])) ) else: @@ -654,12 +654,12 @@ class SerialandBatchBundle(Document): def validate_negative_batch(self, batch_no, available_qty): if available_qty < 0 and not self.is_stock_reco_for_valuation_adjustment(available_qty): - msg = f"""Batch No {bold(batch_no)} of an Item {bold(self.item_code)} - has negative stock - of quantity {bold(available_qty)} in the - warehouse {self.warehouse}""" - - frappe.throw(_(msg), BatchNegativeStockError) + frappe.throw( + _("Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}").format( + bold(batch_no), bold(self.item_code), bold(available_qty), self.warehouse + ), + BatchNegativeStockError, + ) def is_stock_reco_for_valuation_adjustment(self, available_qty): if ( @@ -1153,8 +1153,7 @@ class SerialandBatchBundle(Document): def validate_serial_and_batch_no(self): if self.item_code and not self.has_serial_no and not self.has_batch_no: - msg = f"The Item {self.item_code} does not have Serial No or Batch No" - frappe.throw(_(msg)) + frappe.throw(_("The Item {0} does not have Serial No or Batch No").format(self.item_code)) serial_nos = [] batch_nos = [] @@ -1589,12 +1588,11 @@ class SerialandBatchBundle(Document): date_msg = " " + _("as of {0}").format(format_datetime(posting_datetime)) msg = _( - """ - The Batch {0} of an item {1} has negative stock in the warehouse {2}{3}. - Please add a stock quantity of {4} to proceed with this entry. - If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. - However, enabling this setting may lead to negative stock in the system. - So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate.""" + "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. " + "Please add a stock quantity of {4} to proceed with this entry. " + "If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. " + "However, enabling this setting may lead to negative stock in the system. " + "So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." ).format( bold(batch_no), bold(self.item_code), @@ -1728,9 +1726,11 @@ class SerialandBatchBundle(Document): and self.voucher_detail_no and frappe.db.exists(child_doctype, self.voucher_detail_no) ): - msg = f"""The {self.voucher_type} {bold(self.voucher_no)} - is in submitted state, please cancel it first""" - frappe.throw(_(msg)) + frappe.throw( + _("The {0} {1} is in submitted state, please cancel it first").format( + self.voucher_type, bold(self.voucher_no) + ) + ) def on_trash(self): self.validate_voucher_no_docstatus() @@ -3486,13 +3486,13 @@ def is_serial_batch_no_exists( ): if serial_no and not frappe.db.exists("Serial No", serial_no): if type_of_transaction != "Inward": - frappe.throw(_("Serial No {0} does not exists").format(serial_no)) + frappe.throw(_("Serial No {0} does not exist").format(serial_no)) make_serial_no(serial_no, item_code) if batch_no and not frappe.db.exists("Batch", batch_no): if type_of_transaction != "Inward": - frappe.throw(_("Batch No {0} does not exists").format(batch_no)) + frappe.throw(_("Batch No {0} does not exist").format(batch_no)) make_batch_no(batch_no, item_code) diff --git a/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py b/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py index cab9df0da3f..106983efc9d 100644 --- a/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py +++ b/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py @@ -98,7 +98,7 @@ class StockClosingEntry(Document): enqueue(prepare_closing_stock_balance, name=self.name, queue="long", timeout=1500) frappe.msgprint( _( - "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." + "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." ).format(self.name) ) diff --git a/erpnext/stock/doctype/stock_entry/services/manufacturing.py b/erpnext/stock/doctype/stock_entry/services/manufacturing.py index 216d3c9eea9..9e66e39a9e5 100644 --- a/erpnext/stock/doctype/stock_entry/services/manufacturing.py +++ b/erpnext/stock/doctype/stock_entry/services/manufacturing.py @@ -124,7 +124,8 @@ class BaseManufactureStockEntry(BaseStockEntry): self.doc.process_loss_qty = flt(process_loss_qty, precision) frappe.msgprint( - _("The Process Loss Qty has reset as per job cards Process Loss Qty"), alert=True + _("The Process Loss Qty has been reset as per the Job Card's Process Loss Qty"), + alert=True, ) if not self.doc.process_loss_percentage and not self.doc.process_loss_qty: diff --git a/erpnext/stock/doctype/stock_entry/services/subcontracting.py b/erpnext/stock/doctype/stock_entry/services/subcontracting.py index 5c3a1b89da1..8d17bcb5727 100644 --- a/erpnext/stock/doctype/stock_entry/services/subcontracting.py +++ b/erpnext/stock/doctype/stock_entry/services/subcontracting.py @@ -91,7 +91,7 @@ class SendToSubcontractorStockEntry(BaseStockEntry): child_row.db_set(self.doc.subcontract_data.rm_detail_field, order_rm_detail) elif not child_row.allow_alternative_item: frappe.throw( - _("Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}").format( + _("Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}").format( child_row.idx, item_code, self.doc.subcontract_data.order_doctype, diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.py b/erpnext/stock/doctype/stock_entry/stock_entry.py index ab0496ac908..e575e8eedb4 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/stock_entry.py @@ -404,12 +404,11 @@ class StockEntry(StockController, SubcontractingInwardController): if row.job_card_item or not row.s_warehouse: continue - msg = f"""Row #{row.idx}: The job card item reference - is missing. Kindly create the stock entry - from the job card. If you have added the row manually - then you won't be able to add job card item reference.""" - - frappe.throw(_(msg)) + frappe.throw( + _( + "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." + ).format(row.idx) + ) def validate_work_order_status(self): pro_doc = frappe.get_doc("Work Order", self.work_order) @@ -885,7 +884,7 @@ class StockEntry(StockController, SubcontractingInwardController): if not finished_items: frappe.throw( - msg=_("There must be atleast 1 Finished Good in this Stock Entry").format(self.name), + msg=_("There must be at least 1 Finished Good in this Stock Entry").format(self.name), title=_("Missing Finished Good"), exc=FinishedGoodError, ) @@ -908,7 +907,7 @@ class StockEntry(StockController, SubcontractingInwardController): # No work order could mean independent Manufacture entry, if so skip validation if self.work_order and self.fg_completed_qty > allowed_qty: frappe.throw( - _("For quantity {0} should not be greater than allowed quantity {1}").format( + _("Quantity {0} should not be greater than allowed quantity {1}").format( flt(self.fg_completed_qty), allowed_qty ) ) @@ -1373,7 +1372,8 @@ class StockEntry(StockController, SubcontractingInwardController): self.process_loss_qty = flt(process_loss_qty, precision) frappe.msgprint( - _("The Process Loss Qty has reset as per job cards Process Loss Qty"), alert=True + _("The Process Loss Qty has been reset as per the job card's Process Loss Qty"), + alert=True, ) if not self.process_loss_percentage and not self.process_loss_qty: diff --git a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py index 75f8b8a68ed..3224ea905c7 100644 --- a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py +++ b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py @@ -100,7 +100,7 @@ class StockEntryDetail(Document): def validate_and_update_item_details(self, item_details, company, purpose): if flt(self.qty) and flt(self.qty) < 0: frappe.throw( - _("Row {0}: The item {1}, quantity must be positive number").format( + _("Row {0}: The item {1}, quantity must be a positive number").format( self.idx, bold(self.item_code) ) ) @@ -153,7 +153,7 @@ class StockEntryDetail(Document): if is_opening == "Yes" and acc_details.report_type == "Profit and Loss": frappe.throw( _( - "Difference Account must be a Asset/Liability type account " + "Difference Account must be an Asset/Liability type account " "(Temporary Opening), since this Stock Entry is an Opening Entry" ), OpeningEntryAccountError, diff --git a/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py b/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py index c7e4fc0f500..0eb22bfc9f3 100644 --- a/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py +++ b/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py @@ -62,7 +62,7 @@ class StockEntryType(Document): "Subcontracting Delivery", "Subcontracting Return", ]: - frappe.throw(f"Stock Entry Type {self.name} cannot be set as standard") + frappe.throw(_("Stock Entry Type {0} cannot be set as standard").format(self.name)) class ManufactureEntry: diff --git a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py index 6d06e8291a6..99363c760f9 100644 --- a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +++ b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py @@ -342,7 +342,7 @@ class StockLedgerEntry(Document): "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time." ).format(frappe.bold(self.item_code), frappe.bold(self.warehouse)) - msg += "

" + _("Please contact any of the following users to {} this transaction.") + msg += "

" + _("Please contact any of the following users for this transaction.") msg += "
" + "
".join(authorized_users) frappe.throw(msg, BackDatedStockTransaction, title=_("Backdated Stock Entry")) diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py index 341dd22c0b4..60735e034e9 100644 --- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py @@ -982,7 +982,7 @@ class StockReconciliation(StockController): if frappe.db.get_value("Account", self.expense_account, "report_type") == "Profit and Loss": frappe.throw( _( - "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" + "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" ), OpeningEntryAccountError, ) @@ -1246,7 +1246,7 @@ def get_stock_balance_for( if not item_dict: # In cases of data upload to Items table - msg = _("Item {} does not exist.").format(item_code) + msg = _("Item {0} does not exist.").format(item_code) frappe.throw(msg, title=_("Missing")) serial_nos = None diff --git a/erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py b/erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py index 5c586a1fd53..ad6e965b186 100644 --- a/erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py +++ b/erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py @@ -138,7 +138,7 @@ class StockReservationEntry(Document): frappe.throw( _( - "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" + "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" ).format( ", ".join([frappe.bold(entry.name) for entry in entries]), ", ".join([frappe.bold(wo.name) for wo in work_orders]), @@ -261,7 +261,7 @@ class StockReservationEntry(Document): if cint(frappe.db.get_value("UOM", self.stock_uom, "must_be_whole_number", cache=True)): if cint(self.reserved_qty) != flt(self.reserved_qty, self.precision("reserved_qty")): msg = _( - "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." + "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." ).format( flt(self.reserved_qty, self.precision("reserved_qty")), frappe.bold(_("Must be Whole Number")), @@ -427,7 +427,7 @@ class StockReservationEntry(Document): entry.db_update() else: msg = _( - "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." + "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." ).format( entry.idx, frappe.bold(available_qty_to_reserve), @@ -623,19 +623,19 @@ class StockReservationEntry(Document): if qty_to_be_reserved > allowed_qty: actual_qty = get_stock_balance(self.item_code, self.warehouse) - msg = """ - Cannot reserve more than Allowed Qty {} {} for Item {} against {} {}.

- The Allowed Qty is calculated as follows:
-
    -
  • Actual Qty [Available Qty at Warehouse] = {}
  • -
  • Reserved Stock [Ignore current SRE] = {}
  • -
  • Available Qty To Reserve [Actual Qty - Reserved Stock] = {}
  • -
  • Voucher Qty [Voucher Item Qty] = {}
  • -
  • Delivered Qty [Qty delivered against the Voucher Item] = {}
  • -
  • Total Reserved Qty [Qty reserved against the Voucher Item] = {}
  • -
  • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {}
  • -
- """.format( + msg = _( + "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

" + "The Allowed Qty is calculated as follows:
" + "
    " + "
  • Actual Qty [Available Qty at Warehouse] = {5}
  • " + "
  • Reserved Stock [Ignore current SRE] = {6}
  • " + "
  • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
  • " + "
  • Voucher Qty [Voucher Item Qty] = {8}
  • " + "
  • Delivered Qty [Qty delivered against the Voucher Item] = {9}
  • " + "
  • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
  • " + "
  • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
  • " + "
" + ).format( frappe.bold(allowed_qty), self.stock_uom, frappe.bold(self.item_code), diff --git a/erpnext/stock/doctype/stock_settings/stock_settings.py b/erpnext/stock/doctype/stock_settings/stock_settings.py index b1676d8df79..139c2f26851 100644 --- a/erpnext/stock/doctype/stock_settings/stock_settings.py +++ b/erpnext/stock/doctype/stock_settings/stock_settings.py @@ -189,7 +189,7 @@ class StockSettings(Document): if sle: frappe.throw( _( - "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" + "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" ) ) @@ -247,7 +247,7 @@ class StockSettings(Document): if has_reserved_stock: frappe.throw( - _("As there are reserved stock, you cannot disable {0}.").format( + _("As there is reserved stock, you cannot disable {0}.").format( frappe.bold(_("Stock Reservation")) ) ) diff --git a/erpnext/stock/get_item_details.py b/erpnext/stock/get_item_details.py index 4ec75996608..33aceab0bf3 100644 --- a/erpnext/stock/get_item_details.py +++ b/erpnext/stock/get_item_details.py @@ -355,9 +355,10 @@ def validate_item_details(ctx: ItemDetailsCtx, item): validate_end_of_life(item.name, item.end_of_life, item.disabled) if cint(item.has_variants): - msg = f"Item {item.name} is a template, please select one of its variants" - - throw(_(msg), title=_("Template Item Selected")) + throw( + _("Item {0} is a template, please select one of its variants").format(item.name), + title=_("Template Item Selected"), + ) elif ctx.doctype != "Material Request": if ctx.is_subcontracted and item.is_stock_item: diff --git a/erpnext/stock/report/item_variant_details/item_variant_details.py b/erpnext/stock/report/item_variant_details/item_variant_details.py index 9e6c89193d8..29e9e696097 100644 --- a/erpnext/stock/report/item_variant_details/item_variant_details.py +++ b/erpnext/stock/report/item_variant_details/item_variant_details.py @@ -22,7 +22,7 @@ def get_data(item): ) if not variant_results: - frappe.msgprint(_("There aren't any item variants for the selected item")) + frappe.msgprint(_("There are no item variants for the selected item")) return [] else: variant_list = [variant["name"] for variant in variant_results] diff --git a/erpnext/stock/serial_batch_bundle.py b/erpnext/stock/serial_batch_bundle.py index 1144f32f848..9d0ad704480 100644 --- a/erpnext/stock/serial_batch_bundle.py +++ b/erpnext/stock/serial_batch_bundle.py @@ -1231,7 +1231,9 @@ class SerialBatchCreation: required_qty = flt(abs(self.actual_qty), precision) if required_qty - total_qty > 0: - msg = f"For the item {bold(doc.item_code)}, the Available qty {bold(total_qty)} is less than the Required Qty {bold(required_qty)} in the warehouse {bold(doc.warehouse)}. Please add sufficient qty in the warehouse." + msg = _( + "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." + ).format(bold(doc.item_code), bold(total_qty), bold(required_qty), bold(doc.warehouse)) frappe.throw(msg, title=_("Insufficient Stock")) def set_auto_serial_batch_entries_for_outward(self): diff --git a/erpnext/stock/services/internal_transfer.py b/erpnext/stock/services/internal_transfer.py index 62fec7ff95c..c0c7d02b8e3 100644 --- a/erpnext/stock/services/internal_transfer.py +++ b/erpnext/stock/services/internal_transfer.py @@ -101,7 +101,7 @@ class StockInternalTransferService: if recevied_qty > flt(transferred_qty, precision): frappe.throw( - _("For Item {0} cannot be received more than {1} qty against the {2} {3}").format( + _("Item {0} cannot be received in more than {1} qty against the {2} {3}").format( bold(key[1]), bold(flt(transferred_qty, precision)), bold(parent_doctype), diff --git a/erpnext/stock/services/serial_batch_bundle_service.py b/erpnext/stock/services/serial_batch_bundle_service.py index 17b3af32fd7..29d732c1e32 100644 --- a/erpnext/stock/services/serial_batch_bundle_service.py +++ b/erpnext/stock/services/serial_batch_bundle_service.py @@ -496,7 +496,7 @@ class SerialBatchBundleService: if throw_error: frappe.throw( _( - "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." + "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." ).format(row.idx, row.serial_and_batch_bundle) ) diff --git a/erpnext/stock/stock_ledger.py b/erpnext/stock/stock_ledger.py index 0b2093fe765..2255a137328 100644 --- a/erpnext/stock/stock_ledger.py +++ b/erpnext/stock/stock_ledger.py @@ -366,8 +366,7 @@ def create_file(doc, compressed_content): def validate_item_warehouse(args): for field in ["item_code", "warehouse", "posting_date", "posting_time"]: if args.get(field) in [None, ""]: - validation_msg = f"The field {frappe.unscrub(field)} is required for the reposting" - frappe.throw(_(validation_msg)) + frappe.throw(_("The field {0} is required for reposting").format(frappe.unscrub(field))) def get_items_to_be_repost(voucher_type=None, voucher_no=None, doc=None, reposting_data=None): @@ -831,7 +830,7 @@ class update_entries_after: if previous_sle and previous_sle.get("qty_after_transaction") < 0 and sle.get("actual_qty") > 0: frappe.msgprint( _( - "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." + "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." ).format( bold(sle.item_code), bold(sle.warehouse), From 95b6cf2847947a61c89f2b11e902c147c52474c3 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 25 Jun 2026 16:04:04 +0530 Subject: [PATCH 008/161] chore: rewrite user-facing messages in Controllers module Conservative cleanup of frappe.throw/msgprint messages per the message style guide; meaning, severity, and .format() arguments are unchanged: - index bare {} placeholders as {0}/{1}/... so translators can reorder - move f-strings / .format() / concatenation out of _() (they break gettext extraction and never translate) - wrap translatable dynamic values (DocType/Select labels) in _() - fix grammar and colloquialisms - drop no-op _() wrapping runtime-built strings Part of #53976. --- erpnext/controllers/accounts_controller.py | 4 ++-- erpnext/controllers/buying_controller.py | 6 +++--- erpnext/controllers/sales_and_purchase_return.py | 2 +- erpnext/controllers/selling_controller.py | 6 +++--- erpnext/controllers/status_updater.py | 6 +++--- erpnext/controllers/subcontracting_controller.py | 14 +++++++++----- .../subcontracting_inward_controller.py | 6 +++--- erpnext/controllers/taxes_and_totals.py | 8 ++++---- erpnext/controllers/trends.py | 4 ++-- erpnext/controllers/website_list_for_contact.py | 2 +- 10 files changed, 31 insertions(+), 27 deletions(-) diff --git a/erpnext/controllers/accounts_controller.py b/erpnext/controllers/accounts_controller.py index 45ec35ca592..ef62313da75 100644 --- a/erpnext/controllers/accounts_controller.py +++ b/erpnext/controllers/accounts_controller.py @@ -274,7 +274,7 @@ class AccountsController(TransactionBase): if invalid_advances := [x for x in self.advances if not x.reference_type or not x.reference_name]: frappe.throw( _( - "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." + "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." ).format( frappe.bold(comma_and([x.idx for x in invalid_advances])), frappe.bold(_("Advance Payments")), @@ -1233,7 +1233,7 @@ class AccountsController(TransactionBase): {"sales_order": None, "sales_order_item": None}, ) - frappe.msgprint(_("Purchase Orders {0} are un-linked").format("\n".join(linked_po))) + frappe.msgprint(_("Purchase Orders {0} are unlinked").format("\n".join(linked_po))) def get_company_default(self, fieldname, ignore_validation=False): from erpnext.accounts.utils import get_company_default diff --git a/erpnext/controllers/buying_controller.py b/erpnext/controllers/buying_controller.py index b1e6cc88f10..1f947bf1fb6 100644 --- a/erpnext/controllers/buying_controller.py +++ b/erpnext/controllers/buying_controller.py @@ -129,7 +129,7 @@ class BuyingController(SubcontractingController): msg += f"
  • {po} ({date})
  • " msg += "" - frappe.throw(_(msg)) + frappe.throw(msg) def create_package_for_transfer(self) -> None: """Create serial and batch package for Sourece Warehouse in case of inter transfer.""" @@ -287,7 +287,7 @@ class BuyingController(SubcontractingController): if self.is_return and len(not_cancelled_asset): frappe.throw( _( - "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." + "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." ).format(self.return_against), title=_("Not Allowed"), ) @@ -738,7 +738,7 @@ class BuyingController(SubcontractingController): frappe.throw( _("Row #{idx}: {field_label} can not be negative for item {item_code}.").format( idx=item_row["idx"], - field_label=frappe.get_meta(item_row.doctype).get_label(fieldname), + field_label=_(frappe.get_meta(item_row.doctype).get_label(fieldname)), item_code=frappe.bold(item_row["item_code"]), ) ) diff --git a/erpnext/controllers/sales_and_purchase_return.py b/erpnext/controllers/sales_and_purchase_return.py index d84c8bd2192..db1227e29b2 100644 --- a/erpnext/controllers/sales_and_purchase_return.py +++ b/erpnext/controllers/sales_and_purchase_return.py @@ -77,7 +77,7 @@ def validate_return_against(doc): # validate update stock if doc.doctype == "Sales Invoice" and doc.update_stock and not ref_doc.update_stock: frappe.throw( - _("'Update Stock' can not be checked because items are not delivered via {0}").format( + _("'Update Stock' cannot be checked because items are not delivered via {0}").format( doc.return_against ) ) diff --git a/erpnext/controllers/selling_controller.py b/erpnext/controllers/selling_controller.py index 195aad6d74f..6528c2cb23c 100644 --- a/erpnext/controllers/selling_controller.py +++ b/erpnext/controllers/selling_controller.py @@ -297,7 +297,7 @@ class SellingController(StockController): throw( _( """Row #{0}: Selling rate for item {1} is lower than its {2}. - Selling {3} should be atleast {4}.

    Alternatively, + Selling {3} should be at least {4}.

    Alternatively, you can disable '{5}' in {6} to bypass this validation.""" ).format( @@ -869,7 +869,7 @@ class SellingController(StockController): duplicate_items_msg = _("Item {0} entered multiple times.").format(frappe.bold(d.item_code)) duplicate_items_msg += "

    " - duplicate_items_msg += _("Please enable {} in {} to allow same item in multiple rows").format( + duplicate_items_msg += _("Please enable {0} in {1} to allow same item in multiple rows").format( frappe.bold(_("Allow Item to Be Added Multiple Times in a Transaction")), get_link_to_form("Selling Settings", "Selling Settings"), ) @@ -898,7 +898,7 @@ class SellingController(StockController): if not self.get("is_internal_customer") and any(d.get("target_warehouse") for d in items): msg = _("Target Warehouse is set for some items but the customer is not an internal customer.") - msg += " " + _("This {} will be treated as material transfer.").format(_(self.doctype)) + msg += " " + _("This {0} will be treated as material transfer.").format(_(self.doctype)) frappe.msgprint(msg, title="Internal Transfer", alert=True) def validate_items(self): diff --git a/erpnext/controllers/status_updater.py b/erpnext/controllers/status_updater.py index 2e3b6635da3..fddd06e0a7f 100644 --- a/erpnext/controllers/status_updater.py +++ b/erpnext/controllers/status_updater.py @@ -286,10 +286,10 @@ class StatusUpdater(Document): # get unique transactions to update for d in self.get_all_children(): if hasattr(d, "qty") and flt(d.qty) < 0 and not self.get("is_return"): - frappe.throw(_("For an item {0}, quantity must be positive number").format(d.item_code)) + frappe.throw(_("For an item {0}, quantity must be a positive number").format(d.item_code)) if hasattr(d, "qty") and flt(d.qty) > 0 and self.get("is_return"): - frappe.throw(_("For an item {0}, quantity must be negative number").format(d.item_code)) + frappe.throw(_("For an item {0}, quantity must be a negative number").format(d.item_code)) if ( not selling_negative_rate_allowed and self.doctype in ["Sales Invoice", "Delivery Note"] @@ -300,7 +300,7 @@ class StatusUpdater(Document): if hasattr(d, "item_code") and hasattr(d, "rate") and flt(d.rate) < 0: frappe.throw( _( - "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" + "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" ).format( frappe.bold(d.item_code), frappe.bold(_("`Allow Negative rates for Items`")), diff --git a/erpnext/controllers/subcontracting_controller.py b/erpnext/controllers/subcontracting_controller.py index 29fd2ad83d3..2cd4d813add 100644 --- a/erpnext/controllers/subcontracting_controller.py +++ b/erpnext/controllers/subcontracting_controller.py @@ -211,7 +211,7 @@ class SubcontractingController(StockController): ) if bom_item != item.item_code: frappe.throw( - _("Row {0}: Please select an valid BOM for Item {1}.").format( + _("Row {0}: Please select a valid BOM for Item {1}.").format( item.idx, item.item_name ) ) @@ -1053,8 +1053,10 @@ class SubcontractingController(StockController): link = get_link_to_form( self.subcontract_data.order_doctype, row.get(self.subcontract_data.order_field) ) - msg = f'The Batch No {frappe.bold(row.get("batch_no"))} has not supplied against the {self.subcontract_data.order_doctype} {link}' - frappe.throw(_(msg), title=_("Incorrect Batch Consumed")) + msg = _("The Batch No {0} has not been supplied against the {1} {2}").format( + frappe.bold(row.get("batch_no")), self.subcontract_data.order_doctype, link + ) + frappe.throw(msg, title=_("Incorrect Batch Consumed")) def __validate_serial_no(self, row, key): if row.get("serial_and_batch_bundle") and self.__transferred_items.get(key).get("serial_no"): @@ -1066,8 +1068,10 @@ class SubcontractingController(StockController): link = get_link_to_form( self.subcontract_data.order_doctype, row.get(self.subcontract_data.order_field) ) - msg = f"The Serial Nos {incorrect_sn} has not supplied against the {self.subcontract_data.order_doctype} {link}" - frappe.throw(_(msg), title=_("Incorrect Serial Number Consumed")) + msg = _("The Serial Nos {0} have not been supplied against the {1} {2}").format( + incorrect_sn, self.subcontract_data.order_doctype, link + ) + frappe.throw(msg, title=_("Incorrect Serial Number Consumed")) def __validate_supplied_or_received_items(self): if self.doctype not in ["Purchase Invoice", "Purchase Receipt", "Subcontracting Receipt"]: diff --git a/erpnext/controllers/subcontracting_inward_controller.py b/erpnext/controllers/subcontracting_inward_controller.py index 892e5767adc..96b63f365b2 100644 --- a/erpnext/controllers/subcontracting_inward_controller.py +++ b/erpnext/controllers/subcontracting_inward_controller.py @@ -78,7 +78,7 @@ class SubcontractingInwardController: ): frappe.throw( _( - "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." + "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." ).format(item.idx, get_link_to_form("Item", item.item_code)) ) @@ -126,7 +126,7 @@ class SubcontractingInwardController: or frappe.get_cached_value("Subcontracting Inward Order Item", item.scio_detail, "item_code") ): frappe.throw( - _("Row #{0}: Item {1} mismatch. Changing of item code is not permitted.").format( + _("Row #{0}: Item {1} mismatch. Changing the item code is not permitted.").format( item.idx, get_link_to_form("Item", item.item_code) ) ) @@ -441,7 +441,7 @@ class SubcontractingInwardController: ): frappe.throw( _( - "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." + "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." ).format( item.idx, ", ".join([get_link_to_form("Batch No", bn) for bn in incorrect_batch_nos]), diff --git a/erpnext/controllers/taxes_and_totals.py b/erpnext/controllers/taxes_and_totals.py index e98eb2cdcde..604e96212c1 100644 --- a/erpnext/controllers/taxes_and_totals.py +++ b/erpnext/controllers/taxes_and_totals.py @@ -131,9 +131,9 @@ class calculate_taxes_and_totals: if item.item_tax_template not in taxes: item.item_tax_template = taxes[0] frappe.msgprint( - _("Row {0}: Item Tax template updated as per validity and rate applied").format( - item.idx, frappe.bold(item.item_code) - ) + _( + "Row {0}: Item Tax template for {1} updated as per validity and rate applied" + ).format(item.idx, frappe.bold(item.item_code)) ) # For correct tax_amount calculation re-computation is required @@ -564,7 +564,7 @@ class calculate_taxes_and_totals: + "
    ".join(invalid_rows) ) - frappe.throw(_(message)) + frappe.throw(message) def get_tax_amount_if_for_valuation_or_deduction(self, tax_amount, tax): # if just for valuation, do not add the tax amount in total diff --git a/erpnext/controllers/trends.py b/erpnext/controllers/trends.py index 92ff6adc5af..3ece6c5a820 100644 --- a/erpnext/controllers/trends.py +++ b/erpnext/controllers/trends.py @@ -56,10 +56,10 @@ def validate_filters(filters): 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 Exist").format(filters.get("fiscal_year"))) + frappe.throw(_("Fiscal Year {0} does not exist").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")) + frappe.throw(_("'Based On' and 'Group By' can not be the same")) if filters.get("period_based_on") and filters.period_based_on not in ["bill_date", "posting_date"]: frappe.throw( diff --git a/erpnext/controllers/website_list_for_contact.py b/erpnext/controllers/website_list_for_contact.py index 605e84cef49..33416a952ac 100644 --- a/erpnext/controllers/website_list_for_contact.py +++ b/erpnext/controllers/website_list_for_contact.py @@ -308,4 +308,4 @@ def add_role_for_portal_user(portal_user, role): return user_doc.add_roles(role) - frappe.msgprint(_("Added {1} Role to User {0}.").format(frappe.bold(user_doc.name), role), alert=True) + frappe.msgprint(_("Added {1} role to user {0}.").format(frappe.bold(user_doc.name), role), alert=True) From 33562a6a868163a33cb29ad690b5c193e70d49df Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 25 Jun 2026 16:15:01 +0530 Subject: [PATCH 009/161] chore: rewrite user-facing messages in Selling module Conservative cleanup of frappe.throw/msgprint messages per the message style guide; meaning, severity, and .format() arguments are unchanged: - index bare {} placeholders as {0}/{1}/... so translators can reorder - move f-strings / .format() / concatenation out of _() (they break gettext extraction and never translate) - wrap translatable dynamic values (DocType/Select labels) in _() - fix grammar and colloquialisms - drop no-op _() wrapping runtime-built strings Part of #53976. --- erpnext/selling/doctype/customer/customer.py | 8 ++++---- erpnext/selling/doctype/customer/mapper.py | 2 +- .../doctype/party_specific_item/party_specific_item.py | 4 +++- erpnext/selling/doctype/product_bundle/product_bundle.py | 6 +++--- erpnext/selling/page/sales_funnel/sales_funnel.py | 2 +- .../sales_partner_commission_summary.py | 2 +- .../test_sales_partner_commission_summary.py | 2 +- 7 files changed, 14 insertions(+), 12 deletions(-) diff --git a/erpnext/selling/doctype/customer/customer.py b/erpnext/selling/doctype/customer/customer.py index cb5e770b141..a1592d89f1e 100644 --- a/erpnext/selling/doctype/customer/customer.py +++ b/erpnext/selling/doctype/customer/customer.py @@ -158,7 +158,7 @@ class Customer(TransactionBase): new_customer_name = f"{self.customer_name} - {cstr(count)}" msgprint( - _("Changed customer name to '{}' as '{}' already exists.").format( + _("Changed customer name to '{0}' as '{1}' already exists.").format( new_customer_name, self.customer_name ), title=_("Note"), @@ -356,7 +356,7 @@ class Customer(TransactionBase): if frappe.db.exists("Customer Group", self.name): frappe.throw( _( - "A Customer Group exists with same name please change the Customer name or rename the Customer Group" + "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" ), frappe.NameError, ) @@ -406,7 +406,7 @@ class Customer(TransactionBase): if flt(limit.credit_limit) < outstanding_amt: frappe.throw( _( - """New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}""" + """New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}""" ).format(outstanding_amt) ) @@ -440,7 +440,7 @@ class Customer(TransactionBase): self.loyalty_program = loyalty_program[0] else: frappe.msgprint( - _("Multiple Loyalty Programs found for Customer {}. Please select manually.").format( + _("Multiple Loyalty Programs found for Customer {0}. Please select manually.").format( frappe.bold(self.customer_name) ) ) diff --git a/erpnext/selling/doctype/customer/mapper.py b/erpnext/selling/doctype/customer/mapper.py index 7f30aef8cc0..be69e7e5d6c 100644 --- a/erpnext/selling/doctype/customer/mapper.py +++ b/erpnext/selling/doctype/customer/mapper.py @@ -172,7 +172,7 @@ def make_address(args, is_primary_address=1, is_shipping_address=1): if reqd_fields: msg = _("Following fields are mandatory to create address:") frappe.throw( - "{}

      {}
    ".format(msg, "\n".join(reqd_fields)), + msg + "

      {}
    ".format("\n".join(reqd_fields)), title=_("Missing Values Required"), ) diff --git a/erpnext/selling/doctype/party_specific_item/party_specific_item.py b/erpnext/selling/doctype/party_specific_item/party_specific_item.py index 77eb9095305..a0f2eaf0dff 100644 --- a/erpnext/selling/doctype/party_specific_item/party_specific_item.py +++ b/erpnext/selling/doctype/party_specific_item/party_specific_item.py @@ -32,4 +32,6 @@ class PartySpecificItem(Document): }, ) if exists: - frappe.throw(_("This item filter has already been applied for the {0}").format(self.party_type)) + frappe.throw( + _("This item filter has already been applied for the {0}").format(_(self.party_type)) + ) diff --git a/erpnext/selling/doctype/product_bundle/product_bundle.py b/erpnext/selling/doctype/product_bundle/product_bundle.py index 68d26494e37..10fffea5018 100644 --- a/erpnext/selling/doctype/product_bundle/product_bundle.py +++ b/erpnext/selling/doctype/product_bundle/product_bundle.py @@ -118,9 +118,9 @@ class ProductBundle(Document): if len(invoice_links): frappe.throw( - "This Product Bundle is linked with {}. You will have to cancel these documents in order to delete this Product Bundle".format( - ", ".join(invoice_links) - ), + _( + "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" + ).format(", ".join(invoice_links)), title=_("Not Allowed"), ) diff --git a/erpnext/selling/page/sales_funnel/sales_funnel.py b/erpnext/selling/page/sales_funnel/sales_funnel.py index 6ce192e95e2..e7c636ee385 100644 --- a/erpnext/selling/page/sales_funnel/sales_funnel.py +++ b/erpnext/selling/page/sales_funnel/sales_funnel.py @@ -16,7 +16,7 @@ def validate_filters(from_date, to_date, company): frappe.throw(_("To Date must be greater than From Date")) if not company: - frappe.throw(_("Please Select a Company")) + frappe.throw(_("Please select a Company")) @frappe.whitelist() diff --git a/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py b/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py index 5b98c4bf386..859156a6d23 100644 --- a/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py +++ b/erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py @@ -47,7 +47,7 @@ class SalesPartnerSummaryReport: frappe.throw(_("Please select the document type first.")) if self.filters.get("doctype") not in SALES_TRANSACTION_DOCTYPES: - frappe.throw(_("DocType can be one of them {0}").format(comma_or(SALES_TRANSACTION_DOCTYPES))) + frappe.throw(_("DocType can be one of {0}").format(comma_or(SALES_TRANSACTION_DOCTYPES))) if not self.filters.get("company"): frappe.throw(_("Please select a company.")) diff --git a/erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py b/erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py index 9a46bcb85db..32f71f12aaf 100644 --- a/erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py +++ b/erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py @@ -19,7 +19,7 @@ class SalesPartnerSummaryReportTestMixin(ERPNextTestSuite): with self.assertRaisesRegex( frappe.ValidationError, - _("DocType can be one of them {0}").format(comma_or(SALES_TRANSACTION_DOCTYPES)), + _("DocType can be one of {0}").format(comma_or(SALES_TRANSACTION_DOCTYPES)), ): run(self.report_name, self.filters) From f5bf9151043b3828e9a5f525c1304c298ea39a2f Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 25 Jun 2026 16:21:28 +0530 Subject: [PATCH 010/161] chore: rewrite user-facing messages in Subcontracting module Conservative cleanup of frappe.throw/msgprint messages per the message style guide; meaning, severity, and .format() arguments are unchanged: - index bare {} placeholders as {0}/{1}/... so translators can reorder - move f-strings / .format() / concatenation out of _() (they break gettext extraction and never translate) - wrap translatable dynamic values (DocType/Select labels) in _() - fix grammar and colloquialisms - drop no-op _() wrapping runtime-built strings Part of #53976. --- .../subcontracting_inward_order.py | 2 +- .../subcontracting_order.py | 17 +++++++++++------ .../subcontracting_receipt.py | 2 +- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py b/erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py index c591d28ed47..b918569a02b 100644 --- a/erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py +++ b/erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py @@ -224,7 +224,7 @@ class SubcontractingInwardOrder(SubcontractingController): if not any([rm.is_customer_provided_item for rm in raw_materials]): frappe.throw( _( - "Atleast one raw material for Finished Good Item {0} should be customer provided." + "At least one raw material for Finished Good Item {0} should be customer provided." ).format(frappe.bold(item.item_code)) ) diff --git a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py index 617791cda48..e9909e4a28f 100644 --- a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py +++ b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py @@ -139,12 +139,14 @@ class SubcontractingOrder(SubcontractingController): frappe.throw(_("Please select a valid Purchase Order that is configured for Subcontracting.")) if po.docstatus != 1: - msg = f"Please submit Purchase Order {po.name} before proceeding." - frappe.throw(_(msg)) + frappe.throw(_("Please submit Purchase Order {0} before proceeding.").format(po.name)) if po.per_received == 100: - msg = f"Cannot create more Subcontracting Orders against the Purchase Order {po.name}." - frappe.throw(_(msg)) + frappe.throw( + _("Cannot create more Subcontracting Orders against the Purchase Order {0}.").format( + po.name + ) + ) else: self.service_items = self.items = self.supplied_items = None frappe.throw(_("Please select a Subcontracting Purchase Order.")) @@ -172,8 +174,11 @@ class SubcontractingOrder(SubcontractingController): if self.supplier_warehouse: for item in self.supplied_items: if self.supplier_warehouse == item.reserve_warehouse: - msg = f"Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {item.main_item_code}." - frappe.throw(_(msg)) + frappe.throw( + _( + "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." + ).format(item.main_item_code) + ) def set_missing_values(self): self.calculate_additional_costs() diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py index 0c786638b2d..2171fd7d65e 100644 --- a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py +++ b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py @@ -143,7 +143,7 @@ class SubcontractingReceipt(SubcontractingController): self.validate_inspection() if getdate(self.posting_date) > getdate(nowdate()): - frappe.throw(_("Posting Date cannot be future date")) + frappe.throw(_("Posting Date cannot be a future date")) super().validate() From 4efb43d9775224b0cd7fce66d3fb55420ddd7ee9 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 25 Jun 2026 16:21:35 +0530 Subject: [PATCH 011/161] chore: rewrite user-facing messages in Projects module Conservative cleanup of frappe.throw/msgprint messages per the message style guide; meaning, severity, and .format() arguments are unchanged: - index bare {} placeholders as {0}/{1}/... so translators can reorder - move f-strings / .format() / concatenation out of _() (they break gettext extraction and never translate) - wrap translatable dynamic values (DocType/Select labels) in _() - fix grammar and colloquialisms - drop no-op _() wrapping runtime-built strings Part of #53976. --- erpnext/projects/doctype/task/task.py | 4 ++-- erpnext/projects/doctype/timesheet_detail/timesheet_detail.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/projects/doctype/task/task.py b/erpnext/projects/doctype/task/task.py index 6cdfd50933a..9eda760a4e7 100755 --- a/erpnext/projects/doctype/task/task.py +++ b/erpnext/projects/doctype/task/task.py @@ -144,7 +144,7 @@ class Task(NestedSet): if frappe.db.get_value("Task", d.task, "status") not in ("Completed", "Cancelled"): frappe.throw( _( - "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." + "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." ).format(frappe.bold(self.name), frappe.bold(d.task)) ) @@ -316,7 +316,7 @@ class Task(NestedSet): def on_trash(self): if check_if_child_exists(self.name): - throw(_("Child Task exists for this Task. You can not delete this Task.")) + throw(_("Child Task exists for this Task. You cannot delete this Task.")) self.update_nsm_model() diff --git a/erpnext/projects/doctype/timesheet_detail/timesheet_detail.py b/erpnext/projects/doctype/timesheet_detail/timesheet_detail.py index dc4c07bf376..0c69d4e1252 100644 --- a/erpnext/projects/doctype/timesheet_detail/timesheet_detail.py +++ b/erpnext/projects/doctype/timesheet_detail/timesheet_detail.py @@ -105,7 +105,7 @@ class TimesheetDetail(Document): def validate_dates(self): """Validate that to_time is not before from_time.""" if self.from_time and self.to_time and time_diff_in_hours(self.to_time, self.from_time) < 0: - frappe.throw(_("To Time cannot be before from date")) + frappe.throw(_("To Time cannot be before From Time")) def validate_parent_project(self, parent_project: str): """Validate that project is same as Timesheet's parent project.""" From b161e5aa796fa92bf0b48f247713143dea7f3105 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 25 Jun 2026 16:21:57 +0530 Subject: [PATCH 012/161] chore: rewrite user-facing messages in Crm module Conservative cleanup of frappe.throw/msgprint messages per the message style guide; meaning, severity, and .format() arguments are unchanged: - index bare {} placeholders as {0}/{1}/... so translators can reorder - move f-strings / .format() / concatenation out of _() (they break gettext extraction and never translate) - wrap translatable dynamic values (DocType/Select labels) in _() - fix grammar and colloquialisms - drop no-op _() wrapping runtime-built strings Part of #53976. --- .../appointment_booking_settings.py | 2 +- erpnext/crm/doctype/crm_settings/crm_settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py b/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py index 9ef01283c31..36eb21f0441 100644 --- a/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py +++ b/erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py @@ -59,7 +59,7 @@ class AppointmentBookingSettings(Document): err_msg = _("From Time cannot be later than To Time for {0}").format( record.day_of_week ) - frappe.throw(_(err_msg)) + frappe.throw(err_msg) def duration_is_divisible(self, from_time, to_time): timedelta = to_time - from_time diff --git a/erpnext/crm/doctype/crm_settings/crm_settings.py b/erpnext/crm/doctype/crm_settings/crm_settings.py index 04e5a402add..6d7360bb6df 100644 --- a/erpnext/crm/doctype/crm_settings/crm_settings.py +++ b/erpnext/crm/doctype/crm_settings/crm_settings.py @@ -49,7 +49,7 @@ class CRMSettings(Document): if self.enable_frappe_crm_data_synchronization and not self.allowed_users: frappe.throw( _( - "Please add atleast one user on Allowed Users to allow Data Synchronization from Frappe CRM site." + "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." ) ) From 10744d133261b765d46d75310e71c208ea643408 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 25 Jun 2026 16:22:04 +0530 Subject: [PATCH 013/161] chore: rewrite user-facing messages in Utilities module Conservative cleanup of frappe.throw/msgprint messages per the message style guide; meaning, severity, and .format() arguments are unchanged: - index bare {} placeholders as {0}/{1}/... so translators can reorder - move f-strings / .format() / concatenation out of _() (they break gettext extraction and never translate) - wrap translatable dynamic values (DocType/Select labels) in _() - fix grammar and colloquialisms - drop no-op _() wrapping runtime-built strings Part of #53976. --- erpnext/utilities/__init__.py | 2 +- erpnext/utilities/bulk_transaction.py | 2 +- erpnext/utilities/doctype/video_settings/video_settings.py | 6 ++++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/erpnext/utilities/__init__.py b/erpnext/utilities/__init__.py index 66a038bd52a..9684ae7fe80 100644 --- a/erpnext/utilities/__init__.py +++ b/erpnext/utilities/__init__.py @@ -48,7 +48,7 @@ def get_site_info(site_info): def payment_app_import_guard(): marketplace_link = 'Marketplace' github_link = 'GitHub' - msg = _("payments app is not installed. Please install it from {} or {}").format( + msg = _("payments app is not installed. Please install it from {0} or {1}").format( marketplace_link, github_link ) try: diff --git a/erpnext/utilities/bulk_transaction.py b/erpnext/utilities/bulk_transaction.py index 33a0fa7f73f..b8cf42c53cb 100644 --- a/erpnext/utilities/bulk_transaction.py +++ b/erpnext/utilities/bulk_transaction.py @@ -30,7 +30,7 @@ def transaction_processing( skipped_msg += ( "

      " - + "".join(_("
    • {}
    • ").format(frappe.bold(row.get("name"))) for row in skipped_records) + + "".join(_("
    • {0}
    • ").format(frappe.bold(row.get("name"))) for row in skipped_records) + "
    " ) diff --git a/erpnext/utilities/doctype/video_settings/video_settings.py b/erpnext/utilities/doctype/video_settings/video_settings.py index 762a795a733..34e65a35c3f 100644 --- a/erpnext/utilities/doctype/video_settings/video_settings.py +++ b/erpnext/utilities/doctype/video_settings/video_settings.py @@ -30,6 +30,8 @@ class VideoSettings(Document): try: build("youtube", "v3", developerKey=self.api_key) except Exception: - title = _("Failed to Authenticate the API key.") self.log_error("Failed to authenticate API key") - frappe.throw(title + " Please check the error logs.", title=_("Invalid Credentials")) + frappe.throw( + _("Failed to authenticate the API key. Please check the error logs."), + title=_("Invalid Credentials"), + ) From 9ec043ffcbad1b2d033b5c141d8ac0fb9dfb7a23 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 25 Jun 2026 16:22:18 +0530 Subject: [PATCH 014/161] chore: rewrite user-facing messages in Erpnext Integrations module Conservative cleanup of frappe.throw/msgprint messages per the message style guide; meaning, severity, and .format() arguments are unchanged: - index bare {} placeholders as {0}/{1}/... so translators can reorder - move f-strings / .format() / concatenation out of _() (they break gettext extraction and never translate) - wrap translatable dynamic values (DocType/Select labels) in _() - fix grammar and colloquialisms - drop no-op _() wrapping runtime-built strings Part of #53976. --- .../doctype/plaid_settings/plaid_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py index ccb9133eb62..a4113dfcab4 100644 --- a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py +++ b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py @@ -171,7 +171,7 @@ def add_bank_accounts(response: str | dict, bank: str | dict, company: str): except Exception: frappe.log_error("Plaid Link Error") frappe.throw( - _("There was an error updating Bank Account {} while linking with Plaid.").format( + _("There was an error updating Bank Account {0} while linking with Plaid.").format( existing_bank_account ), title=_("Plaid Link Failed"), From 548d90df4f58cd0a7a885cdd3adfd85af2e81de7 Mon Sep 17 00:00:00 2001 From: Shllokkk Date: Thu, 25 Jun 2026 17:32:46 +0530 Subject: [PATCH 015/161] fix: handle missing serial and batch bundle in print format --- erpnext/stock/serial_batch_bundle.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/erpnext/stock/serial_batch_bundle.py b/erpnext/stock/serial_batch_bundle.py index 1144f32f848..8dae41ebdce 100644 --- a/erpnext/stock/serial_batch_bundle.py +++ b/erpnext/stock/serial_batch_bundle.py @@ -606,10 +606,16 @@ def get_serial_nos_from_bundle(serial_and_batch_bundle, serial_nos=None): def get_serial_or_batch_nos(bundle): # For print format + if not bundle: + return "" + bundle_data = frappe.get_cached_value( "Serial and Batch Bundle", bundle, ["has_serial_no", "has_batch_no"], as_dict=True ) + if not bundle_data: + return bundle + fields = [] if bundle_data.has_serial_no: fields.append("serial_no") From 70bd57d3e7dd5d87f2ad4749c7098dd2b20d7c1c Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Thu, 25 Jun 2026 17:44:57 +0530 Subject: [PATCH 016/161] chore: fix grammar in Exchange Rate Revaluation validation message "to getting entries" -> "to get entries". Matches the client-side message fixed in #56484 so the same missing Company/Posting Date validation reads identically on client and server. Part of #53976. --- .../exchange_rate_revaluation/exchange_rate_revaluation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py index 3800aa980e7..4213d478ce1 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py +++ b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py @@ -73,7 +73,7 @@ class ExchangeRateRevaluation(Document): def validate_mandatory(self): if not (self.company and self.posting_date): - frappe.throw(_("Please select Company and Posting Date to getting entries")) + frappe.throw(_("Please select Company and Posting Date to get entries")) def before_submit(self): self.remove_accounts_without_gain_loss() From 78fd06048f0e91e012e79c29d1d2d87cf1058cba Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 25 Jun 2026 18:21:08 +0530 Subject: [PATCH 017/161] style: apply ruff formatting Co-Authored-By: Claude Opus 4.8 (1M context) --- .../report/fixed_asset_register/test_fixed_asset_register.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py b/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py index 71dc85c3265..2bfbdcda459 100644 --- a/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py +++ b/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py @@ -190,6 +190,4 @@ class TestFixedAssetRegister(AssetSetup): self.assertNotIn( consumed_asset.name, {row["asset_id"] for row in self.run_report(status="In Location")} ) - self.assertIn( - consumed_asset.name, {row["asset_id"] for row in self.run_report(status="Disposed")} - ) + self.assertIn(consumed_asset.name, {row["asset_id"] for row in self.run_report(status="Disposed")}) From 38385432f6bb67aee86c29b2b34f3d09555a60c9 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 25 Jun 2026 18:22:58 +0530 Subject: [PATCH 018/161] test: assert group-by totals on delta to avoid shared-category leak Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_fixed_asset_register.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py b/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py index 2bfbdcda459..6f03bd49d92 100644 --- a/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py +++ b/erpnext/assets/report/fixed_asset_register/test_fixed_asset_register.py @@ -86,6 +86,8 @@ class TestFixedAssetRegister(AssetSetup): self.assertIn(asset.name, ids) def test_group_by_asset_category_sums_values(self): + before_net, before_value = self.computers_group_totals() + create_asset(item_code="Macbook Pro", net_purchase_amount=100000, purchase_amount=100000, submit=True) create_asset( item_code="Macbook Pro", @@ -95,10 +97,17 @@ class TestFixedAssetRegister(AssetSetup): submit=True, ) - rows = self.run_report(group_by="Asset Category") - computers = next(row for row in rows if row["asset_category"] == "Computers") - self.assertEqual(computers["net_purchase_amount"], 150000) - self.assertEqual(computers["asset_value"], 150000) + after_net, after_value = self.computers_group_totals() + # assert on the delta so pre-existing Computers assets don't skew the totals + self.assertEqual(after_net - before_net, 150000) + self.assertEqual(after_value - before_value, 150000) + + def computers_group_totals(self): + row = next( + (r for r in self.run_report(group_by="Asset Category") if r["asset_category"] == "Computers"), + None, + ) + return (row["net_purchase_amount"], row["asset_value"]) if row else (0, 0) def test_booked_depreciation_reduces_asset_value(self): asset = create_asset( From c3d2ebd734817c5f104dfeebe6e8e744fa9d24a1 Mon Sep 17 00:00:00 2001 From: MochaMind Date: Thu, 25 Jun 2026 20:05:56 +0530 Subject: [PATCH 019/161] fix: sync translations from crowdin (#56396) --- erpnext/locale/ar.po | 4 +- erpnext/locale/bg.po | 62892 +++++++++++++++++++++++++++++++++++++++++ erpnext/locale/bs.po | 14 +- erpnext/locale/de.po | 18 +- erpnext/locale/fa.po | 4 +- erpnext/locale/hr.po | 91 +- erpnext/locale/hu.po | 8 +- erpnext/locale/sl.po | 6 +- erpnext/locale/sv.po | 14 +- erpnext/locale/uz.po | 62892 +++++++++++++++++++++++++++++++++++++++++ 10 files changed, 125866 insertions(+), 77 deletions(-) create mode 100644 erpnext/locale/bg.po create mode 100644 erpnext/locale/uz.po diff --git a/erpnext/locale/ar.po b/erpnext/locale/ar.po index 1f84f4bd98f..d0c68550f22 100644 --- a/erpnext/locale/ar.po +++ b/erpnext/locale/ar.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:01\n" +"PO-Revision-Date: 2026-06-23 19:26\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -21009,7 +21009,7 @@ msgstr "للتشغيل" #: banking/src/pages/BankStatementImporter.tsx:172 msgid "For PDF statements, we auto-detect the tables on each page. You can then confirm each detected table, map its columns, and exclude anything that is not transactions (e.g. ads or summaries). Password-protected PDFs are supported - the password is saved on the bank account and reused." -msgstr "" +msgstr "بالنسبة لبيانات PDF، نقوم بالكشف التلقائي عن الجداول في كل صفحة. يمكنك بعد ذلك تأكيد كل جدول تم اكتشافه، وتعيين أعمدته، واستبعاد أي شيء لا يمثل معاملات (مثل الإعلانات أو الملخصات). يتم دعم ملفات PDF المحمية بكلمة مرور - يتم حفظ كلمة المرور في الحساب البنكي وإعادة استخدامها." #. Label of the for_price_list (Link) field in DocType 'Pricing Rule' #. Label of the for_price_list (Link) field in DocType 'Promotional Scheme diff --git a/erpnext/locale/bg.po b/erpnext/locale/bg.po new file mode 100644 index 00000000000..e38d23e77db --- /dev/null +++ b/erpnext/locale/bg.po @@ -0,0 +1,62892 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: hello@frappe.io\n" +"POT-Creation-Date: 2026-06-21 10:42+0000\n" +"PO-Revision-Date: 2026-06-24 19:23\n" +"Last-Translator: hello@frappe.io\n" +"Language-Team: Bulgarian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.16.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: bg\n" +"X-Crowdin-File: /[frappe.erpnext] develop/erpnext/locale/main.pot\n" +"X-Crowdin-File-ID: 46\n" +"Language: bg_BG\n" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 +msgid "\n" +"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" +"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" +"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" +"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" +"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + +#. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid " " +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.js:82 +msgid " Address" +msgstr "" + +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:611 +msgid " Amount" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:114 +msgid " BOM" +msgstr "" + +#. Label of the default_wip_warehouse (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid " Default Work In Progress Warehouse " +msgstr "" + +#. Label of the istable (Check) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid " Is Child Table" +msgstr "" + +#. Label of the is_subcontracted (Check) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid " Is Subcontracted" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:196 +msgid " Item" +msgstr "" + +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:151 +#: erpnext/selling/report/sales_analytics/sales_analytics.py:128 +msgid " Name" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:144 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:185 +msgid " Phantom Item" +msgstr "" + +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:602 +msgid " Rate" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:122 +msgid " Raw Material" +msgstr "" + +#. Label of the skip_material_transfer (Check) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid " Skip Material Transfer" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:133 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:174 +msgid " Sub Assembly" +msgstr "" + +#: erpnext/projects/doctype/project_update/project_update.py:140 +msgid " Summary" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:279 +msgid "\"Customer Provided Item\" cannot be Purchase Item also" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:281 +msgid "\"Customer Provided Item\" cannot have Valuation Rate" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:383 +msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:274 +msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" +msgstr "" + +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +msgid "# In Stock" +msgstr "" + +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +msgid "# Req'd Items" +msgstr "" + +#. Label of the per_delivered (Percent) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "% Delivered" +msgstr "" + +#. Label of the per_billed (Percent) field in DocType 'Timesheet' +#. Label of the per_billed (Percent) field in DocType 'Sales Order' +#. Label of the per_billed (Percent) field in DocType 'Delivery Note' +#. Label of the per_billed (Percent) field in DocType 'Purchase Receipt' +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "% Amount Billed" +msgstr "" + +#. Label of the per_billed (Percent) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "% Billed" +msgstr "" + +#. Label of the percent_complete_method (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "% Complete Method" +msgstr "" + +#. Label of the percent_complete (Percent) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "% Completed" +msgstr "" + +#. Label of the cost_allocation_per (Percent) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "% Cost Allocation" +msgstr "" + +#. Label of the per_delivered (Percent) field in DocType 'Pick List' +#. Label of the per_delivered (Percent) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "% Delivered" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1022 +#, python-format +msgid "% Finished Item Quantity" +msgstr "" + +#. Label of the per_installed (Percent) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "% Installed" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:70 +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:16 +msgid "% Occupied" +msgstr "" + +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:283 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:337 +msgid "% Of Grand Total" +msgstr "" + +#. Label of the per_ordered (Percent) field in DocType 'Material Request' +#: erpnext/stock/doctype/material_request/material_request.json +msgid "% Ordered" +msgstr "" + +#. Label of the per_picked (Percent) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "% Picked" +msgstr "" + +#. Label of the process_loss_percentage (Percent) field in DocType 'BOM' +#. Label of the process_loss_percentage (Percent) field in DocType 'Stock +#. Entry' +#. Label of the per_process_loss (Percent) field in DocType 'Subcontracting +#. Inward Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "% Process Loss" +msgstr "" + +#. Label of the per_produced (Percent) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "% Produced" +msgstr "" + +#. Label of the progress (Percent) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "% Progress" +msgstr "" + +#. Label of the per_raw_material_received (Percent) field in DocType +#. 'Subcontracting Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "% Raw Material Received" +msgstr "" + +#. Label of the per_raw_material_returned (Percent) field in DocType +#. 'Subcontracting Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "% Raw Material Returned" +msgstr "" + +#. Label of the per_received (Percent) field in DocType 'Purchase Order' +#. Label of the per_received (Percent) field in DocType 'Material Request' +#. Label of the per_received (Percent) field in DocType 'Subcontracting Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "% Received" +msgstr "" + +#. Label of the per_returned (Percent) field in DocType 'Delivery Note' +#. Label of the per_returned (Percent) field in DocType 'Purchase Receipt' +#. Label of the per_returned (Percent) field in DocType 'Subcontracting Inward +#. Order' +#. Label of the per_returned (Percent) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "% Returned" +msgstr "" + +#. Description of the '% Amount Billed' (Percent) field in DocType 'Sales +#. Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +#, python-format +msgid "% of materials billed against this Sales Order" +msgstr "" + +#. Description of the '% Delivered' (Percent) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +#, python-format +msgid "% of materials delivered against this Pick List" +msgstr "" + +#. Description of the '% Delivered' (Percent) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +#, python-format +msgid "% of materials delivered against this Sales Order" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1299 +msgid "'Account' in the Accounting section of Customer {0}" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:304 +msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" +msgstr "" + +#: erpnext/controllers/trends.py:62 +msgid "'Based On' and 'Group By' can not be same" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:23 +msgid "'Days Since Last Order' must be greater than or equal to zero" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1304 +msgid "'Default {0} Account' in Company {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:893 +msgid "'Entries' cannot be empty" +msgstr "" + +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:24 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:127 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:322 +msgid "'From Date' is required" +msgstr "" + +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:18 +msgid "'From Date' must be after 'To Date'" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:466 +msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 +msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 +msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgstr "" + +#: erpnext/stock/report/stock_ledger/stock_ledger.py:684 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:725 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +msgid "'Opening'" +msgstr "" + +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:27 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:129 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:328 +msgid "'To Date' is required" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +msgid "'To Package No.' cannot be less than 'From Package No.'" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:80 +msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 +msgid "'Update Stock' cannot be checked for fixed asset sale" +msgstr "" + +#: erpnext/accounts/doctype/bank_account/bank_account.py:79 +msgid "'{0}' account is already used by {1}. Use another account." +msgstr "" + +#: erpnext/accounts/doctype/pos_settings/pos_settings.py:44 +msgid "'{0}' has been already added." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:315 +#: erpnext/setup/doctype/company/company.py:326 +msgid "'{0}' should be in company currency {1}." +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:174 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:203 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:106 +msgid "(A) Qty After Transaction" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:208 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:111 +msgid "(B) Expected Qty After Transaction" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:223 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:126 +msgid "(C) Total Qty in Queue" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:184 +msgid "(C) Total qty in queue" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:194 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:233 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:136 +msgid "(D) Balance Stock Value" +msgstr "" + +#. Description of the 'Capacity' (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "(Daily Yield * No of Units Produced) / 100" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:199 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:238 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:141 +msgid "(E) Balance Stock Value in Queue" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:248 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:151 +msgid "(F) Change in Stock Value" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:192 +msgid "(Forecast)" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:253 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:156 +msgid "(G) Sum of Change in Stock Value" +msgstr "" + +#. Description of the 'Daily Yield (%)' (Percent) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "(Good Units Produced / Total Units Produced) × 100" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:263 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:166 +msgid "(H) Change in Stock Value (FIFO Queue)" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:209 +msgid "(H) Valuation Rate" +msgstr "" + +#. Description of the 'Actual Operating Cost' (Currency) field in DocType 'Work +#. Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "(Hour Rate / 60) * Actual Operation Time" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:273 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:176 +msgid "(I) Valuation Rate" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:278 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:181 +msgid "(J) Valuation Rate as per FIFO" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:288 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:191 +msgid "(K) Valuation = Value (D) ÷ Qty (A)" +msgstr "" + +#. Description of the 'Applicable on Cumulative Expense' (Check) field in +#. DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "(Purchase Order + Material Request + Actual Expense)" +msgstr "" + +#. Description of the 'No of Units Produced' (Int) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "(Total Workstation Time / Manufacturing Time) * 60" +msgstr "" + +#. Description of the 'From No' (Int) field in DocType 'Share Transfer' +#. Description of the 'To No' (Int) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "(including)" +msgstr "" + +#. Description of the 'Sales Taxes and Charges' (Table) field in DocType 'Sales +#. Taxes and Charges Template' +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +msgid "* Will be calculated in the transaction." +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:128 +#: erpnext/stock/doctype/item/item_prices.html:136 +msgid "+ Add Price" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:112 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:360 +msgid "0 - 30 Days" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:114 +msgid "0-30" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110 +msgid "0-30 Days" +msgstr "" + +#. Description of the 'Conversion Factor' (Float) field in DocType 'Loyalty +#. Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "1 Loyalty Points = How much base currency?" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Video Settings' +#: erpnext/utilities/doctype/video_settings/video_settings.json +msgid "1 hr" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 +msgid "1 invoice" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "1-10" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "1000+" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "11-50" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114 +msgid "1{0}" +msgstr "" + +#. Option for the 'Periodicity' (Select) field in DocType 'Asset Maintenance +#. Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "2 Yearly" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "201-500" +msgstr "" + +#. Option for the 'Periodicity' (Select) field in DocType 'Asset Maintenance +#. Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "3 Yearly" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:113 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:361 +msgid "30 - 60 Days" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Video Settings' +#: erpnext/utilities/doctype/video_settings/video_settings.json +msgid "30 mins" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:115 +msgid "30-60" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110 +msgid "30-60 Days" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "501-1000" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "51-200" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Video Settings' +#: erpnext/utilities/doctype/video_settings/video_settings.json +msgid "6 hrs" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:114 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:362 +msgid "60 - 90 Days" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:116 +msgid "60-90" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110 +msgid "60-90 Days" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:115 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:363 +msgid "90 - 120 Days" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:117 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110 +msgid "90 Above" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1293 +msgid "<0" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:544 +msgid "Cannot create asset.

    You're trying to create {0} asset(s) from {2} {3}.
    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." +msgstr "" + +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py:59 +msgid "From Time cannot be later than To Time for {0}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:436 +msgid "Row #{0}: Bundle {1} in warehouse {2} has insufficient packed items:
      {3}
    " +msgstr "" + +#. Content of the 'Help Text' (HTML) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#, python-format +msgid "
    \n" +"

    Note

    \n" +"
      \n" +"
    • \n" +"You can use Jinja tags in Subject and Body fields for dynamic values.\n" +"
    • \n" +" All fields in this doctype are available under the doc object and all fields for the customer to whom the mail will go to is available under the customer object.\n" +"
    \n" +"

    Examples

    \n" +"\n" +"
      \n" +"
    • Subject:

      Statement Of Accounts for {{ customer.customer_name }}

    • \n" +"
    • Body:

      \n" +"
      Hello {{ customer.customer_name }},
      PFA your Statement Of Accounts from {{ doc.from_date }} to {{ doc.to_date }}.
    • \n" +"
    \n" +"" +msgstr "" + +#. Content of the 'Other Details' (HTML) field in DocType 'Purchase Receipt' +#. Content of the 'Other Details' (HTML) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "
    Other Details
    " +msgstr "" + +#. Content of the 'no_bank_transactions' (HTML) field in DocType 'Bank +#. Reconciliation Tool' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +msgid "
    No Matching Bank Transactions Found
    " +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:262 +msgid "
    {0}
    " +msgstr "" + +#. Content of the 'Stock Levels HTML' (HTML) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "
    " +msgstr "" + +#. Content of the 'Prices HTML' (HTML) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "
    " +msgstr "" + +#. Content of the 'uom_help_html' (HTML) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "
    Define alternate units for this item. Eg: 1 Box = 12 Nos, set conversion factor as 12. (Will also apply for variants) Learn more →
    " +msgstr "" + +#. Content of the 'settings' (HTML) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "
    \n" +"

    All dimensions in centimeter only

    \n" +"
    " +msgstr "" + +#. Content of the 'about' (HTML) field in DocType 'Product Bundle' +#: erpnext/selling/doctype/product_bundle/product_bundle.json +msgid "

    About Product Bundle

    \n\n" +"

    Aggregate group of Items into another Item. This is useful if you are bundling a certain Items into a package and you maintain stock of the packed Items and not the aggregate Item.

    \n" +"

    The package Item will have Is Stock Item as No and Is Sales Item as Yes.

    \n" +"

    Example:

    \n" +"

    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.

    " +msgstr "" + +#. Content of the 'Help' (HTML) field in DocType 'Currency Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "

    Currency Exchange Settings Help

    \n" +"

    There are 3 variables that could be used within the endpoint, result key and in values of the parameter.

    \n" +"

    Exchange rate between {from_currency} and {to_currency} on {transaction_date} is fetched by the API.

    \n" +"

    Example: If your endpoint is exchange.com/2021-08-01, then, you will have to input exchange.com/{transaction_date}

    " +msgstr "" + +#. Content of the 'Body and Closing Text Help' (HTML) field in DocType 'Dunning +#. Letter Text' +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "

    Body Text and Closing Text Example

    \n\n" +"
    We have noticed that you have not yet paid invoice {{sales_invoice}} for {{frappe.db.get_value(\"Currency\", currency, \"symbol\")}} {{outstanding_amount}}. This is a friendly reminder that the invoice was due on {{due_date}}. Please pay the amount due immediately to avoid any further dunning cost.
    \n\n" +"

    How to get fieldnames

    \n\n" +"

    The fieldnames you can use in your template are the fields in the document. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)

    \n\n" +"

    Templating

    \n\n" +"

    Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.

    " +msgstr "" + +#. Content of the 'Contract Template Help' (HTML) field in DocType 'Contract +#. Template' +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "

    Contract Template Example

    \n\n" +"
    Contract for Customer {{ party_name }}\n\n"
    +"-Valid From : {{ start_date }} \n"
    +"-Valid To : {{ end_date }}\n"
    +"
    \n\n" +"

    How to get fieldnames

    \n\n" +"

    The field names you can use in your Contract Template are the fields in the Contract for which you are creating the template. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Contract)

    \n\n" +"

    Templating

    \n\n" +"

    Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.

    " +msgstr "" + +#. Content of the 'Terms and Conditions Help' (HTML) field in DocType 'Terms +#. and Conditions' +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +msgid "

    Standard Terms and Conditions Example

    \n\n" +"
    Delivery Terms for Order number {{ name }}\n\n"
    +"-Order Date : {{ transaction_date }} \n"
    +"-Expected Delivery Date : {{ delivery_date }}\n"
    +"
    \n\n" +"

    How to get fieldnames

    \n\n" +"

    The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)

    \n\n" +"

    Templating

    \n\n" +"

    Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.

    " +msgstr "" + +#. Content of the 'account_no_settings' (HTML) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "" +msgstr "" + +#. Content of the 'html_19' (HTML) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "" +msgstr "" + +#. Content of the 'Date Settings' (HTML) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:126 +msgid "
  • Clearance date must be after cheque date for row(s): {0}
  • " +msgstr "" + +#: erpnext/accounts/services/billing_validation.py:139 +msgid "
  • Item {0} in row(s) {1} billed more than {2}
  • " +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:427 +msgid "
  • Packed Item {0}: Required {1}, Available {2}
  • " +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:121 +msgid "
  • Payment document required for row(s): {0}
  • " +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 +#: erpnext/utilities/bulk_transaction.py:37 +msgid "
  • {}
  • " +msgstr "" + +#: erpnext/accounts/services/billing_validation.py:136 +msgid "

    Cannot overbill for the following Items:

    " +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 +msgid "

    Following {0}s doesn't belong to Company {1} :

    " +msgstr "" + +#. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "

    In your Email Template, you can use the following special variables:\n" +"

    \n" +"
      \n" +"
    • \n" +" {{ update_password_link }}: A link where your supplier can set a new password to log into your portal.\n" +"
    • \n" +"
    • \n" +" {{ portal_link }}: A link to this RFQ in your supplier portal.\n" +"
    • \n" +"
    • \n" +" {{ supplier_name }}: The company name of your supplier.\n" +"
    • \n" +"
    • \n" +" {{ contact.salutation }} {{ contact.last_name }}: The contact person of your supplier.\n" +"
    • \n" +" {{ user_fullname }}: Your full name.\n" +"
    • \n" +"
    \n" +"

    \n" +"

    Apart from these, you can access all values in this RFQ, like {{ message_for_supplier }} or {{ terms }}.

    " +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:119 +msgid "

    Please correct the following row(s):

      " +msgstr "" + +#: erpnext/controllers/buying_controller.py:124 +msgid "

      Posting Date {0} cannot be before Purchase Order date for the following:

        " +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:134 +msgid "

        Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.

        Are you sure you want to continue?" +msgstr "" + +#: erpnext/accounts/services/billing_validation.py:150 +msgid "

        To allow over-billing, please set allowance in Accounts Settings.

        " +msgstr "" + +#. Content of the 'Message Examples' (HTML) field in DocType 'Payment Gateway +#. Account' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +msgid "
        Message Example
        \n\n" +"<p> Thank You for being a part of {{ doc.company }}! We hope you are enjoying the service.</p>\n\n" +"<p> Please find enclosed the E Bill statement. The outstanding amount is {{ doc.grand_total }}.</p>\n\n" +"<p> We don't want you to be spending time running around in order to pay for your Bill.
        After all, life is beautiful and the time you have in hand should be spent to enjoy it!
        So here are our little ways to help you get more time for life! </p>\n\n" +"<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n" +"
        \n" +msgstr "" + +#. Content of the 'Message Examples' (HTML) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "
        Message Example
        \n\n" +"<p>Dear {{ doc.contact_person }},</p>\n\n" +"<p>Requesting payment for {{ doc.doctype }}, {{ doc.name }} for {{ doc.grand_total }}.</p>\n\n" +"<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n" +"
        \n" +msgstr "" + +#. Header text in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Masters & Reports" +msgstr "" + +#. Header text in the Invoicing Workspace +#. Header text in the Assets Workspace +#. Header text in the Buying Workspace +#. Header text in the Manufacturing Workspace +#. Header text in the Projects Workspace +#. Header text in the Quality Workspace +#. Header text in the Selling Workspace +#. Header text in the Home Workspace +#. Header text in the Support Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/support/workspace/support/support.json +msgid "Reports & Masters" +msgstr "" + +#. Header text in the Subcontracting Workspace +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracting Inward and Outward" +msgstr "" + +#. Header text in the ERPNext Settings Workspace +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +msgid "Your Shortcuts\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t" +msgstr "" + +#. Header text in the Manufacturing Workspace +#. Header text in the Home Workspace +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/setup/workspace/home/home.json +msgid "Your Shortcuts" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:1300 +msgid "Grand Total: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:1301 +msgid "Outstanding Amount: {0}" +msgstr "" + +#. Content of the 'html_19' (HTML) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "\n" +"\n" +" \n" +" \n" +" \n" +" \n" +"\n" +"\n" +"\n" +" \n" +" \n" +"\n" +"\n" +" \n" +" \n" +"\n\n" +"\n" +"
        Child DocumentNon Child Document
        \n" +"

        To access parent document field use parent.fieldname and to access child table document field use doc.fieldname

        \n\n" +"
        \n" +"

        To access document field use doc.fieldname

        \n" +"
        \n" +"

        Example: parent.doctype == \"Stock Entry\" and doc.item_code == \"Test\"

        \n\n" +"
        \n" +"

        Example: doc.doctype == \"Stock Entry\" and doc.purpose == \"Manufacture\"

        \n" +"
        \n\n\n\n\n\n\n" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:213 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:116 +msgid "A - B" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:189 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:228 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:131 +msgid "A - C" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:355 +msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:73 +msgid "A Holiday List can be added to exclude counting these days for the Workstation." +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:140 +msgid "A Lead requires either a person's name or an organization's name" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 +msgid "A Packing Slip can only be created for Draft Delivery Note." +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:123 +msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/price_list/price_list.json +msgid "A Price List is a collection of Item Prices either Selling, Buying, or both" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/item/item.json +msgid "A Product or a Service that is bought, sold or kept in stock." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/mapper.py:228 +msgid "A Reverse Journal Entry {0} already exists for this Journal Entry." +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json +msgid "A condition for a Shipping Rule" +msgstr "" + +#. Description of the 'Send To Primary Contact' (Check) field in DocType +#. 'Process Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "A customer must have primary contact email." +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Product Bundle' +#: erpnext/selling/doctype/product_bundle/product_bundle.json +msgid "A disabled Product Bundle cannot be selected in transactions." +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:59 +msgid "A driver must be set to submit." +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "A logical Warehouse against which stock entries are made." +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1489 +msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." +msgstr "" + +#: erpnext/templates/emails/confirm_appointment.html:2 +msgid "A new appointment has been created for you with {0}" +msgstr "" + +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:3 +msgid "A new fiscal year has been automatically created." +msgstr "" + +#. Description of the 'Inspection Required before Delivery' (Check) field in +#. DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "A quality inspection must be completed before generating a Delivery Note for this item." +msgstr "" + +#. Description of the 'Inspection Required before Purchase' (Check) field in +#. DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "A quality inspection must be completed before generating a Purchase Receipt for this item." +msgstr "" + +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:99 +msgid "A template with tax category {0} already exists. Only one template is allowed with each tax category" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission." +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "A+" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "A-" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "AB+" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "AB-" +msgstr "" + +#. Option for the 'Invoice Series' (Select) field in DocType 'Import Supplier +#. Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "ACC-PINV-.YYYY.-" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:88 +msgid "ALL records will be deleted (entire DocType cleared)" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:552 +msgid "AMC Expiry (Serial)" +msgstr "" + +#. Label of the amc_expiry_date (Date) field in DocType 'Serial No' +#. Label of the amc_expiry_date (Date) field in DocType 'Warranty Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "AMC Expiry Date" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "AP Summary" +msgstr "" + +#. Label of the api_details_section (Section Break) field in DocType 'Currency +#. Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "API Details" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "AR Summary" +msgstr "" + +#. Label of the awb_number (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "AWB Number" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Abampere" +msgstr "" + +#. Label of the abbr (Data) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Abbr" +msgstr "" + +#. Label of the abbr (Data) field in DocType 'Item Attribute Value' +#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json +msgid "Abbreviation" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:249 +msgid "Abbreviation already used for another company" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:246 +msgid "Abbreviation is mandatory" +msgstr "" + +#: erpnext/stock/doctype/item_attribute/item_attribute.py:112 +msgid "Abbreviation: {0} must appear only once" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289 +msgid "Above" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:116 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:364 +msgid "Above 120 Days" +msgstr "" + +#. Name of a role +#: erpnext/setup/doctype/department/department.json +msgid "Academics User" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:38 +msgid "Accept Matching Rule" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:39 +msgid "Accept the rule for the selected transaction" +msgstr "" + +#. Label of the acceptance_formula (Code) field in DocType 'Item Quality +#. Inspection Parameter' +#. Label of the acceptance_formula (Code) field in DocType 'Quality Inspection +#. Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Acceptance Criteria Formula" +msgstr "" + +#. Label of the value (Data) field in DocType 'Item Quality Inspection +#. Parameter' +#. Label of the value (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Acceptance Criteria Value" +msgstr "" + +#. Label of the qty (Float) field in DocType 'Purchase Invoice Item' +#. Label of the qty (Float) field in DocType 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Accepted Qty" +msgstr "" + +#. Label of the stock_qty (Float) field in DocType 'Purchase Invoice Item' +#. Label of the stock_qty (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Accepted Qty in Stock UOM" +msgstr "" + +#. Label of the qty (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Accepted Quantity" +msgstr "" + +#. Label of the warehouse (Link) field in DocType 'Purchase Invoice Item' +#. Label of the set_warehouse (Link) field in DocType 'Purchase Receipt' +#. Label of the warehouse (Link) field in DocType 'Purchase Receipt Item' +#. Label of the set_warehouse (Link) field in DocType 'Subcontracting Receipt' +#. Label of the warehouse (Link) field in DocType 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Accepted Warehouse" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:485 +msgid "Accepting the suggestion will reconcile both transactions." +msgstr "" + +#. Label of the access_key (Data) field in DocType 'Currency Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "Access Key" +msgstr "" + +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:48 +msgid "Access Key is required for Service Provider: {0}" +msgstr "" + +#. Description of the 'Common Code' (Data) field in DocType 'UOM' +#: erpnext/setup/doctype/uom/uom.json +msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." +msgstr "" + +#. Description of the 'Customer Numbers' (Table) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Account / customer numbers assigned to your companies by this supplier (for reconciliation on their statements)" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/account_balance/account_balance.json +msgid "Account Balance" +msgstr "" + +#. Label of the account_category (Link) field in DocType 'Account' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account_tree.js:162 +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Account Category" +msgstr "" + +#. Label of the account_category_name (Data) field in DocType 'Account +#. Category' +#: erpnext/accounts/doctype/account_category/account_category.json +msgid "Account Category Name" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +msgid "Account Closing Balance" +msgstr "" + +#. Label of the account_currency (Link) field in DocType 'Account Closing +#. Balance' +#. Label of the currency (Link) field in DocType 'Advance Taxes and Charges' +#. Label of the account_currency (Link) field in DocType 'Bank Clearance' +#. Label of the account_currency (Link) field in DocType 'Bank Reconciliation +#. Tool' +#. Label of the account_currency (Link) field in DocType 'Exchange Rate +#. Revaluation Account' +#. Label of the account_currency (Link) field in DocType 'GL Entry' +#. Label of the account_currency (Link) field in DocType 'Journal Entry +#. Account' +#. Label of the account_currency (Link) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the account_currency (Link) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the account_currency (Link) field in DocType 'Unreconcile Payment +#. Entries' +#. Label of the account_currency (Link) field in DocType 'Landed Cost Taxes and +#. Charges' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Account Currency" +msgstr "" + +#. Label of the paid_from_account_currency (Link) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Account Currency (From)" +msgstr "" + +#. Label of the paid_to_account_currency (Link) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Account Currency (To)" +msgstr "" + +#. Option for the 'Data Source' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Account Data" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:20 +#: erpnext/accounts/report/cash_flow/cash_flow.js:29 +#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:21 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:20 +msgid "Account Detail Level" +msgstr "" + +#. Label of the account_details_section (Section Break) field in DocType 'Bank +#. Account' +#. Label of the account_details_section (Section Break) field in DocType 'GL +#. Entry' +#. Label of the section_break_7 (Section Break) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Account Details" +msgstr "" + +#. Label of the account_head (Link) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the account_head (Link) field in DocType 'POS Closing Entry Taxes' +#. Label of the account_head (Link) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the account_head (Link) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Account Head" +msgstr "" + +#. Label of the account_manager (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Account Manager" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 +#: erpnext/controllers/accounts_controller.py:1308 +msgid "Account Missing" +msgstr "" + +#. Label of the account_name (Data) field in DocType 'Account' +#. Label of the account_name (Data) field in DocType 'Bank Account' +#. Label of the account_name (Data) field in DocType 'Ledger Merge' +#. Label of the account_name (Data) field in DocType 'Ledger Merge Accounts' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:399 +#: erpnext/accounts/report/financial_statements.py:705 +#: erpnext/accounts/report/trial_balance/trial_balance.py:498 +msgid "Account Name" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:377 +msgid "Account Not Found" +msgstr "" + +#. Label of the account_number (Data) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account_tree.js:128 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:406 +#: erpnext/accounts/report/financial_statements.py:712 +#: erpnext/accounts/report/trial_balance/trial_balance.py:505 +msgid "Account Number" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:363 +msgid "Account Number {0} already used in account {1}" +msgstr "" + +#. Label of the account_opening_balance (Currency) field in DocType 'Bank +#. Reconciliation Tool' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +msgid "Account Opening Balance" +msgstr "" + +#. Label of the paid_from (Link) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Account Paid From" +msgstr "" + +#. Label of the paid_to (Link) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Account Paid To" +msgstr "" + +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.py:120 +msgid "Account Pay Only" +msgstr "" + +#. Label of the account_subtype (Link) field in DocType 'Bank Account' +#. Label of the account_subtype (Data) field in DocType 'Bank Account Subtype' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.json +msgid "Account Subtype" +msgstr "" + +#. Label of the account_type (Select) field in DocType 'Account' +#. Label of the account_type (Link) field in DocType 'Bank Account' +#. Label of the account_type (Data) field in DocType 'Bank Account Type' +#. Label of the account_type (Data) field in DocType 'Journal Entry Account' +#. Label of the account_type (Data) field in DocType 'Payment Entry Reference' +#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry' +#. Label of the account_type (Select) field in DocType 'Party Type' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account.py:210 +#: erpnext/accounts/doctype/account/account_tree.js:154 +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/account_balance/account_balance.js:34 +#: erpnext/setup/doctype/party_type/party_type.json +msgid "Account Type" +msgstr "" + +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:166 +msgid "Account Value" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:332 +msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:326 +msgid "Account balance already in Debit, you are not allowed to set 'Balance Must Be' as 'Credit'" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:101 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:107 +msgid "Account company does not match with the rule company." +msgstr "" + +#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py:47 +msgid "Account filter not set!" +msgstr "" + +#. Label of the account_for_change_amount (Link) field in DocType 'POS Invoice' +#. Label of the account_for_change_amount (Link) field in DocType 'POS Profile' +#. Label of the account_for_change_amount (Link) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Account for Change Amount" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:153 +msgid "Account is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:48 +msgid "Account is mandatory to get payment entries" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:635 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:217 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1201 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:315 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:659 +msgid "Account is required" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:913 +msgid "Account not Found" +msgstr "" + +#. Description of the 'Purchase Expense Account' (Link) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account to record additional purchase expenses like freight or customs" +msgstr "" + +#. Description of the 'COGS Account' (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account where cost of goods sold will be posted when this item is sold" +msgstr "" + +#. Description of the 'Income Account' (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account where revenue from selling this item will be credited" +msgstr "" + +#. Description of the 'Expense Account' (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account where the cost of this item will be debited on purchase" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:431 +msgid "Account with child nodes cannot be converted to ledger" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:283 +msgid "Account with child nodes cannot be set as ledger" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:442 +msgid "Account with existing transaction can not be converted to group." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:467 +msgid "Account with existing transaction can not be deleted" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:277 +#: erpnext/accounts/doctype/account/account.py:433 +msgid "Account with existing transaction cannot be converted to ledger" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:79 +msgid "Account {0} added multiple times" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:295 +msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:292 +msgid "Account {0} cannot be disabled as it is already set as {1} for {2}." +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:162 +msgid "Account {0} does not belong to company {1}" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:297 +msgid "Account {0} does not belong to company: {1}" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:602 +msgid "Account {0} does not exist" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:70 +msgid "Account {0} does not exists" +msgstr "" + +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:48 +msgid "Account {0} does not match with Company {1} in Mode of Account: {2}" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:140 +msgid "Account {0} doesn't belong to Company {1}" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:557 +msgid "Account {0} exists in parent company {1}." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:415 +msgid "Account {0} is added in the child company {1}" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:286 +msgid "Account {0} is disabled." +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:435 +msgid "Account {0} is frozen" +msgstr "" + +#: erpnext/accounts/services/base_gl_composer.py:210 +msgid "Account {0} is invalid. Account Currency must be {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:36 +msgid "Account {0} should be of type Expense" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:153 +msgid "Account {0}: Parent account {1} can not be a ledger" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:159 +msgid "Account {0}: Parent account {1} does not belong to company: {2}" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:147 +msgid "Account {0}: Parent account {1} does not exist" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:150 +msgid "Account {0}: You can not assign itself as parent account" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:90 +msgid "Account: {0} is capital Work in progress and can not be updated by Journal Entry" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:396 +msgid "Account: {0} can only be updated via Stock Transactions" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +msgid "Account: {0} is not permitted under Payment Entry" +msgstr "" + +#: erpnext/accounts/services/taxes.py:333 +msgid "Account: {0} with currency: {1} can not be selected" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:1 +msgid "Accountant" +msgstr "" + +#. Group in Bank Account's connections +#. Label of the accounting_tab (Tab Break) field in DocType 'POS Profile' +#. Label of the accounting (Section Break) field in DocType 'Purchase Invoice +#. Item' +#. Label of the section_break_10 (Section Break) field in DocType 'Shipping +#. Rule' +#. Label of the accounting_tab (Tab Break) field in DocType 'Supplier' +#. Label of a Desktop Icon +#. Label of the accounting_tab (Tab Break) field in DocType 'Customer' +#. Label of a Card Break in the Home Workspace +#. Label of the accounting (Tab Break) field in DocType 'Item' +#. Label of the accounting (Section Break) field in DocType 'Stock Entry +#. Detail' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/desktop_icon/accounting.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/setup_wizard/data/industry_type.txt:1 +#: erpnext/setup/workspace/home/home.json erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Accounting" +msgstr "" + +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Dunning' +#. Label of the section_break_9 (Section Break) field in DocType 'Dunning Type' +#. Label of the more_info (Section Break) field in DocType 'POS Invoice' +#. Label of the accounting (Section Break) field in DocType 'POS Invoice Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the more_info (Section Break) field in DocType 'Sales Invoice' +#. Label of the accounting (Section Break) field in DocType 'Sales Invoice +#. Item' +#. Label of the accounting_details (Section Break) field in DocType 'Purchase +#. Order Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Delivery Note Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Material Request Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Purchase Receipt Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Subcontracting Receipt Supplied Item' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Accounting Details" +msgstr "" + +#. Name of a DocType +#. Label of the accounting_dimension (Select) field in DocType 'Accounting +#. Dimension Filter' +#. Label of the accounting_dimension (Link) field in DocType 'Allowed +#. Dimension' +#. Label of a Link in the Invoicing Workspace +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Repair' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +#: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:32 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/budget.json +msgid "Accounting Dimension" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:214 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:150 +msgid "Accounting Dimension {0} is required for 'Balance Sheet' account {1}." +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:201 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:138 +msgid "Accounting Dimension {0} is required for 'Profit and Loss' account {1}." +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Accounting Dimension Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Accounting Dimension Filter" +msgstr "" + +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Advance Taxes and Charges' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Journal Entry Account' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Journal Entry Template Account' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Loyalty Program' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Opening Invoice Creation Tool' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Opening Invoice Creation Tool Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Payment Entry' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Payment Reconciliation Allocation' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Payment Request' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'POS Invoice' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'POS Invoice Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'POS Profile' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Invoice Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Taxes and Charges' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Sales Invoice' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Sales Invoice Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Sales Taxes and Charges' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Shipping Rule' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subscription' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subscription Plan' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Capitalization' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Capitalization Asset Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Capitalization Service Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Capitalization Stock Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Value Adjustment' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Request for Quotation Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Supplier Quotation' +#. Label of the ad_sec_break (Section Break) field in DocType 'Supplier +#. Quotation Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Sales Order' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Sales Order Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Delivery Note' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Delivery Note Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Landed Cost Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Material Request Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Receipt' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Receipt Item' +#. Label of the accounting_dimensions_section (Tab Break) field in DocType +#. 'Stock Entry' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Stock Entry Detail' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Stock Reconciliation' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subcontracting Order' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subcontracting Receipt Supplied Item' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/material_request/material_request_dashboard.py:20 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Accounting Dimensions" +msgstr "" + +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Order' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Order Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Accounting Dimensions " +msgstr "" + +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Accounting Dimensions Filter" +msgstr "" + +#. Label of the accounts (Table) field in DocType 'Journal Entry' +#. Label of the accounts (Table) field in DocType 'Journal Entry Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Accounting Entries" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:947 +#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 +msgid "Accounting Entry for Asset" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:137 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:155 +msgid "Accounting Entry for LCV in Stock Entry {0}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:225 +msgid "Accounting Entry for Landed Cost Voucher for SCR {0}" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/provisional_accounting.py:38 +msgid "Accounting Entry for Service" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:203 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:224 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:241 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:262 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 +#: erpnext/stock/services/base_stock_gl_composer.py:65 +#: erpnext/stock/services/base_stock_gl_composer.py:80 +#: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:67 +msgid "Accounting Entry for Stock" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:269 +msgid "Accounting Entry for {0}" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:98 +msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:193 +#: erpnext/assets/doctype/asset/asset.js:185 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:92 +#: erpnext/buying/doctype/supplier/supplier.js:123 +#: erpnext/public/js/controllers/stock_controller.js:88 +#: erpnext/public/js/utils/ledger_preview.js:8 +#: erpnext/selling/doctype/customer/customer.js:173 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:51 +msgid "Accounting Ledger" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Accounting Masters" +msgstr "" + +#. Title of the Module Onboarding 'Accounting Onboarding' +#: erpnext/accounts/module_onboarding/accounting_onboarding/accounting_onboarding.json +msgid "Accounting Onboarding" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Accounting Period" +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +msgid "Accounting Period overlaps with {0}" +msgstr "" + +#. Description of the 'Accounts Frozen Till Date' (Date) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Accounting entries are frozen up to this date. Only users with the specified role can create or modify entries before this date." +msgstr "" + +#. Label of the applicable_on_account (Link) field in DocType 'Applicable On +#. Account' +#. Label of the accounts (Table) field in DocType 'Bank Transaction Rule' +#. Label of the accounts (Table) field in DocType 'Mode of Payment' +#. Label of the payment_accounts_section (Section Break) field in DocType +#. 'Payment Entry' +#. Label of the accounts (Table) field in DocType 'Tax Withholding Category' +#. Label of the section_break_2 (Section Break) field in DocType 'Asset +#. Category' +#. Label of the accounts (Table) field in DocType 'Asset Category' +#. Label of the accounts_tab (Tab Break) field in DocType 'Company' +#. Label of the accounts (Table) field in DocType 'Customer Group' +#. Label of the accounts (Section Break) field in DocType 'Email Digest' +#. Group in Incoterm's connections +#. Label of the accounts (Table) field in DocType 'Supplier Group' +#: erpnext/accounts/doctype/applicable_on_account/applicable_on_account.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +#: erpnext/assets/doctype/asset_category/asset_category.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/company/company.py:452 +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/setup/install.py:393 +msgid "Accounts" +msgstr "" + +#. Label of the closing_settings_tab (Tab Break) field in DocType 'Accounts +#. Settings' +#. Label of the accounts_closing_tab (Tab Break) field in DocType 'Company' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/setup/doctype/company/company.json +msgid "Accounts Closing" +msgstr "" + +#. Label of the accounts_frozen_till_date (Date) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Accounts Frozen Till Date" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:186 +msgid "Accounts Included in Report" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:160 +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:185 +msgid "Accounts Missing from Report" +msgstr "" + +#. Option for the 'Write Off Based On' (Select) field in DocType 'Journal +#. Entry' +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.json +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126 +#: erpnext/buying/doctype/supplier/supplier.js:135 +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Accounts Payable" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:177 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.json +msgid "Accounts Payable Summary" +msgstr "" + +#. Option for the 'Write Off Based On' (Select) field in DocType 'Journal +#. Entry' +#. Option for the 'Report' (Select) field in DocType 'Process Statement Of +#. Accounts' +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:12 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:12 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.json +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:149 +#: erpnext/selling/doctype/customer/customer.js:162 +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Accounts Receivable" +msgstr "" + +#. Label of the accounts_receivable_payable_tuning_section (Section Break) +#. field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Accounts Receivable / Payable Tuning" +msgstr "" + +#. Label of the receivable_payable_remarks_length (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Accounts Receivable / Payable remarks length" +msgstr "" + +#. Label of the accounts_receivable_credit (Link) field in DocType 'Invoice +#. Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Accounts Receivable Credit Account" +msgstr "" + +#. Label of the accounts_receivable_discounted (Link) field in DocType 'Invoice +#. Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Accounts Receivable Discounted Account" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:204 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.json +msgid "Accounts Receivable Summary" +msgstr "" + +#. Label of the accounts_receivable_unpaid (Link) field in DocType 'Invoice +#. Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Accounts Receivable Unpaid Account" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a shortcut in the ERPNext Settings Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Accounts Settings" +msgstr "" + +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: erpnext/desktop_icon/accounts_setup.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Accounts Setup" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1010 +msgid "Accounts table cannot be blank." +msgstr "" + +#. Label of the merge_accounts (Table) field in DocType 'Ledger Merge' +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +msgid "Accounts to Merge" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270 +msgid "Accrued Expenses" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117 +#: erpnext/accounts/report/account_balance/account_balance.js:37 +msgid "Accumulated Depreciation" +msgstr "" + +#. Label of the accumulated_depreciation_account (Link) field in DocType 'Asset +#. Category Account' +#. Label of the accumulated_depreciation_account (Link) field in DocType +#. 'Company' +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +#: erpnext/setup/doctype/company/company.json +msgid "Accumulated Depreciation Account" +msgstr "" + +#. Label of the accumulated_depreciation_amount (Currency) field in DocType +#. 'Depreciation Schedule' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:173 +#: erpnext/assets/doctype/asset/asset.js:380 +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +msgid "Accumulated Depreciation Amount" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +msgid "Accumulated Depreciation as on" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:533 +msgid "Accumulated Monthly" +msgstr "" + +#: erpnext/controllers/budget_controller.py:429 +msgid "Accumulated Monthly Budget for Account {0} against {1} {2} is {3}. It will be collectively ({4}) exceeded by {5}" +msgstr "" + +#: erpnext/controllers/budget_controller.py:331 +msgid "Accumulated Monthly Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:39 +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js:12 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:40 +msgid "Accumulated Values" +msgstr "" + +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:125 +msgid "Accumulated Values in Group Company" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:111 +msgid "Achieved ({})" +msgstr "" + +#. Label of the acquisition_date (Date) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Acquisition Date" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Acre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Acre (US)" +msgstr "" + +#: erpnext/quality_management/doctype/quality_review/quality_review_list.js:7 +msgid "Action Initialised" +msgstr "" + +#. Label of the action_if_accumulated_monthly_budget_exceeded (Select) field in +#. DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Accumulated Monthly Budget Exceeded on Actual" +msgstr "" + +#. Label of the action_if_accumulated_monthly_budget_exceeded_on_mr (Select) +#. field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Accumulated Monthly Budget Exceeded on MR" +msgstr "" + +#. Label of the action_if_accumulated_monthly_budget_exceeded_on_po (Select) +#. field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Accumulated Monthly Budget Exceeded on PO" +msgstr "" + +#. Label of the action_if_accumulated_monthly_exceeded_on_cumulative_expense +#. (Select) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Accumulative Monthly Budget Exceeded on Cumulative Expense" +msgstr "" + +#. Label of the action_if_annual_budget_exceeded (Select) field in DocType +#. 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Annual Budget Exceeded on Actual" +msgstr "" + +#. Label of the action_if_annual_budget_exceeded_on_mr (Select) field in +#. DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Annual Budget Exceeded on MR" +msgstr "" + +#. Label of the action_if_annual_budget_exceeded_on_po (Select) field in +#. DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Annual Budget Exceeded on PO" +msgstr "" + +#. Label of the action_if_annual_exceeded_on_cumulative_expense (Select) field +#. in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Anual Budget Exceeded on Cumulative Expense" +msgstr "" + +#. Label of the action_if_quality_inspection_is_not_submitted (Select) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Action if Quality Inspection is not submitted" +msgstr "" + +#. Label of the action_if_quality_inspection_is_rejected (Select) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Action if Quality Inspection is rejected" +msgstr "" + +#. Label of the maintain_same_rate_action (Select) field in DocType 'Buying +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Action if same rate is not maintained" +msgstr "" + +#. Label of the maintain_same_rate_action (Select) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Action if same rate is not maintained throughout internal transaction" +msgstr "" + +#. Label of the maintain_same_rate_action (Select) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Action if same rate is not maintained throughout sales cycle" +msgstr "" + +#. Label of the action_on_new_invoice (Select) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Action on New Invoice" +msgstr "" + +#. Label of the actions_performed (Text Editor) field in DocType 'Asset +#. Maintenance Log' +#. Label of the actions_performed (Long Text) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Actions performed" +msgstr "" + +#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/item/item.js:481 +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Activate Serial / Batch No for Item" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.py:70 +msgid "Active Leads" +msgstr "" + +#. Label of the on_status_image (Attach Image) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Active Status" +msgstr "" + +#. Label of a number card in the Subcontracting Workspace +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Active Subcontracted Items" +msgstr "" + +#. Label of the activities_tab (Tab Break) field in DocType 'Lead' +#. Label of the activities_tab (Tab Break) field in DocType 'Opportunity' +#. Label of the activities_tab (Tab Break) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Activities" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Activity Cost" +msgstr "" + +#: erpnext/projects/doctype/activity_cost/activity_cost.py:55 +msgid "Activity Cost exists for Employee {0} against Activity Type - {1}" +msgstr "" + +#: erpnext/projects/doctype/activity_type/activity_type.js:10 +msgid "Activity Cost per Employee" +msgstr "" + +#. Label of the activity_type (Link) field in DocType 'Sales Invoice Timesheet' +#. Label of the activity_type (Link) field in DocType 'Activity Cost' +#. Name of a DocType +#. Label of the activity_type (Data) field in DocType 'Activity Type' +#. Label of the activity_type (Link) field in DocType 'Timesheet Detail' +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/activity_type/activity_type.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:29 +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/public/js/projects/timer.js:9 +#: erpnext/templates/pages/timelog_info.html:25 +#: erpnext/workspace_sidebar/projects.json +msgid "Activity Type" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:234 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:238 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:320 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:330 +msgid "Actual" +msgstr "" + +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:125 +msgid "Actual Balance Qty" +msgstr "" + +#. Label of the actual_batch_qty (Float) field in DocType 'Packed Item' +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Actual Batch Quantity" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +msgid "Actual Cost" +msgstr "" + +#. Label of the actual_date (Date) field in DocType 'Maintenance Schedule +#. Detail' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +msgid "Actual Date" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 +msgid "Actual Delivery Date" +msgstr "" + +#. Label of the section_break_cmgo (Section Break) field in DocType 'Master +#. Production Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +msgid "Actual Demand" +msgstr "" + +#. Label of the actual_end_date (Datetime) field in DocType 'Job Card' +#. Label of the actual_end_date (Datetime) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:254 +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:129 +msgid "Actual End Date" +msgstr "" + +#. Label of the actual_end_date (Date) field in DocType 'Project' +#. Label of the act_end_date (Date) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Actual End Date (via Timesheet)" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:321 +msgid "Actual End Date cannot be before Actual Start Date" +msgstr "" + +#. Label of the actual_end_time (Datetime) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Actual End Time" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:459 +msgid "Actual Expense" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:613 +msgid "Actual Expenses" +msgstr "" + +#. Label of the actual_operating_cost (Currency) field in DocType 'Work Order' +#. Label of the actual_operating_cost (Currency) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Actual Operating Cost" +msgstr "" + +#. Label of the actual_operation_time (Float) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Actual Operation Time" +msgstr "" + +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:461 +msgid "Actual Posting" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the actual_qty (Float) field in DocType 'Bin' +#. Label of the actual_qty (Float) field in DocType 'Material Request Item' +#. Label of the actual_qty (Float) field in DocType 'Packed Item' +#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:21 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:95 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:143 +msgid "Actual Qty" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Actual Qty (at source/target)" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Asset Capitalization Stock +#. Item' +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +msgid "Actual Qty in Warehouse" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:201 +msgid "Actual Qty is mandatory" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:37 +#: erpnext/stock/dashboard/item_dashboard_list.html:28 +msgid "Actual Qty {0} / Waiting Qty {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:196 +msgid "Actual Qty: Quantity available in the warehouse." +msgstr "" + +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:95 +msgid "Actual Quantity" +msgstr "" + +#. Label of the actual_start_date (Datetime) field in DocType 'Job Card' +#. Label of the actual_start_date (Datetime) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:248 +msgid "Actual Start Date" +msgstr "" + +#. Label of the actual_start_date (Date) field in DocType 'Project' +#. Label of the act_start_date (Date) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Actual Start Date (via Timesheet)" +msgstr "" + +#. Label of the actual_start_time (Datetime) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Actual Start Time" +msgstr "" + +#. Label of the timing_detail (Tab Break) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Actual Time" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Actual Time and Cost" +msgstr "" + +#. Label of the actual_time (Float) field in DocType 'Project' +#. Label of the actual_time (Float) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Actual Time in Hours (via Timesheet)" +msgstr "" + +#: erpnext/stock/page/stock_balance/stock_balance.js:55 +msgid "Actual qty in stock" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 +#: erpnext/public/js/controllers/accounts.js:197 +msgid "Actual type tax cannot be included in Item rate in row {0}" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1022 +msgid "Ad-hoc Qty" +msgstr "" + +#: erpnext/stock/doctype/price_list/price_list.js:8 +msgid "Add / Edit Prices" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:214 +msgid "Add Columns in Transaction Currency" +msgstr "" + +#. Label of the add_corrective_operation_cost_in_finished_good_valuation +#. (Check) field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Add Corrective Operation Cost in Finished Good Valuation" +msgstr "" + +#: erpnext/public/js/event.js:24 +msgid "Add Customers" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:93 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:442 +msgid "Add Discount" +msgstr "" + +#: erpnext/public/js/event.js:40 +msgid "Add Employees" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:256 +#: erpnext/selling/doctype/sales_order/sales_order.js:278 +#: erpnext/stock/dashboard/item_dashboard.js:216 +msgid "Add Item" +msgstr "" + +#: erpnext/public/js/utils/item_selector.js:20 +#: erpnext/public/js/utils/item_selector.js:35 +msgid "Add Items" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:56 +msgid "Add Items in the Purpose Table" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.js:84 +msgid "Add Lead to Prospect" +msgstr "" + +#: erpnext/public/js/event.js:16 +msgid "Add Leads" +msgstr "" + +#. Label of the add_local_holidays (Section Break) field in DocType 'Holiday +#. List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Add Local Holidays" +msgstr "" + +#. Label of the add_manually (Check) field in DocType 'Repost Payment Ledger' +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +msgid "Add Manually" +msgstr "" + +#: erpnext/projects/doctype/task/task_tree.js:42 +msgid "Add Multiple" +msgstr "" + +#: erpnext/projects/doctype/task/task_tree.js:49 +msgid "Add Multiple Tasks" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:974 +msgid "Add Opening Stock" +msgstr "" + +#. Label of the add_deduct_tax (Select) field in DocType 'Advance Taxes and +#. Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +msgid "Add Or Deduct" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:280 +msgid "Add Order Discount" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:281 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:416 +msgid "Add Phantom Item" +msgstr "" + +#. Label of the add_quote (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Add Quote" +msgstr "" + +#. Label of the add_raw_materials (Button) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom/bom.js:1050 +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Add Raw Materials" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:711 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1260 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:728 +msgid "Add Row" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:227 +#: banking/src/components/features/Settings/MatchingRules.tsx:30 +msgid "Add Rule" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:82 +msgid "Add Safety Stock" +msgstr "" + +#: erpnext/public/js/event.js:48 +msgid "Add Sales Partners" +msgstr "" + +#. Label of the add_schedule (Button) field in DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order/sales_order.js:687 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Add Schedule" +msgstr "" + +#. Label of the add_serial_batch_bundle (Button) field in DocType +#. 'Subcontracting Receipt Item' +#. Label of the add_serial_batch_bundle (Button) field in DocType +#. 'Subcontracting Receipt Supplied Item' +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Add Serial / Batch Bundle" +msgstr "" + +#. Label of the add_serial_batch_bundle (Button) field in DocType 'Purchase +#. Invoice Item' +#. Label of the add_serial_batch_bundle (Button) field in DocType 'Purchase +#. Receipt Item' +#. Label of the add_serial_batch_bundle (Button) field in DocType 'Stock Entry +#. Detail' +#. Label of the add_serial_batch_bundle (Button) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Add Serial / Batch No" +msgstr "" + +#. Label of the add_serial_batch_for_rejected_qty (Button) field in DocType +#. 'Purchase Receipt Item' +#. Label of the add_serial_batch_for_rejected_qty (Button) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Add Serial / Batch No (Rejected Qty)" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:26 +msgid "Add Series Prefix" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 +msgid "Add Stock" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:281 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:416 +msgid "Add Sub Assembly" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:517 +#: erpnext/public/js/event.js:32 +msgid "Add Suppliers" +msgstr "" + +#: erpnext/utilities/activation.py:126 +msgid "Add Timesheets" +msgstr "" + +#. Label of the add_weekly_holidays (Section Break) field in DocType 'Holiday +#. List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Add Weekly Holidays" +msgstr "" + +#: erpnext/public/js/utils/crm_activities.js:144 +msgid "Add a Note" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:879 +msgid "Add a charge to the payment entry with the difference amount" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:863 +msgid "Add a charge to the payment entry with the unallocated amount" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:800 +msgid "Add a row with the difference amount" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:579 +msgid "Add all accounts that you want to split the transaction into." +msgstr "" + +#: erpnext/www/book_appointment/index.html:42 +msgid "Add details" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:23 +#: erpnext/stock/doctype/pick_list/pick_list.js:89 +msgid "Add items in the Item Locations table" +msgstr "" + +#. Label of the add_deduct_tax (Select) field in DocType 'Purchase Taxes and +#. Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Add or Deduct" +msgstr "" + +#: erpnext/utilities/activation.py:116 +msgid "Add the rest of your organization as your users. You can also add invite Customers to your portal by adding them from Contacts" +msgstr "" + +#. Label of the get_weekly_off_dates (Button) field in DocType 'Holiday List' +#. Label of the get_local_holidays (Button) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Add to Holidays" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.js:38 +msgid "Add to Prospect" +msgstr "" + +#. Label of the add_to_transit (Check) field in DocType 'Stock Entry' +#. Label of the add_to_transit (Check) field in DocType 'Stock Entry Type' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Add to Transit" +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:117 +msgid "Add vouchers to generate preview." +msgstr "" + +#: erpnext/accounts/doctype/coupon_code/coupon_code.js:36 +msgid "Add/Edit Coupon Conditions" +msgstr "" + +#. Label of the added_by (Link) field in DocType 'CRM Note' +#: erpnext/crm/doctype/crm_note/crm_note.json +msgid "Added By" +msgstr "" + +#. Label of the added_on (Datetime) field in DocType 'CRM Note' +#: erpnext/crm/doctype/crm_note/crm_note.json +msgid "Added On" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.py:134 +msgid "Added Supplier Role to User {0}." +msgstr "" + +#: erpnext/controllers/website_list_for_contact.py:311 +msgid "Added {1} Role to User {0}." +msgstr "" + +#: erpnext/crm/doctype/lead/lead.js:81 +msgid "Adding Lead to Prospect..." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:451 +msgid "Additional" +msgstr "" + +#. Label of the additional_asset_cost (Currency) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Additional Asset Cost" +msgstr "" + +#. Label of the additional_cost (Currency) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Additional Cost" +msgstr "" + +#. Label of the additional_cost_per_qty (Currency) field in DocType +#. 'Subcontracting Order Item' +#. Label of the additional_cost_per_qty (Currency) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Additional Cost Per Qty" +msgstr "" + +#. Label of the additional_costs_section (Tab Break) field in DocType 'Stock +#. Entry' +#. Label of the additional_costs (Table) field in DocType 'Stock Entry' +#. Label of the tab_additional_costs (Tab Break) field in DocType +#. 'Subcontracting Order' +#. Label of the additional_costs (Table) field in DocType 'Subcontracting +#. Order' +#. Label of the tab_additional_costs (Tab Break) field in DocType +#. 'Subcontracting Receipt' +#. Label of the additional_costs (Table) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Additional Costs" +msgstr "" + +#. Label of the non_stock_items (Table) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Additional Costs (as per BOM)" +msgstr "" + +#. Label of the additional_data (Code) field in DocType 'Common Code' +#: erpnext/edi/doctype/common_code/common_code.json +msgid "Additional Data" +msgstr "" + +#. Label of the additional_details (Section Break) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Additional Details" +msgstr "" + +#. Label of the section_break_49 (Section Break) field in DocType 'POS Invoice' +#. Label of the section_break_44 (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the additional_discount_section (Section Break) field in DocType +#. 'Sales Invoice' +#. Label of the discount_section (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the section_break_41 (Section Break) field in DocType 'Supplier +#. Quotation' +#. Label of the additional_discount_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the additional_discount_section (Section Break) field in DocType +#. 'Sales Order' +#. Label of the section_break_49 (Section Break) field in DocType 'Delivery +#. Note' +#. Label of the section_break_42 (Section Break) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Additional Discount" +msgstr "" + +#. Label of the discount_amount (Currency) field in DocType 'POS Invoice' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Invoice' +#. Label of the discount_amount (Currency) field in DocType 'Sales Invoice' +#. Label of the additional_discount_amount (Currency) field in DocType +#. 'Subscription' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Order' +#. Label of the discount_amount (Currency) field in DocType 'Supplier +#. Quotation' +#. Label of the discount_amount (Currency) field in DocType 'Quotation' +#. Label of the base_discount_amount (Currency) field in DocType 'Sales Order' +#. Label of the discount_amount (Currency) field in DocType 'Sales Order' +#. Label of the discount_amount (Currency) field in DocType 'Delivery Note' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Additional Discount Amount" +msgstr "" + +#. Label of the base_discount_amount (Currency) field in DocType 'POS Invoice' +#. Label of the base_discount_amount (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the base_discount_amount (Currency) field in DocType 'Sales +#. Invoice' +#. Label of the base_discount_amount (Currency) field in DocType 'Purchase +#. Order' +#. Label of the base_discount_amount (Currency) field in DocType 'Supplier +#. Quotation' +#. Label of the base_discount_amount (Currency) field in DocType 'Quotation' +#. Label of the base_discount_amount (Currency) field in DocType 'Delivery +#. Note' +#. Label of the base_discount_amount (Currency) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Additional Discount Amount (Company Currency)" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:846 +msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" +msgstr "" + +#. Label of the additional_discount_percentage (Float) field in DocType 'POS +#. Invoice' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Purchase Invoice' +#. Label of the additional_discount_percentage (Float) field in DocType 'Sales +#. Invoice' +#. Label of the additional_discount_percentage (Percent) field in DocType +#. 'Subscription' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Purchase Order' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Supplier Quotation' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Quotation' +#. Label of the additional_discount_percentage (Float) field in DocType 'Sales +#. Order' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Delivery Note' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Additional Discount Percentage" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Additional Finished Good" +msgstr "" + +#. Label of the addtional_info (Section Break) field in DocType 'Journal Entry' +#. Label of the additional_info_section (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the more_information (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the section_break_jtou (Section Break) field in DocType 'Asset' +#. Label of the additional_info_section (Section Break) field in DocType +#. 'Purchase Order' +#. Label of the more_info (Section Break) field in DocType 'Supplier Quotation' +#. Label of the sb_more_info (Section Break) field in DocType 'Task' +#. Label of the additional_info_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the additional_info_section (Section Break) field in DocType 'Sales +#. Order' +#. Label of the more_info (Section Break) field in DocType 'Delivery Note' +#. Label of the additional_info_section (Section Break) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Additional Info" +msgstr "" + +#. Label of the other_info_tab (Section Break) field in DocType 'Lead' +#. Label of the additional_information (Text) field in DocType 'Quality Review' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/selling/page/point_of_sale/pos_payment.js:59 +msgid "Additional Information" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:85 +msgid "Additional Information updated successfully." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:830 +msgid "Additional Material Transfer" +msgstr "" + +#. Label of the additional_notes (Text) field in DocType 'Quotation Item' +#. Label of the additional_notes (Text) field in DocType 'Sales Order Item' +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Additional Notes" +msgstr "" + +#. Label of the additional_operating_cost (Currency) field in DocType 'Work +#. Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Additional Operating Cost" +msgstr "" + +#. Label of the additional_transferred_qty (Float) field in DocType 'Work +#. Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Additional Transferred Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:591 +msgid "Additional Transferred Qty {0}\n" +"\t\t\t\t\tcannot be greater than {1}.\n" +"\t\t\t\t\tTo fix this, increase the percentage value\n" +"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" +"\t\t\t\t\tin Manufacturing Settings." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 +msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" +msgstr "" + +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Dunning' +#. Label of the contact_and_address_tab (Tab Break) field in DocType 'POS +#. Invoice' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Purchase +#. Invoice' +#. Label of the contact_and_address_tab (Tab Break) field in DocType 'Sales +#. Invoice' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Purchase +#. Order' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Request +#. for Quotation' +#. Label of the contact_and_address_tab (Tab Break) field in DocType 'Supplier' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Supplier +#. Quotation' +#. Label of the address_contact_section (Section Break) field in DocType +#. 'Opportunity' +#. Label of the contacts_tab (Tab Break) field in DocType 'Prospect' +#. Label of the contact_and_address_tab (Tab Break) field in DocType 'Customer' +#. Label of the address_and_contact_tab (Tab Break) field in DocType +#. 'Quotation' +#. Label of the contact_info (Tab Break) field in DocType 'Sales Order' +#. Label of the company_info (Section Break) field in DocType 'Company' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Delivery +#. Note' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Address & Contact" +msgstr "" + +#. Label of the address_section (Section Break) field in DocType 'Lead' +#. Label of the contact_details (Tab Break) field in DocType 'Employee' +#. Label of the address_contacts (Section Break) field in DocType 'Sales +#. Partner' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Address & Contacts" +msgstr "" + +#. Label of a Link in the Financial Reports Workspace +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/selling/report/address_and_contacts/address_and_contacts.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Address And Contacts" +msgstr "" + +#. Label of the address_desc (HTML) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Address Desc" +msgstr "" + +#. Label of the address_html (HTML) field in DocType 'Bank' +#. Label of the address_html (HTML) field in DocType 'Bank Account' +#. Label of the address_html (HTML) field in DocType 'Shareholder' +#. Label of the address_html (HTML) field in DocType 'Supplier' +#. Label of the address_html (HTML) field in DocType 'Lead' +#. Label of the address_html (HTML) field in DocType 'Opportunity' +#. Label of the address_html (HTML) field in DocType 'Prospect' +#. Label of the address_html (HTML) field in DocType 'Customer' +#. Label of the address_html (HTML) field in DocType 'Sales Partner' +#. Label of the address_html (HTML) field in DocType 'Manufacturer' +#. Label of the address_html (HTML) field in DocType 'Warehouse' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Address HTML" +msgstr "" + +#. Label of the address (Link) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Address Name" +msgstr "" + +#. Label of the address_and_contact (Section Break) field in DocType 'Bank' +#. Label of the address_and_contact (Section Break) field in DocType 'Bank +#. Account' +#. Label of the address_and_contact (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the address_contacts (Section Break) field in DocType 'Customer' +#. Label of the address_and_contact (Section Break) field in DocType +#. 'Warehouse' +#. Label of the tab_address_and_contact (Tab Break) field in DocType +#. 'Subcontracting Order' +#. Label of the tab_addresses (Tab Break) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Address and Contact" +msgstr "" + +#. Label of the address_contacts (Section Break) field in DocType 'Shareholder' +#. Label of the address_contacts (Section Break) field in DocType 'Supplier' +#. Label of the address_contacts (Section Break) field in DocType +#. 'Manufacturer' +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +msgid "Address and Contacts" +msgstr "" + +#: erpnext/accounts/custom/address.py:33 +msgid "Address needs to be linked to a Company. Please add a row for Company in the Links table." +msgstr "" + +#. Description of the 'Determine Address Tax Category from' (Select) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Address used to determine Tax Category in transactions" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1189 +msgid "Adjustment Against" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:199 +msgid "Adjustment based on Purchase Invoice rate" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:2 +msgid "Administrative Assistant" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173 +msgid "Administrative Expenses" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:3 +msgid "Administrative Officer" +msgstr "" + +#. Label of the advance_account (Link) field in DocType 'Party Account' +#: erpnext/accounts/doctype/party_account/party_account.json +msgid "Advance Account" +msgstr "" + +#: erpnext/utilities/transaction_base.py:273 +msgid "Advance Account: {0} must be in either customer billing currency: {1} or Company default currency: {2}" +msgstr "" + +#. Label of the advance_amount (Currency) field in DocType 'Purchase Invoice +#. Advance' +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:165 +msgid "Advance Amount" +msgstr "" + +#. Label of the advance_paid (Currency) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Advance Paid" +msgstr "" + +#. Label of the advance_paid (Currency) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Advance Paid (Company Currency)" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:75 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:122 +msgid "Advance Payment" +msgstr "" + +#. Option for the 'Reconciliation Takes Effect On' (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Advance Payment Date" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +msgid "Advance Payment Ledger Entry" +msgstr "" + +#. Label of the advance_payment_status (Select) field in DocType 'Purchase +#. Order' +#. Label of the advance_payment_status (Select) field in DocType 'Sales Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Advance Payment Status" +msgstr "" + +#. Label of the advances_section (Section Break) field in DocType 'POS Invoice' +#. Label of the advances_section (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the advances_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the advance_payments_section (Section Break) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/controllers/accounts_controller.py:280 +#: erpnext/setup/doctype/company/company.json +msgid "Advance Payments" +msgstr "" + +#. Name of a DocType +#. Label of the taxes (Table) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Advance Taxes and Charges" +msgstr "" + +#. Label of the advance_voucher_no (Dynamic Link) field in DocType 'Journal +#. Entry Account' +#. Label of the advance_voucher_no (Dynamic Link) field in DocType 'Payment +#. Entry Reference' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Advance Voucher No" +msgstr "" + +#. Label of the advance_voucher_type (Link) field in DocType 'Journal Entry +#. Account' +#. Label of the advance_voucher_type (Link) field in DocType 'Payment Entry +#. Reference' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Advance Voucher Type" +msgstr "" + +#. Label of the advance_amount (Currency) field in DocType 'Sales Invoice +#. Advance' +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Advance amount" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:983 +msgid "Advance amount cannot be greater than {0} {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:172 +msgid "Advance paid against {0} {1} cannot be greater than Grand Total {2}" +msgstr "" + +#. Description of the 'Only Include Allocated Payments' (Check) field in +#. DocType 'Purchase Invoice' +#. Description of the 'Only Include Allocated Payments' (Check) field in +#. DocType 'Sales Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Advance payments allocated against orders will only be fetched" +msgstr "" + +#. Label of the advanced_features_tab (Tab Break) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Advanced Features" +msgstr "" + +#. Label of the advanced_filtering (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Advanced Filtering" +msgstr "" + +#. Label of the advances (Table) field in DocType 'POS Invoice' +#. Label of the advances (Table) field in DocType 'Purchase Invoice' +#. Label of the advances (Table) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Advances" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:3 +msgid "Advertisement" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:2 +msgid "Advertising" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:3 +msgid "Aerospace" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:79 +msgid "After save, please refresh the page to apply the changes." +msgstr "" + +#. Label of the against (Text) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:20 +msgid "Against" +msgstr "" + +#. Label of the against_account (Data) field in DocType 'Bank Clearance Detail' +#. Label of the against_account (Text) field in DocType 'Journal Entry Account' +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:164 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:331 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:140 +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 +#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +msgid "Against Account" +msgstr "" + +#. Label of the against_blanket_order (Check) field in DocType 'Purchase Order +#. Item' +#. Label of the against_blanket_order (Check) field in DocType 'Quotation Item' +#. Label of the against_blanket_order (Check) field in DocType 'Sales Order +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Against Blanket Order" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:838 +msgid "Against Customer Order {0}" +msgstr "" + +#. Label of the dn_detail (Data) field in DocType 'Delivery Note Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Delivery Note Item" +msgstr "" + +#. Label of the prevdoc_docname (Dynamic Link) field in DocType 'Quotation +#. Item' +#: erpnext/selling/doctype/quotation_item/quotation_item.json +msgid "Against Docname" +msgstr "" + +#. Label of the prevdoc_doctype (Link) field in DocType 'Quotation Item' +#: erpnext/selling/doctype/quotation_item/quotation_item.json +msgid "Against Doctype" +msgstr "" + +#. Label of the prevdoc_detail_docname (Data) field in DocType 'Installation +#. Note Item' +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +msgid "Against Document Detail No" +msgstr "" + +#. Label of the prevdoc_docname (Dynamic Link) field in DocType 'Maintenance +#. Visit Purpose' +#. Label of the prevdoc_docname (Data) field in DocType 'Installation Note +#. Item' +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +msgid "Against Document No" +msgstr "" + +#. Label of the against_expense_account (Small Text) field in DocType 'Purchase +#. Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Against Expense Account" +msgstr "" + +#. Label of the against_fg (Link) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Against Finished Good" +msgstr "" + +#. Label of the against_income_account (Small Text) field in DocType 'POS +#. Invoice' +#. Label of the against_income_account (Small Text) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Against Income Account" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:590 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:798 +msgid "Against Journal Entry {0} does not have any unmatched {1} entry" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:400 +msgid "Against Journal Entry {0} is already adjusted against some other voucher" +msgstr "" + +#. Label of the against_pick_list (Link) field in DocType 'Sales Invoice Item' +#. Label of the against_pick_list (Link) field in DocType 'Delivery Note Item' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Pick List" +msgstr "" + +#. Label of the against_sales_invoice (Link) field in DocType 'Delivery Note +#. Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Sales Invoice" +msgstr "" + +#. Label of the si_detail (Data) field in DocType 'Delivery Note Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Sales Invoice Item" +msgstr "" + +#. Label of the against_sales_order (Link) field in DocType 'Delivery Note +#. Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Sales Order" +msgstr "" + +#. Label of the so_detail (Data) field in DocType 'Delivery Note Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Sales Order Item" +msgstr "" + +#. Label of the against_stock_entry (Link) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Against Stock Entry" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:336 +msgid "Against Supplier Invoice {0}" +msgstr "" + +#. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +msgid "Against Voucher" +msgstr "" + +#. Label of the against_voucher_no (Dynamic Link) field in DocType 'Advance +#. Payment Ledger Entry' +#. Label of the against_voucher_no (Dynamic Link) field in DocType 'Payment +#. Ledger Entry' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:57 +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:71 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:192 +msgid "Against Voucher No" +msgstr "" + +#. Label of the against_voucher_type (Link) field in DocType 'Advance Payment +#. Ledger Entry' +#. Label of the against_voucher_type (Link) field in DocType 'GL Entry' +#. Label of the against_voucher_type (Link) field in DocType 'Payment Ledger +#. Entry' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 +msgid "Against Voucher Type" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:113 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:60 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:259 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:102 +msgid "Age" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:154 +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:138 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:139 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1223 +msgid "Age (Days)" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.py:267 +msgid "Age ({0})" +msgstr "" + +#. Label of the ageing_based_on (Select) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:66 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:119 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:21 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:95 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:119 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:21 +msgid "Ageing Based On" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:80 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:35 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:109 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:35 +#: erpnext/stock/report/stock_ageing/stock_ageing.js:58 +msgid "Ageing Range" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:104 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:352 +msgid "Ageing Report based on {0} up to {1}" +msgstr "" + +#. Label of the agenda (Table) field in DocType 'Quality Meeting' +#. Label of the agenda (Text Editor) field in DocType 'Quality Meeting Agenda' +#: erpnext/quality_management/doctype/quality_meeting/quality_meeting.json +#: erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.json +msgid "Agenda" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:4 +msgid "Agent" +msgstr "" + +#. Label of the agent_busy_message (Data) field in DocType 'Incoming Call +#. Settings' +#. Label of the agent_busy_message (Data) field in DocType 'Voice Call +#. Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Agent Busy Message" +msgstr "" + +#. Label of the agent_detail_section (Section Break) field in DocType +#. 'Appointment Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Agent Details" +msgstr "" + +#. Label of the agent_group (Link) field in DocType 'Incoming Call Handling +#. Schedule' +#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json +msgid "Agent Group" +msgstr "" + +#. Label of the agent_unavailable_message (Data) field in DocType 'Incoming +#. Call Settings' +#. Label of the agent_unavailable_message (Data) field in DocType 'Voice Call +#. Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Agent Unavailable Message" +msgstr "" + +#. Label of the agent_list (Table MultiSelect) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Agents" +msgstr "" + +#. Description of a DocType +#: erpnext/selling/doctype/product_bundle/product_bundle.json +msgid "Aggregate a group of Items into another Item. This is useful if you are maintaining the stock of the packed items and not the bundled item" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:4 +msgid "Agriculture" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:5 +msgid "Airline" +msgstr "" + +#. Label of the algorithm (Select) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "Algorithm" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 +#: erpnext/accounts/utils.py:1652 erpnext/public/js/setup_wizard.js:184 +msgid "All Accounts" +msgstr "" + +#. Label of the all_activities_section (Section Break) field in DocType 'Lead' +#. Label of the all_activities_section (Section Break) field in DocType +#. 'Opportunity' +#. Label of the all_activities_section (Section Break) field in DocType +#. 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "All Activities" +msgstr "" + +#. Label of the all_activities_html (HTML) field in DocType 'Lead' +#. Label of the all_activities_html (HTML) field in DocType 'Opportunity' +#. Label of the all_activities_html (HTML) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "All Activities HTML" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:423 +msgid "All BOMs" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Contact" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Customer Contact" +msgstr "" + +#: erpnext/patches/v13_0/remove_bad_selling_defaults.py:9 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:165 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:167 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:174 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:180 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:186 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:192 +msgid "All Customer Groups" +msgstr "" + +#: erpnext/patches/v11_0/create_department_records_for_each_company.py:23 +#: erpnext/patches/v11_0/update_department_lft_rgt.py:9 +#: erpnext/patches/v11_0/update_department_lft_rgt.py:11 +#: erpnext/patches/v11_0/update_department_lft_rgt.py:16 +#: erpnext/setup/doctype/company/company.py:445 +#: erpnext/setup/doctype/company/company.py:448 +#: erpnext/setup/doctype/company/company.py:453 +#: erpnext/setup/doctype/company/company.py:459 +#: erpnext/setup/doctype/company/company.py:465 +#: erpnext/setup/doctype/company/company.py:471 +#: erpnext/setup/doctype/company/company.py:477 +#: erpnext/setup/doctype/company/company.py:483 +#: erpnext/setup/doctype/company/company.py:489 +#: erpnext/setup/doctype/company/company.py:495 +#: erpnext/setup/doctype/company/company.py:501 +#: erpnext/setup/doctype/company/company.py:507 +#: erpnext/setup/doctype/company/company.py:513 +#: erpnext/setup/doctype/company/company.py:519 +#: erpnext/setup/doctype/company/company.py:525 +msgid "All Departments" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Employee (Active)" +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.py:35 +#: erpnext/setup/doctype/item_group/item_group.py:36 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:33 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:41 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:48 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:54 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:60 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:66 +msgid "All Item Groups" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:29 +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:271 +msgid "All Items" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Lead (Open)" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:114 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:113 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:115 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:113 +msgid "All Parties" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Sales Partner Contact" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Sales Person" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "All Sales Transactions can be tagged against multiple Sales Persons so that you can set and monitor targets." +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Supplier Contact" +msgstr "" + +#: erpnext/patches/v11_0/rename_supplier_type_to_supplier_group.py:29 +#: erpnext/patches/v11_0/rename_supplier_type_to_supplier_group.py:32 +#: erpnext/patches/v11_0/rename_supplier_type_to_supplier_group.py:36 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:197 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:199 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:206 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:212 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:218 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:224 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:230 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:236 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:242 +msgid "All Supplier Groups" +msgstr "" + +#: erpnext/patches/v13_0/remove_bad_selling_defaults.py:12 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:145 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:147 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:154 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:160 +msgid "All Territories" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:390 +msgid "All Warehouses" +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:72 +msgid "All active prices for this item across buying and selling price lists." +msgstr "" + +#. Description of the 'Reconciled' (Check) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "All allocations have been successfully reconciled" +msgstr "" + +#: erpnext/support/doctype/issue/issue.js:109 +msgid "All communications including and above this shall be moved into the new Issue" +msgstr "" + +#. Description of the 'Billing Currency' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "All invoices and orders for this customer will be created in this currency." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:60 +msgid "All items are already requested" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +msgid "All items have already been Invoiced/Returned" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/mapper.py:445 +msgid "All items have already been received" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:274 +msgid "All items have already been transferred for this Work Order." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:3002 +msgid "All items in this document already have a linked Quality Inspection." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:915 +msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:926 +msgid "All linked Sales Orders must be subcontracted." +msgstr "" + +#. Description of the 'Carry Forward Communication and Comments' (Check) field +#. in DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "All the Comments and Emails will be copied from one document to another newly created document(Lead -> Opportunity -> Quotation) throughout the CRM documents." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 +msgid "All the items have been already returned." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1272 +msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/mapper.py:83 +msgid "All these items have already been Invoiced/Returned" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:108 +msgid "Allocate" +msgstr "" + +#. Label of the allocate_advances_automatically (Check) field in DocType 'POS +#. Invoice' +#. Label of the allocate_advances_automatically (Check) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Allocate Advances Automatically (FIFO)" +msgstr "" + +#. Label of the allocate_full_amount_to_stock_items (Check) field in DocType +#. 'Purchase Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Allocate Full Amount to Stock Items" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +msgid "Allocate Payment Amount" +msgstr "" + +#. Label of the allocate_payment_based_on_payment_terms (Check) field in +#. DocType 'Payment Terms Template' +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json +msgid "Allocate Payment Based On Payment Terms" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +msgid "Allocate Payment Request" +msgstr "" + +#. Label of the allocated_amount (Currency) field in DocType 'Payment Entry +#. Reference' +#. Label of the allocated (Check) field in DocType 'Process Payment +#. Reconciliation Log' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:249 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:687 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:724 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:850 +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Allocated" +msgstr "" + +#. Label of the allocated_amount (Currency) field in DocType 'Bank Transaction' +#. Label of the allocated_amount (Currency) field in DocType 'Bank Transaction +#. Payments' +#. Label of the allocated_amount (Currency) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the allocated_amount (Currency) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the allocated_amount (Currency) field in DocType 'Purchase Invoice +#. Advance' +#. Label of the allocated_amount (Currency) field in DocType 'Unreconcile +#. Payment Entries' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +#: erpnext/accounts/report/gross_profit/gross_profit.py:409 +#: erpnext/public/js/utils/unreconcile.js:87 +msgid "Allocated Amount" +msgstr "" + +#. Label of the sec_break2 (Section Break) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Allocated Entries" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:49 +msgid "Allocated To:" +msgstr "" + +#. Label of the allocated_amount (Currency) field in DocType 'Sales Invoice +#. Advance' +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Allocated amount" +msgstr "" + +#: erpnext/accounts/utils.py:665 +msgid "Allocated amount cannot be greater than unadjusted amount" +msgstr "" + +#: erpnext/accounts/utils.py:663 +msgid "Allocated amount cannot be negative" +msgstr "" + +#. Label of the allocation (Table) field in DocType 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:282 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Allocation" +msgstr "" + +#. Label of the allocations (Table) field in DocType 'Process Payment +#. Reconciliation Log' +#. Label of the allocations_section (Section Break) field in DocType 'Process +#. Payment Reconciliation Log' +#. Label of the allocations (Table) field in DocType 'Unreconcile Payment' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +#: erpnext/public/js/utils/unreconcile.js:104 +msgid "Allocations" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:430 +msgid "Allotted Qty" +msgstr "" + +#. Label of the allow_account_creation_against_child_company (Check) field in +#. DocType 'Company' +#: erpnext/accounts/doctype/account/account.py:555 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68 +#: erpnext/setup/doctype/company/company.json +msgid "Allow Account Creation Against Child Company" +msgstr "" + +#. Label of the allow_alternative_item (Check) field in DocType 'BOM' +#. Label of the allow_alternative_item (Check) field in DocType 'BOM Item' +#. Label of the allow_alternative_item (Check) field in DocType 'Job Card Item' +#. Label of the allow_alternative_item (Check) field in DocType 'Work Order' +#. Label of the allow_alternative_item (Check) field in DocType 'Work Order +#. Item' +#. Label of the allow_alternative_item (Check) field in DocType 'Item' +#. Label of the allow_alternative_item (Check) field in DocType 'Stock Entry +#. Detail' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Allow Alternative Item" +msgstr "" + +#: erpnext/stock/doctype/item_alternative/item_alternative.py:68 +msgid "Allow Alternative Item must be checked on Item {}" +msgstr "" + +#. Label of the material_consumption (Check) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow Continuous Material Consumption" +msgstr "" + +#. Label of the allow_editing_of_items_and_quantities_in_work_order (Check) +#. field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow Editing of Items and Quantities in Work Order" +msgstr "" + +#. Label of the job_card_excess_transfer (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow Excess Material Transfer" +msgstr "" + +#. Label of the allow_pegged_currencies_exchange_rates (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Allow Implicit Pegged Currency Conversion" +msgstr "" + +#. Label of the allow_in_returns (Check) field in DocType 'POS Payment Method' +#: erpnext/accounts/doctype/pos_payment_method/pos_payment_method.json +msgid "Allow In Returns" +msgstr "" + +#: erpnext/controllers/selling_controller.py:873 +msgid "Allow Item to Be Added Multiple Times in a Transaction" +msgstr "" + +#. Label of the allow_multiple_items (Check) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allow Item to be added multiple times in a transaction" +msgstr "" + +#. Label of the allow_lead_duplication_based_on_emails (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allow Lead Duplication based on Emails" +msgstr "" + +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:9 +msgid "Allow Multiple Material Consumption" +msgstr "" + +#. Label of the allow_negative_stock (Check) field in DocType 'Item' +#. Label of the allow_negative_stock (Check) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/stock_settings/stock_settings.py:225 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:237 +msgid "Allow Negative Stock" +msgstr "" + +#. Label of the allow_negative_stock_for_batch (Check) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Allow Negative Stock for Batch" +msgstr "" + +#. Label of the allow_or_restrict (Select) field in DocType 'Accounting +#. Dimension Filter' +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Allow Or Restrict Dimension" +msgstr "" + +#. Label of the allow_overtime (Check) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow Overtime" +msgstr "" + +#. Label of the allow_partial_payment (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Allow Partial Payment" +msgstr "" + +#. Label of the allow_production_on_holidays (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow Production on Holidays" +msgstr "" + +#. Label of the is_purchase_item (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow Purchase" +msgstr "" + +#. Label of the allow_zero_qty_in_purchase_order (Check) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allow Purchase Order with Zero Quantity" +msgstr "" + +#. Label of the allow_zero_qty_in_quotation (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow Quotation with zero quantity" +msgstr "" + +#. Label of the allow_rename_attribute_value (Check) field in DocType 'Item +#. Variant Settings' +#: erpnext/controllers/item_variant.py:211 +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Allow Rename Attribute Value" +msgstr "" + +#. Label of the allow_zero_qty_in_request_for_quotation (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allow Request for Quotation with Zero Quantity" +msgstr "" + +#. Label of the allow_resetting_service_level_agreement (Check) field in +#. DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Allow Resetting Service Level Agreement" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:785 +msgid "Allow Resetting Service Level Agreement from Support Settings." +msgstr "" + +#. Label of the is_sales_item (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow Sales" +msgstr "" + +#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field +#. in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow Sales Order creation for expired Quotation" +msgstr "" + +#. Label of the allow_zero_qty_in_sales_order (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow Sales Order with zero quantity" +msgstr "" + +#. Label of the allow_stale (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Allow Stale Exchange Rates" +msgstr "" + +#. Label of the allow_zero_qty_in_supplier_quotation (Check) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allow Supplier Quotation with Zero Quantity" +msgstr "" + +#. Label of the allow_uom_with_conversion_rate_defined_in_item (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow UOM with conversion rate defined in Item" +msgstr "" + +#. Label of the allow_discount_change (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Allow User to Edit Discount" +msgstr "" + +#. Label of the allow_rate_change (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Allow User to Edit Rate" +msgstr "" + +#. Label of the allow_warehouse_change (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Allow User to Edit Warehouse" +msgstr "" + +#. Label of the allow_different_uom (Check) field in DocType 'Item Variant +#. Settings' +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Allow Variant UOM to be different from Template UOM" +msgstr "" + +#. Label of the allow_zero_rate (Check) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Allow Zero Rate" +msgstr "" + +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'POS Invoice +#. Item' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Purchase +#. Invoice Item' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Sales +#. Invoice Item' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Delivery +#. Note Item' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Purchase +#. Receipt Item' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Stock Entry +#. Detail' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Allow Zero Valuation Rate" +msgstr "" + +#. Label of the allow_delivery_of_overproduced_qty (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow delivery of overproduced quantity" +msgstr "" + +#. Label of the editable_price_list_rate (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow editing Price List rate in transactions" +msgstr "" + +#. Label of the allow_existing_serial_no (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow existing Serial No to be Manufactured/Received again" +msgstr "" + +#. Label of the allow_internal_transfer_at_arms_length_price (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow internal transfers at user-defined rate" +msgstr "" + +#. Description of the 'Allow Continuous Material Consumption' (Check) field in +#. DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow material consumptions without immediately manufacturing finished goods against a Work Order" +msgstr "" + +#. Label of the allow_multi_currency_invoices_against_single_party_account +#. (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Allow multi-currency invoices against single party account " +msgstr "" + +#. Label of the allow_against_multiple_purchase_orders (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow multiple Sales Orders against a customer's Purchase Order" +msgstr "" + +#. Label of the allow_negative_rates_for_items (Check) field in DocType 'Buying +#. Settings' +#. Label of the allow_negative_rates_for_items (Check) field in DocType +#. 'Selling Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow negative rates for Items" +msgstr "" + +#. Label of the allow_negative_stock (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow negative stock" +msgstr "" + +#. Label of the allow_negative_stock_for_batch (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow negative stock for Batch" +msgstr "" + +#. Label of the allow_partial_reservation (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow partial reservation" +msgstr "" + +#. Label of the allow_purchase_invoice_creation_without_purchase_order (Check) +#. field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Allow purchase invoice creation without purchase order" +msgstr "" + +#. Label of the allow_purchase_invoice_creation_without_purchase_receipt +#. (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Allow purchase invoice creation without purchase receipt" +msgstr "" + +#. Label of the dn_required (Check) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Allow sales invoice creation without delivery note" +msgstr "" + +#. Label of the so_required (Check) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Allow sales invoice creation without sales order" +msgstr "" + +#. Description of the 'Zero-Quantity Line Items' (Section Break) field in +#. DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow sales transactions with zero quantities if the rate is fixed but the quantities are not. e.g. Rate Contracts" +msgstr "" + +#. Label of the allow_multiple_items (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow same Item to be added multiple times in a transaction" +msgstr "" + +#. Description of the 'Allow Negative Stock' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow stock to go below zero for this item, even if negative stock is disabled in Stock Settings." +msgstr "" + +#. Description of the 'Allow Alternative Item' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow substituting this item with an alternative from the Item Alternative list when stock is unavailable." +msgstr "" + +#. Description of the 'Allow Purchase' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow this item to be used in purchase transactions." +msgstr "" + +#. Description of the 'Allow Sales' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow this item to be used in sales transactions." +msgstr "" + +#. Label of the allow_to_edit_stock_uom_qty_for_purchase (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow to edit stock UOM qty for Purchase documents" +msgstr "" + +#. Label of the allow_to_edit_stock_uom_qty_for_sales (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow to edit stock UOM qty for Sales documents" +msgstr "" + +#. Label of the allow_to_edit_stock_uom_qty_for_stock_entry (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow to edit stock UOM qty for Stock Entry" +msgstr "" + +#. Label of the allow_to_make_quality_inspection_after_purchase_or_delivery +#. (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow to make Quality Inspection after Purchase / Delivery" +msgstr "" + +#. Description of the 'Allow Excess Material Transfer' (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow transferring raw materials even after the Required Quantity is fulfilled" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json +msgid "Allowed Dimension" +msgstr "" + +#. Label of the repost_allowed_types (Table) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Allowed DocTypes" +msgstr "" + +#. Group in Supplier's connections +#. Group in Customer's connections +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Allowed Items" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json +msgid "Allowed To Transact With" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:81 +msgid "Allowed special characters are '/' and '-'" +msgstr "" + +#. Label of the companies (Table) field in DocType 'Supplier' +#. Label of the companies (Table) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Allowed to transact with" +msgstr "" + +#. Description of the 'Enable stock reservation' (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allows to keep aside a specific quantity of inventory for a particular order." +msgstr "" + +#. Description of the 'Allow Purchase Order with Zero Quantity' (Check) field +#. in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allows users to submit Purchase Orders with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts." +msgstr "" + +#. Description of the 'Allow Request for Quotation with Zero Quantity' (Check) +#. field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allows users to submit Request for Quotations with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts." +msgstr "" + +#. Description of the 'Allow Supplier Quotation with Zero Quantity' (Check) +#. field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allows users to submit Supplier Quotations with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +msgid "Already Imported" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:1081 +msgid "Already Picked" +msgstr "" + +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Already record exists for the item {0}" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 +msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:38 +msgid "Also you can't switch back to FIFO after setting the valuation method to Moving Average for this item." +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:644 +msgid "Alt UOM" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:291 +#: erpnext/manufacturing/doctype/work_order/work_order.js:158 +#: erpnext/manufacturing/doctype/work_order/work_order.js:173 +#: erpnext/public/js/utils.js:587 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:339 +msgid "Alternate Item" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:427 +msgid "Alternative For Item" +msgstr "" + +#. Label of the alternative_item_code (Link) field in DocType 'Item +#. Alternative' +#: erpnext/stock/doctype/item_alternative/item_alternative.json +msgid "Alternative Item Code" +msgstr "" + +#. Label of the alternative_item_name (Read Only) field in DocType 'Item +#. Alternative' +#: erpnext/stock/doctype/item_alternative/item_alternative.json +msgid "Alternative Item Name" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.js:379 +msgid "Alternative Items" +msgstr "" + +#: erpnext/stock/doctype/item_alternative/item_alternative.py:40 +msgid "Alternative item must not be same as item code" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:383 +msgid "Alternatively, you can download the template and fill your data in." +msgstr "" + +#. Option for the 'Action on New Invoice' (Select) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Always Ask" +msgstr "" + +#. Label of the amount (Currency) field in DocType 'Advance Payment Ledger +#. Entry' +#. Label of the tax_amount (Currency) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the amount (Data) field in DocType 'Bank Clearance Detail' +#. Label of the amount (Currency) field in DocType 'Bank Guarantee' +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the amount (Currency) field in DocType 'Budget Distribution' +#. Label of the amount (Float) field in DocType 'Cashier Closing Payments' +#. Label of the sec_break1 (Section Break) field in DocType 'Journal Entry +#. Account' +#. Label of the payment_amounts_section (Section Break) field in DocType +#. 'Payment Entry' +#. Label of the amount (Currency) field in DocType 'Payment Ledger Entry' +#. Label of the amount (Currency) field in DocType 'Payment Order Reference' +#. Label of the amount (Currency) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the amount (Currency) field in DocType 'Payment Reconciliation +#. Invoice' +#. Label of the amount (Currency) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the amount (Currency) field in DocType 'Payment Reference' +#. Label of the grand_total (Currency) field in DocType 'Payment Request' +#. Option for the 'Discount Type' (Select) field in DocType 'Payment Schedule' +#. Option for the 'Discount Type' (Select) field in DocType 'Payment Term' +#. Option for the 'Discount Type' (Select) field in DocType 'Payment Terms +#. Template Detail' +#. Label of the amount (Currency) field in DocType 'POS Closing Entry Taxes' +#. Option for the 'Margin Type' (Select) field in DocType 'POS Invoice Item' +#. Label of the amount (Currency) field in DocType 'POS Invoice Item' +#. Label of the grand_total (Currency) field in DocType 'POS Invoice Reference' +#. Option for the 'Margin Type' (Select) field in DocType 'Pricing Rule' +#. Label of the amount (Currency) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the amount (Currency) field in DocType 'Purchase Invoice Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Purchase Invoice +#. Item' +#. Label of the tax_amount (Currency) field in DocType 'Purchase Taxes and +#. Charges' +#. Option for the 'Margin Type' (Select) field in DocType 'Sales Invoice Item' +#. Label of the amount (Currency) field in DocType 'Sales Invoice Item' +#. Label of the amount (Currency) field in DocType 'Sales Invoice Payment' +#. Label of the grand_total (Currency) field in DocType 'Sales Invoice +#. Reference' +#. Label of the tax_amount (Currency) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the amount (Currency) field in DocType 'Share Balance' +#. Label of the amount (Currency) field in DocType 'Share Transfer' +#. Label of the amount (Currency) field in DocType 'Asset Capitalization +#. Service Item' +#. Label of the amount (Currency) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the amount (Currency) field in DocType 'Purchase Order Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Purchase Order Item' +#. Label of the amount (Currency) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the amount (Currency) field in DocType 'Supplier Quotation Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Supplier Quotation +#. Item' +#. Label of the amount (Currency) field in DocType 'Opportunity Item' +#. Label of the amount (Currency) field in DocType 'Prospect Opportunity' +#. Label of the amount_section (Section Break) field in DocType 'BOM Creator +#. Item' +#. Label of the amount (Currency) field in DocType 'BOM Creator Item' +#. Label of the amount (Currency) field in DocType 'BOM Explosion Item' +#. Label of the amount (Currency) field in DocType 'BOM Item' +#. Label of the amount (Currency) field in DocType 'Work Order Additional Item' +#. Label of the amount (Currency) field in DocType 'Work Order Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Quotation Item' +#. Label of the amount (Currency) field in DocType 'Quotation Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Sales Order Item' +#. Label of the amount (Currency) field in DocType 'Sales Order Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Delivery Note Item' +#. Label of the amount (Currency) field in DocType 'Delivery Note Item' +#. Label of the amount (Currency) field in DocType 'Landed Cost Item' +#. Label of the amount (Currency) field in DocType 'Landed Cost Taxes and +#. Charges' +#. Option for the 'Distribute Charges Based On' (Select) field in DocType +#. 'Landed Cost Voucher' +#. Label of the amount (Currency) field in DocType 'Material Request Item' +#. Label of the amount (Currency) field in DocType 'Purchase Receipt Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Purchase Receipt +#. Item' +#. Label of the amount (Currency) field in DocType 'Stock Entry Detail' +#. Label of the amount (Currency) field in DocType 'Stock Reconciliation Item' +#. Label of the amount (Currency) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Option for the 'Distribute Additional Costs Based On ' (Select) field in +#. DocType 'Subcontracting Order' +#. Label of the amount (Currency) field in DocType 'Subcontracting Order Item' +#. Label of the amount (Currency) field in DocType 'Subcontracting Order +#. Service Item' +#. Label of the amount (Currency) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Option for the 'Distribute Additional Costs Based On ' (Select) field in +#. DocType 'Subcontracting Receipt' +#. Label of the amount (Currency) field in DocType 'Subcontracting Receipt +#. Item' +#. Label of the amount (Currency) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:169 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:327 +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx:57 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:895 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1181 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1242 +#: banking/src/components/features/BankReconciliation/SelectedTransactionsTable.tsx:25 +#: banking/src/pages/BankStatementImporter.tsx:189 +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/budget_distribution/budget_distribution.json +#: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:334 +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/payment_reference/payment_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:41 +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:67 +#: erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:252 +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:10 +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:48 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:79 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:416 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:44 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:273 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:327 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:201 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:111 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:44 +#: erpnext/accounts/report/share_balance/share_balance.py:61 +#: erpnext/accounts/report/share_ledger/share_ledger.py:57 +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:74 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:277 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/selling/doctype/quotation/quotation.js:315 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:52 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:53 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:301 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:164 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:43 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:66 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:118 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:156 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:71 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/templates/form_grid/bank_reconciliation_grid.html:4 +#: erpnext/templates/form_grid/item_grid.html:9 +#: erpnext/templates/form_grid/stock_entry_grid.html:11 +#: erpnext/templates/pages/order.html:103 erpnext/templates/pages/rfq.html:46 +msgid "Amount" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:35 +msgid "Amount (AED)" +msgstr "" + +#. Label of the base_amount (Currency) field in DocType 'Advance Payment Ledger +#. Entry' +#. Label of the base_tax_amount (Currency) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the amount (Currency) field in DocType 'Payment Entry Deduction' +#. Label of the base_amount (Currency) field in DocType 'POS Invoice Item' +#. Label of the base_amount (Currency) field in DocType 'Purchase Invoice Item' +#. Label of the base_tax_amount (Currency) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the base_amount (Currency) field in DocType 'Sales Invoice Item' +#. Label of the base_tax_amount (Currency) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the base_amount (Currency) field in DocType 'Purchase Order Item' +#. Label of the base_amount (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the base_amount (Currency) field in DocType 'Opportunity Item' +#. Label of the base_amount (Currency) field in DocType 'BOM Item' +#. Label of the base_amount (Currency) field in DocType 'Quotation Item' +#. Label of the base_amount (Currency) field in DocType 'Sales Order Item' +#. Label of the base_amount (Currency) field in DocType 'Delivery Note Item' +#. Label of the base_amount (Currency) field in DocType 'Landed Cost Taxes and +#. Charges' +#. Label of the amount (Currency) field in DocType 'Landed Cost Vendor Invoice' +#. Label of the base_amount (Currency) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +#: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Amount (Company Currency)" +msgstr "" + +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:325 +msgid "Amount Delivered" +msgstr "" + +#. Label of the amount_difference (Currency) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Amount Difference" +msgstr "" + +#. Label of the amount_difference_with_purchase_invoice (Currency) field in +#. DocType 'Purchase Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Amount Difference with Purchase Invoice" +msgstr "" + +#. Label of the amount_eligible_for_commission (Currency) field in DocType 'POS +#. Invoice' +#. Label of the amount_eligible_for_commission (Currency) field in DocType +#. 'Sales Invoice' +#. Label of the amount_eligible_for_commission (Currency) field in DocType +#. 'Sales Order' +#. Label of the amount_eligible_for_commission (Currency) field in DocType +#. 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Amount Eligible for Commission" +msgstr "" + +#. Label of the amount_in_figure (Column Break) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Amount In Figure" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Amount column has \"CR\"/\"DR\" values" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Amount column has positive/negative values" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:896 +msgid "Amount does not match the selected transaction" +msgstr "" + +#. Label of the amount_in_account_currency (Currency) field in DocType 'Payment +#. Ledger Entry' +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:212 +msgid "Amount in Account Currency" +msgstr "" + +#. Description of the 'Outstanding Amount' (Currency) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Amount in party's bank account currency" +msgstr "" + +#. Description of the 'Amount' (Currency) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Amount in transaction currency" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:74 +msgid "Amount in {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:896 +msgid "Amount matches the selected transaction" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:191 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:220 +msgid "Amount to Bill" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1255 +msgid "Amount {0} {1} adjusted against {2} {3}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1266 +msgid "Amount {0} {1} as adjustment to {2}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1230 +msgid "Amount {0} {1} transferred from {2} to {3}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1236 +msgid "Amount {0} {1} {2} {3}" +msgstr "" + +#. Label of the amounts_section (Section Break) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Amounts" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ampere" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ampere-Hour" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ampere-Minute" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ampere-Second" +msgstr "" + +#: erpnext/controllers/trends.py:288 erpnext/controllers/trends.py:300 +#: erpnext/controllers/trends.py:309 +msgid "Amt" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/item_group/item_group.json +msgid "An Item Group is a way to classify items based on types." +msgstr "" + +#. Description of the 'Notify by email on creation of automatic Material +#. Request' (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +msgid "An error has been appeared while reposting item valuation via {0}" +msgstr "" + +#: erpnext/public/js/controllers/buying.js:378 +#: erpnext/public/js/utils/sales_common.js:489 +msgid "An error occurred during the update process" +msgstr "" + +#: erpnext/stock/reorder_item.py:368 +msgid "An error occurred for certain Items while creating Material Requests based on Re-order level. Please rectify these issues :" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:124 +msgid "Analysis Chart" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:4 +msgid "Analyst" +msgstr "" + +#. Label of the analytics_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Analytical Accounting" +msgstr "" + +#: erpnext/public/js/utils.js:184 +msgid "Annual Billing: {0}" +msgstr "" + +#: erpnext/controllers/budget_controller.py:453 +msgid "Annual Budget for Account {0} against {1} {2} is {3}. It will be collectively ({4}) exceeded by {5}" +msgstr "" + +#: erpnext/controllers/budget_controller.py:318 +msgid "Annual Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}" +msgstr "" + +#. Label of the expense_year_to_date (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Annual Expenses" +msgstr "" + +#. Label of the income_year_to_date (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Annual Income" +msgstr "" + +#. Label of the annual_revenue (Currency) field in DocType 'Lead' +#. Label of the annual_revenue (Currency) field in DocType 'Opportunity' +#. Label of the annual_revenue (Currency) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Annual Revenue" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:145 +msgid "Another Budget record '{0}' already exists against {1} '{2}' and account '{3}' with overlapping fiscal years." +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:107 +msgid "Another Cost Center Allocation record {0} applicable from {1}, hence this allocation will be applicable upto {2}" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:1044 +msgid "Another Payment Request is already processed" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.py:123 +msgid "Another Sales Person {0} exists with the same Employee id" +msgstr "" + +#. Option for the 'Transaction Type' (Select) field in DocType 'Bank +#. Transaction Rule' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Any" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:49 +msgid "Any debit transaction with the keyword 'Bank Fee'." +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:37 +msgid "Any one of following filters required: warehouse, Item Code, Item Group" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:6 +msgid "Apparel & Accessories" +msgstr "" + +#. Label of the applicable_charges (Currency) field in DocType 'Landed Cost +#. Item' +#. Label of the sec_break1 (Section Break) field in DocType 'Landed Cost +#. Voucher' +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Applicable Charges" +msgstr "" + +#. Label of the dimensions (Table) field in DocType 'Accounting Dimension +#. Filter' +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Applicable Dimension" +msgstr "" + +#. Description of the 'Holiday List' (Link) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Applicable Holiday List" +msgstr "" + +#. Label of the applicable_modules_section (Section Break) field in DocType +#. 'Terms and Conditions' +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +msgid "Applicable Modules" +msgstr "" + +#. Label of the accounts (Table) field in DocType 'Accounting Dimension Filter' +#. Name of a DocType +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +#: erpnext/accounts/doctype/applicable_on_account/applicable_on_account.json +msgid "Applicable On Account" +msgstr "" + +#. Label of the to_designation (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Applicable To (Designation)" +msgstr "" + +#. Label of the to_emp (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Applicable To (Employee)" +msgstr "" + +#. Label of the system_role (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Applicable To (Role)" +msgstr "" + +#. Label of the system_user (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Applicable To (User)" +msgstr "" + +#. Label of the countries (Table) field in DocType 'Price List' +#: erpnext/stock/doctype/price_list/price_list.json +msgid "Applicable for Countries" +msgstr "" + +#. Label of the section_break_15 (Section Break) field in DocType 'POS Profile' +#. Label of the applicable_for_users (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Applicable for Users" +msgstr "" + +#. Description of the 'Transporter' (Link) field in DocType 'Driver' +#: erpnext/setup/doctype/driver/driver.json +msgid "Applicable for external driver" +msgstr "" + +#: erpnext/regional/italy/setup.py:162 +msgid "Applicable if the company is SpA, SApA or SRL" +msgstr "" + +#: erpnext/regional/italy/setup.py:171 +msgid "Applicable if the company is a limited liability company" +msgstr "" + +#: erpnext/regional/italy/setup.py:122 +msgid "Applicable if the company is an Individual or a Proprietorship" +msgstr "" + +#. Label of the applicable_on_cumulative_expense (Check) field in DocType +#. 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Applicable on Cumulative Expense" +msgstr "" + +#. Label of the applicable_on_material_request (Check) field in DocType +#. 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Applicable on Material Request" +msgstr "" + +#. Label of the applicable_on_purchase_order (Check) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Applicable on Purchase Order" +msgstr "" + +#. Label of the applicable_on_booking_actual_expenses (Check) field in DocType +#. 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Applicable on booking actual expenses" +msgstr "" + +#. Description of the 'Allow Partial Payment' (Check) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Applicable only on Transactions made using POS" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:10 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:10 +msgid "Application of Funds (Assets)" +msgstr "" + +#: erpnext/templates/includes/order/order_taxes.html:70 +msgid "Applied Coupon Code" +msgstr "" + +#. Description of the 'Minimum Value' (Float) field in DocType 'Quality +#. Inspection Reading' +#. Description of the 'Maximum Value' (Float) field in DocType 'Quality +#. Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Applied on each reading." +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +msgid "Applied putaway rules." +msgstr "" + +#. Label of the applies_to (Table) field in DocType 'Common Code' +#: erpnext/edi/doctype/common_code/common_code.json +msgid "Applies To" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:284 +msgid "Applies to deposits" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:284 +msgid "Applies to withdrawals" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:284 +msgid "Applies to withdrawals and deposits" +msgstr "" + +#. Label of the apply_discount_on (Select) field in DocType 'POS Invoice' +#. Label of the apply_discount_on (Select) field in DocType 'Purchase Invoice' +#. Label of the apply_discount_on (Select) field in DocType 'Sales Invoice' +#. Label of the apply_additional_discount (Select) field in DocType +#. 'Subscription' +#. Label of the apply_discount_on (Select) field in DocType 'Purchase Order' +#. Label of the apply_discount_on (Select) field in DocType 'Supplier +#. Quotation' +#. Label of the apply_discount_on (Select) field in DocType 'Quotation' +#. Label of the apply_discount_on (Select) field in DocType 'Sales Order' +#. Label of the apply_discount_on (Select) field in DocType 'Delivery Note' +#. Label of the apply_discount_on (Select) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Apply Additional Discount On" +msgstr "" + +#. Label of the apply_discount_on (Select) field in DocType 'POS Profile' +#. Label of the apply_discount_on (Select) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Apply Discount On" +msgstr "" + +#. Label of the apply_discount_on_rate (Check) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:190 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:199 +msgid "Apply Discount on Discounted Rate" +msgstr "" + +#. Label of the apply_discount_on_rate (Check) field in DocType 'Promotional +#. Scheme Price Discount' +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "Apply Discount on Rate" +msgstr "" + +#. Label of the apply_multiple_pricing_rules (Check) field in DocType 'Pricing +#. Rule' +#. Label of the apply_multiple_pricing_rules (Check) field in DocType +#. 'Promotional Scheme Price Discount' +#. Label of the apply_multiple_pricing_rules (Check) field in DocType +#. 'Promotional Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Apply Multiple Pricing Rules" +msgstr "" + +#. Label of the apply_on (Select) field in DocType 'Pricing Rule' +#. Label of the apply_on (Select) field in DocType 'Promotional Scheme' +#. Label of the document_type (Link) field in DocType 'Service Level Agreement' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Apply On" +msgstr "" + +#. Label of the apply_putaway_rule (Check) field in DocType 'Purchase Receipt' +#. Label of the apply_putaway_rule (Check) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Apply Putaway Rule" +msgstr "" + +#. Label of the apply_recursion_over (Float) field in DocType 'Pricing Rule' +#. Label of the apply_recursion_over (Float) field in DocType 'Promotional +#. Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Apply Recursion Over (As Per Transaction UOM)" +msgstr "" + +#. Label of the brands (Table) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Apply Rule On Brand" +msgstr "" + +#. Label of the items (Table) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Apply Rule On Item Code" +msgstr "" + +#. Label of the item_groups (Table) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Apply Rule On Item Group" +msgstr "" + +#. Label of the apply_rule_on_other (Select) field in DocType 'Pricing Rule' +#. Label of the apply_rule_on_other (Select) field in DocType 'Promotional +#. Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Apply Rule On Other" +msgstr "" + +#. Label of the apply_sla_for_resolution (Check) field in DocType 'Service +#. Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Apply SLA for Resolution Time" +msgstr "" + +#. Description of the 'Enable Discounts and Margin' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Apply discounts and margins on products" +msgstr "" + +#. Label of the apply_restriction_on_values (Check) field in DocType +#. 'Accounting Dimension Filter' +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Apply restriction on dimension values" +msgstr "" + +#. Label of the apply_to_all_doctypes (Check) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Apply to All Inventory Documents" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Apply to Document" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/workspace_sidebar/crm.json +msgid "Appointment" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Appointment Booking Settings" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json +msgid "Appointment Booking Slots" +msgstr "" + +#: erpnext/crm/doctype/appointment/appointment.py:95 +msgid "Appointment Confirmation" +msgstr "" + +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment Created Successfully" +msgstr "" + +#. Label of the appointment_details_section (Section Break) field in DocType +#. 'Appointment Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Appointment Details" +msgstr "" + +#. Label of the appointment_duration (Int) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Appointment Duration (In Minutes)" +msgstr "" + +#: erpnext/www/book_appointment/index.py:23 +msgid "Appointment Scheduling Disabled" +msgstr "" + +#: erpnext/www/book_appointment/index.py:24 +msgid "Appointment Scheduling has been disabled for this site" +msgstr "" + +#. Label of the appointment_with (Link) field in DocType 'Appointment' +#: erpnext/crm/doctype/appointment/appointment.json +msgid "Appointment With" +msgstr "" + +#: erpnext/crm/doctype/appointment/appointment.py:101 +msgid "Appointment was created. But no lead was found. Please check the email to confirm" +msgstr "" + +#. Label of the approving_role (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Approving Role (above authorized value)" +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:77 +msgid "Approving Role cannot be same as role the rule is Applicable To" +msgstr "" + +#. Label of the approving_user (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Approving User (above authorized value)" +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:75 +msgid "Approving User cannot be same as user the rule is Applicable To" +msgstr "" + +#. Description of the 'Enable Fuzzy Matching' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Approximately match the description/party name against parties" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Are" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:379 +msgid "Are you sure you want to cancel this {} {}?" +msgstr "" + +#: erpnext/public/js/utils/demo.js:17 +msgid "Are you sure you want to clear all demo data?" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 +msgid "Are you sure you want to delete this Item?" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list.js:18 +msgid "Are you sure you want to delete {0}?

        This action will also delete all associated Common Code documents.

        " +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:81 +msgid "Are you sure you want to restart this subscription?" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.js:83 +msgid "Are you sure you want to revise this budget? The current budget will be cancelled and a new draft will be created." +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:379 +msgid "Are you sure you want to unmatch the voucher from this transaction?" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:41 +msgid "Are you sure you want to unreconcile this transaction?" +msgstr "" + +#. Label of the area (Float) field in DocType 'Location' +#. Name of a UOM +#: erpnext/assets/doctype/location/location.json +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Area" +msgstr "" + +#. Label of the area_uom (Link) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Area UOM" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:438 +msgid "Arrival Quantity" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Arshin" +msgstr "" + +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:57 +#: erpnext/stock/report/stock_ageing/stock_ageing.js:16 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:30 +msgid "As On Date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:198 +msgctxt "Do MMM YYYY" +msgid "As of {0}" +msgstr "" + +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:123 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:123 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js:15 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:15 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js:15 +msgid "As on Date" +msgstr "" + +#. Description of the 'Finished Good Quantity ' (Float) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "As per Stock UOM" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:189 +msgid "As the field {0} is enabled, the field {1} is mandatory." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:197 +msgid "As the field {0} is enabled, the value of the field {1} should be more than 1." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1096 +msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there are reserved stock, you cannot disable {0}." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 +msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:224 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:236 +msgid "As {0} is enabled, you can not enable {1}." +msgstr "" + +#. Label of the po_items (Table) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Assembly Items" +msgstr "" + +#. Option for the 'Root Type' (Select) field in DocType 'Account' +#. Option for the 'Root Type' (Select) field in DocType 'Account Category' +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge' +#. Label of the asset (Link) field in DocType 'POS Invoice Item' +#. Label of the asset (Link) field in DocType 'Sales Invoice Item' +#. Name of a DocType +#. Label of the asset (Link) field in DocType 'Asset Activity' +#. Label of the asset (Link) field in DocType 'Asset Capitalization Asset Item' +#. Label of the asset (Link) field in DocType 'Asset Depreciation Schedule' +#. Label of the asset (Link) field in DocType 'Asset Movement Item' +#. Label of the asset (Link) field in DocType 'Asset Repair' +#. Label of the asset (Link) field in DocType 'Asset Shift Allocation' +#. Label of the asset (Link) field in DocType 'Asset Value Adjustment' +#. Label of a Link in the Assets Workspace +#. Label of the asset (Link) field in DocType 'Serial No' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/account_balance/account_balance.js:25 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_activity/asset_activity.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:192 +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset" +msgstr "" + +#. Label of the asset_account (Link) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "Asset Account" +msgstr "" + +#. Name of a DocType +#. Name of a report +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset_activity/asset_activity.json +#: erpnext/assets/report/asset_activity/asset_activity.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Activity" +msgstr "" + +#. Group in Asset's connections +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Capitalization" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +msgid "Asset Capitalization Asset Item" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +msgid "Asset Capitalization Service Item" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +msgid "Asset Capitalization Stock Item" +msgstr "" + +#. Label of the asset_category (Link) field in DocType 'Purchase Invoice Item' +#. Label of the asset_category (Link) field in DocType 'Asset' +#. Name of a DocType +#. Label of the asset_category (Read Only) field in DocType 'Asset Maintenance' +#. Label of the asset_category (Read Only) field in DocType 'Asset Value +#. Adjustment' +#. Label of a Link in the Assets Workspace +#. Label of the asset_category (Link) field in DocType 'Item' +#. Label of the asset_category (Link) field in DocType 'Purchase Receipt Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_category/asset_category.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:23 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:482 +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Category" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +msgid "Asset Category Account" +msgstr "" + +#. Label of the asset_category_name (Data) field in DocType 'Asset Category' +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Asset Category Name" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:375 +msgid "Asset Category is mandatory for Fixed Asset item" +msgstr "" + +#. Label of the depreciation_cost_center (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Asset Depreciation Cost Center" +msgstr "" + +#. Name of a report +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Depreciation Ledger" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "Asset Depreciation Schedule" +msgstr "" + +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:178 +msgid "Asset Depreciation Schedule for Asset {0} and Finance Book {1} is not using shift based depreciation" +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:249 +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:184 +msgid "Asset Depreciation Schedule not found for Asset {0} and Finance Book {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:82 +msgid "Asset Depreciation Schedule {0} for Asset {1} already exists." +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:76 +msgid "Asset Depreciation Schedule {0} for Asset {1} and Finance Book {2} already exists." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:235 +msgid "Asset Depreciation Schedules created/updated:
        {0}

        Please check, edit if needed, and submit the Asset." +msgstr "" + +#. Name of a report +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Depreciations and Balances" +msgstr "" + +#. Label of the asset_details (Section Break) field in DocType 'Serial No' +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Asset Details" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Asset Disposal" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Asset Finance Book" +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:474 +msgid "Asset ID" +msgstr "" + +#. Label of the asset_location (Link) field in DocType 'Purchase Invoice Item' +#. Label of the asset_location (Link) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Asset Location" +msgstr "" + +#. Name of a DocType +#. Label of the asset_maintenance (Link) field in DocType 'Asset Maintenance +#. Log' +#. Name of a report +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log_calendar.js:18 +#: erpnext/assets/report/asset_maintenance/asset_maintenance.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Maintenance" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Maintenance Log" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Asset Maintenance Task" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Maintenance Team" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:203 +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Movement" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +msgid "Asset Movement Item" +msgstr "" + +#. Label of the asset_name (Data) field in DocType 'Asset' +#. Label of the target_asset_name (Data) field in DocType 'Asset +#. Capitalization' +#. Label of the asset_name (Data) field in DocType 'Asset Capitalization Asset +#. Item' +#. Label of the asset_name (Link) field in DocType 'Asset Maintenance' +#. Label of the asset_name (Read Only) field in DocType 'Asset Maintenance Log' +#. Label of the asset_name (Data) field in DocType 'Asset Movement Item' +#. Label of the asset_name (Read Only) field in DocType 'Asset Repair' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:480 +msgid "Asset Name" +msgstr "" + +#. Label of the asset_naming_series (Select) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Asset Naming Series" +msgstr "" + +#. Label of the asset_owner (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Asset Owner" +msgstr "" + +#. Label of the asset_owner_company (Link) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Asset Owner Company" +msgstr "" + +#. Label of the asset_quantity (Int) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Asset Quantity" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284 +#: erpnext/accounts/report/account_balance/account_balance.js:38 +#: erpnext/setup/doctype/company/company.json +msgid "Asset Received But Not Billed" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and +#. Batch Bundle' +#. Label of the asset_repair (Link) field in DocType 'Stock Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset/asset.js:108 +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Repair" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +msgid "Asset Repair Consumed Item" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json +msgid "Asset Repair Purchase Invoice" +msgstr "" + +#. Label of the asset_settings_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Asset Settings" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json +msgid "Asset Shift Allocation" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.json +msgid "Asset Shift Factor" +msgstr "" + +#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.py:32 +msgid "Asset Shift Factor {0} is set as default currently. Please change it first." +msgstr "" + +#. Label of the asset_status (Select) field in DocType 'Serial No' +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Asset Status" +msgstr "" + +#. Label of the asset_type (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Asset Type" +msgstr "" + +#. Label of the asset_value (Currency) field in DocType 'Asset Capitalization +#. Asset Item' +#: erpnext/assets/dashboard_fixtures.py:180 +#: erpnext/assets/doctype/asset/asset.js:512 +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:208 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:457 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:504 +msgid "Asset Value" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset/asset.js:100 +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Value Adjustment" +msgstr "" + +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:53 +msgid "Asset Value Adjustment cannot be posted before Asset's purchase date {0}." +msgstr "" + +#. Label of a chart in the Assets Workspace +#: erpnext/assets/dashboard_fixtures.py:56 +#: erpnext/assets/workspace/assets/assets.json +msgid "Asset Value Analytics" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:277 +msgid "Asset cancelled" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:735 +msgid "Asset cannot be cancelled, as it is already {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:400 +msgid "Asset cannot be scrapped before the last depreciation entry." +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:472 +msgid "Asset capitalized after Asset Capitalization {0} was submitted" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:286 +msgid "Asset created" +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:259 +msgid "Asset created after being split from Asset {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:289 +msgid "Asset deleted" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:177 +msgid "Asset issued to Employee {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:178 +msgid "Asset out of order due to Asset Repair {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:164 +msgid "Asset received at Location {0} and issued to Employee {1}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:462 +msgid "Asset restored" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:480 +msgid "Asset restored after Asset Capitalization {0} was cancelled" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:121 +msgid "Asset returned" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:448 +msgid "Asset scrapped" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:450 +msgid "Asset scrapped via Journal Entry {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:121 +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:124 +msgid "Asset sold" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:264 +msgid "Asset submitted" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:172 +msgid "Asset transferred to Location {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:268 +msgid "Asset updated after being split into Asset {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:335 +msgid "Asset updated due to Asset Repair {0} {1}." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:382 +msgid "Asset {0} cannot be scrapped, as it is already {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:193 +msgid "Asset {0} does not belong to Item {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:45 +msgid "Asset {0} does not belong to company {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:105 +msgid "Asset {0} does not belong to the custodian {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:77 +msgid "Asset {0} does not belong to the location {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:521 +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:612 +msgid "Asset {0} does not exist" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:447 +msgid "Asset {0} has been updated. Please set the depreciation details if any and submit it." +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:74 +msgid "Asset {0} is in {1} status and cannot be repaired." +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:95 +msgid "Asset {0} is not set to calculate depreciation." +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:101 +msgid "Asset {0} is not submitted. Please submit the asset before proceeding." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:380 +msgid "Asset {0} must be submitted" +msgstr "" + +#: erpnext/controllers/buying_controller.py:1039 +msgid "Asset {assets_link} created for {item_code}" +msgstr "" + +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:222 +msgid "Asset's depreciation schedule updated after Asset Shift Allocation {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:81 +msgid "Asset's value adjusted after cancellation of Asset Value Adjustment {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:71 +msgid "Asset's value adjusted after submission of Asset Value Adjustment {0}" +msgstr "" + +#. Label of the assets_tab (Tab Break) field in DocType 'Accounts Settings' +#. Label of the asset_items (Table) field in DocType 'Asset Capitalization' +#. Label of the assets (Table) field in DocType 'Asset Movement' +#. Name of a Workspace +#. Label of a Card Break in the Assets Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Assets" +msgstr "" + +#. Title of the Module Onboarding 'Asset Onboarding' +#: erpnext/assets/module_onboarding/asset_onboarding/asset_onboarding.json +msgid "Assets Setup" +msgstr "" + +#: erpnext/controllers/buying_controller.py:1057 +msgid "Assets not created for {item_code}. You will have to create asset manually." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1044 +msgid "Assets {assets_link} created for {item_code}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +msgid "Assign Job to Employee" +msgstr "" + +#. Label of the assign_to_name (Read Only) field in DocType 'Asset Maintenance +#. Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Assign to Name" +msgstr "" + +#. Label of the filters_section (Section Break) field in DocType 'Service Level +#. Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Assignment Conditions" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:5 +msgid "Associate" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:136 +msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} for the batch {4} in the warehouse {5}. Please restock the item." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:161 +msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 +msgid "At least one account with exchange gain or loss is required" +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:169 +msgid "At least one asset has to be selected." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +msgid "At least one invoice has to be selected." +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:169 +msgid "At least one item should be entered with negative quantity in return document" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:535 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:195 +msgid "At least one mode of payment is required for POS invoice." +msgstr "" + +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.py:35 +msgid "At least one of the Applicable Modules should be selected" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:204 +msgid "At least one of the Selling or Buying must be selected" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 +msgid "At least one raw material item must be present in the stock entry for the type {0}" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:27 +msgid "At least one row is required for a financial report template" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:164 +msgid "At row #{0}: the Difference Account must not be a Stock type account..." +msgstr "" + +#: erpnext/manufacturing/doctype/routing/routing.py:50 +msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:175 +msgid "At row #{0}: you have selected the Difference Account {1}..." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +msgid "At row {0}: Batch No is mandatory for Item {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:129 +msgid "At row {0}: Parent Row No cannot be set for item {1}" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +msgid "At row {0}: Qty is mandatory for the batch {1}" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +msgid "At row {0}: Serial No is mandatory for Item {1}" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:498 +msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 +msgid "At row {0}: set Parent Row No for item {1}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Atmosphere" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:256 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:73 +msgid "Attach CSV File" +msgstr "" + +#. Description of the 'File to Rename' (Attach) field in DocType 'Rename Tool' +#: erpnext/utilities/doctype/rename_tool/rename_tool.json +msgid "Attach a comma separated .csv file with two columns, one for the old name and one for the new name." +msgstr "" + +#. Label of the import_file (Attach) field in DocType 'Chart of Accounts +#. Importer' +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +msgid "Attach custom Chart of Accounts file" +msgstr "" + +#. Label of the attendance_and_leave_details (Tab Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Attendance & Leaves" +msgstr "" + +#. Label of the attendance_device_id (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Attendance Device ID (Biometric/RF tag ID)" +msgstr "" + +#. Label of the attribute (Link) field in DocType 'Website Attribute' +#. Label of the attribute (Link) field in DocType 'Item Variant Attribute' +#: erpnext/portal/doctype/website_attribute/website_attribute.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Attribute" +msgstr "" + +#. Label of the attribute_name (Data) field in DocType 'Item Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +msgid "Attribute Name" +msgstr "" + +#. Label of the attribute_value (Data) field in DocType 'Item Attribute Value' +#. Label of the attribute_value (Data) field in DocType 'Item Variant +#. Attribute' +#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Attribute Value" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:886 +msgid "Attribute Value {0} is not valid for the selected attribute {1}." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1032 +msgid "Attribute table is mandatory" +msgstr "" + +#: erpnext/stock/doctype/item_attribute/item_attribute.py:107 +msgid "Attribute value: {0} must appear only once" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:875 +msgid "Attribute {0} is disabled." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:863 +msgid "Attribute {0} is not valid for the selected template." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1036 +msgid "Attribute {0} selected multiple times in Attributes Table" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:964 +msgid "Attributes" +msgstr "" + +#. Name of a role +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/finance_book/finance_book.json +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json +#: erpnext/setup/doctype/company/company.json +msgid "Auditor" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py:67 +msgid "Authentication Failed" +msgstr "" + +#. Label of the authorised_by_section (Section Break) field in DocType +#. 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Authorised By" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/authorization_control/authorization_control.json +msgid "Authorization Control" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Authorization Rule" +msgstr "" + +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:27 +msgid "Authorized Signatory" +msgstr "" + +#. Label of the value (Float) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Authorized Value" +msgstr "" + +#. Label of the auto_exchange_rate_revaluation (Check) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Auto Create Exchange Rate Revaluation" +msgstr "" + +#. Label of the auto_created (Check) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "Auto Created" +msgstr "" + +#. Label of the auto_created_via_reorder (Check) field in DocType 'Material +#. Request' +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Auto Created (Reorder)" +msgstr "" + +#. Label of the auto_created_serial_and_batch_bundle (Check) field in DocType +#. 'Stock Ledger Entry' +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Auto Created Serial and Batch Bundle" +msgstr "" + +#. Label of the auto_creation_of_contact (Check) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Auto Creation of Contact" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:380 +msgid "Auto Fetch" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_details.js:228 +msgid "Auto Fetch Serial Numbers" +msgstr "" + +#. Label of the auto_material_request (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto Material Request" +msgstr "" + +#: erpnext/stock/reorder_item.py:319 +msgid "Auto Material Requests Generated" +msgstr "" + +#. Label of the auto_opt_in (Check) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Auto Opt In (For all customers)" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:66 +msgid "Auto Reconcile" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1034 +msgid "Auto Reconciliation" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:982 +msgid "Auto Reconciliation has started in the background" +msgstr "" + +#. Label of the auto_reconciliation_job_trigger (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Auto Reconciliation job trigger" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:153 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:201 +msgid "Auto Reconciliation of Payments has been disabled. Enable it through {0}" +msgstr "" + +#. Label of the subscription_detail (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Auto Repeat Detail" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +msgid "Auto Tax Settings Error" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:166 +msgid "Auto User Creation Error" +msgstr "" + +#. Description of the 'Close Replied Opportunity After Days' (Int) field in +#. DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Auto close Opportunity Replied after the no. of days mentioned above" +msgstr "" + +#. Label of the auto_create_purchase_receipt (Check) field in DocType 'Buying +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Auto create Purchase Receipt" +msgstr "" + +#. Label of the auto_create_serial_and_batch_bundle_for_outward (Check) field +#. in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto create Serial and Batch Bundle for outward" +msgstr "" + +#. Label of the auto_create_subcontracting_order (Check) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Auto create Subcontracting Order" +msgstr "" + +#. Label of the auto_create_assets (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Auto create assets on purchase" +msgstr "" + +#. Label of the auto_insert_price_list_rate_if_missing (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto insert Item Price if missing" +msgstr "" + +#. Description of the 'Enable Automatic Party Matching' (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Auto match and set the Party in Bank Transactions" +msgstr "" + +#. Label of the reorder_section (Section Break) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Auto re-order" +msgstr "" + +#. Label of the auto_reconcile_payments (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Auto reconcile Payments" +msgstr "" + +#: erpnext/public/js/controllers/buying.js:373 +#: erpnext/public/js/utils/sales_common.js:484 +msgid "Auto repeat document updated" +msgstr "" + +#. Label of the auto_reserve_serial_and_batch (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto reserve Serial and Batch Nos" +msgstr "" + +#. Label of the auto_reserve_stock_for_sales_order_on_purchase (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto reserve Stock for Sales Order on Purchase" +msgstr "" + +#. Label of the auto_reserve_stock (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto reserve stock" +msgstr "" + +#. Description of the 'Write Off Limit' (Currency) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Auto write off precision loss while consolidation" +msgstr "" + +#. Label of the auto_add_item_to_cart (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Automatically Add Filtered Item To Cart" +msgstr "" + +#. Label of the create_new_batch (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Automatically Create New Batch" +msgstr "" + +#. Label of the add_taxes_from_item_tax_template (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Automatically add Taxes and Charges from Item Tax Template" +msgstr "" + +#. Label of the add_taxes_from_taxes_and_charges_template (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Automatically add taxes from Taxes and Charges Template" +msgstr "" + +#. Label of the automatically_fetch_payment_terms (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Automatically fetch Payment Terms from Order/Quotation" +msgstr "" + +#. Label of the automatically_post_balancing_accounting_entry (Check) field in +#. DocType 'Accounting Dimension Detail' +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Automatically post balancing accounting entry" +msgstr "" + +#. Label of the automatically_process_deferred_accounting_entry (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Automatically process deferred Accounting entry" +msgstr "" + +#. Label of the automatically_run_rules_on_unreconciled_transactions (Check) +#. field in DocType 'Accounts Settings' +#: banking/src/components/features/Settings/Preferences.tsx:84 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Automatically run rules on unreconciled transactions" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:7 +msgid "Automotive" +msgstr "" + +#. Label of the availability_of_slots (Table) field in DocType 'Appointment +#. Booking Settings' +#. Name of a DocType +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json +msgid "Availability Of Slots" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:513 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:387 +msgid "Available" +msgstr "" + +#. Label of the available__future_inventory_section (Section Break) field in +#. DocType 'Bin' +#: erpnext/stock/doctype/bin/bin.json +msgid "Available / Future Inventory" +msgstr "" + +#. Label of the actual_batch_qty (Float) field in DocType 'Delivery Note Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Available Batch Qty at From Warehouse" +msgstr "" + +#. Label of the actual_batch_qty (Float) field in DocType 'POS Invoice Item' +#. Label of the actual_batch_qty (Float) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Available Batch Qty at Warehouse" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/available_batch_report/available_batch_report.json +msgid "Available Batch Report" +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:491 +msgid "Available For Use Date" +msgstr "" + +#. Label of the available_qty_section (Section Break) field in DocType +#. 'Delivery Note Item' +#. Label of the available_quantity_section (Section Break) field in DocType +#. 'Pick List Item' +#: erpnext/manufacturing/doctype/workstation/workstation.js:505 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 +#: erpnext/public/js/utils.js:647 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/report/stock_ageing/stock_ageing.py:216 +msgid "Available Qty" +msgstr "" + +#. Label of the required_qty (Float) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the available_qty_for_consumption (Float) field in DocType +#. 'Subcontracting Receipt Supplied Item' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Available Qty For Consumption" +msgstr "" + +#. Label of the company_total_stock (Float) field in DocType 'Purchase Order +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "Available Qty at Company" +msgstr "" + +#. Label of the available_qty_at_source_warehouse (Float) field in DocType +#. 'Work Order Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Available Qty at Source Warehouse" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Purchase Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "Available Qty at Target Warehouse" +msgstr "" + +#. Label of the available_qty_at_wip_warehouse (Float) field in DocType 'Work +#. Order Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Available Qty at WIP Warehouse" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'POS Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +msgid "Available Qty at Warehouse" +msgstr "" + +#. Label of the available_qty (Float) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.py:138 +msgid "Available Qty to Reserve" +msgstr "" + +#. Label of the available_quantity_section (Section Break) field in DocType +#. 'Sales Invoice Item' +#. Label of the available_quantity_section (Section Break) field in DocType +#. 'Quotation Item' +#. Label of the available_quantity_section (Section Break) field in DocType +#. 'Sales Order Item' +#. Label of the qty (Float) field in DocType 'Quick Stock Balance' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +msgid "Available Quantity" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/available_serial_no/available_serial_no.json +msgid "Available Serial No" +msgstr "" + +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:38 +msgid "Available Stock" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Available Stock for Packing Items" +msgstr "" + +#. Label of the available_for_use_date (Date) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Available for Use Date" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:382 +msgid "Available for use date is required" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:251 +msgid "Available {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:491 +msgid "Available-for-use Date should be after purchase date" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.py:217 +#: erpnext/stock/report/stock_ageing/stock_ageing.py:251 +#: erpnext/stock/report/stock_balance/stock_balance.py:591 +msgid "Average Age" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:124 +msgid "Average Completion" +msgstr "" + +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Average Discount" +msgstr "" + +#. Label of a number card in the Selling Workspace +#: erpnext/selling/workspace/selling/selling.json +msgid "Average Order Value" +msgstr "" + +#. Label of a number card in the Buying Workspace +#: erpnext/buying/workspace/buying/buying.json +msgid "Average Order Values" +msgstr "" + +#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry' +#: erpnext/accounts/report/share_balance/share_balance.py:60 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Average Rate" +msgstr "" + +#. Label of the avg_response_time (Duration) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Average Response Time" +msgstr "" + +#. Description of the 'Lead Time in days' (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Average time taken by the supplier to deliver" +msgstr "" + +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:63 +msgid "Avg Daily Outgoing" +msgstr "" + +#. Label of the avg_rate (Float) field in DocType 'Serial and Batch Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Avg Rate" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:154 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:368 +msgid "Avg Rate (Balance Stock)" +msgstr "" + +#: erpnext/stock/report/item_variant_details/item_variant_details.py:96 +msgid "Avg. Buying Price List Rate" +msgstr "" + +#: erpnext/stock/report/item_variant_details/item_variant_details.py:102 +msgid "Avg. Selling Price List Rate" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:347 +msgid "Avg. Selling Rate" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "B+" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "B-" +msgstr "" + +#. Option for the 'Algorithm' (Select) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "BFS" +msgstr "" + +#. Label of the bin_qty_section (Section Break) field in DocType 'Material +#. Request Plan Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "BIN Qty" +msgstr "" + +#. Option for the 'Backflush raw materials of subcontract based on' (Select) +#. field in DocType 'Buying Settings' +#. Label of the bom (Link) field in DocType 'Purchase Order Item' +#. Name of a DocType +#. Option for the 'Based On' (Select) field in DocType 'BOM' +#. Option for the 'Backflush Raw Materials Based On' (Select) field in DocType +#. 'Manufacturing Settings' +#. Label of the bom_section (Section Break) field in DocType 'Manufacturing +#. Settings' +#. Label of the bom (Link) field in DocType 'Work Order Operation' +#. Label of a Link in the Manufacturing Workspace +#. Label of the bom (Link) field in DocType 'Subcontracting Inward Order Item' +#. Label of the bom (Link) field in DocType 'Subcontracting Order Item' +#. Label of the bom (Link) field in DocType 'Subcontracting Receipt Item' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom/bom_tree.js:8 +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:209 +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1496 +#: erpnext/stock/doctype/material_request/material_request.js:351 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:805 +#: erpnext/stock/report/bom_search/bom_search.py:38 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:524 +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM" +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:21 +msgid "BOM 1" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/mapper.py:82 +msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 +msgid "BOM 2" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:4 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM Comparison Tool" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:178 +msgid "BOM Component" +msgstr "" + +#. Label of the bom_conf_tab (Tab Break) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "BOM Configuration" +msgstr "" + +#. Label of the bom_created (Check) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "BOM Created" +msgstr "" + +#. Label of the bom_creator (Link) field in DocType 'BOM' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM Creator" +msgstr "" + +#. Label of the bom_creator_item (Data) field in DocType 'BOM' +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "BOM Creator Item" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:392 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:535 +msgid "BOM Creator Item with name {0} does not exist" +msgstr "" + +#. Label of the bom_detail_no (Data) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the bom_detail_no (Data) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the bom_detail_no (Data) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the bom_detail_no (Data) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "BOM Detail No" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.json +msgid "BOM Explorer" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +msgid "BOM Explosion Item" +msgstr "" + +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:20 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:101 +msgid "BOM ID" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "BOM Item" +msgstr "" + +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:71 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:174 +msgid "BOM Level" +msgstr "" + +#. Label of the bom_no (Link) field in DocType 'BOM Item' +#. Label of the bom_no (Link) field in DocType 'BOM Operation' +#. Label of the bom_no (Link) field in DocType 'Master Production Schedule +#. Item' +#. Label of the bom_no (Link) field in DocType 'Production Plan Item' +#. Label of the bom_no (Link) field in DocType 'Production Plan Sub Assembly +#. Item' +#. Label of the bom_no (Link) field in DocType 'Work Order' +#. Label of the bom_no (Link) field in DocType 'Sales Order Item' +#. Label of the bom_no (Link) field in DocType 'Material Request Item' +#. Label of the bom_no (Link) field in DocType 'Quality Inspection' +#. Label of the bom_no (Link) field in DocType 'Stock Entry' +#. Label of the bom_no (Link) field in DocType 'Stock Entry Detail' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:8 +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:31 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1083 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "BOM No" +msgstr "" + +#. Label of the bom_no (Link) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "BOM No (For Semi-Finished Goods)" +msgstr "" + +#. Description of the 'BOM No' (Link) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "BOM No. for a Finished Good Item" +msgstr "" + +#. Name of a DocType +#. Label of the operations (Table) field in DocType 'Routing' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/routing/routing.json +msgid "BOM Operation" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM Operations Time" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:248 +msgid "BOM Output" +msgstr "" + +#: erpnext/stock/report/item_prices/item_prices.py:60 +msgid "BOM Rate" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/report/bom_search/bom_search.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM Search" +msgstr "" + +#. Name of a DocType +#. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/report/item_where_used/item_where_used.py:213 +msgid "BOM Secondary Item" +msgstr "" + +#. Label of the bom_secondary_item (Data) field in DocType 'Job Card Secondary +#. Item' +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +msgid "BOM Secondary Item Reference" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.json +msgid "BOM Stock Analysis" +msgstr "" + +#. Label of the tab_2_tab (Tab Break) field in DocType 'BOM Creator' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "BOM Tree" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json +msgid "BOM Update Batch" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:84 +msgid "BOM Update Initiated" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +msgid "BOM Update Log" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM Update Tool" +msgstr "" + +#. Description of a DocType +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +msgid "BOM Update Tool Log with job status maintained" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:102 +msgid "BOM Updation already in progress. Please wait until {0} is complete." +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json +msgid "BOM Variance Report" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json +msgid "BOM Website Item" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json +msgid "BOM Website Operation" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:250 +msgid "BOM and Finished Good Quantity is mandatory for Disassembly" +msgstr "" + +#. Label of the bom_and_work_order_tab (Tab Break) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "BOM and Production" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:386 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:857 +msgid "BOM does not contain any stock item" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py:85 +msgid "BOM recursion: {0} cannot be child of {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:766 +msgid "BOM recursion: {1} cannot be parent or child of {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1401 +msgid "BOM {0} does not belong to Item {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1396 +msgid "BOM {0} must be active" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1399 +msgid "BOM {0} must be submitted" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:839 +msgid "BOM {0} not found for the item {1}" +msgstr "" + +#. Label of the boms_updated (Long Text) field in DocType 'BOM Update Batch' +#: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json +msgid "BOMs Updated" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:314 +msgid "BOMs created successfully" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:324 +msgid "BOMs creation failed" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:264 +msgid "BOMs creation has been enqueued, kindly check the status after some time" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:347 +msgid "Backdated Stock Entry" +msgstr "" + +#. Label of the backflush_from_wip_warehouse (Check) field in DocType 'BOM +#. Operation' +#. Label of the backflush_from_wip_warehouse (Check) field in DocType 'Job +#. Card' +#. Label of the backflush_from_wip_warehouse (Check) field in DocType 'Work +#. Order Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:379 +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Backflush Materials From WIP Warehouse" +msgstr "" + +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:16 +msgid "Backflush Raw Materials" +msgstr "" + +#. Label of the backflush_raw_materials_based_on (Select) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Backflush Raw Materials Based On" +msgstr "" + +#. Label of the from_wip_warehouse (Check) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Backflush Raw Materials From Work-in-Progress Warehouse" +msgstr "" + +#. Label of the backflush_raw_materials_of_subcontract_based_on (Select) field +#. in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Backflush raw materials of subcontract based on" +msgstr "" + +#. Label of the balance (Currency) field in DocType 'Bank Account Balance' +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:310 +#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/report/account_balance/account_balance.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.html:168 +#: erpnext/accounts/report/purchase_register/purchase_register.py:244 +#: erpnext/accounts/report/sales_register/sales_register.py:278 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:71 +msgid "Balance" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:40 +msgid "Balance (Dr - Cr)" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +msgid "Balance ({0})" +msgstr "" + +#. Label of the balance_in_account_currency (Currency) field in DocType +#. 'Exchange Rate Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Balance In Account Currency" +msgstr "" + +#. Label of the balance_in_base_currency (Currency) field in DocType 'Exchange +#. Rate Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Balance In Base Currency" +msgstr "" + +#: erpnext/stock/report/available_batch_report/available_batch_report.py:62 +#: erpnext/stock/report/available_serial_no/available_serial_no.py:126 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84 +#: erpnext/stock/report/stock_balance/stock_balance.py:517 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:331 +msgid "Balance Qty" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:635 +msgid "Balance Qty (Alt UOM)" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:71 +msgid "Balance Qty (Stock)" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:144 +msgid "Balance Serial No" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Account' +#. Option for the 'Report Type' (Select) field in DocType 'Financial Report +#. Template' +#. Option for the 'Report Type' (Select) field in DocType 'Process Period +#. Closing Voucher Detail' +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of the column_break_16 (Column Break) field in DocType 'Email Digest' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +#: erpnext/accounts/report/balance_sheet/balance_sheet.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/public/js/financial_statements.js:327 +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Balance Sheet" +msgstr "" + +#. Label of the bs_closing_balance (JSON) field in DocType 'Process Period +#. Closing Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "Balance Sheet Closing Balance" +msgstr "" + +#. Label of the balance_sheet_summary (Heading) field in DocType 'Bisect +#. Accounting Statements' +#. Label of the balance_sheet_summary (Float) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Balance Sheet Summary" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 +msgid "Balance Stock Qty" +msgstr "" + +#. Label of the stock_value (Currency) field in DocType 'Stock Closing Balance' +#. Label of the stock_value (Currency) field in DocType 'Stock Ledger Entry' +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Balance Stock Value" +msgstr "" + +#. Label of the balance_type (Select) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Balance Type" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:174 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86 +#: erpnext/stock/report/stock_balance/stock_balance.py:525 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:388 +msgid "Balance Value" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:347 +msgid "Balance for Account {0} must always be {1}" +msgstr "" + +#. Label of the balance_must_be (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Balance must be" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:305 +msgctxt "Do MMM YYYY" +msgid "Balances as per bank statement before {0}" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Name of a DocType +#. Label of the bank (Link) field in DocType 'Bank Account' +#. Label of the bank (Link) field in DocType 'Bank Guarantee' +#. Label of the bank (Link) field in DocType 'Bank Statement Import' +#. Option for the 'Type' (Select) field in DocType 'Mode of Payment' +#. Label of the bank (Read Only) field in DocType 'Payment Entry' +#. Label of the company_bank (Link) field in DocType 'Payment Order' +#. Label of the bank (Link) field in DocType 'Payment Request' +#. Label of a Link in the Invoicing Workspace +#. Option for the 'Salary Mode' (Select) field in DocType 'Employee' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/report/account_balance/account_balance.js:39 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank" +msgstr "" + +#. Label of the bank_cash_account (Link) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Bank / Cash Account" +msgstr "" + +#. Label of the bank_ac_no (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Bank A/C No." +msgstr "" + +#. Name of a DocType +#. Label of the bank_account (Link) field in DocType 'Bank Account Balance' +#. Label of the bank_account (Link) field in DocType 'Bank Clearance' +#. Label of the bank_account (Link) field in DocType 'Bank Guarantee' +#. Label of the bank_account (Link) field in DocType 'Bank Reconciliation Tool' +#. Label of the bank_account (Link) field in DocType 'Bank Statement Import' +#. Label of the bank_account (Link) field in DocType 'Bank Statement Import +#. Log' +#. Label of the bank_account (Link) field in DocType 'Bank Transaction' +#. Label of the bank_account (Link) field in DocType 'Invoice Discounting' +#. Label of the bank_account (Link) field in DocType 'Journal Entry Account' +#. Label of the bank_account (Link) field in DocType 'Payment Order Reference' +#. Label of the bank_account (Link) field in DocType 'Payment Request' +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:141 +#: banking/src/pages/BankStatementImporter.tsx:90 +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.js:21 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:16 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.js:16 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Account" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json +msgid "Bank Account Balance" +msgstr "" + +#. Label of the bank_account_details (Section Break) field in DocType 'Payment +#. Order Reference' +#. Label of the bank_account_details (Section Break) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Bank Account Details" +msgstr "" + +#. Label of the bank_account_info (Section Break) field in DocType 'Bank +#. Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Bank Account Info" +msgstr "" + +#. Label of the bank_account_no (Data) field in DocType 'Bank Account' +#. Label of the bank_account_no (Data) field in DocType 'Bank Guarantee' +#. Label of the bank_account_no (Read Only) field in DocType 'Payment Entry' +#. Label of the bank_account_no (Read Only) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Bank Account No" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Account Subtype" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Account Type" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 +msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 +msgid "Bank Accounts" +msgstr "" + +#. Label of the bank_balance (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Bank Balance" +msgstr "" + +#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224 +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Bank Charges" +msgstr "" + +#. Label of the bank_charges_account (Link) field in DocType 'Invoice +#. Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Bank Charges Account" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:34 +msgid "Bank Charges, Salary, etc." +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Clearance" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +msgid "Bank Clearance Detail" +msgstr "" + +#. Name of a report +#: banking/src/pages/BankReconciliation.tsx:119 +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.json +msgid "Bank Clearance Summary" +msgstr "" + +#. Label of the credit_balance (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Bank Credit Balance" +msgstr "" + +#. Label of the bank_details_section (Section Break) field in DocType 'Bank' +#. Label of the bank_details_section (Section Break) field in DocType +#. 'Employee' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank/bank_dashboard.py:7 +#: erpnext/setup/doctype/employee/employee.json +msgid "Bank Details" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:260 +msgid "Bank Draft" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:97 +msgid "Bank Entries Created" +msgstr "" + +#. Option for the 'Classify As' (Select) field in DocType 'Bank Transaction +#. Rule' +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:90 +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:299 +#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:17 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:478 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:571 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:269 +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:14 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Bank Entry" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:319 +msgid "Bank Entry Created" +msgstr "" + +#. Label of the bank_entry_type (Select) field in DocType 'Bank Transaction +#. Rule' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Bank Entry Type" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:212 +msgid "Bank Fee, Salary, etc." +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Guarantee" +msgstr "" + +#. Label of the bank_guarantee_number (Data) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Bank Guarantee Number" +msgstr "" + +#. Label of the bg_type (Select) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Bank Guarantee Type" +msgstr "" + +#. Label of the bank_name (Data) field in DocType 'Bank' +#. Label of the bank_name (Data) field in DocType 'Cheque Print Template' +#. Label of the bank_name (Data) field in DocType 'Employee' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +#: erpnext/setup/doctype/employee/employee.json +msgid "Bank Name" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314 +msgid "Bank Overdraft Account" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Reconciliation" +msgstr "" + +#. Name of a report +#. Label of a Link in the Invoicing Workspace +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:208 +#: banking/src/pages/BankReconciliation.tsx:117 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:1 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Bank Reconciliation Statement" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Bank Reconciliation Tool" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:99 +msgid "Bank Statement" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:290 +msgid "Bank Statement Balance as per General Ledger" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Bank Statement Import" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Bank Statement Import Log" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Bank Statement Import Log Column Map" +msgstr "" + +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:44 +msgid "Bank Statement balance as per General Ledger" +msgstr "" + +#. Name of a DocType +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:35 +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:32 +msgid "Bank Transaction" +msgstr "" + +#. Label of the bank_transaction_mapping (Table) field in DocType 'Bank' +#. Name of a DocType +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.json +msgid "Bank Transaction Mapping" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +msgid "Bank Transaction Payments" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Bank Transaction Rule" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +msgid "Bank Transaction Rule Accounts" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json +msgid "Bank Transaction Rule Description Conditions" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:508 +msgid "Bank Transaction {0} Matched" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:557 +msgid "Bank Transaction {0} added as Journal Entry" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:532 +msgid "Bank Transaction {0} added as Payment Entry" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:161 +msgid "Bank Transaction {0} is already fully reconciled" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:577 +msgid "Bank Transaction {0} updated" +msgstr "" + +#: banking/src/pages/BankReconciliation.tsx:118 +msgid "Bank Transactions" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +msgid "Bank account cannot be named as {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:700 +msgid "Bank account credit for withdrawal" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:683 +msgid "Bank account debit for deposit" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +msgid "Bank account {0} already exists and could not be created again" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:158 +msgid "Bank accounts added" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:78 +msgid "Bank statement imported." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +msgid "Bank transaction creation error" +msgstr "" + +#. Label of the bank_cash_account (Link) field in DocType 'Process Payment +#. Reconciliation' +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "Bank/Cash Account" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:60 +msgid "Bank/Cash Account {0} doesn't belong to company {1}" +msgstr "" + +#. Label of the banking_section (Section Break) field in DocType 'Accounts +#. Settings' +#. Label of a Card Break in the Invoicing Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: banking/src/pages/BankReconciliation.tsx:57 +#: banking/src/pages/BankReconciliation.tsx:87 +#: banking/src/pages/BankStatementImporterContainer.tsx:22 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/desktop_icon/banking.json +#: erpnext/setup/setup_wizard/data/industry_type.txt:8 +#: erpnext/workspace_sidebar/banking.json +msgid "Banking" +msgstr "" + +#. Label of the barcode_type (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "Barcode Type" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:545 +msgid "Barcode {0} already used in Item {1}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:560 +msgid "Barcode {0} is not a valid {1} code" +msgstr "" + +#. Label of the sb_barcodes (Section Break) field in DocType 'Item' +#. Label of the barcodes (Table) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Barcodes" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Barleycorn" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Barrel (Oil)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Barrel(Beer)" +msgstr "" + +#. Label of the base_amount (Currency) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Base Amount" +msgstr "" + +#. Label of the base_amount (Currency) field in DocType 'Sales Invoice Payment' +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +msgid "Base Amount (Company Currency)" +msgstr "" + +#. Label of the base_change_amount (Currency) field in DocType 'POS Invoice' +#. Label of the base_change_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Base Change Amount (Company Currency)" +msgstr "" + +#. Label of the base_cost (Currency) field in DocType 'BOM Secondary Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +msgid "Base Cost (Company Currency)" +msgstr "" + +#. Label of the base_cost_per_unit (Float) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Base Cost Per Unit" +msgstr "" + +#. Label of the base_hour_rate (Currency) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Base Hour Rate(Company Currency)" +msgstr "" + +#. Label of the base_rate (Currency) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Base Rate" +msgstr "" + +#. Label of the withholding_amount (Currency) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Base Tax Withheld" +msgstr "" + +#. Label of the taxable_amount (Currency) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Base Taxable Amount" +msgstr "" + +#. Label of the base_total_billable_amount (Currency) field in DocType +#. 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Base Total Billable Amount" +msgstr "" + +#. Label of the base_total_billed_amount (Currency) field in DocType +#. 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Base Total Billed Amount" +msgstr "" + +#. Label of the base_total_costing_amount (Currency) field in DocType +#. 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Base Total Costing Amount" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:46 +msgid "Based On Data ( in years )" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:30 +msgid "Based On Document" +msgstr "" + +#. Label of the based_on_payment_terms (Check) field in DocType 'Process +#. Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:131 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:108 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:153 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:126 +msgid "Based On Payment Terms" +msgstr "" + +#. Option for the 'Subscription Price Based On' (Select) field in DocType +#. 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Based On Price List" +msgstr "" + +#. Label of the based_on_value (Dynamic Link) field in DocType 'Party Specific +#. Item' +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +msgid "Based On Value" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:427 +msgid "Based on the above entries, the balance amount (debit or credit) will be set for the last row to balance the journal entry." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:60 +msgid "Based on your HR Policy, select your leave allocation period's end date" +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:55 +msgid "Based on your HR Policy, select your leave allocation period's start date" +msgstr "" + +#. Label of the basic_amount (Currency) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Basic Amount" +msgstr "" + +#. Label of the base_rate (Currency) field in DocType 'BOM Item' +#. Label of the base_rate (Currency) field in DocType 'Sales Order Item' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Basic Rate (Company Currency)" +msgstr "" + +#. Label of the basic_rate (Currency) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Basic Rate (as per Stock UOM)" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80 +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:418 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:32 +#: erpnext/stock/workspace/stock/stock.json +msgid "Batch" +msgstr "" + +#. Label of the description (Small Text) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Batch Description" +msgstr "" + +#. Label of the sb_batch (Section Break) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Batch Details" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:217 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:469 +msgid "Batch Expiry Date" +msgstr "" + +#. Label of the batch_id (Data) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Batch ID" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:129 +msgid "Batch ID is mandatory" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Batch Item Expiry Status" +msgstr "" + +#. Label of the section_break_gnhq (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Batch Item settings" +msgstr "" + +#. Label of the batch_no (Link) field in DocType 'POS Invoice Item' +#. Label of the batch_no (Link) field in DocType 'Purchase Invoice Item' +#. Label of the batch_no (Link) field in DocType 'Sales Invoice Item' +#. Label of the batch_no (Link) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the batch_no (Link) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the batch_no (Link) field in DocType 'Job Card' +#. Label of the batch_no (Link) field in DocType 'Delivery Note Item' +#. Label of the batch_no (Link) field in DocType 'Item Price' +#. Label of the batch_no (Link) field in DocType 'Packed Item' +#. Label of the batch_no (Link) field in DocType 'Packing Slip Item' +#. Label of the batch_no (Link) field in DocType 'Pick List Item' +#. Label of the batch_no (Link) field in DocType 'Purchase Receipt Item' +#. Label of the batch_no (Link) field in DocType 'Quality Inspection' +#. Label of the batch_no (Link) field in DocType 'Serial and Batch Entry' +#. Label of the batch_no (Link) field in DocType 'Serial No' +#. Label of the batch_no (Link) field in DocType 'Stock Closing Balance' +#. Label of the batch_no (Link) field in DocType 'Stock Entry Detail' +#. Label of the batch_no (Data) field in DocType 'Stock Ledger Entry' +#. Label of the batch_no (Link) field in DocType 'Stock Reconciliation Item' +#. Label of the batch_no (Link) field in DocType 'Subcontracting Receipt Item' +#. Label of the batch_no (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 +#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/public/js/utils/barcode_scanner.js:281 +#: erpnext/public/js/utils/serial_no_batch_selector.js:450 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/available_batch_report/available_batch_report.js:64 +#: erpnext/stock/report/available_batch_report/available_batch_report.py:50 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:68 +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:33 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:81 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:162 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:19 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:462 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:77 +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/workspace_sidebar/stock.json +msgid "Batch No" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +msgid "Batch No is mandatory" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 +msgid "Batch No {0} does not exists" +msgstr "" + +#: erpnext/stock/utils.py:626 +msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:490 +msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" +msgstr "" + +#. Label of the batch_no (Int) field in DocType 'BOM Update Batch' +#: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json +msgid "Batch No." +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:16 +#: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 +msgid "Batch Nos" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2009 +msgid "Batch Nos are created successfully" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:1203 +msgid "Batch Not Available for Return" +msgstr "" + +#. Label of the batch_number_series (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Batch Number Series" +msgstr "" + +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:163 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:33 +msgid "Batch Qty" +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:126 +msgid "Batch Qty updated successfully" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:177 +msgid "Batch Qty updated to {0}" +msgstr "" + +#. Label of the batch_qty (Float) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Batch Quantity" +msgstr "" + +#. Label of the batch_size (Float) field in DocType 'BOM Operation' +#. Label of the batch_size (Int) field in DocType 'Operation' +#. Label of the batch_size (Float) field in DocType 'Work Order' +#. Label of the batch_size (Float) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:361 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Batch Size" +msgstr "" + +#. Label of the stock_uom (Link) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Batch UOM" +msgstr "" + +#. Label of the batch_and_serial_no_section (Section Break) field in DocType +#. 'Asset Capitalization Stock Item' +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +msgid "Batch and Serial No" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:746 +msgid "Batch not created for item {} since it does not have a batch series." +msgstr "" + +#. Description of the 'Automatically Create New Batch' (Check) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Batch number will be auto-created in format AAAA.00001 if not specified in transactions. Leave blank to always enter batch numbers manually." +msgstr "" + +#. Description of the 'Has Expiry Date' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Batch number will be created based on expiry date. Expiry dates can be set in the Batch master." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:384 +msgid "Batch {0} and Warehouse" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:1202 +msgid "Batch {0} is not available in warehouse {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289 +msgid "Batch {0} of Item {1} has expired." +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:93 +msgid "Batch {0} of Item {1} is disabled." +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Batch-Wise Balance History" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:164 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:183 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:86 +msgid "Batchwise Valuation" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Before reconciliation" +msgstr "" + +#. Label of the start (Int) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Begin On (Days)" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:396 +msgid "Below Subscription Plans are of different currency to the party default billing currency/Company currency: {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:211 +msgid "Below is a list of all accounting entries posted against the bank account {0} between {1} and {2}." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:251 +msgid "Below is a list of all bank transactions imported in the system for the bank account {0} between {1} and {2}." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:197 +msgid "Below is a list of all entries posted against the bank account {0} which have not been cleared till {1}." +msgstr "" + +#. Label of the bill_date (Date) field in DocType 'Journal Entry' +#. Label of the bill_date (Date) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1208 +#: erpnext/accounts/report/purchase_register/purchase_register.py:216 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Bill Date" +msgstr "" + +#. Label of the generate_new_invoices_past_due_date (Check) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Bill Even If Previous Invoice Unpaid" +msgstr "" + +#. Option for the 'Generate Invoice At' (Select) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Bill N days before period start" +msgstr "" + +#. Label of the bill_no (Data) field in DocType 'Journal Entry' +#. Label of the bill_no (Data) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1207 +#: erpnext/accounts/report/purchase_register/purchase_register.py:215 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Bill No" +msgstr "" + +#. Label of the bill_for_rejected_quantity_in_purchase_invoice (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Bill for rejected quantity in Purchase Invoice" +msgstr "" + +#. Label of a Card Break in the Manufacturing Workspace +#. Label of a Link in the Manufacturing Workspace +#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/material_request/material_request.js:139 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:791 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Bill of Materials" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Timesheet' +#: erpnext/controllers/website_list_for_contact.py:210 +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/doctype/timesheet/timesheet_list.js:9 +msgid "Billed" +msgstr "" + +#. Label of the billed_amt (Currency) field in DocType 'Purchase Order Item' +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:51 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:51 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:127 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:191 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:285 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:108 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:220 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:309 +msgid "Billed Amount" +msgstr "" + +#. Label of the billed_amt (Currency) field in DocType 'Sales Order Item' +#. Label of the billed_amt (Currency) field in DocType 'Delivery Note Item' +#. Label of the billed_amt (Currency) field in DocType 'Purchase Receipt Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Billed Amt" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.json +msgid "Billed Items To Be Received" +msgstr "" + +#. Label of the billed_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:263 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:287 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +msgid "Billed Qty" +msgstr "" + +#. Label of the section_break_56 (Section Break) field in DocType 'Purchase +#. Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "Billed, Received & Returned" +msgstr "" + +#. Option for the 'Determine Address Tax Category from' (Select) field in +#. DocType 'Accounts Settings' +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Purchase Invoice' +#. Label of the address_and_contact (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the billing_address_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the billing_address_column (Section Break) field in DocType 'Sales +#. Order' +#. Label of the contact_info (Section Break) field in DocType 'Delivery Note' +#. Label of the address_display (Text Editor) field in DocType 'Delivery Note' +#. Label of the billing_address (Link) field in DocType 'Purchase Receipt' +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Purchase Receipt' +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Billing Address" +msgstr "" + +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Purchase Order' +#. Label of the billing_address_display (Text Editor) field in DocType 'Request +#. for Quotation' +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Supplier Quotation' +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Subcontracting Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Billing Address Details" +msgstr "" + +#. Label of the customer_address (Link) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Billing Address Name" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:206 +msgid "Billing Address does not belong to the {0}" +msgstr "" + +#. Label of the billing_amount (Currency) field in DocType 'Sales Invoice +#. Timesheet' +#. Label of the billing_amount (Currency) field in DocType 'Timesheet Detail' +#. Label of the base_billing_amount (Currency) field in DocType 'Timesheet +#. Detail' +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:73 +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:50 +msgid "Billing Amount" +msgstr "" + +#. Label of the billing_city (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Billing City" +msgstr "" + +#. Label of the billing_country (Link) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Billing Country" +msgstr "" + +#. Label of the billing_county (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Billing County" +msgstr "" + +#. Label of the default_currency (Link) field in DocType 'Supplier' +#. Label of the default_currency (Link) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Billing Currency" +msgstr "" + +#: erpnext/public/js/purchase_trends_filters.js:39 +msgid "Billing Date" +msgstr "" + +#. Label of the billing_details (Section Break) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Billing Details" +msgstr "" + +#. Label of the billing_email (Data) field in DocType 'Process Statement Of +#. Accounts Customer' +#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json +msgid "Billing Email" +msgstr "" + +#. Label of the billing_heatmap (HTML) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Billing Heatmap" +msgstr "" + +#. Label of the billing_history_section (Section Break) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Billing History" +msgstr "" + +#. Label of the billing_hours (Float) field in DocType 'Sales Invoice +#. Timesheet' +#. Label of the billing_hours (Float) field in DocType 'Timesheet Detail' +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:67 +msgid "Billing Hours" +msgstr "" + +#. Label of the billing_interval (Select) field in DocType 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Billing Interval" +msgstr "" + +#. Label of the billing_interval_count (Int) field in DocType 'Subscription +#. Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Billing Interval Count" +msgstr "" + +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.py:42 +msgid "Billing Interval Count cannot be less than 1" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:445 +msgid "Billing Interval in Subscription Plan must be Month to follow calendar months" +msgstr "" + +#. Label of the billing_period_section (Section Break) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Billing Period" +msgstr "" + +#. Label of the billing_rate (Currency) field in DocType 'Activity Cost' +#. Label of the billing_rate (Currency) field in DocType 'Timesheet Detail' +#. Label of the base_billing_rate (Currency) field in DocType 'Timesheet +#. Detail' +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Billing Rate" +msgstr "" + +#. Label of the billing_state (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Billing State" +msgstr "" + +#. Label of the billing_status (Select) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_calendar.js:31 +msgid "Billing Status" +msgstr "" + +#. Label of the billing_zipcode (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Billing Zipcode" +msgstr "" + +#: erpnext/accounts/party.py:619 +msgid "Billing currency must be equal to either default company's currency or party account currency" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/bin/bin.json +msgid "Bin" +msgstr "" + +#: erpnext/stock/doctype/bin/bin.js:16 +msgid "Bin Qty Recalculated" +msgstr "" + +#. Label of the bio (Text Editor) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Bio / Cover Letter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Biot" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:9 +msgid "Biotechnology" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:156 +msgid "Birthday" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "Bisect Accounting Statements" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:9 +msgid "Bisect Left" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Bisect Nodes" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:13 +msgid "Bisect Right" +msgstr "" + +#. Label of the bisecting_from (Heading) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "Bisecting From" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:61 +msgid "Bisecting Left ..." +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:71 +msgid "Bisecting Right ..." +msgstr "" + +#. Label of the bisecting_to (Heading) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "Bisecting To" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Biweekly" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:285 +msgid "Black" +msgstr "" + +#. Option for the 'Data Source' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Blank Line" +msgstr "" + +#. Label of the blanket_order (Link) field in DocType 'Purchase Order Item' +#. Name of a DocType +#. Label of the blanket_order (Link) field in DocType 'Quotation Item' +#. Label of the blanket_order (Link) field in DocType 'Sales Order Item' +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Blanket Order" +msgstr "" + +#. Label of the blanket_order_allowance (Float) field in DocType 'Buying +#. Settings' +#. Label of the blanket_order_allowance (Float) field in DocType 'Selling +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Blanket Order Allowance (%)" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +msgid "Blanket Order Item" +msgstr "" + +#. Label of the blanket_order_rate (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the blanket_order_rate (Currency) field in DocType 'Quotation Item' +#. Label of the blanket_order_rate (Currency) field in DocType 'Sales Order +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Blanket Order Rate" +msgstr "" + +#. Label of the blanket_order_section (Section Break) field in DocType 'Buying +#. Settings' +#. Label of the blanket_orders_section (Section Break) field in DocType +#. 'Selling Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Blanket Orders" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:109 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:271 +msgid "Block Invoice" +msgstr "" + +#. Label of the on_hold (Check) field in DocType 'Supplier' +#. Label of the block_supplier_section (Section Break) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Block Supplier" +msgstr "" + +#. Description of the 'Is Frozen' (Check) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n" +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Blocks this customer from being used on any new transaction." +msgstr "" + +#. Label of the blog_subscriber (Check) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Blog Subscriber" +msgstr "" + +#. Label of the blood_group (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Blood Group" +msgstr "" + +#. Label of the body_text (Text Editor) field in DocType 'Dunning' +#. Label of the body_text (Text Editor) field in DocType 'Dunning Letter Text' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Body Text" +msgstr "" + +#. Label of the body_and_closing_text_help (HTML) field in DocType 'Dunning +#. Letter Text' +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Body and Closing Text Help" +msgstr "" + +#. Label of the bold_text (Check) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Bold Text" +msgstr "" + +#. Description of the 'Bold Text' (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Bold text for emphasis (totals, major headings)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:287 +msgid "Book Advance Payments as Liability option is chosen. Paid From account changed from {0} to {1}." +msgstr "" + +#. Label of the book_advance_payments_in_separate_party_account (Check) field +#. in DocType 'Payment Entry' +#. Label of the book_advance_payments_in_separate_party_account (Check) field +#. in DocType 'Company' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/setup/doctype/company/company.json +msgid "Book Advance Payments in Separate Party Account" +msgstr "" + +#: erpnext/www/book_appointment/index.html:3 +msgid "Book Appointment" +msgstr "" + +#. Label of the book_asset_depreciation_entry_automatically (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book Asset Depreciation entry automatically" +msgstr "" + +#. Label of the book_deferred_entries_based_on (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book Deferred entries based on" +msgstr "" + +#: erpnext/www/book_appointment/index.html:15 +msgid "Book an appointment" +msgstr "" + +#. Label of the book_deferred_entries_via_journal_entry (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book deferred entries via Journal Entry" +msgstr "" + +#. Label of the book_tax_discount_loss (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book tax loss on early payment discount" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/shipment/shipment_list.js:5 +msgid "Booked" +msgstr "" + +#. Label of the booked_fixed_asset (Check) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Booked Fixed Asset" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:143 +msgid "Books have been closed till the period ending on {0}" +msgstr "" + +#. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Both" +msgstr "" + +#: erpnext/setup/doctype/supplier_group/supplier_group.py:57 +msgid "Both Payable Account: {0} and Advance Account: {1} must be of same currency for company: {2}" +msgstr "" + +#: erpnext/setup/doctype/customer_group/customer_group.py:62 +msgid "Both Receivable Account: {0} and Advance Account: {1} must be of same currency for company: {2}" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:415 +msgid "Both Trial Period Start Date and Trial Period End Date must be set" +msgstr "" + +#: erpnext/utilities/transaction_base.py:288 +msgid "Both {0} Account: {1} and Advance Account: {2} must be of same currency for company: {3}" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Box" +msgstr "" + +#. Label of the branch (Link) field in DocType 'SMS Center' +#. Name of a DocType +#. Label of the branch (Data) field in DocType 'Branch' +#. Label of the branch (Link) field in DocType 'Employee' +#. Label of the branch (Link) field in DocType 'Employee Internal Work History' +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/sms_center/sms_center.json +#: erpnext/setup/doctype/branch/branch.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.json +#: erpnext/workspace_sidebar/organization.json +msgid "Branch" +msgstr "" + +#. Label of the branch_code (Data) field in DocType 'Bank Account' +#. Label of the branch_code (Data) field in DocType 'Bank Guarantee' +#. Label of the branch_code (Read Only) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Branch Code" +msgstr "" + +#. Label of the brand_defaults (Table) field in DocType 'Brand' +#: erpnext/setup/doctype/brand/brand.json +msgid "Brand Defaults" +msgstr "" + +#. Label of the brand (Data) field in DocType 'POS Invoice Item' +#. Label of the brand (Data) field in DocType 'Sales Invoice Item' +#. Label of the brand (Link) field in DocType 'Sales Order Item' +#. Label of the brand (Data) field in DocType 'Brand' +#. Label of the brand (Link) field in DocType 'Delivery Note Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/setup/doctype/brand/brand.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Brand Name" +msgstr "" + +#. Option for the 'Maintenance Type' (Select) field in DocType 'Maintenance +#. Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Breakdown" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:10 +msgid "Broadcasting" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:11 +msgid "Brokerage" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:234 +msgid "Browse BOM" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu (It)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu (Mean)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu (Th)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu/Hour" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu/Minutes" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu/Seconds" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:101 +msgid "Bucket Size" +msgstr "" + +#. Label of the budget_section (Section Break) field in DocType 'Accounts +#. Settings' +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/cost_center/cost_center.js:45 +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:65 +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:73 +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:81 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:233 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:237 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:319 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:329 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:454 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/desktop_icon/budget.json erpnext/workspace_sidebar/budget.json +msgid "Budget" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/budget_account/budget_account.json +msgid "Budget Account" +msgstr "" + +#. Label of the budget_against (Select) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:80 +msgid "Budget Against" +msgstr "" + +#. Label of the budget_amount (Currency) field in DocType 'Budget' +#. Label of the budget_amount (Currency) field in DocType 'Budget Account' +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/budget_account/budget_account.json +msgid "Budget Amount" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:84 +msgid "Budget Amount can not be {0}." +msgstr "" + +#. Label of the budget_detail (Section Break) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Budget Detail" +msgstr "" + +#. Label of the budget_distribution (Table) field in DocType 'Budget' +#. Name of a DocType +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/budget_distribution/budget_distribution.json +msgid "Budget Distribution" +msgstr "" + +#. Label of the budget_distribution_total (Currency) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Budget Distribution Total" +msgstr "" + +#. Label of the budget_end_date (Date) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Budget End Date" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:582 +#: erpnext/accounts/doctype/budget/budget.py:584 +#: erpnext/controllers/budget_controller.py:293 +#: erpnext/controllers/budget_controller.py:296 +msgid "Budget Exceeded" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:232 +msgid "Budget Limit Exceeded" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:61 +msgid "Budget List" +msgstr "" + +#. Label of the budget_start_date (Date) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Budget Start Date" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/budget.json +msgid "Budget Variance" +msgstr "" + +#. Name of a report +#. Label of a Link in the Invoicing Workspace +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:77 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Budget Variance Report" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:160 +msgid "Budget cannot be assigned against Group Account {0}" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:165 +msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgstr "" + +#: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 +msgid "Budgets" +msgstr "" + +#. Label of the buffer_time (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Buffer Time" +msgstr "" + +#. Option for the 'Data fetch method' (Select) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Buffered Cursor" +msgstr "" + +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +msgid "Build All?" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:20 +msgid "Build Tree" +msgstr "" + +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +msgid "Buildable Qty" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107 +msgid "Buildings" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:88 +msgid "Bulk Bank Entry" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:76 +msgid "Bulk Payment" +msgstr "" + +#: erpnext/utilities/doctype/rename_tool/rename_tool.js:71 +msgid "Bulk Rename Jobs" +msgstr "" + +#. Name of a DocType +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.json +msgid "Bulk Transaction Log" +msgstr "" + +#. Name of a DocType +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "Bulk Transaction Log Detail" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:82 +msgid "Bulk Transfer" +msgstr "" + +#. Label of the packed_items (Table) field in DocType 'Quotation' +#. Label of the bundle_items_section (Section Break) field in DocType +#. 'Quotation' +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Bundle Items" +msgstr "" + +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:94 +msgid "Bundle Qty" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Bushel (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Bushel (US Dry Level)" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:6 +msgid "Business Analyst" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:7 +msgid "Business Development Manager" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Busy" +msgstr "" + +#: erpnext/stock/doctype/batch/batch_dashboard.py:8 +#: erpnext/stock/doctype/item/item_dashboard.py:22 +msgid "Buy" +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:96 +msgid "Buy & Sell" +msgstr "" + +#. Description of a DocType +#: erpnext/selling/doctype/customer/customer.json +msgid "Buyer of Goods and Services." +msgstr "" + +#. Label of the buying (Check) field in DocType 'Pricing Rule' +#. Label of the buying (Check) field in DocType 'Promotional Scheme' +#. Option for the 'Shipping Rule Type' (Select) field in DocType 'Shipping +#. Rule' +#. Group in Subscription's connections +#. Name of a Workspace +#. Label of a Card Break in the Buying Workspace +#. Label of a Desktop Icon +#. Group in Incoterm's connections +#. Label of the buying (Check) field in DocType 'Terms and Conditions' +#. Label of the buying (Check) field in DocType 'Item Price' +#. Label of the buying (Check) field in DocType 'Price List' +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/buying/workspace/buying/buying.json erpnext/desktop_icon/buying.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/stock/doctype/item/item_prices.html:98 +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/price_list/price_list.json +#: erpnext/workspace_sidebar/buying.json +msgid "Buying" +msgstr "" + +#. Label of the sales_settings (Section Break) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Buying & Selling Settings" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:368 +msgid "Buying Amount" +msgstr "" + +#. Label of the buying_cost_center (Link) field in DocType 'Item Default' +#. Label of the vf_buying_cost_center (Read Only) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Buying Cost Center" +msgstr "" + +#: erpnext/stock/report/item_price_stock/item_price_stock.py:40 +msgid "Buying Price List" +msgstr "" + +#: erpnext/stock/report/item_price_stock/item_price_stock.py:46 +msgid "Buying Rate" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of a shortcut in the ERPNext Settings Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Buying Settings" +msgstr "" + +#. Title of the Module Onboarding 'Buying Onboarding' +#: erpnext/buying/module_onboarding/buying_onboarding/buying_onboarding.json +msgid "Buying Setup" +msgstr "" + +#. Label of the buying_and_selling_tab (Tab Break) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Buying and Selling" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:219 +msgid "Buying must be checked, if Applicable For is selected as {0}" +msgstr "" + +#: erpnext/buying/doctype/buying_settings/buying_settings.js:62 +msgid "By default, the Supplier Name is set as per the Supplier Name entered. If you want Suppliers to be named by a Naming Series choose the 'Naming Series' option." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "By-Product" +msgstr "" + +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68 +msgid "Bypass credit check at Sales Order" +msgstr "" + +#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer +#. Credit Limit' +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +msgid "Bypass credit limit check at sales order" +msgstr "" + +#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "CC To" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "COA Importer" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "CODE-39" +msgstr "" + +#. Label of the default_cogs_account (Link) field in DocType 'Item Default' +#. Label of the vf_default_cogs_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "COGS Account" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.json +msgid "COGS By Item Group" +msgstr "" + +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:44 +msgid "COGS Debit" +msgstr "" + +#. Name of a Workspace +#. Label of a Desktop Icon +#. Label of a Card Break in the Home Workspace +#. Title of a Workspace Sidebar +#: erpnext/crm/workspace/crm/crm.json erpnext/desktop_icon/crm.json +#: erpnext/setup/workspace/home/home.json erpnext/workspace_sidebar/crm.json +msgid "CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/crm_note/crm_note.json +msgid "CRM Note" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/crm_settings/crm_settings.json +#: erpnext/workspace_sidebar/crm.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "CRM Settings" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122 +msgid "CWIP Account" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Caballeria" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cable Length" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cable Length (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cable Length (US)" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:73 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:28 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:102 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:28 +msgid "Calculate Ageing With" +msgstr "" + +#. Label of the calculate_based_on (Select) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Calculate Based On" +msgstr "" + +#. Label of the calculate_depreciation (Check) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Calculate Depreciation" +msgstr "" + +#. Label of the calculate_arrival_time (Button) field in DocType 'Delivery +#. Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Calculate Estimated Arrival Times" +msgstr "" + +#. Label of the editable_bundle_item_rates (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Calculate Product Bundle price based on child Item's rates" +msgstr "" + +#. Description of the 'Hidden Line (Internal Use Only)' (Check) field in +#. DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Calculate but don't show on final report" +msgstr "" + +#. Label of the calculate_depr_using_total_days (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Calculate daily depreciation using total days in depreciation period" +msgstr "" + +#. Option for the 'Data Source' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Calculated Amount" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:308 +msgid "Calculated Bank Statement Balance" +msgstr "" + +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:57 +msgid "Calculated Bank Statement balance" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.json +msgid "Calculated Discount Mismatch" +msgstr "" + +#. Label of the section_break_11 (Section Break) field in DocType 'Supplier +#. Scorecard Period' +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Calculations" +msgstr "" + +#. Label of the calendar_event (Link) field in DocType 'Appointment' +#: erpnext/crm/doctype/appointment/appointment.json +msgid "Calendar Event" +msgstr "" + +#. Option for the 'Maintenance Type' (Select) field in DocType 'Asset +#. Maintenance Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Calibration" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calibre" +msgstr "" + +#: erpnext/telephony/doctype/call_log/call_log.js:8 +msgid "Call Again" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:41 +msgid "Call Connected" +msgstr "" + +#. Label of the call_details_section (Section Break) field in DocType 'Call +#. Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Call Details" +msgstr "" + +#. Description of the 'Duration' (Duration) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Call Duration in seconds" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:48 +msgid "Call Ended" +msgstr "" + +#. Label of the call_handling_schedule (Table) field in DocType 'Incoming Call +#. Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +msgid "Call Handling Schedule" +msgstr "" + +#. Name of a DocType +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Call Log" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:45 +msgid "Call Missed" +msgstr "" + +#. Label of the call_received_by (Link) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Call Received By" +msgstr "" + +#. Label of the call_receiving_device (Select) field in DocType 'Voice Call +#. Settings' +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Call Receiving Device" +msgstr "" + +#. Label of the call_routing (Select) field in DocType 'Incoming Call Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +msgid "Call Routing" +msgstr "" + +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js:58 +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.py:48 +msgid "Call Schedule Row {0}: To time slot should always be ahead of From time slot." +msgstr "" + +#. Label of the section_break_11 (Section Break) field in DocType 'Call Log' +#: erpnext/public/js/call_popup/call_popup.js:164 +#: erpnext/telephony/doctype/call_log/call_log.json +#: erpnext/telephony/doctype/call_log/call_log.py:135 +msgid "Call Summary" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:187 +msgid "Call Summary Saved" +msgstr "" + +#. Label of the call_type (Data) field in DocType 'Telephony Call Type' +#: erpnext/telephony/doctype/telephony_call_type/telephony_call_type.json +msgid "Call Type" +msgstr "" + +#: erpnext/telephony/doctype/call_log/call_log.js:8 +msgid "Callback" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calorie (Food)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calorie (It)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calorie (Mean)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calorie (Th)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calorie/Seconds" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Campaign Efficiency" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/campaign_email_schedule/campaign_email_schedule.json +msgid "Campaign Email Schedule" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/campaign_item/campaign_item.json +msgid "Campaign Item" +msgstr "" + +#. Label of the campaign_name (Data) field in DocType 'Campaign' +#. Option for the 'Campaign Naming By' (Select) field in DocType 'CRM Settings' +#: erpnext/crm/doctype/campaign/campaign.json +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Campaign Name" +msgstr "" + +#. Label of the campaign_naming_by (Select) field in DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Campaign Naming By" +msgstr "" + +#. Label of the campaign_schedules_section (Section Break) field in DocType +#. 'Campaign' +#. Label of the campaign_schedules (Table) field in DocType 'Campaign' +#: erpnext/crm/doctype/campaign/campaign.json +msgid "Campaign Schedules" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:113 +msgid "Campaign {0} not found" +msgstr "" + +#: erpnext/setup/doctype/authorization_control/authorization_control.py:61 +msgid "Can be approved by {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.py:133 +msgid "Can not filter based on Cashier, if grouped by Cashier" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:80 +msgid "Can not filter based on Child Account, if grouped by Account" +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.py:130 +msgid "Can not filter based on Customer, if grouped by Customer" +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.py:127 +msgid "Can not filter based on POS Profile, if grouped by POS Profile" +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.py:136 +msgid "Can not filter based on Payment Method, if grouped by Payment Method" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:83 +msgid "Can not filter based on Voucher No, if grouped by Voucher" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/mapper.py:32 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +msgid "Can only make payment against unbilled {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/accounts/services/taxes.py:242 +#: erpnext/public/js/controllers/accounts.js:103 +msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:217 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" +msgstr "" + +#: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 +msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:218 +msgid "Cancel Material Visits {0} before cancelling this Maintenance Visit" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:54 +msgid "Cancel Subscription" +msgstr "" + +#. Label of the cancel_after_grace (Check) field in DocType 'Subscription +#. Settings' +#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json +msgid "Cancel Subscription After Grace Period" +msgstr "" + +#. Label of the cancel_at_period_end (Check) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Cancel When Period Ends" +msgstr "" + +#. Label of the cancelation_date (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Cancelation Date" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +msgid "Cancelled Job Card cannot be processed." +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:76 +msgid "Cannot Assign Cashier" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot Calculate Arrival Time as Driver Address is Missing." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:236 +msgid "Cannot Change Inventory Account Setting" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:445 +msgid "Cannot Create Return" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:688 +#: erpnext/stock/doctype/item/item.py:701 +#: erpnext/stock/doctype/item/item.py:717 +msgid "Cannot Merge" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot Optimize Route as Driver Address is Missing." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:292 +msgid "Cannot Relieve Employee" +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:71 +msgid "Cannot Resubmit Ledger entries for vouchers in Closed fiscal year." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:204 +msgid "Cannot add child table {0} to deletion list. Child tables are automatically deleted with their parent DocTypes." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:226 +msgid "Cannot amend {0} {1}, please create a new one instead." +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:1300 +msgid "Cannot apply TDS against multiple parties in one entry" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:378 +msgid "Cannot be a fixed asset item as Stock Ledger is created." +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 +msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:248 +msgid "Cannot cancel POS Closing Entry" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 +msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 +msgid "Cannot cancel as processing of cancelled documents is pending." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +msgid "Cannot cancel because submitted Stock Entry {0} exists" +msgstr "" + +#: erpnext/stock/stock_ledger.py:176 +msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:593 +msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:48 +msgid "Cannot cancel this document as it is linked with the submitted Asset Value Adjustment {0}. Please cancel the Asset Value Adjustment to continue." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1145 +msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +msgid "Cannot cancel transaction for Completed Work Order." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:984 +msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74 +msgid "Cannot change Reference Document Type." +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:53 +msgid "Cannot change Service Stop Date for item in row {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:975 +msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:342 +msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency." +msgstr "" + +#: erpnext/projects/doctype/task/task.py:146 +msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:61 +msgid "Cannot convert Cost Center to ledger as it has child nodes" +msgstr "" + +#: erpnext/projects/doctype/task/task.js:49 +msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:444 +msgid "Cannot convert to Group because Account Type is selected." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:280 +msgid "Cannot covert to Group because Account Type is selected." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:277 +msgid "Cannot create Intercompany {0}. All items in the source {1} have already been fully invoiced. Please check the existing linked {2}s." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/reservation.py:49 +msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/stock/doctype/pick_list/pick_list.py:256 +msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:34 +msgid "Cannot create accounting entries against disabled accounts: {0}" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:444 +msgid "Cannot create return for consolidated invoice {0}." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:903 +msgid "Cannot deactivate or cancel BOM as it is linked with other BOMs" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity.py:283 +msgid "Cannot declare as lost, because Quotation has been made." +msgstr "" + +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js:16 +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js:26 +msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +msgid "Cannot delete Exchange Gain/Loss row" +msgstr "" + +#: erpnext/stock/doctype/serial_no/serial_no.py:119 +msgid "Cannot delete Serial No {0}, as it is used in stock transactions" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:403 +msgid "Cannot delete an item which has been ordered" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +msgid "Cannot delete protected core DocType: {0}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:213 +msgid "Cannot delete virtual DocType: {0}. Virtual DocTypes do not have database tables." +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:147 +msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:568 +msgid "Cannot disable perpetual inventory, as there are existing Stock Ledger Entries for the company {0}. Please cancel the stock transactions first and try again." +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:128 +msgid "Cannot disable {0} as it may lead to incorrect stock valuation." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/status.py:226 +msgid "Cannot disassemble more than produced quantity." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:46 +msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:233 +msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." +msgstr "" + +#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:624 +#: erpnext/selling/doctype/sales_order/sales_order.py:647 +msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.js:111 +msgid "Cannot fetch selected rows for submitted Payment Request" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:62 +msgid "Cannot find Item or Warehouse with this Barcode" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:63 +msgid "Cannot find Item with this Barcode" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:356 +msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." +msgstr "" + +#: erpnext/accounts/party.py:1091 +msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/status.py:41 +msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +msgid "Cannot produce more item for {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +msgid "Cannot produce more than {0} items for {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:361 +msgid "Cannot receive from customer against negative outstanding" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:289 +msgid "Cannot reduce quantity than ordered or purchased quantity" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 +#: erpnext/accounts/services/taxes.py:257 +#: erpnext/public/js/controllers/accounts.js:120 +msgid "Cannot refer row number greater than or equal to current row number for this Charge type" +msgstr "" + +#: erpnext/accounts/doctype/bank/bank.js:63 +msgid "Cannot retrieve link token for update. Check Error Log for more information" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:68 +msgid "Cannot retrieve link token. Check Error Log for more information" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:368 +msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 +#: erpnext/accounts/services/taxes.py:247 +#: erpnext/public/js/controllers/accounts.js:112 +#: erpnext/public/js/controllers/taxes_and_totals.js:554 +msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.py:293 +msgid "Cannot set as Lost as Sales Order is made." +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:89 +msgid "Cannot set authorization on basis of Discount for {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:775 +msgid "Cannot set multiple Item Defaults for a company." +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:108 +msgid "Cannot set multiple account rows for the same company" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:258 +msgid "Cannot set quantity less than delivered quantity." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:259 +msgid "Cannot set quantity less than received quantity." +msgstr "" + +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.py:69 +msgid "Cannot set the field {0} for copying in variants" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:266 +msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:923 +msgid "Cannot submit Job Card {0} while it is On Hold. Please resume and complete the job before submission." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:283 +msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1675 +msgid "Cannot {0} from {1} without any negative outstanding invoice" +msgstr "" + +#. Label of the canonical_uri (Data) field in DocType 'Code List' +#. Label of the canonical_uri (Data) field in DocType 'Common Code' +#: erpnext/edi/doctype/code_list/code_list.json +#: erpnext/edi/doctype/common_code/common_code.json +msgid "Canonical URI" +msgstr "" + +#. Label of the capacity_per_day (Int) field in DocType 'Item Lead Time' +#. Label of the capacity (Float) field in DocType 'Putaway Rule' +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:964 +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +msgid "Capacity" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:69 +msgid "Capacity (Stock UOM)" +msgstr "" + +#. Label of the capacity_planning (Section Break) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Capacity Planning" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/operations.py:147 +msgid "Capacity Planning Error, planned start time can not be same as end time" +msgstr "" + +#. Label of the capacity_planning_for_days (Int) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Capacity Planning For (Days)" +msgstr "" + +#. Label of the stock_capacity (Float) field in DocType 'Putaway Rule' +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +msgid "Capacity in Stock UOM" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:86 +msgid "Capacity must be greater than 0" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82 +msgid "Capital Equipment" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338 +msgid "Capital Stock" +msgstr "" + +#. Label of the capital_work_in_progress_account (Link) field in DocType 'Asset +#. Category Account' +#. Label of the capital_work_in_progress_account (Link) field in DocType +#. 'Company' +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +#: erpnext/setup/doctype/company/company.json +msgid "Capital Work In Progress Account" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/report/account_balance/account_balance.js:42 +msgid "Capital Work in Progress" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:223 +msgid "Capitalize Asset" +msgstr "" + +#. Label of the capitalize_repair_cost (Check) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Capitalize Repair Cost" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:221 +msgid "Capitalize this asset before submitting." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:14 +msgid "Capitalized" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Carat" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:6 +msgid "Carriage Paid To" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:7 +msgid "Carriage and Insurance Paid to" +msgstr "" + +#. Label of the carrier (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Carrier" +msgstr "" + +#. Label of the carrier_service (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Carrier Service" +msgstr "" + +#. Label of the carry_forward_communication_and_comments (Check) field in +#. DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Carry Forward Communication and Comments" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Option for the 'Type' (Select) field in DocType 'Mode of Payment' +#. Option for the 'Salary Mode' (Select) field in DocType 'Employee' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:21 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:27 +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/accounts/report/account_balance/account_balance.js:40 +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:257 +msgid "Cash" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Cash Entry" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Financial Report +#. Template' +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/accounts/report/cash_flow/cash_flow.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Cash Flow" +msgstr "" + +#: erpnext/public/js/financial_statements.js:359 +msgid "Cash Flow Statement" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:187 +msgid "Cash Flow from Financing" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:180 +msgid "Cash Flow from Investing" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:168 +msgid "Cash Flow from Operations" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:20 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:26 +msgid "Cash In Hand" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:326 +msgid "Cash or Bank Account is mandatory for making payment entry" +msgstr "" + +#. Label of the cash_bank_account (Link) field in DocType 'POS Invoice' +#. Label of the cash_bank_account (Link) field in DocType 'Purchase Invoice' +#. Label of the cash_bank_account (Link) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Cash/Bank Account" +msgstr "" + +#. Label of the user (Link) field in DocType 'POS Closing Entry' +#. Label of the user (Link) field in DocType 'POS Opening Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/accounts/report/pos_register/pos_register.js:38 +#: erpnext/accounts/report/pos_register/pos_register.py:132 +#: erpnext/accounts/report/pos_register/pos_register.py:211 +msgid "Cashier" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +msgid "Cashier Closing" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json +msgid "Cashier Closing Payments" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:77 +msgid "Cashier is currently assigned to another POS." +msgstr "" + +#. Label of the catch_all (Link) field in DocType 'Communication Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Catch All" +msgstr "" + +#. Label of the categorize_by (Select) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Categorize By" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:117 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:80 +msgid "Categorize by" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:130 +msgid "Categorize by Account" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:84 +msgid "Categorize by Item" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:134 +msgid "Categorize by Party" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:83 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:86 +msgid "Categorize by Supplier" +msgstr "" + +#. Option for the 'Categorize By' (Select) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:122 +msgid "Categorize by Voucher" +msgstr "" + +#. Option for the 'Categorize By' (Select) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:126 +msgid "Categorize by Voucher (Consolidated)" +msgstr "" + +#. Label of the category_details_section (Section Break) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Category Details" +msgstr "" + +#: erpnext/assets/dashboard_fixtures.py:93 +msgid "Category-wise Asset Value" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.py:289 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:140 +msgid "Caution" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:210 +msgid "Caution: This might alter frozen accounts." +msgstr "" + +#. Label of the cell_number (Data) field in DocType 'Driver' +#: erpnext/setup/doctype/driver/driver.json +msgid "Cellphone Number" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Celsius" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cental" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Centiarea" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Centigram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Centilitre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Centimeter" +msgstr "" + +#. Label of the certificate_attachement (Attach) field in DocType 'Asset +#. Maintenance Log' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +msgid "Certificate" +msgstr "" + +#. Label of the certificate_details_section (Section Break) field in DocType +#. 'Lower Deduction Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Certificate Details" +msgstr "" + +#. Label of the certificate_limit (Currency) field in DocType 'Lower Deduction +#. Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Certificate Limit" +msgstr "" + +#. Label of the certificate_no (Data) field in DocType 'Lower Deduction +#. Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Certificate No" +msgstr "" + +#. Label of the certificate_required (Check) field in DocType 'Asset +#. Maintenance Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Certificate Required" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Chain" +msgstr "" + +#. Label of the change_amount (Currency) field in DocType 'POS Invoice' +#. Label of the change_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:318 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/page/point_of_sale/pos_payment.js:684 +msgid "Change Amount" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:94 +msgid "Change Release Date" +msgstr "" + +#. Label of the stock_value_difference (Float) field in DocType 'Serial and +#. Batch Entry' +#. Label of the stock_value_difference (Currency) field in DocType 'Stock +#. Closing Balance' +#. Label of the stock_value_difference (Currency) field in DocType 'Stock +#. Ledger Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:171 +msgid "Change in Stock Value" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:773 +msgid "Change the account type to Receivable or select a different account." +msgstr "" + +#. Description of the 'Last Integration Date' (Date) field in DocType 'Bank +#. Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Change this date manually to setup the next synchronization start date" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:158 +msgid "Changed customer name to '{}' as '{}' already exists." +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 +msgid "Changes in {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:447 +msgid "Changing Customer Group for the selected Customer is not allowed." +msgstr "" + +#. Description of the 'column_break_mfor' (Column Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Changing the account in any transaction of the DocTypes listed below will trigger a repost. To prevent reposting, remove the relevant DocType from the list." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:34 +msgid "Changing the valuation method to Moving Average will affect new transactions. If backdated entries are added, earlier FIFO-based entries will be reposted, which may change closing balances." +msgstr "" + +#. Option for the 'Lead Type' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:1 +msgid "Channel Partner" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 +#: erpnext/accounts/services/taxes.py:309 +msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/report/account_balance/account_balance.js:41 +msgid "Chargeable" +msgstr "" + +#. Label of the charges (Currency) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Charges Incurred" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:24 +msgid "Charges are updated in Purchase Receipt against each item" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:18 +msgid "Charges will be distributed proportionately based on item qty or amount, as per your selection" +msgstr "" + +#. Label of the chart_of_accounts (Select) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Chart Of Accounts Template" +msgstr "" + +#. Label of the chart_preview (Section Break) field in DocType 'Chart of +#. Accounts Importer' +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +msgid "Chart Preview" +msgstr "" + +#. Label of the chart_tree (HTML) field in DocType 'Chart of Accounts Importer' +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +msgid "Chart Tree" +msgstr "" + +#. Label of the chart_of_accounts_section (Section Break) field in DocType +#. 'Accounts Settings' +#. Label of a Link in the Invoicing Workspace +#. Label of the section_break_28 (Section Break) field in DocType 'Company' +#. Label of a Link in the Home Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.js:87 +#: erpnext/accounts/doctype/account/account_tree.js:5 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/public/js/setup_wizard.js:43 +#: erpnext/setup/doctype/company/company.js:139 +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/invoicing.json +msgid "Chart of Accounts" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Link in the Home Workspace +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/setup/workspace/home/home.json +msgid "Chart of Accounts Importer" +msgstr "" + +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account_tree.js:191 +#: erpnext/accounts/doctype/cost_center/cost_center.js:41 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Chart of Cost Centers" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:66 +msgid "Charts Based On" +msgstr "" + +#. Label of the chassis_no (Data) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Chassis No" +msgstr "" + +#. Label of the warehouse_group (Link) field in DocType 'Item Reorder' +#: erpnext/stock/doctype/item_reorder/item_reorder.json +msgid "Check Availability in Warehouse" +msgstr "" + +#. Label of the check_supplier_invoice_uniqueness (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Check Supplier invoice number uniqueness" +msgstr "" + +#. Description of the 'Is Container' (Check) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Check if it is a hydroponic unit" +msgstr "" + +#. Description of the 'Skip Material Transfer to WIP Warehouse' (Check) field +#. in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Check if material transfer entry is not required" +msgstr "" + +#. Description of the 'Not Applicable' (Check) field in DocType 'Item Tax +#. Template Detail' +#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json +#, python-format +msgid "Check if this tax is not applicable to items (distinct from 0% rate)" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py:58 +msgid "Check row {0} for account {1}: Party Type is only allowed for Receivable or Payable accounts" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py:65 +msgid "Check row {0} for account {1}: Party is only allowed if Party Type is set" +msgstr "" + +#. Description of the 'Must be Whole Number' (Check) field in DocType 'UOM' +#: erpnext/setup/doctype/uom/uom.json +msgid "Check this to disallow fractions. (for Nos)" +msgstr "" + +#. Label of the checked_on (Datetime) field in DocType 'Ledger Health' +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +msgid "Checked On" +msgstr "" + +#. Description of the 'Round Off Tax Amount' (Check) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Checking this will round off the tax amount to the nearest integer" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:108 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:148 +msgid "Checkout" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:263 +msgid "Checkout Order / Submit Order / New Order" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:300 +msgid "Checks and Deposits incorrectly cleared" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:12 +msgid "Chemical" +msgstr "" + +#. Option for the 'Salary Mode' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:254 +msgid "Cheque" +msgstr "" + +#. Label of the cheque_date (Date) field in DocType 'Bank Clearance Detail' +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +msgid "Cheque Date" +msgstr "" + +#. Label of the cheque_height (Float) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Cheque Height" +msgstr "" + +#. Label of the cheque_number (Data) field in DocType 'Bank Clearance Detail' +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +msgid "Cheque Number" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Cheque Print Template" +msgstr "" + +#. Label of the cheque_size (Select) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Cheque Size" +msgstr "" + +#. Label of the cheque_width (Float) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Cheque Width" +msgstr "" + +#. Label of the reference_date (Date) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/public/js/controllers/transaction.js:2810 +msgid "Cheque/Reference Date" +msgstr "" + +#. Label of the reference_no (Data) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:39 +msgid "Cheque/Reference No" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:132 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:323 +msgid "Cheque/Reference Number" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:134 +msgid "Cheques Required" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.json +msgid "Cheques and Deposits Incorrectly cleared" +msgstr "" + +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:50 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:54 +msgid "Cheques and Deposits incorrectly cleared" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:9 +msgid "Chief Executive Officer" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:10 +msgid "Chief Financial Officer" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:11 +msgid "Chief Operating Officer" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:12 +msgid "Chief Technology Officer" +msgstr "" + +#. Label of the child_doctypes (Small Text) field in DocType 'Transaction +#. Deletion Record To Delete' +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Child DocTypes" +msgstr "" + +#. Label of the child_docname (Data) field in DocType 'Pricing Rule Detail' +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +msgid "Child Docname" +msgstr "" + +#. Label of the child_row_reference (Data) field in DocType 'Quality +#. Inspection' +#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Child Row Reference" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:207 +msgid "Child Table Not Allowed" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:319 +msgid "Child Task exists for this Task. You can not delete this Task." +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 +msgid "Child nodes can be only created under 'Group' type nodes" +msgstr "" + +#. Description of the 'Child DocTypes' (Small Text) field in DocType +#. 'Transaction Deletion Record To Delete' +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Child tables that will also be deleted" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:104 +msgid "Child warehouse exists for this warehouse. You can not delete this warehouse." +msgstr "" + +#: erpnext/projects/doctype/task/task.py:263 +msgid "Circular Reference Error" +msgstr "" + +#. Label of the claimed_landed_cost_amount (Currency) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Claimed Landed Cost Amount (Company Currency)" +msgstr "" + +#. Label of the class_per (Data) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Class / Percentage" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/territory/territory.json +msgid "Classification of Customers by region" +msgstr "" + +#. Label of the classify_as (Select) field in DocType 'Bank Transaction Rule' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Classify As" +msgstr "" + +#. Description of the 'Market Segment' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting." +msgstr "" + +#. Label of the more_information (Text Editor) field in DocType 'Bank +#. Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Clauses and Conditions" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:493 +msgid "Clear Last Scanned Warehouse" +msgstr "" + +#. Label of the clear_notifications_status (Select) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Clear Notifications" +msgstr "" + +#. Label of the clear_table (Button) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Clear Table" +msgstr "" + +#. Label of the clearance_date (Date) field in DocType 'Bank Clearance Detail' +#. Label of the clearance_date (Date) field in DocType 'Bank Transaction +#. Payments' +#. Label of the clearance_date (Date) field in DocType 'Journal Entry' +#. Label of the clearance_date (Date) field in DocType 'Payment Entry' +#. Label of the clearance_date (Date) field in DocType 'Purchase Invoice' +#. Label of the clearance_date (Date) field in DocType 'Sales Invoice Payment' +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:157 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:339 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:178 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:154 +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:40 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:28 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:102 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:154 +#: erpnext/templates/form_grid/bank_reconciliation_grid.html:7 +msgid "Clearance Date" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:135 +msgid "Clearance Date not mentioned" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:180 +msgid "Clearance Date updated" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:159 +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:174 +msgid "Clearance date changed from {0} to {1} via Bank Clearance Tool" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:292 +msgid "Clearance date updated" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:184 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:82 +msgid "Cleared" +msgstr "" + +#: erpnext/public/js/utils/demo.js:21 +msgid "Clearing Demo Data..." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:720 +msgid "Click on 'Get Finished Goods for Manufacture' to fetch the items from the above Sales Orders. Items only for which a BOM is present will be fetched." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:70 +msgid "Click on Add to Holidays. This will populate the holidays table with all the dates that fall on the selected weekly off. Repeat the process for populating the dates for all your weekly holidays" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:715 +msgid "Click on Get Sales Orders to fetch sales orders based on the above filters." +msgstr "" + +#. Description of the 'Import Invoices' (Button) field in DocType 'Import +#. Supplier Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Click on Import Invoices button once the zip file has been attached to the document. Any errors related to processing will be shown in the Error Log." +msgstr "" + +#: erpnext/templates/emails/confirm_appointment.html:3 +msgid "Click on the link below to verify your email and confirm the appointment" +msgstr "" + +#. Description of the 'Reset Raw Materials Table' (Button) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Click this button if you encounter a negative stock error for a serial or batch item. The system will fetch the available serials or batches automatically." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:485 +msgid "Click to add email / phone" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:790 +msgid "Click to pay in full." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:183 +msgid "Click to set the closing balance as per statement" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/RawTableGrid.tsx:137 +msgid "Click to set this as the header row." +msgstr "" + +#. Label of the close_issue_after_days (Int) field in DocType 'Support +#. Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Close Issue After Days" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:69 +msgid "Close Loan" +msgstr "" + +#. Label of the close_opportunity_after_days (Int) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Close Replied Opportunity After Days" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +msgid "Close the POS" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/closed_document/closed_document.json +msgid "Closed Document" +msgstr "" + +#. Label of the closed_documents (Table) field in DocType 'Accounting Period' +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +msgid "Closed Documents" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +msgid "Closed Work Order can not be stopped or Re-opened" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:486 +msgid "Closed order cannot be cancelled. Unclose to cancel." +msgstr "" + +#. Label of the expected_closing (Date) field in DocType 'Prospect Opportunity' +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +msgid "Closing" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:455 +#: erpnext/accounts/report/trial_balance/trial_balance.py:554 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:226 +msgid "Closing (Cr)" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:448 +#: erpnext/accounts/report/trial_balance/trial_balance.py:547 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:219 +msgid "Closing (Dr)" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:406 +msgid "Closing (Opening + Total)" +msgstr "" + +#. Label of the closing_account_head (Link) field in DocType 'Period Closing +#. Voucher' +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +msgid "Closing Account Head" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:126 +msgid "Closing Account {0} must be of type Liability / Equity" +msgstr "" + +#. Label of the closing_amount (Currency) field in DocType 'POS Closing Entry +#. Detail' +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +msgid "Closing Amount" +msgstr "" + +#. Label of the bank_statement_closing_balance (Currency) field in DocType +#. 'Bank Reconciliation Tool' +#. Label of the closing_balance (Currency) field in DocType 'Bank Statement +#. Import Log' +#. Option for the 'Balance Type' (Select) field in DocType 'Financial Report +#. Row' +#. Label of the closing_balance (JSON) field in DocType 'Process Period Closing +#. Voucher Detail' +#: banking/src/pages/BankStatementImporter.tsx:255 +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:230 +msgid "Closing Balance" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:185 +msgctxt "Do MMMM YYYY" +msgid "Closing Balance as of {}" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/number_card.js:18 +msgid "Closing Balance as per Bank Statement" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/number_card.js:24 +msgid "Closing Balance as per ERP" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:171 +msgid "Closing Balance as per statement" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:68 +msgid "Closing Balance as per system" +msgstr "" + +#. Label of the closing_date (Date) field in DocType 'Account Closing Balance' +#. Label of the closing_date (Date) field in DocType 'Task' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/projects/doctype/task/task.json +msgid "Closing Date" +msgstr "" + +#. Label of the closing_text (Text Editor) field in DocType 'Dunning' +#. Label of the closing_text (Text Editor) field in DocType 'Dunning Letter +#. Text' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Closing Text" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.html:211 +msgid "Closing [Opening + Total] " +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:75 +msgid "Closing balance as per system" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:294 +msgid "Closing balance deleted." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:238 +msgid "Closing balance is required." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:257 +msgctxt "Do MMM YYYY" +msgid "Closing balance on bank statement as of {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:232 +msgid "Closing balance set." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Co-Product" +msgstr "" + +#. Name of a DocType +#. Label of the code_list (Link) field in DocType 'Common Code' +#: erpnext/edi/doctype/code_list/code_list.json +#: erpnext/edi/doctype/common_code/common_code.json +msgid "Code List" +msgstr "" + +#. Description of the 'Line Reference' (Data) field in DocType 'Financial +#. Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Code to reference this line in formulas (e.g., REV100, EXP200, ASSET100)" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:4 +msgid "Cold Calling" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:281 +msgid "Collect Outstanding Amount" +msgstr "" + +#. Label of the collect_progress (Check) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Collect Progress" +msgstr "" + +#. Label of the collection_factor (Currency) field in DocType 'Loyalty Program +#. Collection' +#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json +msgid "Collection Factor (=1 LP)" +msgstr "" + +#. Label of the collection_rules (Table) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Collection Rules" +msgstr "" + +#. Label of the rules (Section Break) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Collection Tier" +msgstr "" + +#. Description of the 'Color' (Color) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Color to highlight values (e.g., red for exceptions)" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:280 +msgid "Colour" +msgstr "" + +#. Label of the column_mapping (Table) field in DocType 'Bank Statement Import +#. Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Column Mapping" +msgstr "" + +#. Label of the file_field (Data) field in DocType 'Bank Transaction Mapping' +#: erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.json +msgid "Column in Bank File" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:52 +msgid "Columns are not according to template. Please compare the uploaded file with standard template" +msgstr "" + +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py:39 +msgid "Combined invoice portion must equal 100%" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:178 +msgid "Commercial" +msgstr "" + +#. Label of the sales_team_section_break (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the commission_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the sales_team_section_break (Section Break) field in DocType +#. 'Sales Order' +#. Label of the sales_team_section_break (Section Break) field in DocType +#. 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:49 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Commission" +msgstr "" + +#. Label of the default_commission_rate (Float) field in DocType 'Customer' +#. Label of the commission_rate (Float) field in DocType 'Sales Order' +#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Float) field in DocType 'Sales Partner' +#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_team/sales_team.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Commission Rate" +msgstr "" + +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:168 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:47 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:81 +msgid "Commission Rate %" +msgstr "" + +#. Label of the commission_rate (Float) field in DocType 'POS Invoice' +#. Label of the commission_rate (Float) field in DocType 'Sales Invoice' +#. Label of the commission_rate (Float) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Commission Rate (%)" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177 +msgid "Commission on Sales" +msgstr "" + +#. Description of the 'Sales Partner' (Section Break) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Commission paid to the Sales Partner on transactions with this customer." +msgstr "" + +#. Name of a DocType +#. Label of the common_code (Data) field in DocType 'Common Code' +#. Label of the common_code (Data) field in DocType 'UOM' +#: erpnext/edi/doctype/common_code/common_code.json +#: erpnext/setup/doctype/uom/uom.json +msgid "Common Code" +msgstr "" + +#. Label of the communication_channel (Select) field in DocType 'Communication +#. Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Communication Channel" +msgstr "" + +#. Name of a DocType +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Communication Medium" +msgstr "" + +#. Name of a DocType +#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json +msgid "Communication Medium Timeslot" +msgstr "" + +#. Label of the communication_medium_type (Select) field in DocType +#. 'Communication Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Communication Medium Type" +msgstr "" + +#: erpnext/setup/install.py:98 +msgid "Compact Item Print" +msgstr "" + +#. Label of the companies (Table) field in DocType 'Fiscal Year' +#. Label of the section_break_xdsp (Section Break) field in DocType 'Ledger +#. Health Monitor' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:26 +msgid "Companies" +msgstr "" + +#. Label of the company (Link) field in DocType 'Account' +#. Label of the company (Link) field in DocType 'Account Closing Balance' +#. Label of the company (Link) field in DocType 'Accounting Dimension Detail' +#. Label of the company (Link) field in DocType 'Accounting Dimension Filter' +#. Label of the company (Link) field in DocType 'Accounting Period' +#. Label of the company (Link) field in DocType 'Advance Payment Ledger Entry' +#. Label of the company (Link) field in DocType 'Allowed To Transact With' +#. Label of the company (Link) field in DocType 'Bank Account' +#. Label of the company (Link) field in DocType 'Bank Account Balance' +#. Label of the company (Link) field in DocType 'Bank Reconciliation Tool' +#. Label of the company (Link) field in DocType 'Bank Statement Import' +#. Label of the company (Link) field in DocType 'Bank Transaction' +#. Label of the company (Link) field in DocType 'Bank Transaction Rule' +#. Label of the company (Link) field in DocType 'Bisect Accounting Statements' +#. Label of the company (Link) field in DocType 'Budget' +#. Label of the company (Link) field in DocType 'Chart of Accounts Importer' +#. Label of the company (Link) field in DocType 'Cost Center' +#. Label of the company (Link) field in DocType 'Cost Center Allocation' +#. Label of the company (Link) field in DocType 'Dunning' +#. Label of the company (Link) field in DocType 'Dunning Type' +#. Label of the company (Link) field in DocType 'Exchange Rate Revaluation' +#. Label of the company (Link) field in DocType 'Fiscal Year Company' +#. Label of the company (Link) field in DocType 'GL Entry' +#. Label of the company (Link) field in DocType 'Invoice Discounting' +#. Label of the company (Link) field in DocType 'Item Tax Template' +#. Label of the company (Link) field in DocType 'Journal Entry' +#. Label of the company (Link) field in DocType 'Journal Entry Template' +#. Label of the company (Link) field in DocType 'Ledger Health Monitor Company' +#. Label of the company (Link) field in DocType 'Ledger Merge' +#. Label of the company (Link) field in DocType 'Loyalty Point Entry' +#. Label of the company (Link) field in DocType 'Loyalty Program' +#. Label of the company (Link) field in DocType 'Mode of Payment Account' +#. Label of the company (Link) field in DocType 'Opening Invoice Creation Tool' +#. Label of the company (Link) field in DocType 'Party Account' +#. Label of the company (Link) field in DocType 'Payment Entry' +#. Label of the company (Link) field in DocType 'Payment Gateway Account' +#. Label of the company (Link) field in DocType 'Payment Ledger Entry' +#. Label of the company (Link) field in DocType 'Payment Order' +#. Label of the company (Link) field in DocType 'Payment Reconciliation' +#. Label of the company (Link) field in DocType 'Payment Request' +#. Label of the company (Link) field in DocType 'Period Closing Voucher' +#. Label of the company (Link) field in DocType 'POS Closing Entry' +#. Label of the company (Link) field in DocType 'POS Invoice' +#. Label of the company (Link) field in DocType 'POS Invoice Merge Log' +#. Label of the company (Link) field in DocType 'POS Opening Entry' +#. Label of the company (Link) field in DocType 'POS Profile' +#. Label of the company (Link) field in DocType 'Pricing Rule' +#. Label of the company (Link) field in DocType 'Process Deferred Accounting' +#. Label of the company (Link) field in DocType 'Process Payment +#. Reconciliation' +#. Label of the company (Link) field in DocType 'Process Statement Of Accounts' +#. Label of the company (Link) field in DocType 'Promotional Scheme' +#. Label of the company (Link) field in DocType 'Purchase Invoice' +#. Label of the company (Link) field in DocType 'Purchase Taxes and Charges +#. Template' +#. Label of the company (Link) field in DocType 'Repost Accounting Ledger' +#. Label of the company (Link) field in DocType 'Repost Payment Ledger' +#. Label of the company (Link) field in DocType 'Sales Invoice' +#. Label of the company (Link) field in DocType 'Sales Taxes and Charges +#. Template' +#. Label of the company (Link) field in DocType 'Share Transfer' +#. Label of the company (Link) field in DocType 'Shareholder' +#. Label of the company (Link) field in DocType 'Shipping Rule' +#. Label of the company (Link) field in DocType 'Subscription' +#. Label of the company (Link) field in DocType 'Tax Rule' +#. Label of the company (Link) field in DocType 'Tax Withholding Account' +#. Label of the company (Link) field in DocType 'Tax Withholding Entry' +#. Label of the company (Link) field in DocType 'Unreconcile Payment' +#. Label of a Link in the Invoicing Workspace +#. Option for the 'Asset Owner' (Select) field in DocType 'Asset' +#. Label of the company (Link) field in DocType 'Asset' +#. Label of the company (Link) field in DocType 'Asset Capitalization' +#. Label of the company_name (Link) field in DocType 'Asset Category Account' +#. Label of the company (Link) field in DocType 'Asset Depreciation Schedule' +#. Label of the company (Link) field in DocType 'Asset Maintenance' +#. Label of the company (Link) field in DocType 'Asset Maintenance Team' +#. Label of the company (Link) field in DocType 'Asset Movement' +#. Label of the company (Link) field in DocType 'Asset Movement Item' +#. Label of the company (Link) field in DocType 'Asset Repair' +#. Label of the company (Link) field in DocType 'Asset Value Adjustment' +#. Label of the company (Link) field in DocType 'Customer Number At Supplier' +#. Label of the company (Link) field in DocType 'Purchase Order' +#. Label of the company (Link) field in DocType 'Request for Quotation' +#. Option for the 'Supplier Type' (Select) field in DocType 'Supplier' +#. Label of the company (Link) field in DocType 'Supplier Quotation' +#. Label of the company (Link) field in DocType 'Lead' +#. Label of the company (Link) field in DocType 'Opportunity' +#. Label of the company (Link) field in DocType 'Prospect' +#. Label of the company (Link) field in DocType 'Maintenance Schedule' +#. Label of the company (Link) field in DocType 'Maintenance Visit' +#. Label of the company (Link) field in DocType 'Blanket Order' +#. Label of the company (Link) field in DocType 'BOM' +#. Label of the company (Link) field in DocType 'BOM Creator' +#. Label of the company (Link) field in DocType 'Job Card' +#. Label of the company (Link) field in DocType 'Master Production Schedule' +#. Label of the company (Link) field in DocType 'Plant Floor' +#. Label of the company (Link) field in DocType 'Production Plan' +#. Label of the company (Link) field in DocType 'Sales Forecast' +#. Label of the company (Link) field in DocType 'Work Order' +#. Label of the company (Link) field in DocType 'Workstation Operating +#. Component Account' +#. Label of the company (Link) field in DocType 'Project' +#. Label of the company (Link) field in DocType 'Task' +#. Label of the company (Link) field in DocType 'Timesheet' +#. Label of the company (Link) field in DocType 'Import Supplier Invoice' +#. Label of the company (Link) field in DocType 'Lower Deduction Certificate' +#. Label of the company (Link) field in DocType 'South Africa VAT Settings' +#. Label of the company (Link) field in DocType 'UAE VAT Settings' +#. Option for the 'Customer Type' (Select) field in DocType 'Customer' +#. Label of the company (Link) field in DocType 'Customer Credit Limit' +#. Label of the company (Link) field in DocType 'Installation Note' +#. Label of the company (Link) field in DocType 'Quotation' +#. Label of the company (Link) field in DocType 'Sales Order' +#. Label of the company (Link) field in DocType 'Supplier Number At Customer' +#. Label of the company (Link) field in DocType 'Authorization Rule' +#. Name of a DocType +#. Label of the company_name (Data) field in DocType 'Company' +#. Label of the company (Link) field in DocType 'Department' +#. Label of the company (Link) field in DocType 'Employee' +#. Label of the company_name (Data) field in DocType 'Employee External Work +#. History' +#. Label of the company (Link) field in DocType 'Transaction Deletion Record' +#. Label of the company (Link) field in DocType 'Vehicle' +#. Label of a Link in the Home Workspace +#. Label of the company (Link) field in DocType 'Bin' +#. Label of the company (Link) field in DocType 'Delivery Note' +#. Label of the company (Link) field in DocType 'Delivery Trip' +#. Label of the company (Link) field in DocType 'Item Default' +#. Label of the company (Link) field in DocType 'Landed Cost Voucher' +#. Label of the company (Link) field in DocType 'Material Request' +#. Label of the company (Link) field in DocType 'Pick List' +#. Label of the company (Link) field in DocType 'Purchase Receipt' +#. Label of the company (Link) field in DocType 'Putaway Rule' +#. Label of the company (Link) field in DocType 'Quality Inspection' +#. Label of the company (Link) field in DocType 'Repost Item Valuation' +#. Label of the company (Link) field in DocType 'Serial and Batch Bundle' +#. Label of the company (Link) field in DocType 'Serial No' +#. Option for the 'Pickup from' (Select) field in DocType 'Shipment' +#. Label of the pickup_company (Link) field in DocType 'Shipment' +#. Option for the 'Delivery to' (Select) field in DocType 'Shipment' +#. Label of the delivery_company (Link) field in DocType 'Shipment' +#. Label of the company (Link) field in DocType 'Stock Closing Balance' +#. Label of the company (Link) field in DocType 'Stock Closing Entry' +#. Label of the company (Link) field in DocType 'Stock Entry' +#. Label of the company (Link) field in DocType 'Stock Ledger Entry' +#. Label of the company (Link) field in DocType 'Stock Reconciliation' +#. Label of the company (Link) field in DocType 'Stock Reservation Entry' +#. Label of the company (Link) field in DocType 'Warehouse' +#. Label of the company (Link) field in DocType 'Subcontracting Inward Order' +#. Label of the company (Link) field in DocType 'Subcontracting Order' +#. Label of the company (Link) field in DocType 'Subcontracting Receipt' +#. Label of the company (Link) field in DocType 'Issue' +#. Label of the company (Link) field in DocType 'Warranty Claim' +#. Label of a Workspace Sidebar Item +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:81 +#: banking/src/pages/BankStatementImporter.tsx:84 +#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.js:8 +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account_tree.js:12 +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:9 +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +#: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:289 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/ledger_health_monitor_company/ledger_health_monitor_company.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/party_account/party_account.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/doctype/tax_withholding_account/tax_withholding_account.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:24 +#: erpnext/accounts/report/account_balance/account_balance.js:8 +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:8 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:8 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:10 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:8 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:8 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:8 +#: erpnext/accounts/report/balance_sheet/balance_sheet.html:128 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:8 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js:7 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:43 +#: erpnext/accounts/report/cash_flow/cash_flow.html:128 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.js:8 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:8 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:8 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:8 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:50 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:8 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:7 +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:8 +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:9 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:8 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:192 +#: erpnext/accounts/report/general_ledger/general_ledger.js:8 +#: erpnext/accounts/report/general_ledger/general_ledger.py:59 +#: erpnext/accounts/report/gross_profit/gross_profit.js:8 +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:8 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:40 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:230 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:28 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:277 +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:8 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:8 +#: erpnext/accounts/report/pos_register/pos_register.js:8 +#: erpnext/accounts/report/pos_register/pos_register.py:116 +#: erpnext/accounts/report/pos_register/pos_register.py:239 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:128 +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:8 +#: erpnext/accounts/report/purchase_register/purchase_register.js:33 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js:7 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:22 +#: erpnext/accounts/report/sales_register/sales_register.js:33 +#: erpnext/accounts/report/share_ledger/share_ledger.py:58 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:8 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:8 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:8 +#: erpnext/accounts/report/trial_balance/trial_balance.html:133 +#: erpnext/accounts/report/trial_balance/trial_balance.js:8 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:8 +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.js:8 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:8 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:464 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:547 +#: erpnext/buying/doctype/customer_number_at_supplier/customer_number_at_supplier.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:8 +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:134 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.js:8 +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:49 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:8 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:316 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:8 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:268 +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.js:7 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:8 +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/crm/report/lead_details/lead_details.js:8 +#: erpnext/crm/report/lead_details/lead_details.py:52 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:8 +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:58 +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:51 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:133 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:52 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/workstation_operating_component_account/workstation_operating_component_account.json +#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:2 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:7 +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:8 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:7 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:8 +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:7 +#: erpnext/manufacturing/report/production_analytics/production_analytics.js:8 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:8 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:7 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:7 +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/report/project_summary/project_summary.js:8 +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:45 +#: erpnext/public/js/financial_statements.js:381 +#: erpnext/public/js/purchase_trends_filters.js:8 +#: erpnext/public/js/sales_trends_filters.js:51 +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json +#: erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.json +#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js:27 +#: erpnext/regional/report/irs_1099/irs_1099.js:8 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.js:8 +#: erpnext/regional/report/vat_audit_report/vat_audit_report.js:8 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json +#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/sales_funnel/sales_funnel.js:36 +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:8 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:115 +#: erpnext/selling/report/lost_quotations/lost_quotations.js:8 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:8 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:47 +#: erpnext/selling/report/sales_analytics/sales_analytics.js:69 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.js:8 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:354 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:8 +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:8 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:8 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:33 +#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:8 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:33 +#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:8 +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.js:18 +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/company/company_tree.js:10 +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/department/department_tree.js:10 +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee/employee_tree.js:8 +#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:188 +#: erpnext/setup/install.py:197 erpnext/setup/workspace/home/home.json +#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8 +#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/item/item.js:929 +#: erpnext/stock/doctype/item_default/item_default.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/doctype/warehouse/warehouse_tree.js:11 +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:12 +#: erpnext/stock/report/available_batch_report/available_batch_report.js:8 +#: erpnext/stock/report/available_serial_no/available_serial_no.js:8 +#: erpnext/stock/report/available_serial_no/available_serial_no.py:203 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:8 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.js:7 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:8 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:8 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.js:7 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:145 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.js:7 +#: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 +#: erpnext/stock/report/item_where_used/item_where_used.js:15 +#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 +#: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:114 +#: erpnext/stock/report/reserved_stock/reserved_stock.js:8 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:191 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:9 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:75 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:41 +#: erpnext/stock/report/stock_ageing/stock_ageing.js:8 +#: erpnext/stock/report/stock_analytics/stock_analytics.js:41 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:7 +#: erpnext/stock/report/stock_balance/stock_balance.js:8 +#: erpnext/stock/report/stock_balance/stock_balance.py:580 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:8 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:441 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8 +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8 +#: erpnext/stock/report/total_stock_summary/total_stock_summary.js:17 +#: erpnext/stock/report/total_stock_summary/total_stock_summary.py:29 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:8 +#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.js:8 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/support/report/issue_analytics/issue_analytics.js:8 +#: erpnext/support/report/issue_summary/issue_summary.js:8 +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/organization.json +msgid "Company" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:36 +msgid "Company Abbreviation" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:101 +msgid "Company Abbreviation (requires ERPNext to be installed)" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:174 +msgid "Company Abbreviation cannot have more than 5 characters" +msgstr "" + +#. Label of the account (Link) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Company Account" +msgstr "" + +#: erpnext/accounts/doctype/bank_account/bank_account.py:70 +msgid "Company Account is mandatory" +msgstr "" + +#. Label of the company_address (Link) field in DocType 'Dunning' +#. Label of the company_address_display (Text Editor) field in DocType 'POS +#. Invoice' +#. Label of the company_address (Link) field in DocType 'POS Profile' +#. Label of the company_address_display (Text Editor) field in DocType 'Sales +#. Invoice' +#. Label of the company_address_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the company_address_display (Text Editor) field in DocType +#. 'Quotation' +#. Label of the company_address_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the company_address_display (Text Editor) field in DocType 'Sales +#. Order' +#. Label of the col_break46 (Section Break) field in DocType 'Sales Order' +#. Label of the company_address_display (Text Editor) field in DocType +#. 'Delivery Note' +#. Label of the company_address_section (Section Break) field in DocType +#. 'Delivery Note' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Company Address" +msgstr "" + +#. Label of the company_address_display (Text Editor) field in DocType +#. 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "Company Address Display" +msgstr "" + +#. Label of the company_address (Link) field in DocType 'POS Invoice' +#. Label of the company_address (Link) field in DocType 'Sales Invoice' +#. Label of the company_address (Link) field in DocType 'Quotation' +#. Label of the company_address (Link) field in DocType 'Sales Order' +#. Label of the company_address (Link) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Company Address Name" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1705 +msgid "Company Address is missing. You don't have permission to create an Address. Please contact your System Manager." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1693 +msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager." +msgstr "" + +#. Label of the bank_account (Link) field in DocType 'Payment Entry' +#. Label of the company_bank_account (Link) field in DocType 'Payment Order' +#. Label of the default_bank_account (Link) field in DocType 'Supplier' +#. Label of the default_bank_account (Link) field in DocType 'Customer' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Company Bank Account" +msgstr "" + +#. Label of the company_billing_address_section (Section Break) field in +#. DocType 'Purchase Invoice' +#. Label of the billing_address (Link) field in DocType 'Purchase Order' +#. Label of the company_billing_address_section (Section Break) field in +#. DocType 'Purchase Order' +#. Label of the billing_address (Link) field in DocType 'Request for Quotation' +#. Label of the company_billing_address_section (Section Break) field in +#. DocType 'Supplier Quotation' +#. Label of the billing_address (Link) field in DocType 'Supplier Quotation' +#. Label of the billing_address_section (Section Break) field in DocType +#. 'Purchase Receipt' +#. Label of the billing_address (Link) field in DocType 'Subcontracting Order' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Company Billing Address" +msgstr "" + +#. Label of the company_contact_person (Link) field in DocType 'POS Invoice' +#. Label of the company_contact_person (Link) field in DocType 'Sales Invoice' +#. Label of the company_contact_person (Link) field in DocType 'Quotation' +#. Label of the company_contact_person (Link) field in DocType 'Sales Order' +#. Label of the company_contact_person (Link) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Company Contact Person" +msgstr "" + +#. Label of the company_description (Text Editor) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Company Description" +msgstr "" + +#. Label of the company_details_section (Section Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Company Details" +msgstr "" + +#. Option for the 'Preferred Contact Email' (Select) field in DocType +#. 'Employee' +#. Label of the company_email (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Company Email" +msgstr "" + +#. Label of the company_field (Data) field in DocType 'Transaction Deletion +#. Record To Delete' +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Company Field" +msgstr "" + +#. Label of the company_logo (Attach Image) field in DocType 'Company' +#: erpnext/public/js/print.js:80 erpnext/setup/doctype/company/company.json +msgid "Company Logo" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:77 +msgid "Company Name cannot be Company" +msgstr "" + +#: erpnext/accounts/custom/address.py:36 +msgid "Company Not Linked" +msgstr "" + +#. Label of the shipping_address (Link) field in DocType 'Request for +#. Quotation' +#. Label of the shipping_address (Link) field in DocType 'Subcontracting Order' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Company Shipping Address" +msgstr "" + +#. Label of the company_tax_id (Data) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Company Tax ID" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +msgid "Company and Posting Date is mandatory" +msgstr "" + +#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py:43 +msgid "Company and account filters not set!" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:169 +msgid "Company currencies of both the companies should match for Inter Company Transactions." +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:380 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:851 +msgid "Company field is required" +msgstr "" + +#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py:45 +msgid "Company filter not set!" +msgstr "" + +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:77 +msgid "Company is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/bank_account/bank_account.py:67 +msgid "Company is mandatory for company account" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:481 +msgid "Company is mandatory for generating an invoice. Please set a default company in Global Defaults." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:85 +msgid "Company is required" +msgstr "" + +#. Description of the 'Company Field' (Data) field in DocType 'Transaction +#. Deletion Record To Delete' +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Company link field name used for filtering (optional - leave empty to delete all records)" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:239 +msgid "Company name not same" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:330 +msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:164 +msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" +msgstr "" + +#. Description of the 'Registration Details' (Code) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Company registration numbers for your reference. Tax numbers etc." +msgstr "" + +#. Description of the 'Represents Company' (Link) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Company which internal customer represents" +msgstr "" + +#. Description of the 'Represents Company' (Link) field in DocType 'Delivery +#. Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Company which internal customer represents." +msgstr "" + +#. Description of the 'Represents Company' (Link) field in DocType 'Purchase +#. Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Company which internal supplier represents" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:74 +msgid "Company {0} added multiple times" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:519 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308 +msgid "Company {0} does not exist" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 +msgid "Company {0} is added more than once" +msgstr "" + +#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.py:33 +msgid "Company {0} is not in South Africa." +msgstr "" + +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {} does not match with POS Profile Company {}" +msgstr "" + +#. Name of a DocType +#. Label of the competitor (Link) field in DocType 'Competitor Detail' +#: erpnext/crm/doctype/competitor/competitor.json +#: erpnext/crm/doctype/competitor_detail/competitor_detail.json +#: erpnext/selling/report/lost_quotations/lost_quotations.py:24 +msgid "Competitor" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/competitor_detail/competitor_detail.json +msgid "Competitor Detail" +msgstr "" + +#. Label of the competitor_name (Data) field in DocType 'Competitor' +#: erpnext/crm/doctype/competitor/competitor.json +msgid "Competitor Name" +msgstr "" + +#. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' +#. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Competitors" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:663 +#: erpnext/manufacturing/doctype/workstation/workstation.js:151 +msgid "Complete Job" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:917 +msgid "Complete Match" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:44 +msgid "Complete Order" +msgstr "" + +#. Label of the completed_by (Link) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Completed By" +msgstr "" + +#. Label of the completed_on (Date) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Completed On" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:186 +msgid "Completed On cannot be greater than Today" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:76 +msgid "Completed Operation" +msgstr "" + +#. Label of a chart in the Projects Workspace +#: erpnext/projects/workspace/projects/projects.json +msgid "Completed Projects" +msgstr "" + +#. Label of the completed_qty (Float) field in DocType 'Job Card Operation' +#. Label of the completed_qty (Float) field in DocType 'Job Card Time Log' +#. Label of the completed_qty (Float) field in DocType 'Work Order Operation' +#. Label of the ordered_qty (Float) field in DocType 'Material Request Item' +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Completed Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/operations.py:251 +msgid "Completed Qty cannot be greater than 'Qty to Manufacture'" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:258 +#: erpnext/manufacturing/doctype/job_card/job_card.js:392 +#: erpnext/manufacturing/doctype/workstation/workstation.js:296 +msgid "Completed Quantity" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:136 +#: erpnext/public/js/templates/crm_activities.html:64 +msgid "Completed Tasks" +msgstr "" + +#. Label of the completed_time (Data) field in DocType 'Job Card Operation' +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +msgid "Completed Time" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/completed_work_orders/completed_work_orders.json +msgid "Completed Work Orders" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:73 +msgid "Completion" +msgstr "" + +#. Label of the completion_by (Date) field in DocType 'Quality Action +#. Resolution' +#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json +msgid "Completion By" +msgstr "" + +#. Label of the completion_date (Date) field in DocType 'Asset Maintenance Log' +#. Label of the completion_date (Datetime) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:49 +msgid "Completion Date" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:82 +msgid "Completion Date can not be before Failure Date. Please adjust the dates accordingly." +msgstr "" + +#. Label of the completion_status (Select) field in DocType 'Maintenance +#. Schedule Detail' +#. Label of the completion_status (Select) field in DocType 'Maintenance Visit' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Completion Status" +msgstr "" + +#. Label of the accounts (Table) field in DocType 'Workstation Operating +#. Component' +#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json +msgid "Component Expense Account" +msgstr "" + +#. Label of the component_name (Data) field in DocType 'Workstation Operating +#. Component' +#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json +msgid "Component Name" +msgstr "" + +#. Label of the items (Table) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Components" +msgstr "" + +#. Option for the 'Asset Type' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Composite Asset" +msgstr "" + +#. Option for the 'Asset Type' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Composite Component" +msgstr "" + +#. Label of the comprehensive_insurance (Data) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Comprehensive Insurance" +msgstr "" + +#. Option for the 'Call Receiving Device' (Select) field in DocType 'Voice Call +#. Settings' +#: erpnext/setup/setup_wizard/data/industry_type.txt:13 +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Computer" +msgstr "" + +#. Label of the condition (Code) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Conditional Rule" +msgstr "" + +#. Label of the conditional_rule_examples_section (Section Break) field in +#. DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Conditional Rule Examples" +msgstr "" + +#. Description of the 'Mixed Conditions' (Check) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Conditions will be applied on all the selected items combined. " +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:395 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:413 +msgid "Configure Accounts" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:578 +msgid "Configure Accounts for Bank Entry" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankPicker.tsx:69 +msgid "Configure Bank Accounts" +msgstr "" + +#. Label of an action in the Onboarding Step 'Review Chart of Accounts' +#: erpnext/accounts/onboarding_step/chart_of_accounts/chart_of_accounts.json +msgid "Configure Chart of Accounts" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:56 +msgid "Configure Product Assembly" +msgstr "" + +#. Label of the configure (Button) field in DocType 'Buying Settings' +#. Label of the configure (Button) field in DocType 'Selling Settings' +#. Label of the configure (Button) field in DocType 'Stock Settings' +#. Label of the configure_series (Button) field in DocType 'Stock Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Configure Series" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:21 +#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:27 +msgid "Configure match filters for vouchers" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:202 +msgid "Configure rules to save time when reconciling transactions." +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:44 +msgid "Configure settings for the banking module" +msgstr "" + +#. Description of the 'Action if same rate is not maintained' (Select) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Configure the action to stop the transaction or just warn if the same rate is not maintained." +msgstr "" + +#: erpnext/buying/doctype/buying_settings/buying_settings.js:69 +msgid "Configure the default Price List when creating a new Purchase transaction. Item prices will be fetched from this Price List." +msgstr "" + +#. Label of the confirm_before_resetting_posting_date (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Confirm before resetting posting date" +msgstr "" + +#. Label of the final_confirmation_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Confirmation Date" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:280 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:298 +msgid "Conflicting Transactions" +msgstr "" + +#. Label of the connection_tab (Tab Break) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Connection" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:176 +msgid "Consider Accounting Dimensions" +msgstr "" + +#. Label of the consider_minimum_order_qty (Check) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Consider Minimum Order Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1090 +msgid "Consider Process Loss" +msgstr "" + +#. Label of the skip_available_sub_assembly_item (Check) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Consider Projected Qty in Calculation" +msgstr "" + +#. Label of the ignore_existing_ordered_qty (Check) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Consider Projected Qty in Calculation (RM)" +msgstr "" + +#. Label of the consider_rejected_warehouses (Check) field in DocType 'Pick +#. List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Consider Rejected Warehouses" +msgstr "" + +#. Label of the category (Select) field in DocType 'Purchase Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Consider Tax or Charge for" +msgstr "" + +#. Label of the apply_tds (Check) field in DocType 'Payment Entry' +#. Label of the apply_tds (Check) field in DocType 'Purchase Invoice' +#. Label of the apply_tds (Check) field in DocType 'Purchase Invoice Item' +#. Label of the apply_tds (Check) field in DocType 'Sales Invoice' +#. Label of the apply_tds (Check) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Consider for Tax Withholding" +msgstr "" + +#. Label of the apply_tds (Check) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Consider for Tax Withholding " +msgstr "" + +#. Label of the included_in_paid_amount (Check) field in DocType 'Advance Taxes +#. and Charges' +#. Label of the included_in_paid_amount (Check) field in DocType 'Purchase +#. Taxes and Charges' +#. Label of the included_in_paid_amount (Check) field in DocType 'Sales Taxes +#. and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Considered In Paid Amount" +msgstr "" + +#. Label of the combine_items (Check) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Consolidate Sales Order Items" +msgstr "" + +#. Label of the combine_sub_items (Check) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Consolidate Sub Assembly Items" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +msgid "Consolidated" +msgstr "" + +#. Label of the consolidated_credit_note (Link) field in DocType 'POS Invoice +#. Merge Log' +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +msgid "Consolidated Credit Note" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +msgid "Consolidated Financial Statement" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Consolidated Report" +msgstr "" + +#. Label of the consolidated_invoice (Link) field in DocType 'POS Invoice' +#. Label of the consolidated_invoice (Link) field in DocType 'POS Invoice Merge +#. Log' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:277 +msgid "Consolidated Sales Invoice" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.json +msgid "Consolidated Trial Balance" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:71 +msgid "Consolidated Trial Balance can be generated for Companies having same root Company." +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:167 +msgid "Consolidated Trial balance could not be generated as Exchange Rate from {0} to {1} is not available for {2}." +msgstr "" + +#. Option for the 'Lead Type' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/setup/setup_wizard/data/designation.txt:8 +msgid "Consultant" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:14 +msgid "Consulting" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:64 +msgid "Consumable" +msgstr "" + +#: erpnext/patches/v16_0/make_workstation_operating_components.py:48 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:315 +msgid "Consumables" +msgstr "" + +#. Label of the consume_components_section (Section Break) field in DocType +#. 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Consume Components" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Serial No' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:60 +msgid "Consumed" +msgstr "" + +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:62 +msgid "Consumed Amount" +msgstr "" + +#. Label of the asset_items_total (Currency) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Consumed Asset Total Value" +msgstr "" + +#. Label of the section_break_26 (Section Break) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Consumed Assets" +msgstr "" + +#. Label of the supplied_items (Table) field in DocType 'Purchase Receipt' +#. Label of the supplied_items (Table) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Consumed Items" +msgstr "" + +#. Label of the consumed_items_cost (Currency) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Consumed Items Cost" +msgstr "" + +#. Label of the consumed_qty (Float) field in DocType 'Job Card Item' +#. Label of the consumed_qty (Float) field in DocType 'Work Order Item' +#. Label of the consumed_qty (Float) field in DocType 'Stock Reservation Entry' +#. Label of the consumed_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the consumed_qty (Float) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the consumed_qty (Float) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:145 +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:59 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:146 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:61 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Consumed Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 +msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgstr "" + +#. Label of the consumed_quantity (Data) field in DocType 'Asset Repair +#. Consumed Item' +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +msgid "Consumed Quantity" +msgstr "" + +#. Label of the section_break_16 (Section Break) field in DocType 'Asset +#. Capitalization' +#. Label of the stock_consumption_details_section (Section Break) field in +#. DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Consumed Stock Items" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:283 +msgid "Consumed Stock Items, Consumed Asset Items or Consumed Service Items is mandatory for Capitalization" +msgstr "" + +#. Label of the stock_items_total (Currency) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Consumed Stock Total Value" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136 +msgid "Consumed quantity of item {0} exceeds transferred quantity." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:15 +msgid "Consumer Products" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:198 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:101 +msgid "Consumption Rate" +msgstr "" + +#. Label of the contact_desc (HTML) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Contact Desc" +msgstr "" + +#. Label of the contact_html (HTML) field in DocType 'Bank' +#. Label of the contact_html (HTML) field in DocType 'Bank Account' +#. Label of the contact_html (HTML) field in DocType 'Shareholder' +#. Label of the contact_html (HTML) field in DocType 'Supplier' +#. Label of the contact_html (HTML) field in DocType 'Lead' +#. Label of the contact_html (HTML) field in DocType 'Opportunity' +#. Label of the contact_html (HTML) field in DocType 'Prospect' +#. Label of the contact_html (HTML) field in DocType 'Customer' +#. Label of the contact_html (HTML) field in DocType 'Sales Partner' +#. Label of the contact_html (HTML) field in DocType 'Manufacturer' +#. Label of the contact_html (HTML) field in DocType 'Warehouse' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Contact HTML" +msgstr "" + +#. Label of the contact_info_tab (Section Break) field in DocType 'Lead' +#. Label of the contact_info (Section Break) field in DocType 'Maintenance +#. Schedule' +#. Label of the contact_info_section (Section Break) field in DocType +#. 'Maintenance Visit' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Contact Info" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Delivery +#. Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Contact Information" +msgstr "" + +#. Label of the contact_list (Code) field in DocType 'Shareholder' +#: erpnext/accounts/doctype/shareholder/shareholder.json +msgid "Contact List" +msgstr "" + +#. Label of the contact_mobile (Data) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Contact Mobile" +msgstr "" + +#. Label of the contact_mobile (Small Text) field in DocType 'Purchase Order' +#. Label of the contact_mobile (Small Text) field in DocType 'Subcontracting +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Contact Mobile No" +msgstr "" + +#. Label of the contact_display (Small Text) field in DocType 'Purchase Order' +#. Label of the contact (Link) field in DocType 'Delivery Stop' +#. Label of the contact_display (Small Text) field in DocType 'Subcontracting +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Contact Name" +msgstr "" + +#. Label of the contact_no (Data) field in DocType 'Sales Team' +#: erpnext/selling/doctype/sales_team/sales_team.json +msgid "Contact No." +msgstr "" + +#. Label of the contact_person (Link) field in DocType 'Dunning' +#. Label of the contact_person (Link) field in DocType 'POS Invoice' +#. Label of the contact_person (Link) field in DocType 'Purchase Invoice' +#. Label of the contact_person (Link) field in DocType 'Sales Invoice' +#. Label of the contact_person (Link) field in DocType 'Supplier Quotation' +#. Label of the contact_person (Link) field in DocType 'Opportunity' +#. Label of the contact_person (Link) field in DocType 'Prospect Opportunity' +#. Label of the contact_person (Link) field in DocType 'Maintenance Schedule' +#. Label of the contact_person (Link) field in DocType 'Maintenance Visit' +#. Label of the contact_person (Link) field in DocType 'Installation Note' +#. Label of the contact_person (Link) field in DocType 'Quotation' +#. Label of the contact_person (Link) field in DocType 'Sales Order' +#. Label of the contact_person (Link) field in DocType 'Delivery Note' +#. Label of the contact_person (Link) field in DocType 'Purchase Receipt' +#. Label of the contact_person (Link) field in DocType 'Subcontracting Receipt' +#. Label of the contact_person (Link) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Contact Person" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:220 +msgid "Contact Person does not belong to the {0}" +msgstr "" + +#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule +#. Description Conditions' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:200 +#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json +msgid "Contains" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Contra Entry" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/workspace_sidebar/crm.json +msgid "Contract" +msgstr "" + +#. Label of the sb_contract (Section Break) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Contract Details" +msgstr "" + +#. Label of the contract_end_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Contract End Date" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json +msgid "Contract Fulfilment Checklist" +msgstr "" + +#. Label of the sb_terms (Section Break) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Contract Period" +msgstr "" + +#. Label of the contract_template (Link) field in DocType 'Contract' +#. Name of a DocType +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "Contract Template" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.json +msgid "Contract Template Fulfilment Terms" +msgstr "" + +#. Label of the contract_template_help (HTML) field in DocType 'Contract +#. Template' +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "Contract Template Help" +msgstr "" + +#. Label of the contract_terms (Text Editor) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Contract Terms" +msgstr "" + +#. Label of the contract_terms (Text Editor) field in DocType 'Contract +#. Template' +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "Contract Terms and Conditions" +msgstr "" + +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:75 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:131 +msgid "Contribution %" +msgstr "" + +#. Label of the allocated_percentage (Float) field in DocType 'Sales Team' +#: erpnext/selling/doctype/sales_team/sales_team.json +msgid "Contribution (%)" +msgstr "" + +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:87 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:139 +msgid "Contribution Amount" +msgstr "" + +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:133 +msgid "Contribution Qty" +msgstr "" + +#. Label of the allocated_amount (Currency) field in DocType 'Sales Team' +#: erpnext/selling/doctype/sales_team/sales_team.json +msgid "Contribution to Net Total" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Control Action" +msgstr "" + +#. Label of the control_action_for_cumulative_expense_section (Section Break) +#. field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Control Action for Cumulative Expense" +msgstr "" + +#. Label of the control_historical_stock_transactions_section (Section Break) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Control Historical Stock Transactions" +msgstr "" + +#. Description of the 'Based On' (Select) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry." +msgstr "" + +#. Description of the 'Tax Category' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Controls which tax template is auto-applied when this customer is selected on a transaction." +msgstr "" + +#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program' +#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt +#. Item Supplied' +#. Label of the conversion_factor (Float) field in DocType 'BOM Creator Item' +#. Label of the conversion_factor (Float) field in DocType 'BOM Item' +#. Label of the conversion_factor (Float) field in DocType 'BOM Secondary Item' +#. Label of the conversion_factor (Float) field in DocType 'Material Request +#. Plan Item' +#. Label of the conversion_factor (Float) field in DocType 'Delivery Schedule +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Packed Item' +#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Putaway Rule' +#. Label of the conversion_factor (Float) field in DocType 'Stock Entry Detail' +#. Label of the conversion_factor (Float) field in DocType 'UOM Conversion +#. Detail' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting BOM' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting +#. Inward Order Item' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting +#. Order Item' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting +#. Order Supplied Item' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting +#. Receipt Item' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting +#. Receipt Supplied Item' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/public/js/utils.js:898 +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Conversion Factor" +msgstr "" + +#. Label of the conversion_rate (Float) field in DocType 'Dunning' +#. Label of the conversion_rate (Float) field in DocType 'BOM' +#. Label of the conversion_rate (Float) field in DocType 'BOM Creator' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:93 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Conversion Rate" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:461 +msgid "Conversion factor for default Unit of Measure must be 1 in row {0}" +msgstr "" + +#: erpnext/controllers/stock_controller.py:77 +msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1386 +msgid "Conversion rate cannot be 0" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1393 +msgid "Conversion rate is 1.00, but document currency is different from company currency" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1389 +msgid "Conversion rate must be 1.00 if document currency is same as company currency" +msgstr "" + +#. Label of the clean_description_html (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Convert Item description to clean HTML in transactions" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:124 +#: erpnext/accounts/doctype/cost_center/cost_center.js:123 +msgid "Convert to Group" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.js:53 +msgctxt "Warehouse" +msgid "Convert to Group" +msgstr "" + +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.js:10 +msgid "Convert to Item Based Reposting" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.js:52 +msgctxt "Warehouse" +msgid "Convert to Ledger" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:96 +#: erpnext/accounts/doctype/cost_center/cost_center.js:121 +msgid "Convert to Non-Group" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Lead' +#. Option for the 'Status' (Select) field in DocType 'Opportunity' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/lead_details/lead_details.js:40 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:73 +msgid "Converted" +msgstr "" + +#. Label of the copied_from (Data) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Copied From" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:83 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:76 +msgid "Copied to clipboard" +msgstr "" + +#. Label of the copy_attachments_to_transaction (Check) field in DocType 'Terms +#. and Conditions' +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +msgid "Copy Attachments to Transaction" +msgstr "" + +#. Label of the copy_fields_to_variant (Section Break) field in DocType 'Item +#. Variant Settings' +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Copy Fields to Variant" +msgstr "" + +#. Option for the 'Corrective/Preventive' (Select) field in DocType 'Quality +#. Action' +#: erpnext/quality_management/doctype/quality_action/quality_action.json +msgid "Corrective" +msgstr "" + +#. Label of the corrective_action (Text Editor) field in DocType 'Non +#. Conformance' +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +msgid "Corrective Action" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:446 +msgid "Corrective Job Card" +msgstr "" + +#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job +#. Card' +#: erpnext/manufacturing/doctype/job_card/job_card.js:455 +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Corrective Operation" +msgstr "" + +#. Label of the corrective_operation_cost (Currency) field in DocType 'Work +#. Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Corrective Operation Cost" +msgstr "" + +#. Label of the corrective_preventive (Select) field in DocType 'Quality +#. Action' +#: erpnext/quality_management/doctype/quality_action/quality_action.json +msgid "Corrective/Preventive" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:16 +msgid "Cosmetics" +msgstr "" + +#. Label of the cost (Currency) field in DocType 'Subscription Plan' +#. Label of the cost (Currency) field in DocType 'BOM Secondary Item' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +msgid "Cost" +msgstr "" + +#. Label of the cost_allocation (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Cost Allocation" +msgstr "" + +#. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +msgid "Cost Allocation %" +msgstr "" + +#. Label of the cost_allocation__process_loss_section (Section Break) field in +#. DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Cost Allocation / Process Loss" +msgstr "" + +#. Label of the cost_center (Link) field in DocType 'Account Closing Balance' +#. Label of the cost_center (Link) field in DocType 'Advance Taxes and Charges' +#. Option for the 'Budget Against' (Select) field in DocType 'Budget' +#. Label of the cost_center (Link) field in DocType 'Budget' +#. Name of a DocType +#. Label of the cost_center (Link) field in DocType 'Cost Center Allocation +#. Percentage' +#. Label of the cost_center (Link) field in DocType 'Dunning' +#. Label of the cost_center (Link) field in DocType 'Dunning Type' +#. Label of the cost_center (Link) field in DocType 'GL Entry' +#. Label of the cost_center (Link) field in DocType 'Journal Entry Account' +#. Label of the cost_center (Link) field in DocType 'Journal Entry Template +#. Account' +#. Label of the cost_center (Link) field in DocType 'Loyalty Program' +#. Label of the cost_center (Link) field in DocType 'Opening Invoice Creation +#. Tool' +#. Label of the cost_center (Link) field in DocType 'Opening Invoice Creation +#. Tool Item' +#. Label of the cost_center (Link) field in DocType 'Payment Entry' +#. Label of the cost_center (Link) field in DocType 'Payment Entry Deduction' +#. Label of the cost_center (Link) field in DocType 'Payment Ledger Entry' +#. Label of the cost_center (Link) field in DocType 'Payment Reconciliation' +#. Label of the cost_center (Link) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the cost_center (Link) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the cost_center (Link) field in DocType 'Payment Request' +#. Label of the cost_center (Link) field in DocType 'POS Invoice' +#. Label of the cost_center (Link) field in DocType 'POS Invoice Item' +#. Label of the cost_center (Link) field in DocType 'POS Profile' +#. Label of the cost_center (Link) field in DocType 'Process Payment +#. Reconciliation' +#. Label of the cost_center (Table MultiSelect) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the cost_center_name (Link) field in DocType 'PSOA Cost Center' +#. Label of the cost_center (Link) field in DocType 'Purchase Invoice' +#. Label of the cost_center (Link) field in DocType 'Purchase Invoice Item' +#. Label of the cost_center (Link) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the cost_center (Link) field in DocType 'Sales Invoice' +#. Label of the cost_center (Link) field in DocType 'Sales Invoice Item' +#. Label of the cost_center (Link) field in DocType 'Sales Taxes and Charges' +#. Label of the cost_center (Link) field in DocType 'Shipping Rule' +#. Label of the cost_center (Link) field in DocType 'Subscription' +#. Label of the cost_center (Link) field in DocType 'Subscription Plan' +#. Label of the cost_center (Link) field in DocType 'Asset' +#. Label of the cost_center (Link) field in DocType 'Asset Capitalization' +#. Label of the cost_center (Link) field in DocType 'Asset Capitalization Asset +#. Item' +#. Label of the cost_center (Link) field in DocType 'Asset Capitalization +#. Service Item' +#. Label of the cost_center (Link) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the cost_center (Link) field in DocType 'Asset Repair' +#. Label of the cost_center (Link) field in DocType 'Asset Value Adjustment' +#. Label of the cost_center (Link) field in DocType 'Purchase Order' +#. Label of the cost_center (Link) field in DocType 'Purchase Order Item' +#. Label of the cost_center (Link) field in DocType 'Request for Quotation +#. Item' +#. Label of the cost_center (Link) field in DocType 'Supplier Quotation' +#. Label of the cost_center (Link) field in DocType 'Supplier Quotation Item' +#. Label of the cost_center (Link) field in DocType 'Sales Order' +#. Label of the cost_center (Link) field in DocType 'Sales Order Item' +#. Label of the cost_center (Link) field in DocType 'Delivery Note' +#. Label of the cost_center (Link) field in DocType 'Delivery Note Item' +#. Label of the cost_center (Link) field in DocType 'Landed Cost Item' +#. Label of the cost_center (Link) field in DocType 'Material Request Item' +#. Label of the cost_center (Link) field in DocType 'Purchase Receipt' +#. Label of the cost_center (Link) field in DocType 'Purchase Receipt Item' +#. Label of the cost_center (Link) field in DocType 'Stock Entry' +#. Label of the cost_center (Link) field in DocType 'Stock Entry Detail' +#. Label of the cost_center (Link) field in DocType 'Stock Reconciliation' +#. Label of the cost_center (Link) field in DocType 'Subcontracting Order' +#. Label of the cost_center (Link) field in DocType 'Subcontracting Order Item' +#. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt' +#. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt +#. Item' +#. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#. Label of a Workspace Sidebar Item +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:591 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:650 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1179 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1223 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:593 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:673 +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.json +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:28 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:47 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:30 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:47 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:42 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 +#: erpnext/accounts/report/general_ledger/general_ledger.js:154 +#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/gross_profit/gross_profit.js:68 +#: erpnext/accounts/report/gross_profit/gross_profit.py:395 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 +#: erpnext/accounts/report/purchase_register/purchase_register.js:46 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:30 +#: erpnext/accounts/report/sales_register/sales_register.js:52 +#: erpnext/accounts/report/sales_register/sales_register.py:252 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:79 +#: erpnext/accounts/report/trial_balance/trial_balance.js:49 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:29 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:525 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/public/js/financial_statements.js:475 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/workspace_sidebar/budget.json +msgid "Cost Center" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/budget.json +msgid "Cost Center Allocation" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.json +msgid "Cost Center Allocation Percentage" +msgstr "" + +#. Label of the allocation_percentages (Table) field in DocType 'Cost Center +#. Allocation' +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json +msgid "Cost Center Allocation Percentages" +msgstr "" + +#. Label of the cost_center_name (Data) field in DocType 'Cost Center' +#: erpnext/accounts/doctype/cost_center/cost_center.json +msgid "Cost Center Name" +msgstr "" + +#. Label of the cost_center_number (Data) field in DocType 'Cost Center' +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:38 +msgid "Cost Center Number" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Cost Center and Budgeting" +msgstr "" + +#: erpnext/public/js/utils/sales_common.js:540 +msgid "Cost Center for Item rows has been updated to {0}" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:75 +msgid "Cost Center is a part of Cost Center Allocation, hence cannot be converted to a group" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1220 +msgid "Cost Center is required" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 +msgid "Cost Center is required in row {0} in Taxes table for type {1}" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:72 +msgid "Cost Center with Allocation records can not be converted to a group" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:78 +msgid "Cost Center with existing transactions can not be converted to group" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:63 +msgid "Cost Center with existing transactions can not be converted to ledger" +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:152 +msgid "Cost Center {0} cannot be used for allocation as it is used as main cost center in other allocation record." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:358 +msgid "Cost Center {} doesn't belong to Company {}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:365 +msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" + +#: erpnext/accounts/report/financial_statements.py:685 +msgid "Cost Center: {0} does not exist" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:129 +msgid "Cost Centers" +msgstr "" + +#. Label of the currency_detail (Section Break) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Cost Configuration" +msgstr "" + +#. Label of the cost_per_unit (Float) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Cost Per Unit" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:474 +msgid "Cost allocation between finished goods and secondary items should equal 100%" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:8 +msgid "Cost and Freight" +msgstr "" + +#. Description of the 'Buying Cost Center' (Link) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Cost center used for tracking purchase expenses for this item" +msgstr "" + +#. Description of the 'Selling Cost Center' (Link) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Cost center used for tracking sales revenue for this item" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:42 +msgid "Cost of Delivered Items" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the cost_of_good_sold_section (Section Break) field in DocType +#. 'Item Default' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148 +#: erpnext/accounts/report/account_balance/account_balance.js:43 +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Cost of Goods Sold" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:41 +msgid "Cost of Issued Items" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.json +msgid "Cost of Poor Quality Report" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40 +msgid "Cost of Purchased Items" +msgstr "" + +#: erpnext/config/projects.py:67 +msgid "Cost of various activities" +msgstr "" + +#. Label of the ctc (Currency) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Cost to Company (CTC)" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:9 +msgid "Cost, Insurance and Freight" +msgstr "" + +#. Label of the costing (Tab Break) field in DocType 'BOM' +#. Label of the currency_detail (Section Break) field in DocType 'BOM Creator' +#. Label of the costing_section (Section Break) field in DocType 'BOM +#. Operation' +#. Label of the costing_tab (Tab Break) field in DocType 'Project' +#. Label of the sb_costing (Section Break) field in DocType 'Task' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Costing" +msgstr "" + +#. Label of the costing_amount (Currency) field in DocType 'Timesheet Detail' +#. Label of the base_costing_amount (Currency) field in DocType 'Timesheet +#. Detail' +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Costing Amount" +msgstr "" + +#. Label of the costing_detail (Section Break) field in DocType 'BOM Creator' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Costing Details" +msgstr "" + +#. Label of the costing_rate (Currency) field in DocType 'Activity Cost' +#. Label of the costing_rate (Currency) field in DocType 'Timesheet Detail' +#. Label of the base_costing_rate (Currency) field in DocType 'Timesheet +#. Detail' +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Costing Rate" +msgstr "" + +#. Label of the project_details (Section Break) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Costing and Billing" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:140 +msgid "Costing and Billing fields has been updated" +msgstr "" + +#: erpnext/setup/demo.py:78 +msgid "Could Not Delete Demo Data" +msgstr "" + +#: erpnext/selling/doctype/quotation/mapper.py:265 +msgid "Could not auto create Customer due to the following missing mandatory field(s):" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/services/billing_status.py:52 +msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:972 +msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +msgid "Could not detect the Company for updating Bank Accounts" +msgstr "" + +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:128 +msgid "Could not find a suitable shift to match the difference: {0}" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 +#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 +msgid "Could not find path for " +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 +msgid "Could not re-extract the table." +msgstr "" + +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.py:123 +#: erpnext/accounts/report/financial_statements.py:241 +msgid "Could not retrieve information for {0}." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/CSVRawDataPreview.tsx:65 +msgid "Could not save the column mapping." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:80 +msgid "Could not save the table settings." +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:80 +msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +msgid "Could not solve weighted score function. Make sure the formula is valid." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/CSVRawDataPreview.tsx:88 +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:158 +msgid "Could not update the header row." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Coulomb" +msgstr "" + +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:419 +msgid "Country Code in File does not match with country code set up in the system" +msgstr "" + +#. Label of the country_of_origin (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Country of Origin" +msgstr "" + +#. Name of a DocType +#. Label of the coupon_code (Data) field in DocType 'Coupon Code' +#. Label of the coupon_code (Link) field in DocType 'POS Invoice' +#. Label of the coupon_code (Link) field in DocType 'Sales Invoice' +#. Label of the coupon_code (Link) field in DocType 'Quotation' +#. Label of the coupon_code (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Coupon Code" +msgstr "" + +#. Label of the coupon_code_based (Check) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Coupon Code Based" +msgstr "" + +#. Label of the description (Text Editor) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Coupon Description" +msgstr "" + +#. Label of the coupon_name (Data) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Coupon Name" +msgstr "" + +#. Label of the coupon_type (Select) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Coupon Type" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:63 +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:84 +#: erpnext/templates/form_grid/bank_reconciliation_grid.html:16 +msgid "Cr" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Asset Category' +#: erpnext/assets/onboarding_step/create_asset_category/create_asset_category.json +msgid "Create Asset Category" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Asset Item' +#: erpnext/assets/onboarding_step/create_asset_item/create_asset_item.json +msgid "Create Asset Item" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Asset Location' +#: erpnext/assets/onboarding_step/create_asset_location/create_asset_location.json +msgid "Create Asset Location" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:277 +msgid "Create Bank Entry against" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Bill of Materials' +#: erpnext/manufacturing/onboarding_step/create_bill_of_materials/create_bill_of_materials.json +#: erpnext/subcontracting/onboarding_step/create_bill_of_materials/create_bill_of_materials.json +msgid "Create Bill of Materials" +msgstr "" + +#. Label of the create_chart_of_accounts_based_on (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Create Chart Of Accounts Based On" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Customer' +#: erpnext/selling/onboarding_step/create_customer/create_customer.json +msgid "Create Customer" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Delivery Note' +#: erpnext/selling/onboarding_step/create_delivery_note/create_delivery_note.json +#: erpnext/stock/onboarding_step/create_delivery_note/create_delivery_note.json +msgid "Create Delivery Note" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:63 +msgid "Create Delivery Trip" +msgstr "" + +#: erpnext/utilities/activation.py:139 +msgid "Create Employee" +msgstr "" + +#: erpnext/utilities/activation.py:137 +msgid "Create Employee Records" +msgstr "" + +#: erpnext/utilities/activation.py:138 +msgid "Create Employee records." +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Existing Asset' +#: erpnext/assets/onboarding_step/create_existing_asset/create_existing_asset.json +msgid "Create Existing Asset" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Finished Goods' +#: erpnext/manufacturing/onboarding_step/create_finished_goods/create_finished_goods.json +msgid "Create Finished Good" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/manufacturing/onboarding_step/create_finished_goods/create_finished_goods.json +msgid "Create Finished Goods" +msgstr "" + +#. Label of the is_grouped_asset (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Create Grouped Asset" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:262 +msgid "Create Inter Company Journal Entry" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:55 +msgid "Create Invoices" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Item' +#: erpnext/buying/onboarding_step/create_item/create_item.json +#: erpnext/selling/onboarding_step/create_item/create_item.json +#: erpnext/stock/onboarding_step/create_item/create_item.json +msgid "Create Item" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:199 +msgid "Create Job Card" +msgstr "" + +#. Label of the create_job_card_based_on_batch_size (Check) field in DocType +#. 'Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Create Job Card based on Batch Size" +msgstr "" + +#: erpnext/accounts/doctype/payment_order/payment_order.js:39 +msgid "Create Journal Entries" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.js:18 +msgid "Create Journal Entry" +msgstr "" + +#: erpnext/utilities/activation.py:81 +msgid "Create Lead" +msgstr "" + +#: erpnext/utilities/activation.py:79 +msgid "Create Leads" +msgstr "" + +#. Label of the post_change_gl_entries (Check) field in DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "Create Ledger Entries for Change Amount" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:257 +#: erpnext/selling/doctype/customer/customer.js:289 +msgid "Create Link" +msgstr "" + +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.js:41 +msgid "Create MPS" +msgstr "" + +#. Label of the create_missing_party (Check) field in DocType 'Opening Invoice +#. Creation Tool' +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +msgid "Create Missing Party" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:196 +msgid "Create Multi-level BOM" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:122 +msgid "Create New Contact" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:128 +msgid "Create New Customer" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:134 +msgid "Create New Lead" +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 +msgid "Create New Version" +msgstr "" + +#: banking/src/components/common/LinkFieldCombobox.tsx:284 +msgid "Create New {0}" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Operations' +#: erpnext/manufacturing/onboarding_step/create_operations/create_operations.json +msgid "Create Operation" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/manufacturing/onboarding_step/create_operations/create_operations.json +msgid "Create Operations" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.js:161 +msgid "Create Opportunity" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +msgid "Create POS Opening Entry" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Payment Entry' +#: erpnext/accounts/doctype/payment_request/payment_request.js:66 +#: erpnext/accounts/onboarding_step/create_payment_entry/create_payment_entry.json +msgid "Create Payment Entry" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:866 +msgid "Create Payment Entry for Consolidated POS Invoices." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:539 +msgid "Create Payment Request" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:812 +msgid "Create Pick List" +msgstr "" + +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js:11 +msgid "Create Print Format" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Project' +#: erpnext/projects/onboarding_step/create_project/create_project.json +msgid "Create Project" +msgstr "" + +#: erpnext/crm/doctype/lead/lead_list.js:8 +msgid "Create Prospect" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Purchase Invoice' +#: erpnext/buying/onboarding_step/create_purchase_invoice/create_purchase_invoice.json +msgid "Create Purchase Invoice" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Purchase Order' +#: erpnext/buying/onboarding_step/create_purchase_order/create_purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1749 +#: erpnext/utilities/activation.py:108 +msgid "Create Purchase Order" +msgstr "" + +#: erpnext/utilities/activation.py:106 +msgid "Create Purchase Orders" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Purchase Receipt' +#: erpnext/stock/onboarding_step/create_purchase_receipt/create_purchase_receipt.json +msgid "Create Purchase Receipt" +msgstr "" + +#: erpnext/utilities/activation.py:90 +msgid "Create Quotation" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Raw Materials' +#: erpnext/manufacturing/onboarding_step/create_raw_materials/create_raw_materials.json +#: erpnext/subcontracting/onboarding_step/create_raw_materials/create_raw_materials.json +msgid "Create Raw Material" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/manufacturing/onboarding_step/create_raw_materials/create_raw_materials.json +#: erpnext/subcontracting/onboarding_step/create_raw_materials/create_raw_materials.json +msgid "Create Raw Materials" +msgstr "" + +#. Label of the create_receiver_list (Button) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Create Receiver List" +msgstr "" + +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:44 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:92 +msgid "Create Reposting Entries" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:58 +msgid "Create Reposting Entry" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Sales Invoice' +#: erpnext/accounts/onboarding_step/create_sales_invoice/create_sales_invoice.json +#: erpnext/projects/doctype/timesheet/timesheet.js:55 +#: erpnext/projects/doctype/timesheet/timesheet.js:231 +#: erpnext/projects/doctype/timesheet/timesheet.js:235 +#: erpnext/selling/onboarding_step/create_sales_invoice/create_sales_invoice.json +msgid "Create Sales Invoice" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Sales Order' +#: erpnext/selling/onboarding_step/create_sales_order/create_sales_order.json +#: erpnext/utilities/activation.py:99 +msgid "Create Sales Order" +msgstr "" + +#: erpnext/utilities/activation.py:98 +msgid "Create Sales Orders to help you plan your work and deliver on-time" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Service Item' +#: erpnext/subcontracting/onboarding_step/create_service_item/create_service_item.json +msgid "Create Service Item" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:283 +#: erpnext/stock/doctype/material_request/material_request.js:478 +msgid "Create Stock Entry" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Subcontracted Item' +#: erpnext/subcontracting/onboarding_step/create_subcontracted_item/create_subcontracted_item.json +msgid "Create Subcontracted Item" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Subcontracting Order' +#: erpnext/subcontracting/onboarding_step/create_subcontracting_order/create_subcontracting_order.json +msgid "Create Subcontracting Order" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/subcontracting/onboarding_step/create_subcontracting_po/create_subcontracting_po.json +msgid "Create Subcontracting PO" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Subcontracting PO' +#: erpnext/subcontracting/onboarding_step/create_subcontracting_po/create_subcontracting_po.json +msgid "Create Subcontracting Purchase Order" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/buying/onboarding_step/create_supplier/create_supplier.json +msgid "Create Supplier" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:181 +msgid "Create Supplier Quotation" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Tasks' +#: erpnext/projects/onboarding_step/create_tasks/create_tasks.json +msgid "Create Task" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/projects/onboarding_step/create_tasks/create_tasks.json +msgid "Create Tasks" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:173 +msgid "Create Tax Template" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Timesheet' +#: erpnext/projects/onboarding_step/create_timesheet/create_timesheet.json +#: erpnext/utilities/activation.py:130 +msgid "Create Timesheet" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Transfer Entry' +#: erpnext/stock/onboarding_step/create_transfer_entry/create_transfer_entry.json +msgid "Create Transfer Entry" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:50 +#: erpnext/setup/doctype/employee/employee.js:52 +#: erpnext/utilities/activation.py:119 +msgid "Create User" +msgstr "" + +#. Label of the create_user_automatically (Check) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Create User Automatically" +msgstr "" + +#. Label of the create_user_permission (Check) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.js:65 +#: erpnext/setup/doctype/employee/employee.json +msgid "Create User Permission" +msgstr "" + +#: erpnext/utilities/activation.py:115 +msgid "Create Users" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1308 +msgid "Create Variant" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1113 +#: erpnext/stock/doctype/item/item.js:1157 +msgid "Create Variants" +msgstr "" + +#. Label of an action in the Onboarding Step 'Setup Warehouse' +#: erpnext/stock/onboarding_step/setup_warehouse/setup_warehouse.json +msgid "Create Warehouses" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Work Order' +#: erpnext/manufacturing/onboarding_step/create_work_order/create_work_order.json +msgid "Create Work Order" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:10 +msgid "Create Workstation" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:683 +msgid "Create a journal entry for expenses, income or split transactions" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:689 +msgid "Create a new entry based on the rule" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:71 +msgid "Create a new rule to automatically classify transactions." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1140 +#: erpnext/stock/doctype/item/item.js:1301 +msgid "Create a variant with the template image." +msgstr "" + +#: erpnext/stock/stock_ledger.py:2055 +msgid "Create an incoming stock transaction for the Item." +msgstr "" + +#: erpnext/utilities/activation.py:88 +msgid "Create customer quotes" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Delivery Note' +#: erpnext/selling/onboarding_step/create_delivery_note/create_delivery_note.json +msgid "Create delivery note" +msgstr "" + +#. Label of the create_pr_in_draft_status (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Create payment requests in Draft status" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Supplier' +#: erpnext/buying/onboarding_step/create_supplier/create_supplier.json +msgid "Create supplier" +msgstr "" + +#: erpnext/public/js/bulk_transaction_processing.js:14 +msgid "Create {0} {1} ?" +msgstr "" + +#. Label of the created_by_migration (Check) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Created By Migration" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +msgid "Created {0} scorecards for {1} between:" +msgstr "" + +#. Description of the 'Create User Automatically' (Check) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Creates a User account for this employee using the Preferred, Company, or Personal email." +msgstr "" + +#. Description of the 'Create Grouped Asset' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Creates a single grouped asset instead of individual assets when purchased in bulk." +msgstr "" + +#. Description of the 'Standard Selling Rate' (Currency) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Creates an Item Price automatically when the item is saved" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:140 +msgid "Creating Accounts..." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1624 +msgid "Creating Delivery Note ..." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:715 +msgid "Creating Delivery Schedule..." +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162 +msgid "Creating Dimensions..." +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:92 +msgid "Creating Journal Entries..." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:988 +msgid "Creating Opening Stock Entry..." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.js:42 +msgid "Creating Packing Slip ..." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:61 +msgid "Creating Purchase Invoices ..." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1773 +msgid "Creating Purchase Order ..." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:725 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:471 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:74 +msgid "Creating Purchase Receipt ..." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:603 +msgid "Creating Return of Components ..." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:59 +msgid "Creating Sales Invoices ..." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:87 +msgid "Creating Stock Entry" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1894 +msgid "Creating Subcontracting Inward Order ..." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:486 +msgid "Creating Subcontracting Order ..." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:692 +msgid "Creating Subcontracting Receipt ..." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:85 +msgid "Creating User..." +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:36 +msgid "Creating demo data" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +msgid "Creating {} out of {} {}" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:141 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:154 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:46 +msgid "Creation" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:212 +msgid "Creation of {1}(s) successful" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:229 +msgid "Creation of {0} failed.\n" +"\t\t\t\tCheck Bulk Transaction Log" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:220 +msgid "Creation of {0} partially successful.\n" +"\t\t\t\tCheck Bulk Transaction Log" +msgstr "" + +#. Option for the 'Balance must be' (Select) field in DocType 'Account' +#. Label of the credit (Data) field in DocType 'Bank Transaction Rule Accounts' +#. Label of the credit_in_account_currency (Currency) field in DocType 'Journal +#. Entry Account' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:199 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:594 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:693 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:133 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:140 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:404 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:596 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:711 +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:39 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:11 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:88 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:148 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:441 +#: erpnext/accounts/report/general_ledger/general_ledger.html:167 +#: erpnext/accounts/report/purchase_register/purchase_register.py:243 +#: erpnext/accounts/report/sales_register/sales_register.py:277 +#: erpnext/accounts/report/trial_balance/trial_balance.py:540 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:212 +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:34 +msgid "Credit" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +msgid "Credit (Transaction)" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +msgid "Credit ({0})" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:346 +msgid "Credit Account" +msgstr "" + +#. Label of the credit (Currency) field in DocType 'Account Closing Balance' +#. Label of the credit (Currency) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Credit Amount" +msgstr "" + +#. Label of the credit_in_account_currency (Currency) field in DocType 'Account +#. Closing Balance' +#. Label of the credit_in_account_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Credit Amount in Account Currency" +msgstr "" + +#. Label of the credit_in_reporting_currency (Currency) field in DocType +#. 'Account Closing Balance' +#. Label of the credit_in_reporting_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Credit Amount in Reporting Currency" +msgstr "" + +#. Label of the credit_in_transaction_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Credit Amount in Transaction Currency" +msgstr "" + +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:67 +msgid "Credit Balance" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:258 +msgid "Credit Card" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Credit Card Entry" +msgstr "" + +#. Label of the credit_days (Int) field in DocType 'Payment Schedule' +#. Label of the credit_days (Int) field in DocType 'Payment Term' +#. Label of the credit_days (Int) field in DocType 'Payment Terms Template +#. Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Credit Days" +msgstr "" + +#. Label of the credit_limits (Table) field in DocType 'Customer' +#. Label of the credit_limit (Currency) field in DocType 'Customer Credit +#. Limit' +#. Label of the credit_limit (Currency) field in DocType 'Company' +#. Label of the credit_limits (Table) field in DocType 'Customer Group' +#. Label of the section_credit_limit (Section Break) field in DocType 'Supplier +#. Group' +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:65 +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Credit Limit" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:539 +msgid "Credit Limit Crossed" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50 +msgid "Credit Limit:" +msgstr "" + +#. Label of the invoicing_settings_tab (Tab Break) field in DocType 'Accounts +#. Settings' +#. Label of the credit_limit_section (Section Break) field in DocType 'Customer +#. Group' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Credit Limits" +msgstr "" + +#. Label of the credit_months (Int) field in DocType 'Payment Schedule' +#. Label of the credit_months (Int) field in DocType 'Payment Term' +#. Label of the credit_months (Int) field in DocType 'Payment Terms Template +#. Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Credit Months" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#. Label of the credit_note (Link) field in DocType 'Stock Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:176 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1217 +#: erpnext/controllers/sales_and_purchase_return.py:462 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:89 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/workspace_sidebar/invoicing.json +msgid "Credit Note" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:203 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:137 +msgid "Credit Note Amount" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/services/status.py:73 +msgid "Credit Note Issued" +msgstr "" + +#. Description of the 'Update Outstanding for Self' (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/services/billing_status.py:49 +msgid "Credit Note {0} has been created automatically" +msgstr "" + +#. Label of the credit_to (Link) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:380 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:388 +#: erpnext/controllers/accounts_controller.py:1288 +msgid "Credit To" +msgstr "" + +#. Label of the credit (Currency) field in DocType 'Journal Entry Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Credit in Company Currency" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:505 +#: erpnext/selling/doctype/customer/customer.py:562 +msgid "Credit limit has been crossed for customer {0} ({1}/{2})" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:395 +msgid "Credit limit is already defined for the Company {0}" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:561 +msgid "Credit limit reached for customer {0}" +msgstr "" + +#: erpnext/accounts/utils.py:2854 +msgid "Credit limit warning — submission may be blocked: {0}" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:215 +msgid "Creditor Turnover Ratio" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262 +msgid "Creditors" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:392 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:264 +msgid "Credits" +msgstr "" + +#. Label of the criteria (Table) field in DocType 'Supplier Scorecard Period' +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Criteria" +msgstr "" + +#. Label of the formula (Small Text) field in DocType 'Supplier Scorecard +#. Criteria' +#. Label of the formula (Small Text) field in DocType 'Supplier Scorecard +#. Scoring Criteria' +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Criteria Formula" +msgstr "" + +#. Label of the criteria_name (Data) field in DocType 'Supplier Scorecard +#. Criteria' +#. Label of the criteria_name (Link) field in DocType 'Supplier Scorecard +#. Scoring Criteria' +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Criteria Name" +msgstr "" + +#. Label of the criteria_setup (Section Break) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Criteria Setup" +msgstr "" + +#. Label of the weight (Percent) field in DocType 'Supplier Scorecard Criteria' +#. Label of the weight (Percent) field in DocType 'Supplier Scorecard Scoring +#. Criteria' +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Criteria Weight" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 +msgid "Criteria weights must add up to 100%" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +msgid "Cron Interval should be between 1 and 59 Min" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/website_item_group/website_item_group.json +msgid "Cross Listing of Item in multiple groups" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Centimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Decimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Inch" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Millimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Yard" +msgstr "" + +#. Label of the cumulative_threshold (Float) field in DocType 'Tax Withholding +#. Rate' +#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json +msgid "Cumulative Threshold" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cup" +msgstr "" + +#. Label of a Link in the Invoicing Workspace +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Currency Exchange" +msgstr "" + +#. Label of the currency_exchange_section (Section Break) field in DocType +#. 'Accounts Settings' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Currency Exchange Settings" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/currency_exchange_settings_details/currency_exchange_settings_details.json +msgid "Currency Exchange Settings Details" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/currency_exchange_settings_result/currency_exchange_settings_result.json +msgid "Currency Exchange Settings Result" +msgstr "" + +#: erpnext/setup/doctype/currency_exchange/currency_exchange.py:55 +msgid "Currency Exchange must be applicable for Buying or for Selling." +msgstr "" + +#. Label of the currency_and_price_list (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the currency_and_price_list (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Purchase Order' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Supplier Quotation' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Quotation' +#. Label of the currency_and_price_list (Section Break) field in DocType 'Sales +#. Order' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Delivery Note' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Currency and Price List" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:350 +msgid "Currency can not be changed after making entries using some other currency" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +msgid "Currency filters are currently unsupported in Custom Financial Report." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/services/gl_composer.py:215 +#: erpnext/accounts/doctype/payment_entry/services/gl_composer.py:284 +#: erpnext/accounts/utils.py:2573 +msgid "Currency for {0} must be {1}" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:133 +msgid "Currency of the Closing Account must be {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:680 +msgid "Currency of the price list {0} must be {1} or {2}" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:298 +msgid "Currency should be same as Price List Currency: {0}" +msgstr "" + +#. Label of the current_address (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Current Address" +msgstr "" + +#. Label of the current_accommodation_type (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Current Address Is" +msgstr "" + +#. Label of the current_amount (Currency) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Current Amount" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Current Asset" +msgstr "" + +#. Label of the current_asset_value (Currency) field in DocType 'Asset +#. Capitalization Asset Item' +#. Label of the current_asset_value (Currency) field in DocType 'Asset Value +#. Adjustment' +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +msgid "Current Asset Value" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:11 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:11 +msgid "Current Assets" +msgstr "" + +#. Label of the current_bom (Link) field in DocType 'BOM Update Log' +#. Label of the current_bom (Link) field in DocType 'BOM Update Tool' +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "Current BOM" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 +msgid "Current BOM and New BOM can not be same" +msgstr "" + +#. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate +#. Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Current Exchange Rate" +msgstr "" + +#. Label of the current_invoice_end (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Current Invoice End" +msgstr "" + +#. Label of the current_invoice_start (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Current Invoice Start" +msgstr "" + +#. Label of the current_level (Int) field in DocType 'BOM Update Log' +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +msgid "Current Level" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260 +msgid "Current Liabilities" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Current Liability" +msgstr "" + +#. Label of the current_node (Link) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "Current Node" +msgstr "" + +#. Label of the current_qty (Float) field in DocType 'Stock Reconciliation +#. Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/total_stock_summary/total_stock_summary.py:23 +msgid "Current Qty" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:154 +msgid "Current Ratio" +msgstr "" + +#. Label of the current_serial_and_batch_bundle (Link) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Current Serial / Batch Bundle" +msgstr "" + +#. Label of the current_serial_no (Long Text) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Current Serial No" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:223 +msgid "Current Series" +msgstr "" + +#. Label of the current_state (Select) field in DocType 'Share Balance' +#: erpnext/accounts/doctype/share_balance/share_balance.json +msgid "Current State" +msgstr "" + +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:205 +msgid "Current Status" +msgstr "" + +#. Label of the current_stock (Float) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the current_stock (Float) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/stock/report/item_variant_details/item_variant_details.py:106 +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Current Stock" +msgstr "" + +#. Label of the current_valuation_rate (Currency) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Current Valuation Rate" +msgstr "" + +#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Current tier based on accumulated points. Updated automatically on each invoice." +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.js:90 +msgid "Curves" +msgstr "" + +#. Label of the custodian (Link) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Custodian" +msgstr "" + +#. Label of the custody (Float) field in DocType 'Cashier Closing' +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +msgid "Custody" +msgstr "" + +#. Option for the 'Data Source' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Custom API" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Financial Report +#. Template' +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Custom Financial Statement" +msgstr "" + +#. Label of the custom_remark (Check) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Custom Remark" +msgstr "" + +#. Label of the custom_remarks (Check) field in DocType 'Payment Entry' +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:481 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:345 +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Custom Remarks" +msgstr "" + +#. Label of the custom_delimiters (Check) field in DocType 'Bank Statement +#. Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Custom delimiters" +msgstr "" + +#. Label of the customer (Link) field in DocType 'Bank Guarantee' +#. Label of the customer (Link) field in DocType 'Coupon Code' +#. Label of the customer (Link) field in DocType 'Discounted Invoice' +#. Label of the customer (Link) field in DocType 'Dunning' +#. Label of the customer (Link) field in DocType 'Loyalty Point Entry' +#. Label of the customer (Link) field in DocType 'POS Invoice' +#. Label of the customer (Link) field in DocType 'POS Invoice Merge Log' +#. Option for the 'Merge Invoices Based On' (Select) field in DocType 'POS +#. Invoice Merge Log' +#. Label of the customer (Link) field in DocType 'POS Invoice Reference' +#. Label of the customer (Link) field in DocType 'POS Profile' +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the customer (Link) field in DocType 'Pricing Rule' +#. Label of the customer (Link) field in DocType 'Process Statement Of Accounts +#. Customer' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the customer (Table MultiSelect) field in DocType 'Promotional +#. Scheme' +#. Label of the customer (Link) field in DocType 'Sales Invoice' +#. Label of the customer (Link) field in DocType 'Sales Invoice Reference' +#. Label of the customer (Link) field in DocType 'Tax Rule' +#. Option for the 'Asset Owner' (Select) field in DocType 'Asset' +#. Label of the customer (Link) field in DocType 'Asset' +#. Label of the customer (Link) field in DocType 'Purchase Order' +#. Option for the 'Party Type' (Select) field in DocType 'Contract' +#. Label of the customer (Link) field in DocType 'Maintenance Schedule' +#. Label of the customer (Link) field in DocType 'Maintenance Visit' +#. Label of the customer (Link) field in DocType 'Blanket Order' +#. Label of the customer (Link) field in DocType 'Production Plan' +#. Label of the customer (Link) field in DocType 'Production Plan Sales Order' +#. Label of the customer (Link) field in DocType 'Project' +#. Label of the customer (Link) field in DocType 'Timesheet' +#. Option for the 'Type' (Select) field in DocType 'Quality Feedback' +#. Name of a DocType +#. Label of the customer (Link) field in DocType 'Installation Note' +#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item' +#. Label of the customer (Link) field in DocType 'Sales Order' +#. Label of the customer (Link) field in DocType 'SMS Center' +#. Label of a Link in the Selling Workspace +#. Option for the 'Customer or Item' (Select) field in DocType 'Authorization +#. Rule' +#. Name of a role +#. Label of a Link in the Home Workspace +#. Label of a shortcut in the Home Workspace +#. Label of the customer (Link) field in DocType 'Delivery Note' +#. Label of the customer (Link) field in DocType 'Delivery Stop' +#. Label of the customer (Link) field in DocType 'Item Price' +#. Label of the customer (Link) field in DocType 'Material Request' +#. Label of the customer (Link) field in DocType 'Pick List' +#. Label of the customer (Link) field in DocType 'Serial No' +#. Option for the 'Pickup from' (Select) field in DocType 'Shipment' +#. Label of the pickup_customer (Link) field in DocType 'Shipment' +#. Option for the 'Delivery to' (Select) field in DocType 'Shipment' +#. Label of the delivery_customer (Link) field in DocType 'Shipment' +#. Label of the customer (Link) field in DocType 'Warehouse' +#. Label of the customer (Link) field in DocType 'Subcontracting Inward Order' +#. Label of the customer (Link) field in DocType 'Issue' +#. Option for the 'Entity Type' (Select) field in DocType 'Service Level +#. Agreement' +#. Label of the customer (Link) field in DocType 'Warranty Claim' +#. Label of a field in the issues Web Form +#. Label of the customer (Link) field in DocType 'Call Log' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:411 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:114 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:112 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:134 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:38 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:29 +#: erpnext/accounts/report/general_ledger/general_ledger.html:136 +#: erpnext/accounts/report/gross_profit/gross_profit.py:416 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:38 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:22 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:221 +#: erpnext/accounts/report/pos_register/pos_register.js:44 +#: erpnext/accounts/report/pos_register/pos_register.py:129 +#: erpnext/accounts/report/pos_register/pos_register.py:197 +#: erpnext/accounts/report/sales_register/sales_register.js:21 +#: erpnext/accounts/report/sales_register/sales_register.py:187 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.js:225 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/lead/lead.js:32 +#: erpnext/crm/doctype/opportunity/opportunity.js:99 +#: erpnext/crm/doctype/prospect/prospect.js:8 +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:55 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:98 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/timesheet/timesheet.js:223 +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:46 +#: erpnext/public/js/sales_trends_filters.js:25 +#: erpnext/public/js/sales_trends_filters.js:39 +#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json +#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js:21 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1237 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_calendar.js:19 +#: erpnext/selling/doctype/selling_settings/selling_settings.js:48 +#: erpnext/selling/doctype/sms_center/sms_center.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:320 +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:16 +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:64 +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.js:7 +#: erpnext/selling/report/inactive_customers/inactive_customers.py:97 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:47 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:73 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:37 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:21 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:42 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:241 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:41 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:156 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:53 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:25 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:40 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:52 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:53 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:74 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/territory/territory.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/delivery_note/delivery_note.js:215 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:495 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:489 +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:36 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:121 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:36 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:46 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:534 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/support/report/issue_analytics/issue_analytics.js:69 +#: erpnext/support/report/issue_analytics/issue_analytics.py:37 +#: erpnext/support/report/issue_summary/issue_summary.js:57 +#: erpnext/support/report/issue_summary/issue_summary.py:35 +#: erpnext/support/web_form/issues/issues.json +#: erpnext/telephony/doctype/call_log/call_log.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/home.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/selling.json +#: erpnext/workspace_sidebar/subscription.json +msgid "Customer" +msgstr "" + +#. Label of the customer (Link) field in DocType 'Customer Item' +#: erpnext/accounts/doctype/customer_item/customer_item.json +msgid "Customer " +msgstr "" + +#. Label of the master_name (Dynamic Link) field in DocType 'Authorization +#. Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Customer / Item / Item Group" +msgstr "" + +#. Label of the customer_address (Link) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Customer / Lead Address" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:95 +msgid "Customer > Customer Group > Territory" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Customer Acquisition and Loyalty" +msgstr "" + +#. Label of the customer_address (Link) field in DocType 'Dunning' +#. Label of the customer_address (Link) field in DocType 'POS Invoice' +#. Label of the customer_address (Link) field in DocType 'Sales Invoice' +#. Label of the customer_address (Link) field in DocType 'Maintenance Schedule' +#. Label of the customer_address (Link) field in DocType 'Maintenance Visit' +#. Label of the customer_address (Link) field in DocType 'Installation Note' +#. Label of the customer_address (Link) field in DocType 'Quotation' +#. Label of the customer_address (Link) field in DocType 'Sales Order' +#. Label of the customer_address (Small Text) field in DocType 'Delivery Stop' +#. Label of the customer_address (Link) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Customer Address" +msgstr "" + +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Customer Addresses And Contacts" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274 +msgid "Customer Advances" +msgstr "" + +#. Label of the customer_code (Small Text) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Customer Code" +msgstr "" + +#. Label of the customer_contact_person (Link) field in DocType 'Purchase +#. Order' +#. Label of the customer_contact_display (Small Text) field in DocType +#. 'Purchase Order' +#. Label of the customer_contact (Small Text) field in DocType 'Delivery Stop' +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Customer Contact" +msgstr "" + +#. Label of the customer_contact_email (Code) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Customer Contact Email" +msgstr "" + +#. Label of a Link in the Financial Reports Workspace +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/selling.json +msgid "Customer Credit Balance" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +msgid "Customer Credit Limit" +msgstr "" + +#. Label of the currency (Link) field in DocType 'Subcontracting Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Customer Currency" +msgstr "" + +#. Label of the customer_defaults_tab (Tab Break) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Customer Defaults" +msgstr "" + +#. Label of the customer_details_section (Section Break) field in DocType +#. 'Appointment' +#. Label of the customer_details (Section Break) field in DocType 'Project' +#. Label of the customer_details (Text) field in DocType 'Customer' +#. Label of the customer_details (Section Break) field in DocType 'Item' +#. Label of the contact_info (Section Break) field in DocType 'Warranty Claim' +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Customer Details" +msgstr "" + +#. Label of the customer_feedback (Small Text) field in DocType 'Maintenance +#. Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Customer Feedback" +msgstr "" + +#. Label of the customer_group (Link) field in DocType 'Customer Group Item' +#. Label of the customer_group (Link) field in DocType 'Loyalty Program' +#. Label of the customer_group (Link) field in DocType 'POS Customer Group' +#. Label of the customer_group (Link) field in DocType 'POS Invoice' +#. Option for the 'Merge Invoices Based On' (Select) field in DocType 'POS +#. Invoice Merge Log' +#. Label of the customer_group (Link) field in DocType 'POS Invoice Merge Log' +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the customer_group (Link) field in DocType 'Pricing Rule' +#. Option for the 'Select Customers By' (Select) field in DocType 'Process +#. Statement Of Accounts' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the customer_group (Table MultiSelect) field in DocType +#. 'Promotional Scheme' +#. Label of the customer_group (Link) field in DocType 'Sales Invoice' +#. Label of the customer_group (Link) field in DocType 'Tax Rule' +#. Label of the customer_group (Link) field in DocType 'Opportunity' +#. Label of the customer_group (Link) field in DocType 'Prospect' +#. Label of a Link in the CRM Workspace +#. Label of the customer_group (Link) field in DocType 'Maintenance Schedule' +#. Label of the customer_group (Link) field in DocType 'Maintenance Visit' +#. Label of the customer_group (Link) field in DocType 'Customer' +#. Label of the customer_group (Link) field in DocType 'Installation Note' +#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item' +#. Label of the customer_group (Link) field in DocType 'Quotation' +#. Label of the customer_group (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Name of a DocType +#. Label of a Link in the Home Workspace +#. Label of the customer_group (Link) field in DocType 'Delivery Note' +#. Label of the customer_group (Link) field in DocType 'Item Customer Detail' +#. Option for the 'Entity Type' (Select) field in DocType 'Service Level +#. Agreement' +#. Label of the customer_group (Link) field in DocType 'Warranty Claim' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/customer_group_item/customer_group_item.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/pos_customer_group/pos_customer_group.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:115 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1245 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:96 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:187 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:56 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:163 +#: erpnext/accounts/report/gross_profit/gross_profit.py:423 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:208 +#: erpnext/accounts/report/sales_register/sales_register.js:27 +#: erpnext/accounts/report/sales_register/sales_register.py:202 +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/public/js/sales_trends_filters.js:26 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/report/inactive_customers/inactive_customers.py:100 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:81 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:30 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:42 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:42 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json +msgid "Customer Group" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/customer_group_item/customer_group_item.json +msgid "Customer Group Item" +msgstr "" + +#. Label of the customer_group_name (Data) field in DocType 'Customer Group' +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Customer Group Name" +msgstr "" + +#. Label of the customer_groups (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Customer Groups" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/customer_item/customer_item.json +msgid "Customer Item" +msgstr "" + +#. Label of the customer_items (Table) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Customer Items" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1236 +msgid "Customer LPO" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:185 +msgid "Customer LPO No." +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Customer Ledger" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +msgid "Customer Ledger Summary" +msgstr "" + +#. Label of the customer_contact_mobile (Small Text) field in DocType 'Purchase +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Customer Mobile No" +msgstr "" + +#. Label of the customer_name (Data) field in DocType 'Dunning' +#. Label of the customer_name (Data) field in DocType 'POS Invoice' +#. Label of the customer_name (Data) field in DocType 'Process Statement Of +#. Accounts Customer' +#. Label of the customer_name (Small Text) field in DocType 'Sales Invoice' +#. Label of the customer_name (Data) field in DocType 'Purchase Order' +#. Label of the customer_name (Data) field in DocType 'Opportunity' +#. Label of the customer_name (Data) field in DocType 'Maintenance Schedule' +#. Label of the customer_name (Data) field in DocType 'Maintenance Visit' +#. Label of the customer_name (Data) field in DocType 'Blanket Order' +#. Label of the customer_name (Data) field in DocType 'Customer' +#. Label of the customer_name (Data) field in DocType 'Quotation' +#. Label of the customer_name (Data) field in DocType 'Sales Order' +#. Option for the 'Customer Naming By' (Select) field in DocType 'Selling +#. Settings' +#. Label of the customer_name (Data) field in DocType 'Delivery Note' +#. Label of the customer_name (Link) field in DocType 'Item Customer Detail' +#. Label of the customer_name (Data) field in DocType 'Pick List' +#. Label of the customer_name (Data) field in DocType 'Subcontracting Inward +#. Order' +#. Label of the customer_name (Data) field in DocType 'Issue' +#. Label of the customer_name (Data) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:157 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:92 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:35 +#: erpnext/accounts/report/gross_profit/gross_profit.py:430 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:228 +#: erpnext/accounts/report/sales_register/sales_register.py:193 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:74 +#: erpnext/selling/report/inactive_customers/inactive_customers.py:98 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:79 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Customer Name" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:22 +msgid "Customer Name: " +msgstr "" + +#. Label of the cust_master_name (Select) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Customer Naming By" +msgstr "" + +#. Label of the customer_number (Data) field in DocType 'Customer Number At +#. Supplier' +#: erpnext/buying/doctype/customer_number_at_supplier/customer_number_at_supplier.json +msgid "Customer Number" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/customer_number_at_supplier/customer_number_at_supplier.json +msgid "Customer Number At Supplier" +msgstr "" + +#. Label of the customer_numbers (Table) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Customer Numbers" +msgstr "" + +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:165 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:80 +msgid "Customer PO" +msgstr "" + +#. Label of the customer_po_details (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the customer_po_details (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the customer_po_details (Section Break) field in DocType 'Delivery +#. Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Customer PO Details" +msgstr "" + +#. Label of the customer_pos_id (Data) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Customer POS ID" +msgstr "" + +#. Label of the portal_users (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Customer Portal Users" +msgstr "" + +#. Label of the customer_primary_address (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Customer Primary Address" +msgstr "" + +#. Label of the customer_primary_contact (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Customer Primary Contact" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Option for the 'Default Material Request Type' (Select) field in DocType +#. 'Item' +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Customer Provided" +msgstr "" + +#. Label of the customer_provided_item_cost (Currency) field in DocType 'Stock +#. Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Customer Provided Item Cost" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:494 +msgid "Customer Service" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:13 +msgid "Customer Service Representative" +msgstr "" + +#. Label of the customer_territory (Link) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Customer Territory" +msgstr "" + +#. Label of the customer_type (Select) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Customer Type" +msgstr "" + +#. Label of the customer_warehouse (Link) field in DocType 'Subcontracting +#. Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Customer Warehouse" +msgstr "" + +#. Label of the target_warehouse (Link) field in DocType 'POS Invoice Item' +#. Label of the target_warehouse (Link) field in DocType 'Sales Order Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Customer Warehouse (Optional)" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:146 +msgid "Customer Warehouse {0} does not belong to Customer {1}." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:1006 +msgid "Customer contact updated successfully." +msgstr "" + +#: erpnext/support/doctype/warranty_claim/warranty_claim.py:55 +msgid "Customer is required" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:136 +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:158 +msgid "Customer isn't enrolled in any Loyalty Program" +msgstr "" + +#. Label of the customer_or_item (Select) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Customer or Item" +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:93 +msgid "Customer required for 'Customerwise Discount'" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:885 +#: erpnext/selling/doctype/sales_order/sales_order.py:392 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:393 +msgid "Customer {0} does not belong to project {1}" +msgstr "" + +#. Label of the customer_item_code (Data) field in DocType 'POS Invoice Item' +#. Label of the customer_item_code (Data) field in DocType 'Sales Invoice Item' +#. Label of the customer_item_code (Data) field in DocType 'Quotation Item' +#. Label of the customer_item_code (Data) field in DocType 'Sales Order Item' +#. Label of the customer_item_code (Data) field in DocType 'Delivery Note Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Customer's Item Code" +msgstr "" + +#. Label of the po_no (Data) field in DocType 'POS Invoice' +#. Label of the po_no (Data) field in DocType 'Sales Invoice' +#. Label of the po_no (Data) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Customer's Purchase Order" +msgstr "" + +#. Label of the po_date (Date) field in DocType 'POS Invoice' +#. Label of the po_date (Date) field in DocType 'Sales Invoice' +#. Label of the po_date (Date) field in DocType 'Sales Order' +#. Label of the po_date (Date) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Customer's Purchase Order Date" +msgstr "" + +#. Label of the po_no (Small Text) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Customer's Purchase Order No" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:8 +msgid "Customer's Vendor" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.json +msgid "Customer-wise Item Price" +msgstr "" + +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:43 +msgid "Customer/Lead Name" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:19 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:21 +msgid "Customer: " +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the customers (Table) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Customers" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/customers_without_any_sales_transactions/customers_without_any_sales_transactions.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Customers Without Any Sales Transactions" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:108 +msgid "Customers not selected." +msgstr "" + +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Customerwise Discount" +msgstr "" + +#. Name of a DocType +#. Label of the customs_tariff_number (Link) field in DocType 'Item' +#. Label of a Link in the Stock Workspace +#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Customs Tariff Number" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cycle/Second" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:204 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:243 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:146 +msgid "D - E" +msgstr "" + +#. Option for the 'Algorithm' (Select) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "DFS" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:750 +msgid "Daily Project Summary for {0}" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:169 +msgid "Daily Reminders" +msgstr "" + +#. Label of the daily_time_to_send (Time) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Daily Time to send" +msgstr "" + +#. Name of a report +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Daily Timesheet Summary" +msgstr "" + +#. Label of the daily_yield (Percent) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Daily Yield (%)" +msgstr "" + +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:15 +msgid "Data Based On" +msgstr "" + +#. Label of the data_import_configuration_section (Section Break) field in +#. DocType 'Bank' +#: erpnext/accounts/doctype/bank/bank.json +msgid "Data Import Configuration" +msgstr "" + +#. Label of a Card Break in the Home Workspace +#: erpnext/setup/workspace/home/home.json +msgid "Data Import and Settings" +msgstr "" + +#. Label of the data_source (Select) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Data Source" +msgstr "" + +#. Label of the receivable_payable_fetch_method (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Data fetch method" +msgstr "" + +#. Label of the date (Date) field in DocType 'Bulk Transaction Log Detail' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "Date " +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:97 +msgid "Date Based On" +msgstr "" + +#. Label of the date_of_retirement (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Date Of Retirement" +msgstr "" + +#. Label of the date_settings (HTML) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Date Settings" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:72 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:92 +msgid "Date must be between {0} and {1}" +msgstr "" + +#. Label of the date_of_birth (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Date of Birth" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:257 +msgid "Date of Birth cannot be greater than today." +msgstr "" + +#. Label of the date_of_commencement (Date) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Date of Commencement" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:110 +msgid "Date of Commencement should be greater than Date of Incorporation" +msgstr "" + +#. Label of the date_of_establishment (Date) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Date of Establishment" +msgstr "" + +#. Label of the date_of_incorporation (Date) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Date of Incorporation" +msgstr "" + +#. Label of the date_of_issue (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Date of Issue" +msgstr "" + +#. Label of the date_of_joining (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Date of Joining" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:272 +msgid "Date of Transaction" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:25 +msgid "Date: {0} to {1}" +msgstr "" + +#. Label of the dates_section (Section Break) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Dates" +msgstr "" + +#. Label of the normal_balances (Table) field in DocType 'Process Period +#. Closing Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "Dates to Process" +msgstr "" + +#. Label of the day_of_week (Select) field in DocType 'Appointment Booking +#. Slots' +#. Label of the day_of_week (Select) field in DocType 'Availability Of Slots' +#. Label of the day_of_week (Select) field in DocType 'Incoming Call Handling +#. Schedule' +#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json +#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json +#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json +msgid "Day Of Week" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:94 +msgid "Day of month" +msgstr "" + +#. Label of the day_to_send (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Day to Send" +msgstr "" + +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment +#. Schedule' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Schedule' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Term' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Term' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Terms +#. Template Detail' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Terms Template Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Day(s) after invoice date" +msgstr "" + +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment +#. Schedule' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Schedule' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Term' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Term' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Terms +#. Template Detail' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Terms Template Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Day(s) after the end of the invoice month" +msgstr "" + +#. Option for the 'Book Deferred entries based on' (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Days" +msgstr "" + +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:52 +#: erpnext/selling/report/inactive_customers/inactive_customers.js:8 +#: erpnext/selling/report/inactive_customers/inactive_customers.py:106 +msgid "Days Since Last Order" +msgstr "" + +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:34 +msgid "Days Since Last order" +msgstr "" + +#. Label of the days_until_due (Int) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Days Until Due" +msgstr "" + +#. Label of the delinked (Check) field in DocType 'Advance Payment Ledger +#. Entry' +#. Label of the delinked (Check) field in DocType 'Payment Ledger Entry' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +msgid "DeLinked" +msgstr "" + +#. Label of the deal_owner (Data) field in DocType 'Prospect Opportunity' +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +msgid "Deal Owner" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:3 +msgid "Dealer" +msgstr "" + +#. Option for the 'Balance must be' (Select) field in DocType 'Account' +#. Label of the debit (Data) field in DocType 'Bank Transaction Rule Accounts' +#. Label of the debit_in_account_currency (Currency) field in DocType 'Journal +#. Entry Account' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:198 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:593 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:673 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:126 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:133 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:403 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:595 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:696 +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:38 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:10 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:81 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:141 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:434 +#: erpnext/accounts/report/general_ledger/general_ledger.html:166 +#: erpnext/accounts/report/purchase_register/purchase_register.py:242 +#: erpnext/accounts/report/sales_register/sales_register.py:276 +#: erpnext/accounts/report/trial_balance/trial_balance.py:533 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:205 +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:27 +msgid "Debit" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +msgid "Debit (Transaction)" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +msgid "Debit ({0})" +msgstr "" + +#. Label of the debit_or_credit_note_posting_date (Date) field in DocType +#. 'Payment Reconciliation Allocation' +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +msgid "Debit / Credit Note Posting Date" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:338 +msgid "Debit Account" +msgstr "" + +#. Label of the debit (Currency) field in DocType 'Account Closing Balance' +#. Label of the debit (Currency) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Debit Amount" +msgstr "" + +#. Label of the debit_in_account_currency (Currency) field in DocType 'Account +#. Closing Balance' +#. Label of the debit_in_account_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Debit Amount in Account Currency" +msgstr "" + +#. Label of the debit_in_reporting_currency (Currency) field in DocType +#. 'Account Closing Balance' +#. Label of the debit_in_reporting_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Debit Amount in Reporting Currency" +msgstr "" + +#. Label of the debit_in_transaction_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Debit Amount in Transaction Currency" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:178 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1220 +#: erpnext/controllers/sales_and_purchase_return.py:466 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45 +#: erpnext/workspace_sidebar/invoicing.json +msgid "Debit Note" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:205 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:137 +msgid "Debit Note Amount" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Debit Note Issued" +msgstr "" + +#. Description of the 'Update Outstanding for Self' (Check) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Debit Note will update it's own outstanding amount, even if 'Return Against' is specified." +msgstr "" + +#. Label of the debit_to (Link) field in DocType 'POS Invoice' +#. Label of the debit_to (Link) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:769 +#: erpnext/controllers/accounts_controller.py:1288 +msgid "Debit To" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 +msgid "Debit To is required" +msgstr "" + +#: erpnext/accounts/general_ledger.py:462 +msgid "Debit and Credit not equal for {0} #{1}. Difference is {2}." +msgstr "" + +#. Label of the debit (Currency) field in DocType 'Journal Entry Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Debit in Company Currency" +msgstr "" + +#. Label of the debit_to (Link) field in DocType 'Discounted Invoice' +#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json +msgid "Debit to" +msgstr "" + +#. Label of the debit_credit_mismatch (Check) field in DocType 'Ledger Health +#. Monitor' +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +msgid "Debit-Credit Mismatch" +msgstr "" + +#. Label of the debit_credit_mismatch (Check) field in DocType 'Ledger Health' +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +msgid "Debit-Credit mismatch" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Debit/Credit" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:391 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:263 +msgid "Debits" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:172 +msgid "Debt Equity Ratio" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:214 +msgid "Debtor Turnover Ratio" +msgstr "" + +#: erpnext/accounts/party.py:626 +msgid "Debtor/Creditor" +msgstr "" + +#: erpnext/accounts/party.py:629 +msgid "Debtor/Creditor Advance" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:13 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:13 +msgid "Debtors" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Decigram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Decilitre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Decimeter" +msgstr "" + +#: erpnext/public/js/utils/sales_common.js:633 +msgid "Declare Lost" +msgstr "" + +#. Option for the 'Add Or Deduct' (Select) field in DocType 'Advance Taxes and +#. Charges' +#. Option for the 'Add or Deduct' (Select) field in DocType 'Purchase Taxes and +#. Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Deduct" +msgstr "" + +#. Label of the tax_deduction_basis (Select) field in DocType 'Tax Withholding +#. Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Deduct Tax On Basis" +msgstr "" + +#. Label of the source_section (Section Break) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Deducted From" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Lower +#. Deduction Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Deductee Details" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/taxes.json +msgid "Deduction Certificate" +msgstr "" + +#. Label of the deductions_or_loss_section (Section Break) field in DocType +#. 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Deductions or Loss" +msgstr "" + +#. Label of the default_account (Link) field in DocType 'Mode of Payment +#. Account' +#. Label of the account (Link) field in DocType 'Party Account' +#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json +#: erpnext/accounts/doctype/party_account/party_account.json +msgid "Default Account" +msgstr "" + +#. Label of the default_accounts_section (Section Break) field in DocType +#. 'Supplier' +#. Label of the accounts (Table) field in DocType 'Customer' +#. Label of the default_settings (Section Break) field in DocType 'Company' +#. Label of the default_receivable_account (Section Break) field in DocType +#. 'Customer Group' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Default Accounts" +msgstr "" + +#: erpnext/projects/doctype/activity_cost/activity_cost.py:70 +msgid "Default Activity Cost exists for Activity Type - {0}" +msgstr "" + +#. Label of the default_advance_account (Link) field in DocType 'Payment +#. Reconciliation' +#. Label of the default_advance_account (Link) field in DocType 'Process +#. Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "Default Advance Account" +msgstr "" + +#. Label of the default_advance_paid_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/company/company.py:327 +msgid "Default Advance Paid Account" +msgstr "" + +#. Label of the default_advance_received_account (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/company/company.py:316 +msgid "Default Advance Received Account" +msgstr "" + +#. Label of the default_ageing_range (Data) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Default Ageing Range" +msgstr "" + +#. Label of the default_bom (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default BOM" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:504 +msgid "Default BOM ({0}) must be active for this item or its template" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/mapper.py:87 +msgid "Default BOM for {0} not found" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:309 +msgid "Default BOM not found for FG Item {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/mapper.py:83 +msgid "Default BOM not found for Item {0} and Project {1}" +msgstr "" + +#. Label of the default_bank_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Bank Account" +msgstr "" + +#. Label of the billing_rate (Currency) field in DocType 'Activity Type' +#: erpnext/projects/doctype/activity_type/activity_type.json +msgid "Default Billing Rate" +msgstr "" + +#. Label of the buying_price_list (Link) field in DocType 'Buying Settings' +#. Label of the default_buying_price_list (Link) field in DocType 'Import +#. Supplier Invoice' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Default Buying Price List" +msgstr "" + +#. Label of the default_buying_terms (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Buying Terms" +msgstr "" + +#. Label of the default_cash_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Cash Account" +msgstr "" + +#. Label of the default_common_code (Link) field in DocType 'Code List' +#: erpnext/edi/doctype/code_list/code_list.json +msgid "Default Common Code" +msgstr "" + +#. Label of the default_company (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Default Company" +msgstr "" + +#. Label of the cost_center (Link) field in DocType 'Project' +#. Label of the cost_center (Link) field in DocType 'Company' +#: erpnext/projects/doctype/project/project.json +#: erpnext/setup/doctype/company/company.json +msgid "Default Cost Center" +msgstr "" + +#. Label of the default_expense_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Cost of Goods Sold Account" +msgstr "" + +#. Label of the costing_rate (Currency) field in DocType 'Activity Type' +#: erpnext/projects/doctype/activity_type/activity_type.json +msgid "Default Costing Rate" +msgstr "" + +#. Label of the default_currency (Link) field in DocType 'Company' +#. Label of the default_currency (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Default Currency" +msgstr "" + +#. Label of the customer_group (Link) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Default Customer Group" +msgstr "" + +#. Label of the default_deferred_expense_account (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Deferred Expense Account" +msgstr "" + +#. Label of the default_deferred_revenue_account (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Deferred Revenue Account" +msgstr "" + +#. Label of the default_dimension (Dynamic Link) field in DocType 'Accounting +#. Dimension Detail' +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Default Dimension" +msgstr "" + +#. Label of the default_distance_unit (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Default Distance Unit" +msgstr "" + +#. Label of the default_finance_book (Link) field in DocType 'Asset' +#. Label of the default_finance_book (Link) field in DocType 'Company' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/setup/doctype/company/company.json +msgid "Default Finance Book" +msgstr "" + +#. Label of the default_fg_warehouse (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Finished Goods Warehouse" +msgstr "" + +#. Label of the default_holiday_list (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Holiday List" +msgstr "" + +#. Label of the default_in_transit_warehouse (Link) field in DocType 'Company' +#. Label of the default_in_transit_warehouse (Link) field in DocType +#. 'Warehouse' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Default In-Transit Warehouse" +msgstr "" + +#. Label of the default_income_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Income Account" +msgstr "" + +#. Label of the default_inventory_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Inventory Account" +msgstr "" + +#. Label of the item_group (Link) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Default Item Group" +msgstr "" + +#. Label of the default_item_manufacturer (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Item Manufacturer" +msgstr "" + +#. Label of the default_letter_head (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Letter Head (DocType)" +msgstr "" + +#. Label of the default_letter_head_report (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Letter Head (Report)" +msgstr "" + +#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Manufacturer Part No" +msgstr "" + +#. Label of the default_material_request_type (Select) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Material Request Type" +msgstr "" + +#. Label of the default_operating_cost_account (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Operating Cost Account" +msgstr "" + +#. Label of the default_payable_account (Link) field in DocType 'Company' +#. Label of the default_payable_account (Section Break) field in DocType +#. 'Supplier Group' +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Default Payable Account" +msgstr "" + +#. Label of the default_discount_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Payment Discount Account" +msgstr "" + +#. Label of the message (Small Text) field in DocType 'Payment Gateway Account' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +msgid "Default Payment Request Message" +msgstr "" + +#. Label of the payment_terms (Link) field in DocType 'Company' +#. Label of the payment_terms (Link) field in DocType 'Customer Group' +#. Label of the payment_terms (Link) field in DocType 'Supplier Group' +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Default Payment Terms Template" +msgstr "" + +#. Label of the selling_price_list (Link) field in DocType 'Selling Settings' +#. Label of the default_price_list (Link) field in DocType 'Customer Group' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Default Price List" +msgstr "" + +#. Label of the default_priority (Link) field in DocType 'Service Level +#. Agreement' +#. Label of the default_priority (Check) field in DocType 'Service Level +#. Priority' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +#: erpnext/support/doctype/service_level_priority/service_level_priority.json +msgid "Default Priority" +msgstr "" + +#. Label of the default_provisional_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Provisional Account" +msgstr "" + +#. Label of the purchase_uom (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Purchase Unit of Measure" +msgstr "" + +#. Label of the default_valid_till (Data) field in DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Default Quotation Validity Days" +msgstr "" + +#. Label of the default_receivable_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Receivable Account" +msgstr "" + +#. Label of the default_sales_contact (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Sales Contact" +msgstr "" + +#. Label of the sales_uom (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Sales Unit of Measure" +msgstr "" + +#. Label of the default_scrap_warehouse (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Scrap Warehouse" +msgstr "" + +#. Label of the default_selling_terms (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Selling Terms" +msgstr "" + +#. Label of the default_service_level_agreement (Check) field in DocType +#. 'Service Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Default Service Level Agreement" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:161 +msgid "Default Service Level Agreement for {0} already exists." +msgstr "" + +#. Label of the default_source_warehouse (Link) field in DocType 'BOM' +#. Label of the default_warehouse (Link) field in DocType 'BOM Creator' +#. Label of the from_warehouse (Link) field in DocType 'Stock Entry' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Default Source Warehouse" +msgstr "" + +#. Label of the stock_uom (Link) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Default Stock UOM" +msgstr "" + +#. Label of the valuation_method (Select) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Stock Valuation Method" +msgstr "" + +#. Label of the supplier_group (Link) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Default Supplier Group" +msgstr "" + +#. Label of the default_target_warehouse (Link) field in DocType 'BOM' +#. Label of the to_warehouse (Link) field in DocType 'Stock Entry' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Default Target Warehouse" +msgstr "" + +#. Label of the territory (Link) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Default Territory" +msgstr "" + +#. Label of the stock_uom (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Unit of Measure" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1382 +msgid "Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You need to either cancel the linked documents or create a new Item." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1362 +msgid "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." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1010 +msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'" +msgstr "" + +#. Label of the valuation_method (Select) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Default Valuation Method" +msgstr "" + +#. Label of the default_warehouse_section (Section Break) field in DocType +#. 'BOM' +#. Label of the section_break_jwgn (Section Break) field in DocType 'Stock +#. Entry' +#. Label of the set_warehouse (Link) field in DocType 'Stock Reconciliation' +#. Label of the default_warehouse (Link) field in DocType 'Stock Settings' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/stock/doctype/item/item.js:950 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Default Warehouse" +msgstr "" + +#. Label of the default_warehouse_for_sales_return (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Warehouse for Sales Return" +msgstr "" + +#. Label of the workstation (Link) field in DocType 'Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Default Workstation" +msgstr "" + +#. Description of the 'Default Account' (Link) field in DocType 'Mode of +#. Payment Account' +#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json +msgid "Default account will be automatically updated in POS Invoice when this mode is selected." +msgstr "" + +#. Description of the 'Price List' (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Default price list for buying or selling this item" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Default settings for your stock-related transactions" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:207 +msgid "Default tax templates for sales, purchase and items are created." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:942 +#: erpnext/stock/doctype/item/item.js:954 +msgid "Default warehouse from Item Defaults." +msgstr "" + +#. Description of the 'Time Between Operations (Mins)' (Int) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Default: 10 mins" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:17 +msgid "Defense" +msgstr "" + +#. Label of the deferred_accounting_section (Section Break) field in DocType +#. 'Company' +#. Label of the deferred_accounting_section (Section Break) field in DocType +#. 'Item' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item/item.json +msgid "Deferred Accounting" +msgstr "" + +#. Label of the deferred_accounting_defaults_section (Section Break) field in +#. DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Deferred Accounting Defaults" +msgstr "" + +#. Label of the deferred_accounting_settings_section (Section Break) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Deferred Accounting Settings" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Label of the deferred_expense_section (Section Break) field in DocType +#. 'Purchase Invoice Item' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +msgid "Deferred Expense" +msgstr "" + +#. Label of the deferred_expense_account (Link) field in DocType 'Purchase +#. Invoice Item' +#. Label of the vf_deferred_expense_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Deferred Expense Account" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Label of the deferred_revenue (Section Break) field in DocType 'POS Invoice +#. Item' +#. Label of the deferred_revenue (Section Break) field in DocType 'Sales +#. Invoice Item' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Deferred Revenue" +msgstr "" + +#. Label of the deferred_revenue_account (Link) field in DocType 'POS Invoice +#. Item' +#. Label of the deferred_revenue_account (Link) field in DocType 'Sales Invoice +#. Item' +#. Label of the vf_deferred_revenue_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Deferred Revenue Account" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.json +msgid "Deferred Revenue and Expense" +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:596 +msgid "Deferred accounting failed for some invoices:" +msgstr "" + +#: erpnext/config/projects.py:39 +msgid "Define Project type." +msgstr "" + +#. Description of the 'End of Life' (Date) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Defines the date after which the item can no longer be used in transactions or manufacturing" +msgstr "" + +#. Description of the 'Payment Terms Template' (Link) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Dekagram/Litre" +msgstr "" + +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:130 +msgid "Delay (In Days)" +msgstr "" + +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:333 +msgid "Delay (in Days)" +msgstr "" + +#. Label of the stop_delay (Int) field in DocType 'Delivery Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Delay between Delivery Stops" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:120 +msgid "Delay in payment (Days)" +msgstr "" + +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:157 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:72 +msgid "Delayed Days" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/delayed_item_report/delayed_item_report.json +msgid "Delayed Item Report" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/delayed_order_report/delayed_order_report.json +msgid "Delayed Order Report" +msgstr "" + +#. Name of a report +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Delayed Tasks Summary" +msgstr "" + +#. Label of the delete_linked_ledger_entries (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Delete Accounting and Stock Ledger entries on deletion of transaction" +msgstr "" + +#. Label of the delete_bin_data_status (Select) field in DocType 'Transaction +#. Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Delete Bins" +msgstr "" + +#. Label of the delete_cancelled_entries (Check) field in DocType 'Repost +#. Accounting Ledger' +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json +msgid "Delete Cancelled Ledger Entries" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: erpnext/hooks.py erpnext/public/js/utils/demo.js:5 +msgid "Delete Demo Data" +msgstr "" + +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.js:66 +msgid "Delete Dimension" +msgstr "" + +#. Label of the delete_leads_and_addresses_status (Select) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Delete Leads and Addresses" +msgstr "" + +#. Label of the delete_transactions_status (Select) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/company/company.js:184 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Delete Transactions" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:254 +msgid "Delete all the Transactions for {0}" +msgstr "" + +#. Label of a Link in the ERPNext Settings Workspace +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +msgid "Deleted Documents" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:293 +msgid "Deleting closing balance..." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:148 +msgid "Deleting rule..." +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list.js:28 +msgid "Deleting {0} and all associated Common Code documents..." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +msgid "Deletion in Progress!" +msgstr "" + +#: erpnext/regional/__init__.py:14 +msgid "Deletion is not permitted for country {0}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:216 +msgid "Deletion process restarted" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:97 +msgid "Deletion will start automatically after submission." +msgstr "" + +#. Label of the delimiter_options (Data) field in DocType 'Bank Statement +#. Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Delimiter options" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:335 +msgid "Deliver (Dropship)" +msgstr "" + +#. Label of the deliver_secondary_items (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Deliver secondary Items" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Purchase Order' +#. Option for the 'Status' (Select) field in DocType 'Serial No' +#. Option for the 'Tracking Status' (Select) field in DocType 'Shipment' +#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:20 +#: erpnext/controllers/website_list_for_contact.py:216 +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:61 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Delivered" +msgstr "" + +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:64 +msgid "Delivered Amount" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:10 +msgid "Delivered At Place" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:11 +msgid "Delivered At Place Unloaded" +msgstr "" + +#. Label of the delivered_by_supplier (Check) field in DocType 'POS Invoice +#. Item' +#. Label of the delivered_by_supplier (Check) field in DocType 'Sales Invoice +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Delivered By Supplier" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:12 +msgid "Delivered Duty Paid" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.json +msgid "Delivered Items To Be Billed" +msgstr "" + +#. Label of the delivered_qty (Float) field in DocType 'POS Invoice Item' +#. Label of the delivered_qty (Float) field in DocType 'Sales Invoice Item' +#. Label of the delivered_qty (Float) field in DocType 'Sales Order Item' +#. Label of the delivered_qty (Float) field in DocType 'Serial and Batch Entry' +#. Label of the delivered_qty (Float) field in DocType 'Stock Reservation +#. Entry' +#. Label of the delivered_qty (Float) field in DocType 'Subcontracting Inward +#. Order Item' +#. Label of the delivered_qty (Float) field in DocType 'Subcontracting Inward +#. Order Secondary Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:63 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:131 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +msgid "Delivered Qty" +msgstr "" + +#. Label of the delivered_qty (Float) field in DocType 'Pick List Item' +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Delivered Qty (in Stock UOM)" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:57 +msgid "Delivered Qty cannot be increased by more than {0} for item {1}" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:50 +msgid "Delivered Qty cannot be reduced by more than {0} for item {1}" +msgstr "" + +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:102 +msgid "Delivered Quantity" +msgstr "" + +#. Label of the delivered_by_supplier (Check) field in DocType 'Purchase +#. Invoice Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +msgid "Delivered by Supplier" +msgstr "" + +#. Label of the delivered_by_supplier (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Delivered by Supplier (Drop Ship)" +msgstr "" + +#: erpnext/templates/pages/material_request_info.html:66 +msgid "Delivered: {0}" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Delivery" +msgstr "" + +#. Label of the delivery_date (Date) field in DocType 'Master Production +#. Schedule Item' +#. Label of the delivery_date (Date) field in DocType 'Sales Forecast Item' +#. Label of the delivery_date (Date) field in DocType 'Delivery Schedule Item' +#. Label of the delivery_date (Date) field in DocType 'Sales Order' +#. Label of the delivery_date (Date) field in DocType 'Sales Order Item' +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 +#: erpnext/public/js/utils.js:891 +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:662 +#: erpnext/selling/doctype/sales_order/sales_order.js:1571 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:332 +msgid "Delivery Date" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Delivery +#. Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Delivery Details" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:119 +msgid "Delivery From Date" +msgstr "" + +#. Name of a role +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/vehicle/vehicle.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Delivery Manager" +msgstr "" + +#. Label of the delivery_note (Link) field in DocType 'POS Invoice Item' +#. Label of the delivery_note (Link) field in DocType 'Sales Invoice Item' +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Name of a DocType +#. Label of the delivery_note (Link) field in DocType 'Delivery Stop' +#. Label of the delivery_note (Link) field in DocType 'Packing Slip' +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Label of the delivery_note (Link) field in DocType 'Shipment Delivery Note' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:434 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45 +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:291 +#: erpnext/accounts/report/sales_register/sales_register.py:245 +#: erpnext/selling/doctype/sales_order/sales_order.js:1086 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:81 +#: erpnext/selling/doctype/selling_settings/selling_settings.js:52 +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:54 +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/pick_list/pick_list.js:137 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:59 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:152 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Delivery Note" +msgstr "" + +#. Label of the dn_detail (Data) field in DocType 'POS Invoice Item' +#. Label of the dn_detail (Data) field in DocType 'Sales Invoice Item' +#. Label of the items (Table) field in DocType 'Delivery Note' +#. Name of a DocType +#. Label of the dn_detail (Data) field in DocType 'Packing Slip Item' +#. Label of the delivery_note_item (Data) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Delivery Note Item" +msgstr "" + +#. Label of the delivery_note_no (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Delivery Note No" +msgstr "" + +#. Label of the pi_detail (Data) field in DocType 'Packing Slip Item' +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +msgid "Delivery Note Packed Item" +msgstr "" + +#. Label of a Link in the Selling Workspace +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/report/delivery_note_trends/delivery_note_trends.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Delivery Note Trends" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1022 +msgid "Delivery Note {0} is not submitted" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1240 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75 +msgid "Delivery Notes" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:95 +msgid "Delivery Notes should not be in draft state when submitting a Delivery Trip. The following Delivery Notes are still in draft state: {0}. Please submit them first." +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:150 +msgid "Delivery Notes {0} updated" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:657 +#: erpnext/selling/doctype/sales_order/sales_order.js:684 +msgid "Delivery Schedule" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +msgid "Delivery Schedule Item" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/stock.json +msgid "Delivery Settings" +msgstr "" + +#. Name of a DocType +#. Label of the delivery_stops (Table) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Delivery Stop" +msgstr "" + +#. Label of the delivery_service_stops (Section Break) field in DocType +#. 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Delivery Stops" +msgstr "" + +#. Label of the delivery_to (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Delivery To" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:125 +msgid "Delivery To Date" +msgstr "" + +#. Label of the delivery_trip (Link) field in DocType 'Delivery Note' +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/delivery_note/delivery_note.js:280 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Delivery Trip" +msgstr "" + +#. Name of a role +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/vehicle/vehicle.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Delivery User" +msgstr "" + +#. Label of the delivery_warehouse (Link) field in DocType 'Subcontracting +#. Inward Order Item' +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +msgid "Delivery Warehouse" +msgstr "" + +#. Label of the heading_delivery_to (Heading) field in DocType 'Shipment' +#. Label of the delivery_to_type (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Delivery to" +msgstr "" + +#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in +#. DocType 'Master Production Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:233 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:312 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:377 +msgid "Demand" +msgstr "" + +#. Label of the demand_qty (Float) field in DocType 'Sales Forecast Item' +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1016 +msgid "Demand Qty" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:324 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:389 +msgid "Demand vs Supply" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:551 +msgid "Demo Bank Account" +msgstr "" + +#. Label of the demo_company (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Demo Company" +msgstr "" + +#: erpnext/setup/demo.py:51 +msgid "Demo Data creation failed." +msgstr "" + +#: erpnext/public/js/utils/demo.js:25 +msgid "Demo data cleared" +msgstr "" + +#: erpnext/setup/demo.py:42 +msgid "Demo data creation failed. Check notifications for more info." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:18 +msgid "Department Stores" +msgstr "" + +#. Label of the departure_time (Datetime) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Departure Time" +msgstr "" + +#. Label of the dependant_sle_voucher_detail_no (Data) field in DocType 'Stock +#. Ledger Entry' +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Dependant SLE Voucher Detail No" +msgstr "" + +#. Name of a DocType +#: erpnext/projects/doctype/dependent_task/dependent_task.json +msgid "Dependent Task" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:179 +msgid "Dependent Task {0} is not a Template Task" +msgstr "" + +#. Label of the depends_on (Table) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Dependent Tasks" +msgstr "" + +#. Label of the depends_on_tasks (Code) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Depends on Tasks" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the deposit (Currency) field in DocType 'Bank Transaction' +#. Option for the 'Transaction Type' (Select) field in DocType 'Bank +#. Transaction Rule' +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:95 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:162 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:247 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:314 +#: banking/src/pages/BankStatementImporter.tsx:194 +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:60 +msgid "Deposit" +msgstr "" + +#. Label of the daily_prorata_based (Check) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the daily_prorata_based (Check) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Depreciate based on daily pro-rata" +msgstr "" + +#. Label of the shift_based (Check) field in DocType 'Asset Depreciation +#. Schedule' +#. Label of the shift_based (Check) field in DocType 'Asset Finance Book' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Depreciate based on shifts" +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:212 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:450 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:518 +msgid "Depreciated Amount" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset' +#. Group in Asset's connections +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:109 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181 +#: erpnext/accounts/report/account_balance/account_balance.js:44 +#: erpnext/accounts/report/cash_flow/cash_flow.py:170 +#: erpnext/assets/doctype/asset/asset.json +msgid "Depreciation" +msgstr "" + +#. Label of the depreciation_amount (Currency) field in DocType 'Depreciation +#. Schedule' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:167 +#: erpnext/assets/doctype/asset/asset.js:379 +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +msgid "Depreciation Amount" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +msgid "Depreciation Amount during the period" +msgstr "" + +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:149 +msgid "Depreciation Date" +msgstr "" + +#. Label of the section_break_33 (Section Break) field in DocType 'Asset' +#. Label of the depreciation_details_section (Section Break) field in DocType +#. 'Asset Depreciation Schedule' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "Depreciation Details" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +msgid "Depreciation Eliminated due to disposal of assets" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:185 +#: erpnext/assets/doctype/asset/asset.js:122 +msgid "Depreciation Entry" +msgstr "" + +#. Label of the depr_entry_posting_status (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Depreciation Entry Posting Status" +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:136 +msgid "Depreciation Entry against asset {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:261 +msgid "Depreciation Entry against {0} worth {1}" +msgstr "" + +#. Label of the depreciation_expense_account (Link) field in DocType 'Asset +#. Category Account' +#. Label of the depreciation_expense_account (Link) field in DocType 'Company' +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +#: erpnext/setup/doctype/company/company.json +msgid "Depreciation Expense Account" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:308 +msgid "Depreciation Expense Account should be an Income or Expense Account." +msgstr "" + +#. Label of the depreciation_method (Select) field in DocType 'Asset' +#. Label of the depreciation_method (Select) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the depreciation_method (Select) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Depreciation Method" +msgstr "" + +#. Label of the depreciation_options (Section Break) field in DocType 'Asset +#. Category' +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Depreciation Options" +msgstr "" + +#. Label of the depreciation_start_date (Date) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Depreciation Posting Date" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:919 +msgid "Depreciation Posting Date cannot be before Available-for-use Date" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:387 +msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:720 +msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" +msgstr "" + +#. Label of the depreciation_schedule_sb (Section Break) field in DocType +#. 'Asset' +#. Label of the depreciation_schedule_section (Section Break) field in DocType +#. 'Asset Depreciation Schedule' +#. Label of the depreciation_schedule (Table) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the depreciation_schedule_section (Section Break) field in DocType +#. 'Asset Shift Allocation' +#. Label of the depreciation_schedule (Table) field in DocType 'Asset Shift +#. Allocation' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +#: erpnext/workspace_sidebar/assets.json +msgid "Depreciation Schedule" +msgstr "" + +#. Label of the depreciation_schedule_view (HTML) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Depreciation Schedule View" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:485 +msgid "Depreciation cannot be calculated for fully depreciated assets" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +msgid "Depreciation eliminated via reversal" +msgstr "" + +#. Label of the description_rules (Table) field in DocType 'Bank Transaction +#. Rule' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Description Rules" +msgstr "" + +#. Label of the description_of_content (Small Text) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Description of Content" +msgstr "" + +#. Description of the 'Template Name' (Data) field in DocType 'Financial Report +#. Template' +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +msgid "Descriptive name for your template (e.g., 'Standard P&L', 'Detailed Balance Sheet')" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:14 +msgid "Designer" +msgstr "" + +#. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' +#. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Detailed Reason" +msgstr "" + +#. Label of the detected_amount_format (Select) field in DocType 'Bank +#. Statement Import Log' +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:191 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Detected Amount Format" +msgstr "" + +#. Label of the detected_date_format (Data) field in DocType 'Bank Statement +#. Import Log' +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Detected Date Format" +msgstr "" + +#. Label of the detected_header_index (Int) field in DocType 'Bank Statement +#. Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Detected Header Index" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:174 +msgid "Detected Tables" +msgstr "" + +#. Label of the detected_transaction_ending_index (Int) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Detected Transaction Ending Index" +msgstr "" + +#. Label of the detected_transaction_starting_index (Int) field in DocType +#. 'Bank Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Detected Transaction Starting Index" +msgstr "" + +#. Label of the determine_address_tax_category_from (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Determine Address Tax Category from" +msgstr "" + +#. Description of the 'Tax Category' (Link) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Determines which tax rules apply to this supplier" +msgstr "" + +#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Diesel" +msgstr "" + +#. Label of the difference_heading (Heading) field in DocType 'Bisect +#. Accounting Statements' +#. Label of the difference (Float) field in DocType 'Bisect Nodes' +#. Label of the difference (Currency) field in DocType 'POS Closing Entry +#. Detail' +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:106 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:792 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:871 +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:173 +#: erpnext/public/js/bank_reconciliation_tool/number_card.js:30 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:130 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:35 +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:35 +msgid "Difference" +msgstr "" + +#. Label of the difference (Currency) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Difference (Dr - Cr)" +msgstr "" + +#. Label of the difference_account (Link) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the difference_account (Link) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the difference_account (Link) field in DocType 'Asset Value +#. Adjustment' +#. Label of the expense_account (Link) field in DocType 'Stock Entry Detail' +#. Label of the expense_account (Link) field in DocType 'Stock Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:314 +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Difference Account" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:167 +msgid "Difference Account in Items Table" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 +msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 +msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" + +#. Label of the difference_amount (Currency) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the difference_amount (Currency) field in DocType 'Payment +#. Reconciliation Payment' +#. Label of the difference_amount (Currency) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the difference_amount (Currency) field in DocType 'Asset Value +#. Adjustment' +#. Label of the difference_amount (Currency) field in DocType 'Stock +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:329 +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Difference Amount" +msgstr "" + +#. Label of the difference_amount (Currency) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Difference Amount (Company Currency)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:204 +msgid "Difference Amount must be zero" +msgstr "" + +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:49 +msgid "Difference In" +msgstr "" + +#. Label of the gain_loss_posting_date (Date) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the gain_loss_posting_date (Date) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the difference_posting_date (Date) field in DocType 'Purchase +#. Invoice Advance' +#. Label of the difference_posting_date (Date) field in DocType 'Sales Invoice +#. Advance' +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Difference Posting Date" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:120 +msgid "Difference Qty" +msgstr "" + +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:136 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:172 +msgid "Difference Value" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.js:504 +msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +msgid "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." +msgstr "" + +#. Label of the dimension_defaults (Table) field in DocType 'Accounting +#. Dimension' +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json +msgid "Dimension Defaults" +msgstr "" + +#. Label of the dimension_details_tab (Tab Break) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Dimension Details" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:92 +msgid "Dimension Filter" +msgstr "" + +#. Label of the dimension_filter_help (HTML) field in DocType 'Accounting +#. Dimension Filter' +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Dimension Filter Help" +msgstr "" + +#. Label of the label (Data) field in DocType 'Accounting Dimension' +#. Label of the dimension_name (Data) field in DocType 'Inventory Dimension' +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Dimension Name" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.json +msgid "Dimension-wise Accounts Balance Report" +msgstr "" + +#. Label of the dimensions_section (Section Break) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Dimensions" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Direct Expense" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146 +msgid "Direct Expenses" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242 +msgid "Direct Income" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:346 +msgid "Direct return is not allowed for Timesheet." +msgstr "" + +#. Label of the disabled (Check) field in DocType 'Account' +#. Label of the disabled (Check) field in DocType 'Accounting Dimension' +#. Label of the disable (Check) field in DocType 'Pricing Rule' +#. Label of the disable (Check) field in DocType 'Promotional Scheme' +#. Label of the disable (Check) field in DocType 'Promotional Scheme Price +#. Discount' +#. Label of the disable (Check) field in DocType 'Promotional Scheme Product +#. Discount' +#. Label of the disable (Check) field in DocType 'Putaway Rule' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +msgid "Disable" +msgstr "" + +#. Label of the disable_capacity_planning (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Disable Capacity Planning" +msgstr "" + +#. Label of the disable_cumulative_threshold (Check) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Disable Cumulative Threshold" +msgstr "" + +#. Label of the disable_in_words (Check) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Disable In Words" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:182 +msgid "Disable Opening Balance Calculation" +msgstr "" + +#. Label of the disable_rounded_total (Check) field in DocType 'POS Profile' +#. Label of the disable_rounded_total (Check) field in DocType 'Purchase +#. Invoice' +#. Label of the disable_rounded_total (Check) field in DocType 'Sales Invoice' +#. Label of the disable_rounded_total (Check) field in DocType 'Purchase Order' +#. Label of the disable_rounded_total (Check) field in DocType 'Supplier +#. Quotation' +#. Label of the disable_rounded_total (Check) field in DocType 'Quotation' +#. Label of the disable_rounded_total (Check) field in DocType 'Sales Order' +#. Label of the disable_rounded_total (Check) field in DocType 'Global +#. Defaults' +#. Label of the disable_rounded_total (Check) field in DocType 'Delivery Note' +#. Label of the disable_rounded_total (Check) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/global_defaults/global_defaults.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Disable Rounded Total" +msgstr "" + +#. Label of the disable_serial_no_and_batch_selector (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Disable Serial No and Batch selector" +msgstr "" + +#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Disable Stock Delivered But Not Billed in Sales Return" +msgstr "" + +#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Disable Transaction Threshold" +msgstr "" + +#. Label of the disable_last_purchase_rate (Check) field in DocType 'Buying +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Disable last purchase rate" +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Financial Report +#. Template' +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +msgid "Disable template to prevent use in reports" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:35 +msgid "Disabled Account Selected" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:97 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:505 +msgid "Disabled Bank Account" +msgstr "" + +#: erpnext/stock/doctype/packed_item/packed_item.py:216 +msgid "Disabled Product Bundle" +msgstr "" + +#: erpnext/stock/utils.py:424 +msgid "Disabled Warehouse {0} cannot be used for this transaction." +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Disabled items cannot be selected in any transaction." +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:118 +msgid "Disabled pricing rules since this {} is an internal transfer" +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:134 +msgid "Disabled tax included prices since this {} is an internal transfer" +msgstr "" + +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 +msgid "Disabled template must not be default template" +msgstr "" + +#. Description of the 'Scan Mode' (Check) field in DocType 'Stock +#. Reconciliation' +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Disables auto-fetching of existing quantity" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/manufacturing/doctype/work_order/work_order.js:1068 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:387 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:430 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Disassemble" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:225 +msgid "Disassemble Order" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:198 +msgid "Disassemble Qty cannot be less than or equal to 0." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:457 +msgid "Disassemble Qty cannot be less than or equal to 0." +msgstr "" + +#. Label of the disassembled_qty (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Disassembled Qty" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:64 +msgid "Disburse Loan" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js:9 +msgid "Disbursed" +msgstr "" + +#. Option for the 'Action on New Invoice' (Select) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Discard Changes and Load New Invoice" +msgstr "" + +#. Label of the discount (Float) field in DocType 'Payment Schedule' +#. Label of the discount (Float) field in DocType 'Payment Term' +#. Label of the discount (Float) field in DocType 'Payment Terms Template +#. Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:406 +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:151 +#: erpnext/templates/form_grid/item_grid.html:71 +msgid "Discount" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_details.js:178 +msgid "Discount (%)" +msgstr "" + +#. Label of the discount_percentage (Percent) field in DocType 'POS Invoice +#. Item' +#. Label of the discount_percentage (Percent) field in DocType 'Sales Invoice +#. Item' +#. Label of the discount_percentage (Percent) field in DocType 'Quotation Item' +#. Label of the discount_percentage (Percent) field in DocType 'Sales Order +#. Item' +#. Label of the discount_percentage (Float) field in DocType 'Delivery Note +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Discount (%) on Price List Rate with Margin" +msgstr "" + +#. Label of the additional_discount_account (Link) field in DocType 'Sales +#. Invoice' +#. Label of the discount_account (Link) field in DocType 'Sales Invoice Item' +#. Label of the default_discount_account (Link) field in DocType 'Item Default' +#. Label of the vf_default_discount_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Discount Account" +msgstr "" + +#. Label of the discount_amount (Currency) field in DocType 'POS Invoice Item' +#. Option for the 'Rate or Discount' (Select) field in DocType 'Pricing Rule' +#. Label of the discount_amount (Currency) field in DocType 'Pricing Rule' +#. Option for the 'Discount Type' (Select) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the discount_amount (Currency) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the discount_amount (Currency) field in DocType 'Sales Invoice +#. Item' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the discount_amount (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the discount_amount (Currency) field in DocType 'Quotation Item' +#. Label of the discount_amount (Currency) field in DocType 'Sales Order Item' +#. Label of the discount_amount (Currency) field in DocType 'Delivery Note +#. Item' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Discount Amount" +msgstr "" + +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:58 +msgid "Discount Amount in Transaction" +msgstr "" + +#. Label of the discount_date (Date) field in DocType 'Payment Schedule' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +msgid "Discount Date" +msgstr "" + +#. Option for the 'Rate or Discount' (Select) field in DocType 'Pricing Rule' +#. Label of the discount_percentage (Float) field in DocType 'Pricing Rule' +#. Option for the 'Discount Type' (Select) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the discount_percentage (Float) field in DocType 'Promotional +#. Scheme Price Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "Discount Percentage" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:56 +msgid "Discount Percentage can be applied either against a Price List or for all Price List." +msgstr "" + +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:52 +msgid "Discount Percentage in Transaction" +msgstr "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Payment Term' +#. Label of the section_break_8 (Section Break) field in DocType 'Payment Terms +#. Template Detail' +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Discount Settings" +msgstr "" + +#. Label of the discount_type (Select) field in DocType 'Payment Schedule' +#. Label of the discount_type (Select) field in DocType 'Payment Term' +#. Label of the discount_type (Select) field in DocType 'Payment Terms Template +#. Detail' +#. Label of the rate_or_discount (Select) field in DocType 'Promotional Scheme +#. Price Discount' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "Discount Type" +msgstr "" + +#. Label of the discount_validity (Int) field in DocType 'Payment Schedule' +#. Label of the discount_validity (Int) field in DocType 'Payment Term' +#. Label of the discount_validity (Int) field in DocType 'Payment Terms +#. Template Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Discount Validity" +msgstr "" + +#. Label of the discount_validity_based_on (Select) field in DocType 'Payment +#. Schedule' +#. Label of the discount_validity_based_on (Select) field in DocType 'Payment +#. Term' +#. Label of the discount_validity_based_on (Select) field in DocType 'Payment +#. Terms Template Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Discount Validity Based On" +msgstr "" + +#. Label of the discount_and_margin (Section Break) field in DocType 'POS +#. Invoice Item' +#. Label of the section_break_26 (Section Break) field in DocType 'Purchase +#. Invoice Item' +#. Label of the discount_and_margin (Section Break) field in DocType 'Sales +#. Invoice Item' +#. Label of the discount_and_margin_section (Section Break) field in DocType +#. 'Purchase Order Item' +#. Label of the discount_and_margin_section (Section Break) field in DocType +#. 'Supplier Quotation Item' +#. Label of the discount_and_margin (Section Break) field in DocType 'Quotation +#. Item' +#. Label of the discount_and_margin (Section Break) field in DocType 'Sales +#. Order Item' +#. Label of the discount_and_margin (Section Break) field in DocType 'Delivery +#. Note Item' +#. Label of the discount_and_margin_section (Section Break) field in DocType +#. 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Discount and Margin" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:835 +msgid "Discount cannot be greater than 100%" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:416 +msgid "Discount cannot be greater than 100%." +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:91 +msgid "Discount must be less than 100" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 +msgid "Discount of {} applied as per Payment Term" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'Pricing +#. Rule' +#. Label of the section_break_10 (Section Break) field in DocType 'Promotional +#. Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Discount on Other Item" +msgstr "" + +#. Label of the discount_percentage (Percent) field in DocType 'Purchase +#. Invoice Item' +#. Label of the discount_percentage (Percent) field in DocType 'Purchase Order +#. Item' +#. Label of the discount_percentage (Percent) field in DocType 'Supplier +#. Quotation Item' +#. Label of the discount_percentage (Percent) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Discount on Price List Rate (%)" +msgstr "" + +#. Label of the discounted_amount (Currency) field in DocType 'Overdue Payment' +#. Label of the discounted_amount (Currency) field in DocType 'Payment +#. Schedule' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +msgid "Discounted Amount" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json +msgid "Discounted Invoice" +msgstr "" + +#. Label of the sb_2 (Section Break) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Discounts" +msgstr "" + +#. Description of the 'Is Recursive' (Check) field in DocType 'Pricing Rule' +#. Description of the 'Is Recursive' (Check) field in DocType 'Promotional +#. Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Discounts to be applied in sequential ranges like buy 1 get 1, buy 2 get 2, buy 3 get 3 and so on" +msgstr "" + +#. Label of the general_and_payment_ledger_mismatch (Check) field in DocType +#. 'Ledger Health Monitor' +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +msgid "Discrepancy between General and Payment Ledger" +msgstr "" + +#. Label of the discretionary_reason (Data) field in DocType 'Loyalty Point +#. Entry' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +msgid "Discretionary Reason" +msgstr "" + +#. Label of the dislike_count (Float) field in DocType 'Video' +#: erpnext/utilities/doctype/video/video.json +#: erpnext/utilities/report/youtube_interactions/youtube_interactions.py:27 +msgid "Dislikes" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:488 +msgid "Dispatch" +msgstr "" + +#. Label of the dispatch_address_display (Text Editor) field in DocType +#. 'Purchase Invoice' +#. Label of the dispatch_address (Text Editor) field in DocType 'Sales Invoice' +#. Label of the dispatch_address (Link) field in DocType 'Purchase Order' +#. Label of the dispatch_address (Text Editor) field in DocType 'Sales Order' +#. Label of the dispatch_address (Text Editor) field in DocType 'Delivery Note' +#. Label of the dispatch_address_display (Text Editor) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Dispatch Address" +msgstr "" + +#. Label of the dispatch_address_display (Text Editor) field in DocType +#. 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Dispatch Address Details" +msgstr "" + +#. Label of the dispatch_address_name (Link) field in DocType 'Sales Invoice' +#. Label of the dispatch_address_name (Link) field in DocType 'Sales Order' +#. Label of the dispatch_address_name (Link) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Dispatch Address Name" +msgstr "" + +#. Label of the dispatch_address (Link) field in DocType 'Purchase Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Dispatch Address Template" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Delivery +#. Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Dispatch Information" +msgstr "" + +#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:11 +#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:20 +#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:28 +#: erpnext/setup/setup_wizard/operations/defaults_setup.py:58 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:340 +msgid "Dispatch Notification" +msgstr "" + +#. Label of the dispatch_attachment (Link) field in DocType 'Delivery Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Dispatch Notification Attachment" +msgstr "" + +#. Label of the dispatch_template (Link) field in DocType 'Delivery Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Dispatch Notification Template" +msgstr "" + +#. Label of the sb_dispatch (Section Break) field in DocType 'Delivery +#. Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Dispatch Settings" +msgstr "" + +#. Label of the display_data_formatting_section (Section Break) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Display & Data Formatting" +msgstr "" + +#. Label of the display_name (Data) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Display Name" +msgstr "" + +#. Label of the disposal_date (Date) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Disposal Date" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:840 +msgid "Disposal date {0} cannot be before {1} date {2} of the asset." +msgstr "" + +#. Label of the distance (Float) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Distance" +msgstr "" + +#. Label of the uom (Link) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Distance UOM" +msgstr "" + +#. Label of the acc_pay_dist_from_left_edge (Float) field in DocType 'Cheque +#. Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Distance from left edge" +msgstr "" + +#. Label of the acc_pay_dist_from_top_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the date_dist_from_top_edge (Float) field in DocType 'Cheque Print +#. Template' +#. Label of the payer_name_from_top_edge (Float) field in DocType 'Cheque Print +#. Template' +#. Label of the amt_in_words_from_top_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the amt_in_figures_from_top_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the acc_no_dist_from_top_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the signatory_from_top_edge (Float) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Distance from top edge" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Distinct unit of an Item" +msgstr "" + +#. Label of the distribute_additional_costs_based_on (Select) field in DocType +#. 'Subcontracting Order' +#. Label of the distribute_additional_costs_based_on (Select) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Distribute Additional Costs Based On " +msgstr "" + +#. Label of the distribute_charges_based_on (Select) field in DocType 'Landed +#. Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Distribute Charges Based On" +msgstr "" + +#. Label of the distribute_equally (Check) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Distribute Equally" +msgstr "" + +#. Option for the 'Distribute Charges Based On' (Select) field in DocType +#. 'Landed Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Distribute Manually" +msgstr "" + +#. Label of the distributed_discount_amount (Currency) field in DocType 'POS +#. Invoice Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Purchase Invoice Item' +#. Label of the distributed_discount_amount (Currency) field in DocType 'Sales +#. Invoice Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Purchase Order Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Supplier Quotation Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Quotation Item' +#. Label of the distributed_discount_amount (Currency) field in DocType 'Sales +#. Order Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Delivery Note Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Distributed Discount Amount" +msgstr "" + +#. Label of the distribution_frequency (Select) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Distribution Frequency" +msgstr "" + +#. Label of the distribution_id (Data) field in DocType 'Monthly Distribution' +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +msgid "Distribution Name" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:2 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:240 +msgid "Distributor" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343 +msgid "Dividends Paid" +msgstr "" + +#. Option for the 'Marital Status' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Divorced" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/report/lead_details/lead_details.js:41 +msgid "Do Not Contact" +msgstr "" + +#. Label of the do_not_explode (Check) field in DocType 'BOM Creator Item' +#. Label of the do_not_explode (Check) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Do Not Explode" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:129 +msgid "Do Not Use Batchwise Valuation" +msgstr "" + +#. Label of the do_not_fetch_incoming_rate_from_serial_no (Check) field in +#. DocType 'Stock Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Do not fetch incoming rate from Serial No" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Do not import" +msgstr "" + +#. Description of the 'Hide Currency Symbol' (Select) field in DocType 'Global +#. Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Do not show any symbol like $ etc next to currencies." +msgstr "" + +#. Label of the do_not_update_serial_batch_on_creation_of_auto_bundle (Check) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Do not update Serial / Batch on creation of auto bundle" +msgstr "" + +#. Label of the do_not_update_variants (Check) field in DocType 'Item Variant +#. Settings' +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Do not update variants on save" +msgstr "" + +#. Label of the do_not_use_batchwise_valuation (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Do not use Batch-wise Valuation" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:957 +msgid "Do you really want to restore this scrapped asset?" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:26 +msgid "Do you still want to enable immutable ledger?" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:109 +msgid "Do you still want to enable negative inventory?" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:42 +msgid "Do you want to change valuation method?" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:158 +msgid "Do you want to notify all the customers by email?" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:334 +msgid "Do you want to submit the material request" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:108 +msgid "Do you want to submit the stock entry?" +msgstr "" + +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 +#: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 +msgid "DocType can be one of them {0}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +msgid "DocType {0} does not exist" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:295 +msgid "DocType {0} with company field '{1}' is already in the list" +msgstr "" + +#. Label of the doctypes_to_delete (Table) field in DocType 'Transaction +#. Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "DocTypes To Delete" +msgstr "" + +#. Description of the 'Excluded DocTypes' (Table) field in DocType 'Transaction +#. Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "DocTypes that will NOT be deleted." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:84 +msgid "DocTypes with a company field:" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:88 +msgid "DocTypes without a company field:" +msgstr "" + +#: erpnext/templates/pages/search_help.py:22 +msgid "Docs Search" +msgstr "" + +#. Label of the document_count (Int) field in DocType 'Transaction Deletion +#. Record To Delete' +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Document Count" +msgstr "" + +#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts +#. Settings' +#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying +#. Settings' +#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling +#. Settings' +#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/public/js/utils/naming_series.js:7 +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Document Naming" +msgstr "" + +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 +msgid "Document No" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Subscription Invoice' +#: erpnext/accounts/doctype/subscription_invoice/subscription_invoice.json +msgid "Document Type " +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66 +msgid "Document Type already used as a dimension" +msgstr "" + +#. Description of the 'Reconciliation queue size' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Documents Processed on each trigger. Queue Size should be between 5 and 100" +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:260 +msgid "Documents: {0} have deferred revenue/expense enabled for them. Cannot repost." +msgstr "" + +#. Label of the dont_create_loyalty_points (Check) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Don't Create Loyalty Points" +msgstr "" + +#. Label of the dont_enforce_free_item_qty (Check) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Don't Enforce Free Item Qty" +msgstr "" + +#. Label of the dont_recompute_tax (Check) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the dont_recompute_tax (Check) field in DocType 'Sales Taxes and +#. Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Don't Recompute Tax" +msgstr "" + +#. Label of the dont_reserve_sales_order_qty_on_sales_return (Check) field in +#. DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Don't reserve Sales Order qty on sales return" +msgstr "" + +#. Label of the doors (Int) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Doors" +msgstr "" + +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Depreciation Schedule' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Double Declining Balance" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:247 +msgid "Download CSV Template" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:145 +msgid "Download PDF for Supplier" +msgstr "" + +#. Label of the download_materials_required (Button) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Download Required Materials" +msgstr "" + +#. Label of the downtime (Data) field in DocType 'Asset Repair' +#. Label of the downtime (Float) field in DocType 'Downtime Entry' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Downtime" +msgstr "" + +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:93 +msgid "Downtime (In Hours)" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Downtime Analysis" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Downtime Entry" +msgstr "" + +#. Label of the downtime_reason_section (Section Break) field in DocType +#. 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Downtime Reason" +msgstr "" + +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:246 +msgid "Dr/Cr" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:298 +msgid "Drag a box to move it, or drag a corner to resize. The table is re-read from the new region automatically." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Dram" +msgstr "" + +#. Name of a DocType +#. Label of the driver (Link) field in DocType 'Delivery Note' +#. Label of the driver (Link) field in DocType 'Delivery Trip' +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Driver" +msgstr "" + +#. Label of the driver_address (Link) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Driver Address" +msgstr "" + +#. Label of the driver_email (Data) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Driver Email" +msgstr "" + +#. Label of the driver_name (Data) field in DocType 'Delivery Note' +#. Label of the driver_name (Data) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Driver Name" +msgstr "" + +#. Label of the class (Data) field in DocType 'Driving License Category' +#: erpnext/setup/doctype/driving_license_category/driving_license_category.json +msgid "Driver licence class" +msgstr "" + +#. Label of the driving_license_categories (Section Break) field in DocType +#. 'Driver' +#: erpnext/setup/doctype/driver/driver.json +msgid "Driving License Categories" +msgstr "" + +#. Label of the driving_license_category (Table) field in DocType 'Driver' +#. Name of a DocType +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/driving_license_category/driving_license_category.json +msgid "Driving License Category" +msgstr "" + +#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item' +#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item' +#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order' +#. Label of the drop_ship_section (Section Break) field in DocType 'Sales Order +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Drop Ship" +msgstr "" + +#: banking/src/components/ui/file-dropzone.tsx:36 +msgid "Drop a file here, or click to select a file" +msgstr "" + +#: banking/src/components/ui/file-dropzone.tsx:36 +msgid "Drop some files here, or click to select files" +msgstr "" + +#: erpnext/accounts/party.py:719 +msgid "Due Date cannot be after {0}" +msgstr "" + +#: erpnext/accounts/party.py:695 +msgid "Due Date cannot be before {0}" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:167 +msgid "Due to stock closing entry {0}, you cannot repost item valuation before {1}" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:158 +#: erpnext/workspace_sidebar/banking.json +msgid "Dunning" +msgstr "" + +#. Label of the dunning_amount (Currency) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "Dunning Amount" +msgstr "" + +#. Label of the base_dunning_amount (Currency) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "Dunning Amount (Company Currency)" +msgstr "" + +#. Label of the dunning_fee (Currency) field in DocType 'Dunning' +#. Label of the dunning_fee (Currency) field in DocType 'Dunning Type' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +msgid "Dunning Fee" +msgstr "" + +#. Label of the text_block_section (Section Break) field in DocType 'Dunning +#. Type' +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +msgid "Dunning Letter" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Dunning Letter Text" +msgstr "" + +#. Label of the dunning_level (Int) field in DocType 'Overdue Payment' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +msgid "Dunning Level" +msgstr "" + +#. Label of the dunning_type (Link) field in DocType 'Dunning' +#. Name of a DocType +#. Label of the dunning_type (Data) field in DocType 'Dunning Type' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +#: erpnext/workspace_sidebar/banking.json +msgid "Dunning Type" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:178 +msgid "Duplicate Customer Group" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:190 +msgid "Duplicate DocType" +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:69 +msgid "Duplicate Entry. Please check Authorization Rule {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:414 +msgid "Duplicate Finance Book" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:172 +msgid "Duplicate Item Group" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:102 +msgid "Duplicate Item Under Same Parent" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:80 +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.py:37 +msgid "Duplicate Operating Component {0} found in Operating Components" +msgstr "" + +#: erpnext/accounts/doctype/pos_settings/pos_settings.py:44 +msgid "Duplicate POS Fields" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:106 +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:64 +msgid "Duplicate POS Invoices found" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:155 +msgid "Duplicate Payment Schedule selected" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:83 +msgid "Duplicate Project with Tasks" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:159 +msgid "Duplicate Sales Invoices found" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1492 +msgid "Duplicate Serial Number Error" +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:80 +msgid "Duplicate Stock Closing Entry" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:177 +msgid "Duplicate customer group found in the customer group table" +msgstr "" + +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.py:44 +msgid "Duplicate entry against the item code {0} and manufacturer {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:189 +msgid "Duplicate entry: {0}{1}" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:172 +msgid "Duplicate item group found in the item group table" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:186 +msgid "Duplicate project has been created" +msgstr "" + +#: erpnext/utilities/transaction_base.py:112 +msgid "Duplicate row {0} with same {1}" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:157 +msgid "Duplicate {0} found in the table" +msgstr "" + +#. Label of the duration (Int) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Duration (Days)" +msgstr "" + +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:67 +msgid "Duration in Days" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291 +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256 +msgid "Duties and Taxes" +msgstr "" + +#. Label of the dynamic_condition_tab (Tab Break) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Dynamic Condition" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Dyne" +msgstr "" + +#: erpnext/regional/italy/utils.py:228 erpnext/regional/italy/utils.py:248 +#: erpnext/regional/italy/utils.py:258 erpnext/regional/italy/utils.py:266 +#: erpnext/regional/italy/utils.py:273 erpnext/regional/italy/utils.py:277 +#: erpnext/regional/italy/utils.py:284 erpnext/regional/italy/utils.py:293 +#: erpnext/regional/italy/utils.py:318 erpnext/regional/italy/utils.py:325 +#: erpnext/regional/italy/utils.py:430 +msgid "E-Invoicing Information Missing" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "EAN" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "EAN-13" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "EAN-8" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "EMU Of Charge" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "EMU of current" +msgstr "" + +#. Label of a Desktop Icon +#: erpnext/desktop_icon/erpnext.json +msgid "ERPNext" +msgstr "" + +#. Label of a Desktop Icon +#. Name of a Workspace +#. Title of a Workspace Sidebar +#: erpnext/desktop_icon/erpnext_settings.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "ERPNext Settings" +msgstr "" + +#. Label of the user_id (Data) field in DocType 'Employee Group Table' +#: erpnext/setup/doctype/employee_group_table/employee_group_table.json +msgid "ERPNext User ID" +msgstr "" + +#. Description of the 'Maintain Stock' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "ERPNext will make a stock ledger entry for each transaction of this item. Keep unchecked for non-stock or service items." +msgstr "" + +#. Option for the 'How often should project be updated of Total Purchase Cost +#. ?' (Select) field in DocType 'Buying Settings' +#. Option for the 'How often should sales data be updated in Company/Project?' +#. (Select) field in DocType 'Selling Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Each Transaction" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.py:223 +msgid "Earliest" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:592 +msgid "Earliest Age" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:32 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:45 +msgid "Earnest Money" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:526 +msgid "Edit BOM" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.html:37 +msgid "Edit Capacity" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:109 +msgid "Edit Cart" +msgstr "" + +#: erpnext/controllers/item_variant.py:213 +msgid "Edit Not Allowed" +msgstr "" + +#: erpnext/public/js/utils/crm_activities.js:186 +msgid "Edit Note" +msgstr "" + +#. Label of the set_posting_time (Check) field in DocType 'POS Invoice' +#. Label of the set_posting_time (Check) field in DocType 'Purchase Invoice' +#. Label of the set_posting_time (Check) field in DocType 'Sales Invoice' +#. Label of the set_posting_time (Check) field in DocType 'Asset +#. Capitalization' +#. Label of the set_posting_time (Check) field in DocType 'Delivery Note' +#. Label of the set_posting_time (Check) field in DocType 'Purchase Receipt' +#. Label of the set_posting_time (Check) field in DocType 'Stock Entry' +#. Label of the set_posting_time (Check) field in DocType 'Stock +#. Reconciliation' +#. Label of the set_posting_time (Check) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/stock/doctype/delivery_note/delivery_note.js:508 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Edit Posting Date and Time" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:290 +msgid "Edit Receipt" +msgstr "" + +#. Label of the override_tax_withholding_entries (Check) field in DocType +#. 'Journal Entry' +#. Label of the override_tax_withholding_entries (Check) field in DocType +#. 'Payment Entry' +#. Label of the override_tax_withholding_entries (Check) field in DocType +#. 'Purchase Invoice' +#. Label of the override_tax_withholding_entries (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Edit Tax Withholding Entries" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/EditRule.tsx:51 +msgid "Edit this rule" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:788 +msgid "Editing {0} is not allowed as per POS Profile settings" +msgstr "" + +#. Label of the education (Table) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/setup_wizard/data/industry_type.txt:19 +msgid "Education" +msgstr "" + +#. Label of the educational_qualification (Section Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Educational Qualification" +msgstr "" + +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:147 +msgid "Either 'Selling' or 'Buying' must be selected" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:290 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:441 +msgid "Either Workstation or Workstation Type is mandatory" +msgstr "" + +#: erpnext/setup/doctype/territory/territory.py:40 +msgid "Either target qty or target amount is mandatory" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.py:54 +msgid "Either target qty or target amount is mandatory." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:677 +msgid "Elapsed Time" +msgstr "" + +#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Electric" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:222 +msgid "Electrical" +msgstr "" + +#: erpnext/patches/v16_0/make_workstation_operating_components.py:47 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:314 +msgid "Electricity" +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Electricity down" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87 +msgid "Electronic Equipment" +msgstr "" + +#. Name of a report +#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.json +msgid "Electronic Invoice Register" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:20 +msgid "Electronics" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ells (UK)" +msgstr "" + +#: erpnext/www/book_appointment/index.html:52 +msgid "Email Address (required)" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:162 +msgid "Email Address must be unique, it is already used in {0}" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/email_campaign/email_campaign.json +#: erpnext/workspace_sidebar/crm.json +msgid "Email Campaign" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:112 +#: erpnext/crm/doctype/email_campaign/email_campaign.py:149 +#: erpnext/crm/doctype/email_campaign/email_campaign.py:157 +msgid "Email Campaign Error" +msgstr "" + +#. Label of the email_campaign_for (Select) field in DocType 'Email Campaign' +#: erpnext/crm/doctype/email_campaign/email_campaign.json +msgid "Email Campaign For " +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:125 +msgid "Email Campaign Send Error" +msgstr "" + +#. Label of the supplier_response_section (Section Break) field in DocType +#. 'Request for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Email Details" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Email Digest" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/email_digest_recipient/email_digest_recipient.json +msgid "Email Digest Recipient" +msgstr "" + +#. Label of the settings (Section Break) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Email Digest Settings" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.js:15 +msgid "Email Digest: {0}" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:50 +msgid "Email Receipt" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:379 +msgid "Email Sent to Supplier {0}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:443 +msgid "Email is required to create a user" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:72 +msgid "Email is required to create a user." +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:174 +msgid "Email or Phone/Mobile of the Contact are mandatory to continue." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:326 +msgid "Email sent successfully." +msgstr "" + +#. Label of the email_sent_to (Data) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Email sent to" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:441 +msgid "Email sent to {0}" +msgstr "" + +#: erpnext/crm/doctype/appointment/appointment.py:114 +msgid "Email verification failed." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 +msgid "Emails Queued" +msgstr "" + +#. Label of the emergency_contact_details (Section Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Emergency Contact" +msgstr "" + +#. Label of the person_to_be_contacted (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Emergency Contact Name" +msgstr "" + +#. Label of the emergency_phone_number (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Emergency Phone" +msgstr "" + +#. Name of a role +#. Label of the employee (Link) field in DocType 'Supplier Scorecard' +#. Option for the 'Party Type' (Select) field in DocType 'Contract' +#. Label of the employee (Table MultiSelect) field in DocType 'Job Card' +#. Label of the employee (Link) field in DocType 'Job Card Time Log' +#. Label of the employee (Link) field in DocType 'Activity Cost' +#. Label of the employee (Link) field in DocType 'Timesheet' +#. Label of the employee (Link) field in DocType 'Driver' +#. Name of a DocType +#. Label of the employee (Data) field in DocType 'Employee' +#. Label of the section_break_00 (Section Break) field in DocType 'Employee +#. Group' +#. Label of the employee_list (Table) field in DocType 'Employee Group' +#. Label of the employee (Link) field in DocType 'Employee Group Table' +#. Label of the employee (Link) field in DocType 'Sales Person' +#. Label of the employee (Link) field in DocType 'Vehicle' +#. Label of the employee (Link) field in DocType 'Delivery Trip' +#. Label of the employee (Link) field in DocType 'Serial No' +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card/job_card_calendar.js:27 +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:328 +#: erpnext/manufacturing/doctype/workstation/workstation.js:359 +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/activity_type/activity_type.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/doctype/timesheet/timesheet_calendar.js:28 +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:24 +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:10 +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:45 +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee_group/employee_group.json +#: erpnext/setup/doctype/employee_group_table/employee_group_table.json +#: erpnext/setup/doctype/sales_person/sales_person.json +#: erpnext/setup/doctype/sales_person/sales_person_tree.js:7 +#: erpnext/setup/doctype/vehicle/vehicle.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Employee" +msgstr "" + +#. Label of the employee_link (Link) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +msgid "Employee " +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Employee Advance" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:26 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:37 +msgid "Employee Advances" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:188 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:327 +msgid "Employee Benefits Obligation" +msgstr "" + +#. Label of the employee_detail (Section Break) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Employee Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Employee Education" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json +msgid "Employee External Work History" +msgstr "" + +#. Label of the employee_group (Link) field in DocType 'Communication Medium +#. Timeslot' +#. Name of a DocType +#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json +#: erpnext/setup/doctype/employee_group/employee_group.json +msgid "Employee Group" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/employee_group_table/employee_group_table.json +msgid "Employee Group Table" +msgstr "" + +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:33 +msgid "Employee ID" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.json +msgid "Employee Internal Work History" +msgstr "" + +#. Label of the employee_name (Data) field in DocType 'Activity Cost' +#. Label of the employee_name (Data) field in DocType 'Timesheet' +#. Label of the employee_name (Data) field in DocType 'Employee Group Table' +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:25 +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:53 +#: erpnext/setup/doctype/employee_group_table/employee_group_table.json +msgid "Employee Name" +msgstr "" + +#. Label of the employee_number (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Employee Number" +msgstr "" + +#. Label of the employee_user_id (Link) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Employee User Id" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:333 +msgid "Employee cannot report to himself." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:583 +msgid "Employee is required" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:109 +msgid "Employee is required while issuing Asset {0}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:440 +msgid "Employee {0} already has a linked user" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:92 +#: erpnext/assets/doctype/asset_movement/asset_movement.py:113 +msgid "Employee {0} does not belong to the company {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:410 +msgid "Employee {0} is currently working on another workstation. Please assign another employee." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:608 +msgid "Employee {0} not found" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:351 +msgid "Employees" +msgstr "" + +#: erpnext/stock/doctype/batch/batch_list.js:16 +msgid "Empty" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +msgid "Empty To Delete List" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ems(Pica)" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2974 +msgid "Enable {0} on the Item master to proceed with {1} inspection." +msgstr "" + +#. Label of the enable_accounting_dimensions (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Accounting Dimensions" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1743 +msgid "Enable Allow Partial Reservation in the Stock Settings to reserve partial stock." +msgstr "" + +#. Label of the enable_scheduling (Check) field in DocType 'Appointment Booking +#. Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Enable Appointment Scheduling" +msgstr "" + +#. Label of the enable_auto_email (Check) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Enable Auto Email" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1171 +msgid "Enable Auto Re-Order" +msgstr "" + +#. Label of the enable_party_matching (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Automatic Party Matching" +msgstr "" + +#. Label of the enable_cwip_accounting (Check) field in DocType 'Asset +#. Category' +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Enable Capital Work in Progress Accounting" +msgstr "" + +#. Label of the enable_common_party_accounting (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Common Party Accounting" +msgstr "" + +#. Label of the enable_deferred_expense (Check) field in DocType 'Purchase +#. Invoice Item' +#. Label of the enable_deferred_expense (Check) field in DocType 'Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/item/item.json +msgid "Enable Deferred Expense" +msgstr "" + +#. Label of the enable_deferred_revenue (Check) field in DocType 'POS Invoice +#. Item' +#. Label of the enable_deferred_revenue (Check) field in DocType 'Sales Invoice +#. Item' +#. Label of the enable_deferred_revenue (Check) field in DocType 'Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/item/item.json +msgid "Enable Deferred Revenue" +msgstr "" + +#. Label of the enable_discounts_and_margin (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Discounts and Margin" +msgstr "" + +#. Label of the enable_european_access (Check) field in DocType 'Plaid +#. Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "Enable European Access" +msgstr "" + +#. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Fuzzy Matching" +msgstr "" + +#. Label of the enable_health_monitor (Check) field in DocType 'Ledger Health +#. Monitor' +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +msgid "Enable Health Monitor" +msgstr "" + +#. Label of the enable_immutable_ledger (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Immutable Ledger" +msgstr "" + +#. Label of the enable_item_wise_inventory_account (Check) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Enable Item-wise Inventory Account" +msgstr "" + +#. Label of the enable_loyalty_point_program (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Loyalty Point Program" +msgstr "" + +#. Label of the enable_opportunity_creation_from_contact_us (Check) field in +#. DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Opportunity Creation from Contact Us" +msgstr "" + +#. Label of the enable_parallel_reposting (Check) field in DocType 'Stock +#. Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Enable Parallel Reposting" +msgstr "" + +#. Label of the enable_perpetual_inventory (Check) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Enable Perpetual Inventory" +msgstr "" + +#. Label of the enable_provisional_accounting_for_non_stock_items (Check) field +#. in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Enable Provisional Accounting For Non Stock Items" +msgstr "" + +#. Label of the enable_separate_reposting_for_gl (Check) field in DocType +#. 'Stock Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Enable Separate Reposting for GL" +msgstr "" + +#: erpnext/stock/report/stock_ledger/stock_ledger.js:122 +msgid "Enable Serial / Batch Bundle" +msgstr "" + +#. Label of the enable_subscription (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Subscription" +msgstr "" + +#. Description of the 'Enable Subscription' (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Subscription tracking in invoice" +msgstr "" + +#. Label of the enable_utm (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable UTM" +msgstr "" + +#. Description of the 'Enable UTM' (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable Urchin Tracking Module parameters in Quotation, Sales Order, Sales Invoice, POS Invoice, Lead, and Delivery Note." +msgstr "" + +#. Label of the enable_youtube_tracking (Check) field in DocType 'Video +#. Settings' +#: erpnext/utilities/doctype/video_settings/video_settings.json +msgid "Enable YouTube Tracking" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:104 +msgid "Enable automatic party matching" +msgstr "" + +#. Description of the 'Enable Accounting Dimensions' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable cost center, projects and other custom accounting dimensions" +msgstr "" + +#. Label of the enable_cutoff_date_on_bulk_delivery_note_creation (Check) field +#. in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable cut-off date on creating bulk Delivery Notes" +msgstr "" + +#. Label of the enable_discount_accounting (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable discount accounting for selling" +msgstr "" + +#. Description of the 'Include Item In Manufacturing' (Check) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Enable for raw material items used in BOM. Uncheck for additional services like 'washing' used in manufacturing." +msgstr "" + +#. Description of the 'Is Subcontracted Item' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Enable if a vendor manufactures this item for you. You can choose to provide them raw materials using the default BOM." +msgstr "" + +#. Description of the 'Is Fixed Asset' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Enable if this item is a company asset like machinery or furniture." +msgstr "" + +#. Description of the 'Is Customer Provided Item' (Check) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Enable if this item is provided by a customer and received via Stock Entry." +msgstr "" + +#. Description of the 'Consider Rejected Warehouses' (Check) field in DocType +#. 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Enable it if users want to consider rejected materials to dispatch." +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:125 +msgid "Enable party name/description fuzzy matching" +msgstr "" + +#. Label of the enable_stock_reservation (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Enable stock reservation" +msgstr "" + +#. Description of the 'Has Priority' (Check) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Enable this checkbox even if you want to set the zero priority" +msgstr "" + +#. Description of the 'Use legacy Budget Controller' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable this if you are experiencing issues with the new budget controller. Uses the older budget validation logic" +msgstr "" + +#. Description of the 'Calculate daily depreciation using total days in +#. depreciation period' (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable this option to calculate daily depreciation by considering the total number of days in the entire depreciation period, (including leap years) while using daily pro-rata based depreciation" +msgstr "" + +#. Description of the 'Allow negative rates for Items' (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable this option to permit the use of negative rates for items in sales transactions. This setting is useful for applying substantial discounts, processing refunds or returns, and handling special promotional pricing." +msgstr "" + +#. Description of the 'Validate selling price for Item against purchase or +#. valuation rate' (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable this to block transactions where the selling price is less than the purchase or valuation rate" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:34 +msgid "Enable to apply SLA on every {0}" +msgstr "" + +#. Description of the 'Is Transporter' (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Enable to make this supplier selectable as a transporter on Delivery Notes and Stock Entries" +msgstr "" + +#. Description of the 'Retain Sample' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Enable to reserve a small sample from each batch for any analysis arising ahead" +msgstr "" + +#. Label of the enable_tracking_sales_commissions (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable tracking sales commissions" +msgstr "" + +#. Description of the 'Fetch Timesheet in Sales Invoice' (Check) field in +#. DocType 'Projects Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +msgid "Enabling the check box will fetch timesheet on select of a Project in Sales Invoice" +msgstr "" + +#. Description of the 'Enforce Time Logs' (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Enabling this checkbox will force each Job Card Time Log to have From Time and To Time" +msgstr "" + +#. Description of the 'Check Supplier invoice number uniqueness' (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enabling this ensures each Purchase Invoice has a unique value in Supplier Invoice No. field within a particular fiscal year" +msgstr "" + +#. Description of the 'Book Advance Payments in Separate Party Account' (Check) +#. field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Enabling this option will allow you to record -

        1. Advances Received in a Liability Account instead of the Asset Account

        2. Advances Paid in an Asset Account instead of the Liability Account" +msgstr "" + +#. Description of the 'Allow multi-currency invoices against single party +#. account ' (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enabling this will allow creation of multi-currency invoices against single party account in company currency" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:22 +msgid "Enabling this will change the way how cancelled transactions are handled." +msgstr "" + +#. Description of the 'Calculate Product Bundle price based on child Item's +#. rates' (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enabling this will do the following:\n" +"
          \n" +"
        • Make the rate column of all Packed/Bundle Items tables editable.
        • \n" +"
        • Calculate the prices of all Product Bundles in the Items table, based on the prices of its child Items, specified in the Packed/Bundle Items table.
        • \n" +"
        \n" +"Note: If this is enabled, updating the rate of the Product Bundle in the Items table will not change its price. It will get reset to the price based on its Child Items on saving the doc." +msgstr "" + +#. Label of the encashment_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Encashment Date" +msgstr "" + +#: erpnext/crm/doctype/contract/contract.py:73 +msgid "End Date cannot be before Start Date." +msgstr "" + +#. Label of the end_time (Time) field in DocType 'Workstation Working Hour' +#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings' +#. Label of the end_time (Time) field in DocType 'Service Day' +#. Label of the end_time (Datetime) field in DocType 'Call Log' +#: erpnext/manufacturing/doctype/job_card/job_card.js:331 +#: erpnext/manufacturing/doctype/job_card/job_card.js:399 +#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +#: erpnext/support/doctype/service_day/service_day.json +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "End Time" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:362 +msgid "End Transit" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 +#: erpnext/accounts/report/cash_flow/cash_flow.html:147 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:64 +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:25 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:147 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:89 +#: erpnext/public/js/financial_statements.js:443 +msgid "End Year" +msgstr "" + +#: erpnext/accounts/report/financial_statements.py:133 +msgid "End Year cannot be before Start Year" +msgstr "" + +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.js:48 +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.py:37 +msgid "End date cannot be before start date" +msgstr "" + +#. Description of the 'To Date' (Date) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "End date of current invoice's period" +msgstr "" + +#. Label of the end_of_life (Date) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "End of Life" +msgstr "" + +#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule +#. Description Conditions' +#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json +msgid "Ends With" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:202 +msgid "Ends with" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:21 +msgid "Energy" +msgstr "" + +#. Label of the enforce_time_logs (Check) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Enforce Time Logs" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:15 +msgid "Engineer" +msgstr "" + +#. Label of the ensure_delivery_based_on_produced_serial_no (Check) field in +#. DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Ensure Delivery Based on Produced Serial No" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:283 +msgid "Enter API key in Google Settings." +msgstr "" + +#: erpnext/public/js/print.js:67 +msgid "Enter Company Details" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:232 +msgid "Enter First and Last name of Employee, based on Which Full Name will be updated. IN transactions, it will be Full Name which will be fetched." +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:212 +msgid "Enter Manually" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:291 +msgid "Enter Serial Nos" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:360 +#: erpnext/manufacturing/doctype/job_card/job_card.js:422 +#: erpnext/manufacturing/doctype/workstation/workstation.js:312 +msgid "Enter Value" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:96 +msgid "Enter Visit Details" +msgstr "" + +#: erpnext/manufacturing/doctype/routing/routing.js:88 +msgid "Enter a name for Routing." +msgstr "" + +#: erpnext/manufacturing/doctype/operation/operation.js:20 +msgid "Enter a name for the Operation, for example, Cutting." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:50 +msgid "Enter a name for this Holiday List." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:616 +msgid "Enter amount to be redeemed." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1470 +msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:953 +msgid "Enter customer's email" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:959 +msgid "Enter customer's phone number" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:928 +msgid "Enter date to scrap asset" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:483 +msgid "Enter depreciation details" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:408 +msgid "Enter discount percentage." +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:294 +msgid "Enter each serial no in a new line" +msgstr "" + +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:51 +msgid "Enter the Bank Guarantee Number before submitting." +msgstr "" + +#. Description of the 'Ref Code' (Data) field in DocType 'Item Customer Detail' +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +msgid "Enter the Item Code that this customer uses at their end. This will be shown in Sales Orders for the customer's reference." +msgstr "" + +#: erpnext/manufacturing/doctype/routing/routing.js:93 +msgid "Enter the Operation, the table will fetch the Operation details like Hourly Rate, Workstation automatically.\n\n" +" After that, set the Operation Time in minutes and the table will calculate the Operation Costs based on the Hourly Rate and Operation Time." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:250 +msgctxt "Do MMM YYYY" +msgid "Enter the closing balance you see in your bank statement for {0} as of the {1}" +msgstr "" + +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:53 +msgid "Enter the name of the Beneficiary before submitting." +msgstr "" + +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:55 +msgid "Enter the name of the bank or lending institution before submitting." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1496 +msgid "Enter the opening stock units." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:995 +msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1234 +msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:539 +msgid "Enter {0} amount." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:22 +msgid "Entertainment & Leisure" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186 +msgid "Entertainment Expenses" +msgstr "" + +#. Label of the entity (Dynamic Link) field in DocType 'Service Level +#. Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Entity" +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:190 +msgid "Entries below have a posting date after {0} but the clearance date is before {1}." +msgstr "" + +#. Label of the voucher_type (Select) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Entry Type" +msgstr "" + +#. Option for the 'Root Type' (Select) field in DocType 'Account' +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Option for the 'Root Type' (Select) field in DocType 'Account Category' +#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337 +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/report/account_balance/account_balance.js:29 +#: erpnext/accounts/report/account_balance/account_balance.js:45 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 +msgid "Equity" +msgstr "" + +#. Label of the equity_or_liability_account (Link) field in DocType 'Share +#. Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "Equity/Liability Account" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Erg" +msgstr "" + +#. Label of the description (Long Text) field in DocType 'Asset Repair' +#. Label of the error_description (Long Text) field in DocType 'Bulk +#. Transaction Log Detail' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "Error Description" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +msgid "Error Occurred" +msgstr "" + +#: erpnext/telephony/doctype/call_log/call_log.py:199 +msgid "Error during caller information update" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:53 +msgid "Error evaluating the criteria formula" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:267 +msgid "Error getting details for {0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:322 +msgid "Error in party matching for Bank Transaction {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:350 +msgid "Error uploading attachments" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:325 +msgid "Error while posting depreciation entries" +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:594 +msgid "Error while processing deferred accounting for {0}" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +msgid "Error while reposting item valuation" +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 +msgid "Error: This asset already has {0} depreciation periods booked.\n" +"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" +"\t\t\t\t\tPlease correct the dates accordingly." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 +msgid "Error: {0} is mandatory field" +msgstr "" + +#. Label of the errors_notification_section (Section Break) field in DocType +#. 'Stock Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Errors Notification" +msgstr "" + +#. Label of the estimated_arrival (Datetime) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Estimated Arrival" +msgstr "" + +#. Label of the estimated_costing (Currency) field in DocType 'Project' +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/projects/doctype/project/project.json +msgid "Estimated Cost" +msgstr "" + +#. Label of the estimated_time_and_cost (Section Break) field in DocType 'Work +#. Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Estimated Time and Cost" +msgstr "" + +#. Label of the period (Select) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Evaluation Period" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:87 +msgid "Even if there are multiple Pricing Rules with highest priority, then following internal priorities are applied:" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:2 +msgid "Ex Works" +msgstr "" + +#. Label of the url (Data) field in DocType 'Currency Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "Example URL" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1102 +msgid "Example of a linked document: {0}" +msgstr "" + +#. Description of the 'Serial Number Series' (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Example: ABCD.#####\n" +"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." +msgstr "" + +#. Description of the 'Batch Number Series' (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Example: ABCD.#####. If series is set and Batch No is not mentioned in transactions, then automatic batch number will be created based on this series. If you always want to explicitly mention Batch No for this item, leave this blank. Note: this setting will take priority over the Naming Series Prefix in Stock Settings." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:468 +msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2321 +msgid "Example: Serial No {0} reserved in {1}." +msgstr "" + +#. Label of the exception_budget_approver_role (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Exception Budget Approver Role" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:53 +msgid "Excess Disassembly" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:243 +msgid "Excess Material Transfer" +msgstr "" + +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:55 +msgid "Excess Materials Consumed" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1234 +msgid "Excess Transfer" +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Excessive machine set up time" +msgstr "" + +#. Label of the exchange_gain__loss_section (Section Break) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Exchange Gain / Loss" +msgstr "" + +#. Label of the exchange_gain_loss_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Exchange Gain / Loss Account" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Exchange Gain Or Loss" +msgstr "" + +#. Label of the exchange_gain_loss (Currency) field in DocType 'Payment Entry +#. Reference' +#. Label of the exchange_gain_loss (Currency) field in DocType 'Purchase +#. Invoice Advance' +#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice +#. Advance' +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222 +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +#: erpnext/setup/doctype/company/company.py:682 +msgid "Exchange Gain/Loss" +msgstr "" + +#: erpnext/accounts/services/exchange_gain_loss.py:113 +#: erpnext/accounts/services/exchange_gain_loss.py:190 +msgid "Exchange Gain/Loss amount has been booked through {0}" +msgstr "" + +#. Label of the exchange_rate (Float) field in DocType 'Advance Payment Ledger +#. Entry' +#. Label of the exchange_rate (Float) field in DocType 'Journal Entry Account' +#. Label of the exchange_rate (Float) field in DocType 'Payment Entry +#. Reference' +#. Label of the exchange_rate (Float) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the exchange_rate (Float) field in DocType 'Payment Reconciliation +#. Invoice' +#. Label of the exchange_rate (Float) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the pegged_exchange_rate (Data) field in DocType 'Pegged Currency +#. Details' +#. Label of the conversion_rate (Float) field in DocType 'POS Invoice' +#. Label of the exchange_rate (Float) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the conversion_rate (Float) field in DocType 'Purchase Invoice' +#. Label of the conversion_rate (Float) field in DocType 'Sales Invoice' +#. Label of the conversion_rate (Float) field in DocType 'Tax Withholding +#. Entry' +#. Label of the conversion_rate (Float) field in DocType 'Purchase Order' +#. Label of the conversion_rate (Float) field in DocType 'Supplier Quotation' +#. Label of the conversion_rate (Float) field in DocType 'Opportunity' +#. Label of the exchange_rate (Float) field in DocType 'Timesheet' +#. Label of the conversion_rate (Float) field in DocType 'Quotation' +#. Label of the conversion_rate (Float) field in DocType 'Sales Order' +#. Label of the exchange_rate (Float) field in DocType 'Currency Exchange' +#. Label of the conversion_rate (Float) field in DocType 'Delivery Note' +#. Label of the exchange_rate (Float) field in DocType 'Landed Cost Taxes and +#. Charges' +#. Label of the conversion_rate (Float) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/pegged_currency_details/pegged_currency_details.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Exchange Rate" +msgstr "" + +#. Name of a DocType +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#. Label of a Link in the Invoicing Workspace +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Exchange Rate Revaluation" +msgstr "" + +#. Label of the accounts (Table) field in DocType 'Exchange Rate Revaluation' +#. Name of a DocType +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Exchange Rate Revaluation Account" +msgstr "" + +#. Label of the exchange_rate_revaluation_settings_section (Section Break) +#. field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Exchange Rate Revaluation Settings" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:72 +msgid "Exchange Rate must be same as {0} {1} ({2})" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Excise Entry" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:1515 +msgid "Excise Invoice" +msgstr "" + +#. Label of the excise_page (Data) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Excise Page Number" +msgstr "" + +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:86 +msgid "Exclude Zero Balance Parties" +msgstr "" + +#. Label of the doctypes_to_be_ignored (Table) field in DocType 'Transaction +#. Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Excluded DocTypes" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the excluded_fee (Currency) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Excluded Fee" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:265 +msgid "Execution" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:16 +msgid "Executive Assistant" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:23 +msgid "Executive Search" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:80 +msgid "Exempt Supplies" +msgstr "" + +#. Label of the exempted_role (Link) field in DocType 'Accounting Period' +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +msgid "Exempted Role" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:5 +msgid "Exhibition" +msgstr "" + +#. Option for the 'Asset Type' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Existing Asset" +msgstr "" + +#. Option for the 'Create Chart Of Accounts Based On' (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Existing Company" +msgstr "" + +#. Label of the existing_company (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Existing Company " +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:1 +msgid "Existing Customer" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:307 +msgid "Existing transactions in the system belonging to the same bank account and date range" +msgstr "" + +#. Label of the exit (Tab Break) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Exit" +msgstr "" + +#. Label of the held_on (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Exit Interview Held On" +msgstr "" + +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:475 +msgid "Expected" +msgstr "" + +#. Label of the expected_amount (Currency) field in DocType 'POS Closing Entry +#. Detail' +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +msgid "Expected Amount" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:432 +msgid "Expected Arrival Date" +msgstr "" + +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:119 +msgid "Expected Balance Qty" +msgstr "" + +#. Label of the expected_closing (Date) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Expected Closing Date" +msgstr "" + +#. Label of the expected_delivery_date (Date) field in DocType 'Purchase Order +#. Item' +#. Label of the expected_delivery_date (Date) field in DocType 'Supplier +#. Quotation Item' +#. Label of the expected_delivery_date (Date) field in DocType 'Work Order' +#. Label of the expected_delivery_date (Date) field in DocType 'Subcontracting +#. Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Expected Delivery Date" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:375 +msgid "Expected Delivery Date should be after Sales Order Date" +msgstr "" + +#. Label of the expected_end_date (Datetime) field in DocType 'Job Card' +#. Label of the expected_end_date (Date) field in DocType 'Project' +#. Label of the exp_end_date (Datetime) field in DocType 'Task' +#. Label of a field in the tasks Web Form +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:49 +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:126 +#: erpnext/projects/web_form/tasks/tasks.json +#: erpnext/templates/pages/task_info.html:55 +msgid "Expected End Date" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:113 +msgid "Expected End Date should be less than or equal to parent task's Expected End Date {0}." +msgstr "" + +#. Label of the expected_hours (Float) field in DocType 'Timesheet Detail' +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/public/js/projects/timer.js:16 +msgid "Expected Hrs" +msgstr "" + +#. Label of the expected_start_date (Datetime) field in DocType 'Job Card' +#. Label of the expected_start_date (Date) field in DocType 'Project' +#. Label of the exp_start_date (Datetime) field in DocType 'Task' +#. Label of a field in the tasks Web Form +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:45 +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:120 +#: erpnext/projects/web_form/tasks/tasks.json +#: erpnext/templates/pages/task_info.html:50 +msgid "Expected Start Date" +msgstr "" + +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:129 +msgid "Expected Stock Value" +msgstr "" + +#. Label of the expected_time (Float) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Expected Time (in hours)" +msgstr "" + +#. Label of the time_required (Float) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Expected Time Required (In Mins)" +msgstr "" + +#. Label of the expected_value_after_useful_life (Currency) field in DocType +#. 'Asset Depreciation Schedule' +#. Description of the 'Salvage Value' (Currency) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Expected Value After Useful Life" +msgstr "" + +#. Option for the 'Root Type' (Select) field in DocType 'Account' +#. Option for the 'Root Type' (Select) field in DocType 'Account Category' +#. Label of the expense (Float) field in DocType 'Cashier Closing' +#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge' +#. Option for the 'Type' (Select) field in DocType 'Process Deferred +#. Accounting' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 +#: erpnext/accounts/report/account_balance/account_balance.js:28 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 +msgid "Expense" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:220 +msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the expense_account (Link) field in DocType 'Loyalty Program' +#. Label of the expense_account (Link) field in DocType 'POS Invoice Item' +#. Label of the expense_account (Link) field in DocType 'POS Profile' +#. Label of the expense_account (Link) field in DocType 'Sales Invoice Item' +#. Label of the expense_account (Link) field in DocType 'Asset Capitalization +#. Service Item' +#. Label of the expense_account (Link) field in DocType 'Asset Repair Purchase +#. Invoice' +#. Label of the expense_account (Link) field in DocType 'Purchase Order Item' +#. Label of the expense_account (Link) field in DocType 'Workstation Operating +#. Component Account' +#. Label of the expense_account (Link) field in DocType 'Delivery Note Item' +#. Label of the expense_account (Link) field in DocType 'Item Default' +#. Label of the vf_expense_account (Read Only) field in DocType 'Item Default' +#. Label of the deferred_expense_account (Link) field in DocType 'Item Default' +#. Label of the expense_account (Link) field in DocType 'Landed Cost Taxes and +#. Charges' +#. Label of the expense_account (Link) field in DocType 'Material Request Item' +#. Label of the expense_account (Link) field in DocType 'Purchase Receipt Item' +#. Label of the expense_account (Link) field in DocType 'Subcontracting Order +#. Item' +#. Label of the expense_account (Link) field in DocType 'Subcontracting Receipt +#. Item' +#. Label of the expense_account (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/account_balance/account_balance.js:46 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:251 +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/workstation_operating_component_account/workstation_operating_component_account.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item_default/item_default.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Expense Account" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:199 +msgid "Expense Account Missing" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Expense Claim" +msgstr "" + +#. Label of the expense_account (Link) field in DocType 'Purchase Invoice Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +msgid "Expense Head" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:80 +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:100 +msgid "Expense Head Changed" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:158 +msgid "Expense account is mandatory for item {0}" +msgstr "" + +#. Description of the 'Enable Deferred Revenue' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145 +msgid "Expenses" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153 +#: erpnext/accounts/report/account_balance/account_balance.js:49 +msgid "Expenses Included In Asset Valuation" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158 +#: erpnext/accounts/report/account_balance/account_balance.js:51 +msgid "Expenses Included In Valuation" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:308 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:513 +msgid "Expired Batches" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:289 +msgid "Expires in a week or less" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:293 +msgid "Expires today or already expired" +msgstr "" + +#. Option for the 'Pick Serial / Batch Based On' (Select) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Expiry" +msgstr "" + +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:38 +msgid "Expiry (In Days)" +msgstr "" + +#. Label of the expiry_date (Date) field in DocType 'Loyalty Point Entry' +#. Label of the expiry_date (Date) field in DocType 'Driver' +#. Label of the expiry_date (Date) field in DocType 'Driving License Category' +#. Label of the expiry_date (Date) field in DocType 'Batch' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/driving_license_category/driving_license_category.json +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/report/available_batch_report/available_batch_report.py:57 +msgid "Expiry Date" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:219 +msgid "Expiry Date Mandatory" +msgstr "" + +#. Label of the expiry_duration (Int) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Expiry Duration (in days)" +msgstr "" + +#. Label of the section_break0 (Tab Break) field in DocType 'BOM' +#. Label of the exploded_items (Table) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Exploded Items" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.json +msgid "Exponential Smoothing Forecasting" +msgstr "" + +#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js:34 +msgid "Export E-Invoices" +msgstr "" + +#. Label of the extended_bank_statement_section (Section Break) field in +#. DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Extended Bank Statement" +msgstr "" + +#. Label of the external_work_history (Table) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "External Work History" +msgstr "" + +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:148 +msgid "Extra Consumed Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:271 +msgid "Extra Job Card Quantity" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:275 +msgid "Extra Large" +msgstr "" + +#. Label of the section_break_xhtl (Section Break) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Extra Material Transfer" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:271 +msgid "Extra Small" +msgstr "" + +#. Label of the finished_good (Link) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "FG / Semi FG Item" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:21 +msgid "FG Items to Make" +msgstr "" + +#. Option for the 'Default Stock Valuation Method' (Select) field in DocType +#. 'Company' +#. Option for the 'Valuation Method' (Select) field in DocType 'Item' +#. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock +#. Settings' +#. Option for the 'Pick Serial / Batch Based On' (Select) field in DocType +#. 'Stock Settings' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "FIFO" +msgstr "" + +#. Label of the fifo_queue (Long Text) field in DocType 'Stock Closing Balance' +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +msgid "FIFO Queue" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.json +msgid "FIFO Queue vs Qty After Transaction Comparison" +msgstr "" + +#. Label of the stock_queue (Small Text) field in DocType 'Serial and Batch +#. Entry' +#. Label of the stock_queue (Long Text) field in DocType 'Stock Ledger Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "FIFO Stock Queue (qty, rate)" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:179 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:218 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:121 +msgid "FIFO/LIFO Queue" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "FX Revaluation" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Fahrenheit" +msgstr "" + +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js:17 +msgid "Failed Entries" +msgstr "" + +#: erpnext/utilities/doctype/video_settings/video_settings.py:33 +msgid "Failed to Authenticate the API key." +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:37 +#: erpnext/setup/setup_wizard/setup_wizard.py:38 +msgid "Failed to create demo data" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:295 +msgid "Failed to delete closing balance." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:150 +msgid "Failed to delete rule." +msgstr "" + +#: erpnext/setup/demo.py:77 +msgid "Failed to erase demo data, please delete the demo company manually." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:287 +msgid "Failed to initiate payment with {0}. Please try again or contact support." +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:16 +#: erpnext/setup/setup_wizard/setup_wizard.py:17 +msgid "Failed to install presets" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:163 +msgid "Failed to parse MT940 format. Error: {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:264 +msgid "Failed to post depreciation entries" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:58 +msgid "Failed to run rules evaluation" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:126 +msgid "Failed to send email for campaign {0} to {1}" +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:26 +msgid "Failed to set defaults" +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:21 +#: erpnext/setup/setup_wizard/setup_wizard.py:22 +msgid "Failed to setup company" +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:28 +msgid "Failed to setup defaults" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:861 +msgid "Failed to setup defaults for country {0}. Please contact support." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:116 +msgid "Failed to update auto classify transactions settings" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:177 +msgid "Failed to update rule priorities" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:521 +msgid "Failed to update subscription status for {0} {1}" +msgstr "" + +#. Label of the failure_date (Datetime) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Failure Date" +msgstr "" + +#. Label of the failure_description_section (Section Break) field in DocType +#. 'POS Closing Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "Failure Description" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.js:37 +msgid "Failure: {0}" +msgstr "" + +#. Label of the family_background (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Family Background" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Faraday" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Fathom" +msgstr "" + +#. Label of the document_name (Dynamic Link) field in DocType 'Quality +#. Feedback' +#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json +msgid "Feedback By" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/quality.json +msgid "Feedback Template" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Fees" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:396 +msgid "Fetch Based On" +msgstr "" + +#. Label of the fetch_customers (Button) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Fetch Customers" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:82 +msgid "Fetch Items from Warehouse" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity.js:117 +msgid "Fetch Latest Exchange Rate" +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.js:61 +msgid "Fetch Overdue Payments" +msgstr "" + +#. Label of the fetch_payment_schedule_in_payment_request (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Fetch Payment Schedule in Payment Request" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:42 +msgid "Fetch Subscription Updates" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:305 +msgid "Fetch Timesheet" +msgstr "" + +#. Label of the fetch_timesheet_in_sales_invoice (Check) field in DocType +#. 'Projects Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +msgid "Fetch Timesheet in Sales Invoice" +msgstr "" + +#. Label of the fetch_from_parent (Select) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Fetch Value From" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:372 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:828 +msgid "Fetch exploded BOM (including sub-assemblies)" +msgstr "" + +#. Label of the fetch_valuation_rate_for_internal_transaction (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Fetch valuation rate for internal Transaction" +msgstr "" + +#. Description of the 'Price List' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Fetched automatically on sales orders and invoices for this customer." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_details.js:459 +msgid "Fetched only {0} available serial numbers." +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:198 +msgid "Fetching Material Requests..." +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:145 +msgid "Fetching Sales Orders..." +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.js:135 +#: erpnext/public/js/controllers/transaction.js:1625 +msgid "Fetching exchange rates ..." +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:74 +msgid "Fetching..." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:224 +msgid "Field '{0}' is not a valid Company link field for DocType {1}" +msgstr "" + +#. Label of the field_mapping_section (Section Break) field in DocType +#. 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Field Mapping" +msgstr "" + +#. Label of the bank_transaction_field (Select) field in DocType 'Bank +#. Transaction Mapping' +#: erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.json +msgid "Field in Bank Transaction" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95 +msgid "Fieldname Conflict" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87 +msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value." +msgstr "" + +#. Description of the 'Do not update variants on save' (Check) field in DocType +#. 'Item Variant Settings' +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Fields will be copied over only at time of creation." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +msgid "File does not belong to this Transaction Deletion Record" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +msgid "File not found" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +msgid "File not found on server" +msgstr "" + +#. Label of the file_to_rename (Attach) field in DocType 'Rename Tool' +#: erpnext/utilities/doctype/rename_tool/rename_tool.json +msgid "File to Rename" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 +#: erpnext/public/js/financial_statements.js:395 +msgid "Filter Based On" +msgstr "" + +#. Label of the filter_duration (Int) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Filter Duration (Months)" +msgstr "" + +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:60 +msgid "Filter Total Zero Qty" +msgstr "" + +#. Label of the filter_by_reference_date (Check) field in DocType 'Bank +#. Reconciliation Tool' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +msgid "Filter by Reference Date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:351 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:217 +msgid "Filter by amount" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:70 +msgid "Filter by invoice status" +msgstr "" + +#. Label of the invoice_name (Data) field in DocType 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Filter on Invoice" +msgstr "" + +#. Label of the payment_name (Data) field in DocType 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Filter on Payment" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:158 +msgid "Filters for Material Requests" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:92 +msgid "Filters for Sales Orders" +msgstr "" + +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:74 +msgid "Filters missing" +msgstr "" + +#. Label of the bom_no (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Final BOM" +msgstr "" + +#. Label of the details_tab (Tab Break) field in DocType 'BOM Creator' +#. Label of the production_item (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Final Product" +msgstr "" + +#. Label of the finance_book (Link) field in DocType 'Account Closing Balance' +#. Name of a DocType +#. Label of the finance_book (Link) field in DocType 'GL Entry' +#. Label of the finance_book (Link) field in DocType 'Journal Entry' +#. Label of the finance_book (Link) field in DocType 'Payment Ledger Entry' +#. Label of the finance_book (Link) field in DocType 'POS Invoice Item' +#. Label of the finance_book (Link) field in DocType 'Process Statement Of +#. Accounts' +#. Label of the finance_book (Link) field in DocType 'Sales Invoice Item' +#. Label of a Link in the Invoicing Workspace +#. Label of the finance_book (Link) field in DocType 'Asset Capitalization' +#. Label of the finance_book (Link) field in DocType 'Asset Capitalization +#. Asset Item' +#. Label of the finance_book (Link) field in DocType 'Asset Depreciation +#. Schedule' +#. Label of the finance_book (Link) field in DocType 'Asset Finance Book' +#. Label of the finance_book (Link) field in DocType 'Asset Shift Allocation' +#. Label of the finance_book (Link) field in DocType 'Asset Value Adjustment' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/finance_book/finance_book.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:22 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:41 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:24 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:41 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:48 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:51 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:104 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:51 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:32 +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:51 +#: erpnext/accounts/report/general_ledger/general_ledger.js:16 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:31 +#: erpnext/accounts/report/trial_balance/trial_balance.js:71 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:48 +#: erpnext/public/js/financial_statements.js:389 +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Finance Book" +msgstr "" + +#. Label of the finance_book_detail (Section Break) field in DocType 'Asset +#. Category' +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Finance Book Detail" +msgstr "" + +#. Label of the finance_book_id (Int) field in DocType 'Asset Depreciation +#. Schedule' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "Finance Book Id" +msgstr "" + +#. Label of the finance_books (Table) field in DocType 'Asset' +#. Label of the finance_books (Table) field in DocType 'Asset Category' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Finance Books" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:17 +msgid "Finance Manager" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/financial_ratios/financial_ratios.json +msgid "Financial Ratios" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Financial Report Row" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Financial Report Template" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +msgid "Financial Report Template {0} is disabled" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +msgid "Financial Report Template {0} not found" +msgstr "" + +#. Name of a Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/desktop_icon/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Financial Reports" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:24 +msgid "Financial Services" +msgstr "" + +#. Label of a Card Break in the Financial Reports Workspace +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/public/js/financial_statements.js:325 +msgid "Financial Statements" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:48 +msgid "Financial Year Begins On" +msgstr "" + +#. Description of the 'Ignore Account closing balance' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Financial reports will be generated using GL Entry doctypes (should be enabled if Period Closing Voucher is not posted for all years sequentially or missing) " +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:896 +#: erpnext/manufacturing/doctype/work_order/work_order.js:911 +#: erpnext/manufacturing/doctype/work_order/work_order.js:920 +msgid "Finish" +msgstr "" + +#. Label of the fg_item (Link) field in DocType 'Purchase Order Item' +#. Label of the item_code (Link) field in DocType 'BOM Creator' +#. Label of the parent_item_code (Link) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the fg_item (Link) field in DocType 'Sales Order Item' +#. Label of the finished_good (Link) field in DocType 'Subcontracting BOM' +#: erpnext/buying/doctype/purchase_order/purchase_order.js:180 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:43 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:147 +#: erpnext/selling/doctype/sales_order/sales_order.js:868 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Finished Good" +msgstr "" + +#. Label of the finished_good_bom (Link) field in DocType 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Finished Good BOM" +msgstr "" + +#. Label of the fg_item (Link) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service +#. Item' +#: erpnext/public/js/utils.js:913 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +msgid "Finished Good Item" +msgstr "" + +#. Label of the fg_item_code (Link) field in DocType 'Subcontracting Inward +#. Order Secondary Item' +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:36 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +msgid "Finished Good Item Code" +msgstr "" + +#: erpnext/public/js/utils.js:931 +msgid "Finished Good Item Qty" +msgstr "" + +#. Label of the fg_item_qty (Float) field in DocType 'Subcontracting Inward +#. Order Service Item' +#. Label of the fg_item_qty (Float) field in DocType 'Subcontracting Order +#. Service Item' +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +msgid "Finished Good Item Quantity" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:295 +msgid "Finished Good Item is not specified for service item {0}" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:312 +msgid "Finished Good Item {0} Qty can not be zero" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:306 +msgid "Finished Good Item {0} must be a sub-contracted item" +msgstr "" + +#. Label of the fg_item_qty (Float) field in DocType 'Purchase Order Item' +#. Label of the fg_item_qty (Float) field in DocType 'Sales Order Item' +#. Label of the finished_good_qty (Float) field in DocType 'Subcontracting BOM' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Finished Good Qty" +msgstr "" + +#. Label of the fg_completed_qty (Float) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Finished Good Quantity " +msgstr "" + +#. Label of the serial_no_and_batch_for_finished_good_section (Section Break) +#. field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Finished Good Serial / Batch" +msgstr "" + +#. Label of the finished_good_uom (Link) field in DocType 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Finished Good UOM" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:51 +msgid "Finished Good {0} does not have a default BOM." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:46 +msgid "Finished Good {0} is disabled." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:48 +msgid "Finished Good {0} must be a stock item." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:55 +msgid "Finished Good {0} must be a sub-contracted item." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1475 +#: erpnext/setup/doctype/company/company.py:393 +msgid "Finished Goods" +msgstr "" + +#. Label of the fg_based_section_section (Section Break) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Finished Goods Based Operating Cost" +msgstr "" + +#. Label of the fg_item (Link) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Finished Goods Item" +msgstr "" + +#. Label of the fg_reference_id (Data) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Finished Goods Reference" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:165 +msgid "Finished Goods Return" +msgstr "" + +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:108 +msgid "Finished Goods Value" +msgstr "" + +#. Label of the fg_warehouse (Link) field in DocType 'BOM Operation' +#. Label of the warehouse (Link) field in DocType 'Production Plan Item' +#. Label of the fg_warehouse (Link) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Finished Goods Warehouse" +msgstr "" + +#. Label of the fg_based_operating_cost (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Finished Goods based Operating Cost" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +msgid "Finished Item {0} does not match with Work Order {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:71 +msgid "Finished good quantity being consumed ({0} in stock UOM) must equal the quantity to disassemble ({1}). Do not change the UOM, conversion factor or quantity of the finished good row." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:615 +msgid "First Delivery Date" +msgstr "" + +#. Label of the first_email (Time) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "First Email" +msgstr "" + +#. Label of the first_responded_on (Datetime) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "First Responded On" +msgstr "" + +#. Option for the 'Service Level Agreement Status' (Select) field in DocType +#. 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "First Response Due" +msgstr "" + +#: erpnext/support/doctype/issue/test_issue.py:238 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:906 +msgid "First Response SLA Failed by {}" +msgstr "" + +#. Label of the first_response_time (Duration) field in DocType 'Opportunity' +#. Label of the first_response_time (Duration) field in DocType 'Issue' +#. Label of the response_time (Duration) field in DocType 'Service Level +#. Priority' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/service_level_priority/service_level_priority.json +#: erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.py:16 +msgid "First Response Time" +msgstr "" + +#. Name of a report +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "First Response Time for Issues" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "First Response Time for Opportunity" +msgstr "" + +#: erpnext/regional/italy/utils.py:236 +msgid "Fiscal Regime is mandatory, kindly set the fiscal regime in the company {0}" +msgstr "" + +#. Name of a DocType +#. Label of the fiscal_year (Link) field in DocType 'GL Entry' +#. Label of the fiscal_year (Link) field in DocType 'Monthly Distribution' +#. Label of the fiscal_year (Link) field in DocType 'Period Closing Voucher' +#. Label of a Link in the Invoicing Workspace +#. Label of the fiscal_year (Link) field in DocType 'Lower Deduction +#. Certificate' +#. Label of the fiscal_year (Link) field in DocType 'Target Detail' +#. Label of the fiscal_year (Data) field in DocType 'Stock Ledger Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:18 +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:16 +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:38 +#: erpnext/accounts/report/trial_balance/trial_balance.js:16 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:16 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:16 +#: erpnext/public/js/purchase_trends_filters.js:28 +#: erpnext/public/js/sales_trends_filters.js:44 +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/regional/report/irs_1099/irs_1099.js:17 +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:15 +#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:15 +#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:15 +#: erpnext/setup/doctype/target_detail/target_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Fiscal Year" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:100 +msgid "Fiscal Year (requires ERPNext to be installed)" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json +msgid "Fiscal Year Company" +msgstr "" + +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:5 +msgid "Fiscal Year Details" +msgstr "" + +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.py:53 +msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" +msgstr "" + +#: erpnext/controllers/trends.py:59 +msgid "Fiscal Year {0} Does Not Exist" +msgstr "" + +#: erpnext/accounts/report/trial_balance/trial_balance.py:49 +msgid "Fiscal Year {0} does not exist" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:97 +msgid "Fiscal Year {0} is not available for Company {1}." +msgstr "" + +#: erpnext/accounts/report/trial_balance/trial_balance.py:43 +msgid "Fiscal Year {0} is required" +msgstr "" + +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:28 +msgid "Fix SABB Entry" +msgstr "" + +#. Option for the 'Calculate Based On' (Select) field in DocType 'Shipping +#. Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Fixed" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/report/account_balance/account_balance.js:52 +#: erpnext/stock/doctype/item/item_list.js:20 +msgid "Fixed Asset" +msgstr "" + +#. Label of the fixed_asset_account (Link) field in DocType 'Asset +#. Capitalization Asset Item' +#. Label of the fixed_asset_account (Link) field in DocType 'Asset Category +#. Account' +#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +msgid "Fixed Asset Account" +msgstr "" + +#. Label of the fixed_asset_defaults (Section Break) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Fixed Asset Defaults" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:372 +msgid "Fixed Asset Item must be a non-stock item." +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.json +#: erpnext/workspace_sidebar/assets.json +msgid "Fixed Asset Register" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:213 +msgid "Fixed Asset Turnover Ratio" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:737 +msgid "Fixed Asset item {0} cannot be used in BOMs." +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81 +msgid "Fixed Assets" +msgstr "" + +#. Label of the fixed_deposit_number (Data) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Fixed Deposit Number" +msgstr "" + +#. Label of the fixed_email (Link) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Fixed Outgoing Email Account" +msgstr "" + +#. Option for the 'Subscription Price Based On' (Select) field in DocType +#. 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Fixed Rate" +msgstr "" + +#. Label of the fixed_time (Check) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Fixed Time" +msgstr "" + +#. Name of a role +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Fleet Manager" +msgstr "" + +#. Label of the details_tab (Tab Break) field in DocType 'Plant Floor' +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +msgid "Floor" +msgstr "" + +#. Label of the floor_name (Data) field in DocType 'Plant Floor' +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +msgid "Floor Name" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Fluid Ounce (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Fluid Ounce (US)" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:408 +msgid "Focus on Item Group filter" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:399 +msgid "Focus on search input" +msgstr "" + +#. Label of the folio_no (Data) field in DocType 'Shareholder' +#: erpnext/accounts/doctype/shareholder/shareholder.json +msgid "Folio no." +msgstr "" + +#. Label of the follow_calendar_months (Check) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Follow Calendar Months" +msgstr "" + +#: erpnext/templates/emails/reorder_item.html:1 +msgid "Following Material Requests have been raised automatically based on Item's re-order level" +msgstr "" + +#: erpnext/selling/doctype/customer/mapper.py:173 +msgid "Following fields are mandatory to create address:" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:25 +msgid "Food, Beverage & Tobacco" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Foot Of Water" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Foot/Minute" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Foot/Second" +msgstr "" + +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:23 +msgid "For" +msgstr "" + +#: erpnext/public/js/utils/sales_common.js:389 +msgid "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." +msgstr "" + +#. Label of the for_all_stock_asset_accounts (Check) field in DocType 'Journal +#. Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "For All Stock Asset Accounts" +msgstr "" + +#. Label of the for_buying (Check) field in DocType 'Currency Exchange' +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +msgid "For Buying" +msgstr "" + +#. Label of the company (Link) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "For Company" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:187 +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:211 +msgid "For Item" +msgstr "" + +#: erpnext/stock/services/internal_transfer.py:104 +msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" +msgstr "" + +#. Label of the for_job_card (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "For Job Card" +msgstr "" + +#. Label of the for_operation (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.js:464 +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "For Operation" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:172 +msgid "For PDF statements, we auto-detect the tables on each page. You can then confirm each detected table, map its columns, and exclude anything that is not transactions (e.g. ads or summaries). Password-protected PDFs are supported - the password is saved on the bank account and reused." +msgstr "" + +#. Label of the for_price_list (Link) field in DocType 'Pricing Rule' +#. Label of the for_price_list (Link) field in DocType 'Promotional Scheme +#. Price Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "For Price List" +msgstr "" + +#. Description of the 'Planned Quantity' (Float) field in DocType 'Sales Order +#. Item' +#. Description of the 'Produced Quantity' (Float) field in DocType 'Sales Order +#. Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "For Production" +msgstr "" + +#. Label of the material_request_planning (Section Break) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "For Raw Materials" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:982 +msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}" +msgstr "" + +#. Label of the for_selling (Check) field in DocType 'Currency Exchange' +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +msgid "For Selling" +msgstr "" + +#: erpnext/accounts/doctype/payment_order/payment_order.js:108 +msgid "For Supplier" +msgstr "" + +#. Label of the warehouse (Link) field in DocType 'Material Request Plan Item' +#. Label of the for_warehouse (Link) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:471 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1488 +#: erpnext/stock/doctype/material_request/material_request.js:361 +#: erpnext/templates/form_grid/material_request_grid.html:36 +msgid "For Warehouse" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:136 +msgid "For Work Order" +msgstr "" + +#: erpnext/controllers/status_updater.py:292 +msgid "For an item {0}, quantity must be negative number" +msgstr "" + +#: erpnext/controllers/status_updater.py:289 +msgid "For an item {0}, quantity must be positive number" +msgstr "" + +#. Description of the 'Income Account' (Link) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "For dunning fee and interest" +msgstr "" + +#. Description of the 'Year Name' (Data) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "For e.g. 2012, 2012-13" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:154 +msgid "For example, if set to 4, the system will try to find matching transactions in other banks 4 days before and after the transaction date. This is because transactions can clear on different days on different bank accounts." +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:60 +msgid "For example, if set to 4, the system will try to find matching transfer transactions in other banks 4 days before and after the transaction date. This is because transactions can clear on different days on different bank accounts." +msgstr "" + +#. Description of the 'Collection Factor (=1 LP)' (Currency) field in DocType +#. 'Loyalty Program Collection' +#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json +msgid "For how much spent = 1 Loyalty Point" +msgstr "" + +#. Description of the 'Supplier' (Link) field in DocType 'Request for +#. Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "For individual supplier" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 +msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +msgstr "" + +#: erpnext/controllers/status_updater.py:302 +msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgstr "" + +#. Description of the 'Do not fetch incoming rate from Serial No' (Check) field +#. in DocType 'Stock Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "For legacy serial nos, do not fetch incoming rate from serial no and calculate it based on the inward transaction" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:400 +msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/mapper.py:381 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:208 +msgid "For project - {0}, update your status" +msgstr "" + +#. Description of the 'Parent Warehouse' (Link) field in DocType 'Master +#. Production Schedule' +#. Description of the 'Parent Warehouse' (Link) field in DocType 'Sales +#. Forecast' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 +msgid "For quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + +#. Description of the 'Territory Manager' (Link) field in DocType 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "For reference" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 +#: erpnext/public/js/controllers/accounts.js:204 +msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +msgid "For row {0}: Enter Planned Qty" +msgstr "" + +#. Description of the 'Service Expense Account' (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "For service item" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:178 +msgid "For the 'Apply Rule On Other' condition the field {0} is mandatory" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:1425 +msgctxt "Clear payment terms template and/or payment schedule when due date is changed" +msgid "For the new {0} to take effect, would you like to clear the current {1}?" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:268 +msgid "For the {0}, no stock is available for the return in the warehouse {1}." +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:1254 +msgid "For the {0}, the quantity is required to make the return entry" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:258 +msgid "Force Clear" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:304 +msgid "Force Clear Voucher" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:85 +msgid "Force evaluate all" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:83 +msgid "Force re-evaluate all unreconciled transactions, even if they were previously evaluated" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:48 +msgid "Force-Fetch Subscription Updates" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:234 +msgid "Forecast" +msgstr "" + +#. Label of the forecast_demand_section (Section Break) field in DocType +#. 'Master Production Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +msgid "Forecast Demand" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Forecasting" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:264 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:265 +#: erpnext/accounts/report/consolidated_trial_balance/test_consolidated_trial_balance.py:73 +msgid "Foreign Currency Translation Reserve" +msgstr "" + +#. Label of the foreign_trade_details (Section Break) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Foreign Trade Details" +msgstr "" + +#. Label of the formula_based_criteria (Check) field in DocType 'Item Quality +#. Inspection Parameter' +#. Label of the formula_based_criteria (Check) field in DocType 'Quality +#. Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Formula Based Criteria" +msgstr "" + +#. Label of the calculation_formula (Code) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Formula or Account Filter" +msgstr "" + +#: erpnext/templates/pages/help.html:35 +msgid "Forum Activity" +msgstr "" + +#. Label of the forum_sb (Section Break) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Forum Posts" +msgstr "" + +#. Label of the forum_url (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Forum URL" +msgstr "" + +#: erpnext/setup/install.py:232 +msgid "Frappe School" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:4 +msgid "Free Alongside Ship" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:3 +msgid "Free Carrier" +msgstr "" + +#. Label of the free_item (Link) field in DocType 'Pricing Rule' +#. Label of the section_break_6 (Section Break) field in DocType 'Promotional +#. Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Free Item" +msgstr "" + +#. Label of the free_item_rate (Currency) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Free Item Rate" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:5 +msgid "Free On Board" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:283 +msgid "Free item code is not selected" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:653 +msgid "Free item not set in the pricing rule {0}" +msgstr "" + +#. Label of the stock_frozen_upto_days (Int) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Freeze stocks older than (days)" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190 +msgid "Freight and Forwarding Charges" +msgstr "" + +#. Label of the frequency (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Frequency To Collect Progress" +msgstr "" + +#. Label of the frequency_of_depreciation (Int) field in DocType 'Asset' +#. Label of the frequency_of_depreciation (Int) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the frequency_of_depreciation (Int) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Frequency of Depreciation (Months)" +msgstr "" + +#: erpnext/www/support/index.html:45 +msgid "Frequently Read Articles" +msgstr "" + +#. Label of the from_bom (Link) field in DocType 'Material Request Plan Item' +#. Label of the from_bom (Check) field in DocType 'Stock Entry' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "From BOM" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:105 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:169 +msgid "From BOM No" +msgstr "" + +#. Label of the from_company (Data) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "From Company" +msgstr "" + +#. Description of the 'Corrective Operation Cost' (Currency) field in DocType +#. 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "From Corrective Job Card" +msgstr "" + +#. Label of the from_currency (Link) field in DocType 'Currency Exchange' +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +msgid "From Currency" +msgstr "" + +#: erpnext/setup/doctype/currency_exchange/currency_exchange.py:52 +msgid "From Currency and To Currency cannot be same" +msgstr "" + +#. Label of the customer (Link) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "From Customer" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:45 +msgid "From Date and To Date are Mandatory" +msgstr "" + +#: erpnext/accounts/report/financial_statements.py:138 +msgid "From Date and To Date are mandatory" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:29 +msgid "From Date and To Date are required" +msgstr "" + +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:30 +msgid "From Date and To Date lie in different Fiscal Year" +msgstr "" + +#: erpnext/accounts/report/trial_balance/trial_balance.py:64 +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:13 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:14 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:29 +msgid "From Date cannot be greater than To Date" +msgstr "" + +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:60 +msgid "From Date cannot be greater than To Date." +msgstr "" + +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:26 +msgid "From Date is mandatory" +msgstr "" + +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:53 +#: erpnext/accounts/report/general_ledger/general_ledger.py:86 +#: erpnext/accounts/report/pos_register/pos_register.py:124 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:32 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:25 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:34 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:38 +msgid "From Date must be before To Date" +msgstr "" + +#: erpnext/accounts/report/trial_balance/trial_balance.py:68 +msgid "From Date should be within the Fiscal Year. Assuming From Date = {0}" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:43 +msgid "From Date: {0} cannot be greater than To date: {1}" +msgstr "" + +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:26 +msgid "From Datetime" +msgstr "" + +#. Label of the from_delivery_date (Date) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "From Delivery Date" +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.js:59 +msgid "From Delivery Note" +msgstr "" + +#. Label of the from_doctype (Link) field in DocType 'Bulk Transaction Log +#. Detail' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "From Doctype" +msgstr "" + +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:78 +msgid "From Due Date" +msgstr "" + +#. Label of the from_employee (Link) field in DocType 'Asset Movement Item' +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +msgid "From Employee" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:98 +msgid "From Employee is required while issuing Asset {0}" +msgstr "" + +#. Label of the from_external_ecomm_platform (Check) field in DocType 'Coupon +#. Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "From External Ecomm Platform" +msgstr "" + +#. Label of the from_fiscal_year (Link) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:51 +msgid "From Fiscal Year" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:110 +msgid "From Fiscal Year cannot be greater than To Fiscal Year" +msgstr "" + +#. Label of the from_folio_no (Data) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "From Folio No" +msgstr "" + +#. Label of the from_invoice_date (Date) field in DocType 'Payment +#. Reconciliation' +#. Label of the from_invoice_date (Date) field in DocType 'Process Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "From Invoice Date" +msgstr "" + +#. Label of the from_no (Int) field in DocType 'Share Balance' +#. Label of the from_no (Int) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "From No" +msgstr "" + +#. Label of the from_case_no (Int) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "From Package No." +msgstr "" + +#. Label of the from_payment_date (Date) field in DocType 'Payment +#. Reconciliation' +#. Label of the from_payment_date (Date) field in DocType 'Process Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "From Payment Date" +msgstr "" + +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:36 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:22 +msgid "From Posting Date" +msgstr "" + +#. Label of the from_range (Float) field in DocType 'Item Attribute' +#. Label of the from_range (Float) field in DocType 'Item Variant Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "From Range" +msgstr "" + +#: erpnext/stock/doctype/item_attribute/item_attribute.py:95 +msgid "From Range has to be less than To Range" +msgstr "" + +#. Label of the from_reference_date (Date) field in DocType 'Bank +#. Reconciliation Tool' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +msgid "From Reference Date" +msgstr "" + +#. Label of the from_shareholder (Link) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "From Shareholder" +msgstr "" + +#. Label of the from_template (Link) field in DocType 'Journal Entry' +#. Label of the project_template (Link) field in DocType 'Project' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/projects/doctype/project/project.json +msgid "From Template" +msgstr "" + +#. Label of the from_time (Time) field in DocType 'Cashier Closing' +#. Label of the from_time (Datetime) field in DocType 'Sales Invoice Timesheet' +#. Label of the from_time (Time) field in DocType 'Communication Medium +#. Timeslot' +#. Label of the from_time (Time) field in DocType 'Availability Of Slots' +#. Label of the from_time (Datetime) field in DocType 'Downtime Entry' +#. Label of the from_time (Datetime) field in DocType 'Job Card Scheduled Time' +#. Label of the from_time (Datetime) field in DocType 'Job Card Time Log' +#. Label of the from_time (Time) field in DocType 'Project' +#. Label of the from_time (Datetime) field in DocType 'Timesheet Detail' +#. Label of the from_time (Time) field in DocType 'Incoming Call Handling +#. Schedule' +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json +#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:91 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:179 +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json +#: erpnext/templates/pages/timelog_info.html:31 +msgid "From Time" +msgstr "" + +#. Label of the from_time (Time) field in DocType 'Appointment Booking Slots' +#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json +msgid "From Time " +msgstr "" + +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.py:72 +msgid "From Time Should Be Less Than To Time" +msgstr "" + +#. Label of the from_value (Float) field in DocType 'Shipping Rule Condition' +#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json +msgid "From Value" +msgstr "" + +#. Label of the from_voucher_detail_no (Data) field in DocType 'Stock +#. Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "From Voucher Detail No" +msgstr "" + +#. Label of the from_voucher_no (Dynamic Link) field in DocType 'Stock +#. Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.js:103 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:164 +msgid "From Voucher No" +msgstr "" + +#. Label of the from_voucher_type (Select) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.js:92 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:158 +msgid "From Voucher Type" +msgstr "" + +#. Label of the from_warehouse (Link) field in DocType 'Purchase Invoice Item' +#. Label of the from_warehouse (Link) field in DocType 'Purchase Order Item' +#. Label of the from_warehouse (Link) field in DocType 'Material Request Plan +#. Item' +#. Label of the warehouse (Link) field in DocType 'Packed Item' +#. Label of the from_warehouse (Link) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "From Warehouse" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:36 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:32 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:36 +msgid "From and To Dates are required." +msgstr "" + +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:166 +msgid "From and To dates are required" +msgstr "" + +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:51 +msgid "From date cannot be greater than To date" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:79 +msgid "From value must be less than to value in row {0}" +msgstr "" + +#. Label of the freeze_account (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/buying/doctype/supplier/supplier_list.js:9 +msgid "Frozen" +msgstr "" + +#. Description of the 'Is Frozen' (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Frozen suppliers block ledger entries until unfrozen. Use this to temporarily lock accounting activity without disabling the supplier." +msgstr "" + +#. Label of the fuel_type (Select) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Fuel Type" +msgstr "" + +#. Label of the uom (Link) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Fuel UOM" +msgstr "" + +#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract' +#. Label of the fulfilled (Check) field in DocType 'Contract Fulfilment +#. Checklist' +#. Option for the 'Service Level Agreement Status' (Select) field in DocType +#. 'Issue' +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json +#: erpnext/support/doctype/issue/issue.json +msgid "Fulfilled" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:24 +msgid "Fulfillment" +msgstr "" + +#. Name of a role +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Fulfillment User" +msgstr "" + +#. Label of the fulfilment_deadline (Date) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Fulfilment Deadline" +msgstr "" + +#. Label of the sb_fulfilment (Section Break) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Fulfilment Details" +msgstr "" + +#. Label of the fulfilment_status (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Fulfilment Status" +msgstr "" + +#. Label of the fulfilment_terms (Table) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Fulfilment Terms" +msgstr "" + +#. Label of the fulfilment_terms (Table) field in DocType 'Contract Template' +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "Fulfilment Terms and Conditions" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:275 +msgid "Full Name, Email or Phone/Mobile of the user are mandatory to continue." +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Full and Final Statement" +msgstr "" + +#. Option for the 'Billing Status' (Select) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Fully Billed" +msgstr "" + +#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance +#. Schedule Detail' +#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance +#. Visit' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Fully Completed" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Delivery Status' (Select) field in DocType 'Pick List' +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Fully Delivered" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:6 +msgid "Fully Depreciated" +msgstr "" + +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase +#. Order' +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Fully Paid" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Furlong" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92 +msgid "Furniture and Fixtures" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:135 +msgid "Further accounts can be made under Groups, but entries can be made against non-Groups" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:31 +msgid "Further cost centers can be made under Groups but entries can be made against non-Groups" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person_tree.js:15 +msgid "Further nodes can be only created under 'Group' type nodes" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1232 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179 +msgid "Future Payment Amount" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1231 +msgid "Future Payment Ref" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:123 +msgid "Future Payments" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:389 +msgid "Future date is not allowed" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:258 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:161 +msgid "G - D" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:16 +msgid "GENERAL LEDGER" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankPicker.tsx:127 +#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:64 +msgid "GL Account" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:172 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:250 +msgid "GL Balance" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +msgid "GL Entry" +msgstr "" + +#. Label of the gle_processing_status (Select) field in DocType 'Period Closing +#. Voucher' +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +msgid "GL Entry Processing Status" +msgstr "" + +#. Label of the gl_reposting_index (Int) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "GL reposting index" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "GS1" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "GTIN" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "GTIN-14" +msgstr "" + +#. Label of the gain_loss (Currency) field in DocType 'Exchange Rate +#. Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Gain/Loss" +msgstr "" + +#. Label of the disposal_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Gain/Loss Account on Asset Disposal" +msgstr "" + +#. Description of the 'Gain/Loss already booked' (Currency) field in DocType +#. 'Exchange Rate Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Gain/Loss accumulated in foreign currency account. Accounts with '0' balance in either Base or Account currency" +msgstr "" + +#. Label of the gain_loss_booked (Currency) field in DocType 'Exchange Rate +#. Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Gain/Loss already booked" +msgstr "" + +#. Label of the gain_loss_unbooked (Currency) field in DocType 'Exchange Rate +#. Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Gain/Loss from Revaluation" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:138 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:225 +#: erpnext/setup/doctype/company/company.py:690 +msgid "Gain/Loss on Asset Disposal" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gallon (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gallon Dry (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gallon Liquid (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gamma" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:102 +msgid "Gantt Chart" +msgstr "" + +#: erpnext/config/projects.py:28 +msgid "Gantt chart of all tasks." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gauss" +msgstr "" + +#. Option for the 'Report' (Select) field in DocType 'Process Statement Of +#. Accounts' +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.js:110 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "General Ledger" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.js:82 +msgctxt "Warehouse" +msgid "General Ledger" +msgstr "" + +#. Label of the general_ledger_remarks_length (Int) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "General Ledger remarks length" +msgstr "" + +#. Label of the gs (Section Break) field in DocType 'Item Group' +#: erpnext/setup/doctype/item_group/item_group.json +msgid "General Settings" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.json +msgid "General and Payment Ledger Comparison" +msgstr "" + +#. Label of the general_and_payment_ledger_mismatch (Check) field in DocType +#. 'Ledger Health' +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +msgid "General and Payment Ledger mismatch" +msgstr "" + +#. Description of the 'Supplier Details' (Text) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "General information about your Supplier" +msgstr "" + +#. Label of the generate_demand (Button) field in DocType 'Sales Forecast' +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +msgid "Generate Demand" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:54 +msgid "Generate Demo Data for Exploration" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/regional/italy.js:4 +msgid "Generate E-Invoice" +msgstr "" + +#. Label of the generate_invoice_at (Select) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Generate Invoice At" +msgstr "" + +#. Label of the generate_schedule (Button) field in DocType 'Maintenance +#. Schedule' +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +msgid "Generate Schedule" +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.js:12 +msgid "Generate Stock Closing Entry" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:112 +msgid "Generate To Delete List" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +msgid "Generate To Delete list first" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight." +msgstr "" + +#. Label of the generated (Check) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Generated" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:56 +msgid "Generating Master Production Schedule..." +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.js:30 +msgid "Generating Preview" +msgstr "" + +#. Label of the get_actual_demand (Button) field in DocType 'Master Production +#. Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +msgid "Get Actual Demand" +msgstr "" + +#. Label of the get_advances (Button) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Get Advances Paid" +msgstr "" + +#. Label of the get_advances (Button) field in DocType 'POS Invoice' +#. Label of the get_advances (Button) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Get Advances Received" +msgstr "" + +#. Label of the get_allocations (Button) field in DocType 'Unreconcile Payment' +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +msgid "Get Allocations" +msgstr "" + +#. Label of the get_balance_for_periodic_accounting (Button) field in DocType +#. 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Get Balance" +msgstr "" + +#. Label of the get_current_stock (Button) field in DocType 'Purchase Receipt' +#. Label of the get_current_stock (Button) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Get Current Stock" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.js:190 +msgid "Get Customer Group Details" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:646 +msgid "Get Delivery Schedule" +msgstr "" + +#. Label of the get_entries (Button) field in DocType 'Exchange Rate +#. Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Get Entries" +msgstr "" + +#. Label of the get_items (Button) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Finished Goods" +msgstr "" + +#. Description of the 'Get Finished Goods' (Button) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Finished Goods for Manufacture" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:57 +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:159 +msgid "Get Invoices" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:104 +msgid "Get Invoices based on Filters" +msgstr "" + +#. Label of the get_item_locations (Button) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Get Item Locations" +msgstr "" + +#. Label of the get_items_from (Select) field in DocType 'Production Plan' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:177 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:202 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:361 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:395 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:427 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:467 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:514 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:537 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:380 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:402 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:447 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:75 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:108 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:80 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:100 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/public/js/controllers/buying.js:325 +#: erpnext/selling/doctype/quotation/quotation.js:182 +#: erpnext/selling/doctype/sales_order/sales_order.js:201 +#: erpnext/selling/doctype/sales_order/sales_order.js:1254 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:187 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:239 +#: erpnext/stock/doctype/material_request/material_request.js:141 +#: erpnext/stock/doctype/material_request/material_request.js:238 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:144 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:244 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:456 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:536 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:627 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:795 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:165 +msgid "Get Items From" +msgstr "" + +#. Label of the transfer_materials (Button) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Items for Purchase / Transfer" +msgstr "" + +#. Label of the get_items_for_mr (Button) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Items for Purchase Only" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:346 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:831 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:844 +msgid "Get Items from BOM" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:419 +msgid "Get Items from Material Requests against this Supplier" +msgstr "" + +#: erpnext/public/js/controllers/buying.js:602 +msgid "Get Items from Product Bundle" +msgstr "" + +#. Label of the get_latest_query (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Get Latest Query" +msgstr "" + +#. Label of the get_material_request (Button) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Material Request" +msgstr "" + +#. Label of the get_material_requests (Button) field in DocType 'Master +#. Production Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:181 +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:183 +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +msgid "Get Material Requests" +msgstr "" + +#. Label of the get_outstanding_invoices (Button) field in DocType 'Journal +#. Entry' +#. Label of the get_outstanding_invoices (Button) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Get Outstanding Invoices" +msgstr "" + +#. Label of the get_outstanding_orders (Button) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Get Outstanding Orders" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:38 +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:40 +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:43 +msgid "Get Payment Entries" +msgstr "" + +#: erpnext/accounts/doctype/payment_order/payment_order.js:23 +#: erpnext/accounts/doctype/payment_order/payment_order.js:31 +msgid "Get Payments from" +msgstr "" + +#. Label of the get_rm_cost_from_consumption_entry (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Get Raw Materials Cost from Consumption Entry" +msgstr "" + +#. Label of the get_sales_orders (Button) field in DocType 'Master Production +#. Schedule' +#. Label of the get_sales_orders (Button) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:128 +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:130 +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Sales Orders" +msgstr "" + +#. Label of the get_secondary_items (Button) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Get Secondary Items" +msgstr "" + +#. Label of the get_started_sections (Code) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Get Started Sections" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:552 +msgid "Get Stock" +msgstr "" + +#. Label of the get_sub_assembly_items (Button) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Sub Assembly Items" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:151 +msgid "Get Supplier Group Details" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:461 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:481 +msgid "Get Suppliers" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:485 +msgid "Get Suppliers By" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:357 +msgid "Get Timesheets" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:84 +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:87 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:94 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:97 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:102 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:107 +msgid "Get Unreconciled Entries" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:73 +msgid "Get around the system quickly with keyboard shortcuts" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:71 +msgid "Get stops from" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:196 +msgid "Getting Secondary Items" +msgstr "" + +#. Option for the 'Coupon Type' (Select) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Gift Card" +msgstr "" + +#. Description of the 'Recurse Every (As Per Transaction UOM)' (Float) field in +#. DocType 'Pricing Rule' +#. Description of the 'Recurse Every (As Per Transaction UOM)' (Float) field in +#. DocType 'Promotional Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Give free item for every N quantity" +msgstr "" + +#. Name of a DocType +#. Label of a shortcut in the ERPNext Settings Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/setup/doctype/global_defaults/global_defaults.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Global Defaults" +msgstr "" + +#: erpnext/www/book_appointment/index.html:58 +msgid "Go back" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.js:7 +msgid "Go to Bank Statement Importer in the Banking module to use this importer." +msgstr "" + +#: banking/src/pages/BankReconciliation.tsx:96 +msgid "Go to Desktop" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.js:15 +msgid "Go to the Banking module to setup this rule." +msgstr "" + +#. Label of a Card Break in the Quality Workspace +#: erpnext/quality_management/workspace/quality/quality.json +msgid "Goal and Procedure" +msgstr "" + +#. Group in Quality Procedure's connections +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Goals" +msgstr "" + +#. Option for the 'Shipment Type' (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Goods" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:394 +#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:34 +msgid "Goods In Transit" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:36 +msgid "Goods Transferred" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +msgid "Goods are already received against the outward entry {0}" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:190 +msgid "Government" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subscription' +#. Label of the grace_period (Int) field in DocType 'Subscription Settings' +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json +msgid "Grace Period" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Graduate" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Grain" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Grain/Cubic Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Grain/Gallon (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Grain/Gallon (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram/Cubic Centimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram/Cubic Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram/Cubic Millimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram/Litre" +msgstr "" + +#. Label of the grand_total (Currency) field in DocType 'Dunning' +#. Label of the total_amount (Currency) field in DocType 'Payment Entry +#. Reference' +#. Label of the grand_total (Currency) field in DocType 'POS Closing Entry' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType 'POS +#. Invoice' +#. Label of the grand_total (Currency) field in DocType 'POS Invoice' +#. Option for the 'Apply Discount On' (Select) field in DocType 'POS Profile' +#. Option for the 'Apply Discount On' (Select) field in DocType 'Pricing Rule' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Invoice' +#. Label of the base_grand_total (Currency) field in DocType 'Purchase Invoice' +#. Label of the grand_total (Currency) field in DocType 'Purchase Invoice' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Sales Invoice' +#. Label of the base_grand_total (Currency) field in DocType 'Sales Invoice' +#. Label of the grand_total (Currency) field in DocType 'Sales Invoice' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Subscription' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Order' +#. Label of the base_grand_total (Currency) field in DocType 'Purchase Order' +#. Label of the grand_total (Currency) field in DocType 'Purchase Order' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Supplier Quotation' +#. Label of the grand_total (Currency) field in DocType 'Supplier Quotation' +#. Label of the grand_total (Currency) field in DocType 'Production Plan Sales +#. Order' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Quotation' +#. Label of the base_grand_total (Currency) field in DocType 'Quotation' +#. Label of the grand_total (Currency) field in DocType 'Quotation' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Sales Order' +#. Label of the base_grand_total (Currency) field in DocType 'Sales Order' +#. Label of the grand_total (Currency) field in DocType 'Sales Order' +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Delivery Note' +#. Label of the base_grand_total (Currency) field in DocType 'Delivery Note' +#. Label of the grand_total (Currency) field in DocType 'Delivery Note' +#. Label of the grand_total (Currency) field in DocType 'Delivery Stop' +#. Label of the grand_total (Currency) field in DocType 'Landed Cost Purchase +#. Receipt' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Receipt' +#. Label of the base_grand_total (Currency) field in DocType 'Purchase Receipt' +#. Label of the grand_total (Currency) field in DocType 'Purchase Receipt' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:248 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:685 +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:15 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/report/pos_register/pos_register.py:218 +#: erpnext/accounts/report/purchase_register/purchase_register.py:277 +#: erpnext/accounts/report/sales_register/sales_register.py:305 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:105 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:554 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:558 +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:185 +#: erpnext/selling/page/point_of_sale/pos_payment.js:692 +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/templates/includes/order/order_taxes.html:105 +#: erpnext/templates/pages/rfq.html:58 +msgid "Grand Total" +msgstr "" + +#. Label of the base_grand_total (Currency) field in DocType 'POS Invoice' +#. Label of the base_grand_total (Currency) field in DocType 'Supplier +#. Quotation' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:246 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +msgid "Grand Total (Company Currency)" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:252 +msgid "Grand Total (Transaction Currency)" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:147 +msgid "Grand Total must match sum of Payment References" +msgstr "" + +#. Label of the grant_commission (Check) field in DocType 'POS Invoice Item' +#. Label of the grant_commission (Check) field in DocType 'Sales Invoice Item' +#. Label of the grant_commission (Check) field in DocType 'Sales Order Item' +#. Label of the grant_commission (Check) field in DocType 'Delivery Note Item' +#. Label of the grant_commission (Check) field in DocType 'Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +msgid "Grant Commission" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +msgid "Greater Than Amount" +msgstr "" + +#. Label of the greeting_message (Data) field in DocType 'Incoming Call +#. Settings' +#. Label of the greeting_message (Data) field in DocType 'Voice Call Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Greeting Message" +msgstr "" + +#. Label of the greeting_subtitle (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Greeting Subtitle" +msgstr "" + +#. Label of the greeting_title (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Greeting Title" +msgstr "" + +#. Label of the greetings_section_section (Section Break) field in DocType +#. 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Greetings Section" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:26 +msgid "Grocery" +msgstr "" + +#. Label of the gross_margin (Currency) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Gross Margin" +msgstr "" + +#. Label of the per_gross_margin (Percent) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Gross Margin %" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of the gross_profit (Currency) field in DocType 'Quotation Item' +#. Label of the gross_profit (Currency) field in DocType 'Sales Order Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/gross_profit/gross_profit.json +#: erpnext/accounts/report/gross_profit/gross_profit.py:375 +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Gross Profit" +msgstr "" + +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:206 +msgid "Gross Profit / Loss" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:382 +msgid "Gross Profit Percent" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:173 +msgid "Gross Profit Ratio" +msgstr "" + +#. Option for the 'Deduct Tax On Basis' (Select) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Gross Total" +msgstr "" + +#. Label of the gross_weight_pkg (Float) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Gross Weight" +msgstr "" + +#. Label of the gross_weight_uom (Link) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Gross Weight UOM" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.json +msgid "Gross and Net Profit Report" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:148 +msgid "Group By Customer" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:126 +msgid "Group By Supplier" +msgstr "" + +#. Label of the group_name (Data) field in DocType 'Tax Withholding Group' +#: erpnext/accounts/doctype/tax_withholding_group/tax_withholding_group.json +msgid "Group Name" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person_tree.js:14 +msgid "Group Node" +msgstr "" + +#. Label of the group_same_items (Check) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Group Same Items" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:157 +msgid "Group Warehouses cannot be used in transactions. Please change the value of {0}" +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.js:56 +msgid "Group by" +msgstr "" + +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:61 +msgid "Group by Material Request" +msgstr "" + +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:83 +msgid "Group by Party" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:90 +msgid "Group by Purchase Order" +msgstr "" + +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.js:89 +msgid "Group by Sales Order" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:156 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:188 +msgid "Group by Voucher" +msgstr "" + +#: erpnext/stock/utils.py:418 +msgid "Group node warehouse is not allowed to select for transactions" +msgstr "" + +#. Label of the group_same_items (Check) field in DocType 'POS Invoice' +#. Label of the group_same_items (Check) field in DocType 'Purchase Invoice' +#. Label of the group_same_items (Check) field in DocType 'Sales Invoice' +#. Label of the group_same_items (Check) field in DocType 'Purchase Order' +#. Label of the group_same_items (Check) field in DocType 'Supplier Quotation' +#. Label of the group_same_items (Check) field in DocType 'Quotation' +#. Label of the group_same_items (Check) field in DocType 'Sales Order' +#. Label of the group_same_items (Check) field in DocType 'Delivery Note' +#. Label of the group_same_items (Check) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Group same items" +msgstr "" + +#: erpnext/stock/doctype/item/item_dashboard.py:18 +msgid "Groups" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:32 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:32 +msgid "Growth View" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:268 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:171 +msgid "H - F" +msgstr "" + +#. Name of a role +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/contract_template/contract_template.json +#: erpnext/projects/doctype/activity_type/activity_type.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/doctype/task_type/task_type.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/setup/doctype/branch/branch.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/designation/designation.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee_group/employee_group.json +#: erpnext/setup/doctype/holiday_list/holiday_list.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/setup/setup_wizard/data/designation.txt:18 +#: erpnext/support/doctype/issue/issue.json +msgid "HR Manager" +msgstr "" + +#. Name of a role +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/setup/doctype/branch/branch.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/designation/designation.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee_group/employee_group.json +#: erpnext/setup/doctype/holiday_list/holiday_list.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/support/doctype/issue/issue.json +msgid "HR User" +msgstr "" + +#. Option for the 'Distribution Frequency' (Select) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:72 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:77 +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:59 +#: erpnext/public/js/financial_statements.js:456 +#: erpnext/public/js/purchase_trends_filters.js:21 +#: erpnext/public/js/sales_trends_filters.js:13 +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:34 +#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:34 +#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:34 +msgid "Half-Yearly" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hand" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:161 +msgid "Handle Employee Advances" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:228 +msgid "Hardware" +msgstr "" + +#. Label of the has_alternative_item (Check) field in DocType 'Quotation Item' +#: erpnext/selling/doctype/quotation_item/quotation_item.json +msgid "Has Alternative Item" +msgstr "" + +#. Label of the has_batch_no (Check) field in DocType 'Work Order' +#. Label of the has_batch_no (Check) field in DocType 'Item' +#. Label of the has_batch_no (Check) field in DocType 'Serial and Batch Bundle' +#. Label of the has_batch_no (Check) field in DocType 'Stock Ledger Entry' +#. Label of the has_batch_no (Check) field in DocType 'Stock Reservation Entry' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Has Batch No" +msgstr "" + +#. Label of the has_certificate (Check) field in DocType 'Asset Maintenance +#. Log' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +msgid "Has Certificate " +msgstr "" + +#. Label of the has_corrective_cost (Check) field in DocType 'Landed Cost Taxes +#. and Charges' +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Has Corrective Cost" +msgstr "" + +#. Label of the has_expiry_date (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Has Expiry Date" +msgstr "" + +#. Label of the has_item_scanned (Check) field in DocType 'POS Invoice Item' +#. Label of the has_item_scanned (Check) field in DocType 'Sales Invoice Item' +#. Label of the has_item_scanned (Check) field in DocType 'Delivery Note Item' +#. Label of the has_item_scanned (Check) field in DocType 'Purchase Receipt +#. Item' +#. Label of the has_item_scanned (Check) field in DocType 'Stock Entry Detail' +#. Label of the has_item_scanned (Data) field in DocType 'Stock Reconciliation +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Has Item Scanned" +msgstr "" + +#. Label of the has_operating_cost (Check) field in DocType 'Landed Cost Taxes +#. and Charges' +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Has Operating Cost" +msgstr "" + +#. Label of the has_print_format (Check) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Has Print Format" +msgstr "" + +#. Label of the has_priority (Check) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Has Priority" +msgstr "" + +#. Label of the has_serial_no (Check) field in DocType 'Work Order' +#. Label of the has_serial_no (Check) field in DocType 'Item' +#. Label of the has_serial_no (Check) field in DocType 'Serial and Batch +#. Bundle' +#. Label of the has_serial_no (Check) field in DocType 'Stock Ledger Entry' +#. Label of the has_serial_no (Check) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Has Serial No" +msgstr "" + +#. Label of the has_subcontracted (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Has Subcontracted" +msgstr "" + +#. Label of the has_unit_price_items (Check) field in DocType 'Purchase Order' +#. Label of the has_unit_price_items (Check) field in DocType 'Request for +#. Quotation' +#. Label of the has_unit_price_items (Check) field in DocType 'Supplier +#. Quotation' +#. Label of the has_unit_price_items (Check) field in DocType 'Quotation' +#. Label of the has_unit_price_items (Check) field in DocType 'Sales Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Has Unit Price Items" +msgstr "" + +#. Label of the has_variants (Check) field in DocType 'BOM' +#. Label of the has_variants (Check) field in DocType 'BOM Item' +#. Label of the has_variants (Check) field in DocType 'Item' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/stock/doctype/item/item.json +msgid "Has Variants" +msgstr "" + +#. Label of the use_naming_series (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Have default Naming Series for Batch ID?" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:19 +msgid "Head of Marketing and Sales" +msgstr "" + +#. Label of the header_text (Data) field in DocType 'Bank Statement Import Log +#. Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Header Text" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/account/account.json +msgid "Heads (or groups) against which Accounting Entries are made and balances are maintained." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:27 +msgid "Health Care" +msgstr "" + +#. Label of the health_details (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Health Details" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hectare" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hectogram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hectometer" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hectopascal" +msgstr "" + +#. Label of the height (Float) field in DocType 'Shipment Parcel' +#. Label of the height (Float) field in DocType 'Shipment Parcel Template' +#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Height (cm)" +msgstr "" + +#: erpnext/templates/pages/search_help.py:14 +msgid "Help Results for" +msgstr "" + +#. Label of the help_section (Section Break) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Help Section" +msgstr "" + +#. Label of the help_text (HTML) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Help Text" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +msgid "Helps you distribute the Budget/Target across months if you have seasonality in your business." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:355 +msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2040 +msgid "Here are the options to proceed:" +msgstr "" + +#. Description of the 'Family Background' (Small Text) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Here you can maintain family details like name and occupation of parent, spouse and children" +msgstr "" + +#. Description of the 'Health Details' (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Here you can maintain height, weight, allergies, medical concerns etc" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:258 +msgid "Here, you can select a senior of this Employee. Based on this, Organization Chart will be populated." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:77 +msgid "Here, your weekly offs are pre-populated based on the previous selections. You can add more rows to also add public and national holidays individually." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hertz" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +msgid "Hi," +msgstr "" + +#. Label of the hidden_calculation (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Hidden Line (Internal Use Only)" +msgstr "" + +#. Description of the 'Contact List' (Code) field in DocType 'Shareholder' +#: erpnext/accounts/doctype/shareholder/shareholder.json +msgid "Hidden list maintaining the list of contacts linked to Shareholder" +msgstr "" + +#. Label of the hide_currency_symbol (Select) field in DocType 'Global +#. Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Hide Currency Symbol" +msgstr "" + +#. Label of the hide_tax_id (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Hide Customer's Tax ID from sales transactions" +msgstr "" + +#. Label of the hide_when_empty (Check) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Hide If Zero" +msgstr "" + +#. Label of the hide_images (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Hide Images" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +msgid "Hide Recent Orders" +msgstr "" + +#. Label of the hide_unavailable_items (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Hide Unavailable Items" +msgstr "" + +#. Description of the 'Hide If Zero' (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Hide this line if amount is zero" +msgstr "" + +#. Label of the hide_timesheets (Check) field in DocType 'Project User' +#: erpnext/projects/doctype/project_user/project_user.json +msgid "Hide timesheets" +msgstr "" + +#. Description of the 'Priority' (Select) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Higher the number, higher the priority" +msgstr "" + +#. Label of the history_in_company (Section Break) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "History In Company" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:314 +#: erpnext/selling/doctype/sales_order/sales_order.js:1033 +msgid "Hold" +msgstr "" + +#. Label of the sb_14 (Section Break) field in DocType 'Purchase Invoice' +#. Label of the on_hold (Check) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:98 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Hold Invoice" +msgstr "" + +#. Label of the hold_type (Select) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Hold Type" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/holiday/holiday.json +msgid "Holiday" +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.py:162 +msgid "Holiday Date {0} added multiple times" +msgstr "" + +#. Label of the holiday_list (Link) field in DocType 'Appointment Booking +#. Settings' +#. Label of the holiday_list (Link) field in DocType 'Workstation' +#. Label of the holiday_list (Link) field in DocType 'Project' +#. Label of the holiday_list (Link) field in DocType 'Employee' +#. Name of a DocType +#. Label of the holiday_list (Link) field in DocType 'Service Level Agreement' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/holiday_list/holiday_list.json +#: erpnext/setup/doctype/holiday_list/holiday_list_calendar.js:19 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Holiday List" +msgstr "" + +#. Label of the holiday_list_name (Data) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Holiday List Name" +msgstr "" + +#. Label of the holidays_section (Section Break) field in DocType 'Holiday +#. List' +#. Label of the holidays (Table) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Holidays" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Horsepower" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Horsepower-Hours" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hour" +msgstr "" + +#. Label of the hour_rate (Currency) field in DocType 'BOM Operation' +#. Label of the hour_rate (Currency) field in DocType 'Job Card' +#. Label of the hour_rate (Float) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Hour Rate" +msgstr "" + +#. Label of the hours (Float) field in DocType 'Workstation Working Hour' +#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:28 +#: erpnext/templates/pages/timelog_info.html:37 +msgid "Hours" +msgstr "" + +#: erpnext/templates/pages/projects.html:26 +msgid "Hours Spent" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:67 +msgid "How Pricing Rule is applied?" +msgstr "" + +#. Label of the frequency (Select) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "How frequently?" +msgstr "" + +#. Description of the 'Quantity (Output Qty)' (Float) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "How many units of the final product this BOM makes." +msgstr "" + +#. Label of the project_update_frequency (Select) field in DocType 'Buying +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "How often should project be updated of Total Purchase Cost ?" +msgstr "" + +#. Label of the sales_update_frequency (Select) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "How often should sales data be updated in Company/Project?" +msgstr "" + +#. Description of the 'Data Source' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "How this line gets its data" +msgstr "" + +#. Description of the 'Value Type' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "How to format and present values in the financial report (only if different from column fieldtype)" +msgstr "" + +#. Label of the hours (Float) field in DocType 'Timesheet Detail' +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Hrs" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:500 +msgid "Human Resources" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hundredweight (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hundredweight (US)" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:283 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:186 +msgid "I - J" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:293 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:196 +msgid "I - K" +msgstr "" + +#. Label of the iban (Data) field in DocType 'Bank Account' +#. Label of the iban (Data) field in DocType 'Bank Guarantee' +#. Label of the iban (Read Only) field in DocType 'Payment Request' +#. Label of the iban (Data) field in DocType 'Employee' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/setup/doctype/employee/employee.json +msgid "IBAN" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:93 +msgid "IMPORTANT: Create a backup before proceeding!" +msgstr "" + +#. Name of a report +#: erpnext/regional/report/irs_1099/irs_1099.json +msgid "IRS 1099" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "ISBN" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "ISBN-10" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "ISBN-13" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "ISSN" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Iches Of Water" +msgstr "" + +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:128 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:69 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:115 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:192 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:83 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:152 +msgid "Id" +msgstr "" + +#. Description of the 'From Package No.' (Int) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Identification of the package for the delivery (for print)" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:5 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:441 +msgid "Identifying Decision Makers" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Idle" +msgstr "" + +#. Description of the 'Book Deferred entries based on' (Select) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If \"Months\" is selected, a fixed amount will be booked as deferred revenue or expense for each month irrespective of the number of days in a month. It will be prorated if deferred revenue or expense is not booked for an entire month" +msgstr "" + +#. Description of the 'Reconcile on Advance Payment Date' (Check) field in +#. DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "If Enabled - Reconciliation happens on the Advance Payment posting date
        \n" +"If Disabled - Reconciliation happens on oldest of 2 Dates: Invoice Date or the Advance Payment posting date
        \n" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:34 +msgid "If Auto Opt In is checked, then the customers will be automatically linked with the concerned Loyalty Program (on save)" +msgstr "" + +#. Description of the 'Cost Center' (Link) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "If Income or Expense" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:127 +msgid "If a party cannot be matched by account number or IBAN, the system will try fuzzy matching using the party name and transaction description." +msgstr "" + +#: erpnext/manufacturing/doctype/operation/operation.js:32 +msgid "If an operation is divided into sub operations, they can be added here." +msgstr "" + +#. Description of the 'Account' (Link) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "If blank, parent Warehouse Account or company default will be considered in transactions" +msgstr "" + +#. Description of the 'Bill for rejected quantity in Purchase Invoice' (Check) +#. field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "If checked, Rejected Quantity will be included while making Purchase Invoice from Purchase Receipt." +msgstr "" + +#. Description of the 'Reserve Stock' (Check) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "If checked, Stock will be reserved on Submit" +msgstr "" + +#. Description of the 'Is Credit Card' (Check) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "If checked, journal entries made using bank reconciliation will be of type \"Credit Card Entry\"" +msgstr "" + +#. Description of the 'Scan Mode' (Check) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "If checked, picked qty won't automatically be fulfilled on submit of pick list." +msgstr "" + +#. Description of the 'Allocate Full Amount to Stock Items' (Check) field in +#. DocType 'Purchase Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "If checked, the entire amount (e.g. Freight) is allocated to the valuation of stock & asset items only. If unchecked, the amount is distributed across all items and the portion belonging to non-stock items is not added to valuation." +msgstr "" + +#. Description of the 'Considered In Paid Amount' (Check) field in DocType +#. 'Purchase Taxes and Charges' +#. Description of the 'Considered In Paid Amount' (Check) field in DocType +#. 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "If checked, the tax amount will be considered as already included in the Paid Amount in Payment Entry" +msgstr "" + +#. Description of the 'Is this Tax included in Basic Rate?' (Check) field in +#. DocType 'Purchase Taxes and Charges' +#. Description of the 'Is this Tax included in Basic Rate?' (Check) field in +#. DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount" +msgstr "" + +#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in +#. DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line." +msgstr "" + +#. Description of the 'Update Stock' (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "If checked, updates inventory; stock and accounting entries are created together. Leave unchecked if a Delivery Note is created separately." +msgstr "" + +#. Description of the 'Update Stock' (Check) field in DocType 'Purchase +#. Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "If checked, updates inventory; stock and accounting entries are created together. Leave unchecked if a Purchase Receipt is created separately." +msgstr "" + +#: erpnext/public/js/setup_wizard.js:56 +msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later." +msgstr "" + +#. Description of the 'Service Address' (Small Text) field in DocType 'Warranty +#. Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "If different than customer address" +msgstr "" + +#. Description of the 'Disable In Words' (Check) field in DocType 'Global +#. Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "If disable, 'In Words' field will not be visible in any transaction" +msgstr "" + +#. Description of the 'Disable Rounded Total' (Check) field in DocType 'Global +#. Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "If disable, 'Rounded Total' field will not be visible in any transaction" +msgstr "" + +#. Description of the 'Ignore Pricing Rule' (Check) field in DocType 'Pick +#. List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "If enabled then system won't apply the pricing rule on the delivery note which will be create from the pick list" +msgstr "" + +#. Description of the 'Pick Manually' (Check) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "If enabled then system won't override the picked qty / batches / serial numbers / warehouse." +msgstr "" + +#. Description of the 'Send Document Print' (Check) field in DocType 'Request +#. for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "If enabled, a print of this document will be attached to each email" +msgstr "" + +#. Description of the 'Enable discount accounting for selling' (Check) field in +#. DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "If enabled, additional ledger entries will be made for discounts in a separate Discount Account" +msgstr "" + +#. Description of the 'Send Attached Files' (Check) field in DocType 'Request +#. for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "If enabled, all files attached to this document will be attached to each email" +msgstr "" + +#. Description of the 'Do not update Serial / Batch on creation of auto bundle' +#. (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, do not update serial / batch values in the stock transactions on creation of auto Serial \n" +" / Batch Bundle. " +msgstr "" + +#. Description of the 'Consider Projected Qty in Calculation' (Check) field in +#. DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "If enabled, formula for Qty to Order:
        \n" +"Required Qty (BOM) - Projected Qty.
        This helps avoid over-ordering." +msgstr "" + +#. Description of the 'Consider Projected Qty in Calculation (RM)' (Check) +#. field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "If enabled, formula for Required Qty:
        \n" +"Required Qty (BOM) - Projected Qty.
        This helps avoid over-ordering." +msgstr "" + +#. Description of the 'Create Ledger Entries for Change Amount' (Check) field +#. in DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "If enabled, ledger entries will be posted for change amount in POS transactions" +msgstr "" + +#. Description of the 'Automatically run rules on unreconciled transactions' +#. (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If enabled, rule matching algorithm will run every hour" +msgstr "" + +#. Description of the 'Grant Commission' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If enabled, sales from this item will be included in Sales Person and Sales Partner commission calculations" +msgstr "" + +#. Description of the 'Allow delivery of overproduced quantity' (Check) field +#. in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "If enabled, system will allow user to deliver the entire quantity of the finished goods produced against the Subcontracting Inward Order. If disabled, system will allow delivery of only the ordered quantity." +msgstr "" + +#. Description of the 'Set incoming rate as zero for expired Batch' (Check) +#. field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "If enabled, system will set incoming rate as zero for stand-alone credit notes with expired batch item." +msgstr "" + +#. Description of the 'Deliver secondary Items' (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "If enabled, the Secondary Items generated against a Finished Good will also be added in the Stock Entry when delivering that Finished Good." +msgstr "" + +#. Description of the 'Disable Rounded Total' (Check) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "If enabled, the consolidated invoices will have rounded total disabled" +msgstr "" + +#. Description of the 'Allow internal transfers at user-defined rate' (Check) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, the item rate won't adjust to the valuation rate during internal transfers, but accounting will still use the valuation rate. This will allow the user to specify a different rate for printing or taxation purposes." +msgstr "" + +#. Description of the 'Validate Material Transfer warehouses' (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, the source and target warehouse in the Material Transfer Stock Entry must be different else an error will be thrown. If inventory dimensions are present, same source and target warehouse can be allowed but atleast any one of the inventory dimension fields must be different." +msgstr "" + +#. Description of the 'Allow negative stock for Batch' (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, the system will allow negative stock entries for the batch. But, this may lead to incorrect valuation rates, so it is recommended to avoid using this option. The system will permit negative stock only when it is caused by backdated entries and will validate and block negative stock in all other cases." +msgstr "" + +#. Description of the 'Allow Negative Stock for Batch' (Check) field in DocType +#. 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "If enabled, the system will allow negative stock entries for this batch, overriding the 'Allow negative stock for Batch' setting in Stock Settings. This may lead to incorrect valuation rates, so it is recommended to avoid using this option." +msgstr "" + +#. Description of the 'Allow UOM with conversion rate defined in Item' (Check) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, the system will allow selecting UOMs in sales and purchase transactions only if the conversion rate is set in the item master." +msgstr "" + +#. Description of the 'Allow Editing of Items and Quantities in Work Order' +#. (Check) field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "If enabled, the system will allow users to edit the raw materials and their quantities in the Work Order. The system will not reset the quantities as per the BOM, if the user has changed them." +msgstr "" + +#. Description of the 'Set valuation rate for rejected Materials' (Check) field +#. in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "If enabled, the system will generate an accounting entry for materials rejected in the Purchase Receipt." +msgstr "" + +#. Description of the 'Enable Item-wise Inventory Account' (Check) field in +#. DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "If enabled, the system will use the inventory account set in the Item Master or Item Group or Brand. Otherwise, it will use the inventory account set in the Warehouse." +msgstr "" + +#. Description of the 'Do not use Batch-wise Valuation' (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, the system will use the moving average valuation method to calculate the valuation rate for the batched items and will not consider the individual batch-wise incoming rate." +msgstr "" + +#. Description of the 'Validate Applied Rule' (Check) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "If enabled, then system will only validate the pricing rule and not apply automatically. User has to manually set the discount percentage / margin / free items to validate the pricing rule" +msgstr "" + +#. Description of the 'Include in Charts' (Check) field in DocType 'Financial +#. Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "If enabled, this row's values will be displayed on financial charts" +msgstr "" + +#. Description of the 'Confirm before resetting posting date' (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If enabled, user will be alerted before resetting posting date to current date in relevant transactions" +msgstr "" + +#. Description of the 'Disable Serial No and Batch selector' (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, users must enter Serial No. / Batch data manually instead of using the selector dialog." +msgstr "" + +#. Description of the 'Variant Of' (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If item is a variant of another item then description, image, pricing, taxes etc will be set from the template unless explicitly specified" +msgstr "" + +#. Description of the 'Get Items for Purchase / Transfer' (Button) field in +#. DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "If items in stock, proceed with Material Transfer or Purchase." +msgstr "" + +#. Description of the 'Role allowed to create/edit back-dated transactions' +#. (Link) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If mentioned, the system will allow only the users with this Role to create or modify any stock transaction earlier than the latest stock transaction for a specific item and warehouse. If set as blank, it allows all users to create/edit back-dated transactions." +msgstr "" + +#. Description of the 'To Package No.' (Int) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "If more than one package of the same type (for print)" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:103 +msgid "If multiple Pricing Rules continue to prevail, users are asked to set Priority manually to resolve conflict." +msgstr "" + +#. Description of the 'Use prices from Default Price List as fallback' (Check) +#. field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "If no Item Price is found for an item in the Price List set in the transaction, prices from the Default Price List will be fetched." +msgstr "" + +#. Description of the 'Automatically add taxes from Taxes and Charges Template' +#. (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." +msgstr "" + +#: erpnext/stock/stock_ledger.py:2050 +msgid "If not, you can Cancel / Submit this entry" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +msgid "If party does not exist, create it using the Customer Name field." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +msgid "If party does not exist, create it using the Supplier Name field." +msgstr "" + +#. Description of the 'Free Item Rate' (Currency) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "If rate is zero then item will be treated as \"Free Item\"" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:258 +msgid "If rule matches, then:" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:51 +msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, 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." +msgstr "" + +#. Description of the 'Default Accounts' (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "If set, accounting entries for this customer will post to these accounts instead of the company default." +msgstr "" + +#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1267 +msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected." +msgstr "" + +#. Description of the 'Frozen' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "If the account is frozen, entries are allowed to restricted users." +msgstr "" + +#: erpnext/stock/stock_ledger.py:2043 +msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." +msgstr "" + +#. Description of the 'Projected On Hand' (Float) field in DocType 'Material +#. Request Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "If the reorder check is set at the Group warehouse level, the available quantity becomes the sum of the projected quantities of all its child warehouses." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1286 +msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed." +msgstr "" + +#. Description of the 'Catch All' (Link) field in DocType 'Communication +#. Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "If there is no assigned timeslot, then communication will be handled by this group" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:24 +msgid "If there is no title column, use the code column for the title." +msgstr "" + +#. Description of the 'Allocate Payment Based On Payment Terms' (Check) field +#. in DocType 'Payment Terms Template' +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json +msgid "If this checkbox is checked, paid amount will be splitted and allocated as per the amounts in payment schedule against each payment term" +msgstr "" + +#. Description of the 'Follow Calendar Months' (Check) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "If this is checked subsequent new invoices will be created on calendar month and quarter start dates irrespective of current invoice start date" +msgstr "" + +#. Description of the 'Submit Journal entries' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If this is unchecked Journal Entries will be saved in a Draft state and will have to be submitted manually" +msgstr "" + +#. Description of the 'Book deferred entries via Journal Entry' (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If this is unchecked, direct GL entries will be created to book deferred revenue or expense" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:761 +msgid "If this is undesirable please cancel the corresponding Payment Entry." +msgstr "" + +#. Description of the 'Has Variants' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If this item has variants, then it cannot be selected in sales orders etc." +msgstr "" + +#: erpnext/buying/doctype/buying_settings/buying_settings.js:76 +msgid "If this option is configured 'Yes', ERPNext will prevent you from creating a Purchase Invoice or Receipt without creating a Purchase Order first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Order' checkbox in the Supplier master." +msgstr "" + +#: erpnext/buying/doctype/buying_settings/buying_settings.js:83 +msgid "If this option is configured 'Yes', ERPNext will prevent you from creating a Purchase Invoice without creating a Purchase Receipt first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Receipt' checkbox in the Supplier master." +msgstr "" + +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:10 +msgid "If ticked, multiple materials can be used for a single Work Order. This is useful if one or more time consuming products are being manufactured." +msgstr "" + +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:24 +msgid "If ticked, the BOM cost will be automatically updated based on Valuation Rate / Price List Rate / last purchase rate of raw materials." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:82 +msgid "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." +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:31 +msgid "If unlimited expiry for the Loyalty Points, keep the Expiry Duration empty or 0." +msgstr "" + +#. Description of the 'Is Rejected Warehouse' (Check) field in DocType +#. 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "If yes, then this warehouse will be used to store rejected materials" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1482 +msgid "If you are maintaining stock of this Item in your Inventory, ERPNext will make a stock ledger entry for each transaction of this item." +msgstr "" + +#. Description of the 'Unreconciled Entries' (Section Break) field in DocType +#. 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "If you need to reconcile particular transactions against each other, then please select accordingly. If not, all the transactions will be allocated in FIFO order." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:92 +msgid "If you still want to proceed, please disable {0} checkbox." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +msgid "If you still want to proceed, please enable {0}." +msgstr "" + +#. Description of the 'Sequence ID' (Int) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "If you want to run operations in parallel, keep the same sequence ID for them." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:375 +msgid "If you {0} {1} quantities of the item {2}, the scheme {3} will be applied on the item." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:380 +msgid "If you {0} {1} worth item {2}, the scheme {3} will be applied on the item." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:81 +msgid "If your bank statement shows a different closing balance, it is because all transactions have not reconciled yet." +msgstr "" + +#. Option for the 'Action if Annual Budget Exceeded on MR' (Select) field in +#. DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on MR' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Annual Budget Exceeded on PO' (Select) field in +#. DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on PO' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Annual Budget Exceeded on Actual' (Select) field +#. in DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on Actual' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Anual Budget Exceeded on Cumulative Expense' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Accumulative Monthly Budget Exceeded on Cumulative +#. Expense' (Select) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Ignore" +msgstr "" + +#. Label of the ignore_account_closing_balance (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Ignore Account closing balance" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:131 +msgid "Ignore Closing Balance" +msgstr "" + +#. Label of the ignore_default_payment_terms_template (Check) field in DocType +#. 'Purchase Invoice' +#. Label of the ignore_default_payment_terms_template (Check) field in DocType +#. 'Sales Invoice' +#. Label of the ignore_default_payment_terms_template (Check) field in DocType +#. 'Sales Order' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Ignore Default Payment Terms Template" +msgstr "" + +#. Label of the ignore_employee_time_overlap (Check) field in DocType 'Projects +#. Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +msgid "Ignore Employee Time Overlap" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:145 +msgid "Ignore Empty Stock" +msgstr "" + +#. Label of the ignore_exchange_rate_revaluation_journals (Check) field in +#. DocType 'Process Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:224 +msgid "Ignore Exchange Rate Revaluation and Gain / Loss Journals" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1470 +msgid "Ignore Existing Ordered Qty" +msgstr "" + +#. Label of the ignore_is_opening_check_for_reporting (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Ignore Is Opening check for reporting" +msgstr "" + +#. Label of the ignore_pricing_rule (Check) field in DocType 'POS Invoice' +#. Label of the ignore_pricing_rule (Check) field in DocType 'POS Profile' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Purchase Invoice' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Sales Invoice' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Purchase Order' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Supplier +#. Quotation' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Quotation' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Sales Order' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Delivery Note' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Pick List' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Ignore Pricing Rule" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:335 +msgid "Ignore Pricing Rule is enabled. Cannot apply coupon code." +msgstr "" + +#. Label of the ignore_cr_dr_notes (Check) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:120 +#: erpnext/accounts/report/general_ledger/general_ledger.js:229 +msgid "Ignore System Generated Credit / Debit Notes" +msgstr "" + +#. Label of the ignore_tax_withholding_threshold (Check) field in DocType +#. 'Journal Entry' +#. Label of the ignore_tax_withholding_threshold (Check) field in DocType +#. 'Payment Entry' +#. Label of the ignore_tax_withholding_threshold (Check) field in DocType +#. 'Purchase Invoice' +#. Label of the ignore_tax_withholding_threshold (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Ignore Tax Withholding Threshold" +msgstr "" + +#. Label of the ignore_user_time_overlap (Check) field in DocType 'Projects +#. Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +msgid "Ignore User Time Overlap" +msgstr "" + +#. Description of the 'Add Manually' (Check) field in DocType 'Repost Payment +#. Ledger' +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +msgid "Ignore Voucher Type filter and Select Vouchers Manually" +msgstr "" + +#. Label of the ignore_workstation_time_overlap (Check) field in DocType +#. 'Projects Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +msgid "Ignore Workstation Time Overlap" +msgstr "" + +#. Description of the 'Ignore Is Opening check for reporting' (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:267 +msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}." +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234 +msgid "Impairment" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:6 +msgid "Implementation Partner" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:258 +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:294 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:305 +#: banking/src/pages/BankStatementImporterContainer.tsx:28 +msgid "Import Bank Statement" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +msgid "Import Chart of Accounts from a csv file" +msgstr "" + +#. Label of a Link in the ERPNext Settings Workspace +#. Label of a Link in the Home Workspace +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/setup/workspace/home/home.json +msgid "Import Data" +msgstr "" + +#: erpnext/setup/doctype/employee/employee_list.js:16 +msgid "Import Employees" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list.js:7 +#: erpnext/edi/doctype/code_list/code_list_list.js:3 +#: erpnext/edi/doctype/common_code/common_code_list.js:3 +msgid "Import Genericode File" +msgstr "" + +#. Label of the import_invoices (Button) field in DocType 'Import Supplier +#. Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Import Invoices" +msgstr "" + +#. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement +#. Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Import MT940 Fromat" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 +msgid "Import Successful" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +msgid "Import Summary" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Name of a DocType +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Import Supplier Invoice" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:228 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:84 +msgid "Import Using CSV file" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:131 +msgid "Import completed. {0} common codes created." +msgstr "" + +#: erpnext/stock/doctype/item_price/item_price.js:38 +msgid "Import in Bulk" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:206 +msgid "Import template should be of type .csv, .xlsx, .xls or .pdf" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:277 +msgid "Import your bank statement to get started." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:115 +msgid "Import {0} transactions" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:251 +msgid "Imported On" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:192 +msgid "Imported {0} DocTypes" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:36 +msgid "Importing Code Lists from remote URLs is not allowed." +msgstr "" + +#: erpnext/edi/doctype/common_code/common_code.py:111 +msgid "Importing Common Codes" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:132 +msgid "Importing {0} transactions" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:115 +msgid "Importing..." +msgstr "" + +#. Option for the 'Manufacturing Type' (Select) field in DocType 'Production +#. Plan Sub Assembly Item' +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "In House" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:18 +msgid "In Maintenance" +msgstr "" + +#. Description of the 'Downtime' (Float) field in DocType 'Downtime Entry' +#. Description of the 'Lead Time' (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "In Mins" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:146 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:178 +msgid "In Party Currency" +msgstr "" + +#. Description of the 'Rate of Depreciation' (Percent) field in DocType 'Asset +#. Depreciation Schedule' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "In Percentage" +msgstr "" + +#. Option for the 'Qualification Status' (Select) field in DocType 'Lead' +#. Option for the 'Status' (Select) field in DocType 'Production Plan' +#. Option for the 'Status' (Select) field in DocType 'Work Order' +#. Option for the 'Inspection Type' (Select) field in DocType 'Quality +#. Inspection' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "In Process" +msgstr "" + +#: erpnext/stock/report/item_variant_details/item_variant_details.py:107 +msgid "In Production" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:112 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82 +#: erpnext/stock/report/stock_balance/stock_balance.py:547 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:317 +msgid "In Qty" +msgstr "" + +#: erpnext/templates/form_grid/stock_entry_grid.html:26 +msgid "In Stock" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Delivery Trip' +#. Option for the 'Transfer Status' (Select) field in DocType 'Material +#. Request' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:11 +#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:28 +msgid "In Transit" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:477 +msgid "In Transit Transfer" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:446 +msgid "In Transit Warehouse" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:553 +msgid "In Value" +msgstr "" + +#. Label of the in_words (Small Text) field in DocType 'Payment Entry' +#. Label of the in_words (Data) field in DocType 'POS Invoice' +#. Label of the base_in_words (Data) field in DocType 'Purchase Invoice' +#. Label of the in_words (Data) field in DocType 'Purchase Invoice' +#. Label of the base_in_words (Small Text) field in DocType 'Sales Invoice' +#. Label of the in_words (Small Text) field in DocType 'Sales Invoice' +#. Label of the base_in_words (Data) field in DocType 'Purchase Order' +#. Label of the in_words (Data) field in DocType 'Purchase Order' +#. Label of the in_words (Data) field in DocType 'Supplier Quotation' +#. Label of the base_in_words (Data) field in DocType 'Quotation' +#. Label of the in_words (Data) field in DocType 'Quotation' +#. Label of the base_in_words (Data) field in DocType 'Sales Order' +#. Label of the in_words (Data) field in DocType 'Sales Order' +#. Label of the base_in_words (Data) field in DocType 'Delivery Note' +#. Label of the in_words (Data) field in DocType 'Delivery Note' +#. Label of the base_in_words (Data) field in DocType 'Purchase Receipt' +#. Label of the in_words (Data) field in DocType 'Purchase Receipt' +#. Label of the in_words (Data) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "In Words" +msgstr "" + +#. Label of the base_in_words (Small Text) field in DocType 'Payment Entry' +#. Label of the base_in_words (Data) field in DocType 'POS Invoice' +#. Label of the base_in_words (Data) field in DocType 'Supplier Quotation' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +msgid "In Words (Company Currency)" +msgstr "" + +#. Description of the 'In Words' (Data) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "In Words (Export) will be visible once you save the Delivery Note." +msgstr "" + +#. Description of the 'In Words' (Data) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "In Words will be visible once you save the Delivery Note." +msgstr "" + +#. Description of the 'In Words (Company Currency)' (Data) field in DocType +#. 'POS Invoice' +#. Description of the 'In Words' (Small Text) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "In Words will be visible once you save the Sales Invoice." +msgstr "" + +#. Description of the 'In Words' (Data) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "In Words will be visible once you save the Sales Order." +msgstr "" + +#. Description of the 'Completed Time' (Data) field in DocType 'Job Card +#. Operation' +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +msgid "In mins" +msgstr "" + +#. Description of the 'Operation Time' (Float) field in DocType 'BOM Operation' +#. Description of the 'Delay between Delivery Stops' (Int) field in DocType +#. 'Delivery Settings' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "In minutes" +msgstr "" + +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.js:8 +msgid "In row {0} of Appointment Booking Slots: \"To Time\" must be later than \"From Time\"." +msgstr "" + +#: erpnext/templates/includes/products_as_grid.html:18 +msgid "In stock" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:26 +msgid "In the case of multi-tier program, Customers will be auto assigned to the concerned tier as per their spent" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:753 +#, python-format +msgid "In this case, the amount will be calculated as 25% of the transaction amount. If the transaction amount is 200, then this will be calculated as 200 * 0.25 = 50." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1515 +msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc." +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/selling/report/inactive_customers/inactive_customers.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Inactive Customers" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.json +msgid "Inactive Sales Items" +msgstr "" + +#. Label of the off_status_image (Attach Image) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Inactive Status" +msgstr "" + +#. Label of the incentives (Currency) field in DocType 'Sales Team' +#: erpnext/selling/doctype/sales_team/sales_team.json +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:92 +msgid "Incentives" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Inch" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Inch Pound-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Inch/Minute" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Inch/Second" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Inches Of Mercury" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:357 +msgid "Include" +msgstr "" + +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:77 +msgid "Include Account Currency" +msgstr "" + +#. Label of the include_ageing (Check) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Include Ageing Summary" +msgstr "" + +#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.js:8 +#: erpnext/selling/report/sales_order_trends/sales_order_trends.js:8 +msgid "Include Closed Orders" +msgstr "" + +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:54 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:54 +msgid "Include Default FB Assets" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:45 +#: erpnext/accounts/report/cash_flow/cash_flow.js:37 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:131 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:85 +#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:29 +#: erpnext/accounts/report/general_ledger/general_ledger.js:193 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:46 +#: erpnext/accounts/report/trial_balance/trial_balance.js:105 +msgid "Include Default FB Entries" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:90 +msgid "Include Expired" +msgstr "" + +#: erpnext/stock/report/available_batch_report/available_batch_report.js:80 +msgid "Include Expired Batches" +msgstr "" + +#. Label of the include_exploded_items (Check) field in DocType 'Purchase +#. Invoice Item' +#. Label of the include_exploded_items (Check) field in DocType 'Production +#. Plan Item' +#. Label of the include_exploded_items (Check) field in DocType 'Subcontracting +#. Inward Order Item' +#. Label of the include_exploded_items (Check) field in DocType 'Subcontracting +#. Order Item' +#. Label of the include_exploded_items (Check) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1466 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Include Exploded Items" +msgstr "" + +#. Label of the include_item_in_manufacturing (Check) field in DocType 'BOM +#. Explosion Item' +#. Label of the include_item_in_manufacturing (Check) field in DocType 'BOM +#. Item' +#. Label of the include_item_in_manufacturing (Check) field in DocType 'Work +#. Order Item' +#. Label of the include_item_in_manufacturing (Check) field in DocType 'Item' +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/stock/doctype/item/item.json +msgid "Include Item In Manufacturing" +msgstr "" + +#. Label of the include_non_stock_items (Check) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Include Non Stock Items" +msgstr "" + +#. Label of the include_pos_transactions (Check) field in DocType 'Bank +#. Clearance' +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:45 +msgid "Include POS Transactions" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 +msgid "Include Payment" +msgstr "" + +#. Label of the is_pos (Check) field in DocType 'POS Invoice' +#. Label of the is_pos (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Include Payment (POS)" +msgstr "" + +#. Label of the include_reconciled_entries (Check) field in DocType 'Bank +#. Clearance' +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +msgid "Include Reconciled Entries" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.js:90 +msgid "Include Returned Invoices (Stand-alone)" +msgstr "" + +#. Label of the include_safety_stock (Check) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Include Safety Stock in Required Qty Calculation" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:87 +msgid "Include Sub-assembly Raw Materials" +msgstr "" + +#. Label of the include_subcontracted_items (Check) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Include Subcontracted Items" +msgstr "" + +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:52 +msgid "Include Timesheets in Draft Status" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:109 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:108 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:51 +msgid "Include UOM" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:137 +msgid "Include Zero Stock Items" +msgstr "" + +#. Label of the include_in_charts (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Include in Charts" +msgstr "" + +#. Label of the include_in_gross (Check) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Include in gross" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the included_fee (Currency) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Included Fee" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:337 +msgid "Included fee is bigger than the withdrawal itself." +msgstr "" + +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:74 +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:75 +msgid "Included in Gross Profit" +msgstr "" + +#. Description of the 'Use Multi-Level BOM' (Check) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Including items for sub assemblies" +msgstr "" + +#. Option for the 'Root Type' (Select) field in DocType 'Account' +#. Option for the 'Root Type' (Select) field in DocType 'Account Category' +#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge' +#. Option for the 'Type' (Select) field in DocType 'Process Deferred +#. Accounting' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241 +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 +#: erpnext/accounts/report/account_balance/account_balance.js:27 +#: erpnext/accounts/report/financial_statements.py:803 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 +msgid "Income" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the income_account (Link) field in DocType 'Dunning' +#. Label of the income_account (Link) field in DocType 'Dunning Type' +#. Label of the income_account (Link) field in DocType 'POS Invoice Item' +#. Label of the income_account (Link) field in DocType 'POS Profile' +#. Label of the income_account (Link) field in DocType 'Sales Invoice Item' +#. Label of the income_account (Link) field in DocType 'Item Default' +#. Label of the vf_income_account (Read Only) field in DocType 'Item Default' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/account_balance/account_balance.js:53 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:77 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:298 +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Income Account" +msgstr "" + +#. Label of the income_and_expense_account (Section Break) field in DocType +#. 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Income and Expense" +msgstr "" + +#. Description of the 'Enable Deferred Expense' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Income from this item will be recognized over a period of months instead of all at once. Eg: annual subscription paid upfront." +msgstr "" + +#. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Incoming Bills" +msgstr "" + +#. Name of a DocType +#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json +msgid "Incoming Call Handling Schedule" +msgstr "" + +#. Name of a DocType +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +msgid "Incoming Call Settings" +msgstr "" + +#. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Incoming Payment" +msgstr "" + +#. Label of the incoming_rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the incoming_rate (Currency) field in DocType 'Packed Item' +#. Label of the purchase_rate (Float) field in DocType 'Serial No' +#. Label of the incoming_rate (Currency) field in DocType 'Stock Ledger Entry' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/available_serial_no/available_serial_no.py:146 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:360 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96 +msgid "Incoming Rate" +msgstr "" + +#. Label of the incoming_rate (Currency) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Incoming Rate (Costing)" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:38 +msgid "Incoming call from {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:133 +msgid "Incompatible Setting Detected" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +msgid "Incorrect Account" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.json +msgid "Incorrect Balance Qty After Transaction" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1057 +msgid "Incorrect Batch Consumed" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:602 +msgid "Incorrect Check in (group) Warehouse for Reorder" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +msgid "Incorrect Company" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +msgid "Incorrect Component Quantity" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:390 +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:56 +msgid "Incorrect Date" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +msgid "Incorrect Invoice" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:362 +msgid "Incorrect Payment Type" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:117 +msgid "Incorrect Reference Document (Purchase Receipt Item)" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.json +msgid "Incorrect Serial No Valuation" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1070 +msgid "Incorrect Serial Number Consumed" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.json +msgid "Incorrect Serial and Batch Bundle" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.json +msgid "Incorrect Stock Value Report" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:173 +msgid "Incorrect Type of Transaction" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:188 +#: erpnext/stock/doctype/pick_list/pick_list.py:212 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:160 +msgid "Incorrect Warehouse" +msgstr "" + +#: erpnext/accounts/general_ledger.py:69 +msgid "Incorrect number of General Ledger Entries found. You might have selected a wrong Account in the transaction." +msgstr "" + +#: banking/src/pages/BankReconciliation.tsx:120 +msgid "Incorrectly Cleared Entries" +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:202 +msgid "Incorrectly cleared entries as per the report." +msgstr "" + +#. Label of the incoterm (Link) field in DocType 'Purchase Invoice' +#. Label of the incoterm (Link) field in DocType 'Sales Invoice' +#. Label of the incoterm (Link) field in DocType 'Purchase Order' +#. Label of the incoterm (Link) field in DocType 'Request for Quotation' +#. Label of the incoterm (Link) field in DocType 'Supplier Quotation' +#. Label of the incoterm (Link) field in DocType 'Quotation' +#. Label of the incoterm (Link) field in DocType 'Sales Order' +#. Name of a DocType +#. Label of the incoterm (Link) field in DocType 'Delivery Note' +#. Label of the incoterm (Link) field in DocType 'Purchase Receipt' +#. Label of the incoterm (Link) field in DocType 'Shipment' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Incoterm" +msgstr "" + +#. Label of the increase_in_asset_life (Int) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Increase In Asset Life (Months)" +msgstr "" + +#. Label of the increase_in_asset_life (Int) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Increase In Asset Life(Months)" +msgstr "" + +#. Label of the increment (Float) field in DocType 'Item Attribute' +#. Label of the increment (Float) field in DocType 'Item Variant Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Increment" +msgstr "" + +#: erpnext/stock/doctype/item_attribute/item_attribute.py:98 +msgid "Increment cannot be 0" +msgstr "" + +#: erpnext/controllers/item_variant.py:120 +msgid "Increment for Attribute {0} cannot be 0" +msgstr "" + +#. Label of the indentation_level (Int) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Indent Level" +msgstr "" + +#. Description of the 'Indent Level' (Int) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Indentation level: 0 = Main heading, 1 = Sub-category, 2 = Individual accounts, etc." +msgstr "" + +#. Description of the 'Delivery Note' (Link) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Indicates that the package is a part of this delivery (Only Draft)" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Indirect Expense" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172 +msgid "Indirect Expenses" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247 +msgid "Indirect Income" +msgstr "" + +#. Option for the 'Supplier Type' (Select) field in DocType 'Supplier' +#. Option for the 'Customer Type' (Select) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:172 +msgid "Individual" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:326 +msgid "Individual GL Entry cannot be cancelled." +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:350 +msgid "Individual Stock Ledger Entry cannot be cancelled." +msgstr "" + +#. Label of the industry (Link) field in DocType 'Lead' +#. Label of the industry (Link) field in DocType 'Opportunity' +#. Label of the industry (Link) field in DocType 'Prospect' +#. Label of the industry (Link) field in DocType 'Customer' +#. Label of the industry (Data) field in DocType 'Industry Type' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/industry_type/industry_type.json +msgid "Industry" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/industry_type/industry_type.json +msgid "Industry Type" +msgstr "" + +#. Label of the column_break_general (Column Break) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Inherited Default" +msgstr "" + +#. Label of the email_notification_sent (Check) field in DocType 'Delivery +#. Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Initial Email Notification Sent" +msgstr "" + +#. Label of the initialize_doctypes_table_status (Select) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Initialize Summary Table" +msgstr "" + +#. Option for the 'Payment Order Status' (Select) field in DocType 'Payment +#. Entry' +#. Option for the 'Status' (Select) field in DocType 'Payment Request' +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase +#. Order' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Initiated" +msgstr "" + +#. Label of the inspected_by (Link) field in DocType 'Quality Inspection' +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:33 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:109 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Inspected By" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:891 +#: erpnext/stock/services/quality_inspection_service.py:111 +msgid "Inspection Rejected" +msgstr "" + +#. Label of the inspection_required (Check) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/services/quality_inspection_service.py:81 +#: erpnext/stock/services/quality_inspection_service.py:83 +msgid "Inspection Required" +msgstr "" + +#. Label of the inspection_required_before_delivery (Check) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Inspection Required before Delivery" +msgstr "" + +#. Label of the inspection_required_before_purchase (Check) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Inspection Required before Purchase" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:881 +#: erpnext/stock/services/quality_inspection_service.py:96 +msgid "Inspection Submission" +msgstr "" + +#. Label of the inspection_type (Select) field in DocType 'Quality Inspection' +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:95 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Inspection Type" +msgstr "" + +#. Label of the inst_date (Date) field in DocType 'Installation Note' +#: erpnext/selling/doctype/installation_note/installation_note.json +msgid "Installation Date" +msgstr "" + +#. Name of a DocType +#. Label of the installation_note (Section Break) field in DocType +#. 'Installation Note' +#. Label of a Link in the Stock Workspace +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/stock/doctype/delivery_note/delivery_note.js:260 +#: erpnext/stock/workspace/stock/stock.json +msgid "Installation Note" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +msgid "Installation Note Item" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:620 +msgid "Installation Note {0} has already been submitted" +msgstr "" + +#. Label of the installation_status (Select) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Installation Status" +msgstr "" + +#. Label of the inst_time (Time) field in DocType 'Installation Note' +#: erpnext/selling/doctype/installation_note/installation_note.json +msgid "Installation Time" +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.py:115 +msgid "Installation date cannot be before delivery date for Item {0}" +msgstr "" + +#. Label of the qty (Float) field in DocType 'Installation Note Item' +#. Label of the installed_qty (Float) field in DocType 'Delivery Note Item' +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Installed Qty" +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:15 +msgid "Installing presets" +msgstr "" + +#. Label of the instruction (Small Text) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Instruction" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +msgid "Insufficient Capacity" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:213 +#: erpnext/accounts/services/child_item_update.py:235 +#: erpnext/controllers/accounts_controller.py:1735 +#: erpnext/controllers/accounts_controller.py:1741 +#: erpnext/controllers/accounts_controller.py:1763 +msgid "Insufficient Permissions" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:466 +#: erpnext/stock/doctype/pick_list/pick_list.py:146 +#: erpnext/stock/doctype/pick_list/pick_list.py:164 +#: erpnext/stock/doctype/pick_list/pick_list.py:1088 +#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 +#: erpnext/stock/stock_ledger.py:2209 +msgid "Insufficient Stock" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2224 +msgid "Insufficient Stock for Batch" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:444 +msgid "Insufficient Stock for Product Bundle Items" +msgstr "" + +#. Label of the insurance_section (Section Break) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Insurance" +msgstr "" + +#. Label of the insurance_company (Data) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Insurance Company" +msgstr "" + +#. Label of the insurance_details (Section Break) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Insurance Details" +msgstr "" + +#. Label of the insurance_end_date (Date) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Insurance End Date" +msgstr "" + +#. Label of the insurance_start_date (Date) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Insurance Start Date" +msgstr "" + +#: erpnext/setup/doctype/vehicle/vehicle.py:44 +msgid "Insurance Start date should be less than Insurance End date" +msgstr "" + +#. Label of the insured_value (Data) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Insured value" +msgstr "" + +#. Label of the insurer (Data) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Insurer" +msgstr "" + +#. Label of the integration_details_section (Section Break) field in DocType +#. 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Integration Details" +msgstr "" + +#. Label of the integration_id (Data) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Integration ID" +msgstr "" + +#. Label of the inter_company_invoice_reference (Link) field in DocType 'POS +#. Invoice' +#. Label of the inter_company_invoice_reference (Link) field in DocType +#. 'Purchase Invoice' +#. Label of the inter_company_invoice_reference (Link) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Inter Company Invoice Reference" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Inter Company Journal Entry" +msgstr "" + +#. Label of the inter_company_journal_entry_reference (Link) field in DocType +#. 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Inter Company Journal Entry Reference" +msgstr "" + +#. Label of the inter_company_order_reference (Link) field in DocType 'Purchase +#. Order' +#. Label of the inter_company_order_reference (Link) field in DocType 'Sales +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Inter Company Order Reference" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1189 +msgid "Inter Company Purchase Order" +msgstr "" + +#. Label of the inter_company_reference (Link) field in DocType 'Delivery Note' +#. Label of the inter_company_reference (Link) field in DocType 'Purchase +#. Receipt' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Inter Company Reference" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:418 +msgid "Inter Company Sales Order" +msgstr "" + +#. Label of the inter_transfer_reference_section (Section Break) field in +#. DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Inter Transfer Reference" +msgstr "" + +#. Label of the interest (Currency) field in DocType 'Overdue Payment' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +msgid "Interest" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223 +msgid "Interest Expense" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248 +msgid "Interest Income" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +msgid "Interest and/or dunning fee" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249 +msgid "Interest on Fixed Deposits" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/report/lead_details/lead_details.js:39 +msgid "Interested" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:300 +msgid "Internal" +msgstr "" + +#. Label of the internal_customer_section (Section Break) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Internal Customer Accounting" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:256 +msgid "Internal Customer for company {0} already exists" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1188 +msgid "Internal Purchase Order" +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:88 +msgid "Internal Sale or Delivery Reference missing." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:417 +msgid "Internal Sales Order" +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:90 +msgid "Internal Sales Reference Missing" +msgstr "" + +#. Label of the internal_supplier_section (Section Break) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Internal Supplier Details" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.py:180 +msgid "Internal Supplier for company {0} already exists" +msgstr "" + +#. Option for the 'Payment Type' (Select) field in DocType 'Payment Entry' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#. Label of the internal_transfer_section (Section Break) field in DocType +#. 'Sales Invoice Item' +#. Label of the internal_transfer_section (Section Break) field in DocType +#. 'Delivery Note Item' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:27 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request/material_request_dashboard.py:19 +msgid "Internal Transfer" +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:99 +msgid "Internal Transfer Reference Missing" +msgstr "" + +#. Label of the internal_transfer_rules_section (Section Break) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Internal Transfer Rules" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:37 +msgid "Internal Transfers" +msgstr "" + +#. Label of the internal_work_history (Table) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Internal Work History" +msgstr "" + +#. Description of the 'Customer Details' (Text) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Internal notes about this customer. Not visible on transactions or the portal." +msgstr "" + +#: erpnext/stock/services/internal_transfer.py:65 +msgid "Internal transfers can only be done in company's default currency" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:28 +msgid "Internet Publishing" +msgstr "" + +#. Description of the 'Auto Reconciliation job trigger' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Interval should be between 1 to 59 MInutes" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:381 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 +#: erpnext/accounts/services/taxes.py:271 +#: erpnext/accounts/services/taxes.py:279 +#: erpnext/assets/doctype/asset_category/asset_category.py:69 +#: erpnext/assets/doctype/asset_category/asset_category.py:97 +msgid "Invalid Account" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:406 +msgid "Invalid Accounting Dimension" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:402 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1166 +msgid "Invalid Allocated Amount" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:169 +msgid "Invalid Amount" +msgstr "" + +#: erpnext/controllers/item_variant.py:135 +msgid "Invalid Attribute" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:531 +msgid "Invalid Auto Repeat Date" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:92 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:500 +msgid "Invalid Bank Account" +msgstr "" + +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.py:40 +msgid "Invalid Barcode. There is no Item attached to this barcode." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:3184 +msgid "Invalid Blanket Order for the selected Customer and Item" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +msgid "Invalid CSV format. Expected column: doctype_name" +msgstr "" + +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.py:69 +msgid "Invalid Child Procedure" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:227 +msgid "Invalid Company Field" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/inter_company.py:46 +msgid "Invalid Company for Inter Company Transaction." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:972 +msgid "Invalid Configuration" +msgstr "" + +#: erpnext/accounts/services/taxes.py:294 +#: erpnext/assets/doctype/asset/asset.py:361 +#: erpnext/assets/doctype/asset/asset.py:368 +msgid "Invalid Cost Center" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:369 +msgid "Invalid Customer Group" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:377 +msgid "Invalid Delivery Date" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:110 +msgid "Invalid Disassembly Item" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:76 +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:125 +msgid "Invalid Disassembly Quantity" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:414 +msgid "Invalid Discount" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:853 +msgid "Invalid Discount Amount" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +msgid "Invalid Document" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Invalid Document Type" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.py:529 +msgid "Invalid Document Type {0}" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:207 +msgid "Invalid File Type" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:326 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:331 +msgid "Invalid Formula" +msgstr "" + +#: erpnext/selling/report/lost_quotations/lost_quotations.py:65 +msgid "Invalid Group By" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:503 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:52 +msgid "Invalid Item" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1518 +msgid "Invalid Item Defaults" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.json +msgid "Invalid Ledger Entries" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:568 +msgid "Invalid Net Purchase Amount" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79 +#: erpnext/accounts/services/gl_validator.py:130 +msgid "Invalid Opening Entry" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:144 +msgid "Invalid POS Invoices" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:391 +msgid "Invalid Parent Account" +msgstr "" + +#: erpnext/public/js/controllers/buying.js:424 +msgid "Invalid Part Number" +msgstr "" + +#: erpnext/utilities/transaction_base.py:42 +msgid "Invalid Posting Time" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:30 +msgid "Invalid Primary Role" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:123 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:125 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:128 +msgid "Invalid Print Format" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 +msgid "Invalid Priority" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:971 +msgid "Invalid Process Loss Configuration" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:722 +msgid "Invalid Purchase Invoice" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:254 +#: erpnext/accounts/services/child_item_update.py:267 +msgid "Invalid Qty" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1000 +msgid "Invalid Quantity" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +msgid "Invalid Query" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:202 +msgid "Invalid Return" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:209 +msgid "Invalid Sales Invoices" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:657 +#: erpnext/assets/doctype/asset/asset.py:685 +msgid "Invalid Schedule" +msgstr "" + +#: erpnext/controllers/selling_controller.py:312 +msgid "Invalid Selling Price" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +msgid "Invalid Serial and Batch Bundle" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:43 +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:65 +msgid "Invalid Source and Target Warehouse" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.py:507 +msgid "Invalid Tree Type {0}" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:37 +msgid "Invalid Upload" +msgstr "" + +#: erpnext/controllers/item_variant.py:203 +msgid "Invalid Value" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:70 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:256 +msgid "Invalid Warehouse" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 +msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 +msgid "Invalid condition expression" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +msgid "Invalid file URL" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:87 +msgid "Invalid filter formula. Please check the syntax." +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.py:280 +msgid "Invalid lost reason {0}, please create a new lost reason" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:476 +msgid "Invalid naming series (. missing) for {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:730 +msgid "Invalid parameter. 'dn' should be of type str" +msgstr "" + +#: erpnext/utilities/transaction_base.py:126 +msgid "Invalid reference {0} {1}" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:96 +msgid "Invalid regex pattern." +msgstr "" + +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:107 +msgid "Invalid result key. Response:" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +msgid "Invalid search query" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1649 +msgid "Invalid subcontract order field: {0}" +msgstr "" + +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:99 +msgid "Invalid value {0} for 'Based On'" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:20 +msgid "Invalid value {0} for 'Doctype'" +msgstr "" + +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119 +#: erpnext/accounts/services/gl_validator.py:166 +#: erpnext/accounts/services/gl_validator.py:176 +msgid "Invalid value {0} for {1} against account {2}" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:196 +msgid "Invalid {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/inter_company.py:44 +msgid "Invalid {0} for Inter Company Transaction." +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:101 +#: erpnext/controllers/sales_and_purchase_return.py:34 +msgid "Invalid {0}: {1}" +msgstr "" + +#. Label of the inventory_section (Tab Break) field in DocType 'Item' +#: erpnext/setup/install.py:383 erpnext/stock/doctype/item/item.json +msgid "Inventory" +msgstr "" + +#. Label of the default_inventory_account (Link) field in DocType 'Item +#. Default' +#. Label of the vf_default_inventory_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Inventory Account" +msgstr "" + +#. Label of the inventory_account_currency (Link) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Inventory Account Currency" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/patches/v15_0/refactor_closing_stock_balance.py:43 +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.py:186 +#: erpnext/workspace_sidebar/stock.json +msgid "Inventory Dimension" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:159 +msgid "Inventory Dimension Negative Stock" +msgstr "" + +#. Label of the inventory_dimension_key (Small Text) field in DocType 'Stock +#. Closing Balance' +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +msgid "Inventory Dimension key" +msgstr "" + +#. Label of the inventory_settings_section (Section Break) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Inventory Settings" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:216 +msgid "Inventory Turnover Ratio" +msgstr "" + +#. Label of the inventory_valuation_section (Section Break) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Inventory Valuation" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:29 +msgid "Investment Banking" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129 +msgid "Investments" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Invite Users' +#: erpnext/setup/onboarding_step/invite_users/invite_users.json +msgid "Invite Users" +msgstr "" + +#. Option for the 'Posting Date inheritance for exchange gain / loss' (Select) +#. field in DocType 'Accounts Settings' +#. Label of the sales_invoice (Link) field in DocType 'Discounted Invoice' +#. Label of the invoice (Dynamic Link) field in DocType 'Loyalty Point Entry' +#. Label of the invoice (Dynamic Link) field in DocType 'Subscription Invoice' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/subscription_invoice/subscription_invoice.json +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:175 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:194 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:97 +msgid "Invoice" +msgstr "" + +#. Label of the enable_features_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Invoice Cancellation" +msgstr "" + +#. Label of the invoice_date (Date) field in DocType 'Payment Reconciliation +#. Invoice' +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +msgid "Invoice Date" +msgstr "" + +#. Name of a DocType +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:148 +msgid "Invoice Discounting" +msgstr "" + +#: erpnext/accounts/doctype/pos_settings/pos_settings.py:56 +msgid "Invoice Document Type Selection Error" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212 +msgid "Invoice Grand Total" +msgstr "" + +#. Label of the invoice_limit (Int) field in DocType 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Invoice Limit" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:246 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:683 +msgid "Invoice No" +msgstr "" + +#. Label of the invoice_number (Data) field in DocType 'Opening Invoice +#. Creation Tool Item' +#. Label of the invoice_number (Dynamic Link) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the invoice_number (Dynamic Link) field in DocType 'Payment +#. Reconciliation Invoice' +#. Label of the invoice_number (Dynamic Link) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +msgid "Invoice Number" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:872 +msgid "Invoice Paid" +msgstr "" + +#. Label of the invoice_portion (Percent) field in DocType 'Overdue Payment' +#. Label of the invoice_portion (Percent) field in DocType 'Payment Schedule' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:47 +msgid "Invoice Portion" +msgstr "" + +#. Label of the invoice_portion (Float) field in DocType 'Payment Term' +#. Label of the invoice_portion (Float) field in DocType 'Payment Terms +#. Template Detail' +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Invoice Portion (%)" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:106 +msgid "Invoice Posting Date" +msgstr "" + +#. Label of the invoice_series (Select) field in DocType 'Import Supplier +#. Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Invoice Series" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:67 +msgid "Invoice Status" +msgstr "" + +#. Label of the invoice_type (Link) field in DocType 'Loyalty Point Entry' +#. Label of the invoice_type (Select) field in DocType 'Opening Invoice +#. Creation Tool' +#. Label of the invoice_type (Link) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the invoice_type (Select) field in DocType 'Payment Reconciliation +#. Invoice' +#. Label of the invoice_type (Link) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html:7 +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/pos_settings/pos_settings.py:54 +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:85 +msgid "Invoice Type" +msgstr "" + +#. Label of the invoice_type (Select) field in DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "Invoice Type Created via POS Screen" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.py:430 +msgid "Invoice already created for all billing hours" +msgstr "" + +#. Label of the invoice_and_billing_tab (Tab Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Invoice and Billing" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.py:427 +msgid "Invoice can't be made for zero billing hour" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:171 +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:139 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:140 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:166 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:194 +msgid "Invoiced Amount" +msgstr "" + +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:76 +msgid "Invoiced Qty" +msgstr "" + +#. Label of the invoices (Table) field in DocType 'Invoice Discounting' +#. Label of the section_break_4 (Section Break) field in DocType 'Opening +#. Invoice Creation Tool' +#. Label of the invoices (Table) field in DocType 'Payment Reconciliation' +#. Group in POS Profile's connections +#. Option for the 'Hold Type' (Select) field in DocType 'Supplier' +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:670 +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198 +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:64 +msgid "Invoices" +msgstr "" + +#. Description of the 'Allocated' (Check) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Invoices and Payments have been Fetched and Allocated" +msgstr "" + +#. Name of a Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/desktop_icon/invoicing.json erpnext/workspace_sidebar/invoicing.json +msgid "Invoicing" +msgstr "" + +#. Label of the invoicing_features_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Invoicing Features" +msgstr "" + +#. Option for the 'Payment Request Type' (Select) field in DocType 'Payment +#. Request' +#. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory +#. Dimension' +#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and +#. Batch Bundle' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Inward" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Inward Order" +msgstr "" + +#. Label of the is_account_payable (Check) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Is Account Payable" +msgstr "" + +#. Label of the is_additional_item (Check) field in DocType 'Work Order Item' +#. Label of the is_additional_item (Check) field in DocType 'Subcontracting +#. Inward Order Received Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +msgid "Is Additional Item" +msgstr "" + +#. Label of the is_additional_transfer_entry (Check) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Is Additional Transfer Entry" +msgstr "" + +#. Label of the is_adjustment_entry (Check) field in DocType 'Stock Ledger +#. Entry' +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Is Adjustment Entry" +msgstr "" + +#. Label of the is_advance (Select) field in DocType 'GL Entry' +#. Label of the is_advance (Select) field in DocType 'Journal Entry Account' +#. Label of the is_advance (Data) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the is_advance (Data) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the is_advance (Data) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +msgid "Is Advance" +msgstr "" + +#. Label of the is_alternative (Check) field in DocType 'Quotation Item' +#: erpnext/selling/doctype/quotation/quotation.js:323 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +msgid "Is Alternative" +msgstr "" + +#. Label of the is_billable (Check) field in DocType 'Timesheet Detail' +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Is Billable" +msgstr "" + +#: erpnext/setup/install.py:160 +msgid "Is Billing Contact" +msgstr "" + +#. Label of the is_cancelled (Check) field in DocType 'GL Entry' +#. Label of the is_cancelled (Check) field in DocType 'Serial and Batch Bundle' +#. Label of the is_cancelled (Check) field in DocType 'Serial and Batch Entry' +#. Label of the is_cancelled (Check) field in DocType 'Stock Ledger Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:57 +msgid "Is Cancelled" +msgstr "" + +#. Label of the is_cash_or_non_trade_discount (Check) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Cash or Non Trade Discount" +msgstr "" + +#. Label of the is_company (Check) field in DocType 'Share Balance' +#. Label of the is_company (Check) field in DocType 'Shareholder' +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/shareholder/shareholder.json +msgid "Is Company" +msgstr "" + +#. Label of the is_company_account (Check) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Is Company Account" +msgstr "" + +#. Label of the is_consolidated (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Consolidated" +msgstr "" + +#. Label of the is_container (Check) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Is Container" +msgstr "" + +#. Label of the is_corrective_job_card (Check) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Is Corrective Job Card" +msgstr "" + +#. Label of the is_corrective_operation (Check) field in DocType 'Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Is Corrective Operation" +msgstr "" + +#. Label of the is_credit_card (Check) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Is Credit Card" +msgstr "" + +#. Label of the is_cumulative (Check) field in DocType 'Pricing Rule' +#. Label of the is_cumulative (Check) field in DocType 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Is Cumulative" +msgstr "" + +#. Label of the is_customer_provided_item (Check) field in DocType 'Work Order +#. Item' +#. Label of the is_customer_provided_item (Check) field in DocType 'Item' +#. Label of the is_customer_provided_item (Check) field in DocType +#. 'Subcontracting Inward Order Received Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +msgid "Is Customer Provided Item" +msgstr "" + +#. Label of the is_default (Check) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Is Default Account" +msgstr "" + +#. Label of the is_default_language (Check) field in DocType 'Dunning Letter +#. Text' +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Is Default Language" +msgstr "" + +#. Label of the dn_required (Select) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Is Delivery Note required to create Sales Invoice?" +msgstr "" + +#. Label of the is_discounted (Check) field in DocType 'POS Invoice' +#. Label of the is_discounted (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Discounted" +msgstr "" + +#. Label of the is_exchange_gain_loss (Check) field in DocType 'Payment Entry +#. Deduction' +#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json +msgid "Is Exchange Gain / Loss?" +msgstr "" + +#. Label of the is_expandable (Check) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Is Expandable" +msgstr "" + +#. Label of the is_final_finished_good (Check) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Is Final Finished Good" +msgstr "" + +#. Label of the is_finished_item (Check) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Is Finished Item" +msgstr "" + +#. Label of the is_fixed_asset (Check) field in DocType 'POS Invoice Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Purchase Invoice Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Sales Invoice Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Purchase Order Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Landed Cost Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Is Fixed Asset" +msgstr "" + +#. Label of the is_free_item (Check) field in DocType 'POS Invoice Item' +#. Label of the is_free_item (Check) field in DocType 'Purchase Invoice Item' +#. Label of the is_free_item (Check) field in DocType 'Sales Invoice Item' +#. Label of the is_free_item (Check) field in DocType 'Purchase Order Item' +#. Label of the is_free_item (Check) field in DocType 'Supplier Quotation Item' +#. Label of the is_free_item (Check) field in DocType 'Quotation Item' +#. Label of the is_free_item (Check) field in DocType 'Sales Order Item' +#. Label of the is_free_item (Check) field in DocType 'Delivery Note Item' +#. Label of the is_free_item (Check) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Is Free Item" +msgstr "" + +#. Label of the is_frozen (Check) field in DocType 'Supplier' +#. Label of the is_frozen (Check) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:69 +msgid "Is Frozen" +msgstr "" + +#. Label of the is_fully_depreciated (Check) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Is Fully Depreciated" +msgstr "" + +#. Label of the is_group (Check) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Is Group Warehouse" +msgstr "" + +#. Label of the is_half_day (Check) field in DocType 'Holiday' +#. Label of the is_half_day (Check) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday/holiday.json +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Is Half Day" +msgstr "" + +#. Label of the is_internal_customer (Check) field in DocType 'Sales Invoice' +#. Label of the is_internal_customer (Check) field in DocType 'Customer' +#. Label of the is_internal_customer (Check) field in DocType 'Sales Order' +#. Label of the is_internal_customer (Check) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Is Internal Customer" +msgstr "" + +#. Label of the is_internal_supplier (Check) field in DocType 'Purchase +#. Invoice' +#. Label of the is_internal_supplier (Check) field in DocType 'Purchase Order' +#. Label of the is_internal_supplier (Check) field in DocType 'Supplier' +#. Label of the is_internal_supplier (Check) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Is Internal Supplier" +msgstr "" + +#. Label of the is_legacy (Check) field in DocType 'BOM Secondary Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +msgid "Is Legacy" +msgstr "" + +#. Label of the is_legacy_scrap_item (Check) field in DocType 'Stock Entry +#. Detail' +#. Label of the is_legacy_scrap_item (Check) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Is Legacy Scrap Item" +msgstr "" + +#. Label of the is_mandatory (Check) field in DocType 'Applicable On Account' +#: erpnext/accounts/doctype/applicable_on_account/applicable_on_account.json +msgid "Is Mandatory" +msgstr "" + +#. Label of the is_milestone (Check) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Is Milestone" +msgstr "" + +#. Label of the is_opening (Select) field in DocType 'GL Entry' +#. Label of the is_opening (Select) field in DocType 'Journal Entry' +#. Label of the is_opening (Select) field in DocType 'Journal Entry Template' +#. Label of the is_opening (Select) field in DocType 'Payment Entry' +#. Label of the is_opening (Select) field in DocType 'Stock Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Is Opening" +msgstr "" + +#. Label of the is_opening (Select) field in DocType 'POS Invoice' +#. Label of the is_opening (Select) field in DocType 'Purchase Invoice' +#. Label of the is_opening (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Opening Entry" +msgstr "" + +#. Label of the is_outward (Check) field in DocType 'Serial and Batch Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +msgid "Is Outward" +msgstr "" + +#. Label of the is_packed (Check) field in DocType 'Serial and Batch Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Is Packed" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:402 +msgid "Is Packed Item" +msgstr "" + +#. Label of the is_paid (Check) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Is Paid" +msgstr "" + +#. Label of the is_paused (Check) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Is Paused" +msgstr "" + +#. Label of the is_period_closing_voucher_entry (Check) field in DocType +#. 'Account Closing Balance' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +msgid "Is Period Closing Voucher Entry" +msgstr "" + +#. Label of the is_phantom_bom (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:68 +msgid "Is Phantom BOM" +msgstr "" + +#. Label of the is_phantom (Check) field in DocType 'BOM Creator' +#. Label of the is_phantom_item (Check) field in DocType 'BOM Creator Item' +#. Label of the is_phantom_item (Check) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:68 +msgid "Is Phantom Item" +msgstr "" + +#. Label of the is_product_bundle (Check) field in DocType 'POS Invoice Item' +#. Label of the is_product_bundle (Check) field in DocType 'Sales Invoice Item' +#. Label of the is_product_bundle (Check) field in DocType 'Quotation Item' +#. Label of the is_product_bundle (Check) field in DocType 'Sales Order Item' +#. Label of the is_product_bundle (Check) field in DocType 'Delivery Note Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Is Product Bundle" +msgstr "" + +#. Label of the po_required (Select) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Is Purchase Order required for Purchase Invoice & Receipt creation?" +msgstr "" + +#. Label of the pr_required (Select) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Is Purchase Receipt required for Purchase Invoice creation?" +msgstr "" + +#. Label of the is_debit_note (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Rate Adjustment Entry (Debit Note)" +msgstr "" + +#. Label of the is_recursive (Check) field in DocType 'Pricing Rule' +#. Label of the is_recursive (Check) field in DocType 'Promotional Scheme +#. Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Is Recursive" +msgstr "" + +#. Label of the is_rejected (Check) field in DocType 'Serial and Batch Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Is Rejected" +msgstr "" + +#. Label of the is_rejected_warehouse (Check) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Is Rejected Warehouse" +msgstr "" + +#. Label of the is_return (Check) field in DocType 'POS Invoice Reference' +#. Label of the is_return (Check) field in DocType 'Sales Invoice Reference' +#. Label of the is_return (Check) field in DocType 'Delivery Note' +#. Label of the is_return (Check) field in DocType 'Purchase Receipt' +#. Label of the is_return (Check) field in DocType 'Stock Entry' +#. Label of the is_return (Check) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +#: erpnext/accounts/report/pos_register/pos_register.js:63 +#: erpnext/accounts/report/pos_register/pos_register.py:237 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Is Return" +msgstr "" + +#. Label of the is_return (Check) field in DocType 'POS Invoice' +#. Label of the is_return (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Return (Credit Note)" +msgstr "" + +#. Label of the is_return (Check) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Is Return (Debit Note)" +msgstr "" + +#. Label of the is_rule_evaluated (Check) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Is Rule Evaluated" +msgstr "" + +#. Label of the so_required (Select) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Is Sales Order required to create Sales Invoice/Delivery Note?" +msgstr "" + +#. Label of the is_short_year (Check) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "Is Short/Long Year" +msgstr "" + +#. Label of the is_stock_item (Check) field in DocType 'BOM Item' +#. Label of the is_stock_item (Check) field in DocType 'Sales Order Item' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Is Stock Item" +msgstr "" + +#. Label of the is_sub_assembly_item (Check) field in DocType 'BOM Explosion +#. Item' +#. Label of the is_sub_assembly_item (Check) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Is Sub Assembly Item" +msgstr "" + +#. Label of the is_subcontracted (Check) field in DocType 'Purchase Invoice' +#. Label of the is_subcontracted (Check) field in DocType 'Purchase Order' +#. Label of the is_subcontracted (Check) field in DocType 'Supplier Quotation' +#. Label of the is_subcontracted (Check) field in DocType 'BOM Creator Item' +#. Label of the is_subcontracted (Check) field in DocType 'BOM Operation' +#. Label of the is_subcontracted (Check) field in DocType 'Work Order +#. Operation' +#. Label of the is_subcontracted (Check) field in DocType 'Sales Order' +#. Label of the is_subcontracted (Check) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Is Subcontracted" +msgstr "" + +#. Label of the is_sub_contracted_item (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Is Subcontracted Item" +msgstr "" + +#. Label of the is_tax_withholding_account (Check) field in DocType 'Advance +#. Taxes and Charges' +#. Label of the is_tax_withholding_account (Check) field in DocType 'Journal +#. Entry Account' +#. Label of the is_tax_withholding_account (Check) field in DocType 'Purchase +#. Taxes and Charges' +#. Label of the is_tax_withholding_account (Check) field in DocType 'Sales +#. Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Is Tax Withholding Account" +msgstr "" + +#. Label of the is_template (Check) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Is Template" +msgstr "" + +#. Label of the is_transporter (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Is Transporter" +msgstr "" + +#: erpnext/setup/install.py:151 +msgid "Is Your Company Address" +msgstr "" + +#. Label of the is_a_subscription (Check) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Is a Subscription" +msgstr "" + +#. Label of the is_created_using_pos (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is created using POS" +msgstr "" + +#. Label of the included_in_print_rate (Check) field in DocType 'Purchase Taxes +#. and Charges' +#. Label of the included_in_print_rate (Check) field in DocType 'Sales Taxes +#. and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Is this Tax included in Basic Rate?" +msgstr "" + +#. Option for the 'Transfer Type' (Select) field in DocType 'Share Transfer' +#. Option for the 'Status' (Select) field in DocType 'Asset' +#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement' +#. Label of the issue (Link) field in DocType 'Task' +#. Option for the 'Asset Status' (Select) field in DocType 'Serial No' +#. Name of a DocType +#. Label of the complaint (Text Editor) field in DocType 'Warranty Claim' +#. Title of the issues Web Form +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:22 +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/public/js/communication.js:13 +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/support/web_form/issues/issues.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "Issue" +msgstr "" + +#. Name of a report +#: erpnext/support/report/issue_analytics/issue_analytics.json +msgid "Issue Analytics" +msgstr "" + +#. Label of the issue_credit_note (Check) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Issue Credit Note" +msgstr "" + +#. Label of the complaint_date (Date) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Issue Date" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:180 +msgid "Issue Material" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/support/doctype/issue_priority/issue_priority.json +#: erpnext/support/report/issue_analytics/issue_analytics.js:63 +#: erpnext/support/report/issue_analytics/issue_analytics.py:70 +#: erpnext/support/report/issue_summary/issue_summary.js:51 +#: erpnext/support/report/issue_summary/issue_summary.py:68 +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "Issue Priority" +msgstr "" + +#. Label of the issue_split_from (Link) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Issue Split From" +msgstr "" + +#. Name of a report +#: erpnext/support/report/issue_summary/issue_summary.json +msgid "Issue Summary" +msgstr "" + +#. Label of the issue_type (Link) field in DocType 'Issue' +#. Name of a DocType +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/issue_type/issue_type.json +#: erpnext/support/report/issue_analytics/issue_analytics.py:59 +#: erpnext/support/report/issue_summary/issue_summary.py:57 +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "Issue Type" +msgstr "" + +#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in +#. DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice." +msgstr "" + +#. Option for the 'Current State' (Select) field in DocType 'Share Balance' +#. Option for the 'Status' (Select) field in DocType 'Material Request' +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:44 +msgid "Issued" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/issued_items_against_work_order/issued_items_against_work_order.json +msgid "Issued Items Against Work Order" +msgstr "" + +#. Label of the issues_sb (Section Break) field in DocType 'Support Settings' +#. Label of a Card Break in the Support Workspace +#: erpnext/support/doctype/issue/issue.py:182 +#: erpnext/support/doctype/support_settings/support_settings.json +#: erpnext/support/workspace/support/support.json +msgid "Issues" +msgstr "" + +#. Label of the issuing_date (Date) field in DocType 'Driver' +#. Label of the issuing_date (Date) field in DocType 'Driving License Category' +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/driving_license_category/driving_license_category.json +msgid "Issuing Date" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:647 +msgid "It can take upto few hours for accurate stock values to be visible after merging items." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2567 +msgid "It is needed to fetch Item Details." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 +msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:219 +msgid "It's all good!" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" +msgstr "" + +#. Label of the italic_text (Check) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Italic Text" +msgstr "" + +#. Description of the 'Italic Text' (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Italic text for subtotals or notes" +msgstr "" + +#. Label of the item_code (Link) field in DocType 'POS Invoice Item' +#. Label of the item_code (Link) field in DocType 'Purchase Invoice Item' +#. Label of the item_code (Link) field in DocType 'Sales Invoice Item' +#. Label of the item (Link) field in DocType 'Subscription Plan' +#. Label of the item (Link) field in DocType 'Tax Rule' +#. Label of the item_code (Link) field in DocType 'Asset Repair Consumed Item' +#. Label of a Link in the Buying Workspace +#. Label of the items (Table) field in DocType 'Blanket Order' +#. Label of a Link in the Manufacturing Workspace +#. Option for the 'Restrict Items Based On' (Select) field in DocType 'Party +#. Specific Item' +#. Label of the item_code (Link) field in DocType 'Product Bundle Item' +#. Label of a Link in the Selling Workspace +#. Option for the 'Customer or Item' (Select) field in DocType 'Authorization +#. Rule' +#. Label of a Link in the Home Workspace +#. Label of a shortcut in the Home Workspace +#. Label of the item (Link) field in DocType 'Batch' +#. Name of a DocType +#. Label of the item_code (Link) field in DocType 'Pick List Item' +#. Label of the item_code (Link) field in DocType 'Putaway Rule' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:15 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:33 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:22 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/bom/bom.js:1088 +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:25 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:101 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:165 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:68 +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:15 +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:76 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:234 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:385 +#: erpnext/public/js/purchase_trends_filters.js:48 +#: erpnext/public/js/purchase_trends_filters.js:63 +#: erpnext/public/js/sales_trends_filters.js:23 +#: erpnext/public/js/sales_trends_filters.js:39 +#: erpnext/public/js/stock_analytics.js:92 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:338 +#: erpnext/selling/doctype/sales_order/sales_order.js:1712 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:50 +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.js:14 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:36 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:61 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/dashboard/item_dashboard.js:220 +#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:149 +#: erpnext/stock/page/stock_balance/stock_balance.js:23 +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:7 +#: erpnext/stock/report/available_batch_report/available_batch_report.js:24 +#: erpnext/stock/report/available_serial_no/available_serial_no.js:42 +#: erpnext/stock/report/available_serial_no/available_serial_no.py:93 +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.js:24 +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:32 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:76 +#: erpnext/stock/report/item_price_stock/item_price_stock.js:8 +#: erpnext/stock/report/item_prices/item_prices.py:50 +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:88 +#: erpnext/stock/report/item_variant_details/item_variant_details.js:10 +#: erpnext/stock/report/item_where_used/item_where_used.js:8 +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:57 +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:53 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:24 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:81 +#: erpnext/stock/report/reserved_stock/reserved_stock.js:30 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:103 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:28 +#: erpnext/stock/report/stock_ageing/stock_ageing.js:46 +#: erpnext/stock/report/stock_analytics/stock_analytics.js:15 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:43 +#: erpnext/stock/report/stock_balance/stock_balance.py:470 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:287 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:8 +#: erpnext/stock/report/total_stock_summary/total_stock_summary.py:21 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:40 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:97 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/templates/emails/reorder_item.html:8 +#: erpnext/templates/form_grid/material_request_grid.html:6 +#: erpnext/templates/form_grid/stock_entry_grid.html:8 +#: erpnext/templates/generators/bom.html:19 +#: erpnext/templates/pages/material_request_info.html:42 +#: erpnext/templates/pages/order.html:94 erpnext/workspace_sidebar/assets.json +#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json +#: erpnext/workspace_sidebar/manufacturing.json +#: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json +#: erpnext/workspace_sidebar/subcontracting.json +#: erpnext/workspace_sidebar/subscription.json +msgid "Item" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:8 +msgid "Item 1" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:14 +msgid "Item 2" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:20 +msgid "Item 3" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:26 +msgid "Item 4" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:32 +msgid "Item 5" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Alternative" +msgstr "" + +#. Option for the 'Variant Based On' (Select) field in DocType 'Item' +#. Name of a DocType +#. Label of the item_attribute (Link) field in DocType 'Item Variant' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_variant/item_variant.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Attribute" +msgstr "" + +#. Name of a DocType +#. Label of the item_attribute_value (Data) field in DocType 'Item Variant' +#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json +#: erpnext/stock/doctype/item_variant/item_variant.json +msgid "Item Attribute Value" +msgstr "" + +#. Label of the item_attribute_values (Table) field in DocType 'Item Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +msgid "Item Attribute Values" +msgstr "" + +#. Label of the section_break_zlmj (Section Break) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Item Attributes" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/item_balance/item_balance.json +msgid "Item Balance (Simple)" +msgstr "" + +#. Name of a DocType +#. Label of the item_barcode (Data) field in DocType 'Quick Stock Balance' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +msgid "Item Barcode" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:48 +msgid "Item Cart" +msgstr "" + +#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' +#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Pricing +#. Rule' +#. Label of the other_item_code (Link) field in DocType 'Pricing Rule' +#. Label of the item_code (Data) field in DocType 'Pricing Rule Detail' +#. Label of the item_code (Link) field in DocType 'Pricing Rule Item Code' +#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' +#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the other_item_code (Link) field in DocType 'Promotional Scheme' +#. Label of the free_item (Link) field in DocType 'Promotional Scheme Product +#. Discount' +#. Label of the item_code (Link) field in DocType 'Asset' +#. Label of the item_code (Link) field in DocType 'Asset Capitalization Asset +#. Item' +#. Label of the item_code (Link) field in DocType 'Asset Capitalization Service +#. Item' +#. Label of the item_code (Link) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the item_code (Read Only) field in DocType 'Asset Maintenance' +#. Label of the item_code (Read Only) field in DocType 'Asset Maintenance Log' +#. Label of the item_code (Link) field in DocType 'Purchase Order Item' +#. Label of the main_item_code (Link) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the item_code (Link) field in DocType 'Request for Quotation Item' +#. Label of the item_code (Link) field in DocType 'Supplier Quotation Item' +#. Label of the item_code (Link) field in DocType 'Opportunity Item' +#. Label of the item_code (Link) field in DocType 'Maintenance Schedule Detail' +#. Label of the item_code (Link) field in DocType 'Maintenance Schedule Item' +#. Label of the item_code (Link) field in DocType 'Maintenance Visit Purpose' +#. Label of the item_code (Link) field in DocType 'Blanket Order Item' +#. Label of the item_code (Link) field in DocType 'BOM Creator Item' +#. Label of the item_code (Link) field in DocType 'BOM Explosion Item' +#. Label of the item_code (Link) field in DocType 'BOM Item' +#. Label of the item_code (Link) field in DocType 'BOM Secondary Item' +#. Label of the item_code (Link) field in DocType 'BOM Website Item' +#. Label of the item_code (Link) field in DocType 'Job Card Item' +#. Label of the item_code (Link) field in DocType 'Master Production Schedule +#. Item' +#. Label of the item_code (Link) field in DocType 'Material Request Plan Item' +#. Label of the item_code (Link) field in DocType 'Production Plan' +#. Label of the item_code (Link) field in DocType 'Production Plan Item' +#. Label of the item_code (Link) field in DocType 'Sales Forecast Item' +#. Label of the item_code (Link) field in DocType 'Work Order Additional Item' +#. Label of the item_code (Link) field in DocType 'Work Order Item' +#. Label of the item_code (Link) field in DocType 'Import Supplier Invoice' +#. Label of the item_code (Link) field in DocType 'Delivery Schedule Item' +#. Label of the item_code (Link) field in DocType 'Installation Note Item' +#. Label of the item_code (Link) field in DocType 'Quotation Item' +#. Label of the item_code (Link) field in DocType 'Sales Order Item' +#. Label of the item_code (Link) field in DocType 'Bin' +#. Label of the item_code (Link) field in DocType 'Delivery Note Item' +#. Label of the item_code (Data) field in DocType 'Item' +#. Label of the item_code (Link) field in DocType 'Item Alternative' +#. Label of the item_code (Link) field in DocType 'Item Lead Time' +#. Label of the item_code (Link) field in DocType 'Item Manufacturer' +#. Label of the item_code (Link) field in DocType 'Item Price' +#. Label of the item_code (Link) field in DocType 'Landed Cost Item' +#. Label of the item_code (Link) field in DocType 'Material Request Item' +#. Label of the item_code (Link) field in DocType 'Packed Item' +#. Label of the item_code (Link) field in DocType 'Packing Slip Item' +#. Label of the item_code (Link) field in DocType 'Purchase Receipt Item' +#. Label of the item_code (Link) field in DocType 'Quality Inspection' +#. Label of the item (Link) field in DocType 'Quick Stock Balance' +#. Label of the item_code (Link) field in DocType 'Repost Item Valuation' +#. Label of the item_code (Link) field in DocType 'Serial and Batch Bundle' +#. Label of the item_code (Link) field in DocType 'Serial and Batch Entry' +#. Label of the item_code (Link) field in DocType 'Serial No' +#. Label of the item_code (Link) field in DocType 'Stock Closing Balance' +#. Label of the item_code (Link) field in DocType 'Stock Entry Detail' +#. Label of the item_code (Link) field in DocType 'Stock Ledger Entry' +#. Label of the item_code (Link) field in DocType 'Stock Reconciliation Item' +#. Label of the item_code (Link) field in DocType 'Stock Reservation Entry' +#. Option for the 'Item Naming By' (Select) field in DocType 'Stock Settings' +#. Label of the item_code (Link) field in DocType 'Subcontracting Inward Order +#. Item' +#. Label of the main_item_code (Link) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the item_code (Link) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Label of the item_code (Link) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Label of the item_code (Link) field in DocType 'Subcontracting Order Item' +#. Label of the item_code (Link) field in DocType 'Subcontracting Order Service +#. Item' +#. Label of the main_item_code (Link) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the item_code (Link) field in DocType 'Subcontracting Receipt Item' +#. Label of the main_item_code (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#. Label of the item_code (Link) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +#: erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:314 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:68 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:37 +#: erpnext/accounts/report/gross_profit/gross_profit.py:312 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:148 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:167 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:37 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:26 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:231 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:200 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:35 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:471 +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:163 +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:952 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:988 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/projects/doctype/timesheet/timesheet.js:214 +#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/stock_reservation.js:112 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 +#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/utils/serial_no_batch_selector.js:96 +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/selling/doctype/quotation/quotation.js:297 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:369 +#: erpnext/selling/doctype/sales_order/sales_order.js:514 +#: erpnext/selling/doctype/sales_order/sales_order.js:1317 +#: erpnext/selling/doctype/sales_order/sales_order.js:1481 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:29 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:27 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:20 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:252 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:33 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:96 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/report/available_batch_report/available_batch_report.py:21 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:32 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:147 +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:119 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.js:15 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:105 +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:8 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.js:7 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:175 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:115 +#: erpnext/stock/report/item_price_stock/item_price_stock.py:18 +#: erpnext/stock/report/negative_batch_report/negative_batch_report.js:15 +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:40 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:127 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7 +#: erpnext/stock/report/stock_ageing/stock_ageing.py:177 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25 +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:252 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:351 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:507 +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/templates/includes/products_as_list.html:14 +msgid "Item Code" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:61 +msgid "Item Code (Final Product)" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:92 +msgid "Item Code > Item Group > Brand" +msgstr "" + +#: erpnext/stock/doctype/serial_no/serial_no.py:83 +msgid "Item Code cannot be changed for Serial No." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:448 +msgid "Item Code required at Row No {0}" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_item_details.js:278 +msgid "Item Code: {0} is not available under warehouse {1}." +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +msgid "Item Customer Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Item Default" +msgstr "" + +#. Label of the item_defaults (Table) field in DocType 'Item' +#. Label of the item_defaults_section (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Item Defaults" +msgstr "" + +#. Label of the description (Small Text) field in DocType 'BOM' +#. Label of the description (Text Editor) field in DocType 'BOM Item' +#. Label of the description (Text Editor) field in DocType 'BOM Website Item' +#. Label of the item_details (Section Break) field in DocType 'Material Request +#. Plan Item' +#. Label of the description (Small Text) field in DocType 'Work Order' +#. Label of the item_description (Text) field in DocType 'Item Price' +#. Label of the item_description (Small Text) field in DocType 'Quick Stock +#. Balance' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +msgid "Item Description" +msgstr "" + +#. Label of the section_break_19 (Section Break) field in DocType 'Production +#. Plan Sub Assembly Item' +#. Label of the item_details_tab (Tab Break) field in DocType 'Item Lead Time' +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/selling/page/point_of_sale/pos_item_details.js:31 +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Item Details" +msgstr "" + +#. Label of the item_group (Link) field in DocType 'POS Invoice Item' +#. Label of the item_group (Link) field in DocType 'POS Item Group' +#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' +#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Pricing +#. Rule' +#. Label of the other_item_group (Link) field in DocType 'Pricing Rule' +#. Label of the item_group (Link) field in DocType 'Pricing Rule Item Group' +#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' +#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the other_item_group (Link) field in DocType 'Promotional Scheme' +#. Label of the item_group (Link) field in DocType 'Purchase Invoice Item' +#. Label of the item_group (Link) field in DocType 'Sales Invoice Item' +#. Label of the item_group (Link) field in DocType 'Tax Rule' +#. Label of the item_group (Link) field in DocType 'Purchase Order Item' +#. Label of the item_group (Link) field in DocType 'Request for Quotation Item' +#. Label of the item_group (Link) field in DocType 'Supplier Quotation Item' +#. Label of a Link in the Buying Workspace +#. Label of the item_group (Link) field in DocType 'Opportunity Item' +#. Label of the item_group (Link) field in DocType 'BOM Creator' +#. Label of the item_group (Link) field in DocType 'BOM Creator Item' +#. Label of the item_group (Link) field in DocType 'Job Card Item' +#. Option for the 'Restrict Items Based On' (Select) field in DocType 'Party +#. Specific Item' +#. Label of the item_group (Link) field in DocType 'Quotation Item' +#. Label of the item_group (Link) field in DocType 'Sales Order Item' +#. Label of a Link in the Selling Workspace +#. Option for the 'Customer or Item' (Select) field in DocType 'Authorization +#. Rule' +#. Name of a DocType +#. Label of the item_group (Link) field in DocType 'Target Detail' +#. Label of the item_group (Link) field in DocType 'Website Item Group' +#. Label of the item_group (Link) field in DocType 'Delivery Note Item' +#. Label of the item_group (Link) field in DocType 'Item' +#. Label of the item_group (Link) field in DocType 'Material Request Item' +#. Label of the item_group (Data) field in DocType 'Pick List Item' +#. Label of the item_group (Link) field in DocType 'Purchase Receipt Item' +#. Label of the item_group (Link) field in DocType 'Serial and Batch Bundle' +#. Label of the item_group (Link) field in DocType 'Serial No' +#. Label of the item_group (Link) field in DocType 'Stock Closing Balance' +#. Label of the item_group (Data) field in DocType 'Stock Entry Detail' +#. Label of the item_group (Link) field in DocType 'Stock Reconciliation Item' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_item_group/pos_item_group.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/gross_profit/gross_profit.js:44 +#: erpnext/accounts/report/gross_profit/gross_profit.py:325 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:21 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:29 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:28 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:162 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:65 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:181 +#: erpnext/accounts/report/purchase_register/purchase_register.js:58 +#: erpnext/accounts/report/sales_register/sales_register.js:70 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:30 +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:40 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:128 +#: erpnext/public/js/purchase_trends_filters.js:49 +#: erpnext/public/js/sales_trends_filters.js:24 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:236 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:30 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:36 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:54 +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:89 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:41 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:35 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:41 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:103 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/target_detail/target_detail.json +#: erpnext/setup/doctype/website_item_group/website_item_group.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/page/stock_balance/stock_balance.js:35 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:43 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:48 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:48 +#: erpnext/stock/report/item_prices/item_prices.py:52 +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.js:20 +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99 +#: erpnext/stock/report/stock_ageing/stock_ageing.py:187 +#: erpnext/stock/report/stock_analytics/stock_analytics.js:8 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:52 +#: erpnext/stock/report/stock_balance/stock_balance.js:32 +#: erpnext/stock/report/stock_balance/stock_balance.py:479 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:71 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:345 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:99 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json +msgid "Item Group" +msgstr "" + +#. Label of the item_group_defaults (Table) field in DocType 'Item Group' +#: erpnext/setup/doctype/item_group/item_group.json +msgid "Item Group Defaults" +msgstr "" + +#. Label of the item_group_name (Data) field in DocType 'Item Group' +#: erpnext/setup/doctype/item_group/item_group.json +msgid "Item Group Name" +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.js:119 +msgid "Item Group Override" +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.js:82 +msgid "Item Group Tree" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +msgid "Item Group not mentioned in item master for item {0}" +msgstr "" + +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Item Group wise Discount" +msgstr "" + +#. Label of the item_groups (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Item Groups" +msgstr "" + +#. Description of the 'Website Image' (Attach Image) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Item Image (if not slideshow)" +msgstr "" + +#. Label of the item_information_section (Section Break) field in DocType +#. 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Item Information" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Item Lead Time" +msgstr "" + +#. Label of the locations (Table) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Item Locations" +msgstr "" + +#. Name of a role +#: erpnext/setup/doctype/brand/brand.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/uom_category/uom_category.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/doctype/warehouse_type/warehouse_type.json +msgid "Item Manager" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Item Manufacturer" +msgstr "" + +#. Label of the item_name (Data) field in DocType 'Opening Invoice Creation +#. Tool Item' +#. Label of the item_name (Data) field in DocType 'POS Invoice Item' +#. Label of the item_name (Data) field in DocType 'Purchase Invoice Item' +#. Label of the item_name (Data) field in DocType 'Sales Invoice Item' +#. Label of the item_name (Read Only) field in DocType 'Asset' +#. Label of the item_name (Data) field in DocType 'Asset Capitalization Asset +#. Item' +#. Label of the item_name (Data) field in DocType 'Asset Capitalization Service +#. Item' +#. Label of the item_name (Data) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the item_name (Read Only) field in DocType 'Asset Maintenance' +#. Label of the item_name (Read Only) field in DocType 'Asset Maintenance Log' +#. Label of the item_name (Data) field in DocType 'Purchase Order Item' +#. Label of the item_name (Data) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the item_name (Data) field in DocType 'Request for Quotation Item' +#. Label of the item_name (Data) field in DocType 'Supplier Quotation Item' +#. Label of the item_name (Data) field in DocType 'Opportunity Item' +#. Label of the item_name (Data) field in DocType 'Maintenance Schedule Detail' +#. Label of the item_name (Data) field in DocType 'Maintenance Schedule Item' +#. Label of the item_name (Data) field in DocType 'Maintenance Visit Purpose' +#. Label of the item_name (Data) field in DocType 'Blanket Order Item' +#. Label of the item_name (Data) field in DocType 'BOM' +#. Label of the item_name (Data) field in DocType 'BOM Creator' +#. Label of the item_name (Data) field in DocType 'BOM Creator Item' +#. Label of the item_name (Data) field in DocType 'BOM Explosion Item' +#. Label of the item_name (Data) field in DocType 'BOM Item' +#. Label of the item_name (Data) field in DocType 'BOM Secondary Item' +#. Label of the item_name (Data) field in DocType 'BOM Website Item' +#. Label of the item_name (Read Only) field in DocType 'Job Card' +#. Label of the item_name (Data) field in DocType 'Job Card Item' +#. Label of the item_name (Data) field in DocType 'Master Production Schedule +#. Item' +#. Label of the item_name (Data) field in DocType 'Material Request Plan Item' +#. Label of the item_name (Data) field in DocType 'Production Plan Sub Assembly +#. Item' +#. Label of the item_name (Data) field in DocType 'Sales Forecast Item' +#. Label of the item_name (Data) field in DocType 'Work Order' +#. Label of the item_name (Data) field in DocType 'Work Order Item' +#. Label of the item_name (Data) field in DocType 'Quotation Item' +#. Label of the item_name (Data) field in DocType 'Sales Order Item' +#. Label of the item_name (Data) field in DocType 'Batch' +#. Label of the item_name (Data) field in DocType 'Delivery Note Item' +#. Label of the item_name (Data) field in DocType 'Item' +#. Label of the item_name (Read Only) field in DocType 'Item Alternative' +#. Label of the item_name (Data) field in DocType 'Item Lead Time' +#. Label of the item_name (Data) field in DocType 'Item Manufacturer' +#. Label of the item_name (Data) field in DocType 'Item Price' +#. Label of the item_name (Data) field in DocType 'Material Request Item' +#. Label of the item_name (Data) field in DocType 'Packed Item' +#. Label of the item_name (Data) field in DocType 'Packing Slip Item' +#. Label of the item_name (Data) field in DocType 'Pick List Item' +#. Label of the item_name (Data) field in DocType 'Purchase Receipt Item' +#. Label of the item_name (Data) field in DocType 'Putaway Rule' +#. Label of the item_name (Data) field in DocType 'Quality Inspection' +#. Label of the item_name (Data) field in DocType 'Quick Stock Balance' +#. Label of the item_name (Data) field in DocType 'Serial and Batch Bundle' +#. Label of the item_name (Data) field in DocType 'Serial No' +#. Label of the item_name (Data) field in DocType 'Stock Closing Balance' +#. Label of the item_name (Data) field in DocType 'Stock Entry Detail' +#. Label of the item_name (Data) field in DocType 'Stock Reconciliation Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Inward Order +#. Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Order Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Order Service +#. Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Receipt Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#. Label of the item_name (Data) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:74 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:71 +#: erpnext/accounts/report/gross_profit/gross_profit.py:319 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:34 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:154 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:173 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:71 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:34 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:206 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:101 +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:153 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 +#: erpnext/public/js/controllers/transaction.js:2867 +#: erpnext/public/js/utils.js:827 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1324 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:35 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:34 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:26 +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/available_batch_report/available_batch_report.py:32 +#: erpnext/stock/report/available_serial_no/available_serial_no.py:99 +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:33 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:77 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:153 +#: erpnext/stock/report/item_price_stock/item_price_stock.py:24 +#: erpnext/stock/report/item_prices/item_prices.py:51 +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:143 +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:58 +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440 +#: erpnext/stock/report/stock_ageing/stock_ageing.py:184 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:45 +#: erpnext/stock/report/stock_balance/stock_balance.py:477 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:293 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31 +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:98 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Item Name" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +msgid "Item Name is required." +msgstr "" + +#. Label of the item_naming_by (Select) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Item Naming By" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:455 +msgid "Item Out of Stock" +msgstr "" + +#. Label of the column_break_njfg (Column Break) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Item Override" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Selling Workspace +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json +msgid "Item Price" +msgstr "" + +#. Label of the item_price_settings_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Item Price Settings" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/item_price_stock/item_price_stock.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Price Stock" +msgstr "" + +#: erpnext/stock/get_item_details.py:1181 +#: erpnext/stock/get_item_details.py:1205 +msgid "Item Price added for {0} in Price List - {1}" +msgstr "" + +#: erpnext/stock/doctype/item_price/item_price.py:140 +msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:183 +msgid "Item Price created at rate {0}" +msgstr "" + +#: erpnext/stock/get_item_details.py:1164 +msgid "Item Price updated for {0} in Price List {1}" +msgstr "" + +#. Label of the item_prices_column (Column Break) field in DocType 'Item' +#. Name of a report +#. Label of a Link in the Stock Workspace +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/report/item_prices/item_prices.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Item Prices" +msgstr "" + +#. Name of a DocType +#. Label of the item_quality_inspection_parameter (Table) field in DocType +#. 'Quality Inspection Template' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +msgid "Item Quality Inspection Parameter" +msgstr "" + +#. Label of the item_reference (Link) field in DocType 'Maintenance Schedule +#. Detail' +#. Label of the item_reference (Data) field in DocType 'Production Plan Item' +#. Label of the item_reference (Data) field in DocType 'Production Plan Item +#. Reference' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json +msgid "Item Reference" +msgstr "" + +#. Name of a DocType +#. Label of the item_reorder_section (Section Break) field in DocType 'Material +#. Request Item' +#: erpnext/stock/doctype/item_reorder/item_reorder.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Item Reorder" +msgstr "" + +#. Label of the item_row (Data) field in DocType 'Item Wise Tax Detail' +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +msgid "Item Row" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" +msgstr "" + +#. Label of the item_serial_no (Link) field in DocType 'Quality Inspection' +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Item Serial No" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/item_shortage_report/item_shortage_report.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Shortage Report" +msgstr "" + +#. Label of the supplier_items (Table) field in DocType 'Item' +#. Name of a DocType +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_supplier/item_supplier.json +msgid "Item Supplier" +msgstr "" + +#. Label of the sec_break_taxes (Section Break) field in DocType 'Item Group' +#. Name of a DocType +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/stock/doctype/item_tax/item_tax.json +msgid "Item Tax" +msgstr "" + +#. Label of the item_tax_amount (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the item_tax_amount (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Item Tax Amount Included in Value" +msgstr "" + +#. Label of the item_tax_rate (Small Text) field in DocType 'POS Invoice Item' +#. Label of the item_tax_rate (Code) field in DocType 'Purchase Invoice Item' +#. Label of the item_tax_rate (Small Text) field in DocType 'Sales Invoice +#. Item' +#. Label of the item_tax_rate (Code) field in DocType 'Purchase Order Item' +#. Label of the item_tax_rate (Code) field in DocType 'Supplier Quotation Item' +#. Label of the item_tax_rate (Code) field in DocType 'Quotation Item' +#. Label of the item_tax_rate (Code) field in DocType 'Sales Order Item' +#. Label of the item_tax_rate (Small Text) field in DocType 'Delivery Note +#. Item' +#. Label of the item_tax_rate (Code) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Item Tax Rate" +msgstr "" + +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.py:68 +msgid "Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable" +msgstr "" + +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.py:55 +msgid "Item Tax Row {0}: Account must belong to Company - {1}" +msgstr "" + +#. Name of a DocType +#. Label of the item_tax_template (Link) field in DocType 'POS Invoice Item' +#. Label of the item_tax_template (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the item_tax_template (Link) field in DocType 'Sales Invoice Item' +#. Label of a Link in the Invoicing Workspace +#. Label of the item_tax_template (Link) field in DocType 'Purchase Order Item' +#. Label of the item_tax_template (Link) field in DocType 'Supplier Quotation +#. Item' +#. Label of the item_tax_template (Link) field in DocType 'Quotation Item' +#. Label of the item_tax_template (Link) field in DocType 'Sales Order Item' +#. Label of the item_tax_template (Link) field in DocType 'Delivery Note Item' +#. Label of the item_tax_template (Link) field in DocType 'Item Tax' +#. Label of the item_tax_template (Link) field in DocType 'Purchase Receipt +#. Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item_tax/item_tax.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Item Tax Template" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json +msgid "Item Tax Template Detail" +msgstr "" + +#. Label of the production_item (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Item To Manufacture" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/item_variant/item_variant.json +#: erpnext/stock/report/item_where_used/item_where_used.py:387 +msgid "Item Variant" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Item Variant Attribute" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/item_variant_details/item_variant_details.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Variant Details" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/item/item.js:235 +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Variant Settings" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1331 +msgid "Item Variant {0} already exists with same attributes" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:838 +msgid "Item Variants updated" +msgstr "" + +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.py:87 +msgid "Item Warehouse based reposting has been enabled." +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/item_website_specification/item_website_specification.json +msgid "Item Website Specification" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'POS Invoice +#. Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Purchase +#. Invoice Item' +#. Label of the section_break_18 (Section Break) field in DocType 'Sales +#. Invoice Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Purchase +#. Order Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Supplier +#. Quotation Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Quotation +#. Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Sales +#. Order Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Delivery +#. Note Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Item Weight Details" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/item_where_used/item_where_used.json +msgid "Item Where Used" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.json +#: erpnext/workspace_sidebar/buying.json +msgid "Item Wise Consumption" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +msgid "Item Wise Tax Detail" +msgstr "" + +#. Label of the item_wise_tax_details (Table) field in DocType 'POS Invoice' +#. Label of the item_wise_tax_details (Table) field in DocType 'Purchase +#. Invoice' +#. Label of the item_wise_tax_details (Table) field in DocType 'Sales Invoice' +#. Label of the item_wise_tax_details (Table) field in DocType 'Purchase Order' +#. Label of the item_wise_tax_details (Table) field in DocType 'Supplier +#. Quotation' +#. Label of the item_wise_tax_details (Table) field in DocType 'Quotation' +#. Label of the item_wise_tax_details (Table) field in DocType 'Sales Order' +#. Label of the item_wise_tax_details (Table) field in DocType 'Delivery Note' +#. Label of the item_wise_tax_details (Table) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Item Wise Tax Details" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:560 +msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" +msgstr "" + +#. Label of the section_break_rrrx (Section Break) field in DocType 'Sales +#. Forecast' +#. Label of the item_and_warehouse_section (Section Break) field in DocType +#. 'Bin' +#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Item and Warehouse" +msgstr "" + +#. Label of the issue_details (Section Break) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Item and Warranty Details" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:433 +msgid "Item for row {0} does not match Material Request" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:897 +msgid "Item has variants." +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:436 +msgid "Item is mandatory in Raw Materials table." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_details.js:111 +msgid "Item is removed since no serial / batch no selected." +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +msgid "Item must be added using 'Get Items from Purchase Receipts' button" +msgstr "" + +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:41 +#: erpnext/selling/doctype/sales_order/sales_order.js:1719 +msgid "Item name" +msgstr "" + +#. Label of the operation (Link) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Item operation" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" +msgstr "" + +#. Label of the item (Link) field in DocType 'BOM' +#. Label of the finished_good (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Item to Manufacture" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:27 +msgid "Item valuation rate is recalculated considering landed cost voucher amount" +msgstr "" + +#: erpnext/stock/utils.py:539 +msgid "Item valuation reposting in progress. Report might show incorrect item valuation." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1054 +msgid "Item variant {0} exists with same attributes" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:24 +msgid "Item with name {0} not found in the Purchase Order" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:99 +msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 +msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 +msgid "Item {0} cannot be added as a sub-assembly of itself" +msgstr "" + +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:197 +msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:343 +#: erpnext/stock/doctype/item/item.py:693 +msgid "Item {0} does not exist" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:665 +msgid "Item {0} does not exist in the system or has expired" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:384 +msgid "Item {0} does not exist." +msgstr "" + +#: erpnext/controllers/selling_controller.py:870 +msgid "Item {0} entered multiple times." +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:222 +msgid "Item {0} has already been returned" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:345 +msgid "Item {0} has been disabled" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:631 +msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:43 +msgid "Item {0} has no changes in delivered quantity. Please unselect the row if you do not wish to update its quantity." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1233 +msgid "Item {0} has reached its end of life on {1}" +msgstr "" + +#: erpnext/stock/stock_ledger.py:114 +msgid "Item {0} ignored since it is not a stock item" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 +msgid "Item {0} is already reserved/delivered against Sales Order {1}." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1253 +msgid "Item {0} is cancelled" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1237 +msgid "Item {0} is disabled" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:29 +msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated." +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.py:79 +msgid "Item {0} is not a serialized Item" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1245 +msgid "Item {0} is not a stock Item" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:51 +msgid "Item {0} is not a subcontracted item" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:855 +msgid "Item {0} is not a template item." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +msgid "Item {0} is not active or end of life has been reached" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:347 +msgid "Item {0} must be a Fixed Asset Item" +msgstr "" + +#: erpnext/stock/get_item_details.py:365 +msgid "Item {0} must be a Non-Stock Item" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:349 +msgid "Item {0} must be a non-stock item" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:59 +msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/item_price/item_price.py:56 +msgid "Item {0} not found." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.py:315 +msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:573 +msgid "Item {0}: {1} qty produced. " +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 +msgid "Item {} does not exist." +msgstr "" + +#. Name of a report +#: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json +msgid "Item-wise Price List Rate" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Item-wise Purchase History" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Item-wise Purchase Register" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Item-wise Sales History" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.json +#: erpnext/workspace_sidebar/selling.json +msgid "Item-wise Sales Register" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Item-wise sales Register" +msgstr "" + +#: erpnext/stock/get_item_details.py:769 +msgid "Item/Item Code required to get Item Tax Template." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:484 +msgid "Item: {0} does not exist in the system" +msgstr "" + +#. Label of a Card Break in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/selling.json +msgid "Items & Pricing" +msgstr "" + +#. Label of a Card Break in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Items Catalogue" +msgstr "" + +#: erpnext/stock/report/item_prices/item_prices.js:8 +msgid "Items Filter" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/selling/doctype/sales_order/sales_order.js:1757 +msgid "Items Required" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Items To Be Received" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/report/items_to_be_requested/items_to_be_requested.json +#: erpnext/workspace_sidebar/buying.json +msgid "Items To Be Requested" +msgstr "" + +#. Label of a Card Break in the Selling Workspace +#: erpnext/selling/workspace/selling/selling.json +msgid "Items and Pricing" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:170 +msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:162 +msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1517 +msgid "Items for Raw Material Request" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:110 +msgid "Items not found." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" +msgstr "" + +#. Label of the items_to_be_repost (Code) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Items to Be Repost" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +msgid "Items to Manufacture are required to pull the Raw Materials associated with it." +msgstr "" + +#. Label of a Link in the Buying Workspace +#: erpnext/buying/workspace/buying/buying.json +msgid "Items to Order and Receive" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:72 +#: erpnext/selling/doctype/sales_order/sales_order.js:329 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:225 +msgid "Items to Reserve" +msgstr "" + +#. Description of the 'Warehouse' (Link) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Items under this warehouse will be suggested" +msgstr "" + +#: erpnext/controllers/stock_controller.py:121 +msgid "Items {0} do not exist in the Item master." +msgstr "" + +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Itemwise Discount" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Itemwise Recommended Reorder Level" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "JAN" +msgstr "" + +#. Label of the production_capacity (Int) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Job Capacity" +msgstr "" + +#. Label of the job_card (Link) field in DocType 'Purchase Order Item' +#. Option for the 'Transfer Material Against' (Select) field in DocType 'BOM' +#. Name of a DocType +#. Label of the job_card_section (Section Break) field in DocType 'Operation' +#. Option for the 'Transfer Material Against' (Select) field in DocType 'Work +#. Order' +#. Label of a Link in the Manufacturing Workspace +#. Label of the job_card (Link) field in DocType 'Material Request' +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Label of the job_card (Link) field in DocType 'Stock Entry' +#. Label of the job_card (Link) field in DocType 'Subcontracting Order Item' +#. Label of the job_card (Link) field in DocType 'Subcontracting Receipt Item' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card/job_card.py:1077 +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:408 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Job Card" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:167 +msgid "Job Card Analysis" +msgstr "" + +#. Name of a DocType +#. Label of the job_card_item (Data) field in DocType 'Material Request Item' +#. Label of the job_card_item (Data) field in DocType 'Stock Entry Detail' +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Job Card Item" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:926 +msgid "Job Card On Hold" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +msgid "Job Card Operation" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json +msgid "Job Card Scheduled Time" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +msgid "Job Card Secondary Item" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Job Card Summary" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +msgid "Job Card Time Log" +msgstr "" + +#. Label of the job_card_section (Tab Break) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Job Card and Capacity Planning" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +msgid "Job Card {0} has been completed" +msgstr "" + +#. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Job Cards" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job Paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 +msgid "Job Started" +msgstr "" + +#. Label of the job_title (Data) field in DocType 'Lead' +#. Label of the job_title (Data) field in DocType 'Opportunity' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Job Title" +msgstr "" + +#. Label of the supplier (Link) field in DocType 'Subcontracting Order' +#. Label of the supplier (Link) field in DocType 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Job Worker" +msgstr "" + +#. Label of the supplier_address (Link) field in DocType 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Job Worker Address" +msgstr "" + +#. Label of the address_display (Text Editor) field in DocType 'Subcontracting +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Job Worker Address Details" +msgstr "" + +#. Label of the contact_person (Link) field in DocType 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Job Worker Contact" +msgstr "" + +#. Label of the supplier_currency (Link) field in DocType 'Subcontracting +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Job Worker Currency" +msgstr "" + +#. Label of the supplier_delivery_note (Data) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Job Worker Delivery Note" +msgstr "" + +#. Label of the supplier_name (Data) field in DocType 'Subcontracting Order' +#. Label of the supplier_name (Data) field in DocType 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Job Worker Name" +msgstr "" + +#. Label of the supplier_warehouse (Link) field in DocType 'Subcontracting +#. Order' +#. Label of the supplier_warehouse (Link) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Job Worker Warehouse" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +msgid "Job card {0} created" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:76 +msgid "Job: {0} has been triggered for processing failed transactions" +msgstr "" + +#. Label of the employment_details (Tab Break) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Joining" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Joule" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Joule/Meter" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:30 +msgid "Journal Entries" +msgstr "" + +#: erpnext/accounts/utils.py:1073 +msgid "Journal Entries {0} are un-linked" +msgstr "" + +#. Name of a DocType +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#. Option for the 'Invoice Type' (Select) field in DocType 'Payment +#. Reconciliation Invoice' +#. Label of a Link in the Invoicing Workspace +#. Group in Asset's connections +#. Label of the journal_entry (Link) field in DocType 'Asset Value Adjustment' +#. Label of the journal_entry (Link) field in DocType 'Depreciation Schedule' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:58 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/print_format/journal_auditing_voucher/journal_auditing_voucher.html:10 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/assets/doctype/asset/asset.js:385 +#: erpnext/assets/doctype/asset/asset.js:394 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +#: erpnext/templates/form_grid/bank_reconciliation_grid.html:3 +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Journal Entry" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Journal Entry Account" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Journal Entry Template" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json +msgid "Journal Entry Template Account" +msgstr "" + +#. Label of the voucher_type (Select) field in DocType 'Journal Entry Template' +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Journal Entry Type" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:190 +msgid "Journal Entry for Asset scrapping cannot be cancelled. Please restore the Asset." +msgstr "" + +#. Label of the journal_entry_for_scrap (Link) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Journal Entry for Scrap" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:32 +msgid "Journal Entry type should be set as Depreciation Entry for asset depreciation" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:580 +msgid "Journal Entry {0} does not have account {1} or already matched against other voucher" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:394 +msgid "Journal Template Accounts" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:97 +msgid "Journal entries have been created" +msgstr "" + +#. Label of the journals_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Journals" +msgstr "" + +#. Description of a DocType +#: erpnext/crm/doctype/campaign/campaign.json +msgid "Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. " +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kelvin" +msgstr "" + +#. Label of a Card Break in the Buying Workspace +#. Label of a Card Break in the Selling Workspace +#. Label of a Card Break in the Stock Workspace +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Key Reports" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kg" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kiloampere" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilocalorie" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilocoulomb" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilogram-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilogram/Cubic Centimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilogram/Cubic Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilogram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilohertz" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilojoule" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilometer" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilometer/Hour" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilopascal" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilopond" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilopound-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilowatt" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilowatt-Hour" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1079 +msgid "Kindly cancel the Manufacturing Entries first against the work order {0}." +msgstr "" + +#: erpnext/public/js/utils/party.js:269 +msgid "Kindly select the company first" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kip" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Knot" +msgstr "" + +#. Option for the 'Default Stock Valuation Method' (Select) field in DocType +#. 'Company' +#. Option for the 'Valuation Method' (Select) field in DocType 'Item' +#. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock +#. Settings' +#. Option for the 'Pick Serial / Batch Based On' (Select) field in DocType +#. 'Stock Settings' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "LIFO" +msgstr "" + +#. Label of the taxes (Table) field in DocType 'Landed Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Landed Cost" +msgstr "" + +#. Label of the landed_cost_help (HTML) field in DocType 'Landed Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Landed Cost Help" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:18 +msgid "Landed Cost Id" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +msgid "Landed Cost Item" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +msgid "Landed Cost Purchase Receipt" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/landed_cost_report/landed_cost_report.json +msgid "Landed Cost Report" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Landed Cost Taxes and Charges" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json +msgid "Landed Cost Vendor Invoice" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:671 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:88 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Landed Cost Voucher" +msgstr "" + +#. Label of the landed_cost_voucher_amount (Currency) field in DocType +#. 'Purchase Invoice Item' +#. Label of the landed_cost_voucher_amount (Currency) field in DocType +#. 'Purchase Receipt Item' +#. Label of the landed_cost_voucher_amount (Currency) field in DocType 'Stock +#. Entry Detail' +#. Label of the landed_cost_voucher_amount (Currency) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Landed Cost Voucher Amount" +msgstr "" + +#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Lapsed" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:274 +msgid "Large" +msgstr "" + +#. Label of the carbon_check_date (Date) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Last Carbon Check" +msgstr "" + +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:46 +msgid "Last Communication" +msgstr "" + +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:52 +msgid "Last Communication Date" +msgstr "" + +#. Label of the last_completion_date (Date) field in DocType 'Asset Maintenance +#. Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Last Completion Date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:81 +msgid "Last Fiscal Year" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:673 +msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" + +#. Label of the last_integration_date (Date) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Last Integration Date" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:138 +msgid "Last Month Downtime Analysis" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:104 +msgid "Last Order Amount" +msgstr "" + +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:45 +#: erpnext/selling/report/inactive_customers/inactive_customers.py:105 +msgid "Last Order Date" +msgstr "" + +#. Label of the last_purchase_rate (Currency) field in DocType 'Purchase Order +#. Item' +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM' +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM +#. Creator' +#. Label of the last_purchase_rate (Float) field in DocType 'Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:123 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/report/item_prices/item_prices.py:56 +msgid "Last Purchase Rate" +msgstr "" + +#. Label of the last_scanned_warehouse (Data) field in DocType 'POS Invoice' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Purchase +#. Invoice' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Sales Invoice' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Purchase Order' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Quotation' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Sales Order' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Delivery Note' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Material +#. Request' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Purchase +#. Receipt' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Stock Entry' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Stock +#. Reconciliation' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Last Scanned Warehouse" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:335 +msgid "Last Stock Transaction for item {0} under warehouse {1} was on {2}." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankPicker.tsx:128 +msgid "Last Synced Transaction" +msgstr "" + +#: erpnext/setup/doctype/vehicle/vehicle.py:46 +msgid "Last carbon check date cannot be a future date" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:1037 +msgid "Last transacted" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.py:224 +msgid "Latest" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:593 +msgid "Latest Age" +msgstr "" + +#. Label of the latitude (Float) field in DocType 'Location' +#. Label of the lat (Float) field in DocType 'Delivery Stop' +#: erpnext/assets/doctype/location/location.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Latitude" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'CRM Settings' +#. Option for the 'Email Campaign For ' (Select) field in DocType 'Email +#. Campaign' +#. Name of a DocType +#. Option for the 'Status' (Select) field in DocType 'Lead' +#. Label of the lead (Link) field in DocType 'Prospect Lead' +#. Label of the lead_name (Link) field in DocType 'Customer' +#. Label of a Link in the Home Workspace +#. Label of the lead (Link) field in DocType 'Issue' +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/crm_settings/crm_settings.json +#: erpnext/crm/doctype/email_campaign/email_campaign.json +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/prospect_lead/prospect_lead.json +#: erpnext/crm/report/lead_details/lead_details.js:33 +#: erpnext/crm/report/lead_details/lead_details.py:18 +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js:8 +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:28 +#: erpnext/public/js/communication.js:25 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/support/doctype/issue/issue.json erpnext/workspace_sidebar/crm.json +msgid "Lead" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:399 +msgid "Lead -> Prospect" +msgstr "" + +#. Name of a report +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.json +msgid "Lead Conversion Time" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:21 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:26 +msgid "Lead Count" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/lead_details/lead_details.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Lead Details" +msgstr "" + +#. Label of the lead_name (Data) field in DocType 'Prospect Lead' +#: erpnext/crm/doctype/prospect_lead/prospect_lead.json +#: erpnext/crm/report/lead_details/lead_details.py:24 +msgid "Lead Name" +msgstr "" + +#. Label of the lead_owner (Link) field in DocType 'Lead' +#. Label of the lead_owner (Data) field in DocType 'Prospect Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/prospect_lead/prospect_lead.json +#: erpnext/crm/report/lead_details/lead_details.py:28 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:21 +msgid "Lead Owner" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Lead Owner Efficiency" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:174 +msgid "Lead Owner cannot be same as the Lead Email Address" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Lead Source" +msgstr "" + +#. Label of the cumulative_lead_time (Int) field in DocType 'Master Production +#. Schedule Item' +#. Label of the lead_time (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1073 +#: erpnext/stock/doctype/item/item_dashboard.py:35 +msgid "Lead Time" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:264 +msgid "Lead Time (Days)" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:267 +msgid "Lead Time (in mins)" +msgstr "" + +#. Label of the lead_time_date (Date) field in DocType 'Material Request Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Lead Time Date" +msgstr "" + +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:59 +msgid "Lead Time Days" +msgstr "" + +#. Label of the lead_time_days (Int) field in DocType 'Item' +#. Label of the lead_time_days (Int) field in DocType 'Item Price' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_price/item_price.json +msgid "Lead Time in days" +msgstr "" + +#. Label of the type (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Lead Type" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:398 +msgid "Lead {0} has been added to prospect {1}." +msgstr "" + +#. Label of the leads_section (Tab Break) field in DocType 'Prospect' +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Leads" +msgstr "" + +#: erpnext/utilities/activation.py:80 +msgid "Leads help you get business, add all your contacts and more as your leads" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Learn Asset' +#: erpnext/assets/onboarding_step/learn_asset/learn_asset.json +msgid "Learn Asset" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Learn Subcontracting' +#: erpnext/subcontracting/onboarding_step/learn_subcontracting/learn_subcontracting.json +msgid "Learn Subcontracting" +msgstr "" + +#. Description of the 'Enable Common Party Accounting' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Learn about Common Party" +msgstr "" + +#. Label of the leave_encashed (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Leave Encashed?" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:969 +msgid "Leave as 0 to allow zero valuation rate." +msgstr "" + +#. Description of the 'Success Redirect URL' (Data) field in DocType +#. 'Appointment Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Leave blank for home.\n" +"This is relative to site URL, for example \"about\" will redirect to \"https://yoursitename.com/about\"" +msgstr "" + +#. Description of the 'Release Date' (Date) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Leave blank if the Supplier is blocked indefinitely" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:138 +msgid "Leave blank to use the password already saved for this bank account (if any). It is stored encrypted and reused for future statements." +msgstr "" + +#. Description of the 'Dispatch Notification Attachment' (Link) field in +#. DocType 'Delivery Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Leave blank to use the standard Delivery Note format" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +msgid "Ledger Health" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +msgid "Ledger Health Monitor" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/ledger_health_monitor_company/ledger_health_monitor_company.json +msgid "Ledger Health Monitor Company" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +msgid "Ledger Merge" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json +msgid "Ledger Merge Accounts" +msgstr "" + +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:150 +msgid "Ledger Type" +msgstr "" + +#. Label of a Card Break in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Ledgers" +msgstr "" + +#. Label of the vouchers_posted (Int) field in DocType 'Repost Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Ledgers Posted" +msgstr "" + +#. Label of the left_child (Link) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Left Child" +msgstr "" + +#. Label of the lft (Int) field in DocType 'Quality Procedure' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Left Index" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:398 +msgid "Left column shows inherited defaults (Item Group → Company / Stock Settings). Right column is where you set overrides for this item only." +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.js:136 +msgid "Left column shows system-level defaults (Company / Stock Settings). Right column is where you set overrides for this item group." +msgstr "" + +#. Label of the legacy_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Legacy Fields" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/company/company.json +msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization." +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195 +msgid "Legal Expenses" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:32 +msgid "Legend" +msgstr "" + +#. Label of the length (Float) field in DocType 'Shipment Parcel' +#. Label of the length (Float) field in DocType 'Shipment Parcel Template' +#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Length (cm)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +msgid "Less Than Amount" +msgstr "" + +#. Description of the 'Body Text' (Text Editor) field in DocType 'Dunning +#. Letter Text' +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Letter or Email Body Text" +msgstr "" + +#. Description of the 'Closing Text' (Text Editor) field in DocType 'Dunning +#. Letter Text' +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Letter or Email Closing Text" +msgstr "" + +#. Label of the bom_level (Int) field in DocType 'Production Plan Sub Assembly +#. Item' +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Level (BOM)" +msgstr "" + +#. Label of the lft (Int) field in DocType 'Account' +#. Label of the lft (Int) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/setup/doctype/company/company.json +msgid "Lft" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +msgid "Liabilities" +msgstr "" + +#. Option for the 'Root Type' (Select) field in DocType 'Account' +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Option for the 'Root Type' (Select) field in DocType 'Account Category' +#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/report/account_balance/account_balance.js:26 +msgid "Liability" +msgstr "" + +#. Label of the license_details (Section Break) field in DocType 'Driver' +#: erpnext/setup/doctype/driver/driver.json +msgid "License Details" +msgstr "" + +#. Label of the license_number (Data) field in DocType 'Driver' +#: erpnext/setup/doctype/driver/driver.json +msgid "License Number" +msgstr "" + +#. Label of the license_plate (Data) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "License Plate" +msgstr "" + +#: erpnext/controllers/status_updater.py:501 +msgid "Limit Crossed" +msgstr "" + +#. Label of the limit_reposting_timeslot (Check) field in DocType 'Stock +#. Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Limit timeslot for Stock Reposting" +msgstr "" + +#. Description of the 'Short Name' (Data) field in DocType 'Manufacturer' +#: erpnext/stock/doctype/manufacturer/manufacturer.json +msgid "Limited to 12 characters" +msgstr "" + +#. Label of the limits_dont_apply_on (Select) field in DocType 'Stock Reposting +#. Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Limits don't apply on" +msgstr "" + +#. Label of the reference_code (Data) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Line Reference" +msgstr "" + +#. Label of the amt_in_words_line_spacing (Float) field in DocType 'Cheque +#. Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Line spacing for amount in words" +msgstr "" + +#. Label of the link_options_sb (Section Break) field in DocType 'Support +#. Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Link Options" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:15 +msgid "Link a new bank account" +msgstr "" + +#. Description of the 'Sub Procedure' (Link) field in DocType 'Quality +#. Procedure Process' +#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json +msgid "Link existing Quality Procedure." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:556 +msgid "Link to Material Request" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:452 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:80 +msgid "Link to Material Requests" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:164 +msgid "Link with Customer" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.js:203 +msgid "Link with Supplier" +msgstr "" + +#. Label of the linked_docs_section (Section Break) field in DocType +#. 'Appointment' +#: erpnext/crm/doctype/appointment/appointment.json +msgid "Linked Documents" +msgstr "" + +#. Label of the section_break_12 (Section Break) field in DocType 'POS Closing +#. Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "Linked Invoices" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/linked_location/linked_location.json +msgid "Linked Location" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1106 +msgid "Linked with submitted documents" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:251 +#: erpnext/selling/doctype/customer/customer.js:283 +msgid "Linking Failed" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:250 +msgid "Linking to Customer Failed. Please try again." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.js:282 +msgid "Linking to Supplier Failed. Please try again." +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 +msgid "Liquidity Ratios" +msgstr "" + +#. Description of the 'Items' (Section Break) field in DocType 'Product Bundle' +#: erpnext/selling/doctype/product_bundle/product_bundle.json +msgid "List items that form the package." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Litre-Atmosphere" +msgstr "" + +#. Label of the load_criteria (Button) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Load All Criteria" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js:68 +msgid "Loading Invoices! Please Wait..." +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Loan" +msgstr "" + +#. Label of the loan_end_date (Date) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Loan End Date" +msgstr "" + +#. Label of the loan_period (Int) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Loan Period (Days)" +msgstr "" + +#. Label of the loan_start_date (Date) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Loan Start Date" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py:61 +msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305 +msgid "Loans (Liabilities)" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:25 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:36 +msgid "Loans and Advances (Assets)" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:210 +msgid "Local" +msgstr "" + +#. Label of the sb_location_details (Section Break) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Location Details" +msgstr "" + +#. Label of the location_name (Data) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Location Name" +msgstr "" + +#. Label of the locked (Check) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Locked" +msgstr "" + +#. Label of the log_entries (Int) field in DocType 'Bulk Transaction Log' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.json +msgid "Log Entries" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/item_price/item_price.json +msgid "Log the selling and buying rate of an Item" +msgstr "" + +#. Label of the logo (Attach) field in DocType 'Sales Partner' +#. Label of the logo (Attach Image) field in DocType 'Manufacturer' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +msgid "Logo" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323 +msgid "Long-term Provisions" +msgstr "" + +#. Label of the longitude (Float) field in DocType 'Location' +#. Label of the lng (Float) field in DocType 'Delivery Stop' +#: erpnext/assets/doctype/location/location.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Longitude" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Opportunity' +#. Option for the 'Status' (Select) field in DocType 'Quotation' +#. Option for the 'Tracking Status' (Select) field in DocType 'Shipment' +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:7 +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/quotation/quotation_list.js:36 +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Lost" +msgstr "" + +#. Name of a report +#: erpnext/crm/report/lost_opportunity/lost_opportunity.json +msgid "Lost Opportunity" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/report/lead_details/lead_details.js:38 +msgid "Lost Quotation" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/lost_quotations/lost_quotations.json +#: erpnext/selling/report/lost_quotations/lost_quotations.py:31 +msgid "Lost Quotations" +msgstr "" + +#: erpnext/selling/report/lost_quotations/lost_quotations.py:37 +msgid "Lost Quotations %" +msgstr "" + +#. Label of the lost_reason (Data) field in DocType 'Opportunity Lost Reason' +#: erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:30 +#: erpnext/selling/report/lost_quotations/lost_quotations.py:24 +msgid "Lost Reason" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.json +msgid "Lost Reason Detail" +msgstr "" + +#. Label of the lost_reasons (Table MultiSelect) field in DocType 'Opportunity' +#. Label of the lost_detail_section (Section Break) field in DocType +#. 'Opportunity' +#. Label of the lost_reasons (Table MultiSelect) field in DocType 'Quotation' +#. Label of the lost_reasons_section (Section Break) field in DocType +#. 'Quotation' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 +#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Lost Reasons" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity.js:28 +msgid "Lost Reasons are required in case opportunity is Lost." +msgstr "" + +#: erpnext/selling/report/lost_quotations/lost_quotations.py:43 +msgid "Lost Value" +msgstr "" + +#: erpnext/selling/report/lost_quotations/lost_quotations.py:49 +msgid "Lost Value %" +msgstr "" + +#. Label of the lower_deduction_certificate (Link) field in DocType 'Tax +#. Withholding Entry' +#. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax +#. Withholding Entry' +#. Label of a Link in the Invoicing Workspace +#. Name of a DocType +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Lower Deduction Certificate" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:309 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:426 +msgid "Lower Income" +msgstr "" + +#. Label of the loyalty_amount (Currency) field in DocType 'POS Invoice' +#. Label of the loyalty_amount (Currency) field in DocType 'Sales Invoice' +#. Label of the loyalty_amount (Currency) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Loyalty Amount" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Loyalty Point Entry" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json +msgid "Loyalty Point Entry Redemption" +msgstr "" + +#. Label of the loyalty_points (Int) field in DocType 'Loyalty Point Entry' +#. Label of the loyalty_points (Int) field in DocType 'POS Invoice' +#. Label of the loyalty_points (Int) field in DocType 'Sales Invoice' +#. Label of the loyalty_points_tab (Section Break) field in DocType 'Customer' +#. Label of the loyalty_points_redemption (Section Break) field in DocType +#. 'Sales Order' +#. Label of the loyalty_points (Int) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:970 +msgid "Loyalty Points" +msgstr "" + +#. Label of the loyalty_points_redemption (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the loyalty_points_redemption (Section Break) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Loyalty Points Redemption" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:16 +msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." +msgstr "" + +#: erpnext/public/js/utils.js:200 +msgid "Loyalty Points: {0}" +msgstr "" + +#. Label of the loyalty_program (Link) field in DocType 'Loyalty Point Entry' +#. Name of a DocType +#. Label of the loyalty_program (Link) field in DocType 'POS Invoice' +#. Label of the loyalty_program (Link) field in DocType 'Sales Invoice' +#. Label of the loyalty_program (Link) field in DocType 'Customer' +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1234 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:963 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Loyalty Program" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json +msgid "Loyalty Program Collection" +msgstr "" + +#. Label of the loyalty_program_help (HTML) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Loyalty Program Help" +msgstr "" + +#. Label of the loyalty_program_name (Data) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Loyalty Program Name" +msgstr "" + +#. Label of the loyalty_program_tier (Data) field in DocType 'Loyalty Point +#. Entry' +#. Label of the loyalty_program_tier (Data) field in DocType 'Customer' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Loyalty Program Tier" +msgstr "" + +#. Label of the loyalty_program_type (Select) field in DocType 'Loyalty +#. Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Loyalty Program Type" +msgstr "" + +#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists." +msgstr "" + +#. Label of the mps (Link) field in DocType 'Purchase Order' +#. Label of the mps (Link) field in DocType 'Work Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast_dashboard.py:9 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:51 +msgid "MPS" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Sales Forecast' +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast_list.js:9 +msgid "MPS Generated" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.py:445 +msgid "MRP Log documents are being created in the background." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:156 +msgid "MT940 file detected. Please enable 'Import MT940 Format' to proceed." +msgstr "" + +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.js:23 +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:78 +#: erpnext/public/js/plant_floor_visual/visual_plant.js:86 +msgid "Machine" +msgstr "" + +#: erpnext/public/js/plant_floor_visual/visual_plant.js:70 +msgid "Machine Type" +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Machine malfunction" +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Machine operator errors" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:728 +#: erpnext/setup/doctype/company/company.py:743 +#: erpnext/setup/doctype/company/company.py:744 +#: erpnext/setup/doctype/company/company.py:745 +msgid "Main" +msgstr "" + +#. Label of the main_cost_center (Link) field in DocType 'Cost Center +#. Allocation' +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json +msgid "Main Cost Center" +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:123 +msgid "Main Cost Center {0} cannot be entered in the child table" +msgstr "" + +#. Label of the main_item_code (Link) field in DocType 'Material Request Plan +#. Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "Main Item Code" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:138 +msgid "Maintain Asset" +msgstr "" + +#. Label of the is_stock_item (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Maintain Stock" +msgstr "" + +#. Label of the maintain_same_internal_transaction_rate (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Maintain same rate throughout internal Transaction" +msgstr "" + +#. Label of the maintain_same_sales_rate (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Maintain same rate throughout sales cycle" +msgstr "" + +#. Label of the maintain_same_rate (Check) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Maintain same rate throughout the purchase cycle" +msgstr "" + +#. Group in Asset's connections +#. Label of a Card Break in the Assets Workspace +#. Option for the 'Status' (Select) field in DocType 'Workstation' +#. Option for the 'Order Type' (Select) field in DocType 'Quotation' +#. Option for the 'Order Type' (Select) field in DocType 'Sales Order' +#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and +#. Batch Bundle' +#. Label of a Card Break in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:299 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/assets.json erpnext/workspace_sidebar/crm.json +msgid "Maintenance" +msgstr "" + +#. Label of the mntc_date (Date) field in DocType 'Maintenance Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Maintenance Date" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'Asset +#. Maintenance Log' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +msgid "Maintenance Details" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.js:50 +msgid "Maintenance Log" +msgstr "" + +#. Label of the maintenance_manager_name (Read Only) field in DocType 'Asset +#. Maintenance' +#. Label of the maintenance_manager_name (Read Only) field in DocType 'Asset +#. Maintenance Team' +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +msgid "Maintenance Manager Name" +msgstr "" + +#. Label of the maintenance_required (Check) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Maintenance Required" +msgstr "" + +#. Label of the maintenance_role (Link) field in DocType 'Maintenance Team +#. Member' +#: erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.json +msgid "Maintenance Role" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Name of a DocType +#. Label of the maintenance_schedule (Link) field in DocType 'Maintenance +#. Visit' +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:164 +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:81 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1166 +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/support.json +msgid "Maintenance Schedule" +msgstr "" + +#. Name of a DocType +#. Label of the maintenance_schedule_detail (Link) field in DocType +#. 'Maintenance Visit' +#. Label of the maintenance_schedule_detail (Data) field in DocType +#. 'Maintenance Visit Purpose' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +msgid "Maintenance Schedule Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +msgid "Maintenance Schedule Item" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:251 +msgid "Maintenance Schedule {0} exists against {1}" +msgstr "" + +#. Name of a report +#: erpnext/maintenance/report/maintenance_schedules/maintenance_schedules.json +msgid "Maintenance Schedules" +msgstr "" + +#. Label of the maintenance_status (Select) field in DocType 'Asset Maintenance +#. Log' +#. Label of the maintenance_status (Select) field in DocType 'Asset Maintenance +#. Task' +#. Label of the maintenance_status (Select) field in DocType 'Serial No' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Maintenance Status" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:59 +msgid "Maintenance Status has to be Cancelled or Completed to Submit" +msgstr "" + +#. Label of the maintenance_task (Data) field in DocType 'Asset Maintenance +#. Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Maintenance Task" +msgstr "" + +#. Label of the asset_maintenance_tasks (Table) field in DocType 'Asset +#. Maintenance' +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +msgid "Maintenance Tasks" +msgstr "" + +#. Label of the maintenance_team (Link) field in DocType 'Asset Maintenance' +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +msgid "Maintenance Team" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.json +msgid "Maintenance Team Member" +msgstr "" + +#. Label of the maintenance_team_members (Table) field in DocType 'Asset +#. Maintenance Team' +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +msgid "Maintenance Team Members" +msgstr "" + +#. Label of the maintenance_team_name (Data) field in DocType 'Asset +#. Maintenance Team' +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +msgid "Maintenance Team Name" +msgstr "" + +#. Label of the mntc_time (Time) field in DocType 'Maintenance Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Maintenance Time" +msgstr "" + +#. Label of the maintenance_type (Read Only) field in DocType 'Asset +#. Maintenance Log' +#. Label of the maintenance_type (Select) field in DocType 'Asset Maintenance +#. Task' +#. Label of the maintenance_type (Select) field in DocType 'Maintenance Visit' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Maintenance Type" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Name of a DocType +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:87 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1159 +#: erpnext/support/doctype/warranty_claim/warranty_claim.js:47 +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/support.json +msgid "Maintenance Visit" +msgstr "" + +#. Name of a DocType +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +msgid "Maintenance Visit Purpose" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +msgid "Maintenance start date can not be before delivery date for Serial No {0}" +msgstr "" + +#. Label of the maj_opt_subj (Text) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Major/Optional Subjects" +msgstr "" + +#. Label of the make (Data) field in DocType 'Vehicle' +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:264 +#: erpnext/manufacturing/doctype/job_card/job_card.js:479 +#: erpnext/manufacturing/doctype/work_order/work_order.js:851 +#: erpnext/manufacturing/doctype/work_order/work_order.js:885 +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Make" +msgstr "" + +#: erpnext/assets/doctype/asset/asset_list.js:32 +msgid "Make Asset Movement" +msgstr "" + +#. Label of the make_depreciation_entry (Button) field in DocType 'Depreciation +#. Schedule' +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +msgid "Make Depreciation Entry" +msgstr "" + +#. Label of the get_balance (Button) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Make Difference Entry" +msgstr "" + +#. Label of the make_payment_via_journal_entry (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Make Payment via Journal Entry" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:130 +msgid "Make Purchase / Work Order" +msgstr "" + +#: erpnext/templates/pages/order.html:27 +msgid "Make Purchase Invoice" +msgstr "" + +#: erpnext/templates/pages/rfq.html:19 +msgid "Make Quotation" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:328 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:128 +msgid "Make Return Entry" +msgstr "" + +#. Label of the make_sales_invoice (Check) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Make Sales Invoice" +msgstr "" + +#. Label of the make_serial_no_batch_from_work_order (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Make Serial No / Batch from Work Order" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:106 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256 +msgid "Make Stock Entry" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:368 +msgid "Make Subcontracting PO" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:427 +msgid "Make Transfer Entry" +msgstr "" + +#: erpnext/public/js/telephony.js:29 +msgid "Make a call" +msgstr "" + +#: erpnext/config/projects.py:34 +msgid "Make project from a template." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1119 +msgid "Make {0} Variant" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1121 +msgid "Make {0} Variants" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:195 +msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation." +msgstr "" + +#. Description of the 'With Operations' (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Manage cost of operations" +msgstr "" + +#. Description of the 'Enable tracking sales commissions' (Check) field in +#. DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Manage sales partner's and sales team's commissions" +msgstr "" + +#: erpnext/utilities/activation.py:97 +msgid "Manage your orders" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:506 +msgid "Management" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:20 +msgid "Manager" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:21 +msgid "Managing Director" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:101 +msgid "Mandatory Accounting Dimension" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:531 +msgid "Mandatory Field" +msgstr "" + +#. Label of the mandatory_for_bs (Check) field in DocType 'Accounting Dimension +#. Detail' +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Mandatory For Balance Sheet" +msgstr "" + +#. Label of the mandatory_for_pl (Check) field in DocType 'Accounting Dimension +#. Detail' +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Mandatory For Profit and Loss Account" +msgstr "" + +#: erpnext/selling/doctype/quotation/mapper.py:269 +msgid "Mandatory Missing" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:475 +msgid "Mandatory Purchase Order" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:497 +msgid "Mandatory Purchase Receipt" +msgstr "" + +#. Label of the conditional_mandatory_section (Section Break) field in DocType +#. 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Mandatory Section" +msgstr "" + +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Depreciation Schedule' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Finance Book' +#. Option for the 'How often should project be updated of Total Purchase Cost +#. ?' (Select) field in DocType 'Buying Settings' +#. Option for the '% Complete Method' (Select) field in DocType 'Project' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/projects/doctype/project/project.json +msgid "Manual" +msgstr "" + +#. Label of the manual_inspection (Check) field in DocType 'Quality Inspection' +#. Label of the manual_inspection (Check) field in DocType 'Quality Inspection +#. Reading' +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Manual Inspection" +msgstr "" + +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.js:36 +msgid "Manual entry cannot be created! Disable automatic entry for deferred accounting in accounts settings and try again" +msgstr "" + +#. Label of the manufacture_details (Section Break) field in DocType 'Purchase +#. Invoice Item' +#. Label of the manufacture_details (Section Break) field in DocType 'Purchase +#. Order Item' +#. Label of the manufacture_details (Section Break) field in DocType 'Supplier +#. Quotation Item' +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Option for the 'Default Material Request Type' (Select) field in DocType +#. 'Item' +#. Option for the 'Material Request Type' (Select) field in DocType 'Item +#. Reorder' +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#. Label of the manufacture_details (Section Break) field in DocType 'Material +#. Request Item' +#. Label of the manufacture_details (Section Break) field in DocType 'Purchase +#. Receipt Item' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#. Label of the manufacture_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#. Label of the manufacture_details (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:13 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/operation/operation_dashboard.py:7 +#: erpnext/projects/doctype/project/project_dashboard.py:17 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:89 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_dashboard.py:32 +#: erpnext/stock/doctype/item_reorder/item_reorder.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Manufacture" +msgstr "" + +#. Description of the 'Material Request' (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Manufacture against Material Request" +msgstr "" + +#. Label of a number card in the Manufacturing Workspace +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +msgid "Manufactured Items Value" +msgstr "" + +#. Label of the manufactured_qty (Float) field in DocType 'Job Card' +#. Label of the produced_qty (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:90 +msgid "Manufactured Qty" +msgstr "" + +#. Label of the manufacturer (Link) field in DocType 'Purchase Invoice Item' +#. Label of the manufacturer (Link) field in DocType 'Purchase Order Item' +#. Label of the manufacturer (Link) field in DocType 'Supplier Quotation Item' +#. Option for the 'Variant Based On' (Select) field in DocType 'Item' +#. Label of the manufacturer (Link) field in DocType 'Item Manufacturer' +#. Name of a DocType +#. Label of the manufacturer (Link) field in DocType 'Material Request Item' +#. Label of the manufacturer (Link) field in DocType 'Purchase Receipt Item' +#. Label of the manufacturer (Link) field in DocType 'Subcontracting Order +#. Item' +#. Label of the manufacturer (Link) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:110 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Manufacturer" +msgstr "" + +#. Label of the manufacturer_part_no (Data) field in DocType 'Purchase Invoice +#. Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Purchase Order +#. Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Supplier +#. Quotation Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Item +#. Manufacturer' +#. Label of the manufacturer_part_no (Data) field in DocType 'Material Request +#. Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Purchase Receipt +#. Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Subcontracting +#. Order Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:113 +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Manufacturer Part Number" +msgstr "" + +#: erpnext/public/js/controllers/buying.js:421 +msgid "Manufacturer Part Number {0} is invalid" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/manufacturer/manufacturer.json +msgid "Manufacturers used in Items" +msgstr "" + +#. Label of a Desktop Icon +#. Label of the work_order_details_section (Section Break) field in DocType +#. 'Production Plan Sub Assembly Item' +#. Name of a Workspace +#. Label of the manufacturing_section (Section Break) field in DocType +#. 'Company' +#. Label of the manufacturing_section (Section Break) field in DocType 'Batch' +#. Label of the manufacturing (Tab Break) field in DocType 'Item' +#. Label of the section_break_wuqi (Section Break) field in DocType 'Item Lead +#. Time' +#. Title of a Workspace Sidebar +#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:30 +#: erpnext/desktop_icon/manufacturing.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29 +#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:388 +#: erpnext/setup/setup_wizard/data/industry_type.txt:31 +#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/material_request/material_request_dashboard.py:18 +#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:21 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order_dashboard.py:13 +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Manufacturing" +msgstr "" + +#. Label of the semi_fg_bom (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Manufacturing BOM" +msgstr "" + +#. Label of the manufacturing_date (Date) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Manufacturing Date" +msgstr "" + +#. Name of a role +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/manufacturing/doctype/routing/routing.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Manufacturing Manager" +msgstr "" + +#. Label of the manufacturing_section_section (Section Break) field in DocType +#. 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Manufacturing Section" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Manufacturing Settings" +msgstr "" + +#. Title of the Module Onboarding 'Manufacturing Onboarding' +#: erpnext/manufacturing/module_onboarding/manufacturing_onboarding/manufacturing_onboarding.json +msgid "Manufacturing Setup" +msgstr "" + +#. Label of the manufacturing_time_in_mins (Int) field in DocType 'Item Lead +#. Time' +#. Label of the manufacturing_time_tab (Tab Break) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Manufacturing Time" +msgstr "" + +#. Label of the type_of_manufacturing (Select) field in DocType 'Production +#. Plan Sub Assembly Item' +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Manufacturing Type" +msgstr "" + +#. Name of a role +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/routing/routing.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/price_list/price_list.json +#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/doctype/warehouse_type/warehouse_type.json +msgid "Manufacturing User" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:106 +msgid "Mapping Subcontracting Inward Order ..." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:152 +msgid "Mapping Subcontracting Order ..." +msgstr "" + +#: erpnext/public/js/utils.js:1058 +msgid "Mapping {0} ..." +msgstr "" + +#. Label of the maps_to (Select) field in DocType 'Bank Statement Import Log +#. Column Map' +#: banking/src/pages/BankStatementImporter.tsx:177 +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Maps To" +msgstr "" + +#. Label of the margin (Section Break) field in DocType 'Pricing Rule' +#. Label of the margin (Section Break) field in DocType 'Project' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/projects/doctype/project/project.json +msgid "Margin" +msgstr "" + +#. Label of the margin_money (Currency) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Margin Money" +msgstr "" + +#. Label of the margin_rate_or_amount (Float) field in DocType 'POS Invoice +#. Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Pricing Rule' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Purchase +#. Invoice Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Sales Invoice +#. Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Purchase Order +#. Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Supplier +#. Quotation Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Quotation Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Sales Order +#. Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Delivery Note +#. Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Margin Rate or Amount" +msgstr "" + +#. Label of the margin_type (Select) field in DocType 'POS Invoice Item' +#. Label of the margin_type (Select) field in DocType 'Pricing Rule' +#. Label of the margin_type (Data) field in DocType 'Pricing Rule Detail' +#. Label of the margin_type (Select) field in DocType 'Purchase Invoice Item' +#. Label of the margin_type (Select) field in DocType 'Sales Invoice Item' +#. Label of the margin_type (Select) field in DocType 'Purchase Order Item' +#. Label of the margin_type (Select) field in DocType 'Supplier Quotation Item' +#. Label of the margin_type (Select) field in DocType 'Quotation Item' +#. Label of the margin_type (Select) field in DocType 'Sales Order Item' +#. Label of the margin_type (Select) field in DocType 'Delivery Note Item' +#. Label of the margin_type (Select) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Margin Type" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:33 +msgid "Margin View" +msgstr "" + +#. Label of the marital_status (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Marital Status" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:39 +#: erpnext/public/js/templates/crm_activities.html:123 +msgid "Mark As Closed" +msgstr "" + +#. Description of the 'Is Internal Customer' (Check) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Mark if this customer represents an internal company. Enables inter-company transactions." +msgstr "" + +#. Label of the market_segment (Link) field in DocType 'Lead' +#. Name of a DocType +#. Label of the market_segment (Data) field in DocType 'Market Segment' +#. Label of the market_segment (Link) field in DocType 'Opportunity' +#. Label of the market_segment (Link) field in DocType 'Prospect' +#. Label of the market_segment (Link) field in DocType 'Customer' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/market_segment/market_segment.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Market Segment" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:458 +msgid "Marketing" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196 +msgid "Marketing Expenses" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:23 +msgid "Marketing Specialist" +msgstr "" + +#. Option for the 'Marital Status' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Married" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:7 +msgid "Mass Mailing" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Master Production Schedule" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +msgid "Master Production Schedule Item" +msgstr "" + +#. Label of a Card Break in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "Masters" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:302 +msgid "Match" +msgstr "" + +#: banking/src/pages/BankReconciliation.tsx:116 +msgid "Match and Reconcile" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:62 +msgid "Match or Create" +msgstr "" + +#. Label of the transfer_match_days (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Match transfers within 'N' days" +msgstr "" + +#. Option for the 'Reconciliation Type' (Select) field in DocType 'Bank +#. Transaction Payments' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:73 +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +msgid "Matched" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:57 +msgid "Matched Field" +msgstr "" + +#. Label of the matched_transaction_rule (Link) field in DocType 'Bank +#. Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Matched Transaction Rule" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:368 +msgid "Matched by rule" +msgstr "" + +#: banking/src/components/features/Settings/SettingsDialogContent.tsx:32 +msgid "Matching Rules" +msgstr "" + +#: erpnext/projects/doctype/project/project_dashboard.py:14 +msgid "Material" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:876 +msgid "Material Consumption" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Material Consumption for Manufacture" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:683 +msgid "Material Consumption is not set in Manufacturing Settings." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Option for the 'Default Material Request Type' (Select) field in DocType +#. 'Item' +#. Option for the 'Material Request Type' (Select) field in DocType 'Item +#. Reorder' +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:71 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_reorder/item_reorder.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Material Issue" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Material Planning" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:77 +#: erpnext/stock/doctype/material_request/material_request.js:188 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Material Receipt" +msgstr "" + +#. Label of the material_request (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the material_request (Link) field in DocType 'Purchase Order Item' +#. Label of the material_request (Link) field in DocType 'Request for Quotation +#. Item' +#. Label of the material_request (Link) field in DocType 'Supplier Quotation +#. Item' +#. Label of a Link in the Buying Workspace +#. Option for the 'Get Items From' (Select) field in DocType 'Production Plan' +#. Label of the material_request (Link) field in DocType 'Production Plan Item' +#. Label of the material_request (Link) field in DocType 'Production Plan +#. Material Request' +#. Option for the 'Manufacturing Type' (Select) field in DocType 'Production +#. Plan Sub Assembly Item' +#. Label of the material_request (Link) field in DocType 'Work Order' +#. Label of the material_request (Link) field in DocType 'Sales Order Item' +#. Label of the material_request (Link) field in DocType 'Delivery Note Item' +#. Name of a DocType +#. Label of the material_request (Link) field in DocType 'Pick List' +#. Label of the material_request (Link) field in DocType 'Pick List Item' +#. Label of the material_request (Link) field in DocType 'Purchase Receipt +#. Item' +#. Label of the material_request (Link) field in DocType 'Stock Entry Detail' +#. Label of a Link in the Stock Workspace +#. Label of the material_request (Link) field in DocType 'Subcontracting Order +#. Item' +#. Label of the material_request (Link) field in DocType 'Subcontracting Order +#. Service Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/buying_settings/buying_settings.js:45 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:493 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:361 +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:56 +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:186 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/manufacturing/doctype/job_card/job_card.js:216 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1130 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:37 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request.py:437 +#: erpnext/stock/doctype/material_request/material_request.py:454 +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:304 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:460 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:153 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/stock.json +msgid "Material Request" +msgstr "" + +#. Label of the material_request_date (Date) field in DocType 'Production Plan +#. Material Request' +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json +msgid "Material Request Date" +msgstr "" + +#. Label of the material_request_detail (Section Break) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Material Request Detail" +msgstr "" + +#. Label of the material_request_item (Data) field in DocType 'Purchase Invoice +#. Item' +#. Label of the material_request_item (Data) field in DocType 'Purchase Order +#. Item' +#. Label of the material_request_item (Data) field in DocType 'Request for +#. Quotation Item' +#. Label of the material_request_item (Data) field in DocType 'Supplier +#. Quotation Item' +#. Label of the material_request_item (Data) field in DocType 'Work Order' +#. Label of the material_request_item (Data) field in DocType 'Sales Order +#. Item' +#. Label of the material_request_item (Data) field in DocType 'Delivery Note +#. Item' +#. Name of a DocType +#. Label of the material_request_item (Data) field in DocType 'Pick List Item' +#. Label of the material_request_item (Data) field in DocType 'Purchase Receipt +#. Item' +#. Label of the material_request_item (Link) field in DocType 'Stock Entry +#. Detail' +#. Label of the material_request_item (Data) field in DocType 'Subcontracting +#. Order Item' +#. Label of the material_request_item (Data) field in DocType 'Subcontracting +#. Order Service Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +msgid "Material Request Item" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +msgid "Material Request No" +msgstr "" + +#. Name of a DocType +#. Label of the material_request_plan_item (Data) field in DocType 'Material +#. Request Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Material Request Plan Item" +msgstr "" + +#. Label of the material_request_type (Select) field in DocType 'Item Reorder' +#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:1 +#: erpnext/stock/doctype/item_reorder/item_reorder.json +msgid "Material Request Type" +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:155 +msgid "Material Request already created for the ordered quantity" +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:925 +msgid "Material Request not created, as quantity for Raw Materials already available." +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:149 +msgid "Material Request of maximum {0} can be made for Item {1} against Sales Order {2}" +msgstr "" + +#. Description of the 'Material Request' (Link) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Material Request used to make this Stock Entry" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1306 +msgid "Material Request {0} is cancelled or stopped" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1533 +msgid "Material Request {0} submitted." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Material Requested" +msgstr "" + +#. Label of the material_requests (Table) field in DocType 'Master Production +#. Schedule' +#. Label of the material_requests (Table) field in DocType 'Production Plan' +#: erpnext/accounts/doctype/budget/budget.py:636 +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Material Requests" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sales_order_planning.py:196 +msgid "Material Requests Required" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Name of a report +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/report/material_requests_for_which_supplier_quotations_are_not_created/material_requests_for_which_supplier_quotations_are_not_created.json +msgid "Material Requests for which Supplier Quotations are not created" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +msgid "Material Requirements Planning" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.json +msgid "Material Requirements Planning Report" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:15 +msgid "Material Returned from WIP" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Option for the 'Default Material Request Type' (Select) field in DocType +#. 'Item' +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#. Option for the 'Purpose' (Select) field in DocType 'Pick List' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/manufacturing/doctype/job_card/job_card.js:224 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:83 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/material_request/material_request.js:166 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Material Transfer" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:172 +msgid "Material Transfer (In Transit)" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Pick List' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:108 +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Material Transfer for Manufacture" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Job Card' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Order' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Material Transferred" +msgstr "" + +#. Option for the 'Based On' (Select) field in DocType 'BOM' +#. Option for the 'Backflush Raw Materials Based On' (Select) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Material Transferred for Manufacture" +msgstr "" + +#. Label of the material_transferred_for_manufacturing (Float) field in DocType +#. 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Material Transferred for Manufacturing" +msgstr "" + +#. Option for the 'Backflush raw materials of subcontract based on' (Select) +#. field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Material Transferred for Subcontract" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:151 +msgid "Material from Customer" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:643 +msgid "Material to Supplier" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Materials To Be Transferred" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1550 +msgid "Materials are already received against the {0} {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:189 +#: erpnext/manufacturing/doctype/job_card/job_card.py:903 +msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" + +#. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' +#. Label of the max_amount (Currency) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the max_amount (Currency) field in DocType 'Promotional Scheme +#. Product Discount' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Max Amount" +msgstr "" + +#. Label of the max_amt (Currency) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Max Amt" +msgstr "" + +#. Label of the max_discount (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Max Discount (%)" +msgstr "" + +#. Label of the max_grade (Percent) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the max_grade (Percent) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Max Grade" +msgstr "" + +#. Label of the max_producible_qty (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Max Producible Qty" +msgstr "" + +#. Label of the max_qty (Float) field in DocType 'Promotional Scheme Price +#. Discount' +#. Label of the max_qty (Float) field in DocType 'Promotional Scheme Product +#. Discount' +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Max Qty" +msgstr "" + +#. Label of the max_qty (Float) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Max Qty (As Per Stock UOM)" +msgstr "" + +#. Label of the sample_quantity (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Max Sample Quantity" +msgstr "" + +#. Label of the max_score (Float) field in DocType 'Supplier Scorecard +#. Criteria' +#. Label of the max_score (Float) field in DocType 'Supplier Scorecard Scoring +#. Criteria' +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Max Score" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:292 +msgid "Max discount allowed for item: {0} is {1}%" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1052 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1059 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1082 +#: erpnext/stock/doctype/pick_list/pick_list.js:208 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:399 +msgid "Max: {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:63 +msgid "Maximum Amount" +msgstr "" + +#. Label of the maximum_invoice_amount (Currency) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Maximum Invoice Amount" +msgstr "" + +#. Label of the maximum_net_rate (Float) field in DocType 'Item Tax' +#: erpnext/stock/doctype/item_tax/item_tax.json +msgid "Maximum Net Rate" +msgstr "" + +#. Label of the maximum_payment_amount (Currency) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Maximum Payment Amount" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:82 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:151 +msgid "Maximum Producible Items" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:1171 +msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:1160 +msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}." +msgstr "" + +#. Label of the maximum_use (Int) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Maximum Use" +msgstr "" + +#. Label of the max_value (Float) field in DocType 'Item Quality Inspection +#. Parameter' +#. Label of the max_value (Float) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Maximum Value" +msgstr "" + +#. Description of the 'Max Discount (%)' (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +#, python-format +msgid "Maximum discount % allowed when selling this item. Eg: if set to 20%, a discount greater than 20% cannot be applied in sales transactions." +msgstr "" + +#: erpnext/controllers/selling_controller.py:280 +msgid "Maximum discount for Item {0} is {1}%" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:120 +msgid "Maximum quantity scanned for item {0}." +msgstr "" + +#. Description of the 'Max Sample Quantity' (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Maximum sample quantity that can be retained" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Megacoulomb" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Megagram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Megahertz" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Megajoule" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Megawatt" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2056 +msgid "Mention Valuation Rate in the Item master." +msgstr "" + +#. Description of the 'Accounts' (Table) field in DocType 'Customer Group' +#. Description of the 'Accounts' (Table) field in DocType 'Supplier Group' +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Mention if non-standard receivable account applicable" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:169 +msgid "Merge" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:55 +msgid "Merge Account" +msgstr "" + +#. Label of the merge_invoices_based_on (Select) field in DocType 'POS Invoice +#. Merge Log' +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +msgid "Merge Invoices Based On" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:18 +msgid "Merge Progress" +msgstr "" + +#. Label of the merge_similar_account_heads (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Merge similar Account Heads" +msgstr "" + +#: erpnext/public/js/utils.js:1090 +msgid "Merge taxes from multiple documents" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:141 +msgid "Merge with Existing Account" +msgstr "" + +#. Label of the merged (Check) field in DocType 'Ledger Merge Accounts' +#: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json +msgid "Merged" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:616 +msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:16 +msgid "Merging {0} of {1}" +msgstr "" + +#. Label of the message_for_supplier (Text Editor) field in DocType 'Request +#. for Quotation' +#. Label of the mfs_html (Code) field in DocType 'Request for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Message for Supplier" +msgstr "" + +#. Label of the message_to_show (Data) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Message to show" +msgstr "" + +#. Description of the 'Message' (Text) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Message will be sent to the users to get their status on the Project" +msgstr "" + +#. Description of the 'Message' (Text) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Messages greater than 160 characters will be split into multiple messages" +msgstr "" + +#: erpnext/setup/install.py:128 +msgid "Messaging CRM Campaign" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Meter Of Water" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Meter/Second" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:559 +msgid "Method {0} is not allowed to be run on a Job Card." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Microbar" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Microgram" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Microgram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Micrometer" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Microsecond" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:310 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:427 +msgid "Middle Income" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Mile" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Mile (Nautical)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Mile/Hour" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Mile/Minute" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Mile/Second" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milibar" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milliampere" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millicoulomb" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milligram" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milligram/Cubic Centimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milligram/Cubic Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milligram/Cubic Millimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milligram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millihertz" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millilitre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millimeter Of Mercury" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millimeter Of Water" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millisecond" +msgstr "" + +#. Label of the min_amount (Currency) field in DocType 'Bank Transaction Rule' +#. Label of the min_amount (Currency) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the min_amount (Currency) field in DocType 'Promotional Scheme +#. Product Discount' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Min Amount" +msgstr "" + +#. Label of the min_amt (Currency) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Min Amt" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:228 +msgid "Min Amt can not be greater than Max Amt" +msgstr "" + +#. Label of the min_grade (Percent) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the min_grade (Percent) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Min Grade" +msgstr "" + +#. Label of the min_order_qty (Float) field in DocType 'Material Request Item' +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1063 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Min Order Qty" +msgstr "" + +#. Label of the min_qty (Float) field in DocType 'Promotional Scheme Price +#. Discount' +#. Label of the min_qty (Float) field in DocType 'Promotional Scheme Product +#. Discount' +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Min Qty" +msgstr "" + +#. Label of the min_qty (Float) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Min Qty (As Per Stock UOM)" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:224 +msgid "Min Qty can not be greater than Max Qty" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:238 +msgid "Min Qty should be greater than Recurse Over Qty" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1282 +msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:62 +msgid "Min amount cannot be greater than max amount." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:58 +msgid "Minimum Amount" +msgstr "" + +#. Label of the minimum_invoice_amount (Currency) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Minimum Invoice Amount" +msgstr "" + +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js:20 +msgid "Minimum Lead Age (Days)" +msgstr "" + +#. Label of the minimum_net_rate (Float) field in DocType 'Item Tax' +#: erpnext/stock/doctype/item_tax/item_tax.json +msgid "Minimum Net Rate" +msgstr "" + +#. Label of the min_order_qty (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Minimum Order Qty" +msgstr "" + +#. Label of the min_order_qty (Float) field in DocType 'Material Request Plan +#. Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "Minimum Order Quantity" +msgstr "" + +#. Label of the minimum_payment_amount (Currency) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Minimum Payment Amount" +msgstr "" + +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:96 +msgid "Minimum Qty" +msgstr "" + +#. Label of the min_spent (Currency) field in DocType 'Loyalty Program +#. Collection' +#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json +msgid "Minimum Total Spent" +msgstr "" + +#. Label of the min_value (Float) field in DocType 'Item Quality Inspection +#. Parameter' +#. Label of the min_value (Float) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Minimum Value" +msgstr "" + +#. Description of the 'Minimum Order Qty' (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Minimum quantity should be as per Stock UOM\n\n" +msgstr "" + +#. Description of the 'Safety Stock' (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Minimum stock level to maintain as a buffer. Used to calculate recommended reorder level: Reorder Level = Safety Stock + (Average Daily Consumption × Lead Time)." +msgstr "" + +#. Label of the minute (Text Editor) field in DocType 'Quality Meeting Minutes' +#. Name of a UOM +#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Minute" +msgstr "" + +#. Label of the minutes (Table) field in DocType 'Quality Meeting' +#: erpnext/quality_management/doctype/quality_meeting/quality_meeting.json +msgid "Minutes" +msgstr "" + +#. Label of the section_break_19 (Section Break) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Miscellaneous" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229 +msgid "Miscellaneous Expenses" +msgstr "" + +#: erpnext/controllers/buying_controller.py:729 +msgid "Mismatch" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +msgid "Missing" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97 +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:208 +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 +#: erpnext/assets/doctype/asset_category/asset_category.py:126 +msgid "Missing Account" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:191 +msgid "Missing Accounts" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:37 +msgid "Missing Asset" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:187 +#: erpnext/assets/doctype/asset/asset.py:377 +msgid "Missing Cost Center" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1148 +msgid "Missing Default in Company" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:929 +msgid "Missing Dependency" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:44 +msgid "Missing Filters" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:422 +msgid "Missing Finance Book" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +msgid "Missing Finished Good" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:311 +msgid "Missing Formula" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +msgid "Missing Item" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:583 +msgid "Missing Parameter" +msgstr "" + +#: erpnext/utilities/__init__.py:57 +msgid "Missing Payments App" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +msgid "Missing Required Filter" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:297 +msgid "Missing Serial No Bundle" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:172 +msgid "Missing Warehouse" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:156 +msgid "Missing account configuration for company {0}." +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:156 +msgid "Missing email template for dispatch. Please set one in Delivery Settings." +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +msgid "Missing required filter: {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +msgid "Missing value" +msgstr "" + +#. Label of the mixed_conditions (Check) field in DocType 'Pricing Rule' +#. Label of the mixed_conditions (Check) field in DocType 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Mixed Conditions" +msgstr "" + +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:216 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:248 +#: erpnext/accounts/report/purchase_register/purchase_register.py:203 +#: erpnext/accounts/report/sales_register/sales_register.py:224 +msgid "Mode Of Payment" +msgstr "" + +#. Label of the mode_of_payment (Link) field in DocType 'Cashier Closing +#. Payments' +#. Label of the mode_of_payment (Link) field in DocType 'Journal Entry' +#. Name of a DocType +#. Label of the mode_of_payment (Data) field in DocType 'Mode of Payment' +#. Label of the mode_of_payment (Link) field in DocType 'Overdue Payment' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Entry' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Order +#. Reference' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Request' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Schedule' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Term' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Terms Template +#. Detail' +#. Label of the mode_of_payment (Link) field in DocType 'POS Closing Entry +#. Detail' +#. Label of the mode_of_payment (Link) field in DocType 'POS Opening Entry +#. Detail' +#. Label of the mode_of_payment (Link) field in DocType 'POS Payment Method' +#. Label of the mode_of_payment (Link) field in DocType 'Purchase Invoice' +#. Label of the mode_of_payment (Link) field in DocType 'Sales Invoice Payment' +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:234 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:433 +#: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.js:126 +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:40 +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:244 +#: erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.json +#: erpnext/accounts/doctype/pos_payment_method/pos_payment_method.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:47 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:35 +#: erpnext/accounts/report/purchase_register/purchase_register.js:40 +#: erpnext/accounts/report/sales_register/sales_register.js:40 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/selling/page/point_of_sale/pos_controller.js:33 +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Mode of Payment" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json +msgid "Mode of Payment Account" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:35 +msgid "Mode of Payments" +msgstr "" + +#. Label of the model (Data) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Model" +msgstr "" + +#. Label of the section_break_11 (Section Break) field in DocType 'POS Closing +#. Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "Modes of Payment" +msgstr "" + +#: erpnext/templates/pages/projects.html:49 +#: erpnext/templates/pages/projects.html:70 +msgid "Modified On" +msgstr "" + +#. Label of the module (Link) field in DocType 'Financial Report Template' +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +msgid "Module (for Export)" +msgstr "" + +#. Label of the monitor_for_last_x_days (Int) field in DocType 'Ledger Health +#. Monitor' +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +msgid "Monitor for Last 'X' days" +msgstr "" + +#. Label of the frequency (Select) field in DocType 'Quality Goal' +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +msgid "Monitoring Frequency" +msgstr "" + +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment +#. Schedule' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Schedule' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Term' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Term' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Terms +#. Template Detail' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Terms Template Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Month(s) after the end of the invoice month" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:215 +msgid "Monthly Completed Work Orders" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:69 +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/selling.json +msgid "Monthly Distribution" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.json +msgid "Monthly Distribution Percentage" +msgstr "" + +#. Label of the percentages (Table) field in DocType 'Monthly Distribution' +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +msgid "Monthly Distribution Percentages" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:244 +msgid "Monthly Quality Inspections" +msgstr "" + +#. Option for the 'Subscription Price Based On' (Select) field in DocType +#. 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Monthly Rate" +msgstr "" + +#. Label of the monthly_sales_target (Currency) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Monthly Sales Target" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:198 +msgid "Monthly Total Work Orders" +msgstr "" + +#. Option for the 'Book Deferred entries based on' (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Months" +msgstr "" + +#. Description of the 'Is Short/Long Year' (Check) field in DocType 'Fiscal +#. Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "More/Less than 12 months." +msgstr "" + +#. Description of the 'Hide Customer's Tax ID from sales transactions' (Check) +#. field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Most Customers have a unique Tax ID that is fetched into selling transactions. Enable this setting if you do not want Customer Tax IDs to appear in sales transactions." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:32 +msgid "Motion Picture & Video" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:216 +msgid "Move Item" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:239 +msgid "Move Stock" +msgstr "" + +#: erpnext/templates/includes/macros.html:169 +msgid "Move to Cart" +msgstr "" + +#: erpnext/assets/doctype/asset/asset_dashboard.py:7 +msgid "Movement" +msgstr "" + +#. Option for the 'Default Stock Valuation Method' (Select) field in DocType +#. 'Company' +#. Option for the 'Valuation Method' (Select) field in DocType 'Item' +#. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock +#. Settings' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Moving Average" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:82 +msgid "Moving up in tree ..." +msgstr "" + +#. Label of the multi_currency (Check) field in DocType 'Journal Entry' +#. Label of the multi_currency (Check) field in DocType 'Journal Entry +#. Template' +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Multi Currency" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:42 +msgid "Multi-level BOM Creator" +msgstr "" + +#. Option for the 'Bank Entry Type' (Select) field in DocType 'Bank Transaction +#. Rule' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Multiple Accounts" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:283 +msgid "Multiple Accounts (Journal Template)" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:440 +msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 +msgid "Multiple POS Opening Entry" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:345 +msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" + +#. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty +#. Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Multiple Tier Program" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:259 +msgid "Multiple Variants" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:244 +msgid "Multiple company fields available: {0}. Please select manually." +msgstr "" + +#: erpnext/accounts/services/base_gl_composer.py:33 +msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +msgid "Multiple items cannot be marked as finished item" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:33 +msgid "Music" +msgstr "" + +#. Label of the must_be_whole_number (Check) field in DocType 'UOM' +#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/setup/doctype/uom/uom.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 +#: erpnext/utilities/transaction_base.py:630 +msgid "Must be Whole Number" +msgstr "" + +#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Bank +#. Statement Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Must be a publicly accessible Google Sheets URL and adding Bank Account column is necessary for importing via Google Sheets" +msgstr "" + +#. Label of the mute_email (Check) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Mute Email" +msgstr "" + +#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "N/A" +msgstr "" + +#. Label of the name_and_employee_id (Section Break) field in DocType 'Sales +#. Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Name and Employee ID" +msgstr "" + +#. Label of the name_of_beneficiary (Data) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Name of Beneficiary" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:121 +msgid "Name of new Account. Note: Please don't create accounts for Customers and Suppliers" +msgstr "" + +#. Description of the 'Distribution Name' (Data) field in DocType 'Monthly +#. Distribution' +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +msgid "Name of the Monthly Distribution" +msgstr "" + +#. Label of the named_place (Data) field in DocType 'Purchase Invoice' +#. Label of the named_place (Data) field in DocType 'Sales Invoice' +#. Label of the named_place (Data) field in DocType 'Purchase Order' +#. Label of the named_place (Data) field in DocType 'Request for Quotation' +#. Label of the named_place (Data) field in DocType 'Supplier Quotation' +#. Label of the named_place (Data) field in DocType 'Quotation' +#. Label of the named_place (Data) field in DocType 'Sales Order' +#. Label of the named_place (Data) field in DocType 'Delivery Note' +#. Label of the named_place (Data) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Named Place" +msgstr "" + +#. Label of the naming_series_prefix (Data) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Naming Series Prefix" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:95 +msgid "Naming Series is mandatory" +msgstr "" + +#. Label of the naming_series_details (Small Text) field in DocType 'Buying +#. Settings' +#. Label of the naming_series_details (Small Text) field in DocType 'Selling +#. Settings' +#. Label of the naming_series_details (Small Text) field in DocType 'Stock +#. Settings' +#. Label of the naming_series_preview (Small Text) field in DocType 'Stock +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Naming Series options" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:196 +msgid "Naming Series updated" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Nanocoulomb" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Nanogram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Nanohertz" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Nanometer" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Nanosecond" +msgstr "" + +#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Natural Gas" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:3 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:439 +msgid "Needs Analysis" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/negative_batch_report/negative_batch_report.json +msgid "Negative Batch Report" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +msgid "Negative Quantity is not allowed" +msgstr "" + +#. Label of the negative_stock_section (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Negative Stock" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 +#: erpnext/stock/serial_batch_bundle.py:1558 +msgid "Negative Stock Error" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +msgid "Negative Valuation Rate is not allowed" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:8 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:444 +msgid "Negotiation/Review" +msgstr "" + +#. Label of the net_amount (Currency) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the net_amount (Float) field in DocType 'Cashier Closing' +#. Label of the net_amount (Currency) field in DocType 'POS Invoice Item' +#. Label of the net_amount (Currency) field in DocType 'Purchase Invoice Item' +#. Label of the net_amount (Currency) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the net_amount (Currency) field in DocType 'Sales Invoice Item' +#. Label of the net_amount (Currency) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the net_amount (Currency) field in DocType 'Purchase Order Item' +#. Label of the net_amount (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the net_amount (Currency) field in DocType 'Quotation Item' +#. Label of the net_amount (Currency) field in DocType 'Sales Order Item' +#. Label of the net_amount (Currency) field in DocType 'Delivery Note Item' +#. Label of the net_amount (Currency) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Net Amount" +msgstr "" + +#. Label of the base_net_amount (Currency) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the base_net_amount (Currency) field in DocType 'POS Invoice Item' +#. Label of the base_net_amount (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the base_net_amount (Currency) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the base_net_amount (Currency) field in DocType 'Sales Invoice +#. Item' +#. Label of the base_net_amount (Currency) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the base_net_amount (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the base_net_amount (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the base_net_amount (Currency) field in DocType 'Quotation Item' +#. Label of the base_net_amount (Currency) field in DocType 'Sales Order Item' +#. Label of the base_net_amount (Currency) field in DocType 'Delivery Note +#. Item' +#. Label of the base_net_amount (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Net Amount (Company Currency)" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +msgid "Net Asset value as on" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:186 +msgid "Net Cash from Financing" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:179 +msgid "Net Cash from Investing" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:167 +msgid "Net Cash from Operations" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:172 +msgid "Net Change in Accounts Payable" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:171 +msgid "Net Change in Accounts Receivable" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:138 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:257 +msgid "Net Change in Cash" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:188 +msgid "Net Change in Equity" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:181 +msgid "Net Change in Fixed Asset" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:173 +msgid "Net Change in Inventory" +msgstr "" + +#. Label of the hour_rate (Currency) field in DocType 'Workstation' +#. Label of the hour_rate (Currency) field in DocType 'Workstation Type' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +msgid "Net Hour Rate" +msgstr "" + +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +msgid "Net Profit" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:174 +msgid "Net Profit Ratio" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +msgid "Net Profit/Loss" +msgstr "" + +#. Label of the net_purchase_amount (Currency) field in DocType 'Asset' +#. Label of the net_purchase_amount (Currency) field in DocType 'Asset +#. Depreciation Schedule' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:436 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:497 +msgid "Net Purchase Amount" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:453 +msgid "Net Purchase Amount is mandatory" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:563 +msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:387 +msgid "Net Purchase Amount {0} cannot be depreciated over {1} cycles." +msgstr "" + +#. Label of the net_rate (Currency) field in DocType 'POS Invoice Item' +#. Label of the net_rate (Currency) field in DocType 'Purchase Invoice Item' +#. Label of the net_rate (Currency) field in DocType 'Sales Invoice Item' +#. Label of the net_rate (Currency) field in DocType 'Purchase Order Item' +#. Label of the net_rate (Currency) field in DocType 'Supplier Quotation Item' +#. Label of the net_rate (Currency) field in DocType 'Quotation Item' +#. Label of the net_rate (Currency) field in DocType 'Sales Order Item' +#. Label of the net_rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the net_rate (Currency) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Net Rate" +msgstr "" + +#. Label of the base_net_rate (Currency) field in DocType 'POS Invoice Item' +#. Label of the base_net_rate (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the base_net_rate (Currency) field in DocType 'Sales Invoice Item' +#. Label of the base_net_rate (Currency) field in DocType 'Purchase Order Item' +#. Label of the base_net_rate (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the base_net_rate (Currency) field in DocType 'Quotation Item' +#. Label of the base_net_rate (Currency) field in DocType 'Sales Order Item' +#. Label of the base_net_rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the base_net_rate (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Net Rate (Company Currency)" +msgstr "" + +#. Label of the net_total (Currency) field in DocType 'POS Closing Entry' +#. Label of the net_total (Currency) field in DocType 'POS Invoice' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType 'POS +#. Invoice' +#. Option for the 'Apply Discount On' (Select) field in DocType 'POS Profile' +#. Option for the 'Apply Discount On' (Select) field in DocType 'Pricing Rule' +#. Label of the net_total (Currency) field in DocType 'Purchase Invoice' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Invoice' +#. Label of the net_total (Currency) field in DocType 'Sales Invoice' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Sales Invoice' +#. Option for the 'Calculate Based On' (Select) field in DocType 'Shipping +#. Rule' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Subscription' +#. Option for the 'Deduct Tax On Basis' (Select) field in DocType 'Tax +#. Withholding Category' +#. Label of the net_total (Currency) field in DocType 'Purchase Order' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Order' +#. Label of the net_total (Currency) field in DocType 'Supplier Quotation' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Supplier Quotation' +#. Label of the net_total (Currency) field in DocType 'Quotation' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Quotation' +#. Label of the net_total (Currency) field in DocType 'Sales Order' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Sales Order' +#. Label of the net_total (Currency) field in DocType 'Delivery Note' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Delivery Note' +#. Label of the net_total (Currency) field in DocType 'Purchase Receipt' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:19 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +#: erpnext/accounts/report/purchase_register/purchase_register.py:255 +#: erpnext/accounts/report/sales_register/sales_register.py:285 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:100 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:528 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:532 +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:161 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/templates/includes/order/order_taxes.html:5 +msgid "Net Total" +msgstr "" + +#. Label of the base_net_total (Currency) field in DocType 'POS Invoice' +#. Label of the base_net_total (Currency) field in DocType 'Purchase Invoice' +#. Label of the base_net_total (Currency) field in DocType 'Sales Invoice' +#. Label of the base_net_total (Currency) field in DocType 'Purchase Order' +#. Label of the base_net_total (Currency) field in DocType 'Supplier Quotation' +#. Label of the base_net_total (Currency) field in DocType 'Quotation' +#. Label of the base_net_total (Currency) field in DocType 'Sales Order' +#. Label of the base_net_total (Currency) field in DocType 'Delivery Note' +#. Label of the base_net_total (Currency) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Net Total (Company Currency)" +msgstr "" + +#. Option for the 'Calculate Based On' (Select) field in DocType 'Shipping +#. Rule' +#. Label of the net_weight_pkg (Float) field in DocType 'Packing Slip' +#. Label of the net_weight (Float) field in DocType 'Packing Slip Item' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +msgid "Net Weight" +msgstr "" + +#. Label of the net_weight_uom (Link) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Net Weight UOM" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:75 +#: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:82 +msgid "Net total calculation precision loss" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:119 +msgid "New Account Name" +msgstr "" + +#. Label of the new_asset_value (Currency) field in DocType 'Asset Value +#. Adjustment' +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +msgid "New Asset Value" +msgstr "" + +#: erpnext/assets/dashboard_fixtures.py:169 +msgid "New Assets (This Year)" +msgstr "" + +#. Label of the new_bom (Link) field in DocType 'BOM Update Log' +#. Label of the new_bom (Link) field in DocType 'BOM Update Tool' +#: erpnext/manufacturing/doctype/bom/bom_tree.js:62 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "New BOM" +msgstr "" + +#. Label of the new_balance_in_account_currency (Currency) field in DocType +#. 'Exchange Rate Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "New Balance In Account Currency" +msgstr "" + +#. Label of the new_balance_in_base_currency (Currency) field in DocType +#. 'Exchange Rate Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "New Balance In Base Currency" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:169 +msgid "New Batch ID (Optional)" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:163 +msgid "New Batch Qty" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:108 +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:18 +#: erpnext/setup/doctype/company/company_tree.js:23 +msgid "New Company" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:26 +msgid "New Cost Center Name" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:30 +msgid "New Customer Revenue" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:15 +msgid "New Customers" +msgstr "" + +#: erpnext/setup/doctype/department/department_tree.js:18 +msgid "New Department" +msgstr "" + +#: erpnext/setup/doctype/employee/employee_tree.js:29 +msgid "New Employee" +msgstr "" + +#. Label of the new_exchange_rate (Float) field in DocType 'Exchange Rate +#. Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "New Exchange Rate" +msgstr "" + +#. Label of the expenses_booked (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Expenses" +msgstr "" + +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:1 +msgid "New Fiscal Year - {0}" +msgstr "" + +#. Label of the income (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Income" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +msgid "New Invoice" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:337 +msgid "New Journal Entry will be posted for the difference amount. The Posting Date can be modified." +msgstr "" + +#. Label of a number card in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "New Lead (Last 1 Month)" +msgstr "" + +#: erpnext/assets/doctype/location/location_tree.js:23 +msgid "New Location" +msgstr "" + +#: erpnext/public/js/templates/crm_notes.html:7 +msgid "New Note" +msgstr "" + +#. Label of a number card in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "New Opportunity (Last 1 Month)" +msgstr "" + +#. Label of the purchase_invoice (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Purchase Invoice" +msgstr "" + +#. Label of the purchase_order (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Purchase Orders" +msgstr "" + +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure_tree.js:24 +msgid "New Quality Procedure" +msgstr "" + +#. Label of the new_quotations (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Quotations" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:68 +msgid "New Rule" +msgstr "" + +#. Label of the sales_invoice (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Sales Invoice" +msgstr "" + +#. Label of the sales_order (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Sales Orders" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person_tree.js:3 +msgid "New Sales Person Name" +msgstr "" + +#: erpnext/stock/doctype/serial_no/serial_no.py:70 +msgid "New Serial No cannot have Warehouse. Warehouse must be set by Stock Entry or Purchase Receipt" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:8 +#: erpnext/public/js/utils/crm_activities.js:69 +msgid "New Task" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:247 +msgid "New Version" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse_tree.js:16 +msgid "New Warehouse Name" +msgstr "" + +#. Label of the new_workplace (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "New Workplace" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:405 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +msgstr "" + +#. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in +#. DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 +msgid "New release date should be in the future" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.js:92 +msgid "New revised budget created successfully" +msgstr "" + +#: erpnext/templates/pages/projects.html:37 +msgid "New task" +msgstr "" + +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +msgid "New {0} pricing rules are created" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:34 +msgid "Newspaper Publishers" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Newton" +msgstr "" + +#. Label of the next_billing_period_end (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Next Billing Period End" +msgstr "" + +#. Label of the next_billing_period_start (Date) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Next Billing Period Start" +msgstr "" + +#. Label of the next_depreciation_date (Date) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Next Depreciation Date" +msgstr "" + +#. Label of the next_due_date (Date) field in DocType 'Asset Maintenance Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Next Due Date" +msgstr "" + +#. Label of the next_send (Data) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Next email will be sent on:" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:155 +msgid "No Account Data row found" +msgstr "" + +#: erpnext/setup/doctype/company/test_company.py:95 +msgid "No Account matched these filters: {}" +msgstr "" + +#: erpnext/quality_management/doctype/quality_review/quality_review_list.js:5 +msgid "No Action" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "No Answer" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:913 +msgid "No Company Found" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:115 +msgid "No Customer found for Inter Company Transactions which represents company {0}" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 +msgid "No Customers found with selected options." +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 +msgid "No Delivery Note selected for Customer {}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." +msgstr "" + +#: erpnext/public/js/utils/ledger_preview.js:64 +msgid "No Impact on Accounting Ledger" +msgstr "" + +#: erpnext/stock/get_item_details.py:341 +msgid "No Item with Barcode {0}" +msgstr "" + +#: erpnext/stock/get_item_details.py:345 +msgid "No Item with Serial No {0}" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1462 +msgid "No Items selected for transfer." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1298 +msgid "No Items with Bill of Materials to Manufacture or all items already manufactured" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1451 +msgid "No Items with Bill of Materials." +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:917 +msgid "No Match" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:15 +msgid "No Matching Bank Transactions Found" +msgstr "" + +#: erpnext/public/js/templates/crm_notes.html:46 +msgid "No Notes" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:239 +msgid "No Outstanding Invoices found for this party" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:674 +msgid "No POS Profile found. Please create a New POS Profile first" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1124 +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1200 +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1221 +#: erpnext/stock/doctype/item/item.py:1479 +msgid "No Permission" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:102 +msgid "No Purchase Orders were created" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No Records for these settings." +msgstr "" + +#: erpnext/public/js/utils/unreconcile.js:147 +msgid "No Selection" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:982 +msgid "No Serial / Batches are available for return" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:154 +msgid "No Stock Available Currently" +msgstr "" + +#: erpnext/public/js/templates/call_link.html:30 +msgid "No Summary" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:99 +msgid "No Supplier found for Inter Company Transactions which represents company {0}" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:976 +msgid "No Tables Detected" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100 +msgid "No Tax Withholding data found for the current posting date." +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108 +msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}." +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:995 +msgid "No Terms" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:236 +msgid "No Unreconciled Invoices and Payments found for this party and account" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:241 +msgid "No Unreconciled Payments found for this party" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:100 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:250 +msgid "No Work Orders were created" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:357 +#: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:211 +msgid "No accounting entries for the following warehouses" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:412 +msgid "No accounts configured" +msgstr "" + +#: banking/src/components/common/AccountsDropdown.tsx:157 +msgid "No accounts found." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:637 +msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured" +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:135 +msgid "No active item prices found." +msgstr "" + +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.js:46 +msgid "No additional fields available" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1381 +msgid "No available quantity to reserve for item {0} in warehouse {1}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankPicker.tsx:63 +msgid "No bank accounts found" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:285 +msgid "No bank statements imported yet" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:288 +msgid "No bank transactions found" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:502 +msgid "No billing email found for customer: {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/CompanySelector.tsx:66 +msgid "No company found." +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:444 +msgid "No contacts with email IDs found." +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:137 +msgid "No data for this period" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:46 +msgid "No data found. Seems like you uploaded a blank file" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:943 +msgid "No default warehouse set for this company. Entry will use Stock Settings default." +msgstr "" + +#: erpnext/templates/generators/bom.html:85 +msgid "No description given" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:255 +msgid "No difference found for stock account {0}" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:150 +msgid "No email found for {0} {1}" +msgstr "" + +#: erpnext/telephony/doctype/call_log/call_log.py:119 +msgid "No employee was scheduled for call popup" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:235 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:225 +msgid "No entries found" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:214 +msgid "No entries with a payment document in this list." +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:73 +msgid "No file uploaded or URL provided." +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 +msgid "No invoice linked" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1351 +msgid "No item available for transfer." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:174 +msgid "No items are available in sales orders {0} for production" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:171 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:183 +msgid "No items are available in the sales order {0} for production" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:425 +msgid "No items found. Scan barcode again." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:76 +msgid "No items in cart" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1043 +msgid "No matches occurred via auto reconciliation" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:126 +msgid "No material request created" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:199 +msgid "No more children on Left" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:213 +msgid "No more children on Right" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:385 +msgid "No naming series defined" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:638 +msgid "No of Deliveries" +msgstr "" + +#. Label of the no_of_docs (Int) field in DocType 'Transaction Deletion Record +#. Details' +#: erpnext/accounts/doctype/transaction_deletion_record_details/transaction_deletion_record_details.json +msgid "No of Docs" +msgstr "" + +#. Label of the no_of_employees (Select) field in DocType 'Lead' +#. Label of the no_of_employees (Select) field in DocType 'Opportunity' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "No of Employees" +msgstr "" + +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:62 +msgid "No of Interactions" +msgstr "" + +#. Label of the total_reposting_count (Int) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "No of Items to Repost" +msgstr "" + +#. Label of the no_of_months_exp (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "No of Months (Expense)" +msgstr "" + +#. Label of the no_of_months (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "No of Months (Revenue)" +msgstr "" + +#. Label of the no_of_parallel_reposting (Int) field in DocType 'Stock +#. Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "No of Parallel Reposting (Per Item)" +msgstr "" + +#. Label of the no_of_shares (Int) field in DocType 'Share Balance' +#. Label of the no_of_shares (Int) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/report/share_balance/share_balance.py:59 +#: erpnext/accounts/report/share_ledger/share_ledger.py:55 +msgid "No of Shares" +msgstr "" + +#. Label of the no_of_shift (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "No of Shift" +msgstr "" + +#. Label of the no_of_units_produced (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "No of Units Produced" +msgstr "" + +#. Label of the no_of_visits (Int) field in DocType 'Maintenance Schedule Item' +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +msgid "No of Visits" +msgstr "" + +#. Label of the no_of_workstations (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "No of Workstations" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.py:320 +msgid "No open Material Requests found for the given criteria." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:247 +msgid "No open POS Opening Entry found for POS Profile {0}." +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:145 +msgid "No open event" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:57 +msgid "No open task" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:335 +msgid "No outstanding invoices found" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:333 +msgid "No outstanding invoices require exchange rate revaluation" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:289 +msgid "No page image is available for this page." +msgstr "" + +#: erpnext/public/js/controllers/buying.js:531 +msgid "No pending Material Requests found to link for the given items." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:509 +msgid "No primary email found for customer: {0}" +msgstr "" + +#: erpnext/templates/includes/product_list.js:41 +msgid "No products found." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:1029 +msgid "No recent transactions found" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:158 +msgid "No recipients found for campaign {0}" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:59 +msgid "No reconciliation actions found" +msgstr "" + +#: erpnext/accounts/report/purchase_register/purchase_register.py:47 +#: erpnext/accounts/report/sales_register/sales_register.py:46 +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:19 +msgid "No record found" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +msgid "No records found in Allocation table" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +msgid "No records found in the Invoices table" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +msgid "No records found in the Payments table" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:222 +msgid "No reserved stock to unreserve." +msgstr "" + +#: banking/src/components/common/LinkFieldCombobox.tsx:268 +msgid "No results found." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:225 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:208 +msgid "No rows to display." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:152 +msgid "No rows with zero document count found" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:201 +msgid "No rules setup yet" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:77 +msgid "No stock available for this batch." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." +msgstr "" + +#. Description of the 'Stock frozen up to' (Date) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "No stock transactions can be created or modified before this date." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:165 +msgid "No tables were extracted from this PDF." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:40 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:48 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:40 +msgid "No transaction selected" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:276 +msgid "No transactions found for the given filters." +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:276 +msgid "No unreconciled transactions found" +msgstr "" + +#: erpnext/templates/includes/macros.html:291 +#: erpnext/templates/includes/macros.html:324 +msgid "No values" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:816 +msgid "No vouchers found for this transaction" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1734 +msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:163 +msgid "No {0} found for Inter Company Transactions." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:377 +#: erpnext/stock/doctype/item/item_prices.html:80 +msgid "No." +msgstr "" + +#. Label of the no_of_employees (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/prospect/prospect.json +msgid "No. of Employees" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:66 +msgid "No. of parallel job cards which can be allowed on this workstation. Example: 2 would mean this workstation can process production for two Work Orders at a time." +msgstr "" + +#. Label of a number card in the Projects Workspace +#: erpnext/projects/workspace/projects/projects.json +msgid "Non Completed Tasks" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Non Conformance" +msgstr "" + +#. Label of the non_depreciable_category (Check) field in DocType 'Asset +#. Category' +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Non Depreciable Category" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:184 +msgid "Non Profit" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/operations_cost.py:36 +msgid "Non stock items" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322 +msgid "Non-Current Liabilities" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.js:95 +msgid "Non-Zeros" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:117 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:113 +msgid "Non-phantom BOM cannot be created for non-stock item {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +msgid "None of the items have any change in quantity or value." +msgstr "" + +#. Label of the section_normal_balances (Tab Break) field in DocType 'Process +#. Period Closing Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "Normal Balances" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 +#: erpnext/stock/utils.py:693 +msgid "Nos" +msgstr "" + +#. Label of the not_applicable (Check) field in DocType 'Item Tax Template +#. Detail' +#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Not Applicable" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:824 +#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +msgid "Not Available" +msgstr "" + +#. Option for the 'Billing Status' (Select) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Not Billed" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:190 +msgid "Not Cleared" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Delivery Status' (Select) field in DocType 'Pick List' +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Not Delivered" +msgstr "" + +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Not Initiated" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:125 +msgid "Not Reconciled" +msgstr "" + +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales +#. Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Not Requested" +msgstr "" + +#: erpnext/selling/report/lost_quotations/lost_quotations.py:84 +#: erpnext/support/report/issue_analytics/issue_analytics.py:210 +#: erpnext/support/report/issue_summary/issue_summary.py:207 +#: erpnext/support/report/issue_summary/issue_summary.py:287 +msgid "Not Specified" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Bank Statement Import +#. Log' +#. Option for the 'Status' (Select) field in DocType 'Production Plan' +#. Option for the 'Status' (Select) field in DocType 'Work Order' +#. Option for the 'Transfer Status' (Select) field in DocType 'Material +#. Request' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan/production_plan_list.js:7 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order/work_order_list.js:15 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:9 +msgid "Not Started" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:431 +msgid "Not able to find the earliest Fiscal Year for the given company." +msgstr "" + +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Not allow to set alternative item for the item {0}" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 +msgid "Not allowed to create accounting dimension for {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:268 +msgid "Not allowed to update stock transactions older than {0}" +msgstr "" + +#: erpnext/setup/doctype/authorization_control/authorization_control.py:60 +msgid "Not authorized since {0} exceeds limits" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:437 +msgid "Not authorized to edit frozen Account {0}" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:326 +msgid "Not configured" +msgstr "" + +#: erpnext/templates/form_grid/stock_entry_grid.html:26 +msgid "Not in Stock" +msgstr "" + +#: erpnext/templates/includes/products_as_grid.html:20 +msgid "Not in stock" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1302 +msgid "Not permitted to make Purchase Orders" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +msgid "Not permitted to read Job Card" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log_list.js:21 +msgid "Note: Automatic log deletion only applies to logs of type Update Cost" +msgstr "" + +#: erpnext/accounts/party.py:714 +msgid "Note: Due Date exceeds allowed {0} credit days by {1} day(s)" +msgstr "" + +#. Description of the 'Recipients' (Table MultiSelect) field in DocType 'Email +#. Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Note: Email will not be sent to disabled users" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:769 +msgid "Note: If you want to use the finished good {0} as a raw material, then enable the 'Do Not Explode' checkbox in the Items table against the same raw material." +msgstr "" + +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:94 +msgid "Note: Item {0} added multiple times" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:623 +msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.js:30 +msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:684 +msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}" +msgstr "" + +#. Label of the notes (Small Text) field in DocType 'Asset Depreciation +#. Schedule' +#. Label of the notes (Text) field in DocType 'Contract Fulfilment Checklist' +#. Label of the notes_tab (Tab Break) field in DocType 'Lead' +#. Label of the notes (Table) field in DocType 'Lead' +#. Label of the notes (Table) field in DocType 'Opportunity' +#. Label of the notes (Table) field in DocType 'Prospect' +#. Label of the section_break0 (Section Break) field in DocType 'Project' +#. Label of the notes (Text Editor) field in DocType 'Project' +#. Label of the sb_01 (Section Break) field in DocType 'Quality Review' +#. Label of the notes (Small Text) field in DocType 'Manufacturer' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:12 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:44 +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:14 +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/www/book_appointment/index.html:55 +msgid "Notes" +msgstr "" + +#. Label of the notes_html (HTML) field in DocType 'Lead' +#. Label of the notes_html (HTML) field in DocType 'Opportunity' +#. Label of the notes_html (HTML) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Notes HTML" +msgstr "" + +#: erpnext/templates/pages/rfq.html:67 +msgid "Notes: " +msgstr "" + +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:60 +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:61 +msgid "Nothing is included in gross" +msgstr "" + +#: erpnext/templates/includes/product_list.js:45 +msgid "Nothing more to show." +msgstr "" + +#. Label of the notice_number_of_days (Int) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Notice (days)" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:47 +msgid "Notify Customers via Email" +msgstr "" + +#. Label of the notify_employee (Check) field in DocType 'Supplier Scorecard' +#. Label of the notify_employee (Check) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +msgid "Notify Employee" +msgstr "" + +#. Label of the notify_employee (Check) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Notify Other" +msgstr "" + +#. Label of the notify_reposting_error_to_role (Link) field in DocType 'Stock +#. Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Notify Reposting Error to Role" +msgstr "" + +#. Label of the notify_supplier (Check) field in DocType 'Supplier Scorecard' +#. Label of the notify_supplier (Check) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the notify_supplier (Check) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Notify Supplier" +msgstr "" + +#. Label of the email_reminders (Check) field in DocType 'Appointment Booking +#. Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Notify Via Email" +msgstr "" + +#. Label of the reorder_email_notify (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Notify by email on creation of automatic Material Request" +msgstr "" + +#. Description of the 'Notify Via Email' (Check) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Notify customer and agent via email on the day of the appointment." +msgstr "" + +#. Label of the number_of_agents (Int) field in DocType 'Appointment Booking +#. Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Number of Concurrent Appointments" +msgstr "" + +#. Label of the number_of_days (Int) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Number of Days" +msgstr "" + +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js:14 +msgid "Number of Interaction" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:101 +msgid "Number of Order" +msgstr "" + +#. Label of the number_of_transactions (Int) field in DocType 'Bank Statement +#. Import Log' +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:173 +#: banking/src/pages/BankStatementImporter.tsx:254 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Number of Transactions" +msgstr "" + +#. Label of the demand_number (Int) field in DocType 'Sales Forecast' +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +msgid "Number of Weeks / Months" +msgstr "" + +#. Description of the 'Grace Period' (Int) field in DocType 'Subscription +#. Settings' +#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json +msgid "Number of days after invoice date has elapsed before canceling subscription or marking subscription as unpaid" +msgstr "" + +#. Label of the advance_booking_days (Int) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Number of days appointments can be booked in advance" +msgstr "" + +#. Description of the 'Days Until Due' (Int) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Number of days that the subscriber has to pay invoices generated by this subscription" +msgstr "" + +#. Description of the 'Match transfers within 'N' days' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Number of days to consider for matching transfers across bank accounts" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:58 +#: banking/src/components/features/Settings/Preferences.tsx:148 +msgid "Number of days to match transfers" +msgstr "" + +#. Description of the 'Billing Interval Count' (Int) field in DocType +#. 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Number of intervals for the interval field e.g if Interval is 'Days' and Billing Interval Count is 3, invoices will be generated every 3 days" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:129 +msgid "Number of new Account, it will be included in the account name as a prefix" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:39 +msgid "Number of new Cost Center, it will be included in the cost center name as a prefix" +msgstr "" + +#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Numbers this customer uses to identify your company in their own system." +msgstr "" + +#. Label of the numeric (Check) field in DocType 'Item Quality Inspection +#. Parameter' +#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Numeric" +msgstr "" + +#. Label of the section_break_14 (Section Break) field in DocType 'Quality +#. Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Numeric Inspection" +msgstr "" + +#. Label of the numeric_values (Check) field in DocType 'Item Attribute' +#. Label of the numeric_values (Check) field in DocType 'Item Variant +#. Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Numeric Values" +msgstr "" + +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 +msgid "Numero has not set in the XML file" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "O+" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "O-" +msgstr "" + +#. Label of the objective (Text) field in DocType 'Quality Goal Objective' +#. Label of the objective (Text) field in DocType 'Quality Review Objective' +#: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json +#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json +msgid "Objective" +msgstr "" + +#. Label of the sb_01 (Section Break) field in DocType 'Quality Goal' +#. Label of the objectives (Table) field in DocType 'Quality Goal' +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +msgid "Objectives" +msgstr "" + +#. Label of the last_odometer (Int) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Odometer Value (Last)" +msgstr "" + +#. Label of the scheduled_confirmation_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Offer Date" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97 +msgid "Office Equipment" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201 +msgid "Office Maintenance Expenses" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205 +msgid "Office Rent" +msgstr "" + +#. Label of the offsetting_account (Link) field in DocType 'Accounting +#. Dimension Detail' +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Offsetting Account" +msgstr "" + +#: erpnext/accounts/general_ledger.py:99 +msgid "Offsetting for Accounting Dimension" +msgstr "" + +#. Label of the old_parent (Data) field in DocType 'Account' +#. Label of the old_parent (Data) field in DocType 'Location' +#. Label of the old_parent (Data) field in DocType 'Task' +#. Label of the old_parent (Data) field in DocType 'Department' +#. Label of the old_parent (Data) field in DocType 'Employee' +#. Label of the old_parent (Link) field in DocType 'Supplier Group' +#. Label of the old_parent (Link) field in DocType 'Warehouse' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/assets/doctype/location/location.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Old Parent" +msgstr "" + +#. Option for the 'Reconciliation Takes Effect On' (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Oldest Of Invoice Or Advance" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1037 +msgid "On Hand" +msgstr "" + +#. Label of the on_hold_since (Datetime) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "On Hold Since" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "On Item Quantity" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "On Net Total" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +msgid "On Paid Amount" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "On Previous Row Amount" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "On Previous Row Total" +msgstr "" + +#: erpnext/stock/report/available_batch_report/available_batch_report.js:16 +msgid "On This Date" +msgstr "" + +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:84 +msgid "On Track" +msgstr "" + +#. Description of the 'Enable Immutable Ledger' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "On enabling this cancellation entries will be posted on the actual cancellation date and reports will consider cancelled entries as well" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:727 +msgid "On expanding a row in the Items to Manufacture table, you'll see an option to 'Include Exploded Items'. Ticking this includes raw materials of the sub-assembly items in the production process." +msgstr "" + +#. Description of the 'Excluded Fee' (Currency) field in DocType 'Bank +#. Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "On save, the Excluded Fee will be converted to an Included Fee." +msgstr "" + +#. Description of the 'Use Serial / Batch fields' (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "On submission of the stock transaction, system will auto create the Serial and Batch Bundle based on the Serial No / Batch fields." +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "On-machine press checks" +msgstr "" + +#. Title of the Module Onboarding 'Stock Onboarding' +#: erpnext/selling/module_onboarding/stock_onboarding/stock_onboarding.json +msgid "Onboarding for Stock!" +msgstr "" + +#. Description of the 'Release Date' (Date) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Once set, this invoice will be on hold till the set date" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:763 +msgid "Once the Work Order is Closed. It can't be resumed." +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 +msgid "One customer can be part of only single Loyalty Program." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Ongoing" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:228 +msgid "Ongoing Job Cards" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:35 +msgid "Online Auctions" +msgstr "" + +#. Description of the 'Default Advance Account' (Link) field in DocType +#. 'Payment Reconciliation' +#. Description of the 'Default Advance Account' (Link) field in DocType +#. 'Process Payment Reconciliation' +#. Description of the 'Default Advance Received Account' (Link) field in +#. DocType 'Company' +#. Description of the 'Default Advance Paid Account' (Link) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/setup/doctype/company/company.json +msgid "Only 'Payment Entries' made against this advance account are supported." +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:108 +msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +msgid "Only CSV files are allowed" +msgstr "" + +#. Label of the tax_on_excess_amount (Check) field in DocType 'Tax Withholding +#. Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Only Deduct Tax On Excess Amount " +msgstr "" + +#. Label of the only_include_allocated_payments (Check) field in DocType +#. 'Purchase Invoice' +#. Label of the only_include_allocated_payments (Check) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Only Include Allocated Payments" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:137 +msgid "Only Parent can be of type {0}" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.py:57 +msgid "Only Value available for Payment Entry" +msgstr "" + +#. Description of the 'Posting Date inheritance for exchange gain / loss' +#. (Select) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Only applies for Normal Payments" +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:43 +msgid "Only existing assets" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:134 +msgid "Only if the PDF is password protected" +msgstr "" + +#. Description of the 'Is Group' (Check) field in DocType 'Customer Group' +#. Description of the 'Is Group' (Check) field in DocType 'Item Group' +#. Description of the 'Is Group' (Check) field in DocType 'Supplier Group' +#. Description of the 'Is Group' (Check) field in DocType 'Territory' +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/setup/doctype/territory/territory.json +msgid "Only leaf nodes are allowed in transaction" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:352 +msgid "Only one of Deposit or Withdrawal should be non-zero when applying an Excluded Fee." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:362 +msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled." +msgstr "" + +#. Description of the 'Is Active' (Check) field in DocType 'Product Bundle' +#: erpnext/selling/doctype/product_bundle/product_bundle.json +msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +msgid "Only one {0} entry can be created against the Work Order {1}" +msgstr "" + +#. Description of the 'Customer Groups' (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Only show Customer of these Customer Groups" +msgstr "" + +#. Description of the 'Item Groups' (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Only show Items from these Item Groups" +msgstr "" + +#. Description of the 'Customer' (Link) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Only to be used for Subcontracting Inward." +msgstr "" + +#. Description of the 'Rounding Loss Allowance' (Float) field in DocType +#. 'Exchange Rate Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Only values between [0,1) are allowed. Like {0.00, 0.04, 0.09, ...}\n" +"Ex: If allowance is set at 0.07, accounts that have balance of 0.07 in either of the currencies will be considered as zero balance account" +msgstr "" + +#. Description of the 'Recalculate Valuation Rate' (Check) field in DocType +#. 'Repost Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Only works for Purchase Receipt, Purchase Invoice and Stock Entry" +msgstr "" + +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.py:43 +msgid "Only {0} are supported" +msgstr "" + +#. Label of the open_activities_html (HTML) field in DocType 'Lead' +#. Label of the open_activities_html (HTML) field in DocType 'Opportunity' +#. Label of the open_activities_html (HTML) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Open Activities HTML" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom_item_preview.html:24 +msgid "Open BOM {0}" +msgstr "" + +#: erpnext/public/js/templates/call_link.html:11 +msgid "Open Call Log" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:116 +msgid "Open Contact" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:117 +#: erpnext/public/js/templates/crm_activities.html:164 +msgid "Open Event" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:104 +msgid "Open Events" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +msgid "Open Form View" +msgstr "" + +#. Label of the issue (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Open Issues" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:46 +msgid "Open Issues " +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom_item_preview.html:28 +#: erpnext/manufacturing/doctype/work_order/work_order_preview.html:28 +msgid "Open Item {0}" +msgstr "" + +#. Label of the notifications (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/setup/doctype/email_digest/templates/default.html:154 +msgid "Open Notifications" +msgstr "" + +#. Label of the open_orders_section (Section Break) field in DocType 'Master +#. Production Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +msgid "Open Orders" +msgstr "" + +#. Label of a number card in the Projects Workspace +#. Label of the project (Check) field in DocType 'Email Digest' +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Open Projects" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:70 +msgid "Open Projects " +msgstr "" + +#. Label of the pending_quotations (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Open Quotations" +msgstr "" + +#: erpnext/stock/report/item_variant_details/item_variant_details.py:110 +msgid "Open Sales Orders" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:33 +#: erpnext/public/js/templates/crm_activities.html:92 +msgid "Open Task" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:21 +msgid "Open Tasks" +msgstr "" + +#. Label of the todo_list (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Open To Do" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:130 +msgid "Open To Do " +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order_preview.html:24 +msgid "Open Work Order {0}" +msgstr "" + +#. Name of a report +#. Label of a number card in the Manufacturing Workspace +#: erpnext/manufacturing/report/open_work_orders/open_work_orders.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +msgid "Open Work Orders" +msgstr "" + +#: erpnext/templates/pages/help.html:60 +msgid "Open a new ticket" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:63 +msgid "Open the settings dialog" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:336 +msgid "Open {0} in a new tab" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:404 +#: erpnext/public/js/stock_analytics.js:97 +msgid "Opening" +msgstr "" + +#. Group in POS Profile's connections +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Opening & Closing" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:427 +#: erpnext/accounts/report/trial_balance/trial_balance.py:526 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:198 +msgid "Opening (Cr)" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:420 +#: erpnext/accounts/report/trial_balance/trial_balance.py:519 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:191 +msgid "Opening (Dr)" +msgstr "" + +#. Label of the opening_accumulated_depreciation (Currency) field in DocType +#. 'Asset' +#. Label of the opening_accumulated_depreciation (Currency) field in DocType +#. 'Asset Depreciation Schedule' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:161 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:443 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:511 +msgid "Opening Accumulated Depreciation" +msgstr "" + +#. Label of the opening_amount (Currency) field in DocType 'POS Closing Entry +#. Detail' +#. Label of the opening_amount (Currency) field in DocType 'POS Opening Entry +#. Detail' +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +#: erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.json +#: erpnext/selling/page/point_of_sale/pos_controller.js:41 +msgid "Opening Amount" +msgstr "" + +#. Option for the 'Balance Type' (Select) field in DocType 'Financial Report +#. Row' +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:55 +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:187 +msgid "Opening Balance" +msgstr "" + +#. Description of the 'Balance Type' (Select) field in DocType 'Financial +#. Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Opening Balance = Start of period, Closing Balance = End of period, Period Movement = Net change during period" +msgstr "" + +#. Label of the balance_details (Table) field in DocType 'POS Opening Entry' +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +msgid "Opening Balance Details" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348 +msgid "Opening Balance Equity" +msgstr "" + +#. Label of the z_opening_balances (Table) field in DocType 'Process Period +#. Closing Voucher' +#. Label of the section_opening_balances (Tab Break) field in DocType 'Process +#. Period Closing Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "Opening Balances" +msgstr "" + +#. Label of the opening_date (Date) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Opening Date" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Opening Entry" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +msgid "Opening Invoice Creation In Progress" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Link in the Home Workspace +#: erpnext/accounts/doctype/account/account_tree.js:201 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/setup/workspace/home/home.json +msgid "Opening Invoice Creation Tool" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +msgid "Opening Invoice Creation Tool Item" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:106 +msgid "Opening Invoice Item" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Opening Invoice Tool" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 +msgid "Opening Invoice has rounding adjustment of {0}.

        '{1}' account is required to post these values. Please set it in Company: {2}.

        Or, '{3}' can be enabled to not post any rounding adjustment." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html:8 +msgid "Opening Invoices" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +msgid "Opening Invoices Summary" +msgstr "" + +#. Label of the opening_number_of_booked_depreciations (Int) field in DocType +#. 'Asset' +#. Label of the opening_number_of_booked_depreciations (Int) field in DocType +#. 'Asset Depreciation Schedule' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "Opening Number of Booked Depreciations" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:35 +msgid "Opening Purchase Invoices have been created." +msgstr "" + +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:81 +#: erpnext/stock/report/stock_balance/stock_balance.py:533 +msgid "Opening Qty" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:33 +msgid "Opening Sales Invoices have been created." +msgstr "" + +#. Label of the opening_stock (Float) field in DocType 'Item' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' +#: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item.py:351 +#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Opening Stock" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1588 +msgid "Opening Stock can only be set for stock items." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1595 +msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1591 +msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:356 +msgid "Opening Stock reconciliation created with zero valuation rate: {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:364 +#: erpnext/stock/doctype/item/item.py:1637 +msgid "Opening Stock reconciliation created: {0}" +msgstr "" + +#. Label of the opening_time (Time) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Opening Time" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:540 +msgid "Opening Value" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Opening and Closing" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:199 +msgid "Opening stock creation has been queued and will be created in the background. Please check the Stock Reconciliation after some time." +msgstr "" + +#. Label of the operating_component (Link) field in DocType 'Workstation Cost' +#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes +#. and Charges' +#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Operating Component" +msgstr "" + +#. Label of the workstation_costs (Table) field in DocType 'Workstation' +#. Label of the workstation_costs (Table) field in DocType 'Workstation Type' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +msgid "Operating Components Cost" +msgstr "" + +#. Label of the operating_cost (Currency) field in DocType 'BOM' +#. Label of the operating_cost (Currency) field in DocType 'BOM Operation' +#. Label of the operating_cost (Currency) field in DocType 'Workstation Cost' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +msgid "Operating Cost" +msgstr "" + +#. Label of the base_operating_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Operating Cost (Company Currency)" +msgstr "" + +#. Label of the operating_cost_per_bom_quantity (Currency) field in DocType +#. 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Operating Cost Per BOM Quantity" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/operations_cost.py:176 +msgid "Operating Cost as per Work Order / BOM" +msgstr "" + +#. Label of the base_operating_cost (Currency) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Operating Cost(Company Currency)" +msgstr "" + +#. Label of the over_heads (Tab Break) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Operating Costs" +msgstr "" + +#. Label of the section_break_auzm (Section Break) field in DocType +#. 'Workstation' +#. Label of the section_break_auzm (Section Break) field in DocType +#. 'Workstation Type' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +msgid "Operating Costs (Per Hour)" +msgstr "" + +#. Label of the production_section (Section Break) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Operation & Materials" +msgstr "" + +#. Label of the section_break_22 (Section Break) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Operation Cost" +msgstr "" + +#. Label of the section_break_4 (Section Break) field in DocType 'Operation' +#. Label of the description (Text Editor) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Operation Description" +msgstr "" + +#. Label of the operation_row_id (Int) field in DocType 'BOM Item' +#. Label of the operation_id (Data) field in DocType 'Job Card' +#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and +#. Charges' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:344 +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Operation ID" +msgstr "" + +#. Label of the operation_row_id (Int) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Operation Row ID" +msgstr "" + +#. Label of the operation_row_id (Int) field in DocType 'Work Order Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Operation Row Id" +msgstr "" + +#. Label of the operation_row_number (Select) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Operation Row Number" +msgstr "" + +#. Label of the time_in_mins (Float) field in DocType 'BOM Operation' +#. Label of the time_in_mins (Float) field in DocType 'BOM Website Operation' +#. Label of the time_in_mins (Float) field in DocType 'Sub Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json +#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json +msgid "Operation Time" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +msgid "Operation Time must be greater than 0 for Operation {0}" +msgstr "" + +#. Description of the 'Completed Qty' (Float) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Operation completed for how many finished goods?" +msgstr "" + +#. Description of the 'Fixed Time' (Check) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Operation time does not depend on quantity to produce" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:517 +msgid "Operation {0} added multiple times in the work order {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1352 +msgid "Operation {0} does not belong to the work order {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:453 +msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" + +#. Label of the operations (Table) field in DocType 'BOM' +#. Label of the operations_section_section (Section Break) field in DocType +#. 'BOM' +#. Label of the operations_section (Section Break) field in DocType 'Work +#. Order' +#. Label of the operations (Table) field in DocType 'Work Order' +#. Label of the operation (Section Break) field in DocType 'Email Digest' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:325 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/setup/doctype/company/company.py:476 +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/templates/generators/bom.html:61 +msgid "Operations" +msgstr "" + +#. Label of the section_break_xvld (Section Break) field in DocType 'BOM +#. Creator' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Operations Routing" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:920 +msgid "Operations cannot be left blank" +msgstr "" + +#. Label of the operator (Link) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:85 +msgid "Operator" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:22 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:27 +msgid "Opp Count" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:26 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:31 +msgid "Opp/Lead %" +msgstr "" + +#. Label of the opportunities_tab (Tab Break) field in DocType 'Prospect' +#. Label of the opportunities (Table) field in DocType 'Prospect' +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/page/sales_funnel/sales_funnel.py:71 +msgid "Opportunities" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:52 +msgid "Opportunities by Campaign" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:53 +msgid "Opportunities by Medium" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:51 +msgid "Opportunities by Source" +msgstr "" + +#. Label of the opportunity (Link) field in DocType 'Request for Quotation' +#. Label of the opportunity (Link) field in DocType 'Supplier Quotation' +#. Label of the opportunity_section (Section Break) field in DocType 'CRM +#. Settings' +#. Option for the 'Status' (Select) field in DocType 'Lead' +#. Name of a DocType +#. Label of the opportunity (Link) field in DocType 'Prospect Opportunity' +#. Label of the opportunity_name (Link) field in DocType 'Customer' +#. Label of the opportunity (Link) field in DocType 'Quotation' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:385 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/crm_settings/crm_settings.json +#: erpnext/crm/doctype/lead/lead.js:33 erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.js:20 +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +#: erpnext/crm/report/lead_details/lead_details.js:36 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:22 +#: erpnext/public/js/communication.js:35 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.js:154 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/workspace_sidebar/crm.json +msgid "Opportunity" +msgstr "" + +#. Label of the opportunity_amount (Currency) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:29 +msgid "Opportunity Amount" +msgstr "" + +#. Label of the base_opportunity_amount (Currency) field in DocType +#. 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Opportunity Amount (Company Currency)" +msgstr "" + +#. Label of the transaction_date (Date) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Opportunity Date" +msgstr "" + +#. Label of the opportunity_from (Link) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:42 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:29 +msgid "Opportunity From" +msgstr "" + +#. Name of a DocType +#. Label of the enq_det (Text) field in DocType 'Quotation' +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Opportunity Item" +msgstr "" + +#. Label of the lost_reason (Link) field in DocType 'Lost Reason Detail' +#. Name of a DocType +#. Label of the lost_reason (Link) field in DocType 'Opportunity Lost Reason +#. Detail' +#: erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.json +#: erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.json +#: erpnext/crm/doctype/opportunity_lost_reason_detail/opportunity_lost_reason_detail.json +msgid "Opportunity Lost Reason" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/opportunity_lost_reason_detail/opportunity_lost_reason_detail.json +msgid "Opportunity Lost Reason Detail" +msgstr "" + +#. Label of the opportunity_owner (Link) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.py:32 +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:65 +msgid "Opportunity Owner" +msgstr "" + +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:46 +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:58 +msgid "Opportunity Source" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Opportunity Summary by Sales Stage" +msgstr "" + +#. Name of a report +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.json +msgid "Opportunity Summary by Sales Stage " +msgstr "" + +#. Label of the opportunity_type (Link) field in DocType 'Opportunity' +#. Name of a DocType +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/opportunity_type/opportunity_type.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:49 +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:52 +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.py:48 +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:64 +msgid "Opportunity Type" +msgstr "" + +#. Label of the section_break_14 (Section Break) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Opportunity Value" +msgstr "" + +#: erpnext/public/js/communication.js:102 +msgid "Opportunity {0} created" +msgstr "" + +#. Label of the optimize_route (Button) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Optimize Route" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1029 +msgid "Optional. Select a specific manufacture entry to reverse." +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:178 +msgid "Optional. Sets company's default currency, if not specified." +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:157 +msgid "Optional. This setting will be used to filter in various transactions." +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:165 +msgid "Optional. Used with Financial Report Template" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:83 +msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." +msgstr "" + +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 +msgid "Order Amount" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:80 +msgid "Order By" +msgstr "" + +#. Label of the order_confirmation_date (Date) field in DocType 'Purchase +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Order Confirmation Date" +msgstr "" + +#. Label of the order_confirmation_no (Data) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Order Confirmation No" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:24 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:29 +msgid "Order Count" +msgstr "" + +#. Label of the order_date (Date) field in DocType 'Blanket Order' +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:68 +msgid "Order Date" +msgstr "" + +#. Label of the order_information_section (Section Break) field in DocType +#. 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Order Information" +msgstr "" + +#. Label of the order_no (Data) field in DocType 'Blanket Order' +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +msgid "Order No" +msgstr "" + +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:134 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:175 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:386 +msgid "Order Qty" +msgstr "" + +#. Label of the tracking_section (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the order_status_section (Section Break) field in DocType +#. 'Subcontracting Inward Order' +#. Label of the order_status_section (Section Break) field in DocType +#. 'Subcontracting Order' +#. Label of the order_status_section (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Order Status" +msgstr "" + +#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:4 +msgid "Order Summary" +msgstr "" + +#. Label of the blanket_order_type (Select) field in DocType 'Blanket Order' +#. Label of the order_type (Select) field in DocType 'Quotation' +#. Label of the order_type (Select) field in DocType 'Sales Order' +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Order Type" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:25 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:30 +msgid "Order Value" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:28 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:33 +msgid "Order/Quot %" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Quotation' +#. Option for the 'Status' (Select) field in DocType 'Material Request' +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:5 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/quotation/quotation_list.js:34 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:40 +msgid "Ordered" +msgstr "" + +#. Label of the ordered_qty (Float) field in DocType 'Material Request Plan +#. Item' +#. Label of the ordered_qty (Float) field in DocType 'Production Plan Item' +#. Label of the ordered_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the ordered_qty (Float) field in DocType 'Quotation Item' +#. Label of the ordered_qty (Float) field in DocType 'Sales Order Item' +#. Label of the ordered_qty (Float) field in DocType 'Bin' +#. Label of the ordered_qty (Float) field in DocType 'Packed Item' +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:171 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:240 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:49 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:164 +msgid "Ordered Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:205 +msgid "Ordered Qty: Quantity ordered for purchase, but not received." +msgstr "" + +#. Label of the ordered_qty (Float) field in DocType 'Blanket Order Item' +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:102 +msgid "Ordered Quantity" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11 +#: erpnext/selling/doctype/customer/customer_dashboard.py:20 +#: erpnext/selling/doctype/sales_order/sales_order.py:700 +#: erpnext/setup/doctype/company/company_dashboard.py:23 +msgid "Orders" +msgstr "" + +#. Label of the organization_section (Section Break) field in DocType 'Lead' +#. Label of the organization_details_section (Section Break) field in DocType +#. 'Opportunity' +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:30 +#: erpnext/desktop_icon/organization.json +#: erpnext/workspace_sidebar/organization.json +msgid "Organization" +msgstr "" + +#. Label of the company_name (Data) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Organization Name" +msgstr "" + +#. Label of the original_item (Link) field in DocType 'BOM Item' +#. Label of the original_item (Link) field in DocType 'Stock Entry Detail' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Original Item" +msgstr "" + +#. Label of the margin_details (Section Break) field in DocType 'Bank +#. Guarantee' +#. Label of the other_details (Section Break) field in DocType 'Production +#. Plan' +#. Label of the other_details (HTML) field in DocType 'Purchase Receipt' +#. Label of the other_details (HTML) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Other Details" +msgstr "" + +#. Label of the other_info_tab (Tab Break) field in DocType 'Stock Entry' +#. Label of the tab_other_info (Tab Break) field in DocType 'Subcontracting +#. Inward Order' +#. Label of the tab_other_info (Tab Break) field in DocType 'Subcontracting +#. Order' +#. Label of the tab_other_info (Tab Break) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Other Info" +msgstr "" + +#. Label of a Card Break in the Financial Reports Workspace +#. Label of a Card Break in the Buying Workspace +#. Label of a Card Break in the Selling Workspace +#. Label of a Card Break in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Other Reports" +msgstr "" + +#. Label of the other_settings_section (Section Break) field in DocType +#. 'Manufacturing Settings' +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Other Settings" +msgstr "" + +#. Label of the tab_break_dpet (Tab Break) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Others" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce/Cubic Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce/Cubic Inch" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce/Gallon (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce/Gallon (US)" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:119 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83 +#: erpnext/stock/report/stock_balance/stock_balance.py:555 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:324 +msgid "Out Qty" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:561 +msgid "Out Value" +msgstr "" + +#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No' +#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty +#. Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Out of AMC" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:20 +msgid "Out of Order" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:633 +msgid "Out of Stock" +msgstr "" + +#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No' +#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty +#. Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Out of Warranty" +msgstr "" + +#: erpnext/templates/includes/macros.html:173 +msgid "Out of stock" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 +#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +msgid "Outdated POS Opening Entry" +msgstr "" + +#. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Outgoing Bills" +msgstr "" + +#. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Outgoing Payment" +msgstr "" + +#. Label of the outgoing_rate (Float) field in DocType 'Serial and Batch Entry' +#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/stock_ledger/stock_ledger.py:378 +msgid "Outgoing Rate" +msgstr "" + +#. Label of the outstanding (Currency) field in DocType 'Overdue Payment' +#. Label of the outstanding_amount (Currency) field in DocType 'Payment Entry +#. Reference' +#. Label of the outstanding (Currency) field in DocType 'Payment Schedule' +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:686 +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +msgid "Outstanding" +msgstr "" + +#. Label of the base_outstanding (Currency) field in DocType 'Payment Schedule' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +msgid "Outstanding (Company Currency)" +msgstr "" + +#. Label of the outstanding_amount (Float) field in DocType 'Cashier Closing' +#. Label of the outstanding_amount (Currency) field in DocType 'Discounted +#. Invoice' +#. Label of the outstanding_amount (Currency) field in DocType 'Opening Invoice +#. Creation Tool Item' +#. Label of the outstanding_amount (Currency) field in DocType 'Payment +#. Reconciliation Invoice' +#. Label of the outstanding_amount (Currency) field in DocType 'Payment +#. Request' +#. Label of the outstanding_amount (Currency) field in DocType 'POS Invoice' +#. Label of the outstanding_amount (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the outstanding_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:182 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:140 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:141 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169 +#: erpnext/accounts/report/purchase_register/purchase_register.py:291 +#: erpnext/accounts/report/sales_register/sales_register.py:319 +msgid "Outstanding Amount" +msgstr "" + +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:66 +msgid "Outstanding Amt" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:295 +msgid "Outstanding Checks and Deposits to clear" +msgstr "" + +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:48 +msgid "Outstanding Cheques and Deposits to clear" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:412 +msgid "Outstanding for {0} cannot be less than zero ({1})" +msgstr "" + +#. Option for the 'Payment Request Type' (Select) field in DocType 'Payment +#. Request' +#. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory +#. Dimension' +#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and +#. Batch Bundle' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Outward" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Outward Order" +msgstr "" + +#. Label of the over_billing_allowance (Currency) field in DocType 'Accounts +#. Settings' +#. Label of the over_billing_allowance (Float) field in DocType 'Item' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/stock/doctype/item/item.json +msgid "Over Billing Allowance (%)" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/billing_status.py:266 +msgid "Over Billing Allowance exceeded for Purchase Receipt Item {0} ({1}) by {2}%" +msgstr "" + +#. Label of the over_delivery_receipt_allowance (Float) field in DocType 'Item' +#. Label of the over_delivery_receipt_allowance (Float) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Over Delivery/Receipt Allowance (%)" +msgstr "" + +#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Over Order Allowance (%)" +msgstr "" + +#. Label of the over_picking_allowance (Percent) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Over Picking Allowance (%)" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +msgid "Over Receipt" +msgstr "" + +#: erpnext/controllers/status_updater.py:506 +msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." +msgstr "" + +#. Label of the over_transfer_allowance (Float) field in DocType 'Buying +#. Settings' +#. Label of the mr_qty_allowance (Float) field in DocType 'Stock Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Over Transfer Allowance (%)" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Over Withheld" +msgstr "" + +#: erpnext/controllers/status_updater.py:508 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +msgstr "" + +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {} ignored because you have {} role." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset +#. Maintenance Log' +#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset +#. Maintenance Task' +#. Option for the 'Status' (Select) field in DocType 'Task' +#. Option in a Select field in the tasks Web Form +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/services/status.py:80 +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/report/project_summary/project_summary.py:100 +#: erpnext/projects/web_form/tasks/tasks.json +#: erpnext/selling/doctype/sales_order/sales_order_list.js:30 +msgid "Overdue" +msgstr "" + +#. Label of the overdue_days (Data) field in DocType 'Overdue Payment' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +msgid "Overdue Days" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +msgid "Overdue Payment" +msgstr "" + +#. Label of the overdue_payments (Table) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "Overdue Payments" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:142 +msgid "Overdue Tasks" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Overdue and Discounted" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 +msgid "Overlap in scoring between {0} and {1}" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 +msgid "Overlapping conditions found between:" +msgstr "" + +#. Label of the overproduction_percentage_for_sales_order (Percent) field in +#. DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Overproduction Percentage For Sales Order" +msgstr "" + +#. Label of the overproduction_percentage_for_work_order (Percent) field in +#. DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Overproduction Percentage For Work Order" +msgstr "" + +#. Label of the over_production_for_sales_and_work_order_section (Section +#. Break) field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Overproduction for Sales and Work Order" +msgstr "" + +#. Description of the 'Per-Company Accounts' (Table) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Override the default payable / advance accounts on a per-company basis. Leave blank to use each company's defaults from Company settings." +msgstr "" + +#. Option for the 'Permanent Address Is' (Select) field in DocType 'Employee' +#. Option for the 'Current Address Is' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Owned" +msgstr "" + +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:29 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:24 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:40 +#: erpnext/accounts/report/sales_register/sales_register.js:46 +#: erpnext/accounts/report/sales_register/sales_register.py:236 +#: erpnext/crm/report/lead_details/lead_details.py:45 +msgid "Owner" +msgstr "" + +#. Label of the asset_owner_section (Section Break) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Ownership" +msgstr "" + +#. Label of the p_l_closing_balance (JSON) field in DocType 'Process Period +#. Closing Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "P&L Closing Balance" +msgstr "" + +#. Label of the pan_no (Data) field in DocType 'Lower Deduction Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "PAN No" +msgstr "" + +#. Label of the parent_pcv (Link) field in DocType 'Process Period Closing +#. Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "PCV" +msgstr "" + +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 +msgid "PCV Paused" +msgstr "" + +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:53 +msgid "PCV Resumed" +msgstr "" + +#. Label of the pdf_name (Data) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "PDF Name" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:127 +msgid "PDF Password" +msgstr "" + +#. Label of the pdf_tables (JSON) field in DocType 'Bank Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "PDF Tables" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:928 +msgid "PDF statement support requires the 'pdfplumber' library to be installed." +msgstr "" + +#. Label of the pin (Data) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "PIN" +msgstr "" + +#. Label of the po_detail (Data) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "PO Supplied Item" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/selling.json +msgid "POS" +msgstr "" + +#. Label of the invoice_fields (Table) field in DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "POS Additional Fields" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +msgid "POS Closed" +msgstr "" + +#. Name of a DocType +#. Label of the pos_closing_entry (Link) field in DocType 'POS Invoice Merge +#. Log' +#. Label of the pos_closing_entry (Data) field in DocType 'POS Opening Entry' +#. Label of the pos_closing_entry (Link) field in DocType 'Sales Invoice' +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "POS Closing Entry" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +msgid "POS Closing Entry Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.json +msgid "POS Closing Entry Taxes" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js:18 +msgid "POS Closing Failed" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js:40 +msgid "POS Closing failed while running in a background process. You can resolve the {0} and retry the process again." +msgstr "" + +#. Label of the pos_configurations_tab (Tab Break) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "POS Configurations" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_customer_group/pos_customer_group.json +msgid "POS Customer Group" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_field/pos_field.json +msgid "POS Field" +msgstr "" + +#. Name of a DocType +#. Label of the pos_invoice (Link) field in DocType 'POS Invoice Reference' +#. Option for the 'Invoice Type Created via POS Screen' (Select) field in +#. DocType 'POS Settings' +#. Label of the pos_invoice (Link) field in DocType 'Sales Invoice Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/pos_register/pos_register.py:190 +#: erpnext/workspace_sidebar/selling.json +msgid "POS Invoice" +msgstr "" + +#. Name of a DocType +#. Label of the pos_invoice_item (Data) field in DocType 'POS Invoice Item' +#. Label of the pos_invoice_item (Data) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "POS Invoice Item" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/workspace_sidebar/selling.json +msgid "POS Invoice Merge Log" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +msgid "POS Invoice Reference" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:119 +msgid "POS Invoice is already consolidated" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:127 +msgid "POS Invoice is not submitted" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 +msgid "POS Invoice isn't created by user {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 +msgid "POS Invoice should have the field {0} checked." +msgstr "" + +#. Label of the pos_invoices (Table) field in DocType 'POS Invoice Merge Log' +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +msgid "POS Invoices" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:88 +msgid "POS Invoices can't be added when Sales Invoice is enabled" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:672 +msgid "POS Invoices will be consolidated in a background process" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:674 +msgid "POS Invoices will be unconsolidated in a background process" +msgstr "" + +#. Label of the pos_item_details_section (Section Break) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "POS Item Details" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_item_group/pos_item_group.json +msgid "POS Item Group" +msgstr "" + +#. Label of the pos_item_selector_section (Section Break) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "POS Item Selector" +msgstr "" + +#. Label of the pos_opening_entry (Link) field in DocType 'POS Closing Entry' +#. Name of a DocType +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "POS Opening Entry" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:261 +msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry." +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:121 +msgid "POS Opening Entry Cancellation Error" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +msgid "POS Opening Entry Cancelled" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.json +msgid "POS Opening Entry Detail" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:67 +msgid "POS Opening Entry Exists" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:246 +msgid "POS Opening Entry Missing" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:122 +msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +msgid "POS Opening Entry has been cancelled. Please refresh the page." +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_payment_method/pos_payment_method.json +msgid "POS Payment Method" +msgstr "" + +#. Label of the pos_profile (Link) field in DocType 'POS Closing Entry' +#. Label of the pos_profile (Link) field in DocType 'POS Invoice' +#. Label of the pos_profile (Link) field in DocType 'POS Opening Entry' +#. Name of a DocType +#. Label of the pos_profile (Link) field in DocType 'Sales Invoice' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/pos_register/pos_register.js:32 +#: erpnext/accounts/report/pos_register/pos_register.py:126 +#: erpnext/accounts/report/pos_register/pos_register.py:204 +#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/workspace_sidebar/selling.json +msgid "POS Profile" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:254 +msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:249 +msgid "POS Profile - {0} is currently open. Please close the POS or cancel the existing POS Opening Entry before cancelling this POS Closing Entry." +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_profile_user/pos_profile_user.json +msgid "POS Profile User" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 +msgid "POS Profile doesn't match {}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 +msgid "POS Profile is mandatory to mark this invoice as POS Transaction." +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:114 +msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." +msgstr "" + +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 +msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 +msgid "POS Profile {} does not belong to company {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 +msgid "POS Profile {} does not exist." +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 +msgid "POS Profile {} is disabled." +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/pos_register/pos_register.json +msgid "POS Register" +msgstr "" + +#. Name of a DocType +#. Label of the pos_search_fields (Table) field in DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_search_fields/pos_search_fields.json +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "POS Search Fields" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/selling.json +msgid "POS Settings" +msgstr "" + +#. Label of the pos_invoices (Table) field in DocType 'POS Closing Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "POS Transactions" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +msgid "POS has been closed at {0}. Please refresh the page." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +msgid "POS invoice {0} created successfully" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.json +msgid "PSOA Cost Center" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/psoa_project/psoa_project.json +msgid "PSOA Project" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "PZN" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +msgid "Package No(s) already in use. Try from Package No {0}" +msgstr "" + +#. Label of the package_weight_details (Section Break) field in DocType +#. 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Package Weight Details" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:73 +msgid "Packaging Slip From Delivery Note" +msgstr "" + +#. Label of the packed_item (Data) field in DocType 'Material Request Item' +#. Name of a DocType +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Packed Item" +msgstr "" + +#. Label of the packed_items (Table) field in DocType 'POS Invoice' +#. Label of the packed_items (Table) field in DocType 'Sales Invoice' +#. Label of the packed_items (Table) field in DocType 'Sales Order' +#. Label of the packed_items (Table) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Packed Items" +msgstr "" + +#: erpnext/stock/services/internal_transfer.py:69 +msgid "Packed Items cannot be transferred internally" +msgstr "" + +#. Label of the packed_qty (Float) field in DocType 'Delivery Note Item' +#. Label of the packed_qty (Float) field in DocType 'Packed Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Packed Qty" +msgstr "" + +#. Label of the packing_list (Section Break) field in DocType 'POS Invoice' +#. Label of the packing_list (Section Break) field in DocType 'Sales Invoice' +#. Label of the packing_list (Section Break) field in DocType 'Sales Order' +#. Label of the packing_list (Section Break) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Packing List" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/delivery_note/delivery_note.js:296 +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Packing Slip" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +msgid "Packing Slip Item" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/services/packing.py:61 +msgid "Packing Slip(s) cancelled" +msgstr "" + +#. Label of the packing_unit (Int) field in DocType 'Item Price' +#: erpnext/stock/doctype/item_price/item_price.json +msgid "Packing Unit" +msgstr "" + +#. Label of the include_break (Check) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Page Break After Each SoA" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:302 +msgid "Page preview" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Payment Request' +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/services/status.py:86 +msgid "Paid" +msgstr "" + +#. Label of the paid_amount (Currency) field in DocType 'Overdue Payment' +#. Label of the paid_amount (Currency) field in DocType 'Payment Entry' +#. Label of the paid_amount (Currency) field in DocType 'Payment Schedule' +#. Label of the paid_amount (Currency) field in DocType 'POS Invoice' +#. Label of the paid_amount (Currency) field in DocType 'Purchase Invoice' +#. Label of the paid_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:311 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:173 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:167 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:201 +#: erpnext/accounts/report/pos_register/pos_register.py:225 +#: erpnext/selling/page/point_of_sale/pos_payment.js:697 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:58 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:313 +msgid "Paid Amount" +msgstr "" + +#. Label of the base_paid_amount (Currency) field in DocType 'Payment Entry' +#. Label of the base_paid_amount (Currency) field in DocType 'Payment Schedule' +#. Label of the base_paid_amount (Currency) field in DocType 'POS Invoice' +#. Label of the base_paid_amount (Currency) field in DocType 'Purchase Invoice' +#. Label of the base_paid_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Paid Amount (Company Currency)" +msgstr "" + +#. Label of the paid_amount_after_tax (Currency) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Paid Amount After Tax" +msgstr "" + +#. Label of the base_paid_amount_after_tax (Currency) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Paid Amount After Tax (Company Currency)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1682 +msgid "Paid Amount cannot be greater than total negative outstanding amount {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:315 +msgid "Paid From" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:620 +msgid "Paid From (GL Account)" +msgstr "" + +#. Label of the paid_from_account_type (Data) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Paid From Account Type" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:329 +msgid "Paid To" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:608 +msgid "Paid To (GL Account)" +msgstr "" + +#. Label of the paid_to_account_type (Data) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Paid To Account Type" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:331 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:205 +msgid "Paid amount + Write Off Amount can not be greater than Grand Total" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:404 +msgid "Paid to" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pair" +msgstr "" + +#. Label of the pallets (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pallets" +msgstr "" + +#. Label of the parameter_group (Link) field in DocType 'Item Quality +#. Inspection Parameter' +#. Label of the parameter_group (Link) field in DocType 'Quality Inspection +#. Parameter' +#. Label of the parameter_group (Link) field in DocType 'Quality Inspection +#. Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Parameter Group" +msgstr "" + +#. Label of the group_name (Data) field in DocType 'Quality Inspection +#. Parameter Group' +#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json +msgid "Parameter Group Name" +msgstr "" + +#. Label of the param_name (Data) field in DocType 'Supplier Scorecard Scoring +#. Variable' +#. Label of the param_name (Data) field in DocType 'Supplier Scorecard +#. Variable' +#: erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.json +#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.json +msgid "Parameter Name" +msgstr "" + +#. Label of the req_params (Table) field in DocType 'Currency Exchange +#. Settings' +#. Label of the parameters (Table) field in DocType 'Quality Feedback' +#. Label of the parameters (Table) field in DocType 'Quality Feedback Template' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json +#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json +msgid "Parameters" +msgstr "" + +#. Label of the parcel_template (Link) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Parcel Template" +msgstr "" + +#. Label of the parcel_template_name (Data) field in DocType 'Shipment Parcel +#. Template' +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Parcel Template Name" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.py:97 +msgid "Parcel weight cannot be 0" +msgstr "" + +#. Label of the parcels_section (Section Break) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Parcels" +msgstr "" + +#. Label of the parent_account (Link) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Parent Account" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:384 +msgid "Parent Account Missing" +msgstr "" + +#. Label of the parent_batch (Link) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Parent Batch" +msgstr "" + +#. Label of the parent_company (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Parent Company" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:611 +msgid "Parent Company must be a group company" +msgstr "" + +#. Label of the parent_cost_center (Link) field in DocType 'Cost Center' +#: erpnext/accounts/doctype/cost_center/cost_center.json +msgid "Parent Cost Center" +msgstr "" + +#. Label of the parent_customer_group (Link) field in DocType 'Customer Group' +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Parent Customer Group" +msgstr "" + +#. Label of the parent_department (Link) field in DocType 'Department' +#: erpnext/setup/doctype/department/department.json +msgid "Parent Department" +msgstr "" + +#. Label of the parent_detail_docname (Data) field in DocType 'Packed Item' +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Parent Detail docname" +msgstr "" + +#. Label of the process_pr (Link) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Parent Document" +msgstr "" + +#. Label of the new_item_code (Link) field in DocType 'Product Bundle' +#. Label of the parent_item (Link) field in DocType 'Packed Item' +#: erpnext/selling/doctype/product_bundle/product_bundle.json +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Parent Item" +msgstr "" + +#. Label of the parent_item_group (Link) field in DocType 'Item Group' +#: erpnext/setup/doctype/item_group/item_group.json +msgid "Parent Item Group" +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.py:132 +msgid "Parent Item {0} must not be a Fixed Asset" +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.py:130 +msgid "Parent Item {0} must not be a Stock Item" +msgstr "" + +#. Label of the parent_location (Link) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Parent Location" +msgstr "" + +#. Label of the parent_quality_procedure (Link) field in DocType 'Quality +#. Procedure' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Parent Procedure" +msgstr "" + +#. Label of the parent_row_no (Data) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Parent Row No" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:610 +msgid "Parent Row No not found for {0}" +msgstr "" + +#. Label of the parent_sales_person (Link) field in DocType 'Sales Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Parent Sales Person" +msgstr "" + +#. Label of the parent_supplier_group (Link) field in DocType 'Supplier Group' +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Parent Supplier Group" +msgstr "" + +#. Label of the parent_task (Link) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Parent Task" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:169 +msgid "Parent Task {0} is not a Template Task" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:192 +msgid "Parent Task {0} must be a Group Task" +msgstr "" + +#. Label of the parent_territory (Link) field in DocType 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "Parent Territory" +msgstr "" + +#. Label of the parent_warehouse (Link) field in DocType 'Master Production +#. Schedule' +#. Label of the parent_warehouse (Link) field in DocType 'Sales Forecast' +#. Label of the parent_warehouse (Link) field in DocType 'Warehouse' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:47 +msgid "Parent Warehouse" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:166 +msgid "Parsed file is not in valid MT940 format or contains no transactions." +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:44 +msgid "Parsing Error" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:917 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:948 +msgid "Partial Match" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Partial Material Transferred" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:231 +msgid "Partial Payment in POS Transactions are not allowed." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1746 +msgid "Partial Stock Reservation" +msgstr "" + +#. Description of the 'Allow partial reservation' (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Partial stock can be reserved. For example, If you have a Sales Order of 100 units and the Available Stock is 90 units then a Stock Reservation Entry will be created for 90 units. " +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Timesheet' +#. Option for the 'Status' (Select) field in DocType 'Delivery Note' +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/doctype/timesheet/timesheet_list.js:5 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:24 +msgid "Partially Billed" +msgstr "" + +#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance +#. Schedule Detail' +#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance +#. Visit' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Partially Completed" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Partially Delivered" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:8 +msgid "Partially Depreciated" +msgstr "" + +#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Partially Fulfilled" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Quotation' +#. Option for the 'Status' (Select) field in DocType 'Material Request' +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/quotation/quotation_list.js:32 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:29 +msgid "Partially Ordered" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Payment Request' +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase +#. Order' +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales +#. Order' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Partially Paid" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Material Request' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Order' +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:16 +#: erpnext/stock/doctype/material_request/material_request_list.js:27 +#: erpnext/stock/doctype/material_request/material_request_list.js:36 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Partially Received" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Process Payment +#. Reconciliation' +#. Option for the 'Status' (Select) field in DocType 'Process Payment +#. Reconciliation Log' +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:133 +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:415 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Partially Reconciled" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Partially Reserved" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Partially Transferred" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Partially Used" +msgstr "" + +#. Option for the 'Billing Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt' +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:23 +msgid "Partly Billed" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Status' (Select) field in DocType 'Pick List' +#. Option for the 'Delivery Status' (Select) field in DocType 'Pick List' +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Partly Delivered" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Partly Paid" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Partly Paid and Discounted" +msgstr "" + +#. Label of the partner_type (Link) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Partner Type" +msgstr "" + +#. Label of the partner_website (Data) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Partner website" +msgstr "" + +#. Option for the 'Supplier Type' (Select) field in DocType 'Supplier' +#. Option for the 'Customer Type' (Select) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Partnership" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Parts Per Million" +msgstr "" + +#. Label of the party (Dynamic Link) field in DocType 'Bank Account' +#. Group in Bank Account's connections +#. Label of the party (Dynamic Link) field in DocType 'Bank Transaction' +#. Label of the party (Dynamic Link) field in DocType 'Bank Transaction Rule' +#. Label of the party (Dynamic Link) field in DocType 'Bank Transaction Rule +#. Accounts' +#. Label of the party (Dynamic Link) field in DocType 'Exchange Rate +#. Revaluation Account' +#. Label of the party (Dynamic Link) field in DocType 'GL Entry' +#. Label of the party (Dynamic Link) field in DocType 'Journal Entry Account' +#. Label of the party (Dynamic Link) field in DocType 'Journal Entry Template +#. Account' +#. Label of the party (Dynamic Link) field in DocType 'Payment Entry' +#. Label of the party (Dynamic Link) field in DocType 'Payment Ledger Entry' +#. Label of the party (Dynamic Link) field in DocType 'Payment Reconciliation' +#. Label of the party (Dynamic Link) field in DocType 'Payment Request' +#. Label of the party (Dynamic Link) field in DocType 'Process Payment +#. Reconciliation' +#. Label of the party (Dynamic Link) field in DocType 'Subscription' +#. Label of the party (Dynamic Link) field in DocType 'Tax Withholding Entry' +#. Label of the party (Data) field in DocType 'Unreconcile Payment Entries' +#. Label of the party (Dynamic Link) field in DocType 'Appointment' +#. Label of the party_name (Dynamic Link) field in DocType 'Opportunity' +#. Label of the party_name (Dynamic Link) field in DocType 'Quotation' +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:589 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:735 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:747 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:752 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:185 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:197 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:552 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:562 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:359 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:369 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:591 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:776 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:788 +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template_dashboard.py:16 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:167 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:196 +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:11 +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:105 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:82 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:65 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1148 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:82 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:147 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 +#: erpnext/accounts/report/general_ledger/general_ledger.js:74 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:89 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:25 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:26 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:57 +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:55 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:36 +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:50 +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:135 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/stock/doctype/item/item_prices.html:83 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:86 +msgid "Party" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/party_account/party_account.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1160 +msgid "Party Account" +msgstr "" + +#. Label of the party_account_currency (Link) field in DocType 'Payment +#. Request' +#. Label of the party_account_currency (Link) field in DocType 'POS Invoice' +#. Label of the party_account_currency (Link) field in DocType 'Purchase +#. Invoice' +#. Label of the party_account_currency (Link) field in DocType 'Sales Invoice' +#. Label of the party_account_currency (Link) field in DocType 'Purchase Order' +#. Label of the party_account_currency (Link) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Party Account Currency" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Party Account No." +msgstr "" + +#. Label of the bank_party_account_number (Data) field in DocType 'Bank +#. Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Party Account No. (Bank Statement)" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:126 +msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same" +msgstr "" + +#. Label of the party_bank_account (Link) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Party Bank Account" +msgstr "" + +#. Label of the section_break_11 (Section Break) field in DocType 'Bank +#. Account' +#. Label of the party_details (Section Break) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Party Details" +msgstr "" + +#. Label of the party_full_name (Data) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Party Full Name" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Party IBAN" +msgstr "" + +#. Label of the bank_party_iban (Data) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Party IBAN (Bank Statement)" +msgstr "" + +#. Label of the party (Dynamic Link) field in DocType 'Opening Invoice Creation +#. Tool Item' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +msgid "Party ID" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Pricing Rule' +#. Label of the section_break_8 (Section Break) field in DocType 'Promotional +#. Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Party Information" +msgstr "" + +#. Label of the party_item_code (Data) field in DocType 'Blanket Order Item' +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +msgid "Party Item Code" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/party_link/party_link.json +msgid "Party Link" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:49 +msgid "Party Mismatch" +msgstr "" + +#. Label of the party_name (Data) field in DocType 'Opening Invoice Creation +#. Tool Item' +#. Label of the party_name (Data) field in DocType 'Payment Entry' +#. Label of the party_name (Data) field in DocType 'Payment Request' +#. Label of the party_name (Dynamic Link) field in DocType 'Contract' +#. Label of the party (Dynamic Link) field in DocType 'Party Specific Item' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:111 +#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 +msgid "Party Name" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Party Name/Account Holder" +msgstr "" + +#. Label of the bank_party_name (Data) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Party Name/Account Holder (Bank Statement)" +msgstr "" + +#. Label of the party_not_required (Check) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Party Not Required" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +msgid "Party Specific Item" +msgstr "" + +#. Label of the party_type (Link) field in DocType 'Bank Account' +#. Label of the party_type (Link) field in DocType 'Bank Transaction' +#. Label of the party_type (Link) field in DocType 'Bank Transaction Rule' +#. Label of the party_type (Link) field in DocType 'Bank Transaction Rule +#. Accounts' +#. Label of the party_type (Link) field in DocType 'Exchange Rate Revaluation +#. Account' +#. Label of the party_type (Link) field in DocType 'GL Entry' +#. Label of the party_type (Link) field in DocType 'Journal Entry Account' +#. Label of the party_type (Link) field in DocType 'Journal Entry Template +#. Account' +#. Label of the party_type (Link) field in DocType 'Opening Invoice Creation +#. Tool Item' +#. Label of the party_type (Link) field in DocType 'Payment Entry' +#. Label of the party_type (Link) field in DocType 'Payment Ledger Entry' +#. Label of the party_type (Link) field in DocType 'Payment Reconciliation' +#. Label of the party_type (Link) field in DocType 'Payment Request' +#. Label of the party_type (Link) field in DocType 'Process Payment +#. Reconciliation' +#. Label of the party_type (Link) field in DocType 'Subscription' +#. Label of the party_type (Link) field in DocType 'Tax Withholding Entry' +#. Label of the party_type (Data) field in DocType 'Unreconcile Payment +#. Entries' +#. Label of the party_type (Select) field in DocType 'Contract' +#. Label of the party_type (Select) field in DocType 'Party Specific Item' +#. Name of a DocType +#. Label of the party_type (Link) field in DocType 'Party Type' +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:614 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:170 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:409 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:292 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:640 +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:92 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:69 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:52 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1142 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:69 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:141 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 +#: erpnext/accounts/report/general_ledger/general_ledger.js:65 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:86 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:15 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:15 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:49 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:45 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/report/address_and_contacts/address_and_contacts.js:9 +#: erpnext/setup/doctype/party_type/party_type.json +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:80 +msgid "Party Type" +msgstr "" + +#: erpnext/accounts/party.py:845 +msgid "Party Type and Party can only be set for Receivable / Payable account

        {0}" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +msgid "Party Type and Party is mandatory for {0} account" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:174 +msgid "Party Type and Party is required for Receivable / Payable account {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:535 +#: erpnext/accounts/party.py:434 +msgid "Party Type is mandatory" +msgstr "" + +#. Label of the party_user (Link) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Party User" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:72 +msgid "Party account is required to create a payment entry." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:475 +msgid "Party can only be one of {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:538 +msgid "Party is mandatory" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:189 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:199 +msgid "Party is required" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 +msgid "Party is required create a payment entry." +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 +msgid "Party type is required to create a payment entry." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pascal" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Quality Review' +#. Option for the 'Status' (Select) field in DocType 'Quality Review Objective' +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json +msgid "Passed" +msgstr "" + +#. Label of the passport_details_section (Section Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Passport Details" +msgstr "" + +#. Label of the passport_number (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Passport Number" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:941 +msgid "Password Required" +msgstr "" + +#. Description of the 'Statement PDF Password' (Password) field in DocType +#. 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Password used to open password-protected PDF statements for this account. Stored encrypted." +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription_list.js:10 +msgid "Past Due Date" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:152 +msgid "Past Events" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Job Card Operation' +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:96 +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:25 +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:68 +msgid "Pause" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:662 +msgid "Pause Job" +msgstr "" + +#. Name of a DocType +#: erpnext/support/doctype/pause_sla_on_status/pause_sla_on_status.json +msgid "Pause SLA On Status" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Process Payment +#. Reconciliation' +#. Option for the 'Status' (Select) field in DocType 'Process Payment +#. Reconciliation Log' +#. Option for the 'Status' (Select) field in DocType 'Process Period Closing +#. Voucher' +#. Option for the 'Status' (Select) field in DocType 'Process Period Closing +#. Voucher Detail' +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +msgid "Paused" +msgstr "" + +#. Option for the 'Payment Type' (Select) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Pay" +msgstr "" + +#: erpnext/templates/pages/order.html:43 +msgctxt "Amount" +msgid "Pay" +msgstr "" + +#. Label of the pay_to_recd_from (Data) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Pay To / Recd From" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Option for the 'Account Type' (Select) field in DocType 'Payment Ledger +#. Entry' +#. Option for the 'Account Type' (Select) field in DocType 'Party Type' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/account_balance/account_balance.js:54 +#: erpnext/setup/doctype/party_type/party_type.json +msgid "Payable" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1158 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209 +#: erpnext/accounts/report/purchase_register/purchase_register.py:196 +#: erpnext/accounts/report/purchase_register/purchase_register.py:237 +msgid "Payable Account" +msgstr "" + +#. Label of the payables (Check) field in DocType 'Email Digest' +#. Label of a Workspace Sidebar Item +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/workspace_sidebar/invoicing.json +msgid "Payables" +msgstr "" + +#. Label of the payer_settings (Column Break) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Payer Settings" +msgstr "" + +#. Option for the 'Posting Date inheritance for exchange gain / loss' (Select) +#. field in DocType 'Accounts Settings' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:78 +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:300 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/dunning/dunning.js:51 +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_dashboard.py:10 +#: erpnext/accounts/doctype/payment_request/payment_request_dashboard.py:12 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:82 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:124 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py:20 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:395 +#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24 +#: erpnext/selling/doctype/sales_order/sales_order.js:1213 +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:31 +msgid "Payment" +msgstr "" + +#. Label of the payment_account (Link) field in DocType 'Payment Gateway +#. Account' +#. Label of the payment_account (Read Only) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Account" +msgstr "" + +#. Label of the payment_amount (Currency) field in DocType 'Overdue Payment' +#. Label of the payment_amount (Currency) field in DocType 'Payment Schedule' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:52 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:309 +msgid "Payment Amount" +msgstr "" + +#. Label of the base_payment_amount (Currency) field in DocType 'Payment +#. Schedule' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +msgid "Payment Amount (Company Currency)" +msgstr "" + +#. Label of the payment_channel (Select) field in DocType 'Payment Gateway +#. Account' +#. Label of the payment_channel (Select) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Channel" +msgstr "" + +#. Label of the deductions (Table) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Payment Deductions or Loss" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:408 +msgid "Payment Details" +msgstr "" + +#. Label of the payment_document (Link) field in DocType 'Bank Clearance +#. Detail' +#. Label of the payment_document (Link) field in DocType 'Bank Transaction +#. Payments' +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:104 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:314 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:99 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:112 +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:74 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:134 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:81 +msgid "Payment Document" +msgstr "" + +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:26 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:68 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:128 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:75 +msgid "Payment Document Type" +msgstr "" + +#. Label of the due_date (Date) field in DocType 'POS Invoice' +#. Label of the due_date (Date) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:110 +msgid "Payment Due Date" +msgstr "" + +#. Label of the payment_entries (Table) field in DocType 'Bank Clearance' +#. Label of the payment_entries (Table) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Payment Entries" +msgstr "" + +#: erpnext/accounts/utils.py:1160 +msgid "Payment Entries {0} are un-linked" +msgstr "" + +#. Label of the payment_entry (Dynamic Link) field in DocType 'Bank Clearance +#. Detail' +#. Label of the payment_entry (Dynamic Link) field in DocType 'Bank Transaction +#. Payments' +#. Option for the 'Classify As' (Select) field in DocType 'Bank Transaction +#. Rule' +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Name of a DocType +#. Option for the 'Payment Order Type' (Select) field in DocType 'Payment +#. Order' +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:270 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:59 +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.js:27 +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/print_format/bank_and_cash_payment_voucher/bank_and_cash_payment_voucher.html:12 +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:32 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:8 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Payment Entry" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:342 +msgid "Payment Entry Created" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json +msgid "Payment Entry Deduction" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Payment Entry Reference" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:636 +msgid "Payment Entry already exists" +msgstr "" + +#: erpnext/accounts/utils.py:657 +msgid "Payment Entry has been modified after you pulled it. Please pull it again." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:176 +#: erpnext/accounts/doctype/payment_request/payment_request.py:796 +msgid "Payment Entry is already created" +msgstr "" + +#: erpnext/accounts/services/advances.py:122 +msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:378 +msgid "Payment Failed" +msgstr "" + +#. Label of the party_section (Section Break) field in DocType 'Bank +#. Transaction' +#. Label of the party_section (Section Break) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Payment From / To" +msgstr "" + +#. Label of the payment_gateway (Link) field in DocType 'Payment Gateway +#. Account' +#. Label of the payment_gateway (Read Only) field in DocType 'Payment Request' +#. Label of the payment_gateway (Link) field in DocType 'Subscription Plan' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Payment Gateway" +msgstr "" + +#. Name of a DocType +#. Label of the payment_gateway_account (Link) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Gateway Account" +msgstr "" + +#: erpnext/accounts/utils.py:1527 +msgid "Payment Gateway Account not created, please create one manually." +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Gateway Details" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:283 +#: erpnext/accounts/doctype/payment_request/payment_request.py:290 +#: erpnext/accounts/doctype/payment_request/payment_request.py:295 +msgid "Payment Initialization Failed" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/payment_ledger/payment_ledger.json +msgid "Payment Ledger" +msgstr "" + +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:260 +msgid "Payment Ledger Balance" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +msgid "Payment Ledger Entry" +msgstr "" + +#. Label of the payment_limit (Int) field in DocType 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Payment Limit" +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.js:50 +#: erpnext/accounts/report/pos_register/pos_register.py:135 +#: erpnext/accounts/report/pos_register/pos_register.py:232 +#: erpnext/selling/page/point_of_sale/pos_payment.js:25 +msgid "Payment Method" +msgstr "" + +#. Label of the section_break_11 (Section Break) field in DocType 'POS Profile' +#. Label of the payments (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Payment Methods" +msgstr "" + +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:25 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:41 +msgid "Payment Mode" +msgstr "" + +#. Label of the payment_options_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Payment Options" +msgstr "" + +#. Label of the payment_order (Link) field in DocType 'Journal Entry' +#. Label of the payment_order (Link) field in DocType 'Payment Entry' +#. Name of a DocType +#. Label of the payment_order (Link) field in DocType 'Payment Request' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Payment Order" +msgstr "" + +#. Label of the references (Table) field in DocType 'Payment Order' +#. Name of a DocType +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +msgid "Payment Order Reference" +msgstr "" + +#. Label of the payment_order_status (Select) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Payment Order Status" +msgstr "" + +#. Label of the payment_order_type (Select) field in DocType 'Payment Order' +#: erpnext/accounts/doctype/payment_order/payment_order.json +msgid "Payment Order Type" +msgstr "" + +#. Option for the 'Payment Order Status' (Select) field in DocType 'Payment +#. Entry' +#. Option for the 'Status' (Select) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Ordered" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Payment Period Based On Invoice Date" +msgstr "" + +#. Label of the payment_plan_section (Section Break) field in DocType +#. 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Payment Plan" +msgstr "" + +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:4 +msgid "Payment Receipt Note" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:359 +msgid "Payment Received" +msgstr "" + +#. Name of a DocType +#. Label of the payment_reconciliation (Table) field in DocType 'POS Closing +#. Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Payment Reconciliation" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +msgid "Payment Reconciliation Allocation" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +msgid "Payment Reconciliation Invoice" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:139 +msgid "Payment Reconciliation Job: {0} is running for this party. Can't reconcile now." +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +msgid "Payment Reconciliation Payment" +msgstr "" + +#. Label of the section_break_jpd0 (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Payment Reconciliation Settings" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:117 +msgid "Payment Recorded" +msgstr "" + +#. Label of the payment_reference (Data) field in DocType 'Payment Order +#. Reference' +#. Name of a DocType +#. Label of the payment_reference (Table) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_reference/payment_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Reference" +msgstr "" + +#. Label of the references (Table) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Payment References" +msgstr "" + +#. Label of the payment_request_section (Section Break) field in DocType +#. 'Accounts Settings' +#. Label of the payment_request (Link) field in DocType 'Payment Entry +#. Reference' +#. Option for the 'Payment Order Type' (Select) field in DocType 'Payment +#. Order' +#. Label of the payment_request (Link) field in DocType 'Payment Order +#. Reference' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/payment_order/payment_order.js:19 +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:146 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:140 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:403 +#: erpnext/selling/doctype/sales_order/sales_order.js:1205 +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Payment Request" +msgstr "" + +#. Label of the payment_request_outstanding (Float) field in DocType 'Payment +#. Entry Reference' +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Payment Request Outstanding" +msgstr "" + +#. Label of the payment_request_type (Select) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Request Type" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:869 +msgid "Payment Request for {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:810 +msgid "Payment Request is already created" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:454 +msgid "Payment Request took too long to respond. Please try requesting for payment again." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:727 +msgid "Payment Requests cannot be created against: {0}" +msgstr "" + +#. Description of the 'Create payment requests in Draft status' (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Payment Requests made from Sales / Purchase Invoice will be put in Draft explicitly" +msgstr "" + +#. Label of the payment_schedule (Data) field in DocType 'Overdue Payment' +#. Label of the payment_schedule (Link) field in DocType 'Payment Reference' +#. Name of a DocType +#. Label of the payment_schedule (Table) field in DocType 'POS Invoice' +#. Label of the payment_schedule (Table) field in DocType 'Purchase Invoice' +#. Label of the payment_schedule (Table) field in DocType 'Sales Invoice' +#. Label of the payment_schedule (Table) field in DocType 'Purchase Order' +#. Label of the payment_schedule (Table) field in DocType 'Quotation' +#. Label of the payment_schedule (Table) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_reference/payment_reference.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/services/payment_schedule.py:243 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Payment Schedule" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:749 +msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:503 +msgid "Payment Schedules" +msgstr "" + +#. Label of the payment_term (Link) field in DocType 'Overdue Payment' +#. Label of the payment_term (Link) field in DocType 'Payment Entry Reference' +#. Label of the payment_term (Link) field in DocType 'Payment Reference' +#. Label of the payment_term (Link) field in DocType 'Payment Schedule' +#. Name of a DocType +#. Label of the payment_term (Link) field in DocType 'Payment Terms Template +#. Detail' +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/payment_reference/payment_reference.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 +#: erpnext/accounts/report/gross_profit/gross_profit.py:449 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Payment Term" +msgstr "" + +#. Label of the payment_term_name (Data) field in DocType 'Payment Term' +#: erpnext/accounts/doctype/payment_term/payment_term.json +msgid "Payment Term Name" +msgstr "" + +#. Label of the payment_term_outstanding (Float) field in DocType 'Payment +#. Entry Reference' +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Payment Term Outstanding" +msgstr "" + +#. Label of the terms (Table) field in DocType 'Payment Terms Template' +#. Label of the payment_schedule_section (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the payment_schedule_section (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the payment_schedule_section (Section Break) field in DocType +#. 'Sales Invoice' +#. Label of the payment_schedule_section (Section Break) field in DocType +#. 'Purchase Order' +#. Label of the payment_schedule_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the payment_terms_section (Section Break) field in DocType 'Sales +#. Order' +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Payment Terms" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.json +msgid "Payment Terms Status for Sales Order" +msgstr "" + +#. Name of a DocType +#. Label of the payment_terms_template (Link) field in DocType 'POS Invoice' +#. Label of the payment_terms_template (Link) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the payment_terms_template (Link) field in DocType 'Purchase +#. Invoice' +#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice' +#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order' +#. Label of the payment_terms (Link) field in DocType 'Supplier' +#. Label of the payment_terms (Link) field in DocType 'Customer' +#. Label of the payment_terms_template (Link) field in DocType 'Quotation' +#. Label of the payment_terms_template (Link) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:86 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:96 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:124 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:102 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Payment Terms Template" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Payment Terms Template Detail" +msgstr "" + +#. Description of the 'Automatically fetch Payment Terms from Order/Quotation' +#. (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Payment Terms from orders will be fetched into the invoices as is" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:45 +msgid "Payment Terms:" +msgstr "" + +#. Label of the payment_type (Select) field in DocType 'Payment Entry' +#. Label of the payment_type (Data) field in DocType 'Payment Entry Reference' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:28 +msgid "Payment Type" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 +msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgstr "" + +#. Label of the payment_url (Data) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment URL" +msgstr "" + +#: erpnext/accounts/utils.py:1148 +msgid "Payment Unlink Error" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:196 +msgid "Payment against {0} {1} cannot be greater than Outstanding Amount {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:808 +msgid "Payment amount cannot be less than or equal to 0" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:294 +msgid "Payment gateway {0} failed to create a payment session" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:183 +msgid "Payment methods are mandatory. Please add at least one payment method." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:372 +msgid "Payment methods refreshed. Please review before proceeding." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:466 +#: erpnext/selling/page/point_of_sale/pos_payment.js:366 +msgid "Payment of {0} received successfully." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:373 +msgid "Payment of {0} received successfully. Waiting for other requests to complete..." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:393 +msgid "Payment related to {0} is not completed" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:443 +msgid "Payment request failed" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:844 +msgid "Payment term {0} not used in {1}" +msgstr "" + +#. Label of the payments_tab (Tab Break) field in DocType 'Accounts Settings' +#. Label of the payments (Table) field in DocType 'Cashier Closing' +#. Label of the payments (Table) field in DocType 'Payment Reconciliation' +#. Label of the payments_section (Section Break) field in DocType 'POS Invoice' +#. Label of the payments_tab (Tab Break) field in DocType 'POS Invoice' +#. Label of the payments_section (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the payments_tab (Tab Break) field in DocType 'Purchase Invoice' +#. Label of the payments_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the payments_tab (Tab Break) field in DocType 'Sales Invoice' +#. Label of a Card Break in the Invoicing Workspace +#. Option for the 'Hold Type' (Select) field in DocType 'Supplier' +#. Label of a Desktop Icon +#. Label of a Workspace Sidebar Item +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:286 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:28 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:44 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier/supplier_dashboard.py:12 +#: erpnext/desktop_icon/payments.json +#: erpnext/selling/doctype/customer/customer_dashboard.py:21 +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:30 +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Payments" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:342 +msgid "Payments could not be updated." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:336 +msgid "Payments updated." +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Payroll Entry" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267 +msgid "Payroll Payable" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/doctype/timesheet/timesheet_list.js:13 +msgid "Payslip" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Peck (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Peck (US)" +msgstr "" + +#. Label of the pegged_against (Link) field in DocType 'Pegged Currency +#. Details' +#: erpnext/accounts/doctype/pegged_currency_details/pegged_currency_details.json +msgid "Pegged Against" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pegged_currencies/pegged_currencies.json +msgid "Pegged Currencies" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pegged_currency_details/pegged_currency_details.json +msgid "Pegged Currency Details" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:93 +msgid "Pending Activities" +msgstr "" + +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:65 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:65 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:293 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:317 +msgid "Pending Amount" +msgstr "" + +#. Label of the pending_qty (Float) field in DocType 'Job Card' +#. Label of the pending_qty (Float) field in DocType 'Production Plan Item' +#. Label of the pending_qty (Float) field in DocType 'Work Order Operation' +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:256 +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:349 +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182 +#: erpnext/selling/doctype/sales_order/sales_order.js:1726 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:46 +msgid "Pending Qty" +msgstr "" + +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:54 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:44 +#: erpnext/manufacturing/doctype/job_card/job_card.js:272 +msgid "Pending Quantity" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:70 +msgid "Pending Quantity cannot be greater than {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:62 +msgid "Pending Quantity cannot be less than 0" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Task' +#. Option in a Select field in the tasks Web Form +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/web_form/tasks/tasks.json +msgid "Pending Review" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Pending SO Items For Purchase Request" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:123 +msgid "Pending Work Order" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:170 +msgid "Pending activities for today" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:277 +msgid "Pending processing" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +msgid "Pending quantity cannot be greater than the for quantity." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +msgid "Pending quantity cannot be negative." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:36 +msgid "Pension Funds" +msgstr "" + +#. Description of the 'Shift Time (In Hours)' (Int) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Per Day" +msgstr "" + +#. Description of the 'Total Workstation Time (In Hours)' (Int) field in +#. DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Per Day\n" +"Shift Time (In Hours) * No of Workstations * No of Shift" +msgstr "" + +#. Option for the 'Evaluation Period' (Select) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Per Month" +msgstr "" + +#. Label of the per_received (Percent) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Per Received" +msgstr "" + +#. Label of the per_transferred (Percent) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Per Transferred" +msgstr "" + +#. Description of the 'Manufacturing Time' (Int) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Per Unit Time in Mins" +msgstr "" + +#. Option for the 'Evaluation Period' (Select) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Per Week" +msgstr "" + +#. Option for the 'Evaluation Period' (Select) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Per Year" +msgstr "" + +#. Label of the accounts (Table) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Per-Company Accounts" +msgstr "" + +#. Description of the 'PDF Tables' (JSON) field in DocType 'Bank Statement +#. Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Per-table extraction data for PDF statements (rows, bbox, page image, column mapping). Edited via the banking app." +msgstr "" + +#. Label of the percentage (Percent) field in DocType 'Cost Center Allocation +#. Percentage' +#: erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.json +msgid "Percentage (%)" +msgstr "" + +#. Label of the percentage_allocation (Float) field in DocType 'Monthly +#. Distribution Percentage' +#: erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.json +msgid "Percentage Allocation" +msgstr "" + +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.py:57 +msgid "Percentage Allocation should be equal to 100%" +msgstr "" + +#. Description of the 'Over Billing Allowance (%)' (Float) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Percentage by which over-billing is allowed against a Sales/Purchase Order for this item. If not set, value from Accounts Settings will be used." +msgstr "" + +#. Description of the 'Over Delivery/Receipt Allowance (%)' (Float) field in +#. DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Percentage by which over-delivery or over-receipt is allowed against a Sales/Purchase Order for this item. If not set, value from Stock Settings will be used." +msgstr "" + +#. Description of the 'Blanket Order Allowance (%)' (Float) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Percentage you are allowed to order beyond the Blanket Order quantity." +msgstr "" + +#. Description of the 'Blanket Order Allowance (%)' (Float) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Percentage you are allowed to sell beyond the Blanket Order quantity." +msgstr "" + +#. Description of the 'Over Transfer Allowance (%)' (Float) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Percentage you are allowed to transfer more against the quantity ordered. For example: If you have ordered 100 units. and your Allowance is 10% then you are allowed to transfer 110 units." +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:6 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:442 +msgid "Perception Analysis" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.html:138 +#: erpnext/accounts/report/cash_flow/cash_flow.html:138 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:138 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:60 +msgid "Period Based On" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:146 +msgid "Period Closed" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:69 +#: erpnext/accounts/report/trial_balance/trial_balance.js:89 +msgid "Period Closing Entry For Current Period" +msgstr "" + +#. Label of the period_closing_voucher (Link) field in DocType 'Account Closing +#. Balance' +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Period Closing Voucher" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:504 +msgid "Period Closing Voucher {0} GL Entry Cancellation Failed" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:483 +msgid "Period Closing Voucher {0} GL Entry Processing Failed" +msgstr "" + +#. Label of the period_details_section (Section Break) field in DocType 'POS +#. Closing Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "Period Details" +msgstr "" + +#. Label of the period_end_date (Date) field in DocType 'Period Closing +#. Voucher' +#. Label of the period_end_date (Datetime) field in DocType 'POS Closing Entry' +#. Label of the period_end_date (Date) field in DocType 'POS Opening Entry' +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +msgid "Period End Date" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:68 +msgid "Period End Date cannot be greater than Fiscal Year End Date" +msgstr "" + +#. Option for the 'Balance Type' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Period Movement (Debits - Credits)" +msgstr "" + +#. Label of the period_name (Data) field in DocType 'Accounting Period' +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +msgid "Period Name" +msgstr "" + +#. Label of the total_score (Percent) field in DocType 'Supplier Scorecard +#. Period' +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Period Score" +msgstr "" + +#. Label of the section_break_23 (Section Break) field in DocType 'Pricing +#. Rule' +#. Label of the period_settings_section (Section Break) field in DocType +#. 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Period Settings" +msgstr "" + +#. Label of the period_start_date (Date) field in DocType 'Period Closing +#. Voucher' +#. Label of the period_start_date (Datetime) field in DocType 'POS Closing +#. Entry' +#. Label of the period_start_date (Datetime) field in DocType 'POS Opening +#. Entry' +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +msgid "Period Start Date" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:65 +msgid "Period Start Date cannot be greater than Period End Date" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:62 +msgid "Period Start Date must be {0}" +msgstr "" + +#. Label of the period_to_date (Datetime) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Period To Date" +msgstr "" + +#: erpnext/public/js/purchase_trends_filters.js:35 +msgid "Period based On" +msgstr "" + +#. Label of the period_from_date (Datetime) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Period_from_date" +msgstr "" + +#. Label of the section_break_tcvw (Section Break) field in DocType 'Journal +#. Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Periodic Accounting" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Periodic Accounting Entry" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:284 +msgid "Periodic Accounting Entry is not allowed for company {0} with perpetual inventory enabled" +msgstr "" + +#. Label of the periodic_entry_difference_account (Link) field in DocType +#. 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Periodic Entry Difference Account" +msgstr "" + +#. Label of the periodicity (Data) field in DocType 'Asset Maintenance Log' +#. Label of the periodicity (Select) field in DocType 'Asset Maintenance Task' +#. Label of the periodicity (Select) field in DocType 'Maintenance Schedule +#. Item' +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:72 +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:33 +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:54 +#: erpnext/public/js/financial_statements.js:451 +msgid "Periodicity" +msgstr "" + +#. Label of the permanent_address (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Permanent Address" +msgstr "" + +#. Label of the permanent_accommodation_type (Select) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Permanent Address Is" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:73 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:77 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:83 +msgid "Permission Denied" +msgstr "" + +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:19 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:18 +msgid "Perpetual inventory required for the company {0} to view this report." +msgstr "" + +#. Label of the personal_details (Tab Break) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Personal Details" +msgstr "" + +#. Option for the 'Preferred Contact Email' (Select) field in DocType +#. 'Employee' +#. Label of the personal_email (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Personal Email" +msgstr "" + +#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Petrol" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:113 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:110 +msgid "Phantom BOM cannot be created for stock item {0}." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom_item_preview.html:16 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:321 +msgid "Phantom Item" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:430 +msgid "Phantom Item is mandatory" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:234 +msgid "Pharmaceutical" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:37 +msgid "Pharmaceuticals" +msgstr "" + +#. Label of the phone_ext (Data) field in DocType 'Lead' +#. Label of the phone_ext (Data) field in DocType 'Opportunity' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Phone Ext." +msgstr "" + +#. Label of the phone_no (Data) field in DocType 'Company' +#. Label of the phone_no (Data) field in DocType 'Warehouse' +#: erpnext/public/js/print.js:82 erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Phone No" +msgstr "" + +#. Label of the phone_number (Data) field in DocType 'Payment Request' +#. Label of the customer_phone_number (Data) field in DocType 'Appointment' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:957 +msgid "Phone Number" +msgstr "" + +#. Name of a DocType +#. Label of the pick_list (Link) field in DocType 'Stock Entry' +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/sales_order/sales_order.js:1066 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:199 +#: erpnext/stock/doctype/material_request/material_request.js:156 +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:154 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Pick List" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:268 +msgid "Pick List Incomplete" +msgstr "" + +#. Label of the pick_list_item (Data) field in DocType 'Sales Invoice Item' +#. Label of the pick_list_item (Data) field in DocType 'Delivery Note Item' +#. Name of a DocType +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Pick List Item" +msgstr "" + +#. Label of the pick_manually (Check) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Pick Manually" +msgstr "" + +#. Label of the pick_serial_and_batch (Button) field in DocType 'Asset Repair +#. Consumed Item' +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +msgid "Pick Serial / Batch" +msgstr "" + +#. Label of the pick_serial_and_batch_based_on (Select) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Pick Serial / Batch Based On" +msgstr "" + +#. Label of the pick_serial_and_batch (Button) field in DocType 'Sales Invoice +#. Item' +#. Label of the pick_serial_and_batch (Button) field in DocType 'Delivery Note +#. Item' +#. Label of the pick_serial_and_batch (Button) field in DocType 'Packed Item' +#. Label of the pick_serial_and_batch (Button) field in DocType 'Pick List +#. Item' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Pick Serial / Batch No" +msgstr "" + +#. Label of the picked_qty (Float) field in DocType 'Material Request Item' +#. Label of the picked_qty (Float) field in DocType 'Packed Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Picked Qty" +msgstr "" + +#. Label of the picked_qty (Float) field in DocType 'Sales Order Item' +#. Label of the picked_qty (Float) field in DocType 'Pick List Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Picked Qty (in Stock UOM)" +msgstr "" + +#. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup" +msgstr "" + +#. Label of the pickup_contact_person (Link) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup Contact Person" +msgstr "" + +#. Label of the pickup_date (Date) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup Date" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:398 +msgid "Pickup Date cannot be before this day" +msgstr "" + +#. Label of the pickup (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup From" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.py:107 +msgid "Pickup To time should be greater than Pickup From time" +msgstr "" + +#. Label of the pickup_type (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup Type" +msgstr "" + +#. Label of the heading_pickup_from (Heading) field in DocType 'Shipment' +#. Label of the pickup_from_type (Select) field in DocType 'Shipment' +#. Label of the pickup_from (Time) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup from" +msgstr "" + +#. Label of the pickup_to (Time) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup to" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pint (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pint (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pint, Dry (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pint, Liquid (US)" +msgstr "" + +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:8 +msgid "Pipeline By" +msgstr "" + +#. Label of the place_of_issue (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Place of Issue" +msgstr "" + +#. Label of the plaid_access_token (Data) field in DocType 'Bank' +#: erpnext/accounts/doctype/bank/bank.json +msgid "Plaid Access Token" +msgstr "" + +#. Label of the plaid_client_id (Data) field in DocType 'Plaid Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "Plaid Client ID" +msgstr "" + +#. Label of the plaid_env (Select) field in DocType 'Plaid Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "Plaid Environment" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +msgid "Plaid Link Failed" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +msgid "Plaid Link Refresh Required" +msgstr "" + +#: erpnext/accounts/doctype/bank/bank.js:128 +msgid "Plaid Link Updated" +msgstr "" + +#. Label of the plaid_secret (Password) field in DocType 'Plaid Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "Plaid Secret" +msgstr "" + +#. Label of a Link in the Invoicing Workspace +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +#: erpnext/workspace_sidebar/banking.json +msgid "Plaid Settings" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +msgid "Plaid transactions sync error" +msgstr "" + +#. Label of the plan (Link) field in DocType 'Subscription Plan Detail' +#: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json +msgid "Plan" +msgstr "" + +#. Label of the plan_name (Data) field in DocType 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Plan Name" +msgstr "" + +#. Description of the 'Use Multi-Level BOM' (Check) field in DocType 'Work +#. Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Plan material for sub-assemblies" +msgstr "" + +#. Description of the 'Capacity Planning For (Days)' (Int) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Plan operations X days in advance" +msgstr "" + +#. Description of the 'Allow Overtime' (Check) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Plan time logs outside Workstation working hours" +msgstr "" + +#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset +#. Maintenance Log' +#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset +#. Maintenance Task' +#. Option for the 'Status' (Select) field in DocType 'Sales Forecast' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast_list.js:6 +msgid "Planned" +msgstr "" + +#. Label of the planned_end_date (Datetime) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:236 +msgid "Planned End Date" +msgstr "" + +#. Label of the planned_end_time (Datetime) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Planned End Time" +msgstr "" + +#. Label of the planned_operating_cost (Currency) field in DocType 'Work Order' +#. Label of the planned_operating_cost (Currency) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Planned Operating Cost" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1043 +msgid "Planned Purchase Order" +msgstr "" + +#. Label of the planned_qty (Float) field in DocType 'Master Production +#. Schedule Item' +#. Label of the planned_qty (Float) field in DocType 'Production Plan Item' +#. Label of the planned_qty (Float) field in DocType 'Bin' +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1031 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:150 +msgid "Planned Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:199 +msgid "Planned Qty: Quantity, for which, Work Order has been raised, but is pending to be manufactured." +msgstr "" + +#. Label of the planned_qty (Float) field in DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:109 +msgid "Planned Quantity" +msgstr "" + +#. Label of the planned_start_date (Datetime) field in DocType 'Production Plan +#. Item' +#. Label of the planned_start_date (Datetime) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:230 +msgid "Planned Start Date" +msgstr "" + +#. Label of the planned_start_time (Datetime) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Planned Start Time" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1048 +msgid "Planned Work Order" +msgstr "" + +#. Label of the mps_tab (Tab Break) field in DocType 'Master Production +#. Schedule' +#. Label of the item_balance (Section Break) field in DocType 'Quotation Item' +#. Label of the planning_section (Section Break) field in DocType 'Sales Order +#. Item' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:262 +msgid "Planning" +msgstr "" + +#. Label of the sb_4 (Section Break) field in DocType 'Subscription' +#. Label of the plans (Table) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Plans" +msgstr "" + +#. Label of the plant_dashboard (HTML) field in DocType 'Plant Floor' +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +msgid "Plant Dashboard" +msgstr "" + +#. Name of a DocType +#. Label of the plant_floor (Link) field in DocType 'Workstation' +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/public/js/plant_floor_visual/visual_plant.js:53 +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Plant Floor" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102 +msgid "Plants and Machineries" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:630 +msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 +msgid "Please Select a Company" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 +msgid "Please Select a Company." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:162 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:204 +msgid "Please Select a Customer" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please Select a Supplier" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:161 +msgid "Please Set Priority" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +msgid "Please Set Supplier Group in Buying Settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +msgid "Please Specify Account" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.py:128 +msgid "Please add 'Supplier' role to user {0}." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +msgid "Please add Mode of payments and opening balance details." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:39 +msgid "Please add Operations first." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:210 +msgid "Please add Request for Quotation to the sidebar in Portal Settings." +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:421 +msgid "Please add Root Account for - {0}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +msgid "Please add a Temporary Opening account in Chart of Accounts" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:77 +msgid "Please add an account for the Bank Entry rule." +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:170 +msgid "Please add at least one naming series." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:914 +msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add atleast one Serial No / Batch No" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 +msgid "Please add the Bank Account column" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:239 +msgid "Please add the account to root level Company - {0}" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:237 +msgid "Please add the account to root level Company - {}" +msgstr "" + +#: erpnext/controllers/website_list_for_contact.py:305 +msgid "Please add {1} role to user {0}." +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +msgid "Please adjust the qty or edit {0} to proceed." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:128 +msgid "Please attach CSV file" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1257 +msgid "Please cancel and amend the Payment Entry" +msgstr "" + +#: erpnext/accounts/utils.py:1147 +msgid "Please cancel payment entry manually first" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:327 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:351 +msgid "Please cancel related transaction." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:86 +#: erpnext/assets/doctype/asset/asset.py:249 +msgid "Please capitalize this asset before submitting." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:702 +msgid "Please check Multi Currency option to allow accounts with other currency" +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:597 +msgid "Please check Process Deferred Accounting {0} and submit manually after resolving errors." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:120 +msgid "Please check either with operations or FG Based Operating Cost." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:149 +msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py:64 +msgid "Please check your Plaid client ID and secret values" +msgstr "" + +#: erpnext/crm/doctype/appointment/appointment.py:98 +#: erpnext/www/book_appointment/index.js:235 +msgid "Please check your email to confirm the appointment" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +msgid "Please click on 'Generate Schedule'" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:104 +msgid "Please click on 'Generate Schedule' to get schedule" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:58 +msgid "Please complete the job first before entering Pending Quantity" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80 +msgid "Please configure accounts for the Bank Entry rule." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:531 +msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users to {} this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:524 +msgid "Please contact your administrator to extend the credit limits for {0}." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:388 +msgid "Please convert the parent account in corresponding child company to a group account." +msgstr "" + +#: erpnext/selling/doctype/quotation/mapper.py:267 +msgid "Please create Customer from Lead {0}." +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75 +msgid "Please create a new Accounting Dimension if required." +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:89 +msgid "Please create purchase from internal sale or delivery document itself" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:463 +msgid "Please create purchase receipt or purchase invoice for the item {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:714 +msgid "Please delete Product Bundle {0}, before merging {1} into {2}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:564 +msgid "Please disable workflow temporarily for Journal Entry {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:567 +msgid "Please do not book expense of multiple assets against one single Asset." +msgstr "" + +#: erpnext/controllers/item_variant.py:301 +msgid "Please do not create more than 500 items at a time" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:185 +msgid "Please enable Applicable on Booking Actual Expenses" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:181 +msgid "Please enable Applicable on Purchase Order and Applicable on Booking Actual Expenses" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:319 +msgid "Please enable Use Old Serial / Batch Fields to make_bundle" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:24 +msgid "Please enable only if the understand the effects of enabling this." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:679 +msgid "Please enable {0} in the {1}." +msgstr "" + +#: erpnext/controllers/selling_controller.py:872 +msgid "Please enable {} in {} to allow same item in multiple rows" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 +msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:386 +msgid "Please ensure that the {0} account {1} is a Payable account. You can change the account type to Payable or select a different account." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 +msgid "Please ensure {} account is a Balance Sheet account." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 +msgid "Please ensure {} account {} is a Receivable account." +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 +msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:559 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:962 +msgid "Please enter Account for Change Amount" +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:73 +msgid "Please enter Approving Role or Approving User" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +msgid "Please enter Batch No" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/services/gl_composer.py:19 +msgid "Please enter Cost Center" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:381 +msgid "Please enter Delivery Date" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person_tree.js:9 +msgid "Please enter Employee Id of this sales person" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +msgid "Please enter Expense Account" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.js:84 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:99 +msgid "Please enter Item Code to get Batch Number" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:3041 +msgid "Please enter Item Code to get batch no" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:85 +msgid "Please enter Item first" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:222 +msgid "Please enter Maintenance Details first" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:209 +msgid "Please enter Planned Qty for Item {0} at row {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:44 +msgid "Please enter Production Item first" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:50 +msgid "Please enter Purchase Receipt first" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:122 +msgid "Please enter Receipt Document" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:779 +msgid "Please enter Reference date" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:400 +msgid "Please enter Root Type for account- {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +msgid "Please enter Serial No" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:320 +msgid "Please enter Serial Nos" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.py:86 +msgid "Please enter Shipment Parcel information" +msgstr "" + +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js:30 +msgid "Please enter Warehouse and Date" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:501 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:958 +msgid "Please enter Write Off Account" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:511 +msgid "Please enter a valid Write Off Account" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:522 +msgid "Please enter a valid Write Off Cost Center" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:753 +msgid "Please enter a valid number of deliveries" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:696 +msgid "Please enter a valid quantity" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:690 +msgid "Please enter at least one delivery date and quantity" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.js:114 +msgid "Please enter company name first" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1383 +msgid "Please enter default currency in Company Master" +msgstr "" + +#: erpnext/selling/doctype/sms_center/sms_center.py:174 +msgid "Please enter message before sending" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:431 +msgid "Please enter mobile number first." +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:45 +msgid "Please enter parent cost center" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:186 +msgid "Please enter quantity for item {0}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:294 +msgid "Please enter relieving date." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:132 +msgid "Please enter serial nos" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:230 +msgid "Please enter the company name to confirm" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:750 +msgid "Please enter the first delivery date" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:811 +msgid "Please enter the phone number first" +msgstr "" + +#: erpnext/controllers/buying_controller.py:1193 +msgid "Please enter the {schedule_date}." +msgstr "" + +#: erpnext/public/js/setup_wizard.js:97 +msgid "Please enter valid Financial Year Start and End Dates" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:341 +msgid "Please enter {0}" +msgstr "" + +#: erpnext/public/js/utils/party.js:344 +msgid "Please enter {0} first" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sales_order_planning.py:196 +msgid "Please fill the Material Requests table" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sales_order_planning.py:147 +msgid "Please fill the Sales Orders table" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:277 +msgid "Please first set Full Name, Email and Phone for the user" +msgstr "" + +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js:94 +msgid "Please fix overlapping time slots for {0}" +msgstr "" + +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.py:72 +msgid "Please fix overlapping time slots for {0}." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:272 +msgid "Please generate To Delete list before submitting" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:70 +msgid "Please generate the To Delete list before submitting" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 +msgid "Please import accounts against parent company or enable {} in company master." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:291 +msgid "Please make sure the employees above report to another Active employee." +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:379 +msgid "Please make sure the file you are using has 'Parent Account' column present in the header." +msgstr "" + +#: erpnext/setup/doctype/company/company.js:234 +msgid "Please make sure you really want to delete all the transactions for {0}. Your master data will remain as it is. This action cannot be undone." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1025 +msgid "Please mention 'Weight UOM' along with Weight." +msgstr "" + +#: erpnext/accounts/general_ledger.py:592 +#: erpnext/accounts/general_ledger.py:599 +msgid "Please mention '{0}' in Company: {1}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:230 +msgid "Please mention no of visits required" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:73 +msgid "Please mention the Current and New BOM for replacement." +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.py:120 +msgid "Please pull items from Delivery Note" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:444 +msgid "Please rectify and try again." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +msgid "Please refresh or reset the Plaid linking of the Bank {}." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:125 +msgid "Please review the details below and click the 'Import' button to proceed." +msgstr "" + +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:43 +msgid "Please review the {0} configuration and complete any required financial setup activities." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:12 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:28 +msgid "Please save before proceeding." +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:49 +msgid "Please save first" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:903 +msgid "Please save the Sales Order before adding a delivery schedule." +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:79 +msgid "Please select Template Type to download template" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:859 +#: erpnext/public/js/controllers/taxes_and_totals.js:824 +msgid "Please select Apply Discount On" +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:846 +msgid "Please select BOM against item {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:204 +msgid "Please select BOM for Item in Row {0}" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:68 +msgid "Please select Bank Account" +msgstr "" + +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js:13 +msgid "Please select Category first" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 +#: erpnext/public/js/controllers/accounts.js:94 +#: erpnext/public/js/controllers/accounts.js:145 +msgid "Please select Charge Type first" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:148 +msgid "Please select Company" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 +msgid "Please select Company and Posting Date to getting entries" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 +msgid "Please select Company first" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:52 +msgid "Please select Completion Date for Completed Asset Maintenance Log" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:204 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:84 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:125 +msgid "Please select Customer first" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:542 +msgid "Please select Existing Company for creating Chart of Accounts" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +msgid "Please select Finished Good Item for Service Item {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:754 +#: erpnext/assets/doctype/asset/asset.js:769 +msgid "Please select Item Code first" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 +msgid "Please select Maintenance Status as Completed or remove Completion Date" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:52 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:31 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:32 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:63 +#: erpnext/selling/report/address_and_contacts/address_and_contacts.js:27 +msgid "Please select Party Type first" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:290 +msgid "Please select Periodic Accounting Entry Difference Account" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:518 +msgid "Please select Posting Date before selecting Party" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:436 +msgid "Please select Posting Date first" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1071 +msgid "Please select Price List" +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:848 +msgid "Please select Qty against item {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:388 +msgid "Please select Sample Retention Warehouse in Stock Settings first" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:451 +msgid "Please select Serial/Batch Nos to reserve or change Reservation Based On to Qty." +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:228 +msgid "Please select Start Date and End Date for Item {0}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:309 +msgid "Please select Stock Asset Account" +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:47 +msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/mapper.py:42 +msgid "Please select a BOM" +msgstr "" + +#: erpnext/accounts/party.py:436 +#: erpnext/stock/doctype/pick_list/pick_list.py:1358 +msgid "Please select a Company" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 +#: erpnext/manufacturing/doctype/bom/bom.js:730 +#: erpnext/manufacturing/doctype/bom/bom.py:302 +#: erpnext/public/js/controllers/accounts.js:277 +#: erpnext/public/js/controllers/transaction.js:3340 +msgid "Please select a Company first." +msgstr "" + +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 +msgid "Please select a Customer" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.js:16 +msgid "Please select a Delivery Note" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +msgid "Please select a Subcontracting Purchase Order." +msgstr "" + +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:91 +msgid "Please select a Supplier" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:667 +msgid "Please select a Warehouse" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +msgid "Please select a Work Order first." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:35 +msgid "Please select a bank account to view the bank clearance summary." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:28 +msgid "Please select a bank account to view the bank reconciliation statement." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:32 +msgid "Please select a bank and set the date range" +msgstr "" + +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 +msgid "Please select a company." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.py:89 +msgid "Please select a country" +msgstr "" + +#: erpnext/accounts/report/sales_register/sales_register.py:36 +msgid "Please select a customer for fetching payments." +msgstr "" + +#: erpnext/www/book_appointment/index.js:67 +msgid "Please select a date" +msgstr "" + +#: erpnext/www/book_appointment/index.js:52 +msgid "Please select a date and time" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:187 +msgid "Please select a default mode of payment" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:827 +msgid "Please select a field to edit from numpad" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:747 +msgid "Please select a frequency for delivery schedule" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +msgid "Please select a row to create a Reposting Entry" +msgstr "" + +#: erpnext/accounts/report/purchase_register/purchase_register.py:37 +msgid "Please select a supplier for fetching payments." +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:165 +msgid "Please select a transaction." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 +msgid "Please select a valid Purchase Order that is configured for Subcontracting." +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.js:245 +msgid "Please select a value for {0} quotation_to {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.js:194 +msgid "Please select an item code before setting the warehouse." +msgstr "" + +#: erpnext/controllers/item_variant.py:295 +msgid "Please select at least one attribute value" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43 +msgid "Please select at least one filter: Item Code, Batch, or Serial No." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 +msgid "Please select at least one item to update delivered quantity." +msgstr "" + +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 +msgid "Please select at least one row to fix" +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:51 +msgid "Please select at least one row with difference value" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:546 +msgid "Please select at least one schedule." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select atleast one item to continue" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select atleast one operation to create Job Card" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 +msgid "Please select correct account" +msgstr "" + +#: erpnext/accounts/report/share_balance/share_balance.py:14 +#: erpnext/accounts/report/share_ledger/share_ledger.py:14 +msgid "Please select date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:39 +msgid "Please select dates to view the bank clearance summary." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:32 +msgid "Please select dates to view the bank reconciliation statement." +msgstr "" + +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:30 +msgid "Please select either the Item or Warehouse or Warehouse Type filter to generate the report." +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:226 +msgid "Please select item code" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:212 +#: erpnext/selling/doctype/sales_order/sales_order.js:430 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:300 +msgid "Please select items to reserve." +msgstr "" + +#: erpnext/public/js/stock_reservation.js:290 +#: erpnext/selling/doctype/sales_order/sales_order.js:561 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:398 +msgid "Please select items to unreserve." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +msgid "Please select only one row to create a Reposting Entry" +msgstr "" + +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +msgid "Please select rows to create Reposting Entries" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:98 +msgid "Please select the Company" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 +msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:433 +msgid "Please select the Warehouse first" +msgstr "" + +#: erpnext/accounts/doctype/coupon_code/coupon_code.py:48 +msgid "Please select the customer." +msgstr "" + +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:41 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:58 +msgid "Please select the document type first" +msgstr "" + +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:47 +msgid "Please select the document type first." +msgstr "" + +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:21 +msgid "Please select the required filters" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select valid document type." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.py:52 +msgid "Please select weekly off day" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +msgid "Please select {0} first" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:103 +msgid "Please set 'Apply Additional Discount On'" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:791 +msgid "Please set 'Asset Depreciation Cost Center' in Company {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:789 +msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}" +msgstr "" + +#: erpnext/accounts/general_ledger.py:486 +msgid "Please set '{0}' in Company: {1}" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:36 +msgid "Please set Account" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:531 +msgid "Please set Account for Change Amount" +msgstr "" + +#: erpnext/stock/__init__.py:89 +msgid "Please set Account in Warehouse {0} or Default Inventory Account in Company {1}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 +msgid "Please set Accounting Dimension {} in {}" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 +#: erpnext/accounts/doctype/pos_profile/pos_profile.js:25 +#: erpnext/accounts/doctype/pos_profile/pos_profile.js:48 +#: erpnext/accounts/doctype/pos_profile/pos_profile.js:62 +#: erpnext/accounts/doctype/pos_profile/pos_profile.js:76 +#: erpnext/accounts/doctype/pos_profile/pos_profile.js:89 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:58 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:68 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:78 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:905 +msgid "Please set Company" +msgstr "" + +#: erpnext/regional/united_arab_emirates/utils.py:26 +msgid "Please set Customer Address to determine if the transaction is an export." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:753 +msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:176 +msgid "Please set Email/Phone for the contact" +msgstr "" + +#: erpnext/regional/italy/utils.py:257 +#, python-format +msgid "Please set Fiscal Code for the customer '%s'" +msgstr "" + +#: erpnext/regional/italy/utils.py:265 +#, python-format +msgid "Please set Fiscal Code for the public administration '%s'" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:739 +msgid "Please set Fixed Asset Account in Asset Category {0}" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 +msgid "Please set Fixed Asset Account in {} against {}." +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 +msgid "Please set Parent Row No for item {0}" +msgstr "" + +#: erpnext/controllers/buying_controller.py:355 +msgid "Please set Purchase Expense Contra Account in Company {0}" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:24 +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:35 +msgid "Please set Root Type" +msgstr "" + +#: erpnext/regional/italy/utils.py:272 +#, python-format +msgid "Please set Tax ID for the customer '%s'" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 +msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" +msgstr "" + +#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:54 +msgid "Please set VAT Accounts in {0}" +msgstr "" + +#: erpnext/regional/united_arab_emirates/utils.py:83 +msgid "Please set Vat Accounts for Company: \"{0}\" in UAE VAT Settings" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:19 +msgid "Please set a Company" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:374 +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:339 +#: erpnext/stock/doctype/item/item.py:1621 +msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." +msgstr "" + +#: erpnext/projects/doctype/project/project.py:806 +msgid "Please set a default Holiday List for Company {0}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:392 +msgid "Please set a default Holiday List for Employee {0} or Company {1}" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:301 +msgid "Please set account in Warehouse {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:68 +msgid "Please set actual demand or sales forecast to generate Material Requirements Planning Report." +msgstr "" + +#: erpnext/regional/italy/utils.py:227 +#, python-format +msgid "Please set an Address on the Company '%s'" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:194 +msgid "Please set an Expense Account in the Items table" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:57 +msgid "Please set an email id for the Lead {0}" +msgstr "" + +#: erpnext/regional/italy/utils.py:283 +msgid "Please set at least one row in the Taxes and Charges Table" +msgstr "" + +#: erpnext/regional/italy/utils.py:247 +msgid "Please set both the Tax ID and Fiscal Code on Company {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 +msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 +msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgstr "" + +#: erpnext/accounts/utils.py:2568 +msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 +msgid "Please set default Expense Account in Company {0}" +msgstr "" + +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:40 +msgid "Please set default UOM in Stock Settings" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:107 +msgid "Please set default cost of goods sold account in company {0} for booking rounding gain and loss during stock transfer" +msgstr "" + +#: erpnext/controllers/stock_controller.py:153 +msgid "Please set default inventory account for item {0}, or their item group or brand." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:279 +#: erpnext/accounts/utils.py:1169 +msgid "Please set default {0} in Company {1}" +msgstr "" + +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:114 +msgid "Please set filter based on Item or Warehouse" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1296 +msgid "Please set one of the following:" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:648 +msgid "Please set opening number of booked depreciations" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2710 +msgid "Please set recurring after saving" +msgstr "" + +#: erpnext/regional/italy/utils.py:277 +msgid "Please set the Customer Address" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +msgid "Please set the Default Cost Center in {0} company." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:680 +msgid "Please set the Item Code first" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/mapper.py:101 +msgid "Please set the Target Warehouse in the Job Card" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/mapper.py:105 +msgid "Please set the WIP Warehouse in the Job Card" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:183 +msgid "Please set the cost center field in {0} or setup a default Cost Center for the Company." +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:48 +msgid "Please set up the Campaign Schedule in the Campaign {0}" +msgstr "" + +#: erpnext/public/js/queries.js:67 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:26 +msgid "Please set {0}" +msgstr "" + +#: erpnext/public/js/queries.js:34 erpnext/public/js/queries.js:49 +#: erpnext/public/js/queries.js:82 erpnext/public/js/queries.js:103 +#: erpnext/public/js/queries.js:134 +msgid "Please set {0} first." +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:214 +msgid "Please set {0} for Batched Item {1}, which is used to set {2} on Submit." +msgstr "" + +#: erpnext/regional/italy/utils.py:429 +msgid "Please set {0} for address {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:245 +msgid "Please set {0} in BOM Creator {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1145 +msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:499 +msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:360 +msgid "Please share this email with your support team so that they can find and fix the issue." +msgstr "" + +#: erpnext/stock/get_item_details.py:352 +msgid "Please specify Company" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:120 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:430 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:638 +msgid "Please specify Company to proceed" +msgstr "" + +#: erpnext/accounts/services/taxes.py:253 +#: erpnext/public/js/controllers/accounts.js:117 +msgid "Please specify a valid Row ID for row {0} in table {1}" +msgstr "" + +#: erpnext/public/js/queries.js:148 +msgid "Please specify a {0} first." +msgstr "" + +#: erpnext/controllers/item_variant.py:53 +msgid "Please specify at least one attribute in the Attributes table" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +msgid "Please specify either Quantity or Valuation Rate or both" +msgstr "" + +#: erpnext/stock/doctype/item_attribute/item_attribute.py:92 +msgid "Please specify from/to range" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 +msgid "Please try again in an hour." +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:139 +msgid "Please uncheck 'Show in Bucket View' to create Orders" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:237 +msgid "Please update Repair Status." +msgstr "" + +#. Label of a Card Break in the Selling Workspace +#: erpnext/selling/page/point_of_sale/point_of_sale.js:6 +#: erpnext/selling/workspace/selling/selling.json +msgid "Point of Sale" +msgstr "" + +#. Label of a Link in the Selling Workspace +#: erpnext/selling/workspace/selling/selling.json +msgid "Point-of-Sale Profile" +msgstr "" + +#. Label of the policy_no (Data) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Policy No" +msgstr "" + +#. Label of the policy_number (Data) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Policy number" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pond" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pood" +msgstr "" + +#. Name of a DocType +#: erpnext/utilities/doctype/portal_user/portal_user.json +msgid "Portal User" +msgstr "" + +#. Label of the portal_users_tab (Tab Break) field in DocType 'Supplier' +#. Label of the portal_users_tab (Tab Break) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Portal Users" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:407 +msgid "Possible Supplier" +msgstr "" + +#. Label of the post_description_key (Data) field in DocType 'Support Search +#. Source' +#. Label of the post_description_key (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_search_source/support_search_source.json +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Post Description Key" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Post Graduate" +msgstr "" + +#. Label of the post_route_key (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Post Route Key" +msgstr "" + +#. Label of the post_route_key_list (Data) field in DocType 'Support Search +#. Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Post Route Key List" +msgstr "" + +#. Label of the post_route (Data) field in DocType 'Support Search Source' +#. Label of the post_route_string (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_search_source/support_search_source.json +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Post Route String" +msgstr "" + +#. Label of the post_title_key (Data) field in DocType 'Support Search Source' +#. Label of the post_title_key (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_search_source/support_search_source.json +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Post Title Key" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206 +msgid "Postal Expenses" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:900 +msgid "Posted On" +msgstr "" + +#. Label of the posting_date (Date) field in DocType 'Bank Clearance Detail' +#. Label of the posting_date (Date) field in DocType 'Exchange Rate +#. Revaluation' +#. Label of the posting_date (Date) field in DocType 'GL Entry' +#. Label of the posting_date (Date) field in DocType 'Invoice Discounting' +#. Label of the posting_date (Date) field in DocType 'Journal Entry' +#. Label of the posting_date (Date) field in DocType 'Loyalty Point Entry' +#. Label of the posting_date (Date) field in DocType 'Opening Invoice Creation +#. Tool Item' +#. Label of the posting_date (Date) field in DocType 'Payment Entry' +#. Label of the posting_date (Date) field in DocType 'Payment Ledger Entry' +#. Label of the posting_date (Date) field in DocType 'Payment Order' +#. Label of the posting_date (Date) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the posting_date (Date) field in DocType 'POS Closing Entry' +#. Label of the posting_date (Date) field in DocType 'POS Invoice Merge Log' +#. Label of the posting_date (Date) field in DocType 'POS Opening Entry' +#. Label of the posting_date (Date) field in DocType 'Process Deferred +#. Accounting' +#. Option for the 'Ageing Based On' (Select) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the posting_date (Date) field in DocType 'Process Statement Of +#. Accounts' +#. Label of the posting_date (Date) field in DocType 'Process Subscription' +#. Label of the posting_date (Date) field in DocType 'Purchase Invoice' +#. Label of the posting_date (Date) field in DocType 'Repost Payment Ledger' +#. Label of the posting_date (Date) field in DocType 'Sales Invoice' +#. Label of the posting_date (Date) field in DocType 'Asset Capitalization' +#. Label of the posting_date (Date) field in DocType 'Job Card' +#. Label of the posting_date (Date) field in DocType 'Master Production +#. Schedule' +#. Label of the posting_date (Date) field in DocType 'Production Plan' +#. Label of the posting_date (Date) field in DocType 'Sales Forecast' +#. Label of the posting_date (Date) field in DocType 'Landed Cost Purchase +#. Receipt' +#. Label of the posting_date (Date) field in DocType 'Landed Cost Voucher' +#. Label of the posting_date (Date) field in DocType 'Repost Item Valuation' +#. Label of the posting_date (Date) field in DocType 'Serial No' +#. Label of the posting_date (Date) field in DocType 'Stock Closing Balance' +#. Label of the posting_date (Date) field in DocType 'Stock Entry' +#. Label of the posting_date (Date) field in DocType 'Stock Ledger Entry' +#. Label of the posting_date (Date) field in DocType 'Stock Reconciliation' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:398 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:125 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:319 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:390 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:86 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:147 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:459 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:290 +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:306 +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/process_subscription/process_subscription.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:16 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:15 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:18 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1140 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:15 +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:38 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:7 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 +#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/gross_profit/gross_profit.py:300 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:143 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:94 +#: erpnext/accounts/report/pos_register/pos_register.py:188 +#: erpnext/accounts/report/purchase_register/purchase_register.py:171 +#: erpnext/accounts/report/sales_register/sales_register.py:185 +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:134 +#: erpnext/public/js/purchase_trends_filters.js:38 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:27 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:68 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:65 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:94 +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:131 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:89 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:158 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:104 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:88 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:25 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:154 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:144 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:36 +#: erpnext/templates/form_grid/bank_reconciliation_grid.html:6 +msgid "Posting Date" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 +msgid "Posting Date cannot be future date" +msgstr "" + +#. Label of the exchange_gain_loss_posting_date (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Posting Date inheritance for exchange gain / loss" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:1130 +msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" +msgstr "" + +#. Label of the posting_datetime (Datetime) field in DocType 'Serial and Batch +#. Bundle' +#. Label of the posting_datetime (Datetime) field in DocType 'Serial and Batch +#. Entry' +#. Label of the posting_datetime (Datetime) field in DocType 'Stock Closing +#. Balance' +#. Label of the posting_datetime (Datetime) field in DocType 'Stock Ledger +#. Entry' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:27 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:506 +msgid "Posting Datetime" +msgstr "" + +#. Label of the posting_time (Time) field in DocType 'Dunning' +#. Label of the posting_time (Time) field in DocType 'POS Closing Entry' +#. Label of the posting_time (Time) field in DocType 'POS Invoice' +#. Label of the posting_time (Time) field in DocType 'POS Invoice Merge Log' +#. Label of the posting_time (Time) field in DocType 'Purchase Invoice' +#. Label of the posting_time (Time) field in DocType 'Sales Invoice' +#. Label of the posting_time (Time) field in DocType 'Asset Capitalization' +#. Label of the posting_time (Time) field in DocType 'Delivery Note' +#. Label of the posting_time (Time) field in DocType 'Purchase Receipt' +#. Label of the posting_time (Time) field in DocType 'Repost Item Valuation' +#. Label of the posting_time (Time) field in DocType 'Stock Closing Balance' +#. Label of the posting_time (Time) field in DocType 'Stock Entry' +#. Label of the posting_time (Time) field in DocType 'Stock Ledger Entry' +#. Label of the posting_time (Time) field in DocType 'Stock Reconciliation' +#. Label of the posting_time (Time) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/gross_profit/gross_profit.py:306 +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:136 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:159 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:105 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:63 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:26 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:155 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:149 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:41 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Posting Time" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:901 +msgid "Posting date does not match the selected transaction" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:101 +msgid "Posting date is required" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:901 +msgid "Posting date matches the selected transaction" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:66 +msgid "Posting timestamp must be after {0}" +msgstr "" + +#. Option for the 'Generate Invoice At' (Select) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Postpaid (bill at period end)" +msgstr "" + +#. Description of a DocType +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Potential Sales Deal" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound/Cubic Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound/Cubic Inch" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound/Cubic Yard" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound/Gallon (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound/Gallon (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Poundal" +msgstr "" + +#: erpnext/templates/includes/footer/footer_powered.html:1 +msgid "Powered by {0}" +msgstr "" + +#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:8 +#: erpnext/accounts/doctype/shipping_rule/shipping_rule_dashboard.py:9 +#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:8 +#: erpnext/selling/doctype/customer/customer_dashboard.py:19 +#: erpnext/setup/doctype/company/company_dashboard.py:22 +msgid "Pre Sales" +msgstr "" + +#: erpnext/accounts/utils.py:2806 +msgid "Pre-Submit Warning" +msgstr "" + +#: erpnext/accounts/utils.py:2855 +msgid "Pre-Submit Warning: Credit Limit" +msgstr "" + +#: erpnext/accounts/utils.py:2867 +msgid "Pre-Submit Warning: Packed Qty" +msgstr "" + +#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Pre-filled on payment entries for this customer. Must be a company account." +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307 +msgid "Preference" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:43 +#: banking/src/components/features/Settings/SettingsDialogContent.tsx:27 +msgid "Preferences" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:33 +msgid "Preferences updated" +msgstr "" + +#. Label of the prefered_contact_email (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Preferred Contact Email" +msgstr "" + +#. Label of the prefered_email (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Preferred Email" +msgstr "" + +#. Option for the 'Generate Invoice At' (Select) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Prepaid (bill at period start)" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:34 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:51 +msgid "Prepaid Expenses" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:24 +msgid "President" +msgstr "" + +#. Label of the prevdoc_doctype (Data) field in DocType 'Packed Item' +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Prevdoc DocType" +msgstr "" + +#. Label of the prevent_pos (Check) field in DocType 'Supplier' +#. Label of the prevent_pos (Check) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Prevent POs" +msgstr "" + +#. Label of the prevent_pos (Check) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the prevent_pos (Check) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Prevent Purchase Orders" +msgstr "" + +#. Label of the prevent_rfqs (Check) field in DocType 'Supplier' +#. Label of the prevent_rfqs (Check) field in DocType 'Supplier Scorecard' +#. Label of the prevent_rfqs (Check) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the prevent_rfqs (Check) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Prevent RFQs" +msgstr "" + +#. Option for the 'Corrective/Preventive' (Select) field in DocType 'Quality +#. Action' +#: erpnext/quality_management/doctype/quality_action/quality_action.json +msgid "Preventive" +msgstr "" + +#. Label of the preventive_action (Text Editor) field in DocType 'Non +#. Conformance' +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +msgid "Preventive Action" +msgstr "" + +#. Option for the 'Maintenance Type' (Select) field in DocType 'Asset +#. Maintenance Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Preventive Maintenance" +msgstr "" + +#. Description of the 'Don't reserve Sales Order qty on sales return' (Check) +#. field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Prevents the automatic reservation of stock quantities from sales orders when processing sales returns." +msgstr "" + +#. Description of the 'Disable last purchase rate' (Check) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Prevents the system from automatically using the rate from the last purchase transaction when creating new purchase orders or transactions." +msgstr "" + +#. Label of the preview (Button) field in DocType 'Request for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:267 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Preview Email" +msgstr "" + +#. Label of the download_materials_request_plan_section_section (Section Break) +#. field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Preview Required Materials" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230 +msgid "Preview Transactions" +msgstr "" + +#. Label of the preview_mode (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Preview mode" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 +msgid "Previous Financial Year is not closed" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:242 +msgid "Previous Imports" +msgstr "" + +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:54 +msgid "Previous Qty" +msgstr "" + +#. Label of the previous_work_experience (Section Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Previous Work Experience" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:102 +msgid "Previous Year is not closed, please close it first" +msgstr "" + +#. Option for the 'Price or Product Discount' (Select) field in DocType +#. 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:228 +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:116 +msgid "Price" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:242 +msgid "Price ({0})" +msgstr "" + +#. Label of the price_discount_scheme_section (Section Break) field in DocType +#. 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Price Discount Scheme" +msgstr "" + +#. Label of the section_break_14 (Section Break) field in DocType 'Promotional +#. Scheme' +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Price Discount Slabs" +msgstr "" + +#. Label of the selling_price_list (Link) field in DocType 'POS Invoice' +#. Label of the selling_price_list (Link) field in DocType 'POS Profile' +#. Label of the buying_price_list (Link) field in DocType 'Purchase Invoice' +#. Label of the selling_price_list (Link) field in DocType 'Sales Invoice' +#. Label of the price_list (Link) field in DocType 'Subscription Plan' +#. Label of the buying_price_list (Link) field in DocType 'Purchase Order' +#. Label of the default_price_list (Link) field in DocType 'Supplier' +#. Label of the buying_price_list (Link) field in DocType 'Supplier Quotation' +#. Label of a Link in the Buying Workspace +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM' +#. Label of the buying_price_list (Link) field in DocType 'BOM' +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM +#. Creator' +#. Label of the buying_price_list (Link) field in DocType 'BOM Creator' +#. Label of the default_price_list (Link) field in DocType 'Customer' +#. Label of the selling_price_list (Link) field in DocType 'Quotation' +#. Label of the selling_price_list (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Label of the selling_price_list (Link) field in DocType 'Delivery Note' +#. Label of the default_price_list (Link) field in DocType 'Item Default' +#. Label of the vf_default_price_list (Read Only) field in DocType 'Item +#. Default' +#. Label of the price_list_details (Section Break) field in DocType 'Item +#. Price' +#. Label of the price_list (Link) field in DocType 'Item Price' +#. Label of the buying_price_list (Link) field in DocType 'Material Request' +#. Name of a DocType +#. Label of the buying_price_list (Link) field in DocType 'Purchase Receipt' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/item/item_prices.html:81 +#: erpnext/stock/doctype/item_default/item_default.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/price_list/price_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/selling.json +msgid "Price List" +msgstr "" + +#. Label of the price_list_and_currency_section (Section Break) field in +#. DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Price List & Currency" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/price_list_country/price_list_country.json +msgid "Price List Country" +msgstr "" + +#. Label of the price_list_currency (Link) field in DocType 'POS Invoice' +#. Label of the price_list_currency (Link) field in DocType 'Purchase Invoice' +#. Label of the price_list_currency (Link) field in DocType 'Sales Invoice' +#. Label of the price_list_currency (Link) field in DocType 'Purchase Order' +#. Label of the price_list_currency (Link) field in DocType 'Supplier +#. Quotation' +#. Label of the price_list_currency (Link) field in DocType 'BOM' +#. Label of the price_list_currency (Link) field in DocType 'BOM Creator' +#. Label of the price_list_currency (Link) field in DocType 'Quotation' +#. Label of the price_list_currency (Link) field in DocType 'Sales Order' +#. Label of the price_list_currency (Link) field in DocType 'Delivery Note' +#. Label of the price_list_currency (Link) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Price List Currency" +msgstr "" + +#: erpnext/stock/get_item_details.py:1383 +msgid "Price List Currency not selected" +msgstr "" + +#. Label of the price_list_defaults_section (Section Break) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Price List Defaults" +msgstr "" + +#. Label of the plc_conversion_rate (Float) field in DocType 'POS Invoice' +#. Label of the plc_conversion_rate (Float) field in DocType 'Purchase Invoice' +#. Label of the plc_conversion_rate (Float) field in DocType 'Sales Invoice' +#. Label of the plc_conversion_rate (Float) field in DocType 'Purchase Order' +#. Label of the plc_conversion_rate (Float) field in DocType 'Supplier +#. Quotation' +#. Label of the plc_conversion_rate (Float) field in DocType 'BOM' +#. Label of the plc_conversion_rate (Float) field in DocType 'BOM Creator' +#. Label of the plc_conversion_rate (Float) field in DocType 'Quotation' +#. Label of the plc_conversion_rate (Float) field in DocType 'Sales Order' +#. Label of the plc_conversion_rate (Float) field in DocType 'Delivery Note' +#. Label of the plc_conversion_rate (Float) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Price List Exchange Rate" +msgstr "" + +#. Label of the price_list_name (Data) field in DocType 'Price List' +#: erpnext/stock/doctype/price_list/price_list.json +msgid "Price List Name" +msgstr "" + +#. Label of the price_list_rate (Currency) field in DocType 'POS Invoice Item' +#. Label of the price_list_rate (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Sales Invoice +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Quotation Item' +#. Label of the price_list_rate (Currency) field in DocType 'Sales Order Item' +#. Label of the price_list_rate (Currency) field in DocType 'Delivery Note +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Material Request +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Purchase Receipt +#. Item' +#. Option for the 'Update Price List based on' (Select) field in DocType 'Stock +#. Settings' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Price List Rate" +msgstr "" + +#. Label of the base_price_list_rate (Currency) field in DocType 'POS Invoice +#. Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Purchase +#. Invoice Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Sales Invoice +#. Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Purchase +#. Order Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Supplier +#. Quotation Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Quotation +#. Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Sales Order +#. Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Delivery Note +#. Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Price List Rate (Company Currency)" +msgstr "" + +#: erpnext/stock/doctype/price_list/price_list.py:33 +msgid "Price List must be applicable for Buying or Selling" +msgstr "" + +#: erpnext/stock/doctype/price_list/price_list.py:88 +msgid "Price List {0} is disabled or does not exist" +msgstr "" + +#. Label of the price_not_uom_dependent (Check) field in DocType 'Price List' +#: erpnext/stock/doctype/price_list/price_list.json +msgid "Price Not UOM Dependent" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:249 +msgid "Price Per Unit ({0})" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +msgid "Price is not set for the item." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/costing.py:59 +msgid "Price not found for item {0} in price list {1}" +msgstr "" + +#. Label of the price_or_product_discount (Select) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Price or Product Discount" +msgstr "" + +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:149 +msgid "Price or product discount slabs are required" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:235 +msgid "Price per Unit (Stock UOM)" +msgstr "" + +#. Label of the prices_html (HTML) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Prices HTML" +msgstr "" + +#. Label of the pricing_tab (Tab Break) field in DocType 'Buying Settings' +#. Label of the item_price_tab (Tab Break) field in DocType 'Selling Settings' +#. Label of the pricing_tab (Tab Break) field in DocType 'Item' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/supplier/supplier_dashboard.py:13 +#: erpnext/selling/doctype/customer/customer_dashboard.py:27 +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_dashboard.py:19 +msgid "Pricing" +msgstr "" + +#. Label of the pricing_rule (Link) field in DocType 'Coupon Code' +#. Name of a DocType +#. Label of the pricing_rule (Link) field in DocType 'Pricing Rule Detail' +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json +msgid "Pricing Rule" +msgstr "" + +#. Name of a DocType +#. Label of the brands (Table) field in DocType 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Pricing Rule Brand" +msgstr "" + +#. Label of the pricing_rules (Table) field in DocType 'POS Invoice' +#. Name of a DocType +#. Label of the pricing_rules (Table) field in DocType 'Purchase Invoice' +#. Label of the pricing_rules (Table) field in DocType 'Sales Invoice' +#. Label of the pricing_rules (Table) field in DocType 'Supplier Quotation' +#. Label of the pricing_rules (Table) field in DocType 'Quotation' +#. Label of the pricing_rules (Table) field in DocType 'Sales Order' +#. Label of the pricing_rules (Table) field in DocType 'Delivery Note' +#. Label of the pricing_rules (Table) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Pricing Rule Detail" +msgstr "" + +#. Label of the pricing_rule_help (HTML) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Pricing Rule Help" +msgstr "" + +#. Name of a DocType +#. Label of the items (Table) field in DocType 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Pricing Rule Item Code" +msgstr "" + +#. Name of a DocType +#. Label of the item_groups (Table) field in DocType 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Pricing Rule Item Group" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:71 +msgid "Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:48 +msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." +msgstr "" + +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +msgid "Pricing Rule {0} is updated" +msgstr "" + +#. Label of the pricing_rule_details (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the pricing_rules (Small Text) field in DocType 'POS Invoice Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the pricing_rules (Small Text) field in DocType 'Purchase Invoice +#. Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the pricing_rules (Small Text) field in DocType 'Sales Invoice +#. Item' +#. Label of the section_break_48 (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the pricing_rules (Small Text) field in DocType 'Purchase Order +#. Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Supplier +#. Quotation' +#. Label of the pricing_rules (Small Text) field in DocType 'Supplier Quotation +#. Item' +#. Label of the pricing_rule_details (Section Break) field in DocType +#. 'Quotation' +#. Label of the pricing_rules (Small Text) field in DocType 'Quotation Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Sales +#. Order' +#. Label of the pricing_rules (Small Text) field in DocType 'Sales Order Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Delivery +#. Note' +#. Label of the pricing_rules (Small Text) field in DocType 'Delivery Note +#. Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Purchase +#. Receipt' +#. Label of the pricing_rules (Small Text) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Pricing Rules" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:79 +msgid "Pricing Rules are further filtered based on quantity." +msgstr "" + +#: erpnext/public/js/utils/contact_address_quick_entry.js:73 +msgid "Primary Address Details" +msgstr "" + +#. Label of the primary_address (Text Editor) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Primary Address Preview" +msgstr "" + +#. Label of the primary_address_and_contact_detail_section (Section Break) +#. field in DocType 'Supplier' +#. Label of the primary_address_and_contact_detail (Section Break) field in +#. DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Primary Address and Contact" +msgstr "" + +#: erpnext/public/js/utils/contact_address_quick_entry.js:41 +msgid "Primary Contact Details" +msgstr "" + +#. Label of the primary_email (Read Only) field in DocType 'Process Statement +#. Of Accounts Customer' +#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json +msgid "Primary Contact Email" +msgstr "" + +#. Label of the primary_party (Dynamic Link) field in DocType 'Party Link' +#: erpnext/accounts/doctype/party_link/party_link.json +msgid "Primary Party" +msgstr "" + +#. Label of the primary_role (Link) field in DocType 'Party Link' +#: erpnext/accounts/doctype/party_link/party_link.json +msgid "Primary Role" +msgstr "" + +#. Label of the primary_settings (Section Break) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Primary Settings" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:125 +msgid "Print Format Type should be Jinja." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:129 +msgid "Print Format must be an enabled Report Print Format matching the selected Report." +msgstr "" + +#: erpnext/regional/report/irs_1099/irs_1099.js:36 +msgid "Print IRS 1099 Forms" +msgstr "" + +#. Label of the preferences (Section Break) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Print Preferences" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:63 +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:274 +msgid "Print Receipt" +msgstr "" + +#. Label of the print_receipt_on_order_complete (Check) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Print Receipt on Order Complete" +msgstr "" + +#: erpnext/setup/install.py:105 +msgid "Print UOM after Quantity" +msgstr "" + +#. Label of the print_without_amount (Check) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Print Without Amount" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207 +msgid "Print and Stationery" +msgstr "" + +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js:77 +msgid "Print settings updated in respective print format" +msgstr "" + +#: erpnext/setup/install.py:112 +msgid "Print taxes with zero amount" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:383 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:46 +#: erpnext/accounts/report/financial_statements.html:85 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:127 +msgid "Printed on {0}" +msgstr "" + +#. Label of the printing_details (Section Break) field in DocType 'Material +#. Request' +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Printing Details" +msgstr "" + +#. Label of the printing_settings_section (Section Break) field in DocType +#. 'Dunning' +#. Label of the printing_settings (Section Break) field in DocType 'Journal +#. Entry' +#. Label of the edit_printing_settings (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the column_break5 (Section Break) field in DocType 'Purchase Order' +#. Label of the printing_settings (Section Break) field in DocType 'Request for +#. Quotation' +#. Label of the printing_settings (Section Break) field in DocType 'Supplier +#. Quotation' +#. Label of the printing_settings (Section Break) field in DocType 'Purchase +#. Receipt' +#. Label of the printing_settings (Section Break) field in DocType 'Stock +#. Entry' +#. Label of the printing_settings_section (Section Break) field in DocType +#. 'Subcontracting Order' +#. Label of the printing_settings (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Printing Settings" +msgstr "" + +#. Label of the priorities (Table) field in DocType 'Service Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Priorities" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 +msgid "Priority cannot be lesser than 1." +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 +msgid "Priority has been changed to {0}." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:161 +msgid "Priority is mandatory" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:109 +msgid "Priority {0} has been repeated." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:38 +msgid "Private Equity" +msgstr "" + +#. Label of the probability (Percent) field in DocType 'Prospect Opportunity' +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +msgid "Probability" +msgstr "" + +#. Label of the probability (Percent) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Probability (%)" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Workstation' +#. Label of the problem (Long Text) field in DocType 'Quality Action +#. Resolution' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json +msgid "Problem" +msgstr "" + +#. Label of the procedure (Link) field in DocType 'Non Conformance' +#. Label of the procedure (Link) field in DocType 'Quality Action' +#. Label of the procedure (Link) field in DocType 'Quality Goal' +#. Label of the procedure (Link) field in DocType 'Quality Review' +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +#: erpnext/quality_management/doctype/quality_action/quality_action.json +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +msgid "Procedure" +msgstr "" + +#. Label of the process_deferred_accounting (Link) field in DocType 'Journal +#. Entry' +#. Name of a DocType +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +msgid "Process Deferred Accounting" +msgstr "" + +#. Label of the process_description (Text Editor) field in DocType 'Quality +#. Procedure Process' +#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json +msgid "Process Description" +msgstr "" + +#. Label of the section_break_7qsm (Section Break) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Process Loss" +msgstr "" + +#. Label of the process_loss_per (Percent) field in DocType 'BOM Secondary +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +msgid "Process Loss %" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:967 +msgid "Process Loss Percentage cannot be greater than 100" +msgstr "" + +#. Label of the process_loss_qty (Float) field in DocType 'BOM' +#. Label of the process_loss_qty (Float) field in DocType 'BOM Secondary Item' +#. Label of the process_loss_qty (Float) field in DocType 'Job Card' +#. Label of the process_loss_qty (Float) field in DocType 'Work Order' +#. Label of the process_loss_qty (Float) field in DocType 'Work Order +#. Operation' +#. Label of the process_loss_qty (Float) field in DocType 'Stock Entry' +#. Label of the process_loss_qty (Float) field in DocType 'Subcontracting +#. Inward Order Item' +#. Label of the process_loss_qty (Float) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:96 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Process Loss Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:288 +msgid "Process Loss Quantity" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.json +msgid "Process Loss Report" +msgstr "" + +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:102 +msgid "Process Loss Value" +msgstr "" + +#. Label of the process_owner (Data) field in DocType 'Non Conformance' +#. Label of the process_owner (Link) field in DocType 'Quality Procedure' +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Process Owner" +msgstr "" + +#. Label of the process_owner_full_name (Data) field in DocType 'Quality +#. Procedure' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Process Owner Full Name" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/workspace_sidebar/banking.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Process Payment Reconciliation" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Process Payment Reconciliation Log" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +msgid "Process Payment Reconciliation Log Allocations" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "Process Period Closing Voucher" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +msgid "Process Period Closing Voucher Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Process Statement Of Accounts" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_statement_of_accounts_cc/process_statement_of_accounts_cc.json +msgid "Process Statement Of Accounts CC" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json +msgid "Process Statement Of Accounts Customer" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_subscription/process_subscription.json +msgid "Process Subscription" +msgstr "" + +#. Label of the process_in_single_transaction (Check) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Process in Single Transaction" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +msgid "Process loss quantity cannot be negative." +msgstr "" + +#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log' +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +msgid "Processed BOMs" +msgstr "" + +#. Label of the processes (Table) field in DocType 'Quality Procedure' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Processes" +msgstr "" + +#. Label of the processing_date (Date) field in DocType 'Process Period Closing +#. Voucher Detail' +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +msgid "Processing Date" +msgstr "" + +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:52 +msgid "Processing XML Files" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:188 +msgid "Processing import..." +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier_dashboard.py:10 +msgid "Procurement" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/procurement_tracker/procurement_tracker.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Procurement Tracker" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:214 +msgid "Produce Qty" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Produced" +msgstr "" + +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:177 +msgid "Produced / Received Qty" +msgstr "" + +#. Label of the produced_qty (Float) field in DocType 'Production Plan Item' +#. Label of the wo_produced_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the produced_qty (Float) field in DocType 'Batch' +#. Label of the produced_qty (Float) field in DocType 'Subcontracting Inward +#. Order Item' +#. Label of the produced_qty (Float) field in DocType 'Subcontracting Inward +#. Order Secondary Item' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:50 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:130 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:215 +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +msgid "Produced Qty" +msgstr "" + +#. Label of a chart in the Manufacturing Workspace +#. Label of the produced_qty (Float) field in DocType 'Sales Order Item' +#: erpnext/manufacturing/dashboard_fixtures.py:59 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Produced Quantity" +msgstr "" + +#. Option for the 'Price or Product Discount' (Select) field in DocType +#. 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Product" +msgstr "" + +#. Label of the product_bundle (Link) field in DocType 'POS Invoice Item' +#. Label of the product_bundle (Link) field in DocType 'Purchase Invoice Item' +#. Label of the product_bundle (Link) field in DocType 'Sales Invoice Item' +#. Label of the product_bundle (Link) field in DocType 'Purchase Order Item' +#. Label of a Link in the Buying Workspace +#. Name of a DocType +#. Label of the product_bundle (Link) field in DocType 'Quotation Item' +#. Label of the product_bundle (Link) field in DocType 'Sales Order Item' +#. Label of a Link in the Selling Workspace +#. Label of the product_bundle (Link) field in DocType 'Delivery Note Item' +#. Label of the product_bundle (Link) field in DocType 'Packed Item' +#. Label of the product_bundle (Link) field in DocType 'Purchase Receipt Item' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/public/js/controllers/buying.js:321 +#: erpnext/public/js/controllers/buying.js:606 +#: erpnext/selling/doctype/product_bundle/product_bundle.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json +msgid "Product Bundle" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.json +msgid "Product Bundle Balance" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:278 +msgid "Product Bundle Component" +msgstr "" + +#. Label of the product_bundle_help (HTML) field in DocType 'POS Invoice' +#. Label of the product_bundle_help (HTML) field in DocType 'Sales Invoice' +#. Label of the product_bundle_help (HTML) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Product Bundle Help" +msgstr "" + +#. Label of the product_bundle_item (Link) field in DocType 'Production Plan +#. Item' +#. Label of the product_bundle_item (Link) field in DocType 'Work Order' +#. Name of a DocType +#. Label of the product_bundle_item (Data) field in DocType 'Pick List Item' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Product Bundle Item" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:305 +msgid "Product Bundle Parent" +msgstr "" + +#. Description of the 'Product Bundle' (Link) field in DocType 'Purchase +#. Invoice Item' +#. Description of the 'Product Bundle' (Link) field in DocType 'Purchase Order +#. Item' +#. Description of the 'Product Bundle' (Link) field in DocType 'Packed Item' +#. Description of the 'Product Bundle' (Link) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Product Bundle version this row was packed from" +msgstr "" + +#: erpnext/stock/doctype/packed_item/packed_item.py:453 +msgid "Product Bundle {0} is disabled and cannot be used in transactions." +msgstr "" + +#: erpnext/stock/doctype/packed_item/packed_item.py:450 +msgid "Product Bundle {0} is not submitted" +msgstr "" + +#. Label of the product_discount_scheme_section (Section Break) field in +#. DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Product Discount Scheme" +msgstr "" + +#. Label of the section_break_15 (Section Break) field in DocType 'Promotional +#. Scheme' +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Product Discount Slabs" +msgstr "" + +#. Option for the 'Request Type' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Product Enquiry" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:25 +msgid "Product Manager" +msgstr "" + +#. Label of the product_price_id (Data) field in DocType 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Product Price ID" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Workstation' +#. Label of a Card Break in the Manufacturing Workspace +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/setup/doctype/company/company.py:482 +msgid "Production" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/production_analytics/production_analytics.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Production Analytics" +msgstr "" + +#. Label of the production_capacity (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Production Capacity" +msgstr "" + +#. Label of the production_item_tab (Tab Break) field in DocType 'BOM' +#. Label of the item (Tab Break) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order/work_order_calendar.js:38 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:65 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:152 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:42 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:123 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:51 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:208 +msgid "Production Item" +msgstr "" + +#. Label of the production_item_info_section (Section Break) field in DocType +#. 'BOM' +#. Label of the production_item_info_section (Section Break) field in DocType +#. 'Work Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Production Item Info" +msgstr "" + +#. Label of the production_plan (Link) field in DocType 'Purchase Order Item' +#. Name of a DocType +#. Label of the production_plan (Link) field in DocType 'Work Order' +#. Label of a Link in the Manufacturing Workspace +#. Label of the production_plan (Link) field in DocType 'Material Request Item' +#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation +#. Entry' +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Label of the production_plan (Data) field in DocType 'Subcontracting Order' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.js:8 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1102 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Production Plan" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:169 +msgid "Production Plan Already Submitted" +msgstr "" + +#. Label of the production_plan_item (Data) field in DocType 'Purchase Order +#. Item' +#. Name of a DocType +#. Label of the production_plan_item (Data) field in DocType 'Production Plan +#. Sub Assembly Item' +#. Label of the production_plan_item (Data) field in DocType 'Work Order' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Production Plan Item" +msgstr "" + +#. Label of the prod_plan_references (Table) field in DocType 'Production Plan' +#. Name of a DocType +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json +msgid "Production Plan Item Reference" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json +msgid "Production Plan Material Request" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.json +msgid "Production Plan Material Request Warehouse" +msgstr "" + +#. Label of the production_plan_qty (Float) field in DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Production Plan Qty" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json +msgid "Production Plan Sales Order" +msgstr "" + +#. Label of the production_plan_sub_assembly_item (Data) field in DocType +#. 'Purchase Order Item' +#. Name of a DocType +#. Label of the production_plan_sub_assembly_item (Data) field in DocType 'Work +#. Order' +#. Label of the production_plan_sub_assembly_item (Data) field in DocType +#. 'Subcontracting Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Production Plan Sub Assembly Item" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:110 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.json +msgid "Production Plan Summary" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Production Planning Report" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:39 +msgid "Products" +msgstr "" + +#. Label of the accounts_module (Column Break) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Profit & Loss" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +msgid "Profit This Year" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Account' +#. Option for the 'Report Type' (Select) field in DocType 'Process Period +#. Closing Voucher Detail' +#. Label of a chart in the Financial Reports Workspace +#. Label of a chart in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/public/js/financial_statements.js:343 +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Profit and Loss" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Financial Report +#. Template' +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +msgid "Profit and Loss Statement" +msgstr "" + +#. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting +#. Statements' +#. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Profit and Loss Summary" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +msgid "Profit for the year" +msgstr "" + +#. Label of a Card Break in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Profitability" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Profitability Analysis" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:155 +#, python-format +msgid "Progress % for a task cannot be more than 100." +msgstr "" + +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:116 +msgid "Progress (%)" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:432 +msgid "Project Collaboration Invitation" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:39 +msgid "Project Id" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:26 +msgid "Project Manager" +msgstr "" + +#. Label of the project_name (Data) field in DocType 'Sales Invoice Timesheet' +#. Label of the project_name (Data) field in DocType 'Project' +#. Label of the project_name (Data) field in DocType 'Timesheet Detail' +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/projects/report/project_summary/project_summary.py:54 +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:43 +msgid "Project Name" +msgstr "" + +#: erpnext/templates/pages/projects.html:112 +msgid "Project Progress:" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:48 +msgid "Project Start Date" +msgstr "" + +#. Label of the project_status (Text) field in DocType 'Project User' +#: erpnext/projects/doctype/project_user/project_user.json +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:44 +msgid "Project Status" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/projects/report/project_summary/project_summary.json +#: erpnext/workspace_sidebar/projects.json +msgid "Project Summary" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:744 +msgid "Project Summary for {0}" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/doctype/project_template/project_template.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Project Template" +msgstr "" + +#. Name of a DocType +#: erpnext/projects/doctype/project_template_task/project_template_task.json +msgid "Project Template Task" +msgstr "" + +#. Label of the project_type (Link) field in DocType 'Project' +#. Label of the project_type (Link) field in DocType 'Project Template' +#. Name of a DocType +#. Label of the project_type (Data) field in DocType 'Project Type' +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project_template/project_template.json +#: erpnext/projects/doctype/project_type/project_type.json +#: erpnext/projects/report/project_summary/project_summary.js:30 +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Project Type" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/doctype/project_update/project_update.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Project Update" +msgstr "" + +#: erpnext/config/projects.py:44 +msgid "Project Update." +msgstr "" + +#. Name of a DocType +#: erpnext/projects/doctype/project_user/project_user.json +msgid "Project User" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:47 +msgid "Project Value" +msgstr "" + +#: erpnext/config/projects.py:20 +msgid "Project activity / task." +msgstr "" + +#: erpnext/config/projects.py:13 +msgid "Project master." +msgstr "" + +#. Description of the 'Users' (Table) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Project will be accessible on the website to these users" +msgstr "" + +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Project wise Stock Tracking" +msgstr "" + +#. Name of a report +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.json +msgid "Project wise Stock Tracking " +msgstr "" + +#: erpnext/controllers/trends.py:446 +msgid "Project-wise data is not available for Quotation" +msgstr "" + +#. Label of the projected_on_hand (Float) field in DocType 'Material Request +#. Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Projected On Hand" +msgstr "" + +#. Label of the projected_qty (Float) field in DocType 'Material Request Plan +#. Item' +#. Label of the projected_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the projected_qty (Float) field in DocType 'Quotation Item' +#. Label of the projected_qty (Float) field in DocType 'Sales Order Item' +#. Label of the projected_qty (Float) field in DocType 'Bin' +#. Label of the projected_qty (Float) field in DocType 'Material Request Item' +#. Label of the projected_qty (Float) field in DocType 'Packed Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:46 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/dashboard/item_dashboard_list.html:37 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:73 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:206 +#: erpnext/templates/emails/reorder_item.html:12 +msgid "Projected Qty" +msgstr "" + +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:130 +msgid "Projected Quantity" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:184 +msgid "Projected Quantity Formula" +msgstr "" + +#: erpnext/stock/page/stock_balance/stock_balance.js:51 +msgid "Projected qty" +msgstr "" + +#. Label of a Desktop Icon +#. Name of a Workspace +#. Label of a Card Break in the Projects Workspace +#. Title of a Workspace Sidebar +#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json +#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/selling/doctype/customer/customer_dashboard.py:26 +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 +#: erpnext/setup/doctype/company/company_dashboard.py:25 +#: erpnext/workspace_sidebar/projects.json +msgid "Projects" +msgstr "" + +#. Name of a role +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project_type/project_type.json +#: erpnext/projects/doctype/task_type/task_type.json +msgid "Projects Manager" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/doctype/projects_settings/projects_settings.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Projects Settings" +msgstr "" + +#. Title of the Module Onboarding 'Projects Onboarding' +#: erpnext/projects/module_onboarding/projects_onboarding/projects_onboarding.json +msgid "Projects Setup" +msgstr "" + +#. Name of a role +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/activity_type/activity_type.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project_type/project_type.json +#: erpnext/projects/doctype/project_update/project_update.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/doctype/task_type/task_type.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/setup/doctype/company/company.json +msgid "Projects User" +msgstr "" + +#. Option for the 'Coupon Type' (Select) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Promotional" +msgstr "" + +#. Label of the promotional_scheme (Link) field in DocType 'Pricing Rule' +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Promotional Scheme" +msgstr "" + +#. Label of the promotional_scheme_id (Data) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Promotional Scheme Id" +msgstr "" + +#. Label of the price_discount_slabs (Table) field in DocType 'Promotional +#. Scheme' +#. Name of a DocType +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "Promotional Scheme Price Discount" +msgstr "" + +#. Label of the product_discount_slabs (Table) field in DocType 'Promotional +#. Scheme' +#. Name of a DocType +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Promotional Scheme Product Discount" +msgstr "" + +#. Label of the prompt_qty (Check) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Prompt Qty" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:264 +msgid "Proposal Writing" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:7 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:443 +msgid "Proposal/Price Quote" +msgstr "" + +#. Label of the prorate (Check) field in DocType 'Subscription Settings' +#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json +msgid "Prorate" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the CRM Workspace +#. Label of the prospect_name (Link) field in DocType 'Customer' +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/lead/lead.js:36 erpnext/crm/doctype/lead/lead.js:62 +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/workspace_sidebar/crm.json +msgid "Prospect" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/prospect_lead/prospect_lead.json +msgid "Prospect Lead" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +msgid "Prospect Opportunity" +msgstr "" + +#. Label of the prospect_owner (Link) field in DocType 'Prospect' +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Prospect Owner" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:308 +msgid "Prospect {0} already exists" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:1 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:437 +msgid "Prospecting" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Prospects Engaged But Not Converted" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +msgid "Protected DocType" +msgstr "" + +#. Description of the 'Company Email' (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Provide Email Address registered in company" +msgstr "" + +#. Option for the 'Bank Guarantee Type' (Select) field in DocType 'Bank +#. Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Providing" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:581 +msgid "Provisional Account" +msgstr "" + +#. Label of the default_provisional_account (Link) field in DocType 'Item +#. Default' +#. Label of the vf_default_provisional_account (Read Only) field in DocType +#. 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Provisional Account (Service)" +msgstr "" + +#. Label of the provisional_expense_account (Link) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Provisional Expense Account" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +msgid "Provisional Profit / Loss (Credit)" +msgstr "" + +#. Description of the 'Provisional Account (Service)' (Link) field in DocType +#. 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Provisional liability account used for service items before invoice is received" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Psi/1000 Feet" +msgstr "" + +#. Label of the publish_date (Date) field in DocType 'Video' +#: erpnext/utilities/doctype/video/video.json +msgid "Publish Date" +msgstr "" + +#: erpnext/utilities/report/youtube_interactions/youtube_interactions.py:22 +msgid "Published Date" +msgstr "" + +#. Label of the publisher (Data) field in DocType 'Code List' +#: erpnext/edi/doctype/code_list/code_list.json +msgid "Publisher" +msgstr "" + +#. Label of the publisher_id (Data) field in DocType 'Code List' +#: erpnext/edi/doctype/code_list/code_list.json +msgid "Publisher ID" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:39 +msgid "Publishing" +msgstr "" + +#. Option for the 'Invoice Type' (Select) field in DocType 'Opening Invoice +#. Creation Tool' +#. Option for the 'Transfer Type' (Select) field in DocType 'Share Transfer' +#. Option for the 'Tax Type' (Select) field in DocType 'Tax Rule' +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Option for the 'Default Material Request Type' (Select) field in DocType +#. 'Item' +#. Label of the section_break_fwyn (Section Break) field in DocType 'Item Lead +#. Time' +#. Option for the 'Material Request Type' (Select) field in DocType 'Item +#. Reorder' +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:10 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:9 +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template_dashboard.py:15 +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule_dashboard.py:11 +#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:10 +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/projects/doctype/project/project_dashboard.py:16 +#: erpnext/setup/doctype/company/company.py:470 erpnext/setup/install.py:402 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_list.js:30 +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/item_reorder/item_reorder.json +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Purchase" +msgstr "" + +#. Label of the purchase_amount (Currency) field in DocType 'Loyalty Point +#. Entry' +#. Label of the purchase_amount (Currency) field in DocType 'Asset' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:155 +#: erpnext/assets/doctype/asset/asset.json +msgid "Purchase Amount" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/purchase_analytics/purchase_analytics.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Purchase Analytics" +msgstr "" + +#. Label of the purchase_date (Date) field in DocType 'Asset' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:206 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:489 +msgid "Purchase Date" +msgstr "" + +#. Label of the purchase_defaults (Section Break) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Purchase Defaults" +msgstr "" + +#. Label of the purchase_details_section (Section Break) field in DocType +#. 'Asset' +#. Label of the section_break_6 (Section Break) field in DocType 'Asset +#. Capitalization Stock Item' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +msgid "Purchase Details" +msgstr "" + +#. Label of the purchase_expense_section (Section Break) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Purchase Expense" +msgstr "" + +#. Label of the purchase_expense_account (Link) field in DocType 'Company' +#. Label of the purchase_expense_account (Link) field in DocType 'Item Default' +#. Label of the vf_purchase_expense_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Purchase Expense Account" +msgstr "" + +#. Label of the purchase_expense_contra_account (Link) field in DocType +#. 'Company' +#. Label of the purchase_expense_contra_account (Link) field in DocType 'Item +#. Default' +#. Label of the vf_purchase_expense_contra_account (Read Only) field in DocType +#. 'Item Default' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Purchase Expense Contra Account" +msgstr "" + +#: erpnext/controllers/buying_controller.py:365 +#: erpnext/controllers/buying_controller.py:379 +msgid "Purchase Expense for Item {0}" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Option for the 'Invoice Type' (Select) field in DocType 'Payment +#. Reconciliation Invoice' +#. Name of a DocType +#. Label of the purchase_invoice (Link) field in DocType 'Asset' +#. Label of the purchase_invoice (Link) field in DocType 'Asset Repair Purchase +#. Invoice' +#. Label of a Link in the Buying Workspace +#. Option for the 'Document Type' (Select) field in DocType 'Contract' +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Item' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Purchase Receipt' +#. Label of the purchase_invoice (Link) field in DocType 'Purchase Receipt +#. Item' +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:60 +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/print_format/purchase_auditing_voucher/purchase_auditing_voucher.html:5 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js:22 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:53 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json +#: erpnext/buying/doctype/buying_settings/buying_settings.js:48 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:382 +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:63 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:21 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:118 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:263 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:30 +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:441 +#: erpnext/workspace_sidebar/buying.json +#: erpnext/workspace_sidebar/invoicing.json +msgid "Purchase Invoice" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +msgid "Purchase Invoice Advance" +msgstr "" + +#. Name of a DocType +#. Label of the purchase_invoice_item (Data) field in DocType 'Purchase Invoice +#. Item' +#. Label of the purchase_invoice_item (Data) field in DocType 'Asset' +#. Label of the purchase_invoice_item (Data) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Purchase Invoice Item" +msgstr "" + +#. Label of the purchase_invoice_settings_section (Section Break) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Purchase Invoice Settings" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Purchase Invoice Trends" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:336 +msgid "Purchase Invoice cannot be made against an existing asset {0}" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +msgid "Purchase Invoice {0} is already submitted" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:918 +msgid "Purchase Invoices" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Label of the purchase_order (Link) field in DocType 'Purchase Invoice Item' +#. Label of the purchase_order (Link) field in DocType 'Sales Invoice Item' +#. Name of a DocType +#. Label of the purchase_order (Link) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of a Link in the Buying Workspace +#. Option for the 'Document Type' (Select) field in DocType 'Contract' +#. Label of the purchase_order (Link) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the purchase_order (Link) field in DocType 'Sales Order Item' +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Label of the purchase_order (Link) field in DocType 'Delivery Note Item' +#. Label of the purchase_order (Link) field in DocType 'Purchase Receipt Item' +#. Label of the purchase_order (Link) field in DocType 'Stock Entry' +#. Label of the purchase_order (Link) field in DocType 'Subcontracting Receipt +#. Item' +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:61 +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:156 +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:237 +#: erpnext/accounts/report/purchase_register/purchase_register.py:218 +#: erpnext/buying/doctype/buying_settings/buying_settings.js:47 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/controllers/buying_controller.py:929 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:54 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:179 +#: erpnext/selling/doctype/sales_order/sales_order.js:1149 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request/material_request.js:196 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:217 +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/buying.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Purchase Order" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +msgid "Purchase Order Amount" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +msgid "Purchase Order Amount(Company Currency)" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/buying.json +msgid "Purchase Order Analysis" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +msgid "Purchase Order Date" +msgstr "" + +#. Label of the po_detail (Data) field in DocType 'Purchase Invoice Item' +#. Label of the purchase_order_item (Data) field in DocType 'Sales Invoice +#. Item' +#. Name of a DocType +#. Label of the purchase_order_item (Data) field in DocType 'Sales Order Item' +#. Label of the purchase_order_item (Data) field in DocType 'Delivery Note +#. Item' +#. Label of the purchase_order_item (Data) field in DocType 'Purchase Receipt +#. Item' +#. Label of the purchase_order_item (Data) field in DocType 'Subcontracting +#. Order Item' +#. Label of the purchase_order_item (Data) field in DocType 'Subcontracting +#. Order Service Item' +#. Label of the purchase_order_item (Data) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Purchase Order Item" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:60 +msgid "Purchase Order Item reference is missing in Subcontracting Receipt {0}" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:186 +msgid "Purchase Order Items not received on time" +msgstr "" + +#. Label of the pricing_rules (Table) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Purchase Order Pricing Rule" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:471 +msgid "Purchase Order Required" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 +msgid "Purchase Order Required for item {}" +msgstr "" + +#. Name of a report +#. Label of a chart in the Buying Workspace +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Purchase Order Trends" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1670 +msgid "Purchase Order already created for all Sales Order items" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:319 +msgid "Purchase Order number required for Item {0}" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1362 +msgid "Purchase Order {0} created" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:529 +msgid "Purchase Order {0} is not submitted" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.py:582 +msgid "Purchase Orders" +msgstr "" + +#. Label of a number card in the Buying Workspace +#: erpnext/buying/workspace/buying/buying.json +msgid "Purchase Orders Count" +msgstr "" + +#. Label of the purchase_orders_items_overdue (Check) field in DocType 'Email +#. Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Purchase Orders Items Overdue" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.py:277 +msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}." +msgstr "" + +#. Label of the purchase_orders_to_bill (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Purchase Orders to Bill" +msgstr "" + +#. Label of the purchase_orders_to_receive (Check) field in DocType 'Email +#. Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Purchase Orders to Receive" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1236 +msgid "Purchase Orders {0} are un-linked" +msgstr "" + +#: erpnext/stock/report/item_prices/item_prices.py:59 +msgid "Purchase Price List" +msgstr "" + +#. Label of the purchase_receipt (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the purchase_receipt (Link) field in DocType 'Asset' +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Item' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Purchase Receipt' +#. Name of a DocType +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:62 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:181 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:647 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:657 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:49 +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:244 +#: erpnext/accounts/report/purchase_register/purchase_register.py:225 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js:22 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:21 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/buying/doctype/buying_settings/buying_settings.js:49 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:361 +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:69 +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:151 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:68 +#: erpnext/workspace_sidebar/stock.json +msgid "Purchase Receipt" +msgstr "" + +#. Description of the 'Auto create Purchase Receipt' (Check) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Purchase Receipt (Draft) will be auto-created on submission of Subcontracting Receipt." +msgstr "" + +#. Label of the pr_detail (Data) field in DocType 'Purchase Invoice Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +msgid "Purchase Receipt Detail" +msgstr "" + +#. Label of the purchase_receipt_item (Data) field in DocType 'Asset' +#. Label of the purchase_receipt_item (Data) field in DocType 'Asset +#. Capitalization Stock Item' +#. Label of the purchase_receipt_item (Data) field in DocType 'Landed Cost +#. Item' +#. Name of a DocType +#. Label of the purchase_receipt_item (Data) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Purchase Receipt Item" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +msgid "Purchase Receipt Item Supplied" +msgstr "" + +#. Label of the purchase_receipt_no (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Purchase Receipt No" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:493 +msgid "Purchase Receipt Required" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 +msgid "Purchase Receipt Required for item {}" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Purchase Receipt Trends" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/buying.json +msgid "Purchase Receipt Trends " +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 +msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 +msgid "Purchase Receipt {0} created." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:533 +msgid "Purchase Receipt {0} is not submitted" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/purchase_register/purchase_register.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Purchase Register" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:253 +msgid "Purchase Return" +msgstr "" + +#. Label of the purchase_tax_template (Link) field in DocType 'Tax Rule' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/setup/doctype/company/company.js:161 +#: erpnext/workspace_sidebar/taxes.json +msgid "Purchase Tax Template" +msgstr "" + +#. Label of the purchase_tax_withholding_category (Link) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Purchase Tax Withholding Category" +msgstr "" + +#. Label of the taxes (Table) field in DocType 'Purchase Invoice' +#. Name of a DocType +#. Label of the taxes (Table) field in DocType 'Purchase Taxes and Charges +#. Template' +#. Label of the taxes (Table) field in DocType 'Purchase Order' +#. Label of the taxes (Table) field in DocType 'Supplier Quotation' +#. Label of the taxes (Table) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Purchase Taxes and Charges" +msgstr "" + +#. Label of the purchase_taxes_and_charges_template (Link) field in DocType +#. 'Payment Entry' +#. Label of the taxes_and_charges (Link) field in DocType 'Purchase Invoice' +#. Name of a DocType +#. Label of the purchase_tax_template (Link) field in DocType 'Subscription' +#. Label of a Link in the Invoicing Workspace +#. Label of the taxes_and_charges (Link) field in DocType 'Purchase Order' +#. Label of the taxes_and_charges (Link) field in DocType 'Supplier Quotation' +#. Label of a Link in the Buying Workspace +#. Label of the taxes_and_charges (Link) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Purchase Taxes and Charges Template" +msgstr "" + +#. Label of the purchase_time (Int) field in DocType 'Item Lead Time' +#. Label of the purchase_lead_time_tab (Tab Break) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Purchase Time" +msgstr "" + +#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.py:57 +msgid "Purchase Value" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:35 +msgid "Purchase Voucher No" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:29 +msgid "Purchase Voucher Type" +msgstr "" + +#: erpnext/utilities/activation.py:107 +msgid "Purchase orders help you plan and follow up on your purchases" +msgstr "" + +#. Option for the 'Current State' (Select) field in DocType 'Share Balance' +#: erpnext/accounts/doctype/share_balance/share_balance.json +msgid "Purchased" +msgstr "" + +#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:143 +msgid "Purchases" +msgstr "" + +#. Option for the 'Order Type' (Select) field in DocType 'Blanket Order' +#. Label of the purchasing_tab (Tab Break) field in DocType 'Item' +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:27 +#: erpnext/stock/doctype/item/item.json +msgid "Purchasing" +msgstr "" + +#. Label of the purpose (Select) field in DocType 'Asset Movement' +#. Label of the material_request_type (Select) field in DocType 'Material +#. Request' +#. Label of the purpose (Select) field in DocType 'Pick List' +#. Label of the purpose (Select) field in DocType 'Stock Entry' +#. Label of the purpose (Select) field in DocType 'Stock Entry Type' +#. Label of the purpose (Select) field in DocType 'Stock Reconciliation' +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163 +#: erpnext/stock/doctype/item/item_list.js:41 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:476 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Purpose" +msgstr "" + +#. Label of the purposes (Table) field in DocType 'Maintenance Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Purposes" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:56 +msgid "Purposes Required" +msgstr "" + +#. Label of the putaway_rule (Link) field in DocType 'Purchase Receipt Item' +#. Name of a DocType +#. Label of the putaway_rule (Link) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Putaway Rule" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:53 +msgid "Putaway Rule already exists for Item {0} in Warehouse {1}." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:41 +msgid "Q1" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:49 +msgid "Q2" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:57 +msgid "Q3" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:65 +msgid "Q4" +msgstr "" + +#. Label of the free_qty (Float) field in DocType 'Pricing Rule' +#. Label of the free_qty (Float) field in DocType 'Promotional Scheme Product +#. Discount' +#. Label of the qty (Float) field in DocType 'Asset Capitalization Service +#. Item' +#. Label of the qty (Float) field in DocType 'Opportunity Item' +#. Label of the qty (Float) field in DocType 'BOM Creator Item' +#. Label of the qty (Float) field in DocType 'BOM Item' +#. Label of the qty (Float) field in DocType 'BOM Secondary Item' +#. Label of the qty (Float) field in DocType 'BOM Website Item' +#. Label of the qty_section (Section Break) field in DocType 'Job Card Item' +#. Label of the stock_qty (Float) field in DocType 'Job Card Secondary Item' +#. Label of the qty (Float) field in DocType 'Production Plan Item Reference' +#. Label of the qty (Float) field in DocType 'Work Order Additional Item' +#. Label of the qty_section (Section Break) field in DocType 'Work Order Item' +#. Label of the qty (Float) field in DocType 'Delivery Schedule Item' +#. Label of the qty (Float) field in DocType 'Product Bundle Item' +#. Label of the qty (Float) field in DocType 'Landed Cost Item' +#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges' +#. Option for the 'Distribute Charges Based On' (Select) field in DocType +#. 'Landed Cost Voucher' +#. Label of the qty (Float) field in DocType 'Packed Item' +#. Label of the qty (Float) field in DocType 'Pick List Item' +#. Label of the qty (Float) field in DocType 'Serial and Batch Entry' +#. Label of the qty (Float) field in DocType 'Stock Entry Detail' +#. Option for the 'Reservation Based On' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Option for the 'Distribute Additional Costs Based On ' (Select) field in +#. DocType 'Subcontracting Order' +#. Option for the 'Distribute Additional Costs Based On ' (Select) field in +#. DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +#: erpnext/accounts/report/gross_profit/gross_profit.py:345 +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:242 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:226 +#: erpnext/controllers/trends.py:287 erpnext/controllers/trends.py:299 +#: erpnext/controllers/trends.py:304 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/bom/bom.js:1108 +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:28 +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:69 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:235 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:333 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 +#: erpnext/public/js/stock_reservation.js:134 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:395 +#: erpnext/selling/doctype/sales_order/sales_order.js:532 +#: erpnext/selling/doctype/sales_order/sales_order.js:622 +#: erpnext/selling/doctype/sales_order/sales_order.js:669 +#: erpnext/selling/doctype/sales_order/sales_order.js:1344 +#: erpnext/selling/doctype/sales_order/sales_order.js:1506 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:266 +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/templates/form_grid/item_grid.html:7 +#: erpnext/templates/form_grid/material_request_grid.html:9 +#: erpnext/templates/form_grid/stock_entry_grid.html:10 +#: erpnext/templates/generators/bom.html:50 erpnext/templates/pages/rfq.html:40 +msgid "Qty" +msgstr "" + +#: erpnext/templates/pages/order.html:178 +msgid "Qty " +msgstr "" + +#. Label of the received_qty (Float) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Qty (As per BOM)" +msgstr "" + +#. Label of the company_total_stock (Float) field in DocType 'Sales Invoice +#. Item' +#. Label of the company_total_stock (Float) field in DocType 'Quotation Item' +#. Label of the company_total_stock (Float) field in DocType 'Sales Order Item' +#. Label of the company_total_stock (Float) field in DocType 'Delivery Note +#. Item' +#. Label of the company_total_stock (Float) field in DocType 'Pick List Item' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Qty (Company)" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Sales Invoice Item' +#. Label of the actual_qty (Float) field in DocType 'Quotation Item' +#. Label of the actual_qty (Float) field in DocType 'Sales Order Item' +#. Label of the actual_qty (Float) field in DocType 'Delivery Note Item' +#. Label of the actual_qty (Float) field in DocType 'Pick List Item' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Qty (Warehouse)" +msgstr "" + +#. Label of the stock_qty (Float) field in DocType 'Pick List Item' +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Qty (in Stock UOM)" +msgstr "" + +#. Label of the qty_after_transaction (Float) field in DocType 'Stock Ledger +#. Entry' +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:66 +msgid "Qty After Transaction" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' +#. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' +#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:188 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:91 +msgid "Qty Change" +msgstr "" + +#. Label of the qty_consumed_per_unit (Float) field in DocType 'BOM Explosion +#. Item' +#. Label of the qty_consumed_per_unit (Float) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Qty Consumed Per Unit" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Material Request Plan +#. Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "Qty In Stock" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:117 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:174 +msgid "Qty Per Unit" +msgstr "" + +#. Label of the for_quantity (Float) field in DocType 'Job Card' +#. Label of the qty (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/bom/bom.js:408 +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:84 +msgid "Qty To Manufacture" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:268 +msgid "Qty To Manufacture in the job card cannot be greater than Qty To Manufacture in the work order for the operation {0}.

        Solution: Either you can reduce the Qty To Manufacture in the job card or set the 'Overproduction Percentage For Work Order' in the {1}." +msgstr "" + +#. Label of the qty_to_produce (Float) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Qty To Produce" +msgstr "" + +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:56 +msgid "Qty Wise Chart" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Asset +#. Capitalization Service Item' +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +msgid "Qty and Rate" +msgstr "" + +#. Label of the tracking_section (Section Break) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Qty as Per Stock UOM" +msgstr "" + +#. Label of the stock_qty (Float) field in DocType 'POS Invoice Item' +#. Label of the stock_qty (Float) field in DocType 'Sales Invoice Item' +#. Label of the stock_qty (Float) field in DocType 'Request for Quotation Item' +#. Label of the stock_qty (Float) field in DocType 'Supplier Quotation Item' +#. Label of the stock_qty (Float) field in DocType 'Quotation Item' +#. Label of the stock_qty (Float) field in DocType 'Sales Order Item' +#. Label of the transfer_qty (Float) field in DocType 'Stock Entry Detail' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Qty as per Stock UOM" +msgstr "" + +#. Description of the 'Apply Recursion Over (As Per Transaction UOM)' (Float) +#. field in DocType 'Pricing Rule' +#. Description of the 'Apply Recursion Over (As Per Transaction UOM)' (Float) +#. field in DocType 'Promotional Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Qty for which recursion isn't applicable." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1057 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1080 +msgid "Qty for {0}" +msgstr "" + +#. Label of the stock_qty (Float) field in DocType 'Purchase Order Item' +#. Label of the stock_qty (Float) field in DocType 'Delivery Note Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:233 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Qty in Stock UOM" +msgstr "" + +#. Label of the for_qty (Float) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.js:206 +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Qty of Finished Goods Item" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:677 +msgid "Qty of Finished Goods Item should be greater than 0." +msgstr "" + +#. Description of the 'Qty of Finished Goods Item' (Float) field in DocType +#. 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Qty of raw materials will be decided based on the qty of the Finished Goods Item" +msgstr "" + +#. Label of the consumed_qty (Float) field in DocType 'Purchase Receipt Item +#. Supplied' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +msgid "Qty to Be Consumed" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:270 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:294 +msgid "Qty to Bill" +msgstr "" + +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +msgid "Qty to Build" +msgstr "" + +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:280 +msgid "Qty to Deliver" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:396 +msgid "Qty to Disassemble" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:385 +msgid "Qty to Fetch" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:246 +#: erpnext/manufacturing/doctype/job_card/job_card.py:962 +msgid "Qty to Manufacture" +msgstr "" + +#. Label of the qty (Float) field in DocType 'Production Plan Sub Assembly +#. Item' +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:170 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:261 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Qty to Order" +msgstr "" + +#. Label of the finished_good_qty (Float) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:129 +msgid "Qty to Produce" +msgstr "" + +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:173 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:254 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:541 +msgid "Qty to Receive" +msgstr "" + +#. Label of the qualification_tab (Section Break) field in DocType 'Lead' +#. Label of the qualification (Data) field in DocType 'Employee Education' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/setup/doctype/employee_education/employee_education.json +#: erpnext/setup/setup_wizard/data/sales_stage.txt:2 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:438 +msgid "Qualification" +msgstr "" + +#. Label of the qualification_status (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Qualification Status" +msgstr "" + +#. Option for the 'Qualification Status' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Qualified" +msgstr "" + +#. Label of the qualified_by (Link) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Qualified By" +msgstr "" + +#. Label of the qualified_on (Date) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Qualified on" +msgstr "" + +#. Label of a Desktop Icon +#. Name of a Workspace +#. Label of the quality_tab (Tab Break) field in DocType 'Item' +#. Label of the quality_tab (Tab Break) field in DocType 'Stock Settings' +#. Title of a Workspace Sidebar +#: erpnext/desktop_icon/quality.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/stock/doctype/batch/batch_dashboard.py:11 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality" +msgstr "" + +#. Name of a DocType +#. Option for the 'Document Type' (Select) field in DocType 'Quality Meeting +#. Minutes' +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_action/quality_action.json +#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Action" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json +msgid "Quality Action Resolution" +msgstr "" + +#. Name of a DocType +#. Option for the 'Document Type' (Select) field in DocType 'Quality Meeting +#. Minutes' +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json +#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Feedback" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_feedback_parameter/quality_feedback_parameter.json +msgid "Quality Feedback Parameter" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Quality Workspace +#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json +#: erpnext/quality_management/workspace/quality/quality.json +msgid "Quality Feedback Template" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_feedback_template_parameter/quality_feedback_template_parameter.json +msgid "Quality Feedback Template Parameter" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Goal" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json +msgid "Quality Goal Objective" +msgstr "" + +#. Label of the quality_inspection (Link) field in DocType 'POS Invoice Item' +#. Label of the quality_inspection (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the quality_inspection (Link) field in DocType 'Sales Invoice Item' +#. Label of the quality_inspection_section_break (Section Break) field in +#. DocType 'BOM' +#. Label of the quality_inspection (Link) field in DocType 'Job Card' +#. Label of the quality_inspection_section (Section Break) field in DocType +#. 'Job Card' +#. Label of a Link in the Quality Workspace +#. Label of the quality_inspection (Link) field in DocType 'Delivery Note Item' +#. Label of the quality_inspection (Link) field in DocType 'Purchase Receipt +#. Item' +#. Name of a DocType +#. Group in Quality Inspection Template's connections +#. Label of the quality_inspection (Link) field in DocType 'Stock Entry Detail' +#. Label of a Link in the Stock Workspace +#. Label of the quality_inspection (Link) field in DocType 'Subcontracting +#. Receipt Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/manufacturing/doctype/bom/bom.js:277 +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/workspace_sidebar/quality.json erpnext/workspace_sidebar/stock.json +msgid "Quality Inspection" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:108 +msgid "Quality Inspection Analysis" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2973 +msgid "Quality Inspection Not Configured" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +msgid "Quality Inspection Parameter" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json +msgid "Quality Inspection Parameter Group" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Quality Inspection Reading" +msgstr "" + +#. Label of the inspection_required (Check) field in DocType 'BOM' +#. Label of the quality_inspection_required (Check) field in DocType 'BOM +#. Operation' +#. Label of the quality_inspection_required (Check) field in DocType 'Work +#. Order Operation' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Quality Inspection Required" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Quality Inspection Summary" +msgstr "" + +#. Label of the quality_inspection_template (Link) field in DocType 'BOM' +#. Label of the quality_inspection_template (Link) field in DocType 'Job Card' +#. Label of the quality_inspection_template (Link) field in DocType 'Operation' +#. Label of the quality_inspection_template (Link) field in DocType 'Item' +#. Label of the quality_inspection_template (Link) field in DocType 'Quality +#. Inspection' +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/quality.json erpnext/workspace_sidebar/stock.json +msgid "Quality Inspection Template" +msgstr "" + +#. Label of the quality_inspection_template_name (Data) field in DocType +#. 'Quality Inspection Template' +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +msgid "Quality Inspection Template Name" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:857 +msgid "Quality Inspection is required for the item {0} before completing the job card {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:876 +msgid "Quality Inspection {0} is not submitted for the item: {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:886 +msgid "Quality Inspection {0} is rejected for the item: {1}" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:208 +msgid "Quality Inspection(s)" +msgstr "" + +#. Label of a chart in the Quality Workspace +#: erpnext/quality_management/workspace/quality/quality.json +msgid "Quality Inspections" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:512 +msgid "Quality Management" +msgstr "" + +#. Name of a role +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_activity/asset_activity.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_category/asset_category.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +msgid "Quality Manager" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_meeting/quality_meeting.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Meeting" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.json +msgid "Quality Meeting Agenda" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json +msgid "Quality Meeting Minutes" +msgstr "" + +#. Name of a DocType +#. Label of the quality_procedure_name (Data) field in DocType 'Quality +#. Procedure' +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure_tree.js:10 +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Procedure" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json +msgid "Quality Procedure Process" +msgstr "" + +#. Option for the 'Document Type' (Select) field in DocType 'Quality Meeting +#. Minutes' +#. Name of a DocType +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Review" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json +msgid "Quality Review Objective" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +msgid "Quantities updated successfully." +msgstr "" + +#. Label of the qty (Data) field in DocType 'Opening Invoice Creation Tool +#. Item' +#. Label of the qty (Float) field in DocType 'POS Invoice Item' +#. Label of the qty (Float) field in DocType 'Sales Invoice Item' +#. Label of the qty (Int) field in DocType 'Subscription Plan Detail' +#. Label of the stock_qty (Float) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the qty (Float) field in DocType 'Purchase Order Item' +#. Label of the qty (Float) field in DocType 'Request for Quotation Item' +#. Label of the qty (Float) field in DocType 'Supplier Quotation Item' +#. Label of the qty (Float) field in DocType 'Blanket Order Item' +#. Label of the qty (Float) field in DocType 'BOM Creator' +#. Label of the section_break_4rxf (Section Break) field in DocType 'Production +#. Plan Sub Assembly Item' +#. Label of the qty (Float) field in DocType 'Quotation Item' +#. Label of the qty (Float) field in DocType 'Sales Order Item' +#. Label of the qty (Float) field in DocType 'Delivery Note Item' +#. Label of the qty (Float) field in DocType 'Material Request Item' +#. Label of the quantity_section (Section Break) field in DocType 'Packing Slip +#. Item' +#. Label of the qty (Float) field in DocType 'Packing Slip Item' +#. Label of the quantity_section (Section Break) field in DocType 'Pick List +#. Item' +#. Label of the quantity_section (Section Break) field in DocType 'Stock Entry +#. Detail' +#. Label of the qty (Float) field in DocType 'Stock Reconciliation Item' +#. Label of the qty (Float) field in DocType 'Subcontracting Inward Order Item' +#. Label of the quantity_section (Section Break) field in DocType +#. 'Subcontracting Inward Order Item' +#. Label of the qty (Float) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Label of the qty (Float) field in DocType 'Subcontracting Order Item' +#. Label of the qty (Float) field in DocType 'Subcontracting Order Service +#. Item' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/manufacturing/doctype/bom/bom.js:496 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:76 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194 +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/public/js/controllers/buying.js:616 +#: erpnext/public/js/stock_analytics.js:50 +#: erpnext/public/js/utils/serial_no_batch_selector.js:500 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:51 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:43 +#: erpnext/selling/report/sales_analytics/sales_analytics.js:44 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:39 +#: erpnext/stock/dashboard/item_dashboard.js:248 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request/material_request.js:368 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:824 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:36 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:154 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:480 +#: erpnext/stock/report/stock_analytics/stock_analytics.js:27 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/templates/emails/reorder_item.html:10 +#: erpnext/templates/generators/bom.html:30 +#: erpnext/templates/pages/material_request_info.html:48 +#: erpnext/templates/pages/order.html:97 +msgid "Quantity" +msgstr "" + +#. Description of the 'Packing Unit' (Int) field in DocType 'Item Price' +#: erpnext/stock/doctype/item_price/item_price.json +msgid "Quantity that must be bought or sold per UOM" +msgstr "" + +#. Label of the quantity (Section Break) field in DocType 'Request for +#. Quotation Item' +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +msgid "Quantity & Stock" +msgstr "" + +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:53 +msgid "Quantity (A - B)" +msgstr "" + +#. Label of the quantity (Float) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Quantity (Output Qty)" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:118 +msgid "Quantity Available" +msgstr "" + +#. Label of the quantity_difference (Read Only) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Quantity Difference" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Quantity Tolerance" +msgstr "" + +#. Label of the section_break_19 (Section Break) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Quantity and Amount" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Production +#. Plan Item' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +msgid "Quantity and Description" +msgstr "" + +#. Label of the quantity_and_rate (Section Break) field in DocType 'Purchase +#. Invoice Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Purchase +#. Order Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Supplier +#. Quotation Item' +#. Label of the quantity_and_rate_section (Section Break) field in DocType +#. 'Opportunity Item' +#. Label of the quantity_and_rate_section (Section Break) field in DocType 'BOM +#. Creator Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'BOM Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Job Card +#. Secondary Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Quotation +#. Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Sales Order +#. Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Delivery +#. Note Item' +#. Label of the quantity_and_rate_section (Tab Break) field in DocType 'Serial +#. and Batch Bundle' +#. Label of the quantity_and_rate_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Quantity and Rate" +msgstr "" + +#. Label of the quantity_and_warehouse (Section Break) field in DocType +#. 'Material Request Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Quantity and Warehouse" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:214 +msgid "Quantity cannot be greater than {0} for Item {1}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:563 +msgid "Quantity is mandatory for the selected items." +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:274 +msgid "Quantity is required" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:285 +msgid "Quantity must be greater than zero" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1601 +msgid "Quantity must be greater than zero." +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:290 +msgid "Quantity must be less than or equal to {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1110 +#: erpnext/stock/doctype/pick_list/pick_list.js:214 +msgid "Quantity must not be more than {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:729 +msgid "Quantity required for Item {0} in row {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:673 +#: erpnext/manufacturing/doctype/job_card/job_card.js:341 +#: erpnext/manufacturing/doctype/job_card/job_card.js:409 +#: erpnext/manufacturing/doctype/workstation/workstation.js:303 +msgid "Quantity should be greater than 0" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:354 +msgid "Quantity to Manufacture" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +msgid "Quantity to Manufacture can not be zero for the operation {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +msgid "Quantity to Manufacture must be greater than 0." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:257 +msgid "Quantity to Scan" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Quart (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Quart Dry (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Quart Liquid (US)" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.py:461 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:125 +msgid "Quarter {0} {1}" +msgstr "" + +#. Label of the query_route (Data) field in DocType 'Support Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Query Route String" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +msgid "Queue Size should be between 5 and 100" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:332 +msgid "Quick Journal Entry" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:154 +msgid "Quick Ratio" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Quick Stock Balance" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Quintal" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:23 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:28 +msgid "Quot Count" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:27 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:32 +msgid "Quot/Lead %" +msgstr "" + +#. Option for the 'Document Type' (Select) field in DocType 'Contract' +#. Label of the quotation_section (Section Break) field in DocType 'CRM +#. Settings' +#. Option for the 'Status' (Select) field in DocType 'Lead' +#. Option for the 'Status' (Select) field in DocType 'Opportunity' +#. Name of a DocType +#. Label of the prevdoc_docname (Link) field in DocType 'Sales Order Item' +#. Label of a Link in the Selling Workspace +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:402 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:51 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:20 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/crm_settings/crm_settings.json +#: erpnext/crm/doctype/lead/lead.js:34 erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.js:108 +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/lead_details/lead_details.js:37 +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:38 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1229 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/doctype/selling_settings/selling_settings.js:49 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/workspace_sidebar/selling.json +msgid "Quotation" +msgstr "" + +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:36 +msgid "Quotation Amount" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/quotation_item/quotation_item.json +msgid "Quotation Item" +msgstr "" + +#. Name of a DocType +#. Label of the order_lost_reason (Data) field in DocType 'Quotation Lost +#. Reason' +#. Label of the lost_reason (Link) field in DocType 'Quotation Lost Reason +#. Detail' +#: erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.json +#: erpnext/setup/doctype/quotation_lost_reason_detail/quotation_lost_reason_detail.json +msgid "Quotation Lost Reason" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/quotation_lost_reason_detail/quotation_lost_reason_detail.json +msgid "Quotation Lost Reason Detail" +msgstr "" + +#. Label of the quotation_number (Data) field in DocType 'Supplier Quotation' +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +msgid "Quotation Number" +msgstr "" + +#. Label of the quotation_to (Link) field in DocType 'Quotation' +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Quotation To" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/quotation_trends/quotation_trends.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Quotation Trends" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:440 +msgid "Quotation {0} is cancelled" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:359 +msgid "Quotation {0} not of type {1}" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.py:353 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:72 +msgid "Quotations" +msgstr "" + +#: erpnext/utilities/activation.py:89 +msgid "Quotations are proposals, bids you have sent to your customers" +msgstr "" + +#: erpnext/templates/pages/rfq.html:73 +msgid "Quotations: " +msgstr "" + +#. Label of the quote_status (Select) field in DocType 'Request for Quotation +#. Supplier' +#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json +msgid "Quote Status" +msgstr "" + +#: erpnext/selling/report/quotation_trends/quotation_trends.py:57 +msgid "Quoted Amount" +msgstr "" + +#. Label of the rfq_and_purchase_order_settings_section (Section Break) field +#. in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "RFQ and Purchase Order Settings" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:129 +msgid "RFQs are not allowed for {0} due to a scorecard standing of {1}" +msgstr "" + +#. Label of the auto_indent (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Raise Material Request when stock reaches re-order level" +msgstr "" + +#. Label of the complaint_raised_by (Data) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Raised By" +msgstr "" + +#. Label of the raised_by (Data) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Raised By (Email)" +msgstr "" + +#. Label of the rate (Currency) field in DocType 'POS Invoice Item' +#. Option for the 'Rate or Discount' (Select) field in DocType 'Pricing Rule' +#. Label of the rate (Currency) field in DocType 'Pricing Rule' +#. Option for the 'Discount Type' (Select) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the rate (Currency) field in DocType 'Promotional Scheme Price +#. Discount' +#. Label of the free_item_rate (Currency) field in DocType 'Promotional Scheme +#. Product Discount' +#. Label of the rate (Currency) field in DocType 'Purchase Invoice Item' +#. Label of the rate (Currency) field in DocType 'Sales Invoice Item' +#. Label of the rate (Currency) field in DocType 'Share Balance' +#. Label of the rate (Currency) field in DocType 'Share Transfer' +#. Label of the rate (Currency) field in DocType 'Asset Capitalization Service +#. Item' +#. Label of the rate (Currency) field in DocType 'Purchase Order Item' +#. Label of the rate (Currency) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the rate (Currency) field in DocType 'Supplier Quotation Item' +#. Label of the rate (Currency) field in DocType 'Opportunity Item' +#. Label of the rate (Currency) field in DocType 'Blanket Order Item' +#. Label of the rate (Currency) field in DocType 'BOM Creator Item' +#. Label of the rate (Currency) field in DocType 'BOM Explosion Item' +#. Label of the rate (Currency) field in DocType 'BOM Item' +#. Label of the rate (Currency) field in DocType 'BOM Secondary Item' +#. Label of the rate (Currency) field in DocType 'Work Order Additional Item' +#. Label of the rate (Currency) field in DocType 'Work Order Item' +#. Label of the rate (Float) field in DocType 'Product Bundle Item' +#. Label of the rate (Currency) field in DocType 'Quotation Item' +#. Label of the rate (Currency) field in DocType 'Sales Order Item' +#. Label of the rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the price_list_rate (Currency) field in DocType 'Item Price' +#. Label of the rate (Currency) field in DocType 'Landed Cost Item' +#. Label of the rate (Currency) field in DocType 'Material Request Item' +#. Label of the rate (Currency) field in DocType 'Packed Item' +#. Label of the rate (Currency) field in DocType 'Purchase Receipt Item' +#. Option for the 'Update Price List based on' (Select) field in DocType 'Stock +#. Settings' +#. Label of the rate (Currency) field in DocType 'Subcontracting Inward Order +#. Received Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Order Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Order Service +#. Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Order Supplied +#. Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Receipt Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:78 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:266 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:320 +#: erpnext/accounts/report/share_ledger/share_ledger.py:56 +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:67 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/public/js/utils.js:875 +#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:46 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:41 +#: erpnext/stock/dashboard/item_dashboard.js:255 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item_prices.html:84 +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:155 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/templates/form_grid/item_grid.html:8 +#: erpnext/templates/pages/order.html:100 erpnext/templates/pages/rfq.html:43 +msgid "Rate" +msgstr "" + +#. Label of the rate_amount_section (Section Break) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Rate & Amount" +msgstr "" + +#. Label of the base_rate (Currency) field in DocType 'POS Invoice Item' +#. Label of the base_rate (Currency) field in DocType 'Purchase Invoice Item' +#. Label of the base_rate (Currency) field in DocType 'Sales Invoice Item' +#. Label of the base_rate (Currency) field in DocType 'Purchase Order Item' +#. Label of the base_rate (Currency) field in DocType 'Supplier Quotation Item' +#. Label of the base_rate (Currency) field in DocType 'Opportunity Item' +#. Label of the base_rate (Currency) field in DocType 'Quotation Item' +#. Label of the base_rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the base_rate (Currency) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Rate (Company Currency)" +msgstr "" + +#. Label of the rm_cost_as_per (Select) field in DocType 'BOM' +#. Label of the rm_cost_as_per (Select) field in DocType 'BOM Creator' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Rate Of Materials Based On" +msgstr "" + +#. Label of the rate (Percent) field in DocType 'Lower Deduction Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Rate Of TDS As Per Certificate" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Serial and +#. Batch Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +msgid "Rate Section" +msgstr "" + +#. Label of the rate_with_margin (Currency) field in DocType 'POS Invoice Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Sales Invoice +#. Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Supplier +#. Quotation Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Quotation Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Sales Order Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Delivery Note +#. Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Rate With Margin" +msgstr "" + +#. Label of the base_rate_with_margin (Currency) field in DocType 'POS Invoice +#. Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Purchase +#. Invoice Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Sales +#. Invoice Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Purchase +#. Order Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Quotation +#. Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Sales Order +#. Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Delivery +#. Note Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Rate With Margin (Company Currency)" +msgstr "" + +#. Label of the rate_and_amount (Section Break) field in DocType 'Purchase +#. Receipt Item' +#. Label of the rate_and_amount (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Rate and Amount" +msgstr "" + +#. Description of the 'Exchange Rate' (Float) field in DocType 'POS Invoice' +#. Description of the 'Exchange Rate' (Float) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Rate at which Customer Currency is converted to customer's base currency" +msgstr "" + +#. Description of the 'Price List Exchange Rate' (Float) field in DocType +#. 'Quotation' +#. Description of the 'Price List Exchange Rate' (Float) field in DocType +#. 'Sales Order' +#. Description of the 'Price List Exchange Rate' (Float) field in DocType +#. 'Delivery Note' +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Rate at which Price list currency is converted to company's base currency" +msgstr "" + +#. Description of the 'Price List Exchange Rate' (Float) field in DocType 'POS +#. Invoice' +#. Description of the 'Price List Exchange Rate' (Float) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Rate at which Price list currency is converted to customer's base currency" +msgstr "" + +#. Description of the 'Exchange Rate' (Float) field in DocType 'Quotation' +#. Description of the 'Exchange Rate' (Float) field in DocType 'Sales Order' +#. Description of the 'Exchange Rate' (Float) field in DocType 'Delivery Note' +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Rate at which customer's currency is converted to company's base currency" +msgstr "" + +#. Description of the 'Exchange Rate' (Float) field in DocType 'Purchase +#. Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Rate at which supplier's currency is converted to company's base currency" +msgstr "" + +#. Description of the 'Tax Rate' (Float) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Rate at which this tax is applied" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:515 +msgid "Rate of '{}' items cannot be changed" +msgstr "" + +#. Label of the rate_of_depreciation (Percent) field in DocType 'Asset +#. Depreciation Schedule' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "Rate of Depreciation" +msgstr "" + +#. Label of the rate_of_depreciation (Percent) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Rate of Depreciation (%)" +msgstr "" + +#. Label of the rate_of_interest (Float) field in DocType 'Dunning' +#. Label of the rate_of_interest (Float) field in DocType 'Dunning Type' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +msgid "Rate of Interest (%) Yearly" +msgstr "" + +#. Label of the stock_uom_rate (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Sales Invoice Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Quotation Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Sales Order Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Rate of Stock UOM" +msgstr "" + +#. Label of the rate_or_discount (Select) field in DocType 'Pricing Rule' +#. Label of the rate_or_discount (Data) field in DocType 'Pricing Rule Detail' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +msgid "Rate or Discount" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:184 +msgid "Rate or Discount is required for the price discount." +msgstr "" + +#. Label of the rates (Table) field in DocType 'Tax Withholding Category' +#. Label of the rates_section (Section Break) field in DocType 'Stock Entry +#. Detail' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Rates" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:48 +msgid "Ratios" +msgstr "" + +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:52 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:46 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:216 +msgid "Raw Material" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:410 +msgid "Raw Material Code" +msgstr "" + +#. Label of the raw_material_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Raw Material Cost" +msgstr "" + +#. Label of the base_raw_material_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Raw Material Cost (Company Currency)" +msgstr "" + +#. Label of the rm_cost_per_qty (Currency) field in DocType 'Subcontracting +#. Order Item' +#. Label of the rm_cost_per_qty (Currency) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Raw Material Cost Per Qty" +msgstr "" + +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:132 +msgid "Raw Material Item" +msgstr "" + +#. Label of the rm_item_code (Link) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the rm_item_code (Link) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the rm_item_code (Link) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the rm_item_code (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Raw Material Item Code" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:417 +msgid "Raw Material Name" +msgstr "" + +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:114 +msgid "Raw Material Value" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.js:36 +msgid "Raw Material Voucher No" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.js:30 +msgid "Raw Material Voucher Type" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:65 +msgid "Raw Material Warehouse" +msgstr "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Job Card' +#. Label of the mr_items (Table) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/bom/bom.js:449 +#: erpnext/manufacturing/doctype/bom/bom.js:1081 +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:462 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:379 +msgid "Raw Materials" +msgstr "" + +#. Label of the raw_materials_consumed_section (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Raw Materials Actions" +msgstr "" + +#. Label of the raw_material_details (Section Break) field in DocType 'Purchase +#. Receipt' +#. Label of the raw_material_details (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Raw Materials Consumed" +msgstr "" + +#. Label of the raw_materials_consumption_section (Section Break) field in +#. DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Raw Materials Consumption" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:63 +msgid "Raw Materials Missing" +msgstr "" + +#. Label of the raw_materials_received_section (Section Break) field in DocType +#. 'Subcontracting Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Raw Materials Required" +msgstr "" + +#. Label of the raw_materials_supplied (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the raw_materials_supplied_section (Section Break) field in DocType +#. 'Subcontracting Order' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Raw Materials Supplied" +msgstr "" + +#. Label of the rm_supp_cost (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the rm_supp_cost (Currency) field in DocType 'Purchase Receipt +#. Item' +#. Label of the rm_supp_cost (Currency) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Raw Materials Supplied Cost" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:721 +msgid "Raw Materials cannot be blank." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:136 +msgid "Raw Materials to Customer" +msgstr "" + +#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field +#. in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Raw materials consumed qty will be validated based on FG BOM required qty" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:194 +msgid "Re-extracting" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:345 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124 +#: erpnext/manufacturing/doctype/work_order/work_order.js:779 +#: erpnext/selling/doctype/sales_order/sales_order.js:1012 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:70 +#: erpnext/stock/doctype/material_request/material_request.js:243 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:116 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:163 +msgid "Re-open" +msgstr "" + +#. Label of the warehouse_reorder_level (Float) field in DocType 'Item Reorder' +#: erpnext/stock/doctype/item_reorder/item_reorder.json +msgid "Re-order Level" +msgstr "" + +#. Label of the warehouse_reorder_qty (Float) field in DocType 'Item Reorder' +#: erpnext/stock/doctype/item_reorder/item_reorder.json +msgid "Re-order Qty" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:227 +msgid "Reached Root" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:127 +msgid "Read the docs" +msgstr "" + +#. Label of the reading_1 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 1" +msgstr "" + +#. Label of the reading_10 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 10" +msgstr "" + +#. Label of the reading_2 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 2" +msgstr "" + +#. Label of the reading_3 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 3" +msgstr "" + +#. Label of the reading_4 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 4" +msgstr "" + +#. Label of the reading_5 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 5" +msgstr "" + +#. Label of the reading_6 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 6" +msgstr "" + +#. Label of the reading_7 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 7" +msgstr "" + +#. Label of the reading_8 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 8" +msgstr "" + +#. Label of the reading_9 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 9" +msgstr "" + +#. Label of the reading_value (Data) field in DocType 'Quality Inspection +#. Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading Value" +msgstr "" + +#. Label of the readings (Table) field in DocType 'Quality Inspection' +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Readings" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:40 +msgid "Real Estate" +msgstr "" + +#. Label of the hold_comment (Small Text) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:285 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Reason For Putting On Hold" +msgstr "" + +#. Label of the failed_reason (Data) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Reason for Failure" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/selling/doctype/sales_order/sales_order.js:1841 +msgid "Reason for Hold" +msgstr "" + +#. Label of the reason_for_leaving (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Reason for Leaving" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1856 +msgid "Reason for hold:" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:93 +msgid "Rebuilding BTree for period ..." +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:26 +msgid "Recalculate Batch Qty" +msgstr "" + +#: erpnext/stock/doctype/bin/bin.js:10 +msgid "Recalculate Bin Qty" +msgstr "" + +#. Label of the recalculate_rate (Check) field in DocType 'Stock Ledger Entry' +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Recalculate Incoming/Outgoing Rate" +msgstr "" + +#. Label of the recalculate_valuation_rate (Check) field in DocType 'Repost +#. Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Recalculate Valuation Rate" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement' +#. Option for the 'Asset Status' (Select) field in DocType 'Serial No' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:24 +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Receipt" +msgstr "" + +#. Label of the receipt_document (Dynamic Link) field in DocType 'Landed Cost +#. Item' +#. Label of the receipt_document (Dynamic Link) field in DocType 'Landed Cost +#. Purchase Receipt' +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +msgid "Receipt Document" +msgstr "" + +#. Label of the receipt_document_type (Select) field in DocType 'Landed Cost +#. Item' +#. Label of the receipt_document_type (Select) field in DocType 'Landed Cost +#. Purchase Receipt' +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +msgid "Receipt Document Type" +msgstr "" + +#. Label of the items (Table) field in DocType 'Landed Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Receipt Items" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Option for the 'Account Type' (Select) field in DocType 'Payment Ledger +#. Entry' +#. Option for the 'Account Type' (Select) field in DocType 'Party Type' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/account_balance/account_balance.js:55 +#: erpnext/setup/doctype/party_type/party_type.json +msgid "Receivable" +msgstr "" + +#. Label of the receivable_payable_account (Link) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Receivable / Payable Account" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1156 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241 +#: erpnext/accounts/report/sales_register/sales_register.py:217 +#: erpnext/accounts/report/sales_register/sales_register.py:271 +msgid "Receivable Account" +msgstr "" + +#. Label of the receivable_payable_account (Link) field in DocType 'Process +#. Payment Reconciliation' +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "Receivable/Payable Account" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:51 +msgid "Receivable/Payable Account: {0} doesn't belong to company {1}" +msgstr "" + +#. Label of the invoiced_amount (Check) field in DocType 'Email Digest' +#. Label of a Workspace Sidebar Item +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/workspace_sidebar/invoicing.json +msgid "Receivables" +msgstr "" + +#. Option for the 'Payment Type' (Select) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:153 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:171 +msgid "Receive" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:120 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Receive from Customer" +msgstr "" + +#. Label of the received_amount (Currency) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Received Amount" +msgstr "" + +#. Label of the base_received_amount (Currency) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Received Amount (Company Currency)" +msgstr "" + +#. Label of the received_amount_after_tax (Currency) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Received Amount After Tax" +msgstr "" + +#. Label of the base_received_amount_after_tax (Currency) field in DocType +#. 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Received Amount After Tax (Company Currency)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:965 +msgid "Received Amount cannot be greater than Paid Amount" +msgstr "" + +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:9 +msgid "Received From" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.json +msgid "Received Items To Be Billed" +msgstr "" + +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:8 +msgid "Received On" +msgstr "" + +#. Label of the received_qty (Float) field in DocType 'Purchase Invoice Item' +#. Label of the received_qty (Float) field in DocType 'Purchase Order Item' +#. Label of the received_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the received_qty (Float) field in DocType 'Delivery Note Item' +#. Label of the received_qty (Float) field in DocType 'Material Request Item' +#. Label of the received_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the received_qty (Float) field in DocType 'Subcontracting Order +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:77 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:249 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:172 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:247 +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:135 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Received Qty" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:301 +msgid "Received Qty Amount" +msgstr "" + +#. Label of the received_stock_qty (Float) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Received Qty in Stock UOM" +msgstr "" + +#. Label of the received_qty (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:121 +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:49 +#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:9 +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Received Quantity" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:372 +msgid "Received Stock Entries" +msgstr "" + +#. Label of the received_and_accepted (Section Break) field in DocType +#. 'Purchase Receipt Item' +#. Label of the received_and_accepted (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Received and Accepted" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:404 +msgid "Received from" +msgstr "" + +#. Label of the receiver_list (Code) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Receiver List" +msgstr "" + +#: erpnext/selling/doctype/sms_center/sms_center.py:166 +msgid "Receiver List is empty. Please create Receiver List" +msgstr "" + +#. Option for the 'Bank Guarantee Type' (Select) field in DocType 'Bank +#. Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Receiving" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:260 +#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 +msgid "Recent Orders" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:924 +msgid "Recent Transactions" +msgstr "" + +#. Label of the recipient_and_message (Section Break) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Recipient Message And Payment Details" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:734 +msgid "Recommended Action" +msgstr "" + +#. Label of the section_break_1 (Section Break) field in DocType 'Bank +#. Reconciliation Tool' +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:931 +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:105 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:106 +msgid "Reconcile" +msgstr "" + +#. Label of the reconcile_all_serial_batch (Check) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Reconcile All Serial Nos / Batches" +msgstr "" + +#. Label of the reconcile_effect_on (Date) field in DocType 'Payment Entry +#. Reference' +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Reconcile Effect On" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:363 +msgid "Reconcile Entries" +msgstr "" + +#. Label of the reconcile_on_advance_payment_date (Check) field in DocType +#. 'Payment Entry' +#. Label of the reconcile_on_advance_payment_date (Check) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/setup/doctype/company/company.json +msgid "Reconcile on Advance Payment Date" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:221 +msgid "Reconcile the Bank Transaction" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Bank Transaction' +#. Label of the reconciled (Check) field in DocType 'Process Payment +#. Reconciliation Log' +#. Option for the 'Status' (Select) field in DocType 'Process Payment +#. Reconciliation Log' +#. Label of the reconciled (Check) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:140 +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:413 +#: banking/src/components/features/BankReconciliation/utils.ts:259 +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction_list.js:10 +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +msgid "Reconciled" +msgstr "" + +#. Label of the reconciled_entries (Int) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Reconciled Entries" +msgstr "" + +#. Option for the 'Posting Date inheritance for exchange gain / loss' (Select) +#. field in DocType 'Accounts Settings' +#. Option for the 'Reconciliation Takes Effect On' (Select) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/setup/doctype/company/company.json +msgid "Reconciliation Date" +msgstr "" + +#. Label of the error_log (Long Text) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Reconciliation Error Log" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLog.tsx:32 +#: banking/src/components/features/ActionLog/ActionLogDialog.tsx:19 +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:54 +msgid "Reconciliation History" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation_dashboard.py:9 +msgid "Reconciliation Logs" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.js:13 +msgid "Reconciliation Progress" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/banking.json +msgid "Reconciliation Statement" +msgstr "" + +#. Label of the reconciliation_takes_effect_on (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Reconciliation Takes Effect On" +msgstr "" + +#. Label of the reconciliation_type (Select) field in DocType 'Bank Transaction +#. Payments' +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx:58 +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +msgid "Reconciliation Type" +msgstr "" + +#. Label of the reconciliation_queue_size (Int) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Reconciliation queue size" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:931 +msgid "Reconciling" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:496 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:553 +#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:17 +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:22 +msgid "Record Payment" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:476 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:569 +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:15 +msgid "Record a bank journal entry for expenses, income or split transactions" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:482 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:575 +msgid "Record a journal entry for expenses, income or split transactions" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:19 +msgid "Record a journal entry for expenses, income or split transactions." +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:23 +msgid "Record a payment against a customer or supplier" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:494 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:500 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:551 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:557 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:685 +#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:19 +msgid "Record a payment entry against a customer or supplier" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:31 +msgid "Record a transfer between two bank accounts" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:593 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:687 +msgid "Record an internal transfer to another bank/credit card/cash account" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModal.tsx:19 +msgid "Record an internal transfer to another bank/credit card/cash account." +msgstr "" + +#. Label of the recording_html (HTML) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Recording HTML" +msgstr "" + +#. Label of the recording_url (Data) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Recording URL" +msgstr "" + +#. Group in Quality Feedback Template's connections +#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json +msgid "Records" +msgstr "" + +#: erpnext/regional/united_arab_emirates/utils.py:195 +msgid "Recoverable Standard Rated expenses should not be set when Reverse Charge Applicable is Y" +msgstr "" + +#. Label of the recreate_stock_ledgers (Check) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Recreate Stock Ledgers" +msgstr "" + +#. Label of the recurse_for (Float) field in DocType 'Pricing Rule' +#. Label of the recurse_for (Float) field in DocType 'Promotional Scheme +#. Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Recurse Every (As Per Transaction UOM)" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:240 +msgid "Recurse Over Qty cannot be less than 0" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +msgid "Recursive Discounts with Mixed condition is not supported by the system" +msgstr "" + +#. Label of the redeem_against (Link) field in DocType 'Loyalty Point Entry' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +msgid "Redeem Against" +msgstr "" + +#. Label of the redeem_loyalty_points (Check) field in DocType 'POS Invoice' +#. Label of the redeem_loyalty_points (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/page/point_of_sale/pos_payment.js:614 +msgid "Redeem Loyalty Points" +msgstr "" + +#. Label of the redeemed_points (Int) field in DocType 'Loyalty Point Entry +#. Redemption' +#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json +msgid "Redeemed Points" +msgstr "" + +#. Label of the redemption (Section Break) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Redemption" +msgstr "" + +#. Label of the loyalty_redemption_account (Link) field in DocType 'POS +#. Invoice' +#. Label of the loyalty_redemption_account (Link) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Redemption Account" +msgstr "" + +#. Label of the loyalty_redemption_cost_center (Link) field in DocType 'POS +#. Invoice' +#. Label of the loyalty_redemption_cost_center (Link) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Redemption Cost Center" +msgstr "" + +#. Label of the redemption_date (Date) field in DocType 'Loyalty Point Entry +#. Redemption' +#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json +msgid "Redemption Date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:364 +#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:63 +msgid "Ref" +msgstr "" + +#. Label of the ref_code (Data) field in DocType 'Item Customer Detail' +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +msgid "Ref Code" +msgstr "" + +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:101 +msgid "Ref Date" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:245 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:312 +msgid "Ref." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:155 +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:82 +msgid "Reference #" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:780 +msgid "Reference #{0} dated {1}" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2823 +msgid "Reference Date for Early Payment Discount" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:400 +msgid "Reference Date is required" +msgstr "" + +#. Label of the reference_detail_no (Data) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Reference Detail No" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:674 +msgid "Reference Doctype must be one of {0}" +msgstr "" + +#. Label of the reference_due_date (Date) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Reference Due Date" +msgstr "" + +#. Label of the ref_exchange_rate (Float) field in DocType 'Purchase Invoice +#. Advance' +#. Label of the ref_exchange_rate (Float) field in DocType 'Sales Invoice +#. Advance' +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Reference Exchange Rate" +msgstr "" + +#. Label of the reference_no (Data) field in DocType 'Sales Invoice Payment' +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +msgid "Reference No" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:524 +msgid "Reference No & Reference Date is required for {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1222 +msgid "Reference No and Reference Date is mandatory for Bank transaction" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:529 +msgid "Reference No is mandatory if you entered Reference Date" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:265 +msgid "Reference No." +msgstr "" + +#. Label of the reference_number (Small Text) field in DocType 'Bank +#. Transaction' +#. Label of the cheque_no (Data) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:83 +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:130 +msgid "Reference Number" +msgstr "" + +#. Label of the reference_purchase_receipt (Link) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Reference Purchase Receipt" +msgstr "" + +#. Label of the reference_row (Data) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the reference_row (Data) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the reference_row (Data) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the reference_row (Data) field in DocType 'Purchase Invoice +#. Advance' +#. Label of the reference_row (Data) field in DocType 'Sales Invoice Advance' +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Reference Row" +msgstr "" + +#. Label of the row_id (Data) field in DocType 'Advance Taxes and Charges' +#. Label of the row_id (Data) field in DocType 'Purchase Taxes and Charges' +#. Label of the row_id (Data) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Reference Row #" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:906 +msgid "Reference date does not match the selected transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:906 +msgid "Reference date matches the selected transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:920 +msgid "Reference does not match the selected transaction" +msgstr "" + +#. Label of the reference_for_reservation (Data) field in DocType 'Serial and +#. Batch Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +msgid "Reference for Reservation" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:406 +msgid "Reference is required" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:920 +msgid "Reference matches the selected transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:920 +msgid "Reference matches the selected transaction partially" +msgstr "" + +#. Description of the 'Invoice Number' (Data) field in DocType 'Opening Invoice +#. Creation Tool Item' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +msgid "Reference number of the invoice from the previous system" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:142 +msgid "Reference: {0}, Item Code: {1} and Customer: {2}" +msgstr "" + +#. Label of the edit_references (Section Break) field in DocType 'POS Invoice +#. Item' +#. Label of the references_section (Section Break) field in DocType 'POS +#. Invoice Merge Log' +#. Label of the edit_references (Section Break) field in DocType 'Sales Invoice +#. Item' +#. Label of the references_section (Section Break) field in DocType 'Purchase +#. Order Item' +#. Label of the sb_references (Section Break) field in DocType 'Contract' +#. Label of the references_section (Section Break) field in DocType 'Customer' +#. Label of the references_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:10 +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template_dashboard.py:15 +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template_dashboard.py:14 +#: erpnext/accounts/doctype/share_type/share_type_dashboard.py:7 +#: erpnext/accounts/doctype/subscription_plan/subscription_plan_dashboard.py:8 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/projects/doctype/timesheet/timesheet_dashboard.py:7 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "References" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:361 +msgid "References to Sales Invoices are Incomplete" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:353 +msgid "References to Sales Orders are Incomplete" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:754 +msgid "References {0} of type {1} had no outstanding amount left before submitting the Payment Entry. Now they have a negative outstanding amount." +msgstr "" + +#. Label of the referral_code (Data) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Referral Code" +msgstr "" + +#. Label of the referral_sales_partner (Link) field in DocType 'Quotation' +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Referral Sales Partner" +msgstr "" + +#: erpnext/accounts/doctype/bank/bank.js:18 +msgid "Refresh Plaid Link" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Refunded" +msgstr "" + +#: erpnext/stock/reorder_item.py:381 +msgid "Regards," +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.js:27 +msgid "Regenerate Stock Closing Entry" +msgstr "" + +#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule +#. Description Conditions' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:203 +#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json +msgid "Regex" +msgstr "" + +#. Label of a Card Break in the Buying Workspace +#: erpnext/buying/workspace/buying/buying.json +msgid "Regional" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Registers" +msgstr "" + +#. Label of the registration_details (Code) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Registration Details" +msgstr "" + +#. Option for the 'Cheque Size' (Select) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Regular" +msgstr "" + +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.py:214 +msgid "Rejected " +msgstr "" + +#. Label of the rejected_qty (Float) field in DocType 'Purchase Invoice Item' +#. Label of the rejected_qty (Float) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Rejected Qty" +msgstr "" + +#. Label of the rejected_qty (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Rejected Quantity" +msgstr "" + +#. Label of the rejected_serial_no (Text) field in DocType 'Purchase Invoice +#. Item' +#. Label of the rejected_serial_no (Text) field in DocType 'Purchase Receipt +#. Item' +#. Label of the rejected_serial_no (Small Text) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Rejected Serial No" +msgstr "" + +#. Label of the rejected_serial_and_batch_bundle (Link) field in DocType +#. 'Purchase Invoice Item' +#. Label of the rejected_serial_and_batch_bundle (Link) field in DocType +#. 'Purchase Receipt Item' +#. Label of the rejected_serial_and_batch_bundle (Link) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Rejected Serial and Batch Bundle" +msgstr "" + +#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Invoice' +#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Receipt' +#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Receipt +#. Item' +#. Label of the rejected_warehouse (Link) field in DocType 'Subcontracting +#. Receipt' +#. Label of the rejected_warehouse (Link) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Rejected Warehouse" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:671 +msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 +#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:22 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:26 +msgid "Related" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:50 +msgid "Related Item" +msgstr "" + +#. Label of the relation (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Relation" +msgstr "" + +#. Label of the release_date (Date) field in DocType 'Purchase Invoice' +#. Label of the release_date (Date) field in DocType 'Supplier' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:277 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:321 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1078 +msgid "Release Date" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:322 +msgid "Release date must be in the future" +msgstr "" + +#. Label of the relieving_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Relieving Date" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:125 +msgid "Remaining" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:684 +msgid "Remaining Amount" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:189 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180 +msgid "Remaining Balance" +msgstr "" + +#. Label of the remark (Small Text) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:358 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/selling/page/point_of_sale/pos_payment.js:489 +msgid "Remark" +msgstr "" + +#. Label of the remarks (Text) field in DocType 'GL Entry' +#. Label of the remarks (Small Text) field in DocType 'Payment Entry' +#. Label of the remarks (Text) field in DocType 'Payment Ledger Entry' +#. Label of the remarks (Small Text) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the remarks (Small Text) field in DocType 'Period Closing Voucher' +#. Label of the remarks (Small Text) field in DocType 'POS Invoice' +#. Label of the remarks (Small Text) field in DocType 'Purchase Invoice' +#. Label of the remarks (Text) field in DocType 'Purchase Invoice Advance' +#. Label of the remarks (Small Text) field in DocType 'Sales Invoice' +#. Label of the remarks (Text) field in DocType 'Sales Invoice Advance' +#. Label of the remarks (Long Text) field in DocType 'Share Transfer' +#. Label of the remarks (Text Editor) field in DocType 'BOM Creator' +#. Label of the remarks_tab (Tab Break) field in DocType 'BOM Creator' +#. Label of the remarks (Text) field in DocType 'Downtime Entry' +#. Label of the remarks (Small Text) field in DocType 'Job Card' +#. Label of the remarks (Small Text) field in DocType 'Installation Note' +#. Label of the remarks (Small Text) field in DocType 'Purchase Receipt' +#. Label of the remarks (Text) field in DocType 'Quality Inspection' +#. Label of the remarks (Text) field in DocType 'Stock Entry' +#. Label of the remarks (Small Text) field in DocType 'Subcontracting Receipt' +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:418 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:592 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:660 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1231 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:594 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:683 +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:42 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:165 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:194 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:243 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:314 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:11 +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:135 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 +#: erpnext/accounts/report/general_ledger/general_ledger.html:163 +#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 +#: erpnext/accounts/report/purchase_register/purchase_register.py:298 +#: erpnext/accounts/report/sales_register/sales_register.py:335 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:95 +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Remarks" +msgstr "" + +#. Label of the remarks_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Remarks Column Length" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:71 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:92 +msgid "Remarks:" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:130 +msgid "Remove Parent Row No in Items Table" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:140 +msgid "Remove Zero Counts" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:21 +msgid "Remove item if charges is not applicable to that item" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +msgid "Removed items with no change in quantity or value." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:161 +msgid "Removed {0} rows with zero document count. Please save to persist changes." +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:88 +msgid "Removing rows without exchange gain or loss" +msgstr "" + +#. Description of the 'Allow Rename Attribute Value' (Check) field in DocType +#. 'Item Variant Settings' +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Rename Attribute Value in Item Attribute." +msgstr "" + +#. Label of the rename_log (HTML) field in DocType 'Rename Tool' +#: erpnext/utilities/doctype/rename_tool/rename_tool.json +msgid "Rename Log" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:569 +msgid "Rename Not Allowed" +msgstr "" + +#. Name of a DocType +#: erpnext/utilities/doctype/rename_tool/rename_tool.json +msgid "Rename Tool" +msgstr "" + +#: erpnext/utilities/doctype/rename_tool/rename_tool.js:26 +msgid "Rename jobs for doctype {0} have been enqueued." +msgstr "" + +#: erpnext/utilities/doctype/rename_tool/rename_tool.js:39 +msgid "Rename jobs for doctype {0} have not been enqueued." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:561 +msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch." +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/test_workstation.py:90 +#: erpnext/manufacturing/doctype/workstation/test_workstation.py:101 +#: erpnext/manufacturing/doctype/workstation/test_workstation.py:138 +#: erpnext/patches/v16_0/make_workstation_operating_components.py:49 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:316 +msgid "Rent" +msgstr "" + +#. Option for the 'Permanent Address Is' (Select) field in DocType 'Employee' +#. Option for the 'Current Address Is' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Rented" +msgstr "" + +#. Label of the reorder_level (Float) field in DocType 'Material Request Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:64 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:213 +msgid "Reorder Level" +msgstr "" + +#. Label of the reorder_qty (Float) field in DocType 'Material Request Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:220 +msgid "Reorder Qty" +msgstr "" + +#. Label of the reorder_levels (Table) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Reorder level based on Warehouse" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:95 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Repack" +msgstr "" + +#. Group in Asset's connections +#: erpnext/assets/doctype/asset/asset.json +msgid "Repair" +msgstr "" + +#. Label of the repair_cost (Currency) field in DocType 'Asset Repair' +#. Label of the repair_cost (Currency) field in DocType 'Asset Repair Purchase +#. Invoice' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json +msgid "Repair Cost" +msgstr "" + +#. Label of the invoices (Table) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Repair Purchase Invoices" +msgstr "" + +#. Label of the repair_status (Select) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Repair Status" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:37 +msgid "Repeat Customer Revenue" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:22 +msgid "Repeat Customers" +msgstr "" + +#. Label of the replace (Button) field in DocType 'BOM Update Tool' +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "Replace" +msgstr "" + +#. Option for the 'Update Type' (Select) field in DocType 'BOM Update Log' +#. Label of the replace_bom_section (Section Break) field in DocType 'BOM +#. Update Tool' +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "Replace BOM" +msgstr "" + +#. Description of a DocType +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "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.\n" +"It also updates latest price in all the BOMs." +msgstr "" + +#. Label of the report_date (Date) field in DocType 'Quality Inspection' +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:120 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:121 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:75 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Report Date" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:225 +msgid "Report Error" +msgstr "" + +#. Label of the rows (Table) field in DocType 'Financial Report Template' +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +msgid "Report Line Items" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 +#: erpnext/accounts/report/cash_flow/cash_flow.js:22 +#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:13 +msgid "Report Template" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:462 +msgid "Report Type is mandatory" +msgstr "" + +#: erpnext/setup/install.py:238 +msgid "Report an Issue" +msgstr "" + +#. Label of the reporting_currency (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Reporting Currency" +msgstr "" + +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.py:164 +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:312 +msgid "Reporting Currency Exchange Not Found" +msgstr "" + +#. Label of the reporting_currency_exchange_rate (Float) field in DocType +#. 'Account Closing Balance' +#. Label of the reporting_currency_exchange_rate (Float) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Reporting Currency Exchange Rate" +msgstr "" + +#. Label of the reports_to (Link) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Reports to" +msgstr "" + +#. Label of the repost_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Repost" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Repost Accounting Ledger" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json +msgid "Repost Accounting Ledger Items" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Repost Accounting Ledger Settings" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/repost_allowed_types/repost_allowed_types.json +msgid "Repost Allowed Types" +msgstr "" + +#. Label of the repost_error_log (Long Text) field in DocType 'Repost Payment +#. Ledger' +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +msgid "Repost Error Log" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/workspace_sidebar/stock.json +msgid "Repost Item Valuation" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +msgid "Repost Item Valuation restarted for selected failed records." +msgstr "" + +#. Label of the repost_only_accounting_ledgers (Check) field in DocType 'Repost +#. Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Repost Only Accounting Ledgers" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Repost Payment Ledger" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json +msgid "Repost Payment Ledger Items" +msgstr "" + +#. Label of the repost_status (Select) field in DocType 'Repost Payment Ledger' +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +msgid "Repost Status" +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:149 +msgid "Repost has started in the background" +msgstr "" + +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.js:40 +msgid "Repost in background" +msgstr "" + +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.py:118 +msgid "Repost started in the background" +msgstr "" + +#. Label of the reposting_data_file (Attach) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Reposting Data File" +msgstr "" + +#. Label of the reposting_info_section (Section Break) field in DocType 'Repost +#. Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Reposting Item and Warehouse" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:140 +msgid "Reposting Progress" +msgstr "" + +#. Label of the reposting_reference (Data) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Reposting Reference" +msgstr "" + +#. Label of the vouchers_based_on_item_and_warehouse_section (Section Break) +#. field in DocType 'Repost Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Reposting Vouchers" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:158 +msgid "Reposting Vouchers Progress" +msgstr "" + +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:220 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:327 +msgid "Reposting entries created: {0}" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:132 +msgid "Reposting for Item-Wh Completed {0}%" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:150 +msgid "Reposting for Vouchers Completed {0}%" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:118 +msgid "Reposting has been started in the background." +msgstr "" + +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.js:49 +msgid "Reposting in the background." +msgstr "" + +#. Label of the represents_company (Link) field in DocType 'Purchase Invoice' +#. Label of the represents_company (Link) field in DocType 'Sales Invoice' +#. Label of the represents_company (Link) field in DocType 'Purchase Order' +#. Label of the represents_company (Link) field in DocType 'Supplier' +#. Label of the represents_company (Link) field in DocType 'Customer' +#. Label of the represents_company (Link) field in DocType 'Sales Order' +#. Label of the represents_company (Link) field in DocType 'Delivery Note' +#. Label of the represents_company (Link) field in DocType 'Purchase Receipt' +#. Label of the represents_company (Link) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Represents Company" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "Represents a Financial Year. All accounting entries and other major transactions are tracked against the Fiscal Year." +msgstr "" + +#: erpnext/templates/form_grid/material_request_grid.html:25 +msgid "Reqd By Date" +msgstr "" + +#. Label of the required_bom_qty (Float) field in DocType 'Material Request +#. Plan Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "Reqd Qty (BOM)" +msgstr "" + +#: erpnext/public/js/utils.js:891 +msgid "Reqd by date" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:489 +msgid "Reqired Qty" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity.js:89 +msgid "Request For Quotation" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'Currency +#. Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "Request Parameters" +msgstr "" + +#. Label of the request_type (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Request Type" +msgstr "" + +#. Label of the warehouse (Link) field in DocType 'Item Reorder' +#: erpnext/stock/doctype/item_reorder/item_reorder.json +msgid "Request for" +msgstr "" + +#. Option for the 'Request Type' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Request for Information" +msgstr "" + +#. Label of the request_for_quotation_tab (Tab Break) field in DocType 'Buying +#. Settings' +#. Name of a DocType +#. Label of the request_for_quotation (Link) field in DocType 'Supplier +#. Quotation Item' +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/buying_settings/buying_settings.js:46 +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:332 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:438 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88 +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:270 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/doctype/material_request/material_request.js:202 +#: erpnext/workspace_sidebar/buying.json +msgid "Request for Quotation" +msgstr "" + +#. Name of a DocType +#. Label of the request_for_quotation_item (Data) field in DocType 'Supplier +#. Quotation Item' +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +msgid "Request for Quotation Item" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json +msgid "Request for Quotation Supplier" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1136 +msgid "Request for Raw Materials" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Payment Request' +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales +#. Order' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Requested" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/requested_items_to_be_transferred/requested_items_to_be_transferred.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Requested Items To Be Transferred" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.json +#: erpnext/workspace_sidebar/buying.json +msgid "Requested Items to Order and Receive" +msgstr "" + +#. Label of the requested_qty (Float) field in DocType 'Job Card' +#. Label of the requested_qty (Float) field in DocType 'Material Request Plan +#. Item' +#. Label of the requested_qty (Float) field in DocType 'Sales Order Item' +#. Label of the indented_qty (Float) field in DocType 'Bin' +#. Label of the requested_qty (Float) field in DocType 'Packed Item' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:157 +msgid "Requested Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:202 +msgid "Requested Qty: Quantity requested for purchase, but not ordered." +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +msgid "Requesting Site" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +msgid "Requestor" +msgstr "" + +#. Label of the schedule_date (Date) field in DocType 'Purchase Order' +#. Label of the schedule_date (Date) field in DocType 'Purchase Order Item' +#. Label of the schedule_date (Date) field in DocType 'Material Request Plan +#. Item' +#. Label of the schedule_date (Date) field in DocType 'Material Request' +#. Label of the schedule_date (Date) field in DocType 'Material Request Item' +#. Label of the schedule_date (Date) field in DocType 'Purchase Receipt Item' +#. Label of the schedule_date (Date) field in DocType 'Subcontracting Order' +#. Label of the schedule_date (Date) field in DocType 'Subcontracting Order +#. Item' +#. Label of the schedule_date (Date) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:203 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:193 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:532 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Required By" +msgstr "" + +#. Label of the schedule_date (Date) field in DocType 'Request for Quotation' +#. Label of the schedule_date (Date) field in DocType 'Request for Quotation +#. Item' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +msgid "Required Date" +msgstr "" + +#. Label of the section_break_ndpq (Section Break) field in DocType 'Work +#. Order' +#. Label of the received_items (Table) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Required Items" +msgstr "" + +#: erpnext/templates/form_grid/material_request_grid.html:7 +msgid "Required On" +msgstr "" + +#. Label of the required_qty (Float) field in DocType 'Job Card Item' +#. Label of the quantity (Float) field in DocType 'Material Request Plan Item' +#. Label of the required_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the required_qty (Float) field in DocType 'Work Order Item' +#. Label of the required_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the required_qty (Float) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the required_qty (Float) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:143 +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:119 +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:58 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1058 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:429 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:139 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Required Qty" +msgstr "" + +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:43 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:36 +msgid "Required Quantity" +msgstr "" + +#. Label of the requirement (Data) field in DocType 'Contract Fulfilment +#. Checklist' +#. Label of the requirement (Data) field in DocType 'Contract Template +#. Fulfilment Terms' +#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json +#: erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.json +msgid "Requirement" +msgstr "" + +#. Label of the requires_fulfilment (Check) field in DocType 'Contract' +#. Label of the requires_fulfilment (Check) field in DocType 'Contract +#. Template' +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "Requires Fulfilment" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:263 +msgid "Research" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:518 +msgid "Research & Development" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:27 +msgid "Researcher" +msgstr "" + +#. Description of the 'Primary Address' (Link) field in DocType 'Supplier' +#. Description of the 'Customer Primary Address' (Link) field in DocType +#. 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Reselect, if the chosen address is edited after save" +msgstr "" + +#. Description of the 'Primary Contact' (Link) field in DocType 'Supplier' +#. Description of the 'Customer Primary Contact' (Link) field in DocType +#. 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Reselect, if the chosen contact is edited after save" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:7 +msgid "Reseller" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.js:47 +msgid "Resend Payment Email" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:13 +msgid "Reservation" +msgstr "" + +#. Label of the reservation_based_on (Select) field in DocType 'Stock +#. Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.js:118 +msgid "Reservation Based On" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:937 +#: erpnext/selling/doctype/sales_order/sales_order.js:107 +#: erpnext/stock/doctype/pick_list/pick_list.js:158 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179 +msgid "Reserve" +msgstr "" + +#. Label of the reserve_stock (Check) field in DocType 'Production Plan' +#. Label of the reserve_stock (Check) field in DocType 'Work Order' +#. Label of the reserve_stock (Check) field in DocType 'Sales Order' +#. Label of the reserve_stock (Check) field in DocType 'Sales Order Item' +#. Label of the reserve_stock (Check) field in DocType 'Packed Item' +#. Label of the reserve_stock (Check) field in DocType 'Subcontracting Order' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/public/js/stock_reservation.js:15 +#: erpnext/selling/doctype/sales_order/sales_order.js:408 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Reserve Stock" +msgstr "" + +#. Label of the reserve_warehouse (Link) field in DocType 'Subcontracting Order +#. Supplied Item' +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +msgid "Reserve Warehouse" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 +msgid "Reserve for Raw Materials" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:261 +msgid "Reserve for Sub-assembly" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Reserved" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:661 +msgid "Reserved Batch Conflict" +msgstr "" + +#. Label of the reserved_inventory_section (Section Break) field in DocType +#. 'Bin' +#: erpnext/stock/doctype/bin/bin.json +msgid "Reserved Inventory" +msgstr "" + +#. Label of the reserved_qty (Float) field in DocType 'Bin' +#. Label of the reserved_qty (Float) field in DocType 'Stock Reservation Entry' +#. Label of the stock_reserved_qty (Float) field in DocType 'Subcontracting +#. Order Supplied Item' +#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:29 +#: erpnext/stock/dashboard/item_dashboard_list.html:20 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.py:124 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:171 +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +msgid "Reserved Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgstr "" + +#. Label of the reserved_qty_for_production (Float) field in DocType 'Material +#. Request Plan Item' +#. Label of the reserved_qty_for_production (Float) field in DocType 'Bin' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/bin/bin.json +msgid "Reserved Qty for Production" +msgstr "" + +#. Label of the reserved_qty_for_production_plan (Float) field in DocType 'Bin' +#: erpnext/stock/doctype/bin/bin.json +msgid "Reserved Qty for Production Plan" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:211 +msgid "Reserved Qty for Production: Raw materials quantity to make manufacturing items." +msgstr "" + +#. Label of the reserved_qty_for_sub_contract (Float) field in DocType 'Bin' +#: erpnext/stock/doctype/bin/bin.json +msgid "Reserved Qty for Subcontract" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:214 +msgid "Reserved Qty for Subcontract: Raw materials quantity to make subcontracted items." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:655 +msgid "Reserved Qty should be greater than Delivered Qty." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:208 +msgid "Reserved Qty: Quantity ordered for sale, but not delivered." +msgstr "" + +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:116 +msgid "Reserved Quantity" +msgstr "" + +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:123 +msgid "Reserved Quantity for Production" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2327 +msgid "Reserved Serial No." +msgstr "" + +#. Label of the reserved_stock (Float) field in DocType 'Bin' +#. Name of a report +#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:24 +#: erpnext/manufacturing/doctype/work_order/work_order.js:953 +#: erpnext/public/js/stock_reservation.js:236 +#: erpnext/selling/doctype/sales_order/sales_order.js:128 +#: erpnext/selling/doctype/sales_order/sales_order.js:495 +#: erpnext/stock/dashboard/item_dashboard_list.html:15 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/pick_list/pick_list.js:178 +#: erpnext/stock/report/reserved_stock/reserved_stock.json +#: erpnext/stock/report/stock_balance/stock_balance.py:573 +#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 +msgid "Reserved Stock" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2356 +msgid "Reserved Stock for Batch" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:301 +msgid "Reserved Stock for Raw Materials" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:275 +msgid "Reserved Stock for Sub-assembly" +msgstr "" + +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:199 +msgid "Reserved for POS Transactions" +msgstr "" + +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:178 +msgid "Reserved for Production" +msgstr "" + +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:185 +msgid "Reserved for Production Plan" +msgstr "" + +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:192 +msgid "Reserved for Sub Contracting" +msgstr "" + +#: erpnext/stock/page/stock_balance/stock_balance.js:53 +msgid "Reserved for manufacturing" +msgstr "" + +#: erpnext/stock/page/stock_balance/stock_balance.js:52 +msgid "Reserved for sale" +msgstr "" + +#: erpnext/stock/page/stock_balance/stock_balance.js:54 +msgid "Reserved for sub contracting" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:203 +#: erpnext/selling/doctype/sales_order/sales_order.js:421 +#: erpnext/stock/doctype/pick_list/pick_list.js:306 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:292 +msgid "Reserving Stock..." +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:172 +msgid "Reset Clearing Date" +msgstr "" + +#. Label of the reset_company_default_values_status (Select) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Reset Company Default Values" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:19 +msgid "Reset Plaid Link" +msgstr "" + +#. Label of the reset_raw_materials_table (Button) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Reset Raw Materials Table" +msgstr "" + +#. Label of the reset_service_level_agreement (Button) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.js:48 +#: erpnext/support/doctype/issue/issue.json +msgid "Reset Service Level Agreement" +msgstr "" + +#: erpnext/support/doctype/issue/issue.js:65 +msgid "Resetting Service Level Agreement." +msgstr "" + +#. Label of the resignation_letter_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Resignation Letter Date" +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Quality Action' +#. Label of the resolution (Text Editor) field in DocType 'Quality Action +#. Resolution' +#. Label of the resolution_section (Section Break) field in DocType 'Warranty +#. Claim' +#: erpnext/quality_management/doctype/quality_action/quality_action.json +#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Resolution" +msgstr "" + +#. Label of the sla_resolution_by (Datetime) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Resolution By" +msgstr "" + +#. Label of the sla_resolution_date (Datetime) field in DocType 'Issue' +#. Label of the resolution_date (Datetime) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Resolution Date" +msgstr "" + +#. Label of the section_break_19 (Section Break) field in DocType 'Issue' +#. Label of the resolution_details (Text Editor) field in DocType 'Issue' +#. Label of the resolution_details (Text) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Resolution Details" +msgstr "" + +#. Option for the 'Service Level Agreement Status' (Select) field in DocType +#. 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Resolution Due" +msgstr "" + +#. Label of the resolution_time (Duration) field in DocType 'Issue' +#. Label of the resolution_time (Duration) field in DocType 'Service Level +#. Priority' +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/service_level_priority/service_level_priority.json +msgid "Resolution Time" +msgstr "" + +#. Label of the resolutions (Table) field in DocType 'Quality Action' +#: erpnext/quality_management/doctype/quality_action/quality_action.json +msgid "Resolutions" +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.js:45 +msgid "Resolve" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Dunning' +#. Option for the 'Status' (Select) field in DocType 'Non Conformance' +#. Option for the 'Status' (Select) field in DocType 'Issue' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning/dunning_list.js:4 +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/report/issue_analytics/issue_analytics.js:57 +#: erpnext/support/report/issue_summary/issue_summary.js:45 +#: erpnext/support/report/issue_summary/issue_summary.py:378 +msgid "Resolved" +msgstr "" + +#. Label of the resolved_by (Link) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Resolved By" +msgstr "" + +#. Label of the response_by (Datetime) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Response By" +msgstr "" + +#. Label of the response (Section Break) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Response Details" +msgstr "" + +#. Label of the response_key_list (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Response Key List" +msgstr "" + +#. Label of the response_options_sb (Section Break) field in DocType 'Support +#. Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Response Options" +msgstr "" + +#. Label of the response_result_key_path (Data) field in DocType 'Support +#. Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Response Result Key Path" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:99 +msgid "Response Time for {0} priority in row {1} can't be greater than Resolution Time." +msgstr "" + +#. Label of the response_and_resolution_time_section (Section Break) field in +#. DocType 'Service Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Response and Resolution" +msgstr "" + +#. Label of the responsible (Link) field in DocType 'Quality Action Resolution' +#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json +msgid "Responsible" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/defaults_setup.py:108 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:158 +msgid "Rest Of The World" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:90 +msgid "Restart" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation_list.js:23 +msgid "Restart Failed Entries" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:60 +msgid "Restart Subscription" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:178 +msgid "Restore Asset" +msgstr "" + +#. Option for the 'Allow Or Restrict Dimension' (Select) field in DocType +#. 'Accounting Dimension Filter' +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Restrict" +msgstr "" + +#. Label of the restrict_based_on (Select) field in DocType 'Party Specific +#. Item' +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +msgid "Restrict Items Based On" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Shipping +#. Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Restrict to Countries" +msgstr "" + +#. Label of the result_key (Table) field in DocType 'Currency Exchange +#. Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "Result Key" +msgstr "" + +#. Label of the result_preview_field (Data) field in DocType 'Support Search +#. Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Result Preview Field" +msgstr "" + +#. Label of the result_route_field (Data) field in DocType 'Support Search +#. Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Result Route Field" +msgstr "" + +#. Label of the result_title_field (Data) field in DocType 'Support Search +#. Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Result Title Field" +msgstr "" + +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:43 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:320 +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:63 +#: erpnext/selling/doctype/sales_order/sales_order.js:998 +msgid "Resume" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:661 +msgid "Resume Job" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.js:65 +msgid "Resume Timer" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:41 +msgid "Retail & Wholesale" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:5 +msgid "Retailer" +msgstr "" + +#. Label of the retain_sample (Check) field in DocType 'Item' +#. Label of the retain_sample (Check) field in DocType 'Purchase Receipt Item' +#. Label of the retain_sample (Check) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Retain Sample" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353 +msgid "Retained Earnings" +msgstr "" + +#. Label of the retried (Int) field in DocType 'Bulk Transaction Log Detail' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "Retried" +msgstr "" + +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js:27 +msgid "Retry Failed Transactions" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#. Option for the 'Status' (Select) field in DocType 'Delivery Note' +#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:79 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/services/status.py:82 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:16 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:15 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:138 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:167 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:175 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Return" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:111 +msgid "Return / Credit Note" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:131 +msgid "Return / Debit Note" +msgstr "" + +#. Label of the return_against (Link) field in DocType 'POS Invoice' +#. Label of the return_against (Link) field in DocType 'POS Invoice Reference' +#. Label of the return_against (Link) field in DocType 'Sales Invoice' +#. Label of the return_against (Link) field in DocType 'Sales Invoice +#. Reference' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +msgid "Return Against" +msgstr "" + +#. Label of the return_against (Link) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Return Against Delivery Note" +msgstr "" + +#. Label of the return_against (Link) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Return Against Purchase Invoice" +msgstr "" + +#. Label of the return_against (Link) field in DocType 'Purchase Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Return Against Purchase Receipt" +msgstr "" + +#. Label of the return_against (Link) field in DocType 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Return Against Subcontracting Receipt" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:295 +msgid "Return Components" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Delivery Note' +#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Receipt' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:20 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:19 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Return Issued" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:327 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:127 +msgid "Return Qty" +msgstr "" + +#. Label of the return_qty_from_rejected_warehouse (Check) field in DocType +#. 'Purchase Receipt Item' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:303 +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:103 +msgid "Return Qty from Rejected Warehouse" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:126 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Return Raw Material to Customer" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:124 +msgid "Return invoice of asset cancelled" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:82 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:592 +msgid "Return of Components" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:175 +msgid "Return on Asset Ratio" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:176 +msgid "Return on Equity Ratio" +msgstr "" + +#. Option for the 'Tracking Status' (Select) field in DocType 'Shipment' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:143 +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Returned" +msgstr "" + +#. Label of the returned_against (Data) field in DocType 'Serial and Batch +#. Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Returned Against" +msgstr "" + +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:58 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:58 +msgid "Returned Amount" +msgstr "" + +#. Label of the returned_qty (Float) field in DocType 'Purchase Order Item' +#. Label of the returned_qty (Float) field in DocType 'Sales Order Item' +#. Label of the returned_qty (Float) field in DocType 'Subcontracting Inward +#. Order Item' +#. Label of the returned_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the returned_qty (Float) field in DocType 'Subcontracting Order +#. Item' +#. Label of the returned_qty (Float) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the returned_qty (Float) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:146 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:154 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Returned Qty" +msgstr "" + +#. Label of the returned_qty (Float) field in DocType 'Work Order Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Returned Qty " +msgstr "" + +#. Label of the returned_qty (Float) field in DocType 'Delivery Note Item' +#. Label of the returned_qty (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Returned Qty in Stock UOM" +msgstr "" + +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:43 +msgid "Returned Quantity" +msgstr "" + +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:109 +msgid "Returned exchange rate is neither integer not float." +msgstr "" + +#. Label of the returns (Float) field in DocType 'Cashier Closing' +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py:25 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:35 +#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:24 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:33 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt_dashboard.py:27 +msgid "Returns" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:141 +msgid "Revaluation Journals" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358 +msgid "Revaluation Surplus" +msgstr "" + +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:88 +msgid "Revenue" +msgstr "" + +#. Label of the deferred_revenue_account (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Revenue Account" +msgstr "" + +#. Label of the reversal_of (Link) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Reversal Of" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:246 +msgid "Reverse Journal Entry" +msgstr "" + +#. Label of the reverse_sign (Check) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Reverse Sign" +msgstr "" + +#. Label of the review (Link) field in DocType 'Quality Action' +#. Group in Quality Goal's connections +#. Label of the sb_00 (Section Break) field in DocType 'Quality Review' +#. Group in Quality Review's connections +#. Label of the review (Text Editor) field in DocType 'Quality Review +#. Objective' +#. Label of the sb_00 (Section Break) field in DocType 'Quality Review +#. Objective' +#. Name of a report +#: erpnext/quality_management/doctype/quality_action/quality_action.json +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json +#: erpnext/quality_management/report/review/review.json +msgid "Review" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review Accounts Settings' +#: erpnext/accounts/onboarding_step/review_accounts_settings/review_accounts_settings.json +msgid "Review Accounts Settings" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review Buying Settings' +#: erpnext/buying/onboarding_step/review_buying_settings/review_buying_settings.json +msgid "Review Buying Settings" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/accounts/onboarding_step/chart_of_accounts/chart_of_accounts.json +msgid "Review Chart of Accounts" +msgstr "" + +#. Label of the review_date (Date) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Review Date" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review Manufacturing Settings' +#: erpnext/manufacturing/onboarding_step/review_manufacturing_settings/review_manufacturing_settings.json +msgid "Review Manufacturing Settings" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review Selling Settings' +#: erpnext/selling/onboarding_step/review_selling_settings/review_selling_settings.json +msgid "Review Selling Settings" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review Stock Settings' +#: erpnext/stock/onboarding_step/review_stock_settings/review_stock_settings.json +msgid "Review Stock Settings" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review System Settings' +#: erpnext/setup/onboarding_step/review_system_settings/review_system_settings.json +msgid "Review System Settings" +msgstr "" + +#. Label of a Card Break in the Quality Workspace +#: erpnext/quality_management/workspace/quality/quality.json +msgid "Review and Action" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:176 +msgid "Review each page. In the Table view, map each column, click a row number to set/clear the header row, and exclude anything that is not transactions (ads, summaries)." +msgstr "" + +#. Group in Quality Procedure's connections +#. Label of the reviews (Table) field in DocType 'Quality Review' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +msgid "Reviews" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.js:38 +msgid "Revise Budget" +msgstr "" + +#. Label of the revision_of (Data) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Revision Of" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.js:99 +msgid "Revision cancelled" +msgstr "" + +#. Label of the rgt (Int) field in DocType 'Account' +#. Label of the rgt (Int) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/setup/doctype/company/company.json +msgid "Rgt" +msgstr "" + +#. Label of the right_child (Link) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Right Child" +msgstr "" + +#. Label of the rgt (Int) field in DocType 'Quality Procedure' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Right Index" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Ringing" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Rod" +msgstr "" + +#. Label of the role_allowed_to_over_deliver_receive (Link) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Role Allowed to Over Deliver/Receive" +msgstr "" + +#. Label of the role_allowed_to_over_bill (Link) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Role Allowed to over bill " +msgstr "" + +#. Label of the credit_controller (Link) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Role allowed to bypass credit limit" +msgstr "" + +#. Description of the 'Exempted Role' (Link) field in DocType 'Accounting +#. Period' +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +msgid "Role allowed to bypass period restrictions." +msgstr "" + +#. Label of the role_allowed_to_create_edit_back_dated_transactions (Link) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Role allowed to create/edit back-dated transactions" +msgstr "" + +#. Label of the stock_auth_role (Link) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Role allowed to edit frozen stock" +msgstr "" + +#. Label of the role_to_override_stop_action (Link) field in DocType 'Accounts +#. Settings' +#. Label of the role_to_override_stop_action (Link) field in DocType 'Buying +#. Settings' +#. Label of the role_to_override_stop_action (Link) field in DocType 'Selling +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Role allowed to override stop action" +msgstr "" + +#. Label of the role_to_notify_on_depreciation_failure (Link) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Role to Notify on Depreciation Failure" +msgstr "" + +#. Label of the role_allowed_for_frozen_entries (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Roles Allowed to Set and Edit Frozen Account Entries" +msgstr "" + +#. Label of the root (Link) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Root" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:48 +msgid "Root Company" +msgstr "" + +#. Label of the root_type (Select) field in DocType 'Account' +#. Label of the root_type (Select) field in DocType 'Account Category' +#. Label of the root_type (Select) field in DocType 'Ledger Merge' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account_tree.js:147 +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/report/account_balance/account_balance.js:22 +msgid "Root Type" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:404 +msgid "Root Type for {0} must be one of the Asset, Liability, Income, Expense and Equity" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:459 +msgid "Root Type is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:219 +msgid "Root cannot be edited." +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:47 +msgid "Root cannot have a parent cost center" +msgstr "" + +#. Label of the round_free_qty (Check) field in DocType 'Pricing Rule' +#. Label of the round_free_qty (Check) field in DocType 'Promotional Scheme +#. Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Round Free Qty" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the round_off_section (Section Break) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211 +#: erpnext/accounts/report/account_balance/account_balance.js:56 +#: erpnext/setup/doctype/company/company.json +msgid "Round Off" +msgstr "" + +#. Label of the round_off_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Round Off Account" +msgstr "" + +#. Label of the round_off_cost_center (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Round Off Cost Center" +msgstr "" + +#. Label of the round_off_tax_amount (Check) field in DocType 'Tax Withholding +#. Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Round Off Tax Amount" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the round_off_for_opening (Link) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/setup/doctype/company/company.json +msgid "Round Off for Opening" +msgstr "" + +#. Label of the round_row_wise_tax (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Round tax amount row-wise" +msgstr "" + +#. Label of the rounded_total (Currency) field in DocType 'POS Invoice' +#. Label of the base_rounded_total (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the rounded_total (Currency) field in DocType 'Purchase Invoice' +#. Label of the base_rounded_total (Currency) field in DocType 'Sales Invoice' +#. Label of the rounded_total (Currency) field in DocType 'Sales Invoice' +#. Label of the base_rounded_total (Currency) field in DocType 'Purchase Order' +#. Label of the rounded_total (Currency) field in DocType 'Purchase Order' +#. Label of the rounded_total (Currency) field in DocType 'Supplier Quotation' +#. Label of the base_rounded_total (Currency) field in DocType 'Quotation' +#. Label of the rounded_total (Currency) field in DocType 'Quotation' +#. Label of the base_rounded_total (Currency) field in DocType 'Sales Order' +#. Label of the rounded_total (Currency) field in DocType 'Sales Order' +#. Label of the base_rounded_total (Currency) field in DocType 'Delivery Note' +#. Label of the rounded_total (Currency) field in DocType 'Delivery Note' +#. Label of the base_rounded_total (Currency) field in DocType 'Purchase +#. Receipt' +#. Label of the rounded_total (Currency) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/purchase_register/purchase_register.py:284 +#: erpnext/accounts/report/sales_register/sales_register.py:312 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Rounded Total" +msgstr "" + +#. Label of the base_rounded_total (Currency) field in DocType 'POS Invoice' +#. Label of the base_rounded_total (Currency) field in DocType 'Supplier +#. Quotation' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +msgid "Rounded Total (Company Currency)" +msgstr "" + +#. Label of the rounding_adjustment (Currency) field in DocType 'POS Invoice' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the rounding_adjustment (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Sales +#. Invoice' +#. Label of the rounding_adjustment (Currency) field in DocType 'Sales Invoice' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Purchase +#. Order' +#. Label of the rounding_adjustment (Currency) field in DocType 'Purchase +#. Order' +#. Label of the rounding_adjustment (Currency) field in DocType 'Supplier +#. Quotation' +#. Label of the base_rounding_adjustment (Currency) field in DocType +#. 'Quotation' +#. Label of the rounding_adjustment (Currency) field in DocType 'Quotation' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Sales +#. Order' +#. Label of the rounding_adjustment (Currency) field in DocType 'Sales Order' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Delivery +#. Note' +#. Label of the rounding_adjustment (Currency) field in DocType 'Delivery Note' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Purchase +#. Receipt' +#. Label of the rounding_adjustment (Currency) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Rounding Adjustment" +msgstr "" + +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Supplier +#. Quotation' +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +msgid "Rounding Adjustment (Company Currency" +msgstr "" + +#. Label of the base_rounding_adjustment (Currency) field in DocType 'POS +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +msgid "Rounding Adjustment (Company Currency)" +msgstr "" + +#. Label of the rounding_loss_allowance (Float) field in DocType 'Exchange Rate +#. Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Rounding Loss Allowance" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:45 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:49 +msgid "Rounding Loss Allowance should be between 0 and 1" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:119 +#: erpnext/stock/services/base_stock_gl_composer.py:134 +msgid "Rounding gain/loss Entry for Stock Transfer" +msgstr "" + +#. Label of the routing (Link) field in DocType 'BOM' +#. Label of the routing (Link) field in DocType 'BOM Creator' +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:101 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/routing/routing.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Routing" +msgstr "" + +#. Label of the routing_name (Data) field in DocType 'Routing' +#: erpnext/manufacturing/doctype/routing/routing.json +msgid "Routing Name" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:226 +msgid "Row # {0}: Cannot return more than {1} for Item {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:151 +msgid "Row # {0}: Rate cannot be greater than the rate used in {1} {2}" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:135 +msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:342 +msgid "Row #1: Sequence ID must be 1 for Operation {0}." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:568 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:320 +msgid "Row #{0} (Payment Table): Amount must be negative" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:566 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:315 +msgid "Row #{0} (Payment Table): Amount must be positive" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:583 +msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}." +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:330 +msgid "Row #{0}: Acceptance Criteria Formula is incorrect." +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:310 +msgid "Row #{0}: Acceptance Criteria Formula is required." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:116 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:600 +msgid "Row #{0}: Accepted Warehouse and Rejected Warehouse cannot be same" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:593 +msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}" +msgstr "" + +#: erpnext/accounts/services/taxes.py:125 +msgid "Row #{0}: Account {1} does not belong to company {2}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:399 +msgid "Row #{0}: Allocated Amount cannot be greater than Outstanding Amount of Payment Request {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:375 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:480 +msgid "Row #{0}: Allocated Amount cannot be greater than outstanding amount." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:492 +msgid "Row #{0}: Allocated amount:{1} is greater than outstanding amount:{2} for Payment Term {3}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:273 +msgid "Row #{0}: Amount must be a positive number" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:51 +msgid "Row #{0}: Asset {1} cannot be sold, it is already {2}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:56 +msgid "Row #{0}: Asset {1} is already sold" +msgstr "" + +#: erpnext/selling/doctype/sales_order/services/subcontracting.py:37 +msgid "Row #{0}: BOM not found for FG Item {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:441 +msgid "Row #{0}: Batch No {1} is already selected." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:435 +msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 +msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:638 +msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:617 +msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:483 +msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:78 +msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:397 +msgid "Row #{0}: Cannot delete item {1} which has already been billed." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:371 +msgid "Row #{0}: Cannot delete item {1} which has already been delivered" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:390 +msgid "Row #{0}: Cannot delete item {1} which has already been received" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:377 +msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:383 +msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:525 +msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1231 +msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:233 +msgid "Row #{0}: Cannot transfer {1} {2} of Item {3}. Maximum transferable quantity is {4} {2}." +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.py:138 +msgid "Row #{0}: Child Item should not be a Product Bundle. Please remove Item {1} and Save" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:248 +msgid "Row #{0}: Consumed Asset {1} cannot be Draft" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:251 +msgid "Row #{0}: Consumed Asset {1} cannot be cancelled" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:233 +msgid "Row #{0}: Consumed Asset {1} cannot be the same as the Target Asset" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:242 +msgid "Row #{0}: Consumed Asset {1} cannot be {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:256 +msgid "Row #{0}: Consumed Asset {1} does not belong to company {2}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.py:112 +msgid "Row #{0}: Cost Center {1} does not belong to company {2}" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:212 +msgid "Row #{0}: Could not find enough {1} entries to match. Remaining amount: {2}" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:88 +msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:90 +msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:178 +#: erpnext/controllers/subcontracting_inward_controller.py:304 +#: erpnext/controllers/subcontracting_inward_controller.py:352 +msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:419 +msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:444 +msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:288 +msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:432 +msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:315 +msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:220 +#: erpnext/controllers/subcontracting_inward_controller.py:363 +msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:61 +msgid "Row #{0}: Dates overlapping with other row in group {1}" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:34 +msgid "Row #{0}: Default BOM not found for FG Item {1}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:684 +msgid "Row #{0}: Depreciation Start Date is required" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:336 +msgid "Row #{0}: Duplicate entry in References {1} {2}" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:270 +msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:196 +msgid "Row #{0}: Expense Account not set for the Item {1}. {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:145 +msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 +msgid "Row #{0}: Finished Good Item Qty can not be zero" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 +#: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 +msgid "Row #{0}: Finished Good Item is not specified for service item {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:371 +msgid "Row #{0}: Finished Good Item {1} cannot be added in the Secondary Items table." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:28 +#: erpnext/selling/doctype/sales_order/services/subcontracting.py:27 +msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:394 +msgid "Row #{0}: Finished Good must be {1}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:581 +msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:170 +#: erpnext/controllers/subcontracting_inward_controller.py:294 +msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:603 +msgid "Row #{0}: For {1}, you can select reference document only if account gets credited" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:609 +msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:667 +msgid "Row #{0}: Frequency of Depreciation must be greater than zero" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:50 +msgid "Row #{0}: From Date cannot be before To Date" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:943 +msgid "Row #{0}: From Time and To Time fields are required" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:427 +msgid "Row #{0}: Item added" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:78 +msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}" +msgstr "" + +#: erpnext/buying/utils.py:98 +msgid "Row #{0}: Item {1} does not exist" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1650 +msgid "Row #{0}: Item {1} has been picked, please reserve stock from the Pick List." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:452 +msgid "Row #{0}: Item {1} has no stock in warehouse {2}." +msgstr "" + +#: erpnext/controllers/stock_controller.py:103 +msgid "Row #{0}: Item {1} has zero rate but '{2}' is not enabled." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:459 +msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:65 +msgid "Row #{0}: Item {1} is not a Customer Provided Item." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:115 +#: erpnext/controllers/subcontracting_inward_controller.py:496 +msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:267 +msgid "Row #{0}: Item {1} is not a service item" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:221 +msgid "Row #{0}: Item {1} is not a stock item" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:106 +msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:79 +msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:128 +msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 +msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:786 +msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:149 +msgid "Row #{0}: Missing {1} for company {2}." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:678 +msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:673 +msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:567 +msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1733 +msgid "Row #{0}: Only {1} available to reserve for the Item {2}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:641 +msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:208 +#: erpnext/controllers/subcontracting_inward_controller.py:342 +msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 +msgid "Row #{0}: Please select Item Code in Assembly Items" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 +msgid "Row #{0}: Please select the BOM No in Assembly Items" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:106 +msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:78 +msgid "Row #{0}: Please select the Sub Assembly Warehouse" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:590 +msgid "Row #{0}: Please set reorder quantity" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:522 +msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:378 +#, python-format +msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" +msgstr "" + +#: erpnext/stock/doctype/packed_item/packed_item.py:213 +msgid "Row #{0}: Product Bundle {1} is disabled and cannot be used in transactions." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:425 +msgid "Row #{0}: Qty increased by {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:224 +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:270 +msgid "Row #{0}: Qty must be a positive number" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgstr "" + +#: erpnext/stock/services/quality_inspection_service.py:77 +msgid "Row #{0}: Quality Inspection is required for Item {1}" +msgstr "" + +#: erpnext/stock/services/quality_inspection_service.py:92 +msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}" +msgstr "" + +#: erpnext/stock/services/quality_inspection_service.py:107 +msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}" +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.py:147 +msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:997 +msgid "Row #{0}: Quantity for Item {1} cannot be zero." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:538 +msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1718 +msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/utilities/transaction_base.py:172 +#: erpnext/utilities/transaction_base.py:178 +msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:574 +msgid "Row #{0}: Rejected Qty cannot be set for Secondary Item {1}." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:109 +msgid "Row #{0}: Rejected Warehouse is mandatory for the rejected Item {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:163 +msgid "Row #{0}: Repair cost {1} exceeds available amount {2} for Purchase Invoice {3} and Account {4}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:42 +msgid "Row #{0}: Return Against is required for returning asset" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:142 +msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:155 +msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:569 +msgid "Row #{0}: Secondary Item Qty cannot be zero" +msgstr "" + +#: erpnext/controllers/selling_controller.py:298 +msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" +"\t\t\t\t\tSelling {3} should be atleast {4}.

        Alternatively,\n" +"\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" +"\t\t\t\t\tthis validation." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:348 +msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:123 +msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:378 +msgid "Row #{0}: Serial No {1} for Item {2} is not available in {3} {4} or might be reserved in another {5}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:394 +msgid "Row #{0}: Serial No {1} is already selected." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:424 +msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:550 +msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:544 +msgid "Row #{0}: Service Start Date cannot be greater than Service End Date" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:538 +msgid "Row #{0}: Service Start and End Date is required for deferred accounting" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:448 +msgid "Row #{0}: Set Supplier for item {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:70 +msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:403 +msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:453 +msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:408 +msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:40 +msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:62 +msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:108 +msgid "Row #{0}: Start Time must be before End Time" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:211 +msgid "Row #{0}: Status is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:443 +msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:441 +msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403 +msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1663 +msgid "Row #{0}: Stock cannot be reserved for a non-stock Item {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1676 +msgid "Row #{0}: Stock cannot be reserved in group warehouse {1}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1690 +msgid "Row #{0}: Stock is already reserved for the Item {1}." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:554 +msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:413 +msgid "Row #{0}: Stock not available to reserve for Item {1} against Batch {2} in Warehouse {3}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1254 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1704 +msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:944 +msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:397 +msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:141 +msgid "Row #{0}: The batch {1} has already expired." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:599 +msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:190 +msgid "Row #{0}: Timings conflicts with row {1}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:654 +msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:663 +msgid "Row #{0}: Total Number of Depreciations must be greater than zero" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:57 +msgid "Row #{0}: Warehouse {1} does not match with the warehouse {2} in Serial and Batch Bundle {3}." +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:94 +msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:578 +msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:36 +msgid "Row #{0}: You must select an Asset for Item {1}." +msgstr "" + +#: erpnext/public/js/controllers/buying.js:261 +msgid "Row #{0}: {1} can not be negative for item {2}" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:323 +msgid "Row #{0}: {1} is not a valid reading field. Please refer to the field description." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:131 +msgid "Row #{0}: {1} is required to create the Opening {2} Invoices" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:89 +msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:251 +msgid "Row #{0}:Quantity for Item {1} cannot be zero." +msgstr "" + +#: erpnext/buying/utils.py:106 +msgid "Row #{1}: Warehouse is mandatory for stock Item {0}" +msgstr "" + +#: erpnext/controllers/buying_controller.py:314 +msgid "Row #{idx}: Cannot select Supplier Warehouse while suppling raw materials to subcontractor." +msgstr "" + +#: erpnext/controllers/buying_controller.py:633 +msgid "Row #{idx}: Item rate has been updated as per valuation rate since its an internal stock transfer." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1069 +msgid "Row #{idx}: Please enter a location for the asset item {item_code}." +msgstr "" + +#: erpnext/controllers/buying_controller.py:726 +msgid "Row #{idx}: Received Qty must be equal to Accepted + Rejected Qty for Item {item_code}." +msgstr "" + +#: erpnext/controllers/buying_controller.py:739 +msgid "Row #{idx}: {field_label} can not be negative for item {item_code}." +msgstr "" + +#: erpnext/controllers/buying_controller.py:692 +msgid "Row #{idx}: {field_label} is mandatory." +msgstr "" + +#: erpnext/controllers/buying_controller.py:305 +msgid "Row #{idx}: {from_warehouse_field} and {to_warehouse_field} cannot be same." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1185 +msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{}: Currency of {} - {} doesn't matches company currency." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{}: Either Party ID or Party Name is required" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{}: Finance Book should not be empty since you're using multiple." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{}: POS Invoice {} has been {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{}: POS Invoice {} is not against customer {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{}: POS Invoice {} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{}: Party ID is required" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 +msgid "Row #{}: Please assign task to a member." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{}: Please use a different Finance Book." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{}: item {} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{}: {}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{}: {} {} does not exist." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 +msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:806 +msgid "Row {0} : Operation is required against the raw material item {1}" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:265 +msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 +msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:487 +msgid "Row {0}: Account {1} and Party Type {2} have different account types" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.py:164 +msgid "Row {0}: Activity Type is mandatory." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:553 +msgid "Row {0}: Advance against Customer must be credit" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:555 +msgid "Row {0}: Advance against Supplier must be debit" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:557 +msgid "Row {0}: Bill of Materials not found for the Item {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:660 +msgid "Row {0}: Both Debit and Credit values cannot be zero" +msgstr "" + +#: erpnext/controllers/selling_controller.py:924 +msgid "Row {0}: Cannot sell item {1} from Sample Retention Warehouse {2}" +msgstr "" + +#: erpnext/controllers/selling_controller.py:290 +msgid "Row {0}: Conversion Factor is mandatory" +msgstr "" + +#: erpnext/accounts/services/taxes.py:291 +msgid "Row {0}: Cost Center {1} does not belong to Company {2}" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +msgid "Row {0}: Cost center is required for an item {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:75 +msgid "Row {0}: Credit entry can not be linked with a {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/costing.py:25 +msgid "Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:71 +msgid "Row {0}: Debit entry can not be linked with a {1}" +msgstr "" + +#: erpnext/controllers/selling_controller.py:894 +msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:149 +msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}." +msgstr "" + +#: erpnext/accounts/services/payment_schedule.py:230 +msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 +#: erpnext/controllers/taxes_and_totals.py:1388 +msgid "Row {0}: Exchange Rate is mandatory" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:612 +msgid "Row {0}: Expected Value After Useful Life cannot be negative" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:615 +msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:91 +msgid "Row {0}: Expense Head changed to {1} as no Purchase Receipt is created against Item {2}." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:73 +msgid "Row {0}: Expense Head changed to {1} because expense is booked against this account in Purchase Receipt {2}" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:152 +msgid "Row {0}: For Supplier {1}, Email Address is Required to send an email" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.py:161 +msgid "Row {0}: From Time and To Time is mandatory." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:355 +#: erpnext/projects/doctype/timesheet/timesheet.py:225 +msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" +msgstr "" + +#: erpnext/stock/services/internal_transfer.py:60 +msgid "Row {0}: From Warehouse is mandatory for internal transfers" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:336 +msgid "Row {0}: From time must be less than to time" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.py:167 +msgid "Row {0}: Hours value must be greater than zero." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:94 +msgid "Row {0}: Invalid reference {1}" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:134 +msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgstr "" + +#: erpnext/controllers/selling_controller.py:659 +msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:142 +msgid "Row {0}: Item {1} must be a stock item." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:157 +msgid "Row {0}: Item {1} must be a subcontracted item." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:174 +msgid "Row {0}: Item {1} must be linked to a {2}." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:195 +msgid "Row {0}: Item {1}'s quantity cannot be higher than the available quantity." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:940 +msgid "Row {0}: Operation time should be greater than 0 for operation {1}" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/services/packing.py:28 +msgid "Row {0}: Packed Qty must be equal to {1} Qty." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +msgid "Row {0}: Packing Slip is already created for Item {1}." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:107 +msgid "Row {0}: Party / Account does not match with {1} / {2} in {3} {4}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:476 +msgid "Row {0}: Party Type and Party is required for Receivable / Payable account {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py:45 +msgid "Row {0}: Payment Term is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:546 +msgid "Row {0}: Payment against Sales/Purchase Order should always be marked as advance" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:539 +msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:220 +msgid "Row {0}: Please select a BOM for Item {1}." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select an valid BOM for Item {1}." +msgstr "" + +#: erpnext/regional/italy/utils.py:290 +msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" +msgstr "" + +#: erpnext/regional/italy/utils.py:317 +msgid "Row {0}: Please set the Mode of Payment in Payment Schedule" +msgstr "" + +#: erpnext/regional/italy/utils.py:322 +msgid "Row {0}: Please set the correct code on Mode of Payment {1}" +msgstr "" + +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:114 +msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +msgid "Row {0}: Purchase Invoice {1} has no stock impact." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:190 +msgid "Row {0}: Qty in Stock UOM can not be zero." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +msgid "Row {0}: Qty must be greater than 0." +msgstr "" + +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:124 +msgid "Row {0}: Quantity cannot be negative." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/timesheet_billing.py:24 +msgid "Row {0}: Sales Invoice {1} is already created for {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." +msgstr "" + +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:57 +msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:105 +msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}" +msgstr "" + +#: erpnext/stock/services/internal_transfer.py:51 +msgid "Row {0}: Target Warehouse is mandatory for internal transfers" +msgstr "" + +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:125 +msgid "Row {0}: Task {1} does not belong to Project {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.js:178 +msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated." +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 +msgid "Row {0}: The item {1}, quantity must be positive number" +msgstr "" + +#: erpnext/accounts/services/taxes.py:268 +msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:215 +msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:99 +msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity." +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:184 +msgid "Row {0}: UOM Conversion Factor is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:389 +msgid "Row {0}: Update Stock must be checked for item {1} because it is against Pick List {2}." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:171 +msgid "Row {0}: Warehouse is required" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:180 +msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehouse belonging to company {3}." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:934 +#: erpnext/manufacturing/doctype/work_order/work_order.py:482 +msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:939 +msgid "Row {0}: user has not applied the rule {1} on the item {2}" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.py:64 +msgid "Row {0}: {1} account already applied for Accounting Dimension {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:41 +msgid "Row {0}: {1} must be greater than 0" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:73 +msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:132 +msgid "Row {0}: {1} {2} does not match with {3}" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 +msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" +msgstr "" + +#: erpnext/utilities/transaction_base.py:625 +msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1051 +msgid "Row {idx}: Asset Naming Series is mandatory for the auto creation of assets for item {item_code}." +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py:84 +msgid "Row({0}): Outstanding Amount cannot be greater than actual Outstanding Amount {1} in {2}" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py:74 +msgid "Row({0}): {1} is already discounted in {2}" +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:206 +msgid "Rows Added in {0}" +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:207 +msgid "Rows Removed in {0}" +msgstr "" + +#. Description of the 'Merge similar Account Heads' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Rows with Same Account heads will be merged on Ledger" +msgstr "" + +#: erpnext/accounts/services/payment_schedule.py:240 +msgid "Rows with duplicate due dates in other rows were found: {0}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:57 +msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:276 +msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" + +#. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +msgid "Rule Applied" +msgstr "" + +#. Label of the rule_description (Small Text) field in DocType 'Bank +#. Transaction Rule' +#. Label of the rule_description (Small Text) field in DocType 'Pricing Rule' +#. Label of the rule_description (Small Text) field in DocType 'Promotional +#. Scheme Price Discount' +#. Label of the rule_description (Small Text) field in DocType 'Promotional +#. Scheme Product Discount' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:47 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Rule Description" +msgstr "" + +#. Label of the rule_name (Data) field in DocType 'Bank Transaction Rule' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:28 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Rule Name" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:41 +msgid "Rule created successfully" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:149 +msgid "Rule deleted." +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:718 +msgid "Rule matched based on transaction description and other criteria." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:39 +msgid "Rule name is required" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:174 +msgid "Rule priorities updated" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/EditRule.tsx:30 +msgid "Rule updated." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:56 +msgid "Rules evaluation completed" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:56 +msgid "Rules evaluation started" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:54 +msgid "Rules for configuring series" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 +msgid "Rules to match against the transaction description" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:75 +msgid "Run Rules" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:81 +msgid "Run on new transactions" +msgstr "" + +#. Description of the 'Job Capacity' (Int) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Run parallel job cards in a workstation" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:125 +msgid "Run rules automatically" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:79 +msgid "Run rules on unreconciled transactions that haven't been evaluated yet" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:75 +msgid "Running..." +msgstr "" + +#. Description of the 'Preview mode' (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Runs a preview check on save before submission without making any actual changes." +msgstr "" + +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:29 +msgid "S.O. No." +msgstr "" + +#. Label of the scio_detail (Data) field in DocType 'Sales Invoice Item' +#. Label of the scio_detail (Data) field in DocType 'Stock Entry Detail' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "SCIO Detail" +msgstr "" + +#. Label of the sco_rm_detail (Data) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "SCO Supplied Item" +msgstr "" + +#. Label of the sla_fulfilled_on (Table) field in DocType 'Service Level +#. Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "SLA Fulfilled On" +msgstr "" + +#. Name of a DocType +#: erpnext/support/doctype/sla_fulfilled_on_status/sla_fulfilled_on_status.json +msgid "SLA Fulfilled On Status" +msgstr "" + +#. Label of the pause_sla_on (Table) field in DocType 'Service Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "SLA Paused On" +msgstr "" + +#: erpnext/public/js/utils.js:1251 +msgid "SLA is on hold since {0}" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:52 +msgid "SLA will be applied if {1} is set as {2}{3}" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:32 +msgid "SLA will be applied on every {0}" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/sms_center/sms_center.json +#: erpnext/workspace_sidebar/crm.json +msgid "SMS Center" +msgstr "" + +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:44 +msgid "SO Qty" +msgstr "" + +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:116 +msgid "SO Total Qty" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:26 +msgid "STATEMENT OF ACCOUNTS" +msgstr "" + +#. Label of the swift_number (Read Only) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "SWIFT Number" +msgstr "" + +#. Label of the swift_number (Data) field in DocType 'Bank' +#. Label of the swift_number (Data) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "SWIFT number" +msgstr "" + +#. Label of the safety_stock (Float) field in DocType 'Material Request Plan +#. Item' +#. Label of the safety_stock (Float) field in DocType 'Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1053 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:58 +msgid "Safety Stock" +msgstr "" + +#. Label of the salary_information (Tab Break) field in DocType 'Employee' +#. Label of the salary (Currency) field in DocType 'Employee External Work +#. History' +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216 +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json +msgid "Salary" +msgstr "" + +#. Label of the salary_currency (Link) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Salary Currency" +msgstr "" + +#. Label of the salary_mode (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Salary Mode" +msgstr "" + +#. Option for the 'Invoice Type' (Select) field in DocType 'Opening Invoice +#. Creation Tool' +#. Option for the 'Tax Type' (Select) field in DocType 'Tax Rule' +#. Option for the 'Order Type' (Select) field in DocType 'Quotation' +#. Option for the 'Order Type' (Select) field in DocType 'Sales Order' +#. Label of the sales_details (Tab Break) field in DocType 'Item' +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243 +#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8 +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template_dashboard.py:14 +#: erpnext/accounts/doctype/shipping_rule/shipping_rule_dashboard.py:10 +#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:9 +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/crm/doctype/opportunity/opportunity.js:288 +#: erpnext/crm/doctype/opportunity/opportunity.py:157 +#: erpnext/projects/doctype/project/project_dashboard.py:15 +#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:143 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/company/company.py:464 +#: erpnext/setup/doctype/company/company.py:657 +#: erpnext/setup/doctype/company/company_dashboard.py:9 +#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12 +#: erpnext/setup/install.py:397 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_list.js:29 +#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:17 +msgid "Sales" +msgstr "" + +#: erpnext/stock/doctype/item/item_list.js:28 +msgid "Sales & Purchase" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:657 +msgid "Sales Account" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/sales_analytics/sales_analytics.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json +msgid "Sales Analytics" +msgstr "" + +#. Label of the sales_team (Table) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Sales Contributions and Incentives" +msgstr "" + +#. Label of the selling_defaults (Section Break) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Sales Defaults" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217 +msgid "Sales Expenses" +msgstr "" + +#. Label of the sales_forecast (Link) field in DocType 'Master Production +#. Schedule' +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Sales Forecast" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +msgid "Sales Forecast Item" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/selling/page/sales_funnel/sales_funnel.js:7 +#: erpnext/selling/page/sales_funnel/sales_funnel.js:49 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json +msgid "Sales Funnel" +msgstr "" + +#. Label of the sales_incoming_rate (Currency) field in DocType 'Purchase +#. Invoice Item' +#. Label of the sales_incoming_rate (Currency) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Sales Incoming Rate" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Label of the sales_invoice (Data) field in DocType 'Loyalty Point Entry +#. Redemption' +#. Label of the sales_invoice (Link) field in DocType 'Overdue Payment' +#. Option for the 'Invoice Type' (Select) field in DocType 'Payment +#. Reconciliation Invoice' +#. Option for the 'Invoice Type Created via POS Screen' (Select) field in +#. DocType 'POS Settings' +#. Name of a DocType +#. Label of the sales_invoice (Link) field in DocType 'Sales Invoice Reference' +#. Option for the 'Document Type' (Select) field in DocType 'Contract' +#. Label of the sales_invoice (Link) field in DocType 'Timesheet' +#. Label of the sales_invoice (Link) field in DocType 'Timesheet Detail' +#. Label of a Link in the Selling Workspace +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Label of a shortcut in the Home Workspace +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:63 +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +#: erpnext/accounts/print_format/sales_auditing_voucher/sales_auditing_voucher.html:5 +#: erpnext/accounts/report/gross_profit/gross_profit.js:30 +#: erpnext/accounts/report/gross_profit/gross_profit.py:287 +#: erpnext/accounts/report/gross_profit/gross_profit.py:294 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/selling/doctype/quotation/quotation_list.js:22 +#: erpnext/selling/doctype/sales_order/sales_order.js:1115 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:75 +#: erpnext/selling/doctype/selling_settings/selling_settings.js:51 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/delivery_note/delivery_note.js:347 +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:67 +#: erpnext/stock/doctype/pick_list/pick_list.js:142 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/workspace_sidebar/home.json erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Invoice" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Sales Invoice Advance" +msgstr "" + +#. Label of the sales_invoice_item (Data) field in DocType 'Purchase Invoice +#. Item' +#. Name of a DocType +#. Label of the sales_invoice_item (Data) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Sales Invoice Item" +msgstr "" + +#. Label of the sales_invoice_no (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Sales Invoice No" +msgstr "" + +#. Label of the payments (Table) field in DocType 'POS Invoice' +#. Label of the payments (Table) field in DocType 'Sales Invoice' +#. Name of a DocType +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +msgid "Sales Invoice Payment" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +msgid "Sales Invoice Reference" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +msgid "Sales Invoice Timesheet" +msgstr "" + +#. Label of the sales_invoices (Table) field in DocType 'POS Closing Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "Sales Invoice Transactions" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Invoice Trends" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:184 +msgid "Sales Invoice does not have Payments" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:180 +msgid "Sales Invoice is already consolidated" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:186 +msgid "Sales Invoice is not created using POS" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:192 +msgid "Sales Invoice is not submitted" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 +msgid "Sales Invoice isn't created by user {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 +msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:611 +msgid "Sales Invoice {0} has already been submitted" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:536 +msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order" +msgstr "" + +#. Label of the sales_monthly_history (Small Text) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Sales Monthly History" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:153 +msgid "Sales Opportunities by Campaign" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:155 +msgid "Sales Opportunities by Medium" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:151 +msgid "Sales Opportunities by Source" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Label of the sales_order (Link) field in DocType 'POS Invoice Item' +#. Label of the sales_order (Link) field in DocType 'Sales Invoice Item' +#. Label of the sales_order (Link) field in DocType 'Purchase Order Item' +#. Label of the sales_order (Link) field in DocType 'Supplier Quotation Item' +#. Option for the 'Document Type' (Select) field in DocType 'Contract' +#. Label of the sales_order (Link) field in DocType 'Maintenance Schedule Item' +#. Label of the sales_order (Link) field in DocType 'Material Request Plan +#. Item' +#. Option for the 'Get Items From' (Select) field in DocType 'Production Plan' +#. Label of the sales_order (Link) field in DocType 'Production Plan Item' +#. Label of the sales_order (Link) field in DocType 'Production Plan Sales +#. Order' +#. Label of the sales_order (Link) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the sales_order (Link) field in DocType 'Work Order' +#. Label of the sales_order (Link) field in DocType 'Project' +#. Label of the sales_order (Link) field in DocType 'Delivery Schedule Item' +#. Name of a DocType +#. Label of a Link in the Selling Workspace +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Label of the sales_order (Link) field in DocType 'Material Request Item' +#. Label of the sales_order (Link) field in DocType 'Pick List Item' +#. Label of the sales_order (Link) field in DocType 'Purchase Receipt Item' +#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation +#. Entry' +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:380 +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:284 +#: erpnext/accounts/report/sales_register/sales_register.py:238 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/controllers/selling_controller.py:509 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:65 +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:122 +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:24 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order/work_order_calendar.js:32 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:155 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:217 +#: erpnext/projects/doctype/project/project.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/quotation/quotation.js:134 +#: erpnext/selling/doctype/quotation/quotation_dashboard.py:11 +#: erpnext/selling/doctype/quotation/quotation_list.js:16 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/selling_settings/selling_settings.js:50 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:60 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:15 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.js:41 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:233 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/delivery_note/delivery_note.js:157 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:223 +#: erpnext/stock/doctype/material_request/material_request.js:236 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:30 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:159 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:30 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:74 +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/selling.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Sales Order" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Order Analysis" +msgstr "" + +#. Label of the sales_order_date (Date) field in DocType 'Production Plan Sales +#. Order' +#. Label of the transaction_date (Date) field in DocType 'Sales Order Item' +#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Sales Order Date" +msgstr "" + +#. Label of the so_detail (Data) field in DocType 'POS Invoice Item' +#. Label of the so_detail (Data) field in DocType 'Sales Invoice Item' +#. Label of the sales_order_item (Data) field in DocType 'Purchase Order Item' +#. Label of the sales_order_item (Data) field in DocType 'Production Plan Item' +#. Label of the sales_order_item (Data) field in DocType 'Production Plan Item +#. Reference' +#. Label of the sales_order_item (Data) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the sales_order_item (Data) field in DocType 'Work Order' +#. Label of the sales_order_item (Data) field in DocType 'Delivery Schedule +#. Item' +#. Name of a DocType +#. Label of the sales_order_item (Data) field in DocType 'Material Request +#. Item' +#. Label of the sales_order_item (Data) field in DocType 'Pick List Item' +#. Label of the sales_order_item (Data) field in DocType 'Purchase Receipt +#. Item' +#. Label of the sales_order_item (Data) field in DocType 'Subcontracting Inward +#. Order Item' +#. Label of the sales_order_item (Data) field in DocType 'Subcontracting Inward +#. Order Service Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1351 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +msgid "Sales Order Item" +msgstr "" + +#. Label of the sales_order_packed_item (Data) field in DocType 'Purchase Order +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "Sales Order Packed Item" +msgstr "" + +#. Label of the sales_order (Link) field in DocType 'Production Plan Item +#. Reference' +#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json +msgid "Sales Order Reference" +msgstr "" + +#. Label of the sales_order_schedule_section (Section Break) field in DocType +#. 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Sales Order Schedule" +msgstr "" + +#. Label of the sales_order_status (Select) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Sales Order Status" +msgstr "" + +#. Name of a report +#. Label of a chart in the Selling Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/sales_order_trends/sales_order_trends.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Order Trends" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:274 +msgid "Sales Order required for Item {0}" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:298 +msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:256 +msgid "Sales Order {0} is already linked to Project {1}, skipping the link." +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:883 +#: erpnext/selling/doctype/sales_order/mapper.py:896 +msgid "Sales Order {0} is not available for production" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016 +msgid "Sales Order {0} is not submitted" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:558 +msgid "Sales Order {0} is not valid" +msgstr "" + +#. Label of the sales_orders (Table) field in DocType 'Master Production +#. Schedule' +#. Label of the sales_orders_detail (Section Break) field in DocType +#. 'Production Plan' +#. Label of the sales_orders (Table) field in DocType 'Production Plan' +#. Label of a number card in the Selling Workspace +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:42 +#: erpnext/selling/workspace/selling/selling.json +msgid "Sales Orders" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sales_order_planning.py:147 +msgid "Sales Orders Required" +msgstr "" + +#. Label of the sales_orders_to_bill (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Sales Orders to Bill" +msgstr "" + +#. Label of the sales_orders_to_deliver (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Sales Orders to Deliver" +msgstr "" + +#. Label of the sales_partner (Link) field in DocType 'POS Invoice' +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the sales_partner (Link) field in DocType 'Pricing Rule' +#. Option for the 'Select Customers By' (Select) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the sales_partner (Link) field in DocType 'Process Statement Of +#. Accounts' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the sales_partner (Table MultiSelect) field in DocType 'Promotional +#. Scheme' +#. Label of the sales_partner (Link) field in DocType 'Sales Invoice' +#. Label of the default_sales_partner (Link) field in DocType 'Customer' +#. Label of the sales_team_section (Section Break) field in DocType 'Customer' +#. Label of the sales_partner (Link) field in DocType 'Sales Order' +#. Label of the sales_partner (Link) field in DocType 'SMS Center' +#. Label of a Link in the Selling Workspace +#. Name of a DocType +#. Label of the sales_partner (Link) field in DocType 'Delivery Note' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:130 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1254 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:114 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:196 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:74 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sms_center/sms_center.json +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:16 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:166 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:16 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:45 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Partner" +msgstr "" + +#. Label of the sales_partner (Link) field in DocType 'Sales Partner Item' +#: erpnext/accounts/doctype/sales_partner_item/sales_partner_item.json +msgid "Sales Partner " +msgstr "" + +#. Name of a report +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.json +msgid "Sales Partner Commission Summary" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/sales_partner_item/sales_partner_item.json +msgid "Sales Partner Item" +msgstr "" + +#. Label of the partner_name (Data) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Sales Partner Name" +msgstr "" + +#. Label of the partner_target_details_section_break (Section Break) field in +#. DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Sales Partner Target" +msgstr "" + +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Partner Target Variance Based On Item Group" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.json +msgid "Sales Partner Target Variance based on Item Group" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.json +msgid "Sales Partner Transaction Summary" +msgstr "" + +#. Name of a DocType +#. Label of the sales_partner_type (Data) field in DocType 'Sales Partner Type' +#: erpnext/selling/doctype/sales_partner_type/sales_partner_type.json +msgid "Sales Partner Type" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/sales_partners_commission/sales_partners_commission.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Partners Commission" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Sales Payment Summary" +msgstr "" + +#. Option for the 'Select Customers By' (Select) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the sales_person (Link) field in DocType 'Process Statement Of +#. Accounts' +#. Label of a Link in the CRM Workspace +#. Label of the sales_person (Link) field in DocType 'Maintenance Schedule +#. Detail' +#. Label of the sales_person (Link) field in DocType 'Maintenance Schedule +#. Item' +#. Label of the service_person (Link) field in DocType 'Maintenance Visit +#. Purpose' +#. Label of the sales_person (Link) field in DocType 'Sales Team' +#. Label of a Link in the Selling Workspace +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:158 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:136 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1251 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:120 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:193 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:80 +#: erpnext/accounts/report/gross_profit/gross_profit.js:50 +#: erpnext/accounts/report/gross_profit/gross_profit.py:402 +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +#: erpnext/selling/doctype/sales_team/sales_team.json +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:8 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:68 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:8 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:125 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/sales_person/sales_person.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json +msgid "Sales Person" +msgstr "" + +#: erpnext/controllers/selling_controller.py:272 +msgid "Sales Person {0} is disabled." +msgstr "" + +#. Name of a report +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.json +msgid "Sales Person Commission Summary" +msgstr "" + +#. Label of the sales_person_name (Data) field in DocType 'Sales Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Sales Person Name" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Person Target Variance Based On Item Group" +msgstr "" + +#. Label of the target_details_section_break (Section Break) field in DocType +#. 'Sales Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Sales Person Targets" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Person-wise Transaction Summary" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/selling/page/sales_funnel/sales_funnel.js:50 +#: erpnext/workspace_sidebar/crm.json +msgid "Sales Pipeline" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Sales Pipeline Analytics" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:157 +msgid "Sales Pipeline by Stage" +msgstr "" + +#: erpnext/stock/report/item_prices/item_prices.py:58 +msgid "Sales Price List" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/sales_register/sales_register.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Register" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:28 +msgid "Sales Representative" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:994 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:270 +msgid "Sales Return" +msgstr "" + +#. Label of the sales_stage (Link) field in DocType 'Opportunity' +#. Name of a DocType +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/sales_stage/sales_stage.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:56 +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:69 +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Sales Stage" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:8 +msgid "Sales Summary" +msgstr "" + +#. Label of the sales_tax_template (Link) field in DocType 'Tax Rule' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/setup/doctype/company/company.js:149 +#: erpnext/workspace_sidebar/taxes.json +msgid "Sales Tax Template" +msgstr "" + +#. Label of the sales_tax_withholding_category (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Sales Tax Withholding Category" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Sales Taxes" +msgstr "" + +#. Label of the taxes (Table) field in DocType 'POS Invoice' +#. Label of the taxes (Table) field in DocType 'Sales Invoice' +#. Name of a DocType +#. Label of the taxes (Table) field in DocType 'Sales Taxes and Charges +#. Template' +#. Label of the taxes (Table) field in DocType 'Quotation' +#. Label of the taxes (Table) field in DocType 'Sales Order' +#. Label of the taxes (Table) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Sales Taxes and Charges" +msgstr "" + +#. Label of the sales_taxes_and_charges_template (Link) field in DocType +#. 'Payment Entry' +#. Label of the taxes_and_charges (Link) field in DocType 'POS Invoice' +#. Label of the taxes_and_charges (Link) field in DocType 'Sales Invoice' +#. Name of a DocType +#. Label of the sales_tax_template (Link) field in DocType 'Subscription' +#. Label of a Link in the Invoicing Workspace +#. Label of the taxes_and_charges (Link) field in DocType 'Quotation' +#. Label of the taxes_and_charges (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Label of the taxes_and_charges (Link) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Sales Taxes and Charges Template" +msgstr "" + +#. Label of the section_break2 (Section Break) field in DocType 'POS Invoice' +#. Label of the sales_team (Table) field in DocType 'POS Invoice' +#. Label of the sales_team_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the sales_team (Table) field in DocType 'Customer' +#. Label of the sales_team_tab (Tab Break) field in DocType 'Customer' +#. Label of the section_break1 (Section Break) field in DocType 'Sales Order' +#. Label of the sales_team (Table) field in DocType 'Sales Order' +#. Name of a DocType +#. Label of the section_break1 (Section Break) field in DocType 'Delivery Note' +#. Label of the sales_team (Table) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_team/sales_team.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:247 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Sales Team" +msgstr "" + +#: erpnext/selling/report/sales_order_trends/sales_order_trends.py:56 +msgid "Sales Value" +msgstr "" + +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:26 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:42 +msgid "Sales and Returns" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sales_order_planning.py:27 +msgid "Sales orders are not available for production" +msgstr "" + +#. Label of the expected_value_after_useful_life (Currency) field in DocType +#. 'Asset Finance Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Salvage Value" +msgstr "" + +#. Label of the salvage_value_percentage (Percent) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Salvage Value Percentage" +msgstr "" + +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:41 +msgid "Same Company is entered more than once" +msgstr "" + +#. Label of the same_item (Check) field in DocType 'Pricing Rule' +#. Label of the same_item (Check) field in DocType 'Promotional Scheme Product +#. Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Same Item" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:69 +msgid "Same day" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +msgid "Same item and warehouse combination already entered." +msgstr "" + +#: erpnext/buying/utils.py:64 +msgid "Same item cannot be entered multiple times." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:121 +msgid "Same supplier has been entered multiple times" +msgstr "" + +#. Label of the sample_quantity (Int) field in DocType 'Purchase Receipt Item' +#. Label of the sample_quantity (Int) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Sample Quantity" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:269 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:552 +msgid "Sample Retention Stock Entry" +msgstr "" + +#. Label of the sample_retention_warehouse (Link) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Sample Retention Warehouse" +msgstr "" + +#. Label of the sample_size (Float) field in DocType 'Quality Inspection' +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 +#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Sample Size" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:1143 +msgid "Sample quantity {0} cannot be more than received quantity {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js:7 +msgid "Sanctioned" +msgstr "" + +#. Option for the 'Action on New Invoice' (Select) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Save Changes and Load New Invoice" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:47 +msgid "Save the currently opened form" +msgstr "" + +#: erpnext/templates/includes/order/order_taxes.html:34 +#: erpnext/templates/includes/order/order_taxes.html:85 +msgid "Savings" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Sazhen" +msgstr "" + +#. Label of the scan_barcode (Data) field in DocType 'POS Invoice' +#. Label of the scan_barcode (Data) field in DocType 'Purchase Invoice' +#. Label of the scan_barcode (Data) field in DocType 'Sales Invoice' +#. Label of the scan_barcode (Data) field in DocType 'Purchase Order' +#. Label of the scan_barcode (Data) field in DocType 'Quotation' +#. Label of the scan_barcode (Data) field in DocType 'Sales Order' +#. Label of the scan_barcode (Data) field in DocType 'Delivery Note' +#. Label of the scan_barcode (Data) field in DocType 'Material Request' +#. Label of the scan_barcode (Data) field in DocType 'Pick List' +#. Label of the scan_barcode (Data) field in DocType 'Purchase Receipt' +#. Label of the scan_barcode (Data) field in DocType 'Stock Entry' +#. Label of the scan_barcode (Data) field in DocType 'Stock Reconciliation' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/public/js/utils/barcode_scanner.js:236 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Scan Barcode" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:171 +msgid "Scan Batch No" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:127 +#: erpnext/manufacturing/doctype/workstation/workstation.js:154 +msgid "Scan Job Card Qrcode" +msgstr "" + +#. Label of the scan_mode (Check) field in DocType 'Pick List' +#. Label of the scan_mode (Check) field in DocType 'Stock Reconciliation' +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Scan Mode" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:156 +msgid "Scan Serial No" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:200 +msgid "Scan barcode for item {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:111 +msgid "Scan mode enabled, existing quantity will not be fetched." +msgstr "" + +#. Label of the scanned_cheque (Attach) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Scanned Cheque" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:268 +msgid "Scanned Quantity" +msgstr "" + +#. Label of the schedule_date (Date) field in DocType 'Depreciation Schedule' +#. Label of the schedule_date (Datetime) field in DocType 'Production Plan Sub +#. Assembly Item' +#: erpnext/assets/doctype/asset/asset.js:378 +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Schedule Date" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:512 +msgid "Schedule Name" +msgstr "" + +#. Label of the scheduled_date (Date) field in DocType 'Maintenance Schedule +#. Detail' +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:118 +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +msgid "Scheduled Date" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +msgid "Scheduled Date is required." +msgstr "" + +#. Label of the scheduled_time (Datetime) field in DocType 'Appointment' +#. Label of the scheduled_time_section (Section Break) field in DocType 'Job +#. Card' +#. Label of the scheduled_time_tab (Tab Break) field in DocType 'Job Card' +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Scheduled Time" +msgstr "" + +#. Label of the scheduled_time_logs (Table) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Scheduled Time Logs" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:115 +msgid "Scheduled job disabled. Transactions will not be auto classified." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:115 +msgid "Scheduled job enabled. Transactions will be auto classified." +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:191 +msgid "Scheduler is Inactive. Can't trigger job now." +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:240 +msgid "Scheduler is Inactive. Can't trigger jobs now." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:681 +msgid "Scheduler is inactive. Cannot enqueue job." +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.py:39 +msgid "Scheduler is inactive. Cannot merge accounts." +msgstr "" + +#. Label of the schedules (Table) field in DocType 'Maintenance Schedule' +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +msgid "Schedules" +msgstr "" + +#. Label of the scheduling_section (Section Break) field in DocType 'Stock +#. Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Scheduling" +msgstr "" + +#: erpnext/utilities/doctype/rename_tool/rename_tool.js:23 +msgid "Scheduling..." +msgstr "" + +#. Label of the school_univ (Small Text) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "School/University" +msgstr "" + +#. Label of the score (Percent) field in DocType 'Supplier Scorecard Scoring +#. Criteria' +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Score" +msgstr "" + +#. Label of the scorecard_actions (Section Break) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Scorecard Actions" +msgstr "" + +#. Description of the 'Weighting Function' (Small Text) field in DocType +#. 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Scorecard variables can be used, as well as:\n" +"{total_score} (the total score from that period),\n" +"{period_number} (the number of periods to present day)\n" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_dashboard.py:10 +msgid "Scorecards" +msgstr "" + +#. Label of the criteria (Table) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Scoring Criteria" +msgstr "" + +#. Label of the scoring_setup (Section Break) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Scoring Setup" +msgstr "" + +#. Label of the standings (Table) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Scoring Standings" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Scrap" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:163 +msgid "Scrap Asset" +msgstr "" + +#. Label of the scrap_warehouse (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Scrap Warehouse" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:391 +msgid "Scrap date cannot be before purchase date" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:16 +msgid "Scrapped" +msgstr "" + +#. Label of the search_apis_sb (Section Break) field in DocType 'Support +#. Settings' +#. Label of the search_apis (Table) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Search APIs" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:38 +msgid "Search Sub Assemblies" +msgstr "" + +#. Label of the search_term_param_name (Data) field in DocType 'Support Search +#. Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Search Term Param Name" +msgstr "" + +#: banking/src/components/common/AccountsDropdown.tsx:155 +msgid "Search account..." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:323 +msgid "Search by customer name, phone, email." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:60 +msgid "Search by invoice id or customer name" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:229 +msgid "Search by item code, serial number or barcode" +msgstr "" + +#: banking/src/components/features/BankReconciliation/CompanySelector.tsx:64 +msgid "Search company..." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:338 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:200 +msgid "Search transactions" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Second" +msgstr "" + +#. Label of the second_email (Time) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Second Email" +msgstr "" + +#. Label of the item_code (Link) field in DocType 'Job Card Secondary Item' +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +msgid "Secondary Item Code" +msgstr "" + +#. Label of the item_name (Data) field in DocType 'Job Card Secondary Item' +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +msgid "Secondary Item Name" +msgstr "" + +#. Label of the secondary_items (Table) field in DocType 'BOM' +#. Label of the secondary_items (Table) field in DocType 'Job Card' +#. Label of the secondary_items_section (Tab Break) field in DocType 'Job Card' +#. Label of the secondary_items (Table) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Secondary Items" +msgstr "" + +#. Label of the secondary_items (Table) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.js:136 +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Secondary Items (as per BOM)" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:135 +msgid "Secondary Items (as per Manufacture Entries)" +msgstr "" + +#. Label of the secondary_items_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Secondary Items Cost" +msgstr "" + +#. Label of the base_secondary_items_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Secondary Items Cost (Company Currency)" +msgstr "" + +#. Label of the secondary_items_cost_per_qty (Currency) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Secondary Items Cost Per Qty" +msgstr "" + +#. Label of the scrap_items_generated_section (Section Break) field in DocType +#. 'Subcontracting Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Secondary Items Generated" +msgstr "" + +#. Label of the secondary_party (Dynamic Link) field in DocType 'Party Link' +#: erpnext/accounts/doctype/party_link/party_link.json +msgid "Secondary Party" +msgstr "" + +#. Label of the secondary_role (Link) field in DocType 'Party Link' +#: erpnext/accounts/doctype/party_link/party_link.json +msgid "Secondary Role" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:29 +msgid "Secretary" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306 +msgid "Secured Loans" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:42 +msgid "Securities & Commodity Exchanges" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:31 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:44 +msgid "Securities and Deposits" +msgstr "" + +#: erpnext/templates/pages/help.html:29 +msgid "See All Articles" +msgstr "" + +#: erpnext/templates/pages/help.html:56 +msgid "See all open tickets" +msgstr "" + +#: banking/src/components/common/AccountsDropdown.tsx:132 +#: banking/src/components/common/AccountsDropdown.tsx:148 +msgid "Select Account" +msgstr "" + +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:23 +msgid "Select Accounting Dimension." +msgstr "" + +#: erpnext/public/js/utils.js:555 +msgid "Select Alternate Item" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.js:341 +msgid "Select Alternative Items for Sales Order" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1135 +msgid "Select Attribute Values" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1334 +msgid "Select BOM" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1311 +msgid "Select BOM and Qty for Production" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.js:234 +#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/stock/doctype/pick_list/pick_list.js:398 +msgid "Select Batch No" +msgstr "" + +#. Label of the billing_address (Link) field in DocType 'Purchase Invoice' +#. Label of the billing_address (Link) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Select Billing Address" +msgstr "" + +#: erpnext/public/js/stock_analytics.js:61 +msgid "Select Brand..." +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:110 +msgid "Select Columns and Filters" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:284 +msgid "Select Company" +msgstr "" + +#: erpnext/public/js/print.js:118 +msgid "Select Company Address" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:476 +msgid "Select Corrective Operation" +msgstr "" + +#. Label of the customer_collection (Select) field in DocType 'Process +#. Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Select Customers By" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:244 +msgid "Select Date of Birth. This will validate Employees age and prevent hiring of under-age staff." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:251 +msgid "Select Date of joining. It will have impact on the first salary calculation, Leave allocation on pro-rata bases." +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:116 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:147 +msgid "Select Default Supplier" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:276 +msgid "Select Difference Account" +msgstr "" + +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:57 +msgid "Select Dimension" +msgstr "" + +#. Label of the dispatch_address (Link) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Select Dispatch Address " +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +msgid "Select Employees" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:174 +#: erpnext/selling/doctype/sales_order/sales_order.js:862 +msgid "Select Finished Good" +msgstr "" + +#. Label of the select_items (Table MultiSelect) field in DocType 'Master +#. Production Schedule' +#. Label of the selected_items (Table MultiSelect) field in DocType 'Sales +#. Forecast' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1677 +#: erpnext/selling/doctype/sales_order/sales_order.js:1705 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:492 +msgid "Select Items" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1563 +msgid "Select Items based on Delivery Date" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2921 +msgid "Select Items for Quality Inspection" +msgstr "" + +#. Label of the select_items_to_manufacture_section (Section Break) field in +#. DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1363 +msgid "Select Items to Manufacture" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:499 +msgid "Select Items to Receive" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order_list.js:87 +msgid "Select Items up to Delivery Date" +msgstr "" + +#. Label of the supplier_address (Link) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Select Job Worker Address" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1231 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:966 +msgid "Select Loyalty Program" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:498 +msgid "Select Payment Schedule" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:411 +msgid "Select Possible Supplier" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1116 +#: erpnext/stock/doctype/pick_list/pick_list.js:224 +msgid "Select Quantity" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.js:234 +#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/stock/doctype/pick_list/pick_list.js:398 +msgid "Select Serial No" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.js:237 +#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/stock/doctype/pick_list/pick_list.js:401 +msgid "Select Serial and Batch" +msgstr "" + +#. Label of the shipping_address (Link) field in DocType 'Purchase Invoice' +#. Label of the shipping_address (Link) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Select Shipping Address" +msgstr "" + +#. Label of the supplier_address (Link) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Select Supplier Address" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:150 +msgid "Select Target Warehouse" +msgstr "" + +#: erpnext/www/book_appointment/index.js:73 +msgid "Select Time" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:28 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:28 +msgid "Select View" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:251 +msgid "Select Vouchers to Match" +msgstr "" + +#: erpnext/public/js/stock_analytics.js:72 +msgid "Select Warehouse..." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:551 +msgid "Select Warehouses to get Stock for Materials Planning" +msgstr "" + +#: erpnext/public/js/communication.js:80 +msgid "Select a Company" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:239 +msgid "Select a Company this Employee belongs to." +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:221 +msgid "Select a Customer" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:115 +msgid "Select a Default Priority." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:146 +msgid "Select a Payment Method." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.js:253 +msgid "Select a Supplier" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:49 +msgid "Select a bank account to reconcile" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:161 +msgid "Select a company" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:396 +msgid "Select a transaction to match and reconcile with vouchers" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:586 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:679 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1175 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:588 +msgid "Select all" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1477 +msgid "Select an Item Group." +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:36 +msgid "Select an account to print in account currency" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:21 +msgid "Select an invoice to load summary data" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.js:356 +msgid "Select an item from each set to be used in the Sales Order." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1149 +msgid "Select at least one attribute value." +msgstr "" + +#: erpnext/public/js/utils/party.js:379 +msgid "Select company first" +msgstr "" + +#. Description of the 'Parent Sales Person' (Link) field in DocType 'Sales +#. Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Select company name first." +msgstr "" + +#: banking/src/components/ui/form-elements.tsx:159 +msgid "Select date" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1404 +msgid "Select finance book for the item {0} at row {1}" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:239 +msgid "Select item group" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:66 +msgid "Select number of days" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:605 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:699 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1192 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:632 +msgid "Select row {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:476 +msgid "Select template item" +msgstr "" + +#. Description of the 'Bank Account' (Link) field in DocType 'Bank Clearance' +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +msgid "Select the Bank Account to reconcile." +msgstr "" + +#: erpnext/manufacturing/doctype/operation/operation.js:25 +msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1222 +msgid "Select the Item to be manufactured." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:988 +msgid "Select the Item to be manufactured. The Item name, UoM, Company, and Currency will be fetched automatically." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:432 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:445 +msgid "Select the Warehouse" +msgstr "" + +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:47 +msgid "Select the customer or supplier." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:931 +msgid "Select the date" +msgstr "" + +#: erpnext/www/book_appointment/index.html:16 +msgid "Select the date and your timezone" +msgstr "" + +#. Description of the 'Tax Withholding Group' (Link) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Select the group first to filter the applicable withholding categories below." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1007 +msgid "Select the raw materials (Items) required to manufacture the Item" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:531 +msgid "Select variant item code for the template item {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:708 +msgid "Select whether to get items from a Sales Order or a Material Request. For now select Sales Order.\n" +" A Production Plan can also be created manually where you can select the Items to manufacture." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:65 +msgid "Select your weekly off day" +msgstr "" + +#. Description of the 'Primary Address and Contact' (Section Break) field in +#. DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Select, to make the customer searchable with these fields" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79 +msgid "Selected POS Opening Entry should be open." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:158 +msgid "Selected Price List should have buying and selling fields checked." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:123 +msgid "Selected Print Format does not exist." +msgstr "" + +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:166 +msgid "Selected Serial and Batch Bundle entries have been fixed." +msgstr "" + +#. Label of the repost_vouchers (Table) field in DocType 'Repost Payment +#. Ledger' +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +msgid "Selected Vouchers" +msgstr "" + +#: erpnext/www/book_appointment/index.html:43 +msgid "Selected date is" +msgstr "" + +#: erpnext/public/js/bulk_transaction_processing.js:34 +msgid "Selected document must be in submitted state" +msgstr "" + +#. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Self delivery" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:642 +#: erpnext/stock/doctype/batch/batch_dashboard.py:9 +#: erpnext/stock/doctype/item/item_dashboard.py:20 +msgid "Sell" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:171 +#: erpnext/assets/doctype/asset/asset.js:631 +msgid "Sell Asset" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:636 +msgid "Sell Qty" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:652 +msgid "Sell quantity cannot exceed the asset quantity" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:79 +msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:648 +msgid "Sell quantity must be greater than zero" +msgstr "" + +#. Label of the selling (Check) field in DocType 'Pricing Rule' +#. Label of the selling (Check) field in DocType 'Promotional Scheme' +#. Option for the 'Shipping Rule Type' (Select) field in DocType 'Shipping +#. Rule' +#. Group in Subscription's connections +#. Label of a Desktop Icon +#. Option for the 'Order Type' (Select) field in DocType 'Blanket Order' +#. Name of a Workspace +#. Label of a Card Break in the Selling Workspace +#. Group in Incoterm's connections +#. Label of the selling (Check) field in DocType 'Terms and Conditions' +#. Label of the selling (Check) field in DocType 'Item Price' +#. Label of the selling (Check) field in DocType 'Price List' +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/desktop_icon/selling.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/stock/doctype/item/item_prices.html:100 +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/price_list/price_list.json +#: erpnext/workspace_sidebar/selling.json +msgid "Selling" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:361 +msgid "Selling Amount" +msgstr "" + +#. Label of the selling_cost_center (Link) field in DocType 'Item Default' +#. Label of the vf_selling_cost_center (Read Only) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Selling Cost Center" +msgstr "" + +#: erpnext/stock/report/item_price_stock/item_price_stock.py:48 +msgid "Selling Price List" +msgstr "" + +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:36 +#: erpnext/stock/report/item_price_stock/item_price_stock.py:54 +msgid "Selling Rate" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Selling Workspace +#. Label of a shortcut in the ERPNext Settings Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.py:268 +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Selling Settings" +msgstr "" + +#. Title of the Module Onboarding 'Selling Onboarding' +#: erpnext/selling/module_onboarding/selling_onboarding/selling_onboarding.json +msgid "Selling Setup" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:214 +msgid "Selling must be checked, if Applicable For is selected as {0}" +msgstr "" + +#. Label of the semi_finished_good__finished_good_section (Section Break) field +#. in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Semi Finished Good / Finished Good" +msgstr "" + +#. Label of the finished_good (Link) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Semi Finished Goods / Finished Goods" +msgstr "" + +#. Label of the send_after_days (Int) field in DocType 'Campaign Email +#. Schedule' +#: erpnext/crm/doctype/campaign_email_schedule/campaign_email_schedule.json +msgid "Send After (days)" +msgstr "" + +#. Label of the send_attached_files (Check) field in DocType 'Request for +#. Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Send Attached Files" +msgstr "" + +#. Label of the send_document_print (Check) field in DocType 'Request for +#. Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Send Document Print" +msgstr "" + +#. Label of the send_email (Check) field in DocType 'Request for Quotation +#. Supplier' +#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json +msgid "Send Email" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:11 +msgid "Send Emails" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:48 +msgid "Send Emails to Suppliers" +msgstr "" + +#. Label of the send_sms (Button) field in DocType 'SMS Center' +#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Send SMS" +msgstr "" + +#. Label of the send_to (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Send To" +msgstr "" + +#. Label of the primary_mandatory (Check) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Send To Primary Contact" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Send regular summary reports via Email." +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:102 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Send to Subcontractor" +msgstr "" + +#. Label of the send_with_attachment (Check) field in DocType 'Delivery +#. Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Send with Attachment" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Separate columns for withdrawal and deposit" +msgstr "" + +#. Label of the sequence_id (Int) field in DocType 'BOM Operation' +#. Label of the sequence_id (Int) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Sequence ID" +msgstr "" + +#. Option for the 'Call Routing' (Select) field in DocType 'Incoming Call +#. Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +msgid "Sequential" +msgstr "" + +#. Label of the serial_and_batch_item_settings_tab (Tab Break) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Serial & Batch Item" +msgstr "" + +#. Label of the section_break_jcmx (Section Break) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Serial / Batch" +msgstr "" + +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Stock +#. Reconciliation Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Subcontracting +#. Receipt Supplied Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Serial / Batch Bundle" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:491 +msgid "Serial / Batch Bundle Missing" +msgstr "" + +#. Label of the serial_no_and_batch_no_tab (Section Break) field in DocType +#. 'Serial and Batch Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Serial / Batch No" +msgstr "" + +#: erpnext/public/js/utils.js:217 +msgid "Serial / Batch Nos" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Serial Item settings" +msgstr "" + +#. Label of the serial_no (Text) field in DocType 'POS Invoice Item' +#. Label of the serial_no (Text) field in DocType 'Purchase Invoice Item' +#. Label of the serial_no (Text) field in DocType 'Sales Invoice Item' +#. Label of the serial_no (Text) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the serial_no (Small Text) field in DocType 'Asset Repair Consumed +#. Item' +#. Label of the serial_no (Text) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the serial_no (Small Text) field in DocType 'Maintenance Schedule +#. Detail' +#. Label of the serial_no (Small Text) field in DocType 'Maintenance Schedule +#. Item' +#. Label of the serial_no (Link) field in DocType 'Maintenance Visit Purpose' +#. Label of the serial_no (Small Text) field in DocType 'Job Card' +#. Label of the serial_no (Small Text) field in DocType 'Installation Note +#. Item' +#. Label of the serial_no (Text) field in DocType 'Delivery Note Item' +#. Label of the serial_no (Text) field in DocType 'Packed Item' +#. Label of the serial_no (Small Text) field in DocType 'Pick List Item' +#. Label of the serial_no (Text) field in DocType 'Purchase Receipt Item' +#. Label of the serial_no (Link) field in DocType 'Serial and Batch Entry' +#. Name of a DocType +#. Label of the serial_no (Data) field in DocType 'Serial No' +#. Label of the serial_no (Text) field in DocType 'Stock Entry Detail' +#. Label of the serial_no (Long Text) field in DocType 'Stock Ledger Entry' +#. Label of the serial_no (Long Text) field in DocType 'Stock Reconciliation +#. Item' +#. Label of a Link in the Stock Workspace +#. Label of the serial_no (Small Text) field in DocType 'Subcontracting Receipt +#. Item' +#. Label of the serial_no (Text) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#. Label of the serial_no (Link) field in DocType 'Warranty Claim' +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 +#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/public/js/utils/serial_no_batch_selector.js:433 +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:189 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:65 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:151 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:37 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:426 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial No" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:140 +msgid "Serial No (In/Out)" +msgstr "" + +#. Label of the serial_no_batch (Section Break) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Serial No / Batch" +msgstr "" + +#: erpnext/controllers/selling_controller.py:108 +msgid "Serial No Already Assigned" +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 +msgid "Serial No Count" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial No Ledger" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:271 +msgid "Serial No Range" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +msgid "Serial No Reserved" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:494 +msgid "Serial No Series Overlap" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#: erpnext/stock/report/serial_no_service_contract_expiry/serial_no_service_contract_expiry.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Serial No Service Contract Expiry" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/serial_no_status/serial_no_status.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial No Status" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/serial_no_warranty_expiry/serial_no_warranty_expiry.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial No Warranty Expiry" +msgstr "" + +#. Label of the serial_no_and_batch_section (Section Break) field in DocType +#. 'Pick List Item' +#. Label of the serial_no_and_batch_section (Section Break) field in DocType +#. 'Stock Reconciliation Item' +#. Label of a Card Break in the Stock Workspace +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Serial No and Batch" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:93 +msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial No and Batch Traceability" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +msgid "Serial No is mandatory" +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.py:77 +msgid "Serial No is mandatory for Item {0}" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:604 +msgid "Serial No {0} already exists" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:342 +msgid "Serial No {0} already scanned" +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.py:94 +msgid "Serial No {0} does not belong to Delivery Note {1}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +msgid "Serial No {0} does not belong to Item {1}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 +#: erpnext/selling/doctype/installation_note/installation_note.py:84 +msgid "Serial No {0} does not exist" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 +msgid "Serial No {0} does not exists" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 +msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:435 +msgid "Serial No {0} is already added" +msgstr "" + +#: erpnext/controllers/selling_controller.py:105 +msgid "Serial No {0} is already assigned to customer {1}. Can only be returned against the customer {1}" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:483 +msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 +msgid "Serial No {0} is under maintenance contract upto {1}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 +msgid "Serial No {0} is under warranty upto {1}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +msgid "Serial No {0} not found" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +msgid "Serial No: {0} has already been transacted into another POS Invoice." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:292 +#: erpnext/public/js/utils/serial_no_batch_selector.js:16 +#: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 +msgid "Serial Nos" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:20 +#: erpnext/public/js/utils/serial_no_batch_selector.js:205 +msgid "Serial Nos / Batch Nos" +msgstr "" + +#. Label of the serial_nos_and_batches (Section Break) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Serial Nos / Batches" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1958 +msgid "Serial Nos are created successfully" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2317 +msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:384 +msgid "Serial Nos {0} are already Delivered. You cannot use them again in Manufacture / Repack entry." +msgstr "" + +#. Label of the serial_no_series (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Serial Number Series" +msgstr "" + +#. Label of the item_details_tab (Tab Break) field in DocType 'Serial and Batch +#. Bundle' +#. Option for the 'Reservation Based On' (Select) field in DocType 'Stock +#. Reservation Entry' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Serial and Batch" +msgstr "" + +#. Label of the serial_and_batch_bundle (Link) field in DocType 'POS Invoice +#. Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Purchase +#. Invoice Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Sales Invoice +#. Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Asset +#. Capitalization Stock Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Asset Repair +#. Consumed Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Maintenance +#. Schedule Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Job Card' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Installation +#. Note Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Delivery Note +#. Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Packed Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Pick List +#. Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Purchase +#. Receipt Item' +#. Name of a DocType +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Stock Entry +#. Detail' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Stock Ledger +#. Entry' +#. Label of the auto_bundle_section (Section Break) field in DocType 'Stock +#. Settings' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Subcontracting +#. Receipt Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:156 +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/report/available_serial_no/available_serial_no.py:188 +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:410 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177 +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial and Batch Bundle" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2194 +msgid "Serial and Batch Bundle created" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2288 +msgid "Serial and Batch Bundle updated" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:99 +msgid "Serial and Batch Bundle {0} is already used in {1} {2}." +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:394 +msgid "Serial and Batch Bundle {0} is not submitted" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2264 +msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." +msgstr "" + +#. Label of the section_break_45 (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Serial and Batch Details" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +msgid "Serial and Batch Entry" +msgstr "" + +#. Label of the section_break_40 (Section Break) field in DocType 'Delivery +#. Note Item' +#. Label of the section_break_45 (Section Break) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Serial and Batch No" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:152 +msgid "Serial and Batch No for Item Disabled" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:53 +msgid "Serial and Batch Nos" +msgstr "" + +#. Description of the 'Auto reserve Serial and Batch Nos' (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Serial and Batch Nos will be auto-reserved based on Pick Serial / Batch Based On" +msgstr "" + +#. Label of the serial_and_batch_reservation_section (Tab Break) field in +#. DocType 'Stock Reservation Entry' +#. Label of the serial_and_batch_reservation_section (Section Break) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Serial and Batch Reservation" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.json +msgid "Serial and Batch Summary" +msgstr "" + +#: erpnext/stock/utils.py:397 +msgid "Serial number {0} entered more than once" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_details.js:453 +msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." +msgstr "" + +#. Label of the naming_series (Select) field in DocType 'Bank Transaction' +#. Label of the naming_series (Select) field in DocType 'Budget' +#. Label of the naming_series (Select) field in DocType 'Cashier Closing' +#. Label of the naming_series (Select) field in DocType 'Dunning' +#. Label of the naming_series (Select) field in DocType 'Journal Entry' +#. Label of the naming_series (Select) field in DocType 'Journal Entry +#. Template' +#. Label of the naming_series (Select) field in DocType 'Payment Entry' +#. Label of the naming_series (Select) field in DocType 'Payment Order' +#. Label of the naming_series (Select) field in DocType 'Payment Request' +#. Label of the naming_series (Select) field in DocType 'POS Invoice' +#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' +#. Label of the naming_series (Select) field in DocType 'Sales Invoice' +#. Label of the naming_series (Select) field in DocType 'Asset' +#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' +#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' +#. Label of the naming_series (Select) field in DocType 'Asset Repair' +#. Label of the naming_series (Select) field in DocType 'Purchase Order' +#. Label of the naming_series (Select) field in DocType 'Request for Quotation' +#. Label of the naming_series (Select) field in DocType 'Supplier' +#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' +#. Label of the naming_series (Select) field in DocType 'Lead' +#. Label of the naming_series (Select) field in DocType 'Opportunity' +#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' +#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' +#. Label of the naming_series (Select) field in DocType 'Blanket Order' +#. Label of the naming_series (Select) field in DocType 'Work Order' +#. Label of the naming_series (Select) field in DocType 'Project' +#. Label of the naming_series (Data) field in DocType 'Project Update' +#. Label of the naming_series (Select) field in DocType 'Timesheet' +#. Label of the naming_series (Select) field in DocType 'Customer' +#. Label of the naming_series (Select) field in DocType 'Installation Note' +#. Label of the naming_series (Select) field in DocType 'Quotation' +#. Label of the naming_series (Select) field in DocType 'Sales Order' +#. Label of the naming_series (Select) field in DocType 'Driver' +#. Label of the naming_series (Select) field in DocType 'Employee' +#. Label of the naming_series (Select) field in DocType 'Delivery Note' +#. Label of the naming_series (Select) field in DocType 'Delivery Trip' +#. Label of the naming_series (Select) field in DocType 'Item' +#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' +#. Label of the naming_series (Select) field in DocType 'Material Request' +#. Label of the naming_series (Select) field in DocType 'Packing Slip' +#. Label of the naming_series (Select) field in DocType 'Pick List' +#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' +#. Label of the naming_series (Select) field in DocType 'Quality Inspection' +#. Label of the naming_series (Select) field in DocType 'Stock Entry' +#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' +#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward +#. Order' +#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' +#. Label of the naming_series (Select) field in DocType 'Subcontracting +#. Receipt' +#. Label of the naming_series (Select) field in DocType 'Issue' +#. Label of the naming_series (Select) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project_update/project_update.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/public/js/utils/naming_series.js:34 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Series" +msgstr "" + +#. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Series for Asset Depreciation Entry (Journal Entry)" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.py:142 +msgid "Series is mandatory" +msgstr "" + +#. Label of the service_address (Small Text) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Service Address" +msgstr "" + +#. Label of the service_cost_per_qty (Currency) field in DocType +#. 'Subcontracting Order Item' +#. Label of the service_cost_per_qty (Currency) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Service Cost Per Qty" +msgstr "" + +#. Name of a DocType +#: erpnext/support/doctype/service_day/service_day.json +msgid "Service Day" +msgstr "" + +#. Label of the service_end_date (Date) field in DocType 'POS Invoice Item' +#. Label of the end_date (Date) field in DocType 'Process Deferred Accounting' +#. Label of the service_end_date (Date) field in DocType 'Purchase Invoice +#. Item' +#. Label of the service_end_date (Date) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:410 +msgid "Service End Date" +msgstr "" + +#. Label of the service_expense_account (Link) field in DocType 'Company' +#. Label of the service_expense_account (Link) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/setup/doctype/company/company.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Service Expense Account" +msgstr "" + +#. Label of the service_items_total (Currency) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Service Expense Total Amount" +msgstr "" + +#. Label of the service_expenses_section (Section Break) field in DocType +#. 'Asset Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Service Expenses" +msgstr "" + +#. Label of the service_item (Link) field in DocType 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Service Item" +msgstr "" + +#. Label of the service_item_qty (Float) field in DocType 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Service Item Qty" +msgstr "" + +#. Description of the 'Conversion Factor' (Float) field in DocType +#. 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Service Item Qty / Finished Good Qty" +msgstr "" + +#. Label of the service_item_uom (Link) field in DocType 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Service Item UOM" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:64 +msgid "Service Item {0} is disabled." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +msgid "Service Item {0} must be a non-stock item." +msgstr "" + +#. Label of the service_items_section (Section Break) field in DocType +#. 'Subcontracting Inward Order' +#. Label of the service_items (Table) field in DocType 'Subcontracting Inward +#. Order' +#. Label of the service_items_section (Section Break) field in DocType +#. 'Subcontracting Order' +#. Label of the service_items (Table) field in DocType 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Service Items" +msgstr "" + +#. Label of the service_level_agreement (Link) field in DocType 'Issue' +#. Name of a DocType +#. Label of a Card Break in the Support Workspace +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "Service Level Agreement" +msgstr "" + +#. Label of the service_level_agreement_creation (Datetime) field in DocType +#. 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Service Level Agreement Creation" +msgstr "" + +#. Label of the service_level_section (Section Break) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Service Level Agreement Details" +msgstr "" + +#. Label of the agreement_status (Select) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Service Level Agreement Status" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:176 +msgid "Service Level Agreement for {0} {1} already exists." +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:771 +msgid "Service Level Agreement has been changed to {0}." +msgstr "" + +#: erpnext/support/doctype/issue/issue.js:79 +msgid "Service Level Agreement was reset." +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Service Level Agreements" +msgstr "" + +#. Label of the service_level (Data) field in DocType 'Service Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Service Level Name" +msgstr "" + +#. Name of a DocType +#: erpnext/support/doctype/service_level_priority/service_level_priority.json +msgid "Service Level Priority" +msgstr "" + +#. Label of the service_provider (Select) field in DocType 'Currency Exchange +#. Settings' +#. Label of the service_provider (Data) field in DocType 'Shipment' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Service Provider" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Service Received But Not Billed" +msgstr "" + +#. Label of the service_start_date (Date) field in DocType 'POS Invoice Item' +#. Label of the start_date (Date) field in DocType 'Process Deferred +#. Accounting' +#. Label of the service_start_date (Date) field in DocType 'Purchase Invoice +#. Item' +#. Label of the service_start_date (Date) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:402 +msgid "Service Start Date" +msgstr "" + +#. Label of the service_stop_date (Date) field in DocType 'POS Invoice Item' +#. Label of the service_stop_date (Date) field in DocType 'Purchase Invoice +#. Item' +#. Label of the service_stop_date (Date) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Service Stop Date" +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:45 +#: erpnext/public/js/controllers/transaction.js:1807 +msgid "Service Stop Date cannot be after Service End Date" +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:42 +#: erpnext/public/js/controllers/transaction.js:1804 +msgid "Service Stop Date cannot be before Service Start Date" +msgstr "" + +#. Label of the service_items (Table) field in DocType 'Asset Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:52 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:204 +msgid "Services" +msgstr "" + +#. Label of the set_warehouse (Link) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Set Accepted Warehouse" +msgstr "" + +#. Label of the allocate_advances_automatically (Check) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Set Advances and Allocate (FIFO)" +msgstr "" + +#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Set Basic Rate Manually" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:180 +msgid "Set Default Supplier" +msgstr "" + +#. Label of the set_delivery_warehouse (Link) field in DocType 'Subcontracting +#. Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Set Delivery Warehouse" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +msgid "Set Dropship Items Delivered Quantity" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:362 +#: erpnext/manufacturing/doctype/job_card/job_card.js:424 +msgid "Set Finished Good Quantity" +msgstr "" + +#. Label of the set_from_warehouse (Link) field in DocType 'Purchase Invoice' +#. Label of the set_from_warehouse (Link) field in DocType 'Purchase Order' +#. Label of the set_from_warehouse (Link) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Set From Warehouse" +msgstr "" + +#. Label of the set_grand_total_to_default_mop (Check) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Set Grand Total to Default Payment Method" +msgstr "" + +#. Description of the 'Territory Targets' (Section Break) field in DocType +#. 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution." +msgstr "" + +#. Label of the set_landed_cost_based_on_purchase_invoice_rate (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Set Landed Cost Based on Purchase Invoice Rate" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1243 +msgid "Set Loyalty Program" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:315 +msgid "Set New Release Date" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:203 +msgid "Set Opening Stock" +msgstr "" + +#. Label of the set_op_cost_and_secondary_items_from_sub_assemblies (Check) +#. field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Set Operating Cost / Secondary Items From Sub-assemblies" +msgstr "" + +#. Label of the set_cost_based_on_bom_qty (Check) field in DocType 'BOM +#. Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Set Operating Cost Based On BOM Quantity" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:124 +msgid "Set Parent Row No in Items Table" +msgstr "" + +#. Label of the set_posting_date (Check) field in DocType 'POS Opening Entry' +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +msgid "Set Posting Date" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1034 +msgid "Set Process Loss Item Quantity" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:149 +#: erpnext/projects/doctype/project/project.js:157 +#: erpnext/projects/doctype/project/project.js:171 +msgid "Set Project Status" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:194 +msgid "Set Project and all Tasks to status {0}?" +msgstr "" + +#. Label of the set_reserve_warehouse (Link) field in DocType 'Purchase Order' +#. Label of the set_reserve_warehouse (Link) field in DocType 'Subcontracting +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Set Reserve Warehouse" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:82 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:90 +msgid "Set Response Time for Priority {0} in row {1}." +msgstr "" + +#. Label of the set_serial_and_batch_bundle_naming_based_on_naming_series +#. (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Set Serial and Batch Bundle Naming Based on Naming Series" +msgstr "" + +#. Label of the set_warehouse (Link) field in DocType 'Sales Order' +#. Label of the set_warehouse (Link) field in DocType 'Delivery Note' +#. Label of the set_from_warehouse (Link) field in DocType 'Material Request' +#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Set Source Warehouse" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1683 +msgid "Set Supplier" +msgstr "" + +#. Label of the set_target_warehouse (Link) field in DocType 'Sales Invoice' +#. Label of the set_warehouse (Link) field in DocType 'Purchase Order' +#. Label of the set_target_warehouse (Link) field in DocType 'Delivery Note' +#. Label of the set_warehouse (Link) field in DocType 'Material Request' +#. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Set Target Warehouse" +msgstr "" + +#. Label of the set_rate_based_on_warehouse (Check) field in DocType 'BOM +#. Creator' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Set Valuation Rate Based on Source Warehouse" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:254 +msgid "Set Warehouse" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity_list.js:17 +#: erpnext/support/doctype/issue/issue_list.js:12 +msgid "Set as Closed" +msgstr "" + +#: erpnext/projects/doctype/task/task_list.js:20 +msgid "Set as Completed" +msgstr "" + +#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/selling/doctype/quotation/quotation.js:146 +msgid "Set as Lost" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity_list.js:13 +#: erpnext/projects/doctype/task/task_list.js:16 +#: erpnext/support/doctype/issue/issue_list.js:8 +msgid "Set as Open" +msgstr "" + +#. Label of the set_by_item_tax_template (Check) field in DocType 'Advance +#. Taxes and Charges' +#. Label of the set_by_item_tax_template (Check) field in DocType 'Purchase +#. Taxes and Charges' +#. Label of the set_by_item_tax_template (Check) field in DocType 'Sales Taxes +#. and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Set by Item Tax Template" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:248 +msgid "Set closing balance as per bank statement" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:554 +msgid "Set default inventory account for perpetual inventory" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:580 +msgid "Set default {0} account for non stock items" +msgstr "" + +#. Description of the 'Fetch Value From' (Select) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Set fieldname from which you want to fetch the data from the parent form." +msgstr "" + +#. Label of the set_zero_rate_for_expired_batch (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Set incoming rate as zero for expired Batch" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1024 +msgid "Set quantity of process loss item:" +msgstr "" + +#. Label of the set_rate_of_sub_assembly_item_based_on_bom (Check) field in +#. DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Set rate of sub-assembly item based on BOM" +msgstr "" + +#. Description of the 'Sales Person Targets' (Section Break) field in DocType +#. 'Sales Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Set targets Item Group-wise for this Sales Person." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1279 +msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:261 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:306 +msgid "Set the clearance date for this voucher without reconciling with a bank transaction." +msgstr "" + +#. Description of the 'Manual Inspection' (Check) field in DocType 'Quality +#. Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Set the status manually." +msgstr "" + +#: erpnext/regional/italy/setup.py:231 +msgid "Set this if the customer is a Public Administration company." +msgstr "" + +#. Description of the 'Close Issue After Days' (Int) field in DocType 'Support +#. Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Set this value to 0 to disable the feature." +msgstr "" + +#: banking/src/components/features/Settings/MatchingRules.tsx:37 +msgid "Set up rules to automatically classify transactions. Drag and drop rules to reorder their priority." +msgstr "" + +#. Label of the set_valuation_rate_for_rejected_materials (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Set valuation rate for rejected Materials" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:908 +msgid "Set {0} in asset category {1} for company {2}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:1152 +msgid "Set {0} in asset category {1} or company {2}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:1149 +msgid "Set {0} in company {1}" +msgstr "" + +#. Description of the 'Accepted Warehouse' (Link) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Sets 'Accepted Warehouse' in each row of the Items table." +msgstr "" + +#. Description of the 'Rejected Warehouse' (Link) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Sets 'Rejected Warehouse' in each row of the Items table." +msgstr "" + +#. Description of the 'Set Reserve Warehouse' (Link) field in DocType +#. 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Sets 'Reserve Warehouse' in each row of the Supplied Items table." +msgstr "" + +#. Description of the 'Default Source Warehouse' (Link) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Sets 'Source Warehouse' in each row of the items table." +msgstr "" + +#. Description of the 'Default Target Warehouse' (Link) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Sets 'Target Warehouse' in each row of the items table." +msgstr "" + +#. Description of the 'Set Target Warehouse' (Link) field in DocType +#. 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Sets 'Warehouse' in each row of the Items table." +msgstr "" + +#. Description of the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Setting Account Type helps in selecting this Account in transactions." +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:129 +msgid "Setting Events to {0}, since the Employee attached to the below Sales Persons does not have a User ID{1}" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.js:98 +msgid "Setting Item Locations..." +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:25 +msgid "Setting defaults" +msgstr "" + +#. Description of the 'Is Company Account' (Check) field in DocType 'Bank +#. Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Setting the account as a Company Account is necessary for Bank Reconciliation" +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:20 +msgid "Setting up company" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:910 +#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +msgid "Setting {0} is required" +msgstr "" + +#. Description of a DocType +#: erpnext/crm/doctype/crm_settings/crm_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Settings for Selling Module" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Bank Transaction' +#. Option for the 'Status' (Select) field in DocType 'Invoice Discounting' +#. Option for the 'Status' (Select) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js:11 +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Settled" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33 +msgid "Settled with Credit Note" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Setup Company' +#: erpnext/setup/onboarding_step/setup_company/setup_company.json +msgid "Setup Company" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Setup Email Account' +#: erpnext/setup/onboarding_step/setup_email_account/setup_email_account.json +msgid "Setup Email Account" +msgstr "" + +#. Title of the Module Onboarding 'Organization Onboarding' +#: erpnext/setup/module_onboarding/organization_onboarding/organization_onboarding.json +msgid "Setup Organization" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Setup Role Permissions' +#: erpnext/setup/onboarding_step/setup_role_permissions/setup_role_permissions.json +msgid "Setup Role Permissions" +msgstr "" + +#. Label of an action in the Onboarding Step 'Setup Sales taxes' +#: erpnext/accounts/onboarding_step/setup_sales_taxes/setup_sales_taxes.json +msgid "Setup Sales Taxes" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/accounts/onboarding_step/setup_sales_taxes/setup_sales_taxes.json +msgid "Setup Sales taxes" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/stock/onboarding_step/setup_warehouse/setup_warehouse.json +msgid "Setup Warehouse" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:25 +msgid "Setup your organization" +msgstr "" + +#. Name of a DocType +#. Label of the section_break_3 (Section Break) field in DocType 'Shareholder' +#. Label of the share_balance (Table) field in DocType 'Shareholder' +#. Name of a report +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/shareholder/shareholder.js:21 +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/accounts/report/share_balance/share_balance.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/share_management.json +msgid "Share Balance" +msgstr "" + +#. Name of a report +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/shareholder/shareholder.js:27 +#: erpnext/accounts/report/share_ledger/share_ledger.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/share_management.json +msgid "Share Ledger" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/desktop_icon/share_management.json +#: erpnext/workspace_sidebar/share_management.json +msgid "Share Management" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/report/share_ledger/share_ledger.py:59 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/share_management.json +msgid "Share Transfer" +msgstr "" + +#. Label of the share_type (Link) field in DocType 'Share Balance' +#. Label of the share_type (Link) field in DocType 'Share Transfer' +#. Name of a DocType +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/doctype/share_type/share_type.json +#: erpnext/accounts/report/share_balance/share_balance.py:58 +#: erpnext/accounts/report/share_ledger/share_ledger.py:54 +msgid "Share Type" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/accounts/report/share_balance/share_balance.js:16 +#: erpnext/accounts/report/share_balance/share_balance.py:57 +#: erpnext/accounts/report/share_ledger/share_ledger.js:16 +#: erpnext/accounts/report/share_ledger/share_ledger.py:51 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/share_management.json +msgid "Shareholder" +msgstr "" + +#. Label of the shelf_life_in_days (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Shelf Life In Days" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:215 +msgid "Shelf Life in Days" +msgstr "" + +#. Label of the shift (Link) field in DocType 'Depreciation Schedule' +#: erpnext/assets/doctype/asset/asset.js:391 +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +msgid "Shift" +msgstr "" + +#. Label of the shift_factor (Float) field in DocType 'Asset Shift Factor' +#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.json +msgid "Shift Factor" +msgstr "" + +#. Label of the shift_name (Data) field in DocType 'Asset Shift Factor' +#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.json +msgid "Shift Name" +msgstr "" + +#. Label of the shift_time_in_hours (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Shift Time (In Hours)" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/delivery_note/delivery_note.js:246 +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment" +msgstr "" + +#. Label of the shipment_amount (Currency) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment Amount" +msgstr "" + +#. Label of the shipment_delivery_note (Table) field in DocType 'Shipment' +#. Name of a DocType +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.json +msgid "Shipment Delivery Note" +msgstr "" + +#. Label of the shipment_id (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment ID" +msgstr "" + +#. Label of the shipment_information_section (Section Break) field in DocType +#. 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment Information" +msgstr "" + +#. Label of the shipment_parcel (Table) field in DocType 'Shipment' +#. Name of a DocType +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json +msgid "Shipment Parcel" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Shipment Parcel Template" +msgstr "" + +#. Label of the shipment_type (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment Type" +msgstr "" + +#. Label of the shipment_details_section (Section Break) field in DocType +#. 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment details" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:641 +msgid "Shipments" +msgstr "" + +#. Label of the account (Link) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Shipping Account" +msgstr "" + +#. Label of the shipping_address_display (Text Editor) field in DocType +#. 'Purchase Order' +#. Label of the shipping_address_display (Text Editor) field in DocType +#. 'Request for Quotation' +#. Label of the shipping_address_display (Text Editor) field in DocType +#. 'Supplier Quotation' +#. Label of the shipping_address_display (Text Editor) field in DocType +#. 'Subcontracting Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Shipping Address Details" +msgstr "" + +#. Label of the shipping_address_name (Link) field in DocType 'POS Invoice' +#. Label of the shipping_address_name (Link) field in DocType 'Sales Invoice' +#. Label of the shipping_address_name (Link) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Shipping Address Name" +msgstr "" + +#. Label of the shipping_address (Link) field in DocType 'Purchase Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Shipping Address Template" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:208 +msgid "Shipping Address does not belong to the {0}" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:134 +msgid "Shipping Address does not have country, which is required for this Shipping Rule" +msgstr "" + +#. Label of the shipping_amount (Currency) field in DocType 'Shipping Rule' +#. Label of the shipping_amount (Currency) field in DocType 'Shipping Rule +#. Condition' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json +msgid "Shipping Amount" +msgstr "" + +#. Label of the shipping_city (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Shipping City" +msgstr "" + +#. Label of the shipping_country (Link) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Shipping Country" +msgstr "" + +#. Label of the shipping_county (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Shipping County" +msgstr "" + +#. Label of the shipping_rule (Link) field in DocType 'POS Invoice' +#. Label of the shipping_rule (Link) field in DocType 'Purchase Invoice' +#. Label of the shipping_rule (Link) field in DocType 'Sales Invoice' +#. Name of a DocType +#. Label of the shipping_rule (Link) field in DocType 'Purchase Order' +#. Label of the shipping_rule (Link) field in DocType 'Supplier Quotation' +#. Label of the shipping_rule (Link) field in DocType 'Quotation' +#. Label of the shipping_rule (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Label of the shipping_rule (Link) field in DocType 'Delivery Note' +#. Label of the shipping_rule (Link) field in DocType 'Purchase Receipt' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json +msgid "Shipping Rule" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json +msgid "Shipping Rule Condition" +msgstr "" + +#. Label of the rule_conditions_section (Section Break) field in DocType +#. 'Shipping Rule' +#. Label of the conditions (Table) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Shipping Rule Conditions" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/shipping_rule_country/shipping_rule_country.json +msgid "Shipping Rule Country" +msgstr "" + +#. Label of the label (Data) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Shipping Rule Label" +msgstr "" + +#. Label of the shipping_rule_type (Select) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Shipping Rule Type" +msgstr "" + +#. Label of the shipping_state (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Shipping State" +msgstr "" + +#. Label of the shipping_zipcode (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Shipping Zipcode" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:138 +msgid "Shipping rule not applicable for country {0} in Shipping Address" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:157 +msgid "Shipping rule only applicable for Buying" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:152 +msgid "Shipping rule only applicable for Selling" +msgstr "" + +#. Option for the 'Order Type' (Select) field in DocType 'Quotation' +#. Label of the shopping_cart_section (Section Break) field in DocType +#. 'Quotation Item' +#. Option for the 'Order Type' (Select) field in DocType 'Sales Order' +#. Label of the shopping_cart_section (Section Break) field in DocType 'Sales +#. Order Item' +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Shopping Cart" +msgstr "" + +#. Label of the short_name (Data) field in DocType 'Manufacturer' +#: erpnext/stock/doctype/manufacturer/manufacturer.json +msgid "Short Name" +msgstr "" + +#. Label of the short_term_loan (Link) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Short Term Loan Account" +msgstr "" + +#. Description of the 'Bio / Cover Letter' (Text Editor) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Short biography for website and other publications." +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:35 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:55 +msgid "Short-term Investments" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301 +msgid "Short-term Provisions" +msgstr "" + +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:227 +msgid "Shortage Qty" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:85 +msgid "Shortcut" +msgstr "" + +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:70 +#: erpnext/selling/report/sales_analytics/sales_analytics.js:103 +msgid "Show Aggregate Value from Subsidiary Companies" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:115 +msgid "Show Alternate UOM Balance" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:199 +msgid "Show Cancelled Entries" +msgstr "" + +#: erpnext/templates/pages/projects.js:61 +msgid "Show Completed" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:209 +msgid "Show Credit / Debit in Company Currency" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:109 +msgid "Show Cumulative Amount" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:143 +msgid "Show Dimension Wise Stock" +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:29 +msgid "Show Disabled Items" +msgstr "" + +#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.js:16 +msgid "Show Disabled Warehouses" +msgstr "" + +#. Label of the show_failed_logs (Check) field in DocType 'Bank Statement +#. Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Show Failed Logs" +msgstr "" + +#. Label of the show_future_payments (Check) field in DocType 'Process +#. Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:141 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:158 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:131 +msgid "Show Future Payments" +msgstr "" + +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:118 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:136 +msgid "Show GL Balance" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:97 +#: erpnext/accounts/report/trial_balance/trial_balance.js:117 +msgid "Show Group Accounts" +msgstr "" + +#. Label of the show_in_website (Check) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Show In Website" +msgstr "" + +#: erpnext/stock/report/available_batch_report/available_batch_report.js:86 +msgid "Show Item Name" +msgstr "" + +#. Label of the show_items (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Show Items" +msgstr "" + +#. Label of the show_latest_forum_posts (Check) field in DocType 'Support +#. Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Show Latest Forum Posts" +msgstr "" + +#: erpnext/accounts/report/purchase_register/purchase_register.js:64 +#: erpnext/accounts/report/sales_register/sales_register.js:76 +msgid "Show Ledger View" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:163 +msgid "Show Linked Delivery Notes" +msgstr "" + +#. Label of the show_net_values_in_party_account (Check) field in DocType +#. 'Process Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:204 +msgid "Show Net Values in Party Account" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:32 +msgid "Show Only Exact Amount" +msgstr "" + +#: erpnext/templates/pages/projects.js:63 +msgid "Show Open" +msgstr "" + +#. Label of the show_opening_entries (Check) field in DocType 'Process +#. Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:187 +msgid "Show Opening Entries" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.js:43 +msgid "Show Opening and Closing Balance" +msgstr "" + +#. Label of the show_operations (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Show Operations" +msgstr "" + +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:40 +msgid "Show Payment Details" +msgstr "" + +#. Label of the show_payment_schedule_in_print (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Show Payment Schedule in print" +msgstr "" + +#. Label of the show_remarks (Check) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:136 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:173 +#: erpnext/accounts/report/general_ledger/general_ledger.js:219 +msgid "Show Remarks" +msgstr "" + +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:65 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:65 +msgid "Show Return Entries" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:168 +msgid "Show Sales Person" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:126 +msgid "Show Stock Ageing Data" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:121 +msgid "Show Variant Attributes" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:227 +msgid "Show Variants" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.js:64 +msgid "Show Warehouse-wise Stock" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:26 +msgid "Show availability of exploded items" +msgstr "" + +#. Label of the show_balance_in_coa (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Show balances in Chart of Accounts" +msgstr "" + +#. Label of the show_barcode_field (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Show barcode field in stock transactions" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:88 +msgid "Show in Bucket View" +msgstr "" + +#. Label of the show_in_website (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Show in Website" +msgstr "" + +#. Label of the show_inclusive_tax_in_print (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Show inclusive tax in print" +msgstr "" + +#. Description of the 'Reverse Sign' (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Show negative values as positive (for expenses in P&L)" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:91 +#: erpnext/accounts/report/trial_balance/trial_balance.js:111 +msgid "Show net values in opening and closing columns" +msgstr "" + +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:35 +msgid "Show only POS" +msgstr "" + +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:107 +msgid "Show only the Immediate Upcoming Term" +msgstr "" + +#. Label of the show_pay_button (Check) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Show pay button in Purchase Order portal" +msgstr "" + +#: erpnext/stock/utils.py:565 +msgid "Show pending entries" +msgstr "" + +#. Label of the show_taxes_as_table_in_print (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Show taxes as table in print" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:80 +#: erpnext/accounts/report/trial_balance/trial_balance.js:100 +msgid "Show unclosed fiscal year's P&L balances" +msgstr "" + +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:96 +msgid "Show with upcoming revenue/expense" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:51 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:137 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:75 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:52 +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:71 +#: erpnext/accounts/report/trial_balance/trial_balance.js:95 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:81 +msgid "Show zero values" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.js:35 +msgid "Show {0}" +msgstr "" + +#. Label of the signatory_position (Column Break) field in DocType 'Cheque +#. Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Signatory Position" +msgstr "" + +#. Label of the is_signed (Check) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signed" +msgstr "" + +#. Label of the signed_by_company (Link) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signed By (Company)" +msgstr "" + +#. Label of the signed_on (Datetime) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signed On" +msgstr "" + +#. Label of the signee (Data) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signee" +msgstr "" + +#. Label of the signee_company (Signature) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signee (Company)" +msgstr "" + +#. Label of the sb_signee (Section Break) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signee Details" +msgstr "" + +#. Description of the 'No of Workstations' (Int) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Similar types of workstations where the same operations run in parallel." +msgstr "" + +#. Description of the 'Condition' (Code) field in DocType 'Service Level +#. Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Condition' (Code) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Simple Python Expression, Example: territory != 'All Territories'" +msgstr "" + +#. Description of the 'Acceptance Criteria Formula' (Code) field in DocType +#. 'Item Quality Inspection Parameter' +#. Description of the 'Acceptance Criteria Formula' (Code) field in DocType +#. 'Quality Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Simple Python formula applied on Reading fields.
        Numeric eg. 1: reading_1 > 0.2 and reading_1 < 0.5
        \n" +"Numeric eg. 2: mean > 3.5 (mean of populated fields)
        \n" +"Value based eg.: reading_value in (\"A\", \"B\", \"C\")" +msgstr "" + +#. Option for the 'Call Routing' (Select) field in DocType 'Incoming Call +#. Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +msgid "Simultaneous" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:183 +msgid "Since there are active depreciable assets under this category, the following accounts are required.

        " +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:355 +msgid "Since you have enabled 'Track Semi Finished Goods', at least one operation must have 'Is Final Finished Good' checked. For that set the FG / Semi FG Item as {0} against an operation." +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:134 +msgid "Since {0} are Serial No/Batch No items, you cannot enable 'Recreate Stock Ledgers' in Repost Item Valuation." +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:114 +msgid "Since {0} has 'Update Stock' disabled, you cannot create repost item valuation against it" +msgstr "" + +#. Option for the 'Marital Status' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Single" +msgstr "" + +#. Option for the 'Bank Entry Type' (Select) field in DocType 'Bank Transaction +#. Rule' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:282 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Single Account" +msgstr "" + +#. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty +#. Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Single Tier Program" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:252 +msgid "Single Variant" +msgstr "" + +#. Label of the skip_delivery_note (Check) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Skip Delivery Note" +msgstr "" + +#. Label of the skip_material_transfer (Check) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order/work_order.js:373 +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:454 +msgid "Skip Material Transfer" +msgstr "" + +#. Label of the skip_material_transfer (Check) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Skip Material Transfer to WIP" +msgstr "" + +#. Label of the skip_transfer (Check) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Skip Material Transfer to WIP Warehouse" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +msgid "Skipped {0} DocType(s):
        {1}" +msgstr "" + +#. Label of the customer_skype (Data) field in DocType 'Appointment' +#: erpnext/crm/doctype/appointment/appointment.json +msgid "Skype ID" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Slug/Cubic Foot" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:272 +msgid "Small" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:67 +msgid "Smoothing Constant" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:44 +msgid "Soap & Detergent" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112 +#: erpnext/setup/setup_wizard/data/industry_type.txt:45 +msgid "Software" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:30 +msgid "Software Developer" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:10 +msgid "Sold" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:93 +msgid "Sold by" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:170 +msgid "Solvency Ratios" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1685 +msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager." +msgstr "" + +#: erpnext/www/book_appointment/index.js:248 +msgid "Something went wrong please try again" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:754 +msgid "Sorry, this coupon code is no longer valid" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:752 +msgid "Sorry, this coupon code's validity has expired" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:750 +msgid "Sorry, this coupon code's validity has not started" +msgstr "" + +#. Label of the source_doctype (Link) field in DocType 'Support Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Source DocType" +msgstr "" + +#. Label of the source_document_section (Section Break) field in DocType +#. 'Serial No' +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Source Document" +msgstr "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'Batch' +#. Label of the reference_name (Dynamic Link) field in DocType 'Serial No' +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Source Document Name" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:492 +msgid "Source Document No" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Batch' +#. Label of the reference_doctype (Link) field in DocType 'Serial No' +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Source Document Type" +msgstr "" + +#. Label of the source_exchange_rate (Float) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Source Exchange Rate" +msgstr "" + +#. Label of the source_fieldname (Data) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Source Fieldname" +msgstr "" + +#. Label of the source_location (Link) field in DocType 'Asset Movement Item' +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +msgid "Source Location" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1026 +msgid "Source Manufacture Entry" +msgstr "" + +#. Label of the source_stock_entry (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Source Stock Entry (Manufacture)" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:178 +msgid "Source Stock Entry {0} has no finished goods quantity" +msgstr "" + +#. Label of the source_type (Select) field in DocType 'Support Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Source Type" +msgstr "" + +#. Label of the set_warehouse (Link) field in DocType 'POS Invoice' +#. Label of the set_warehouse (Link) field in DocType 'Sales Invoice' +#. Label of the source_warehouse (Link) field in DocType 'BOM Explosion Item' +#. Label of the source_warehouse (Link) field in DocType 'BOM Item' +#. Label of the source_warehouse (Link) field in DocType 'BOM Operation' +#. Label of the source_warehouse (Link) field in DocType 'Job Card' +#. Label of the source_warehouse (Link) field in DocType 'Job Card Item' +#. Label of the source_warehouse (Link) field in DocType 'Work Order' +#. Label of the source_warehouse (Link) field in DocType 'Work Order Item' +#. Label of the source_warehouse (Link) field in DocType 'Work Order Operation' +#. Label of the warehouse (Link) field in DocType 'Sales Order Item' +#. Label of the from_warehouse (Link) field in DocType 'Material Request Item' +#. Label of the s_warehouse (Link) field in DocType 'Stock Entry Detail' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/manufacturing/doctype/bom/bom.js:503 +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 +#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/dashboard/item_dashboard.js:227 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:815 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Source Warehouse" +msgstr "" + +#. Label of the source_address_display (Text Editor) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Source Warehouse Address" +msgstr "" + +#. Label of the source_warehouse_address (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Source Warehouse Address Link" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1184 +msgid "Source Warehouse is mandatory for the Item {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_receipt_issue.py:38 +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:23 +msgid "Source Warehouse is required for item {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:367 +msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order." +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:85 +msgid "Source and Target Location cannot be same" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:295 +msgid "Source and target warehouse must be different" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259 +msgid "Source of Funds (Liabilities)" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:34 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:47 +msgid "Source or Target Warehouse is required for item {0}" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:411 +msgid "Source warehouse required for stock item {0}" +msgstr "" + +#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item' +#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion +#. Item' +#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Sourced by Supplier" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/south_africa_vat_account/south_africa_vat_account.json +msgid "South Africa VAT Account" +msgstr "" + +#. Name of a DocType +#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json +msgid "South Africa VAT Settings" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +msgid "Specify Exchange Rate to convert one currency into another" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Specify conditions to calculate shipping amount" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:220 +msgid "Spending for Account {0} ({1}) between {2} and {3} has already exceeded the new allocated budget. Spent: {4}, Budget: {5}" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:142 +#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:55 +msgid "Spent" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:692 +#: erpnext/stock/doctype/batch/batch.js:104 +#: erpnext/stock/doctype/batch/batch.js:185 +#: erpnext/support/doctype/issue/issue.js:114 +msgid "Split" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:147 +#: erpnext/assets/doctype/asset/asset.js:676 +msgid "Split Asset" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:184 +msgid "Split Batch" +msgstr "" + +#. Description of the 'Book tax loss on early payment discount' (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Split Early Payment Discount Loss into Income and Tax Loss" +msgstr "" + +#. Label of the split_from (Link) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Split From" +msgstr "" + +#: erpnext/support/doctype/issue/issue.js:91 +#: erpnext/support/doctype/issue/issue.js:102 +msgid "Split Issue" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:682 +msgid "Split Qty" +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:206 +msgid "Split Quantity must be less than Asset Quantity" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:191 +msgid "Split across {} accounts" +msgstr "" + +#. Description of the 'Sales Team' (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Split commission credit across multiple sales persons." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +msgid "Splitting {0} {1} into {2} rows as per Payment Terms" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:46 +msgid "Sports" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Centimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Inch" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Kilometer" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Mile" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Yard" +msgstr "" + +#. Label of the stage_name (Data) field in DocType 'Sales Stage' +#: erpnext/crm/doctype/sales_stage/sales_stage.json +msgid "Stage Name" +msgstr "" + +#. Label of the stale_days (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Stale Days" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +msgid "Stale Days should start from 1." +msgstr "" + +#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:485 +#: erpnext/tests/utils.py:275 +msgid "Standard Buying" +msgstr "" + +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:73 +msgid "Standard Description" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:128 +msgid "Standard Rated Expenses" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493 +#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283 +#: erpnext/tests/utils.py:2522 +msgid "Standard Selling" +msgstr "" + +#. Label of the standard_rate (Currency) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Standard Selling Rate" +msgstr "" + +#. Option for the 'Create Chart Of Accounts Based On' (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Standard Template" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc." +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:109 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115 +msgid "Standard rated supplies in {0}" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json +msgid "Standard tax template that can be applied to all Purchase Transactions. This template can contain a list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\", etc." +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +msgid "Standard tax template that can be applied to all Sales Transactions. This template can contain a list of tax heads and also other expense/income heads like \"Shipping\", \"Insurance\", \"Handling\" etc." +msgstr "" + +#. Label of the standing_name (Link) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the standing_name (Data) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Standing Name" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 +msgid "Start / Resume" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:40 +msgid "Start Date cannot be before the current date" +msgstr "" + +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:80 +msgid "Start Date should be lower than End Date" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:660 +#: erpnext/manufacturing/doctype/workstation/workstation.js:124 +msgid "Start Job" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:72 +msgid "Start Merge" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:114 +msgid "Start Reposting" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:129 +msgid "Start Time can't be greater than or equal to End Time for {0}." +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.js:62 +msgid "Start Timer" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 +#: erpnext/accounts/report/cash_flow/cash_flow.html:144 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:56 +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:17 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:144 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:81 +#: erpnext/public/js/financial_statements.js:435 +msgid "Start Year" +msgstr "" + +#: erpnext/accounts/report/financial_statements.py:130 +msgid "Start Year and End Year are mandatory" +msgstr "" + +#. Description of the 'From Date' (Date) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Start date of current invoice's period" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:233 +msgid "Start date should be less than end date for Item {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:39 +msgid "Start date should be less than end date for task {0}" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:46 +msgid "Started a background job to create {1} {0}. {2}" +msgstr "" + +#. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print +#. Template' +#. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the amt_in_words_from_left_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the amt_in_figures_from_left_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the acc_no_dist_from_left_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the signatory_from_left_edge (Float) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Starting location from left edge" +msgstr "" + +#. Label of the starting_position_from_top_edge (Float) field in DocType +#. 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Starting position from top edge" +msgstr "" + +#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule +#. Description Conditions' +#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json +msgid "Starts With" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:201 +msgid "Starts with" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:120 +msgid "Statement Details" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:156 +msgid "Statement File" +msgstr "" + +#. Label of the statement_format_section (Section Break) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Statement Format" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:168 +msgid "Statement Import Instructions" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.html:124 +msgid "Statement Of Accounts" +msgstr "" + +#. Label of the statement_password (Password) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Statement PDF Password" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.html:145 +msgid "Statement Period" +msgstr "" + +#. Label of the status_details (Section Break) field in DocType 'Service Level +#. Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Status Details" +msgstr "" + +#. Label of the illustration_section (Section Break) field in DocType +#. 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Status Illustration" +msgstr "" + +#. Label of the section_break_dfoc (Section Break) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Status and Reference" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:787 +msgid "Status must be Cancelled or Completed" +msgstr "" + +#: erpnext/controllers/status_updater.py:18 +msgid "Status must be one of {0}" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:276 +msgid "Status set to rejected as there are one or more rejected readings." +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of a Desktop Icon +#. Group in Incoterm's connections +#. Label of a Card Break in the Home Workspace +#. Name of a Workspace +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:11 +#: erpnext/accounts/report/account_balance/account_balance.js:57 +#: erpnext/desktop_icon/stock.json +#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:12 +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/item/item_list.js:21 +#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:549 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:575 +#: erpnext/accounts/report/account_balance/account_balance.js:58 +msgid "Stock Adjustment" +msgstr "" + +#. Label of the stock_adjustment_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Stock Adjustment Account" +msgstr "" + +#. Label of the stock_ageing_section (Section Break) field in DocType 'Stock +#. Closing Balance' +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/report/stock_ageing/stock_ageing.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Ageing" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/public/js/stock_analytics.js:7 +#: erpnext/stock/report/stock_analytics/stock_analytics.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Analytics" +msgstr "" + +#. Label of the stock_asset_account (Link) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Stock Asset Account" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:36 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:59 +msgid "Stock Assets" +msgstr "" + +#: erpnext/stock/report/item_price_stock/item_price_stock.py:34 +msgid "Stock Available" +msgstr "" + +#. Label of the stock_balance (Button) field in DocType 'Quotation Item' +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/stock/doctype/item/item.js:166 +#: erpnext/stock/doctype/warehouse/warehouse.js:62 +#: erpnext/stock/report/stock_balance/stock_balance.json +#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.py:107 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Balance" +msgstr "" + +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js:15 +msgid "Stock Balance Report" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:10 +msgid "Stock Capacity" +msgstr "" + +#. Label of the stock_closing_tab (Tab Break) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock Closing" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +msgid "Stock Closing Balance" +msgstr "" + +#. Label of the stock_closing_entry (Link) field in DocType 'Stock Closing +#. Balance' +#. Name of a DocType +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json +msgid "Stock Closing Entry" +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:79 +msgid "Stock Closing Entry {0} already exists for the selected date range" +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 +msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 +msgid "Stock Closing Log" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the stock_delivered_but_not_billed (Link) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65 +#: erpnext/setup/doctype/company/company.json +msgid "Stock Delivered But Not Billed" +msgstr "" + +#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS +#. Invoice Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales +#. Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Stock Details" +msgstr "" + +#. Label of the stock_entry (Link) field in DocType 'Journal Entry' +#. Label of a Link in the Manufacturing Workspace +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Item' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Purchase Receipt' +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Name of a DocType +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/pick_list/pick_list.js:148 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:150 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/manufacturing.json +#: erpnext/workspace_sidebar/stock.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Stock Entry" +msgstr "" + +#. Label of the outgoing_stock_entry (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Stock Entry (Outward GIT)" +msgstr "" + +#. Label of the ste_detail (Data) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Stock Entry Child" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Stock Entry Detail" +msgstr "" + +#. Label of the stock_entry_item (Data) field in DocType 'Landed Cost Item' +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +msgid "Stock Entry Item" +msgstr "" + +#. Label of the stock_entry_type (Link) field in DocType 'Stock Entry' +#. Name of a DocType +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Stock Entry Type" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:290 +msgid "Stock Entry has been already created against this Pick List" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:138 +msgid "Stock Entry {0} created" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 +msgid "Stock Entry {0} has created" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 +msgid "Stock Entry {0} is not submitted" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147 +msgid "Stock Expenses" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:37 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:60 +msgid "Stock In Hand" +msgstr "" + +#. Label of the stock_items (Table) field in DocType 'Asset Capitalization' +#. Label of the stock_items (Table) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Stock Items" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/public/js/controllers/stock_controller.js:67 +#: erpnext/public/js/utils/ledger_preview.js:37 +#: erpnext/stock/doctype/item/item.js:176 +#: erpnext/stock/doctype/item/item_dashboard.py:8 +#: erpnext/stock/report/stock_ledger/stock_ledger.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:36 +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Ledger" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:30 +msgid "Stock Ledger Entries and GL Entries are reposted for the selected Purchase Receipts" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:113 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:138 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:30 +msgid "Stock Ledger Entry" +msgstr "" + +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:98 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:143 +msgid "Stock Ledger ID" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.json +msgid "Stock Ledger Invariant Check" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.json +msgid "Stock Ledger Variance" +msgstr "" + +#. Description of the 'Repost Only Accounting Ledgers' (Check) field in DocType +#. 'Repost Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Stock Ledgers won’t be reposted." +msgstr "" + +#. Label of the stock_levels_section (Section Break) field in DocType 'Item' +#: erpnext/stock/doctype/batch/batch.js:81 erpnext/stock/doctype/item/item.json +msgid "Stock Levels" +msgstr "" + +#. Label of the stock_levels_html (HTML) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Stock Levels HTML" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278 +msgid "Stock Liabilities" +msgstr "" + +#. Name of a role +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/assets/doctype/location/location.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/product_bundle/product_bundle.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/doctype/uom_category/uom_category.json +#: erpnext/stock/doctype/warehouse_type/warehouse_type.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Stock Manager" +msgstr "" + +#: erpnext/stock/doctype/item/item_dashboard.py:34 +msgid "Stock Movement" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Stock Partially Reserved" +msgstr "" + +#. Label of the stock_planning_tab (Tab Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock Planning" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/item/item.js:186 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Projected Qty" +msgstr "" + +#. Label of the stock_qty (Float) field in DocType 'BOM Creator Item' +#. Label of the stock_qty (Float) field in DocType 'BOM Explosion Item' +#. Label of the stock_qty (Float) field in DocType 'BOM Item' +#. Label of the stock_qty (Float) field in DocType 'BOM Secondary Item' +#. Label of the stock_qty (Float) field in DocType 'Delivery Schedule Item' +#. Label of the stock_qty (Float) field in DocType 'Material Request Item' +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:257 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:311 +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 +msgid "Stock Qty" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.json +msgid "Stock Qty vs Batch Qty" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.json +msgid "Stock Qty vs Serial No Count" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279 +#: erpnext/accounts/report/account_balance/account_balance.js:59 +#: erpnext/setup/doctype/company/company.json +msgid "Stock Received But Not Billed" +msgstr "" + +#. Label of a Link in the Home Workspace +#. Name of a DocType +#. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/item/item.py:675 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:155 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Reconciliation" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Stock Reconciliation Item" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:675 +msgid "Stock Reconciliations" +msgstr "" + +#. Label of a Card Break in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Stock Reports" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Reposting Settings" +msgstr "" + +#. Label of the stock_reservation_tab (Tab Break) field in DocType 'Stock +#. Settings' +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:263 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:271 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:277 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:289 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:297 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:303 +#: erpnext/manufacturing/doctype/work_order/work_order.js:939 +#: erpnext/manufacturing/doctype/work_order/work_order.js:948 +#: erpnext/manufacturing/doctype/work_order/work_order.js:955 +#: erpnext/manufacturing/doctype/work_order/work_order_dashboard.py:14 +#: erpnext/public/js/stock_reservation.js:12 +#: erpnext/selling/doctype/sales_order/sales_order.js:109 +#: erpnext/selling/doctype/sales_order/sales_order.js:124 +#: erpnext/selling/doctype/sales_order/sales_order.js:130 +#: erpnext/selling/doctype/sales_order/sales_order.js:248 +#: erpnext/stock/doctype/pick_list/pick_list.js:160 +#: erpnext/stock/doctype/pick_list/pick_list.js:175 +#: erpnext/stock/doctype/pick_list/pick_list.js:180 +#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1679 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1693 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1707 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1721 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1738 +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.py:225 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:237 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:251 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:181 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:194 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:206 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:219 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order_dashboard.py:14 +msgid "Stock Reservation" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1849 +msgid "Stock Reservation Entries Cancelled" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 +#: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 +#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 +msgid "Stock Reservation Entries Created" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +msgid "Stock Reservation Entries created" +msgstr "" + +#. Name of a DocType +#: erpnext/public/js/stock_reservation.js:309 +#: erpnext/selling/doctype/sales_order/sales_order.js:505 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:388 +#: erpnext/stock/report/reserved_stock/reserved_stock.js:53 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:171 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:342 +msgid "Stock Reservation Entry" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:571 +msgid "Stock Reservation Entry cannot be updated as it has been delivered." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:565 +msgid "Stock Reservation Entry created against a Pick List cannot be updated. If you need to make changes, we recommend canceling the existing entry and creating a new one." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:564 +msgid "Stock Reservation Warehouse Mismatch" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:689 +msgid "Stock Reservation can only be created against {0}." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Stock Reserved" +msgstr "" + +#. Label of the stock_reserved_qty (Float) field in DocType 'Material Request +#. Plan Item' +#. Label of the stock_reserved_qty (Float) field in DocType 'Production Plan +#. Sub Assembly Item' +#. Label of the stock_reserved_qty (Float) field in DocType 'Work Order Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Stock Reserved Qty" +msgstr "" + +#. Label of the stock_reserved_qty (Float) field in DocType 'Sales Order Item' +#. Label of the stock_reserved_qty (Float) field in DocType 'Pick List Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Stock Reserved Qty (in Stock UOM)" +msgstr "" + +#. Label of the auto_accounting_for_stock_settings (Section Break) field in +#. DocType 'Company' +#. Label of a shortcut in the ERPNext Settings Workspace +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/selling_settings/selling_settings.py:115 +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/stock/doctype/item/item.js:482 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:681 +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Settings" +msgstr "" + +#. Title of the Module Onboarding 'Stock Onboarding' +#: erpnext/stock/module_onboarding/stock_onboarding/stock_onboarding.json +msgid "Stock Setup" +msgstr "" + +#. Label of the stock_summary_tab (Tab Break) field in DocType 'Plant Floor' +#. Label of the stock_summary (HTML) field in DocType 'Plant Floor' +#. Label of a Link in the Stock Workspace +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +#: erpnext/stock/page/stock_balance/stock_balance.js:4 +#: erpnext/stock/workspace/stock/stock.json +msgid "Stock Summary" +msgstr "" + +#. Label of a Card Break in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Stock Transactions" +msgstr "" + +#. Label of the stock_uom (Link) field in DocType 'POS Invoice Item' +#. Label of the stock_uom (Link) field in DocType 'Purchase Invoice Item' +#. Label of the stock_uom (Link) field in DocType 'Sales Invoice Item' +#. Label of the stock_uom (Link) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the stock_uom (Link) field in DocType 'Purchase Order Item' +#. Label of the stock_uom (Link) field in DocType 'Request for Quotation Item' +#. Label of the stock_uom (Link) field in DocType 'Supplier Quotation Item' +#. Label of the stock_uom (Link) field in DocType 'BOM Creator Item' +#. Label of the stock_uom (Link) field in DocType 'BOM Explosion Item' +#. Label of the stock_uom (Link) field in DocType 'BOM Item' +#. Label of the stock_uom (Link) field in DocType 'BOM Secondary Item' +#. Label of the stock_uom (Link) field in DocType 'Job Card Item' +#. Label of the stock_uom (Link) field in DocType 'Job Card Secondary Item' +#. Label of the stock_uom (Link) field in DocType 'Production Plan Sub Assembly +#. Item' +#. Label of the stock_uom (Link) field in DocType 'Work Order' +#. Label of the stock_uom (Link) field in DocType 'Work Order Item' +#. Label of the stock_uom (Link) field in DocType 'Delivery Schedule Item' +#. Label of the stock_uom (Link) field in DocType 'Quotation Item' +#. Label of the stock_uom (Link) field in DocType 'Sales Order Item' +#. Label of the stock_uom (Link) field in DocType 'Delivery Note Item' +#. Label of the stock_uom (Link) field in DocType 'Item Lead Time' +#. Label of the stock_uom (Link) field in DocType 'Material Request Item' +#. Label of the stock_uom (Link) field in DocType 'Pick List Item' +#. Label of the stock_uom (Link) field in DocType 'Purchase Receipt Item' +#. Label of the stock_uom (Link) field in DocType 'Putaway Rule' +#. Label of the stock_uom (Link) field in DocType 'Stock Closing Balance' +#. Label of the stock_uom (Link) field in DocType 'Stock Entry Detail' +#. Label of the stock_uom (Link) field in DocType 'Stock Ledger Entry' +#. Label of the stock_uom (Link) field in DocType 'Stock Reconciliation Item' +#. Label of the stock_uom (Link) field in DocType 'Stock Reservation Entry' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Inward Order +#. Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Inward Order +#. Received Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Order Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Receipt Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:259 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:313 +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:215 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:214 +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 +#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:110 +#: erpnext/stock/report/stock_balance/stock_balance.py:510 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:295 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Stock UOM" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:230 +#: erpnext/selling/doctype/sales_order/sales_order.js:489 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:326 +msgid "Stock Unreservation" +msgstr "" + +#. Label of the stock_uom (Link) field in DocType 'Purchase Receipt Item +#. Supplied' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +msgid "Stock Uom" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594 +msgid "Stock Update Not Allowed" +msgstr "" + +#. Name of a role +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/assets/doctype/location/location.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/product_bundle/product_bundle.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/brand/brand.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/setup/doctype/territory/territory.json +#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/uom_category/uom_category.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/doctype/warehouse_type/warehouse_type.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Stock User" +msgstr "" + +#. Label of the stock_validations_tab (Tab Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock Validations" +msgstr "" + +#. Label of the stock_value (Float) field in DocType 'Bin' +#. Label of the value (Currency) field in DocType 'Quick Stock Balance' +#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.py:37 +#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.py:52 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:134 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:164 +msgid "Stock Value" +msgstr "" + +#. Label of a chart in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Stock Value by Item Group" +msgstr "" + +#. Description of the 'Inventory Account' (Link) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Stock account where inventory value for this item will be tracked" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.json +msgid "Stock and Account Value Comparison" +msgstr "" + +#. Label of the stock_tab (Tab Break) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Stock and Manufacturing" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:255 +msgid "Stock cannot be reserved in group warehouse {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1611 +msgid "Stock cannot be reserved in the group warehouse {0}." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:906 +msgid "Stock cannot be updated against the following Delivery Notes: {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:982 +msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:591 +msgid "Stock cannot be updated for Purchase Invoice {0} because a Purchase Receipt {1} has already been created for this transaction. Please disable the 'Update Stock' checkbox in the Purchase Invoice and save the invoice." +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:125 +msgid "Stock entries exist with the old account. Changing the account may lead to a mismatch between the warehouse closing balance and the account closing balance. The overall closing balance will still match, but not for the specific account." +msgstr "" + +#. Label of the stock_frozen_upto (Date) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock frozen up to" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1151 +msgid "Stock has been unreserved for work order {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:359 +msgid "Stock not available for Item {0} in Warehouse {1}." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:835 +msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 +msgid "Stock transactions before {0} are frozen" +msgstr "" + +#. Description of the 'Freeze stocks older than (days)' (Int) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock transactions that are older than the mentioned days cannot be modified." +msgstr "" + +#. Description of the 'Auto reserve Stock for Sales Order on Purchase' (Check) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." +msgstr "" + +#: erpnext/stock/utils.py:556 +msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Stone" +msgstr "" + +#. Label of the stop_reason (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:94 +msgid "Stop Reason" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:391 +#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 +#: erpnext/stock/doctype/item/item.py:327 +#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +msgid "Stores" +msgstr "" + +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Depreciation Schedule' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Straight Line" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:58 +msgid "Sub Assemblies" +msgstr "" + +#. Label of the raw_materials_tab (Tab Break) field in DocType 'BOM Creator' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Sub Assemblies & Raw Materials" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:321 +msgid "Sub Assembly Item" +msgstr "" + +#. Label of the production_item (Link) field in DocType 'Production Plan Sub +#. Assembly Item' +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Sub Assembly Item Code" +msgstr "" + +#. Label of the sub_assembly_item_reference (Data) field in DocType 'Material +#. Request Plan Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "Sub Assembly Item Reference" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:430 +msgid "Sub Assembly Item is mandatory" +msgstr "" + +#. Label of the section_break_24 (Section Break) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Sub Assembly Items" +msgstr "" + +#. Label of the sub_assembly_warehouse (Link) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Sub Assembly Warehouse" +msgstr "" + +#. Label of the operation (Link) field in DocType 'Job Card Time Log' +#. Name of a DocType +#: erpnext/manufacturing/doctype/job_card/job_card.js:309 +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json +msgid "Sub Operation" +msgstr "" + +#. Label of the sub_operations (Table) field in DocType 'Job Card' +#. Label of the section_break_21 (Tab Break) field in DocType 'Job Card' +#. Label of the sub_operations_section (Section Break) field in DocType +#. 'Operation' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Sub Operations" +msgstr "" + +#. Label of the procedure (Link) field in DocType 'Quality Procedure Process' +#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json +msgid "Sub Procedure" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:278 +msgid "Sub assembly item references are missing. Please fetch the sub assemblies and raw materials again." +msgstr "" + +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:127 +msgid "Sub-assembly BOM Count" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:34 +msgid "Sub-contracting" +msgstr "" + +#. Option for the 'Manufacturing Type' (Select) field in DocType 'Production +#. Plan Sub Assembly Item' +#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:15 +#: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:12 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Subcontract" +msgstr "" + +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.js:29 +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:120 +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:22 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:22 +msgid "Subcontract Order" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontract Order Summary" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:84 +msgid "Subcontract Return" +msgstr "" + +#. Label of the subcontracted_item (Link) field in DocType 'Stock Entry Detail' +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:128 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Subcontracted Item" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Manufacturing Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Link in the Subcontracting Workspace +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracted Item To Be Received" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:224 +msgid "Subcontracted Purchase Order" +msgstr "" + +#. Label of the subcontracted_qty (Float) field in DocType 'Purchase Order +#. Item' +#. Label of the subcontracted_qty (Float) field in DocType 'Sales Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Subcontracted Quantity" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Manufacturing Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Link in the Subcontracting Workspace +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracted Raw Materials To Be Transferred" +msgstr "" + +#. Label of a Desktop Icon +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Label of the subcontracting_section (Section Break) field in DocType +#. 'Production Plan Sub Assembly Item' +#. Label of a Card Break in the Manufacturing Workspace +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#. Name of a Workspace +#. Title of a Workspace Sidebar +#: erpnext/desktop_icon/subcontracting.json +#: erpnext/manufacturing/doctype/job_card/job_card_dashboard.py:10 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting BOM" +msgstr "" + +#. Label of the subcontracting_conversion_factor (Float) field in DocType +#. 'Subcontracting Inward Order Item' +#. Label of the subcontracting_conversion_factor (Float) field in DocType +#. 'Subcontracting Order Item' +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Subcontracting Conversion Factor" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:132 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:158 +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting Delivery" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:362 +msgid "Subcontracting Finished Good" +msgstr "" + +#. Label of the subcontracting_inward_tab (Tab Break) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:33 +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Subcontracting Inward" +msgstr "" + +#. Label of the subcontracting_inward_order (Link) field in DocType 'Work +#. Order' +#. Label of the subcontracting_inward_order (Link) field in DocType 'Stock +#. Entry' +#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation +#. Entry' +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Name of a DocType +#. Label of a Card Break in the Subcontracting Workspace +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1049 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting Inward Order" +msgstr "" + +#. Label of a number card in the Subcontracting Workspace +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracting Inward Order Count" +msgstr "" + +#. Label of the subcontracting_inward_order_item (Data) field in DocType 'Work +#. Order' +#. Name of a DocType +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +msgid "Subcontracting Inward Order Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +msgid "Subcontracting Inward Order Received Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +msgid "Subcontracting Inward Order Secondary Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +msgid "Subcontracting Inward Order Service Item" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Label of the subcontracting_order (Link) field in DocType 'Stock Entry' +#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation +#. Entry' +#. Name of a DocType +#. Label of the subcontracting_order (Link) field in DocType 'Subcontracting +#. Receipt Item' +#. Label of the subcontracting_order (Link) field in DocType 'Subcontracting +#. Receipt Supplied Item' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order/purchase_order.js:370 +#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:141 +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting Order" +msgstr "" + +#. Description of the 'Auto create Subcontracting Order' (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Subcontracting Order (Draft) will be auto-created on submission of Purchase Order." +msgstr "" + +#. Name of a DocType +#. Label of the subcontracting_order_item (Data) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:548 +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Subcontracting Order Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +msgid "Subcontracting Order Service Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:234 +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +msgid "Subcontracting Order Supplied Item" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:244 +msgid "Subcontracting Order {0} created." +msgstr "" + +#. Label of a chart in the Subcontracting Workspace +#. Label of a Card Break in the Subcontracting Workspace +#. Label of a Link in the Subcontracting Workspace +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracting Outward Order" +msgstr "" + +#. Label of a number card in the Subcontracting Workspace +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracting Outward Order Count" +msgstr "" + +#. Label of the purchase_order (Link) field in DocType 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Subcontracting Purchase Order" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Item' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Purchase Receipt' +#. Label of the subcontracting_receipt (Link) field in DocType 'Purchase +#. Receipt' +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Name of a DocType +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:637 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting Receipt" +msgstr "" + +#. Label of the subcontracting_receipt_item (Data) field in DocType 'Purchase +#. Receipt Item' +#. Name of a DocType +#. Label of the subcontracting_receipt_item (Data) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Subcontracting Receipt Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Subcontracting Receipt Supplied Item" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:138 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Subcontracting Return" +msgstr "" + +#. Label of the sales_order (Link) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Subcontracting Sales Order" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:336 +msgid "Subcontracting Service Item" +msgstr "" + +#. Label of the subcontract (Tab Break) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Subcontracting Settings" +msgstr "" + +#. Title of the Module Onboarding 'Subcontracting Onboarding' +#: erpnext/subcontracting/module_onboarding/subcontracting_onboarding/subcontracting_onboarding.json +msgid "Subcontracting Setup" +msgstr "" + +#. Label of the subdivision (Autocomplete) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Subdivision" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 +msgid "Submit Action Failed" +msgstr "" + +#. Label of the submit_err_jv (Check) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Submit ERR Journals?" +msgstr "" + +#. Label of the submit_invoice (Check) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Submit Generated Invoices" +msgstr "" + +#. Label of the submit_journal_entries (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Submit Journal entries" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:185 +msgid "Submit this Work Order for further processing." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:314 +msgid "Submit your Quotation" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +msgid "Submitted Job Card cannot be processed." +msgstr "" + +#. Label of the subscription_section (Section Break) field in DocType 'Payment +#. Request' +#. Label of the subscription_section (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the subscription (Link) field in DocType 'Process Subscription' +#. Label of the subscription_section (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the subscription (Link) field in DocType 'Purchase Invoice' +#. Label of the subscription_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the subscription (Link) field in DocType 'Sales Invoice' +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_subscription/process_subscription.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py:26 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:36 +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:16 +#: erpnext/desktop_icon/subscription.json +#: erpnext/selling/doctype/quotation/quotation_dashboard.py:12 +#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:25 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:34 +#: erpnext/workspace_sidebar/subscription.json +msgid "Subscription" +msgstr "" + +#. Label of the end_date (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Subscription End Date" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:442 +msgid "Subscription End Date is mandatory to follow calendar months" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:432 +msgid "Subscription End Date must be after {0} as per the subscription plan" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/subscription_invoice/subscription_invoice.json +msgid "Subscription Invoice" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Subscription Management" +msgstr "" + +#. Label of the subscription_period (Section Break) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Subscription Period" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/subscription.json +msgid "Subscription Plan" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json +msgid "Subscription Plan Detail" +msgstr "" + +#. Label of the subscription_plans (Table) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Subscription Plans" +msgstr "" + +#. Label of the price_determination (Select) field in DocType 'Subscription +#. Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Subscription Price Based On" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/subscription.json +msgid "Subscription Settings" +msgstr "" + +#. Label of the start_date (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Subscription Start Date" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:848 +msgid "Subscription for Future dates cannot be processed." +msgstr "" + +#: erpnext/selling/doctype/customer/customer_dashboard.py:28 +msgid "Subscriptions" +msgstr "" + +#. Label of the succeeded (Int) field in DocType 'Bulk Transaction Log' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.json +msgid "Succeeded" +msgstr "" + +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js:7 +msgid "Succeeded Entries" +msgstr "" + +#. Label of the success_redirect_url (Data) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Success Redirect URL" +msgstr "" + +#. Label of the success_details (Section Break) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Success Settings" +msgstr "" + +#. Option for the 'Depreciation Entry Posting Status' (Select) field in DocType +#. 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Successful" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +msgid "Successfully Reconciled" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:194 +msgid "Successfully Set Supplier" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:407 +msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:173 +msgid "Successfully imported {0} record out of {1}. Click on Export Errored Rows, fix the errors and import again." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:157 +msgid "Successfully imported {0} record." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:169 +msgid "Successfully imported {0} records out of {1}. Click on Export Errored Rows, fix the errors and import again." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:156 +msgid "Successfully imported {0} records." +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:243 +msgid "Successfully linked to Customer" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.js:275 +msgid "Successfully linked to Supplier" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:99 +msgid "Successfully merged {0} out of {1}." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:184 +msgid "Successfully updated {0} record out of {1}. Click on Export Errored Rows, fix the errors and import again." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:162 +msgid "Successfully updated {0} record." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:180 +msgid "Successfully updated {0} records out of {1}. Click on Export Errored Rows, fix the errors and import again." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:161 +msgid "Successfully updated {0} records." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:263 +msgid "Suggest creating a" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:936 +msgid "Suggested" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:481 +msgid "Suggested Transfer to {0}" +msgstr "" + +#. Option for the 'Request Type' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Suggestions" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:176 +msgid "Summary for this month and pending activities" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:173 +msgid "Summary for this week and pending activities" +msgstr "" + +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:137 +msgid "Supplied Item" +msgstr "" + +#. Label of the supplied_items (Table) field in DocType 'Purchase Invoice' +#. Label of the supplied_items (Table) field in DocType 'Subcontracting Order' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Supplied Items" +msgstr "" + +#. Label of the supplied_qty (Float) field in DocType 'Subcontracting Order +#. Supplied Item' +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:144 +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +msgid "Supplied Qty" +msgstr "" + +#. Label of the supplier (Link) field in DocType 'Bank Guarantee' +#. Label of the party (Link) field in DocType 'Payment Order' +#. Label of the supplier (Link) field in DocType 'Payment Order Reference' +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the supplier (Link) field in DocType 'Pricing Rule' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the supplier (Table MultiSelect) field in DocType 'Promotional +#. Scheme' +#. Label of the supplier (Link) field in DocType 'Purchase Invoice' +#. Label of the supplier (Link) field in DocType 'Supplier Item' +#. Label of the supplier (Link) field in DocType 'Tax Rule' +#. Option for the 'Asset Owner' (Select) field in DocType 'Asset' +#. Label of the supplier (Link) field in DocType 'Asset' +#. Label of the supplier (Link) field in DocType 'Purchase Order' +#. Label of the vendor (Link) field in DocType 'Request for Quotation' +#. Label of the supplier (Link) field in DocType 'Request for Quotation +#. Supplier' +#. Name of a DocType +#. Label of the supplier (Link) field in DocType 'Supplier Quotation' +#. Label of the supplier (Link) field in DocType 'Supplier Scorecard' +#. Label of the supplier (Link) field in DocType 'Supplier Scorecard Period' +#. Label of a Card Break in the Buying Workspace +#. Label of a Link in the Buying Workspace +#. Option for the 'Party Type' (Select) field in DocType 'Contract' +#. Label of the supplier (Link) field in DocType 'Blanket Order' +#. Label of the supplier (Link) field in DocType 'Production Plan Sub Assembly +#. Item' +#. Label of the supplier (Link) field in DocType 'Lower Deduction Certificate' +#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item' +#. Label of the supplier (Link) field in DocType 'Sales Order Item' +#. Label of the supplier (Link) field in DocType 'SMS Center' +#. Label of a Link in the Home Workspace +#. Label of a shortcut in the Home Workspace +#. Label of the supplier (Link) field in DocType 'Batch' +#. Label of the default_supplier (Link) field in DocType 'Item Default' +#. Label of the vf_default_supplier (Read Only) field in DocType 'Item Default' +#. Label of the supplier (Link) field in DocType 'Item Price' +#. Label of the supplier (Link) field in DocType 'Item Supplier' +#. Label of the supplier (Link) field in DocType 'Landed Cost Purchase Receipt' +#. Label of the supplier (Link) field in DocType 'Purchase Receipt' +#. Option for the 'Pickup from' (Select) field in DocType 'Shipment' +#. Label of the pickup_supplier (Link) field in DocType 'Shipment' +#. Option for the 'Delivery to' (Select) field in DocType 'Shipment' +#. Label of the delivery_supplier (Link) field in DocType 'Shipment' +#. Label of the supplier (Link) field in DocType 'Stock Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/payment_order/payment_order.js:112 +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/supplier_item/supplier_item.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:113 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:112 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:134 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:60 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:34 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:189 +#: erpnext/accounts/report/purchase_register/purchase_register.js:21 +#: erpnext/accounts/report/purchase_register/purchase_register.py:173 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:29 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:37 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/buying/doctype/buying_settings/buying_settings.js:44 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:185 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:270 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.js:8 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:29 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:51 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:195 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/public/js/purchase_trends_filters.js:50 +#: erpnext/public/js/purchase_trends_filters.js:63 +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/regional/report/irs_1099/irs_1099.py:76 +#: erpnext/selling/doctype/customer/customer.js:257 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:187 +#: erpnext/selling/doctype/sales_order/sales_order.js:1741 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/doctype/sms_center/sms_center.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/doctype/item_default/item_default.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/item_supplier/item_supplier.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.js:8 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:524 +#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/subscription.json +msgid "Supplier" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:98 +msgid "Supplier > Supplier Type" +msgstr "" + +#. Label of the section_addresses (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the section_addresses (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the supplier_address (Link) field in DocType 'Purchase Order' +#. Label of the supplier_address (Link) field in DocType 'Supplier Quotation' +#. Label of the supplier_address_section (Section Break) field in DocType +#. 'Supplier Quotation' +#. Label of the section_addresses (Section Break) field in DocType 'Purchase +#. Receipt' +#. Label of the supplier_address (Link) field in DocType 'Purchase Receipt' +#. Label of the supplier_address (Link) field in DocType 'Stock Entry' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Supplier Address" +msgstr "" + +#. Label of the address_display (Text Editor) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Supplier Address Details" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Addresses And Contacts" +msgstr "" + +#. Label of the contact_person (Link) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Supplier Contact" +msgstr "" + +#. Label of the supplier_defaults_section (Section Break) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Supplier Defaults" +msgstr "" + +#. Label of the supplier_delivery_note (Data) field in DocType 'Purchase +#. Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Supplier Delivery Note" +msgstr "" + +#. Label of the supplier_details (Text) field in DocType 'Supplier' +#. Label of the supplier_details (Section Break) field in DocType 'Item' +#. Label of the contact_section (Section Break) field in DocType 'Stock Entry' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Supplier Details" +msgstr "" + +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the supplier_group (Link) field in DocType 'Pricing Rule' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the supplier_group (Table MultiSelect) field in DocType +#. 'Promotional Scheme' +#. Label of the supplier_group (Link) field in DocType 'Purchase Invoice' +#. Label of the supplier_group (Link) field in DocType 'Supplier Group Item' +#. Label of the supplier_group (Link) field in DocType 'Tax Rule' +#. Label of the supplier_group (Link) field in DocType 'Purchase Order' +#. Label of the supplier_group (Link) field in DocType 'Supplier' +#. Label of a Link in the Buying Workspace +#. Label of the supplier_group (Link) field in DocType 'Import Supplier +#. Invoice' +#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/supplier_group_item/supplier_group_item.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:119 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:102 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1258 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:200 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:178 +#: erpnext/accounts/report/purchase_register/purchase_register.js:27 +#: erpnext/accounts/report/purchase_register/purchase_register.py:188 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:55 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:503 +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:107 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/public/js/purchase_trends_filters.js:51 +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +#: erpnext/regional/report/irs_1099/irs_1099.js:26 +#: erpnext/regional/report/irs_1099/irs_1099.py:69 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Group" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/supplier_group_item/supplier_group_item.json +msgid "Supplier Group Item" +msgstr "" + +#. Label of the supplier_group_name (Data) field in DocType 'Supplier Group' +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Supplier Group Name" +msgstr "" + +#. Label of the supplier_info_tab (Tab Break) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Supplier Info" +msgstr "" + +#. Label of the supplier_invoice_details (Section Break) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Supplier Invoice" +msgstr "" + +#. Label of the supplier_invoice_date (Date) field in DocType 'Opening Invoice +#. Creation Tool Item' +#. Label of the bill_date (Date) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:232 +msgid "Supplier Invoice Date" +msgstr "" + +#. Label of the bill_no (Data) field in DocType 'Payment Entry Reference' +#. Label of the bill_no (Data) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/report/general_ledger/general_ledger.html:202 +#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 +msgid "Supplier Invoice No" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:815 +msgid "Supplier Invoice No exists in Purchase Invoice {0}" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/supplier_item/supplier_item.json +msgid "Supplier Item" +msgstr "" + +#. Label of the lead_time_days (Int) field in DocType 'Supplier Quotation Item' +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +msgid "Supplier Lead Time (days)" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Supplier Ledger" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +msgid "Supplier Ledger Summary" +msgstr "" + +#. Label of the supplier_name (Data) field in DocType 'Purchase Invoice' +#. Option for the 'Supplier Naming By' (Select) field in DocType 'Buying +#. Settings' +#. Label of the supplier_name (Data) field in DocType 'Purchase Order' +#. Label of the supplier_name (Read Only) field in DocType 'Request for +#. Quotation Supplier' +#. Label of the supplier_name (Data) field in DocType 'Supplier' +#. Label of the supplier_name (Data) field in DocType 'Supplier Quotation' +#. Label of the supplier_name (Data) field in DocType 'Blanket Order' +#. Label of the supplier_name (Data) field in DocType 'Purchase Receipt' +#. Label of the supplier_name (Data) field in DocType 'Stock Entry' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1173 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:157 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:196 +#: erpnext/accounts/report/purchase_register/purchase_register.py:179 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:35 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:73 +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:101 +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Supplier Name" +msgstr "" + +#. Label of the supp_master_name (Select) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Supplier Naming By" +msgstr "" + +#. Label of the supplier_number (Data) field in DocType 'Supplier Number At +#. Customer' +#: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json +msgid "Supplier Number" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json +msgid "Supplier Number At Customer" +msgstr "" + +#. Label of the supplier_numbers (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Supplier Numbers" +msgstr "" + +#. Label of the supplier_part_no (Data) field in DocType 'Request for Quotation +#. Item' +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/templates/includes/rfq/rfq_macros.html:20 +msgid "Supplier Part No" +msgstr "" + +#. Label of the supplier_part_no (Data) field in DocType 'Purchase Order Item' +#. Label of the supplier_part_no (Data) field in DocType 'Supplier Quotation +#. Item' +#. Label of the supplier_part_no (Data) field in DocType 'Item Supplier' +#. Label of the supplier_part_no (Data) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/stock/doctype/item_supplier/item_supplier.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Supplier Part Number" +msgstr "" + +#. Label of the portal_users (Table) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Supplier Portal Users" +msgstr "" + +#. Label of the ref_sq (Link) field in DocType 'Purchase Order' +#. Label of the supplier_quotation (Link) field in DocType 'Purchase Order +#. Item' +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of the supplier_quotation (Link) field in DocType 'Quotation' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order/purchase_order.js:518 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:237 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/crm/doctype/opportunity/opportunity.js:81 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/stock/doctype/material_request/material_request.js:208 +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Quotation" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:155 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Quotation Comparison" +msgstr "" + +#. Label of the supplier_quotation_item (Link) field in DocType 'Purchase Order +#. Item' +#. Name of a DocType +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +msgid "Supplier Quotation Item" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +msgid "Supplier Quotation {0} Created" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:6 +msgid "Supplier Reference" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1765 +msgid "Supplier Required" +msgstr "" + +#. Label of the supplier_score (Data) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Supplier Score" +msgstr "" + +#. Name of a DocType +#. Label of a Card Break in the Buying Workspace +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Scorecard" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Scorecard Criteria" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Supplier Scorecard Period" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Supplier Scorecard Scoring Criteria" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +msgid "Supplier Scorecard Scoring Standing" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.json +msgid "Supplier Scorecard Scoring Variable" +msgstr "" + +#. Label of the scorecard (Link) field in DocType 'Supplier Scorecard Period' +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Supplier Scorecard Setup" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Scorecard Standing" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Scorecard Variable" +msgstr "" + +#. Label of the supplier_type (Select) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Supplier Type" +msgstr "" + +#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Invoice' +#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Order' +#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/manufacturing/doctype/job_card/job_card.js:91 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Supplier Warehouse" +msgstr "" + +#. Label of the delivered_by_supplier (Check) field in DocType 'Sales Order +#. Item' +#. Label of the delivered_by_supplier (Check) field in DocType 'Packed Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Supplier delivers to Customer" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1764 +msgid "Supplier is required for all selected Items" +msgstr "" + +#. Description of a DocType +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Supplier of Goods or Services." +msgstr "" + +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:187 +msgid "Supplier {0} not found in {1}" +msgstr "" + +#. Description of the 'Tax ID' (Data) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Supplier's tax identification number (e.g. PAN, VAT, GST)" +msgstr "" + +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:67 +msgid "Supplier(s)" +msgstr "" + +#. Label of the suppliers (Table) field in DocType 'Request for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Suppliers" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:73 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:135 +msgid "Supplies subject to the reverse charge provision" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:316 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:381 +msgid "Supply" +msgstr "" + +#. Label of a Desktop Icon +#. Name of a Workspace +#. Title of a Workspace Sidebar +#: erpnext/desktop_icon/support.json +#: erpnext/selling/doctype/customer/customer_dashboard.py:23 +#: erpnext/setup/doctype/company/company_dashboard.py:24 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:298 +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "Support" +msgstr "" + +#. Name of a report +#: erpnext/support/report/support_hour_distribution/support_hour_distribution.json +msgid "Support Hour Distribution" +msgstr "" + +#. Label of the portal_sb (Section Break) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Support Portal" +msgstr "" + +#. Name of a DocType +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Support Search Source" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/support/doctype/support_settings/support_settings.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Support Settings" +msgstr "" + +#. Name of a role +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/issue_type/issue_type.json +msgid "Support Team" +msgstr "" + +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:69 +msgid "Support Tickets" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:89 +msgid "Supported Variables:" +msgstr "" + +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 +msgid "Suspected Discount Amount" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Driver' +#. Option for the 'Status' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/employee/employee.json +msgid "Suspended" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:442 +msgid "Switch Between Payment Modes" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:186 +msgid "Switch between light, dark, or system theme" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:23 +msgid "Sync Now" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:36 +msgid "Sync Started" +msgstr "" + +#. Label of the automatic_sync (Check) field in DocType 'Plaid Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "Synchronize all accounts every hour" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:676 +msgid "System In Use" +msgstr "" + +#. Description of the 'User ID' (Link) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "System User (login) ID. If set, it will become default for all HR forms." +msgstr "" + +#. Description of the 'Make Serial No / Batch from Work Order' (Check) field in +#. DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "System will automatically create the serial numbers / batch for the Finished Good on submission of work order" +msgstr "" + +#. Description of the 'Allow Implicit Pegged Currency Conversion' (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "System will do an implicit conversion using the pegged currency.
        \n" +"Ex: Instead of AED -> INR, system will do AED -> USD -> INR using the pegged exchange rate of AED against USD." +msgstr "" + +#. Description of the 'Invoice Limit' (Int) field in DocType 'Payment +#. Reconciliation' +#. Description of the 'Payment Limit' (Int) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "System will fetch all the entries if limit value is zero." +msgstr "" + +#: erpnext/accounts/services/billing_validation.py:85 +msgid "System will not check over billing since amount for Item {0} in {1} is zero" +msgstr "" + +#. Description of the 'Threshold for Suggestion (In Percentage)' (Percent) +#. field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "System will notify to increase or decrease quantity or amount " +msgstr "" + +#. Description of the 'Tax Withholding Category' (Link) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "TDS / withholding tax category applied when paying this supplier" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.json +#: erpnext/workspace_sidebar/taxes.json +msgid "TDS Computation Summary" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +msgid "TDS Deducted" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292 +msgid "TDS Payable" +msgstr "" + +#. Description of the 'Tax Withholding Category' (Link) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer." +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/item_website_specification/item_website_specification.json +msgid "Table for Item that will be shown in Web Site" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:237 +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:312 +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:329 +msgid "Table {0}" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Tablespoon (US)" +msgstr "" + +#. Label of the target_amount (Float) field in DocType 'Target Detail' +#: erpnext/setup/doctype/target_detail/target_detail.json +msgid "Target Amount" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:104 +msgid "Target ({})" +msgstr "" + +#. Label of the target_asset (Link) field in DocType 'Asset Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Target Asset" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:206 +msgid "Target Asset {0} cannot be cancelled" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:204 +msgid "Target Asset {0} cannot be submitted" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:200 +msgid "Target Asset {0} cannot be {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:210 +msgid "Target Asset {0} does not belong to company {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 +msgid "Target Asset {0} needs to be composite asset" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/target_detail/target_detail.json +msgid "Target Detail" +msgstr "" + +#: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:12 +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution_dashboard.py:13 +msgid "Target Details" +msgstr "" + +#. Label of the distribution_id (Link) field in DocType 'Target Detail' +#: erpnext/setup/doctype/target_detail/target_detail.json +msgid "Target Distribution" +msgstr "" + +#. Label of the target_exchange_rate (Float) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Target Exchange Rate" +msgstr "" + +#. Label of the target_fieldname (Data) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Target Fieldname (Stock Ledger Entry)" +msgstr "" + +#. Label of the target_fixed_asset_account (Link) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Target Fixed Asset Account" +msgstr "" + +#. Label of the target_incoming_rate (Currency) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Target Incoming Rate" +msgstr "" + +#. Label of the target_item_code (Link) field in DocType 'Asset Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Target Item Code" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:180 +msgid "Target Item {0} must be a Fixed Asset item" +msgstr "" + +#. Label of the target_location (Link) field in DocType 'Asset Movement Item' +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +msgid "Target Location" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:83 +msgid "Target Location is required for transferring Asset {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:89 +msgid "Target Location is required while receiving Asset {0}" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:41 +#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:41 +#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:41 +msgid "Target On" +msgstr "" + +#. Label of the target_qty (Float) field in DocType 'Target Detail' +#: erpnext/setup/doctype/target_detail/target_detail.json +msgid "Target Qty" +msgstr "" + +#. Label of the target_warehouse (Link) field in DocType 'Sales Invoice Item' +#. Label of the warehouse (Link) field in DocType 'Purchase Order Item' +#. Label of the target_warehouse (Link) field in DocType 'Job Card' +#. Label of the fg_warehouse (Link) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the fg_warehouse (Link) field in DocType 'Work Order' +#. Label of the target_warehouse (Link) field in DocType 'Delivery Note Item' +#. Label of the warehouse (Link) field in DocType 'Material Request Item' +#. Label of the t_warehouse (Link) field in DocType 'Stock Entry Detail' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/dashboard/item_dashboard.js:234 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:821 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Target Warehouse" +msgstr "" + +#. Label of the target_address_display (Text Editor) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Target Warehouse Address" +msgstr "" + +#. Label of the target_warehouse_address (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Target Warehouse Address Link" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/reservation.py:80 +msgid "Target Warehouse Reservation Error" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:232 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +msgid "Target Warehouse is required before Submit" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_receipt_issue.py:25 +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:21 +msgid "Target Warehouse is required for item {0}" +msgstr "" + +#: erpnext/controllers/selling_controller.py:900 +msgid "Target Warehouse is set for some items but the customer is not an internal customer." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:383 +msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item." +msgstr "" + +#. Label of the targets (Table) field in DocType 'Sales Partner' +#. Label of the targets (Table) field in DocType 'Sales Person' +#. Label of the targets (Table) field in DocType 'Territory' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/setup/doctype/sales_person/sales_person.json +#: erpnext/setup/doctype/territory/territory.json +msgid "Targets" +msgstr "" + +#. Label of the tariff_number (Data) field in DocType 'Customs Tariff Number' +#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json +msgid "Tariff Number" +msgstr "" + +#. Label of the task_assignee_email (Data) field in DocType 'Asset Maintenance +#. Log' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +msgid "Task Assignee Email" +msgstr "" + +#. Option for the '% Complete Method' (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Task Completion" +msgstr "" + +#. Name of a DocType +#: erpnext/projects/doctype/task_depends_on/task_depends_on.json +msgid "Task Depends On" +msgstr "" + +#. Label of the description (Text Editor) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Task Description" +msgstr "" + +#. Name of a DocType +#: erpnext/projects/doctype/task_type/task_type.json +msgid "Task Type" +msgstr "" + +#. Option for the '% Complete Method' (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Task Weight" +msgstr "" + +#: erpnext/projects/doctype/project_template/project_template.py:41 +msgid "Task {0} depends on Task {1}. Please add Task {1} to the Tasks list." +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:68 +msgid "Tasks Completed" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:72 +msgid "Tasks Overdue" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the tax_type (Link) field in DocType 'Item Tax Template Detail' +#. Label of the tax_tab (Tab Break) field in DocType 'Supplier' +#. Label of the tax_tab (Tab Break) field in DocType 'Customer' +#. Label of the item_tax_section_break (Tab Break) field in DocType 'Item' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json +#: erpnext/accounts/report/account_balance/account_balance.js:60 +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +msgid "Tax" +msgstr "" + +#. Label of the tax_account (Link) field in DocType 'Import Supplier Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Tax Account" +msgstr "" + +#. Label of the amount (Currency) field in DocType 'Item Wise Tax Detail' +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:244 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:91 +msgid "Tax Amount" +msgstr "" + +#. Label of the tax_amount_after_discount_amount (Currency) field in DocType +#. 'Purchase Taxes and Charges' +#. Label of the base_tax_amount_after_discount_amount (Currency) field in +#. DocType 'Purchase Taxes and Charges' +#. Label of the tax_amount_after_discount_amount (Currency) field in DocType +#. 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Tax Amount After Discount Amount" +msgstr "" + +#. Label of the base_tax_amount_after_discount_amount (Currency) field in +#. DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Tax Amount After Discount Amount (Company Currency)" +msgstr "" + +#. Description of the 'Round tax amount row-wise' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Tax Amount will be rounded on a row(items) level" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74 +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256 +msgid "Tax Assets" +msgstr "" + +#. Label of the sec_tax_breakup (Section Break) field in DocType 'POS Invoice' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the tax_breakup (Section Break) field in DocType 'Supplier +#. Quotation' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Quotation' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Sales Order' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Delivery +#. Note' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Tax Breakup" +msgstr "" + +#. Label of the tax_category (Link) field in DocType 'POS Invoice' +#. Label of the tax_category (Link) field in DocType 'POS Profile' +#. Label of the tax_category (Link) field in DocType 'Purchase Invoice' +#. Label of the tax_category (Link) field in DocType 'Purchase Taxes and +#. Charges Template' +#. Label of the tax_category (Link) field in DocType 'Sales Invoice' +#. Label of the tax_category (Link) field in DocType 'Sales Taxes and Charges +#. Template' +#. Name of a DocType +#. Label of the tax_category (Link) field in DocType 'Tax Rule' +#. Label of a Link in the Invoicing Workspace +#. Label of the tax_category (Link) field in DocType 'Purchase Order' +#. Label of the tax_category (Link) field in DocType 'Supplier' +#. Label of the tax_category (Link) field in DocType 'Supplier Quotation' +#. Label of the tax_category (Link) field in DocType 'Customer' +#. Label of the tax_category (Link) field in DocType 'Quotation' +#. Label of the tax_category (Link) field in DocType 'Sales Order' +#. Label of the tax_category (Link) field in DocType 'Delivery Note' +#. Label of the tax_category (Link) field in DocType 'Item Tax' +#. Label of the tax_category (Link) field in DocType 'Purchase Receipt' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +#: erpnext/accounts/doctype/tax_category/tax_category.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/install.py:144 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/item_tax/item_tax.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Tax Category" +msgstr "" + +#: erpnext/controllers/buying_controller.py:261 +msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235 +msgid "Tax Expense" +msgstr "" + +#. Label of the tax_id (Data) field in DocType 'Tax Withholding Entry' +#. Label of the tax_id (Data) field in DocType 'Supplier' +#. Label of the tax_id (Data) field in DocType 'Customer' +#. Label of the tax_id (Data) field in DocType 'Company' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/regional/report/irs_1099/irs_1099.py:81 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/company/company.json +msgid "Tax ID" +msgstr "" + +#. Label of the tax_id (Data) field in DocType 'POS Invoice' +#. Label of the tax_id (Read Only) field in DocType 'Purchase Invoice' +#. Label of the tax_id (Data) field in DocType 'Sales Invoice' +#. Label of the tax_id (Data) field in DocType 'Sales Order' +#. Label of the tax_id (Data) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:86 +#: erpnext/accounts/report/general_ledger/general_ledger.js:142 +#: erpnext/accounts/report/purchase_register/purchase_register.py:194 +#: erpnext/accounts/report/sales_register/sales_register.py:215 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:67 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:205 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:57 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Tax Id" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:32 +msgid "Tax Id: {0}" +msgstr "" + +#. Label of the taxation_section (Section Break) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Tax Identification" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Tax Masters" +msgstr "" + +#. Label of the tax_rate (Float) field in DocType 'Account' +#. Label of the rate (Float) field in DocType 'Advance Taxes and Charges' +#. Label of the tax_rate (Float) field in DocType 'Item Tax Template Detail' +#. Label of the rate (Float) field in DocType 'Item Wise Tax Detail' +#. Label of the rate (Float) field in DocType 'Purchase Taxes and Charges' +#. Label of the rate (Float) field in DocType 'Sales Taxes and Charges' +#. Label of the tax_rate (Percent) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account_tree.js:170 +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:66 +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Tax Rate" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:237 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:84 +msgid "Tax Rate %" +msgstr "" + +#. Label of the taxes (Table) field in DocType 'Item Tax Template' +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.json +msgid "Tax Rates" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65 +msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme" +msgstr "" + +#. Label of the tax_row (Data) field in DocType 'Item Wise Tax Detail' +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +msgid "Tax Row" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Tax Rule" +msgstr "" + +#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138 +msgid "Tax Rule Conflicts with {0}" +msgstr "" + +#. Label of the tax_settings_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Tax Settings" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/selling.json +msgid "Tax Template" +msgstr "" + +#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86 +msgid "Tax Template is mandatory." +msgstr "" + +#: erpnext/accounts/report/sales_register/sales_register.py:295 +msgid "Tax Total" +msgstr "" + +#. Label of the tax_type (Select) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Tax Type" +msgstr "" + +#. Label of the tax_withholding_tab (Tab Break) field in DocType 'Journal +#. Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Tax Withholding" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/tax_withholding_account/tax_withholding_account.json +msgid "Tax Withholding Account" +msgstr "" + +#. Label of the tax_withholding_category (Link) field in DocType 'Journal +#. Entry' +#. Label of the tax_withholding_category (Link) field in DocType 'Payment +#. Entry' +#. Label of the tax_withholding_category (Link) field in DocType 'Purchase +#. Invoice Item' +#. Label of the tax_withholding_category (Link) field in DocType 'Sales Invoice +#. Item' +#. Name of a DocType +#. Label of the tax_withholding_category (Link) field in DocType 'Tax +#. Withholding Entry' +#. Label of a Link in the Invoicing Workspace +#. Label of the tax_withholding_category (Link) field in DocType 'Supplier' +#. Label of the tax_withholding_category (Link) field in DocType 'Lower +#. Deduction Certificate' +#. Label of the tax_withholding_category (Link) field in DocType 'Customer' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:199 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:72 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Tax Withholding Category" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Tax Withholding Details" +msgstr "" + +#. Label of the tax_withholding_entries (Table) field in DocType 'Journal +#. Entry' +#. Label of the tax_withholding_entries (Table) field in DocType 'Payment +#. Entry' +#. Label of the tax_withholding_entries (Table) field in DocType 'Purchase +#. Invoice' +#. Label of the tax_withholding_entries (Table) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Tax Withholding Entries" +msgstr "" + +#. Label of the section_tax_withholding_entry (Section Break) field in DocType +#. 'Payment Entry' +#. Label of the section_tax_withholding_entry (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the section_tax_withholding_entry (Section Break) field in DocType +#. 'Sales Invoice' +#. Name of a DocType +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Tax Withholding Entry" +msgstr "" + +#. Label of the tax_withholding_group (Link) field in DocType 'Journal Entry' +#. Label of the tax_withholding_group (Link) field in DocType 'Payment Entry' +#. Label of the tax_withholding_group (Link) field in DocType 'Purchase +#. Invoice' +#. Label of the tax_withholding_group (Link) field in DocType 'Sales Invoice' +#. Label of the tax_withholding_group (Link) field in DocType 'Tax Withholding +#. Entry' +#. Name of a DocType +#. Label of the tax_withholding_group (Link) field in DocType 'Tax Withholding +#. Rate' +#. Label of the tax_withholding_group (Link) field in DocType 'Supplier' +#. Label of the tax_withholding_group (Link) field in DocType 'Customer' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/doctype/tax_withholding_group/tax_withholding_group.json +#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Tax Withholding Group" +msgstr "" + +#. Name of a DocType +#. Label of the tax_withholding_rate (Float) field in DocType 'Tax Withholding +#. Rate' +#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json +msgid "Tax Withholding Rate" +msgstr "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Tax Withholding Rates" +msgstr "" + +#. Description of the 'Item Tax Rate' (Code) field in DocType 'Purchase Invoice +#. Item' +#. Description of the 'Item Tax Rate' (Code) field in DocType 'Purchase Order +#. Item' +#. Description of the 'Item Tax Rate' (Code) field in DocType 'Supplier +#. Quotation Item' +#. Description of the 'Item Tax Rate' (Code) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Tax detail table fetched from item master as a string and stored in this field.\n" +"Used for Taxes and Charges" +msgstr "" + +#. Description of the 'Only Deduct Tax On Excess Amount ' (Check) field in +#. DocType 'Tax Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Tax withheld only for amount exceeding cumulative threshold" +msgstr "" + +#. Label of the taxable_amount (Currency) field in DocType 'Item Wise Tax +#. Detail' +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 +#: erpnext/controllers/taxes_and_totals.py:1264 +msgid "Taxable Amount" +msgstr "" + +#. Label of the taxable_date (Date) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Taxable Date" +msgstr "" + +#. Label of the taxable_name (Dynamic Link) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Taxable Document Name" +msgstr "" + +#. Label of the taxable_doctype (Link) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Taxable Document Type" +msgstr "" + +#. Label of the taxes (Table) field in DocType 'POS Closing Entry' +#. Label of the taxes_section (Section Break) field in DocType 'POS Profile' +#. Label of the sb_1 (Section Break) field in DocType 'Subscription' +#. Label of a Desktop Icon +#. Label of the taxes_section (Section Break) field in DocType 'Sales Order' +#. Label of the taxes (Table) field in DocType 'Item Group' +#. Label of the taxes (Table) field in DocType 'Item' +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:60 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:12 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:27 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:43 +#: erpnext/desktop_icon/taxes.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/stock/doctype/item/item.json erpnext/workspace_sidebar/taxes.json +msgid "Taxes" +msgstr "" + +#. Label of the taxes_and_charges_section (Section Break) field in DocType +#. 'Payment Entry' +#. Label of the taxes_and_charges_section (Section Break) field in DocType 'POS +#. Closing Entry' +#. Label of the taxes_and_charges (Link) field in DocType 'POS Profile' +#. Label of the taxes_section (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the taxes_section (Section Break) field in DocType 'Sales Invoice' +#. Label of the taxes_section (Section Break) field in DocType 'Purchase Order' +#. Label of the taxes_section (Section Break) field in DocType 'Supplier +#. Quotation' +#. Label of the taxes_section (Section Break) field in DocType 'Quotation' +#. Label of the taxes_section (Section Break) field in DocType 'Delivery Note' +#. Label of the taxes_charges_section (Section Break) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:75 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges" +msgstr "" + +#. Label of the taxes_and_charges_added (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the taxes_and_charges_added (Currency) field in DocType 'Purchase +#. Order' +#. Label of the taxes_and_charges_added (Currency) field in DocType 'Supplier +#. Quotation' +#. Label of the taxes_and_charges_added (Currency) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges Added" +msgstr "" + +#. Label of the base_taxes_and_charges_added (Currency) field in DocType +#. 'Purchase Invoice' +#. Label of the base_taxes_and_charges_added (Currency) field in DocType +#. 'Purchase Order' +#. Label of the base_taxes_and_charges_added (Currency) field in DocType +#. 'Supplier Quotation' +#. Label of the base_taxes_and_charges_added (Currency) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges Added (Company Currency)" +msgstr "" + +#. Label of the other_charges_calculation (Text Editor) field in DocType 'POS +#. Invoice' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Purchase Invoice' +#. Label of the other_charges_calculation (Text Editor) field in DocType 'Sales +#. Invoice' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Purchase Order' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Supplier Quotation' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Quotation' +#. Label of the other_charges_calculation (Text Editor) field in DocType 'Sales +#. Order' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Delivery Note' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges Calculation" +msgstr "" + +#. Label of the taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Invoice' +#. Label of the taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Order' +#. Label of the taxes_and_charges_deducted (Currency) field in DocType +#. 'Supplier Quotation' +#. Label of the taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges Deducted" +msgstr "" + +#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Invoice' +#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Order' +#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType +#. 'Supplier Quotation' +#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges Deducted (Company Currency)" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:420 +msgid "Taxes row #{0}: {1} cannot be smaller than {2}" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'Asset +#. Maintenance Team' +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +msgid "Team" +msgstr "" + +#. Label of the team_member (Link) field in DocType 'Maintenance Team Member' +#: erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.json +msgid "Team Member" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Teaspoon" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Technical Atmosphere" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:47 +msgid "Technology" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:48 +msgid "Telecommunications" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218 +msgid "Telephone Expenses" +msgstr "" + +#. Name of a DocType +#: erpnext/telephony/doctype/telephony_call_type/telephony_call_type.json +msgid "Telephony Call Type" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:49 +msgid "Television" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:455 +msgid "Template Item" +msgstr "" + +#: erpnext/stock/get_item_details.py:361 +msgid "Template Item Selected" +msgstr "" + +#. Label of the template_task (Data) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Template Task" +msgstr "" + +#. Label of the template_title (Data) field in DocType 'Journal Entry Template' +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Template Title" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:29 +msgid "Temporarily on Hold" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/report/account_balance/account_balance.js:61 +msgid "Temporary" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134 +msgid "Temporary Accounts" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135 +msgid "Temporary Opening" +msgstr "" + +#. Label of the temporary_opening_account (Link) field in DocType 'Opening +#. Invoice Creation Tool Item' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +msgid "Temporary Opening Account" +msgstr "" + +#. Label of the terms (Text Editor) field in DocType 'Quotation' +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Term Details" +msgstr "" + +#. Label of the tc_name (Link) field in DocType 'POS Invoice' +#. Label of the terms_tab (Tab Break) field in DocType 'POS Invoice' +#. Label of the tc_name (Link) field in DocType 'Purchase Invoice' +#. Label of the terms_tab (Tab Break) field in DocType 'Purchase Invoice' +#. Label of the tc_name (Link) field in DocType 'Sales Invoice' +#. Label of the terms_tab (Tab Break) field in DocType 'Sales Invoice' +#. Label of the tc_name (Link) field in DocType 'Purchase Order' +#. Label of the terms_tab (Tab Break) field in DocType 'Purchase Order' +#. Label of the tc_name (Link) field in DocType 'Request for Quotation' +#. Label of the terms_tab (Tab Break) field in DocType 'Supplier Quotation' +#. Label of the tc_name (Link) field in DocType 'Blanket Order' +#. Label of the tc_name (Link) field in DocType 'Quotation' +#. Label of the terms_tab (Tab Break) field in DocType 'Quotation' +#. Label of the payment_schedule_section (Tab Break) field in DocType 'Sales +#. Order' +#. Label of the tc_name (Link) field in DocType 'Sales Order' +#. Label of the tc_name (Link) field in DocType 'Delivery Note' +#. Label of the terms_tab (Tab Break) field in DocType 'Delivery Note' +#. Label of the tc_name (Link) field in DocType 'Material Request' +#. Label of the terms_tab (Tab Break) field in DocType 'Material Request' +#. Label of the tc_name (Link) field in DocType 'Purchase Receipt' +#. Label of the terms_tab (Tab Break) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Terms" +msgstr "" + +#. Label of the terms_section_break (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the terms_section_break (Section Break) field in DocType 'Sales +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Terms & Conditions" +msgstr "" + +#. Label of the tc_name (Link) field in DocType 'Supplier Quotation' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/workspace_sidebar/selling.json +msgid "Terms Template" +msgstr "" + +#. Label of the terms_section_break (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the tc_name (Link) field in DocType 'POS Profile' +#. Label of the terms_and_conditions (Link) field in DocType 'Process Statement +#. Of Accounts' +#. Label of the terms_section_break (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the terms (Text Editor) field in DocType 'Purchase Invoice' +#. Label of the terms_section_break (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of a Link in the Invoicing Workspace +#. Label of the terms (Text Editor) field in DocType 'Purchase Order' +#. Label of the terms_section_break (Section Break) field in DocType 'Request +#. for Quotation' +#. Label of the terms (Text Editor) field in DocType 'Request for Quotation' +#. Label of the terms (Text Editor) field in DocType 'Supplier Quotation' +#. Label of the terms_and_conditions_section (Section Break) field in DocType +#. 'Blanket Order' +#. Label of the terms_and_conditions (Text) field in DocType 'Blanket Order +#. Item' +#. Label of the terms_section_break (Section Break) field in DocType +#. 'Quotation' +#. Name of a DocType +#. Label of the terms (Text Editor) field in DocType 'Terms and Conditions' +#. Label of the terms (Text Editor) field in DocType 'Purchase Receipt' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Terms and Conditions" +msgstr "" + +#. Label of the terms (Text Editor) field in DocType 'Material Request' +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Terms and Conditions Content" +msgstr "" + +#. Label of the terms (Text Editor) field in DocType 'POS Invoice' +#. Label of the terms (Text Editor) field in DocType 'Sales Invoice' +#. Label of the terms (Text Editor) field in DocType 'Blanket Order' +#. Label of the terms (Text Editor) field in DocType 'Sales Order' +#. Label of the terms (Text Editor) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Terms and Conditions Details" +msgstr "" + +#. Label of the terms_and_conditions_help (HTML) field in DocType 'Terms and +#. Conditions' +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +msgid "Terms and Conditions Help" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Selling Workspace +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +msgid "Terms and Conditions Template" +msgstr "" + +#. Label of the territory (Link) field in DocType 'POS Invoice' +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the territory (Link) field in DocType 'Pricing Rule' +#. Option for the 'Select Customers By' (Select) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the territory (Link) field in DocType 'Process Statement Of +#. Accounts' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the territory (Table MultiSelect) field in DocType 'Promotional +#. Scheme' +#. Label of the territory (Link) field in DocType 'Sales Invoice' +#. Label of the territory (Link) field in DocType 'Territory Item' +#. Label of the territory (Link) field in DocType 'Lead' +#. Label of the territory (Link) field in DocType 'Opportunity' +#. Label of the territory (Link) field in DocType 'Prospect' +#. Label of a Link in the CRM Workspace +#. Label of the territory (Link) field in DocType 'Maintenance Schedule' +#. Label of the territory (Link) field in DocType 'Maintenance Visit' +#. Label of the territory (Link) field in DocType 'Customer' +#. Label of the territory (Link) field in DocType 'Installation Note' +#. Label of the territory (Link) field in DocType 'Quotation' +#. Label of the territory (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Label of the territory (Link) field in DocType 'Sales Partner' +#. Name of a DocType +#. Label of a Link in the Home Workspace +#. Label of the territory (Link) field in DocType 'Delivery Note' +#. Option for the 'Entity Type' (Select) field in DocType 'Service Level +#. Agreement' +#. Label of the territory (Link) field in DocType 'Warranty Claim' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/territory_item/territory_item.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:142 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1242 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:108 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:184 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:68 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:169 +#: erpnext/accounts/report/gross_profit/gross_profit.py:436 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:8 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:22 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:259 +#: erpnext/accounts/report/sales_register/sales_register.py:209 +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/crm/report/lead_details/lead_details.js:46 +#: erpnext/crm/report/lead_details/lead_details.py:34 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:36 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:63 +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/public/js/sales_trends_filters.js:27 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:103 +#: erpnext/selling/report/inactive_customers/inactive_customers.py:99 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:88 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:43 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:47 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:160 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:59 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:29 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:46 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:59 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:59 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:81 +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:22 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/setup/doctype/territory/territory.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json +msgid "Territory" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/territory_item/territory_item.json +msgid "Territory Item" +msgstr "" + +#. Label of the territory_manager (Link) field in DocType 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "Territory Manager" +msgstr "" + +#. Label of the territory_name (Data) field in DocType 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "Territory Name" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Territory Target Variance Based On Item Group" +msgstr "" + +#. Label of the target_details_section_break (Section Break) field in DocType +#. 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "Territory Targets" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.json +msgid "Territory-wise Sales" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Tesla" +msgstr "" + +#. Description of the 'Display Name' (Data) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 +msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +msgstr "" + +#. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "The BOM which will be replaced" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1555 +msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:71 +msgid "The Campaign '{0}' already exists for the {1} '{2}'" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.py:71 +msgid "The Company {0} of Sales Forecast {1} does not match with the Company {2} of Master Production Schedule {3}." +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:206 +msgid "The Document Type {0} must have a Status field to configure Service Level Agreement" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:347 +msgid "The Excluded Fee is bigger than the Deposit it is deducted from." +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:180 +msgid "The GL Entries and closing balances will be processed in the background, it can take a few minutes." +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:456 +msgid "The GL Entries will be cancelled in the background, it can take a few minutes." +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 +msgid "The Loyalty Program isn't valid for the selected company" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:1269 +msgid "The Payment Request {0} is already paid, cannot process payment twice" +msgstr "" + +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py:50 +msgid "The Payment Term at row {0} is possibly a duplicate." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:343 +msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 +msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.py:102 +msgid "The Sales Person is linked with {0}" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:209 +msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:17 +msgid "The Stock Entry of type 'Manufacture' is known as backflush. Raw materials being consumed to manufacture finished goods is known as backflushing.

        When creating Manufacture Entry, raw-material items are backflushed based on BOM of production item. If you want raw-material items to be backflushed based on Material Transfer entry made against that Work Order instead, then you can set it under this field." +msgstr "" + +#. Description of the 'Closing Account Head' (Link) field in DocType 'Period +#. Closing Voucher' +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +msgid "The account head under Liability or Equity, in which Profit/Loss will be booked" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:1163 +msgid "The allocated amount is greater than the outstanding amount of Payment Request {0}" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:194 +msgid "The amount format detected in the statement file. This is used to parse the deposit and withdrawal values from each row." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:220 +msgid "The amount of {0} set in this payment request is different from the calculated amount of all payment plans: {1}. Make sure this is correct before submitting the document." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:97 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:505 +msgid "The bank account is disabled. Please enable it" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:91 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:499 +msgid "The bank account is not a company account. Please select a company account" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:650 +msgid "The batch {0} is already reserved in {1} {2}. So, cannot proceed with the {3} {4}, which is created against the {5} {6}." +msgstr "" + +#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:41 +msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa." +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22 +msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.py:87 +msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +msgid "The current POS opening entry is outdated. Please close it and create a new one." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:208 +msgid "The date format detected in the statement file. This is used to parse the date values." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:185 +msgid "The date of the transaction" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1227 +msgid "The default BOM for that item will be fetched by the system. You can also change the BOM." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:200 +msgid "The description of the transaction" +msgstr "" + +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py:67 +msgid "The difference between from time and To Time must be a multiple of Appointment" +msgstr "" + +#: banking/src/components/common/FileUploadBanner.tsx:11 +msgid "The document has been created and reconciled. Uploading attachments..." +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:177 +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:185 +msgid "The field Asset Account cannot be blank" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:192 +msgid "The field Equity/Liability Account cannot be blank" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:173 +msgid "The field From Shareholder cannot be blank" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:181 +msgid "The field To Shareholder cannot be blank" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:375 +msgid "The field {0} in row {1} is not set" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 +msgid "The fields From Shareholder and To Shareholder cannot be blank" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:171 +msgid "The file should contain the following columns with a distinct header row. You can upload most bank statements as is without changing the columns." +msgstr "" + +#. Description of the 'Item to Manufacture' (Link) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "The final item that will be produced using this BOM." +msgstr "" + +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:40 +msgid "The fiscal year has been automatically created in a Disabled state to maintain consistency with the previous fiscal year's status." +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:240 +msgid "The folio numbers are not matching" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 +msgid "The following Items, having Putaway Rules, could not be accomodated:" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:137 +msgid "The following Purchase Invoices are not submitted:" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:350 +msgid "The following assets have failed to automatically post depreciation entries: {0}" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:307 +msgid "The following batches are expired, please restock them:
        {0}" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:372 +msgid "The following cancelled repost entries exist for {0}:

        {1}

        Kindly delete these entries before continuing." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:951 +msgid "The following deleted attributes exist in Variants but not in the Template. You can either delete the Variants or keep the attribute(s) in template." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:286 +msgid "The following employees are currently still reporting to {0}:" +msgstr "" + +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 +msgid "The following invalid Pricing Rules are deleted:" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:782 +msgid "The following payment schedule(s) already exist:\n" +"{0}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:111 +msgid "The following rows are duplicates:" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:567 +msgid "The following {0} were created: {1}" +msgstr "" + +#. Description of the 'How often should sales data be updated in +#. Company/Project?' (Select) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "The frequency at which project progress and company transaction details will be updated. Set it to daily or monthly if you post a lot of transactions." +msgstr "" + +#. Description of the 'Gross Weight' (Float) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "The gross weight of the package. Usually net weight + packaging material weight. (for print)" +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.py:126 +msgid "The holiday on {0} is not between From Date and To Date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:788 +msgid "The invoice is not fully allocated as there is a difference of {0}." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1244 +msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:677 +msgid "The items {0} and {1} are present in the following {2} :" +msgstr "" + +#: erpnext/controllers/buying_controller.py:1237 +msgid "The items {items} are not marked as {type_of} item. You can enable them as {type_of} item from their Item masters." +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:595 +msgid "The job card {0} is in {1} state and you cannot complete." +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:589 +msgid "The job card {0} is in {1} state and you cannot start it again." +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:87 +msgid "The last account row must not have any debit or credit amounts set." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:533 +msgid "The last scanned warehouse has been cleared and won't be set in the subsequently scanned items" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:48 +msgid "The lowest tier must have a minimum spent amount of 0. Customers need to be part of a tier as soon as they are enrolled in the program." +msgstr "" + +#. Description of the 'Net Weight' (Float) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "The net weight of this package. (calculated automatically as sum of net weight of items)" +msgstr "" + +#. Description of the 'New BOM' (Link) field in DocType 'BOM Update Tool' +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "The new BOM after replacement" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:196 +msgid "The number of shares and the share numbers are inconsistent" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:987 +msgid "The opening balance might not match your bank statement. Would you like to reconcile them?" +msgstr "" + +#: erpnext/manufacturing/doctype/operation/operation.py:43 +msgid "The operation {0} can not add multiple times" +msgstr "" + +#: erpnext/manufacturing/doctype/operation/operation.py:48 +msgid "The operation {0} can not be the sub operation" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 +msgid "The original invoice should be consolidated before or along with the return invoice." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:199 +msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice." +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:234 +msgid "The parent account {0} does not exists in the uploaded template" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:209 +msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request" +msgstr "" + +#. Description of the 'Over Order Allowance (%)' (Float) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units" +msgstr "" + +#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "The percentage you are allowed to bill more against the amount ordered. For example, if the order value is $100 for an item and tolerance is set as 10%, then you are allowed to bill up to $110 " +msgstr "" + +#. Description of the 'Over Picking Allowance (%)' (Percent) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "The percentage you are allowed to pick more items in the pick list than the ordered quantity." +msgstr "" + +#. Description of the 'Over Delivery/Receipt Allowance (%)' (Float) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "The 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." +msgstr "" + +#. Description of the 'Over Transfer Allowance (%)' (Float) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." +msgstr "" + +#. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:205 +msgid "The reference number of the transaction" +msgstr "" + +#: erpnext/public/js/utils.js:959 +msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.js:169 +msgid "The reserved stock will be released. Are you certain you wish to proceed?" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:222 +msgid "The root account {0} must be a group" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:87 +msgid "The selected BOMs are not for the same item" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 +msgid "The selected change account {} doesn't belongs to Company {}." +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:157 +msgid "The selected item cannot have Batch" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:657 +msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone.

        Do you want to continue?" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:194 +msgid "The seller and the buyer cannot be the same" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 +msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:386 +msgid "The serial no {0} does not belong to item {1}" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:230 +msgid "The shareholder does not belong to this company" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:160 +msgid "The shares already exist" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:166 +msgid "The shares don't exist with the {0}" +msgstr "" + +#: erpnext/stock/stock_ledger.py:833 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

        {1}" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:37 +msgid "The sync has started in the background, please check the {0} list for new records." +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:484 +msgid "The system found a mirror transaction ({0}) in another account with the same amount and date." +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:106 +msgid "The system will attempt to automatically match a party to a bank transaction based on account number or IBAN." +msgstr "" + +#. Description of the 'Invoice Type Created via POS Screen' (Select) field in +#. DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:352 +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:359 +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:43 +msgid "The uploaded file could not be parsed as a genericode XML document." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:153 +msgid "The uploaded file does not appear to be in valid MT940 format." +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:40 +msgid "The uploaded file does not match the selected Code List." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:10 +msgid "The user cannot submit the Serial and Batch Bundle manually" +msgstr "" + +#. Description of the 'Transfer Extra Raw Materials to WIP (%)' (Percent) field +#. in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "The user will be able to transfer additional materials from the store to the Work in Progress (WIP) warehouse." +msgstr "" + +#. Description of the 'Role allowed to edit frozen stock' (Link) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "The users with this Role are allowed to create/modify a stock transaction, even though the transaction is frozen." +msgstr "" + +#: erpnext/stock/doctype/item_alternative/item_alternative.py:58 +msgid "The value of {0} differs between Items {1} and {2}" +msgstr "" + +#: erpnext/controllers/item_variant.py:206 +msgid "The value {0} is already assigned to an existing Item {1}." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1255 +msgid "The warehouse where you store finished Items before they are shipped." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1248 +msgid "The warehouse where you store your raw materials. Each required item can have a separate source warehouse. Group warehouse also can be selected as source warehouse. On submission of the Work Order, the raw materials will be reserved in these warehouses for production usage." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1260 +msgid "The warehouse where your Items will be transferred when you begin production. Group Warehouse can also be selected as a Work in Progress warehouse." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:195 +msgid "The withdrawal or deposit amounts - only required if there's no amount column." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:959 +msgid "The {0} ({1}) must be equal to {2} ({3})" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:3380 +msgid "The {0} contains Unit Price Items." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:491 +msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:573 +msgid "The {0} {1} created successfully" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:42 +msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1075 +msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:74 +msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:730 +msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:201 +msgid "There are inconsistencies between the rate, no of shares and the amount calculated" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:207 +msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:69 +msgid "There are no Failed transactions" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:236 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:226 +msgid "There are no accounting entries in the system for the selected account and dates." +msgstr "" + +#: erpnext/setup/demo.py:130 +msgid "There are no active Fiscal Years for which Demo Data can be generated." +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:220 +msgid "There are no entries in the system where the clearance date is before the posting date." +msgstr "" + +#: erpnext/www/book_appointment/index.js:95 +msgid "There are no slots available on this date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:289 +msgid "There are no transactions in the system for the selected bank account and dates that match the filters." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1501 +msgid "There are two options to maintain valuation of stock. FIFO (first in - first out) and Moving Average. To understand this topic in detail please visit
        Item Valuation, FIFO and Moving Average." +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:982 +msgid "There are {0} unreconciled transactions before {1}." +msgstr "" + +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There aren't any item variants for the selected item" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 +msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." +msgstr "" + +#: erpnext/accounts/party.py:597 +msgid "There can only be 1 Account per Company in {0} {1}" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:86 +msgid "There can only be one Shipping Rule Condition with 0 or blank value for \"To Value\"" +msgstr "" + +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:65 +msgid "There is already a valid Lower Deduction Certificate {0} for Supplier {1} against category {2} for this time period." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:77 +msgid "There is already an active Subcontracting BOM {0} for the Finished Good {1}." +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:394 +msgid "There is no batch found against the {0}: {1}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:984 +msgid "There is one unreconciled transaction before {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 +msgid "There must be atleast 1 Finished Good in this Stock Entry" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +msgid "There was an error creating Bank Account while linking with Plaid." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +msgid "There was an error syncing transactions." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 +msgid "There was an error updating Bank Account {} while linking with Plaid." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 +msgid "There was an error while importing the bank statement." +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:351 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:88 +msgid "There was an error while performing the action." +msgstr "" + +#: banking/src/components/ui/error-banner.tsx:21 +msgid "There was an error." +msgstr "" + +#: erpnext/accounts/doctype/bank/bank.js:112 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:119 +msgid "There was an issue connecting to Plaid's authentication server. Check browser console for more information" +msgstr "" + +#: erpnext/accounts/utils.py:1145 +msgid "There were issues unlinking payment entry {0}." +msgstr "" + +#. Description of the 'Zero Balance' (Check) field in DocType 'Exchange Rate +#. Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "This Account has '0' balance in either Base Currency or Account Currency" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:73 +msgid "This Fiscal Year" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:220 +msgid "This Item is a Template and cannot be used in transactions.
        All fields present in the 'Copy Fields to Variant' table in Item Variant Settings will be copied to its variant items." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:277 +msgid "This Item is a Variant of {0} (Template)." +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:175 +msgid "This Month's Summary" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:937 +msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:253 +msgid "This Purchase Order has been fully subcontracted." +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:1054 +msgid "This Sales Order has been fully subcontracted." +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:172 +msgid "This Week's Summary" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:69 +msgid "This action will stop future billing. Are you sure you want to cancel this subscription?" +msgstr "" + +#: erpnext/accounts/doctype/bank_account/bank_account.js:35 +msgid "This action will unlink this account from any external service integrating ERPNext with your bank accounts. It cannot be undone. Are you certain ?" +msgstr "" + +#. Description of the 'Allow Sales Order creation for expired Quotation' +#. (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:432 +msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." +msgstr "" + +#. Description of the 'Allow negative stock' (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "This can be enabled at specific Item level as well" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:190 +msgid "This can contain \"CR\"/\"DR\" values or positive/negative values. You could also have a separate column for CR/DR." +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_dashboard.py:7 +msgid "This covers all scorecards tied to this Setup" +msgstr "" + +#: erpnext/controllers/status_updater.py:490 +msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.js:496 +msgid "This field is used to set the 'Customer'." +msgstr "" + +#. Description of the 'Bank / Cash Account' (Link) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "This filter will be applied to Journal Entry." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:872 +msgid "This invoice has already been paid." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:310 +msgid "This is a Template BOM and will be used to make the work order for {0} of the item {1}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:466 +msgid "This is a formula based value." +msgstr "" + +#. Description of the 'Target Warehouse' (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "This is a location where final product stored." +msgstr "" + +#. Description of the 'Work-in-Progress Warehouse' (Link) field in DocType +#. 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "This is a location where operations are executed." +msgstr "" + +#. Description of the 'Source Warehouse' (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "This is a location where raw materials are available." +msgstr "" + +#. Description of the 'Scrap Warehouse' (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "This is a location where scraped materials are stored." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:319 +msgid "This is a preview of the email to be sent. A PDF of the document will automatically be attached with the email." +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:45 +msgid "This is a root account and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/customer_group/customer_group.js:44 +msgid "This is a root customer group and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/department/department.js:14 +msgid "This is a root department and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.js:98 +msgid "This is a root item group and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.js:46 +msgid "This is a root sales person and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/supplier_group/supplier_group.js:43 +msgid "This is a root supplier group and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/territory/territory.js:22 +msgid "This is a root territory and cannot be edited." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:424 +msgid "This is auto computed to balance the journal entry." +msgstr "" + +#: erpnext/stock/doctype/item/item_dashboard.py:7 +msgid "This is based on stock movement. See {0} for details" +msgstr "" + +#: erpnext/projects/doctype/project/project_dashboard.py:7 +msgid "This is based on the Time Sheets created against this project" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:7 +msgid "This is based on transactions against this Sales Person. See timeline below for details" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:107 +msgid "This is considered dangerous from accounting point of view." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:97 +msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1241 +msgid "This is enabled by default. If you want to plan materials for sub-assemblies of the Item you're manufacturing leave this enabled. If you plan and manufacture the sub-assemblies separately, you can disable this checkbox." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1489 +msgid "This is for raw material Items that'll be used to create finished goods. If the Item is an additional service like 'washing' that'll be used in the BOM, keep this unchecked." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:466 +msgid "This is not a valid formula. Check the variable used in the formula." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:198 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:266 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:279 +msgid "This is required" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:599 +msgid "This is the bank account entry. You cannot edit it." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/RawTableGrid.tsx:136 +msgid "This is the header row. Click to mark the table as having no header." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:693 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:708 +msgid "This is the last row. It will be auto populated based on the bank transaction." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:600 +msgid "This is the row for the bank account. It will be auto populated based on the bank transaction." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:77 +msgid "This is what the system expects the closing balance to be in your bank statement." +msgstr "" + +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +msgid "This item filter has already been applied for the {0}" +msgstr "" + +#: erpnext/www/banking.py:35 +msgid "This method is only meant for developer mode" +msgstr "" + +#. Header text in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "This module is scheduled for deprecation and will be completely removed in version 17, please use Frappe CRM instead." +msgstr "" + +#. Header text in the Support Workspace +#: erpnext/support/workspace/support/support.json +msgid "This module is scheduled for deprecation and will be completely removed in version 17, please use Frappe Helpdesk instead." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.js:509 +msgid "This option can be checked to edit the 'Posting Date' and 'Posting Time' fields." +msgstr "" + +#. Description of the 'Raise Material Request when stock reaches re-order +#. level' (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "This option is useful if you want to ensure a constant supply of raw materials/products and avoid shortage. A Material Request will be raised automatically when stock reached the re-order level defined in the Item form." +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:185 +msgid "This report shows all entries in the system where the clearance date is before the posting date which is incorrect." +msgstr "" + +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:212 +msgid "This schedule was created when Asset {0} was adjusted through Asset Value Adjustment {1}." +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:91 +msgid "This schedule was created when Asset {0} was consumed through Asset Capitalization {1}." +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:328 +msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:176 +msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation." +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:459 +msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:466 +msgid "This schedule was created when Asset {0} was restored." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:173 +msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:424 +msgid "This schedule was created when Asset {0} was scrapped." +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:338 +msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:162 +msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}." +msgstr "" + +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:219 +msgid "This schedule was created when Asset {0}'s Asset Value Adjustment {1} was cancelled." +msgstr "" + +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:206 +msgid "This schedule was created when Asset {0}'s shifts were adjusted through Asset Shift Allocation {1}." +msgstr "" + +#: banking/src/pages/BankReconciliation.tsx:90 +msgid "This screen is not supported on mobile devices." +msgstr "" + +#. Description of the 'Dunning Letter' (Section Break) field in DocType +#. 'Dunning Type' +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +msgid "This section allows the user to set the Body and Closing text of the Dunning Letter for the Dunning Type based on language, which can be used in Print." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +msgid "This statement has already been imported." +msgstr "" + +#. Description of the 'Supplier' (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "This supplier will be auto-selected in new purchase transactions" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.js:502 +msgid "This table is used to set details about the 'Item', 'Qty', 'Basic Rate', etc." +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "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." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx:52 +msgid "This transaction has been reconciled with the following document(s):" +msgstr "" + +#. Description of the 'Default Common Code' (Link) field in DocType 'Code List' +#: erpnext/edi/doctype/code_list/code_list.json +msgid "This value shall be used when no matching Common Code for a record is found." +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:86 +msgid "This will automatically run transaction matching rules on unreconciled transactions every hour." +msgstr "" + +#. Description of the 'Abbreviation' (Data) field in DocType 'Item Attribute +#. Value' +#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json +msgid "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\"" +msgstr "" + +#. Description of the 'Have default Naming Series for Batch ID?' (Check) field +#. in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "This will be applied if no naming series is configured in Item master" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:346 +msgid "This will be auto-populated if not set." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:264 +msgid "This will just suggest creating a new entry, and will not automatically create it." +msgstr "" + +#. Description of the 'Create User Permission' (Check) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "This will restrict user access to other employee records" +msgstr "" + +#: erpnext/controllers/selling_controller.py:901 +msgid "This {} will be treated as material transfer." +msgstr "" + +#. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Threshold Exemption" +msgstr "" + +#. Label of the threshold_percentage (Percent) field in DocType 'Promotional +#. Scheme Price Discount' +#. Label of the threshold_percentage (Percent) field in DocType 'Promotional +#. Scheme Product Discount' +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Threshold for Suggestion" +msgstr "" + +#. Label of the threshold_percentage (Percent) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Threshold for Suggestion (In Percentage)" +msgstr "" + +#. Label of the thumbnail (Data) field in DocType 'BOM' +#. Label of the thumbnail (Data) field in DocType 'BOM Website Operation' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json +msgid "Thumbnail" +msgstr "" + +#. Label of the tier_name (Data) field in DocType 'Loyalty Program Collection' +#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json +msgid "Tier Name" +msgstr "" + +#. Label of the time_in_mins (Float) field in DocType 'Job Card Scheduled Time' +#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:125 +msgid "Time (In Mins)" +msgstr "" + +#. Label of the mins_between_operations (Int) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Time Between Operations (Mins)" +msgstr "" + +#. Label of the time_in_mins (Float) field in DocType 'Job Card Time Log' +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +msgid "Time In Mins" +msgstr "" + +#. Label of the time_logs (Table) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Time Logs" +msgstr "" + +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:182 +msgid "Time Required (In Mins)" +msgstr "" + +#. Label of the time_sheet (Link) field in DocType 'Sales Invoice Timesheet' +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +msgid "Time Sheet" +msgstr "" + +#. Label of the time_sheet_list (Section Break) field in DocType 'POS Invoice' +#. Label of the time_sheet_list (Section Break) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Time Sheet List" +msgstr "" + +#. Label of the timesheets (Table) field in DocType 'POS Invoice' +#. Label of the timesheets (Table) field in DocType 'Sales Invoice' +#. Label of the time_logs (Table) field in DocType 'Timesheet' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Time Sheets" +msgstr "" + +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:335 +msgid "Time Taken to Deliver" +msgstr "" + +#. Label of a Card Break in the Projects Workspace +#: erpnext/config/projects.py:50 +#: erpnext/projects/workspace/projects/projects.json +msgid "Time Tracking" +msgstr "" + +#. Description of the 'Posting Time' (Time) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Time at which materials were received" +msgstr "" + +#. Description of the 'Operation Time' (Float) field in DocType 'Sub Operation' +#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json +msgid "Time in mins" +msgstr "" + +#. Description of the 'Total Operation Time' (Float) field in DocType +#. 'Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Time in mins." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:935 +msgid "Time logs are required for {0} {1}" +msgstr "" + +#: erpnext/crm/doctype/appointment/appointment.py:60 +msgid "Time slot is not available" +msgstr "" + +#: erpnext/templates/generators/bom.html:71 +msgid "Time(in mins)" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'Project' +#. Label of the sb_timeline (Section Break) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Timeline" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 +#: erpnext/public/js/projects/timer.js:5 +msgid "Timer" +msgstr "" + +#: erpnext/public/js/projects/timer.js:151 +msgid "Timer exceeded the given hours." +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:302 +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:23 +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:59 +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/templates/pages/projects.html:65 +#: erpnext/workspace_sidebar/projects.json +msgid "Timesheet" +msgstr "" + +#. Name of a report +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Timesheet Billing Summary" +msgstr "" + +#. Label of the timesheet_detail (Data) field in DocType 'Sales Invoice +#. Timesheet' +#. Name of a DocType +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Timesheet Detail" +msgstr "" + +#: erpnext/config/projects.py:55 +msgid "Timesheet for tasks." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/timesheet_billing.py:33 +msgid "Timesheet {0} cannot be invoiced in its current state" +msgstr "" + +#. Label of the timesheet_sb (Section Break) field in DocType 'Projects +#. Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +#: erpnext/projects/doctype/timesheet/timesheet.py:594 +#: erpnext/templates/pages/projects.html:60 +msgid "Timesheets" +msgstr "" + +#: erpnext/utilities/activation.py:127 +msgid "Timesheets help keep track of time, cost and billing for activities done by your team" +msgstr "" + +#. Label of the timeslots_section (Section Break) field in DocType +#. 'Communication Medium' +#. Label of the timeslots (Table) field in DocType 'Communication Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Timeslots" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Purchase Order' +#. Option for the 'Sales Order Status' (Select) field in DocType 'Production +#. Plan' +#. Option for the 'Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Status' (Select) field in DocType 'Delivery Note' +#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:39 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_list.js:58 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:60 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:22 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:21 +msgid "To Bill" +msgstr "" + +#. Label of the to_currency (Link) field in DocType 'Currency Exchange' +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +msgid "To Currency" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:531 +#: erpnext/setup/doctype/holiday_list/holiday_list.py:121 +msgid "To Date cannot be before From Date" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:38 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:34 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:38 +msgid "To Date cannot be before From Date." +msgstr "" + +#: erpnext/accounts/report/financial_statements.py:141 +msgid "To Date cannot be less than From Date" +msgstr "" + +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:29 +msgid "To Date is mandatory" +msgstr "" + +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:11 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:11 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:16 +msgid "To Date must be greater than From Date" +msgstr "" + +#: erpnext/accounts/report/trial_balance/trial_balance.py:77 +msgid "To Date should be within the Fiscal Year. Assuming To Date = {0}" +msgstr "" + +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:27 +msgid "To Datetime" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:118 +msgid "To Delete list generated with {0} DocTypes" +msgstr "" + +#. Option for the 'Sales Order Status' (Select) field in DocType 'Production +#. Plan' +#. Option for the 'Status' (Select) field in DocType 'Sales Order' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_list.js:37 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:50 +msgid "To Deliver" +msgstr "" + +#. Option for the 'Sales Order Status' (Select) field in DocType 'Production +#. Plan' +#. Option for the 'Status' (Select) field in DocType 'Sales Order' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_list.js:44 +msgid "To Deliver and Bill" +msgstr "" + +#. Label of the to_delivery_date (Date) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "To Delivery Date" +msgstr "" + +#. Label of the to_doctype (Link) field in DocType 'Bulk Transaction Log +#. Detail' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "To Doctype" +msgstr "" + +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:83 +msgid "To Due Date" +msgstr "" + +#. Label of the to_employee (Link) field in DocType 'Asset Movement Item' +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +msgid "To Employee" +msgstr "" + +#. Label of the to_fiscal_year (Link) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:59 +msgid "To Fiscal Year" +msgstr "" + +#. Label of the to_folio_no (Data) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "To Folio No" +msgstr "" + +#. Label of the to_invoice_date (Date) field in DocType 'Payment +#. Reconciliation' +#. Label of the to_invoice_date (Date) field in DocType 'Process Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "To Invoice Date" +msgstr "" + +#. Label of the to_no (Int) field in DocType 'Share Balance' +#. Label of the to_no (Int) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "To No" +msgstr "" + +#. Label of the to_case_no (Int) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "To Package No." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Sales Order' +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:22 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_list.js:25 +msgid "To Pay" +msgstr "" + +#. Label of the to_payment_date (Date) field in DocType 'Payment +#. Reconciliation' +#. Label of the to_payment_date (Date) field in DocType 'Process Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "To Payment Date" +msgstr "" + +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:43 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:29 +msgid "To Posting Date" +msgstr "" + +#. Label of the to_range (Float) field in DocType 'Item Attribute' +#. Label of the to_range (Float) field in DocType 'Item Variant Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "To Range" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:32 +msgid "To Receive" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:26 +msgid "To Receive and Bill" +msgstr "" + +#. Label of the to_reference_date (Date) field in DocType 'Bank Reconciliation +#. Tool' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +msgid "To Reference Date" +msgstr "" + +#. Label of the to_rename (Check) field in DocType 'GL Entry' +#. Label of the to_rename (Check) field in DocType 'Stock Ledger Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "To Rename" +msgstr "" + +#. Label of the to_shareholder (Link) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "To Shareholder" +msgstr "" + +#. Label of the time (Time) field in DocType 'Cashier Closing' +#. Label of the to_time (Datetime) field in DocType 'Sales Invoice Timesheet' +#. Label of the to_time (Time) field in DocType 'Communication Medium Timeslot' +#. Label of the to_time (Time) field in DocType 'Appointment Booking Slots' +#. Label of the to_time (Time) field in DocType 'Availability Of Slots' +#. Label of the to_time (Datetime) field in DocType 'Downtime Entry' +#. Label of the to_time (Datetime) field in DocType 'Job Card Scheduled Time' +#. Label of the to_time (Datetime) field in DocType 'Job Card Time Log' +#. Label of the to_time (Time) field in DocType 'Project' +#. Label of the to_time (Datetime) field in DocType 'Timesheet Detail' +#. Label of the to_time (Time) field in DocType 'Incoming Call Handling +#. Schedule' +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json +#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json +#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:92 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:180 +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json +#: erpnext/templates/pages/timelog_info.html:34 +msgid "To Time" +msgstr "" + +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 +msgid "To Time cannot be before from date" +msgstr "" + +#. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "To Track inbound purchase" +msgstr "" + +#. Label of the to_value (Float) field in DocType 'Shipping Rule Condition' +#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json +msgid "To Value" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:224 +#: erpnext/stock/doctype/batch/batch.js:116 +msgid "To Warehouse" +msgstr "" + +#. Label of the target_warehouse (Link) field in DocType 'Packed Item' +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "To Warehouse (Optional)" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1002 +msgid "To add Operations tick the 'With Operations' checkbox." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:741 +msgid "To add subcontracted Item's raw materials if include exploded items is disabled." +msgstr "" + +#: erpnext/controllers/status_updater.py:483 +msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." +msgstr "" + +#: erpnext/controllers/status_updater.py:477 +msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." +msgstr "" + +#: erpnext/controllers/status_updater.py:479 +msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." +msgstr "" + +#. Description of the 'Mandatory Depends On' (Small Text) field in DocType +#. 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "To apply condition on parent field use parent.field_name and to apply condition on child table use doc.field_name. Here field_name could be based on the actual column name of the respective field." +msgstr "" + +#. Label of the delivered_by_supplier (Check) field in DocType 'Purchase Order +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "To be Delivered to Customer" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 +msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 +msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:161 +msgid "To create a Payment Request reference document is required" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:120 +msgid "To enable Capital Work in Progress Accounting," +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 +msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." +msgstr "" + +#. Description of the 'Set Operating Cost / Secondary Items From +#. Sub-assemblies' (Check) field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 +#: erpnext/accounts/services/taxes.py:301 +msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:699 +msgid "To merge, following properties must be same for both items" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:59 +msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:565 +msgid "To overrule this, enable '{0}' in company {1}" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:80 +msgid "To select more than one transaction at a time, press and hold the shift key." +msgstr "" + +#: erpnext/controllers/item_variant.py:209 +msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:468 +msgid "To submit the invoice without purchase order please set {0} as {1} in {2}" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:490 +msgid "To submit the invoice without purchase receipt please set {0} as {1} in {2}" +msgstr "" + +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:43 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:233 +msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/report/financial_statements.py:648 +#: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/trial_balance/trial_balance.py:320 +msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ton (Long)/Cubic Yard" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ton (Short)/Cubic Yard" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ton-Force (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ton-Force (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Tonne" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Tonne-Force(Metric)" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.html:8 +#: erpnext/accounts/report/cash_flow/cash_flow.html:8 +#: erpnext/accounts/report/financial_statements.html:6 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:8 +#: erpnext/accounts/report/trial_balance/trial_balance.html:8 +msgid "Too many columns. Export the report and print it using a spreadsheet application." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Torr" +msgstr "" + +#. Label of the base_total (Currency) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the base_total (Currency) field in DocType 'POS Invoice' +#. Label of the base_total (Currency) field in DocType 'Purchase Invoice' +#. Label of the base_total (Currency) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the base_total (Currency) field in DocType 'Sales Invoice' +#. Label of the base_total (Currency) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the base_total (Currency) field in DocType 'Purchase Order' +#. Label of the base_total (Currency) field in DocType 'Supplier Quotation' +#. Label of the base_total (Currency) field in DocType 'Opportunity' +#. Label of the base_total (Currency) field in DocType 'Quotation' +#. Label of the base_total (Currency) field in DocType 'Sales Order' +#. Label of the base_total (Currency) field in DocType 'Delivery Note' +#. Label of the base_total (Currency) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Total (Company Currency)" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +msgid "Total (Credit)" +msgstr "" + +#: erpnext/templates/print_formats/includes/total.html:4 +msgid "Total (Without Tax)" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:137 +msgid "Total Achieved" +msgstr "" + +#. Label of a number card in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Total Active Items" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:347 +msgid "Total Actual" +msgstr "" + +#. Label of the total_additional_costs (Currency) field in DocType 'Stock +#. Entry' +#. Label of the total_additional_costs (Currency) field in DocType +#. 'Subcontracting Order' +#. Label of the total_additional_costs (Currency) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Total Additional Costs" +msgstr "" + +#. Label of the total_advance (Currency) field in DocType 'POS Invoice' +#. Label of the total_advance (Currency) field in DocType 'Purchase Invoice' +#. Label of the total_advance (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Total Advance" +msgstr "" + +#. Label of the total_allocated_amount (Currency) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Total Allocated Amount" +msgstr "" + +#. Label of the base_total_allocated_amount (Currency) field in DocType +#. 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Total Allocated Amount (Company Currency)" +msgstr "" + +#. Label of the total_allocations (Int) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Total Allocations" +msgstr "" + +#. Label of the total_amount (Currency) field in DocType 'Invoice Discounting' +#. Label of the total_amount (Currency) field in DocType 'Journal Entry' +#. Label of the total_amount (Float) field in DocType 'Serial and Batch Bundle' +#. Label of the total_amount (Currency) field in DocType 'Stock Entry' +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:846 +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/selling/page/sales_funnel/sales_funnel.py:183 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66 +#: erpnext/templates/includes/order/order_taxes.html:54 +msgid "Total Amount" +msgstr "" + +#. Label of the total_amount_currency (Link) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Total Amount Currency" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:176 +msgid "Total Amount Due" +msgstr "" + +#. Label of the total_amount_in_words (Data) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Total Amount in Words" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +msgid "Total Asset" +msgstr "" + +#. Label of the total_asset_cost (Currency) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Total Asset Cost" +msgstr "" + +#: erpnext/assets/dashboard_fixtures.py:158 +msgid "Total Assets" +msgstr "" + +#. Label of the total_billable_amount (Currency) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Billable Amount" +msgstr "" + +#. Label of the total_billable_amount (Currency) field in DocType 'Project' +#. Label of the total_billing_amount (Currency) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Total Billable Amount (via Timesheet)" +msgstr "" + +#. Label of the total_billable_hours (Float) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Billable Hours" +msgstr "" + +#. Label of the total_billed_amount (Currency) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Billed Amount" +msgstr "" + +#. Label of the total_billed_amount (Currency) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Total Billed Amount (via Sales Invoice)" +msgstr "" + +#. Label of the total_billed_hours (Float) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Billed Hours" +msgstr "" + +#. Label of the total_billing_amount (Currency) field in DocType 'POS Invoice' +#. Label of the total_billing_amount (Currency) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Total Billing Amount" +msgstr "" + +#. Label of the total_billing_hours (Float) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Total Billing Hours" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:347 +msgid "Total Budget" +msgstr "" + +#. Label of the total_characters (Int) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Total Characters" +msgstr "" + +#. Label of the total_commission (Currency) field in DocType 'POS Invoice' +#. Label of the total_commission (Currency) field in DocType 'Sales Invoice' +#. Label of the total_commission (Currency) field in DocType 'Sales Order' +#. Label of the total_commission (Currency) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:170 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Total Commission" +msgstr "" + +#. Label of the total_completed_qty (Float) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card/job_card.py:960 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174 +msgid "Total Completed Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:196 +msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission" +msgstr "" + +#. Label of the total_consumed_material_cost (Currency) field in DocType +#. 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Total Consumed Material Cost (via Stock Entry)" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.js:17 +msgid "Total Contribution Amount Against Invoices: {0}" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.js:10 +msgid "Total Contribution Amount Against Orders: {0}" +msgstr "" + +#. Label of the total_cost (Currency) field in DocType 'BOM' +#. Label of the raw_material_cost (Currency) field in DocType 'BOM Creator' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Total Cost" +msgstr "" + +#. Label of the base_total_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Total Cost (Company Currency)" +msgstr "" + +#. Label of the total_costing_amount (Currency) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Costing Amount" +msgstr "" + +#. Label of the total_costing_amount (Currency) field in DocType 'Project' +#. Label of the total_costing_amount (Currency) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Total Costing Amount (via Timesheet)" +msgstr "" + +#. Label of the total_credit (Currency) field in DocType 'Journal Entry' +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:788 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Total Credit" +msgstr "" + +#. Label of the total_credit_transactions (Int) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Total Credit Transactions" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:378 +msgid "Total Credit/ Debit Amount should be same as linked Journal Entry" +msgstr "" + +#. Label of the total_credits (Currency) field in DocType 'Bank Statement +#. Import Log' +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:181 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Total Credits" +msgstr "" + +#. Label of the total_debit (Currency) field in DocType 'Journal Entry' +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:784 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Total Debit" +msgstr "" + +#. Label of the total_debit_transactions (Int) field in DocType 'Bank Statement +#. Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Total Debit Transactions" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:666 +msgid "Total Debit must be equal to Total Credit. The difference is {0}" +msgstr "" + +#. Label of the total_debits (Currency) field in DocType 'Bank Statement Import +#. Log' +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:177 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Total Debits" +msgstr "" + +#: erpnext/stock/report/delivery_note_trends/delivery_note_trends.py:51 +msgid "Total Delivered Amount" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:247 +msgid "Total Demand (Past Data)" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +msgid "Total Equity" +msgstr "" + +#. Label of the total_distance (Float) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Total Estimated Distance" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +msgid "Total Expense" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +msgid "Total Expense This Year" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:588 +msgid "Total Expenses booked through" +msgstr "" + +#. Label of the total_experience (Data) field in DocType 'Employee External +#. Work History' +#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json +msgid "Total Experience" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:260 +msgid "Total Forecast (Future Data)" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:253 +msgid "Total Forecast (Past Data)" +msgstr "" + +#. Label of the total_gain_loss (Currency) field in DocType 'Exchange Rate +#. Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Total Gain/Loss" +msgstr "" + +#. Label of the total_hold_time (Duration) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Total Hold Time" +msgstr "" + +#. Label of the total_holidays (Int) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Total Holidays" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +msgid "Total Income" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +msgid "Total Income This Year" +msgstr "" + +#. Label of the total_incoming_value (Currency) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Total Incoming Value (Receipt)" +msgstr "" + +#. Label of the total_interest (Currency) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "Total Interest" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:199 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:135 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:135 +msgid "Total Invoiced Amount" +msgstr "" + +#: erpnext/support/report/issue_summary/issue_summary.py:83 +msgid "Total Issues" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:96 +msgid "Total Items" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:24 +msgid "Total Landed Cost" +msgstr "" + +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Landed +#. Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Total Landed Cost (Company Currency)" +msgstr "" + +#. Label of the total_vouchers (Int) field in DocType 'Repost Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Total Ledgers" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +msgid "Total Liability" +msgstr "" + +#. Label of the total_messages (Int) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Total Message(s)" +msgstr "" + +#. Label of the total_monthly_sales (Currency) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Total Monthly Sales" +msgstr "" + +#. Label of the total_net_weight (Float) field in DocType 'POS Invoice' +#. Label of the total_net_weight (Float) field in DocType 'Purchase Invoice' +#. Label of the total_net_weight (Float) field in DocType 'Sales Invoice' +#. Label of the total_net_weight (Float) field in DocType 'Purchase Order' +#. Label of the total_net_weight (Float) field in DocType 'Supplier Quotation' +#. Label of the total_net_weight (Float) field in DocType 'Quotation' +#. Label of the total_net_weight (Float) field in DocType 'Sales Order' +#. Label of the total_net_weight (Float) field in DocType 'Delivery Note' +#. Label of the total_net_weight (Float) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Total Net Weight" +msgstr "" + +#. Label of the total_number_of_booked_depreciations (Int) field in DocType +#. 'Asset Finance Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Total Number of Booked Depreciations " +msgstr "" + +#. Label of the total_number_of_depreciations (Int) field in DocType 'Asset' +#. Label of the total_number_of_depreciations (Int) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the total_number_of_depreciations (Int) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Total Number of Depreciations" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.js:96 +msgid "Total Only" +msgstr "" + +#. Label of the total_operating_cost (Currency) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Total Operating Cost" +msgstr "" + +#. Label of the total_operation_time (Float) field in DocType 'Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Total Operation Time" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:103 +msgid "Total Order Considered" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:102 +msgid "Total Order Value" +msgstr "" + +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:628 +msgid "Total Other Charges" +msgstr "" + +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:62 +msgid "Total Outgoing" +msgstr "" + +#. Label of the total_outgoing_value (Currency) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Total Outgoing Value (Consumption)" +msgstr "" + +#. Label of the total_outstanding (Currency) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html:9 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:100 +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:206 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:204 +msgid "Total Outstanding" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:208 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:138 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:138 +msgid "Total Outstanding Amount" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:200 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:136 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:136 +msgid "Total Paid Amount" +msgstr "" + +#: erpnext/accounts/services/payment_schedule.py:293 +msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:188 +msgid "Total Payment Request amount cannot be greater than {0} amount" +msgstr "" + +#: erpnext/regional/report/irs_1099/irs_1099.py:82 +msgid "Total Payments" +msgstr "" + +#: erpnext/selling/doctype/sales_order/services/status.py:90 +msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings." +msgstr "" + +#. Label of the total_planned_qty (Float) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Total Planned Qty" +msgstr "" + +#. Label of the total_produced_qty (Float) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Total Produced Qty" +msgstr "" + +#. Label of the total_projected_qty (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Total Projected Qty" +msgstr "" + +#. Label of a number card in the Buying Workspace +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:274 +#: erpnext/buying/workspace/buying/buying.json +msgid "Total Purchase Amount" +msgstr "" + +#. Label of the total_purchase_cost (Currency) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Total Purchase Cost (via Purchase Invoice)" +msgstr "" + +#. Label of the total_qty (Float) field in DocType 'Serial and Batch Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:65 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:139 +msgid "Total Qty" +msgstr "" + +#. Label of the total_quantity (Float) field in DocType 'POS Closing Entry' +#. Label of the total_qty (Float) field in DocType 'POS Invoice' +#. Label of the total_qty (Float) field in DocType 'Purchase Invoice' +#. Label of the total_qty (Float) field in DocType 'Sales Invoice' +#. Label of the total_qty (Float) field in DocType 'Purchase Order' +#. Label of the total_qty (Float) field in DocType 'Supplier Quotation' +#. Label of the total_qty (Float) field in DocType 'Quotation' +#. Label of the total_qty (Float) field in DocType 'Sales Order' +#. Label of the total_qty (Float) field in DocType 'Delivery Note' +#. Label of the total_qty (Float) field in DocType 'Purchase Receipt' +#. Label of the total_qty (Float) field in DocType 'Subcontracting Order' +#. Label of the total_qty (Float) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:23 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:147 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:543 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:547 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Total Quantity" +msgstr "" + +#: erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.py:51 +msgid "Total Received Amount" +msgstr "" + +#. Label of the total_repair_cost (Currency) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Total Repair Cost" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:44 +msgid "Total Revenue" +msgstr "" + +#. Label of a number card in the Selling Workspace +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:257 +#: erpnext/selling/workspace/selling/selling.json +msgid "Total Sales Amount" +msgstr "" + +#. Label of the total_sales_amount (Currency) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Total Sales Amount (via Sales Order)" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/total_stock_summary/total_stock_summary.json +msgid "Total Stock Summary" +msgstr "" + +#. Label of a number card in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Total Stock Value" +msgstr "" + +#. Label of the total_supplied_qty (Float) field in DocType 'Subcontracting +#. Order Supplied Item' +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +msgid "Total Supplied Qty" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:130 +msgid "Total Target" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:65 +#: erpnext/projects/report/project_summary/project_summary.py:102 +#: erpnext/projects/report/project_summary/project_summary.py:130 +msgid "Total Tasks" +msgstr "" + +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:621 +#: erpnext/accounts/report/purchase_register/purchase_register.py:265 +msgid "Total Tax" +msgstr "" + +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:86 +msgid "Total Taxable Amount" +msgstr "" + +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Payment +#. Entry' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'POS +#. Closing Entry' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'POS +#. Invoice' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Sales +#. Invoice' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Purchase +#. Order' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Supplier +#. Quotation' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Quotation' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Sales +#. Order' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Delivery +#. Note' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Total Taxes and Charges" +msgstr "" + +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Payment Entry' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType 'POS +#. Invoice' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Purchase Invoice' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType 'Sales +#. Invoice' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Purchase Order' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Supplier Quotation' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Quotation' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType 'Sales +#. Order' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Delivery Note' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Total Taxes and Charges (Company Currency)" +msgstr "" + +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +msgid "Total Time (in Mins)" +msgstr "" + +#. Label of the total_time_in_mins (Float) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Total Time in Mins" +msgstr "" + +#: erpnext/public/js/utils.js:193 +msgid "Total Unpaid: {0}" +msgstr "" + +#. Label of the total_value (Currency) field in DocType 'Asset Capitalization' +#. Label of the total_value (Currency) field in DocType 'Asset Repair Consumed +#. Item' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +msgid "Total Value" +msgstr "" + +#. Label of the value_difference (Currency) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Total Value Difference (Incoming - Outgoing)" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:347 +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:144 +msgid "Total Variance" +msgstr "" + +#. Label of the total_vendor_invoices_cost (Currency) field in DocType 'Landed +#. Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Total Vendor Invoices Cost (Company Currency)" +msgstr "" + +#: erpnext/utilities/report/youtube_interactions/youtube_interactions.py:75 +msgid "Total Views" +msgstr "" + +#. Label of a number card in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Total Warehouses" +msgstr "" + +#. Label of the total_weight (Float) field in DocType 'POS Invoice Item' +#. Label of the total_weight (Float) field in DocType 'Purchase Invoice Item' +#. Label of the total_weight (Float) field in DocType 'Sales Invoice Item' +#. Label of the total_weight (Float) field in DocType 'Purchase Order Item' +#. Label of the total_weight (Float) field in DocType 'Supplier Quotation Item' +#. Label of the total_weight (Float) field in DocType 'Quotation Item' +#. Label of the total_weight (Float) field in DocType 'Sales Order Item' +#. Label of the total_weight (Float) field in DocType 'Delivery Note Item' +#. Label of the total_weight (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Total Weight" +msgstr "" + +#. Label of the total_weight (Float) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Total Weight (kg)" +msgstr "" + +#. Label of the total_working_hours (Float) field in DocType 'Workstation' +#. Label of the total_hours (Float) field in DocType 'Timesheet' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Working Hours" +msgstr "" + +#. Label of the total_workstation_time (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Total Workstation Time (In Hours)" +msgstr "" + +#: erpnext/controllers/selling_controller.py:258 +msgid "Total allocated percentage for sales team should be 100" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:194 +msgid "Total contribution percentage should be equal to 100" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:366 +msgid "Total distributed amount {0} must be equal to Budget Amount {1}" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:373 +msgid "Total distribution percent must equal 100 (currently {0})" +msgstr "" + +#: erpnext/projects/doctype/project/project_dashboard.html:2 +msgid "Total hours: {0}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 +msgid "Total payments amount can't be greater than {}" +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 +msgid "Total percentage against cost centers should be 100" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:703 +msgid "Total quantity in delivery schedule cannot be greater than the item quantity" +msgstr "" + +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:757 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:758 +#: erpnext/accounts/report/financial_statements.py:351 +#: erpnext/accounts/report/financial_statements.py:352 +msgid "Total {0} ({1})" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 +msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +msgstr "" + +#: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 +msgid "Total(Amt)" +msgstr "" + +#: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 +msgid "Total(Qty)" +msgstr "" + +#. Label of the base_totals_section (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the base_totals_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the base_totals_section (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the base_totals_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the base_totals_section (Section Break) field in DocType 'Sales +#. Order' +#. Label of the base_totals_section (Section Break) field in DocType 'Delivery +#. Note' +#. Label of the base_totals_section (Section Break) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Totals (Company Currency)" +msgstr "" + +#: erpnext/stock/doctype/item/item_dashboard.py:33 +msgid "Traceability" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:53 +msgid "Tracebility Direction" +msgstr "" + +#. Label of the track_semi_finished_goods (Check) field in DocType 'BOM' +#. Label of the track_semi_finished_goods (Check) field in DocType 'Job Card' +#. Label of the track_semi_finished_goods (Check) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Track Semi Finished Goods" +msgstr "" + +#. Label of the track_service_level_agreement (Check) field in DocType 'Support +#. Settings' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:147 +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Track Service Level Agreement" +msgstr "" + +#. Description of the 'Has Serial No' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Track each unit with a unique serial number for warranty and return tracking. Cannot be changed after a stock transaction exists." +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/cost_center/cost_center.json +msgid "Track separate Income and Expense for product verticals or divisions." +msgstr "" + +#. Description of the 'Has Batch No' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Track this item in batches. Cannot be changed after a stock transaction exists." +msgstr "" + +#. Label of the tracking_status (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Tracking Status" +msgstr "" + +#. Label of the tracking_status_info (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Tracking Status Info" +msgstr "" + +#. Label of the tracking_url (Small Text) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Tracking URL" +msgstr "" + +#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' +#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' +#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' +#. Label of the transaction (Select) field in DocType 'Authorization Rule' +#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 +#: erpnext/public/js/utils/naming_series.js:219 +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Transaction" +msgstr "" + +#. Label of the transaction_currency (Link) field in DocType 'GL Entry' +#. Label of the currency (Link) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +msgid "Transaction Currency" +msgstr "" + +#. Label of the transaction_date (Date) field in DocType 'GL Entry' +#. Label of the transaction_date (Date) field in DocType 'Payment Request' +#. Label of the transaction_date (Date) field in DocType 'Period Closing +#. Voucher' +#. Label of the transaction_date (Datetime) field in DocType 'Asset Movement' +#. Label of the transaction_date (Date) field in DocType 'Maintenance Schedule' +#. Label of the transaction_date (Date) field in DocType 'Material Request' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:136 +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:88 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:67 +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.js:9 +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Transaction Date" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:165 +#: banking/src/pages/BankStatementImporter.tsx:253 +msgid "Transaction Dates" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:1078 +msgid "Transaction Deletion Document {0} has been triggered for company {1}" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Transaction Deletion Record" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/transaction_deletion_record_details/transaction_deletion_record_details.json +msgid "Transaction Deletion Record Details" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/transaction_deletion_record_item/transaction_deletion_record_item.json +msgid "Transaction Deletion Record Item" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Transaction Deletion Record To Delete" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +msgid "Transaction Deletion Record {0} is already running. {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." +msgstr "" + +#. Label of the transaction_details_section (Section Break) field in DocType +#. 'GL Entry' +#. Label of the transaction_details (Section Break) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Transaction Details" +msgstr "" + +#. Label of the transaction_exchange_rate (Float) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Transaction Exchange Rate" +msgstr "" + +#. Label of the transaction_id (Data) field in DocType 'Bank Transaction' +#. Label of the transaction_references (Section Break) field in DocType +#. 'Payment Entry' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Transaction ID" +msgstr "" + +#. Label of the section_break_xt4m (Section Break) field in DocType 'Stock +#. Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Transaction Information" +msgstr "" + +#: banking/src/components/features/Settings/MatchingRules.tsx:34 +msgid "Transaction Matching Rules" +msgstr "" + +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:45 +msgid "Transaction Name" +msgstr "" + +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:60 +msgid "Transaction Qty" +msgstr "" + +#. Label of the transaction_settings_section (Tab Break) field in DocType +#. 'Buying Settings' +#. Label of the sales_transactions_settings_section (Section Break) field in +#. DocType 'Selling Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Transaction Settings" +msgstr "" + +#. Label of the single_threshold (Float) field in DocType 'Tax Withholding +#. Rate' +#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json +msgid "Transaction Threshold" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the transaction_type (Data) field in DocType 'Bank Transaction' +#. Label of the transaction_type (Select) field in DocType 'Bank Transaction +#. Rule' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:106 +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:38 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:259 +msgid "Transaction Type" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx:35 +msgid "Transaction Unreconciled" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:78 +msgid "Transaction actions work when one or more unreconciled transactions are selected." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:198 +msgid "Transaction currency must be same as Payment Gateway currency" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:75 +msgid "Transaction currency: {0} cannot be different from Bank Account({1}) currency: {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:65 +msgid "Transaction date can't be earlier than previous movement date" +msgstr "" + +#. Description of the 'Applicable For' (Section Break) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Transaction for which tax is withheld" +msgstr "" + +#. Description of the 'Deducted From' (Section Break) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Transaction from which tax is withheld" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:911 +#: erpnext/stock/doctype/stock_entry/services/stock_entry_base.py:38 +msgid "Transaction not allowed against stopped Work Order {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1248 +msgid "Transaction reference no {0} dated {1}" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Transaction type column has \"C\"/\"D\" values" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Transaction type column has \"CR\"/\"DR\" values" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Transaction type column has \"Deposit\"/\"Withdrawal\" values" +msgstr "" + +#. Group in Bank Account's connections +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template_dashboard.py:12 +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template_dashboard.py:13 +#: erpnext/manufacturing/doctype/job_card/job_card_dashboard.py:9 +#: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:11 +#: erpnext/manufacturing/doctype/work_order/work_order_dashboard.py:12 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order_dashboard.py:9 +msgid "Transactions" +msgstr "" + +#. Label of the transactions_annual_history (Code) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Transactions Annual History" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:117 +msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions." +msgstr "" + +#. Description of the 'Credit Limit' (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Transactions are blocked or warned when outstanding balance exceeds this amount." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:239 +msgid "Transactions to be imported into the system" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:214 +msgid "Transactions using Sales Invoice in POS are disabled." +msgstr "" + +#. Option for the 'Classify As' (Select) field in DocType 'Bank Transaction +#. Rule' +#. Option for the 'Transfer Type' (Select) field in DocType 'Share Transfer' +#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement' +#. Option for the 'Material Request Type' (Select) field in DocType 'Item +#. Reorder' +#. Option for the 'Asset Status' (Select) field in DocType 'Serial No' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:84 +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:301 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:515 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:589 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:271 +#: banking/src/components/features/BankReconciliation/TransferModal.tsx:17 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:124 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:361 +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:30 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/stock/doctype/item_reorder/item_reorder.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:645 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:650 +msgid "Transfer" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:402 +msgid "Transfer Account" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:155 +msgid "Transfer Asset" +msgstr "" + +#. Label of the transfer_extra_materials_percentage (Percent) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Transfer Extra Raw Materials to WIP (%)" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:458 +msgid "Transfer From Warehouses" +msgstr "" + +#. Label of the transfer_material_against (Select) field in DocType 'BOM' +#. Label of the transfer_material_against (Select) field in DocType 'Work +#. Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Transfer Material Against" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:92 +msgid "Transfer Materials" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:453 +msgid "Transfer Materials For Warehouse {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:90 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:207 +msgid "Transfer Recorded" +msgstr "" + +#. Label of the transfer_status (Select) field in DocType 'Material Request' +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Transfer Status" +msgstr "" + +#. Label of the transfer_type (Select) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/report/share_ledger/share_ledger.py:53 +msgid "Transfer Type" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement' +#: erpnext/assets/doctype/asset_movement/asset_movement.json +msgid "Transfer and Issue" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Material Request' +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:42 +msgid "Transferred" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:506 +msgid "Transferred Out" +msgstr "" + +#. Label of the transferred_qty (Float) field in DocType 'Job Card Item' +#. Label of the transferred_qty (Float) field in DocType 'Work Order Item' +#. Label of the transferred_qty (Float) field in DocType 'Stock Entry Detail' +#. Label of the transferred_qty (Float) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:497 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:141 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Transferred Qty" +msgstr "" + +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:38 +msgid "Transferred Quantity" +msgstr "" + +#. Label of the transferred_qty (Float) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Transferred Raw Materials" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:306 +msgid "Transferred from" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:306 +msgid "Transferred to" +msgstr "" + +#. Label of the transit_section (Section Break) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Transit" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:606 +msgid "Transit Entry" +msgstr "" + +#. Label of the lr_date (Date) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Transport Receipt Date" +msgstr "" + +#. Label of the lr_no (Data) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Transport Receipt No" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:50 +msgid "Transportation" +msgstr "" + +#. Label of the transporter (Link) field in DocType 'Driver' +#. Label of the transporter (Link) field in DocType 'Delivery Note' +#. Label of the transporter_info (Section Break) field in DocType 'Purchase +#. Receipt' +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Transporter" +msgstr "" + +#. Label of the transporter_info (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Transporter Details" +msgstr "" + +#. Label of the transporter_info (Section Break) field in DocType 'Delivery +#. Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Transporter Info" +msgstr "" + +#. Label of the transporter_name (Data) field in DocType 'Delivery Note' +#. Label of the transporter_name (Data) field in DocType 'Purchase Receipt' +#. Label of the transporter_name (Data) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Transporter Name" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219 +msgid "Travel Expenses" +msgstr "" + +#. Label of the tree_details (Section Break) field in DocType 'Location' +#. Label of the tree_details (Section Break) field in DocType 'Warehouse' +#: erpnext/assets/doctype/location/location.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Tree Details" +msgstr "" + +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:8 +#: erpnext/selling/report/sales_analytics/sales_analytics.js:8 +msgid "Tree Type" +msgstr "" + +#. Label of a Link in the Quality Workspace +#: erpnext/quality_management/workspace/quality/quality.json +msgid "Tree of Procedures" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/trial_balance/trial_balance.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Trial Balance" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/trial_balance_simple/trial_balance_simple.json +msgid "Trial Balance (Simple)" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Trial Balance for Party" +msgstr "" + +#. Label of the trial_period_end (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Trial Period End Date" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:412 +msgid "Trial Period End Date Cannot be before Trial Period Start Date" +msgstr "" + +#. Label of the trial_period_start (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Trial Period Start Date" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:418 +msgid "Trial Period Start date cannot be after Subscription Start Date" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/subscription/subscription_list.js:4 +msgid "Trialing" +msgstr "" + +#. Description of the 'General Ledger remarks length' (Int) field in DocType +#. 'Accounts Settings' +#. Description of the 'Accounts Receivable / Payable remarks length' (Int) +#. field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Truncates 'Remarks' column to set character length" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:277 +msgid "Try adjusting your search or filter criteria." +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:90 +msgid "Try the {0} for a better experience." +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:200 +msgid "Turnover Ratios" +msgstr "" + +#. Option for the 'Frequency To Collect Progress' (Select) field in DocType +#. 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Twice Daily" +msgstr "" + +#. Label of the two_way (Check) field in DocType 'Item Alternative' +#: erpnext/stock/doctype/item_alternative/item_alternative.json +msgid "Two-way" +msgstr "" + +#. Label of the type_of_call (Link) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Type Of Call" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:75 +msgid "Type of Material" +msgstr "" + +#. Label of the type_of_payment (Section Break) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Type of Payment" +msgstr "" + +#. Label of the type_of_transaction (Select) field in DocType 'Inventory +#. Dimension' +#. Label of the type_of_transaction (Select) field in DocType 'Serial and Batch +#. Bundle' +#. Label of the type_of_transaction (Data) field in DocType 'Serial and Batch +#. Entry' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +msgid "Type of Transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:194 +msgid "Type of check" +msgstr "" + +#. Description of the 'Select DocType' (Link) field in DocType 'Rename Tool' +#: erpnext/utilities/doctype/rename_tool/rename_tool.json +msgid "Type of document to rename." +msgstr "" + +#. Description of the 'Report Type' (Select) field in DocType 'Financial Report +#. Template' +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +msgid "Type of financial statement this template generates" +msgstr "" + +#: erpnext/config/projects.py:61 +msgid "Types of activities for Time Logs" +msgstr "" + +#. Label of a Link in the Financial Reports Workspace +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/regional/report/uae_vat_201/uae_vat_201.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "UAE VAT 201" +msgstr "" + +#. Name of a DocType +#: erpnext/regional/doctype/uae_vat_account/uae_vat_account.json +msgid "UAE VAT Account" +msgstr "" + +#. Label of the uae_vat_accounts (Table) field in DocType 'UAE VAT Settings' +#: erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.json +msgid "UAE VAT Accounts" +msgstr "" + +#. Name of a DocType +#: erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.json +msgid "UAE VAT Settings" +msgstr "" + +#. Label of the uom (Link) field in DocType 'POS Invoice Item' +#. Label of the free_item_uom (Link) field in DocType 'Pricing Rule' +#. Label of the uom (Link) field in DocType 'Pricing Rule Brand' +#. Label of the uom (Link) field in DocType 'Pricing Rule Item Code' +#. Label of the uom (Link) field in DocType 'Pricing Rule Item Group' +#. Label of the free_item_uom (Link) field in DocType 'Promotional Scheme +#. Product Discount' +#. Label of the uom (Link) field in DocType 'Purchase Invoice Item' +#. Label of the uom (Link) field in DocType 'Sales Invoice Item' +#. Label of the uom (Link) field in DocType 'Asset Capitalization Service Item' +#. Label of the uom (Link) field in DocType 'Purchase Order Item' +#. Label of the uom (Link) field in DocType 'Request for Quotation Item' +#. Label of the uom (Link) field in DocType 'Supplier Quotation Item' +#. Label of the uom (Link) field in DocType 'Opportunity Item' +#. Label of the uom (Link) field in DocType 'BOM Creator' +#. Label of the uom (Link) field in DocType 'BOM Creator Item' +#. Label of the uom (Link) field in DocType 'BOM Item' +#. Label of the uom (Link) field in DocType 'BOM Secondary Item' +#. Label of the uom (Link) field in DocType 'Job Card Item' +#. Label of the uom (Link) field in DocType 'Master Production Schedule Item' +#. Label of the uom (Link) field in DocType 'Material Request Plan Item' +#. Label of the stock_uom (Link) field in DocType 'Production Plan Item' +#. Label of the uom (Link) field in DocType 'Production Plan Sub Assembly Item' +#. Label of the uom (Link) field in DocType 'Sales Forecast Item' +#. Label of the uom (Link) field in DocType 'Work Order Additional Item' +#. Label of the uom (Link) field in DocType 'Quality Goal Objective' +#. Label of the uom (Link) field in DocType 'Quality Review Objective' +#. Label of the uom (Link) field in DocType 'Delivery Schedule Item' +#. Label of the uom (Link) field in DocType 'Product Bundle Item' +#. Label of the uom (Link) field in DocType 'Quotation Item' +#. Label of the uom (Link) field in DocType 'Sales Order Item' +#. Name of a DocType +#. Label of the stock_uom (Link) field in DocType 'Bin' +#. Label of the uom (Link) field in DocType 'Delivery Note Item' +#. Label of the uom (Link) field in DocType 'Delivery Stop' +#. Label of the uom_tab (Tab Break) field in DocType 'Item' +#. Label of the uom (Link) field in DocType 'Item Barcode' +#. Label of the uom (Link) field in DocType 'Item Price' +#. Label of the uom (Link) field in DocType 'Material Request Item' +#. Label of the uom (Link) field in DocType 'Packed Item' +#. Label of the stock_uom (Link) field in DocType 'Packing Slip Item' +#. Label of the uom (Link) field in DocType 'Pick List Item' +#. Label of the uom (Link) field in DocType 'Purchase Receipt Item' +#. Label of the uom (Link) field in DocType 'Putaway Rule' +#. Label of the uom (Link) field in DocType 'Stock Entry Detail' +#. Label of the uom (Link) field in DocType 'UOM Conversion Detail' +#. Label of the uom (Link) field in DocType 'Subcontracting Inward Order +#. Service Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.json +#: erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.json +#: erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:60 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:209 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:210 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:480 +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json +#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1734 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:117 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:44 +#: erpnext/selling/report/sales_analytics/sales_analytics.py:138 +#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_list.js:42 +#: erpnext/stock/doctype/item/item_prices.html:85 +#: erpnext/stock/doctype/item_barcode/item_barcode.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json +#: erpnext/stock/report/available_serial_no/available_serial_no.py:101 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 +#: erpnext/stock/report/item_prices/item_prices.py:55 +#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 +#: erpnext/stock/report/stock_ageing/stock_ageing.py:225 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:59 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/templates/emails/reorder_item.html:11 +#: erpnext/templates/includes/rfq/rfq_items.html:17 +msgid "UOM" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/uom_category/uom_category.json +msgid "UOM Category" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json +msgid "UOM Conversion Detail" +msgstr "" + +#. Label of the uom_conversion_details_column (Column Break) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "UOM Conversion Details" +msgstr "" + +#. Label of the conversion_factor (Float) field in DocType 'POS Invoice Item' +#. Label of the conversion_factor (Float) field in DocType 'Purchase Invoice +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Sales Invoice Item' +#. Label of the conversion_factor (Float) field in DocType 'Purchase Order +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Request for +#. Quotation Item' +#. Label of the conversion_factor (Float) field in DocType 'Supplier Quotation +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Quotation Item' +#. Label of the conversion_factor (Float) field in DocType 'Sales Order Item' +#. Name of a DocType +#. Label of the conversion_factor (Float) field in DocType 'Delivery Note Item' +#. Label of the conversion_factor (Float) field in DocType 'Material Request +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Pick List Item' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "UOM Conversion Factor" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" +msgstr "" + +#: erpnext/buying/utils.py:43 +msgid "UOM Conversion factor is required in row {0}" +msgstr "" + +#. Label of the conversion_factor_section (Section Break) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "UOM Defaults" +msgstr "" + +#. Label of the uom_name (Data) field in DocType 'UOM' +#: erpnext/setup/doctype/uom/uom.json +msgid "UOM Name" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1674 +msgid "UOM conversion factor required for UOM: {0} in Item: {1}" +msgstr "" + +#: erpnext/stock/doctype/item_price/item_price.py:61 +msgid "UOM {0} not found in Item {1}" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "UPC" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "UPC-A" +msgstr "" + +#: erpnext/utilities/doctype/video/video.py:114 +msgid "URL can only be a string" +msgstr "" + +#. Label of the utm_analytics_section (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the utm_analytics_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the utm_analytics_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the utm_analytics_section (Section Break) field in DocType 'Sales +#. Order' +#. Label of the utm_analytics_section (Section Break) field in DocType +#. 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "UTM Analytics" +msgstr "" + +#. Option for the 'Data fetch method' (Select) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "UnBuffered Cursor" +msgstr "" + +#: erpnext/public/js/utils/unreconcile.js:25 +#: erpnext/public/js/utils/unreconcile.js:133 +msgid "UnReconcile" +msgstr "" + +#: erpnext/public/js/utils/unreconcile.js:130 +msgid "UnReconcile Allocations" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +msgid "Unable to fetch DocType details. Please contact system administrator." +msgstr "" + +#: erpnext/setup/utils.py:154 +msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually" +msgstr "" + +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.py:165 +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:313 +msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 +msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/operations.py:125 +msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85 +msgid "Unable to find variable: {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:376 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:855 +#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:58 +msgid "Unallocated" +msgstr "" + +#. Label of the unallocated_amount (Currency) field in DocType 'Bank +#. Transaction' +#. Label of the unallocated_amount (Currency) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:74 +msgid "Unallocated Amount" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +msgid "Unassigned Qty" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:661 +msgid "Unbilled Orders" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:101 +msgid "Unblock Invoice" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 +msgid "Unclosed Fiscal Years Profit / Loss (Credit)" +msgstr "" + +#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No' +#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty +#. Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Under AMC" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Under Graduate" +msgstr "" + +#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No' +#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty +#. Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Under Warranty" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Under Withheld" +msgstr "" + +#. Label of the under_withheld_reason (Select) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Under Withheld Reason" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:78 +msgid "Under Working Hours table, you can add start and end times for a Workstation. For example, a Workstation may be active from 9 am to 1 pm, then 2 pm to 5 pm. You can also specify the working hours based on shifts. While scheduling a Work Order, the system will check for the availability of the Workstation based on the working hours specified." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:39 +msgid "Undo Transaction Reconciliation" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:378 +msgid "Undo {}?" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +msgid "Unexpected Naming Series Pattern" +msgstr "" + +#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Unfulfilled" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Unit" +msgstr "" + +#. Label of the uom (Link) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Unit Of Measure" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:515 +msgid "Unit Price" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +msgid "Unit of Measure" +msgstr "" + +#. Label of a Link in the Home Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Unit of Measure (UOM)" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:452 +msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:110 +msgid "Unknown Caller" +msgstr "" + +#. Label of the unlink_advance_payment_on_cancelation_of_order (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Unlink Advance Payment on cancellation of order" +msgstr "" + +#. Label of the unlink_payment_on_cancellation_of_invoice (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Unlink Payment on cancellation of invoice" +msgstr "" + +#: erpnext/accounts/doctype/bank_account/bank_account.js:33 +msgid "Unlink external integrations" +msgstr "" + +#. Label of the unlinked (Check) field in DocType 'Unreconcile Payment Entries' +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +msgid "Unlinked" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:378 +msgid "Unmatch Transaction?" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:322 +msgid "Unmatched" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#. Option for the 'Status' (Select) field in DocType 'Subscription' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/services/status.py:77 +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/subscription/subscription_list.js:12 +msgid "Unpaid" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Unpaid and Discounted" +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Unplanned machine maintenance" +msgstr "" + +#. Option for the 'Qualification Status' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Unqualified" +msgstr "" + +#. Label of the unrealized_exchange_gain_loss_account (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Unrealized Exchange Gain/Loss Account" +msgstr "" + +#. Label of the unrealized_profit_loss_account (Link) field in DocType +#. 'Purchase Invoice' +#. Label of the unrealized_profit_loss_account (Link) field in DocType 'Sales +#. Invoice' +#. Label of the unrealized_profit_loss_account (Link) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/setup/doctype/company/company.json +msgid "Unrealized Profit / Loss Account" +msgstr "" + +#. Description of the 'Unrealized Profit / Loss Account' (Link) field in +#. DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Unrealized Profit / Loss account for intra-company transfers" +msgstr "" + +#. Description of the 'Unrealized Profit / Loss Account' (Link) field in +#. DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Unrealized Profit/Loss account for intra-company transfers" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx:102 +msgid "Unreconcile" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +#: erpnext/workspace_sidebar/banking.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Unreconcile Payment" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +msgid "Unreconcile Payment Entries" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.js:40 +msgid "Unreconcile Transaction" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Bank Transaction' +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:414 +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction_list.js:12 +msgid "Unreconciled" +msgstr "" + +#. Label of the unreconciled_amount (Currency) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the unreconciled_amount (Currency) field in DocType 'Process +#. Payment Reconciliation Log Allocations' +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +msgid "Unreconciled Amount" +msgstr "" + +#. Label of the sec_break1 (Section Break) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Unreconciled Entries" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:57 +msgid "Unreconciled Transactions" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:946 +#: erpnext/selling/doctype/sales_order/sales_order.js:122 +#: erpnext/stock/doctype/pick_list/pick_list.js:166 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192 +msgid "Unreserve" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:245 +#: erpnext/selling/doctype/sales_order/sales_order.js:540 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:377 +msgid "Unreserve Stock" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:295 +msgid "Unreserve for Raw Materials" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:269 +msgid "Unreserve for Sub-assembly" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:281 +#: erpnext/selling/doctype/sales_order/sales_order.js:552 +#: erpnext/stock/doctype/pick_list/pick_list.js:321 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:389 +msgid "Unreserving Stock..." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning/dunning_list.js:6 +msgid "Unresolved" +msgstr "" + +#. Option for the 'Maintenance Type' (Select) field in DocType 'Maintenance +#. Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Unscheduled" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310 +msgid "Unsecured Loans" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +msgid "Unset Matched Payment Request" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Unsigned" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:121 +msgid "Unsubscribe from this Email Digest" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +msgid "Unsupported Feature" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Appointment' +#: erpnext/crm/doctype/appointment/appointment.json +msgid "Unverified" +msgstr "" + +#: erpnext/erpnext_integrations/utils.py:22 +msgid "Unverified Webhook Data" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:17 +msgid "Up" +msgstr "" + +#. Label of the calendar_events (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Upcoming Calendar Events" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:97 +msgid "Upcoming Calendar Events " +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:62 +msgid "Update Account Name / Number" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:176 +msgid "Update Account Number / Name" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:32 +msgid "Update Additional Information" +msgstr "" + +#. Label of the update_auto_repeat_reference (Button) field in DocType 'POS +#. Invoice' +#. Label of the update_auto_repeat_reference (Button) field in DocType +#. 'Purchase Invoice' +#. Label of the update_auto_repeat_reference (Button) field in DocType 'Sales +#. Invoice' +#. Label of the update_auto_repeat_reference (Button) field in DocType +#. 'Purchase Order' +#. Label of the update_auto_repeat_reference (Button) field in DocType +#. 'Supplier Quotation' +#. Label of the update_auto_repeat_reference (Button) field in DocType +#. 'Quotation' +#. Label of the update_auto_repeat_reference (Button) field in DocType 'Sales +#. Order' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Update Auto Repeat Reference" +msgstr "" + +#. Label of the update_bom_costs_automatically (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:23 +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Update BOM Cost Automatically" +msgstr "" + +#. Description of the 'Update BOM Cost Automatically' (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Update BOM cost automatically via scheduler, based on the latest Valuation Rate/Price List Rate/Last Purchase Rate of raw materials" +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:32 +msgid "Update Batch Qty" +msgstr "" + +#. Label of the update_billed_amount_in_delivery_note (Check) field in DocType +#. 'POS Invoice' +#. Label of the update_billed_amount_in_delivery_note (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Update Billed Amount in Delivery Note" +msgstr "" + +#. Label of the update_billed_amount_in_purchase_order (Check) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Update Billed Amount in Purchase Order" +msgstr "" + +#. Label of the update_billed_amount_in_purchase_receipt (Check) field in +#. DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Update Billed Amount in Purchase Receipt" +msgstr "" + +#. Label of the update_billed_amount_in_sales_order (Check) field in DocType +#. 'POS Invoice' +#. Label of the update_billed_amount_in_sales_order (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Update Billed Amount in Sales Order" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:42 +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:44 +msgid "Update Clearance Date" +msgstr "" + +#. Label of the update_consumed_material_cost_in_project (Check) field in +#. DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Update Consumed Material Cost In Project" +msgstr "" + +#. Option for the 'Update Type' (Select) field in DocType 'BOM Update Log' +#. Label of the update_cost_section (Section Break) field in DocType 'BOM +#. Update Tool' +#: erpnext/manufacturing/doctype/bom/bom.js:226 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "Update Cost" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.js:19 +#: erpnext/accounts/doctype/cost_center/cost_center.js:52 +msgid "Update Cost Center Name / Number" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:91 +msgid "Update Costing and Billing" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.js:131 +msgid "Update Current Stock" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:300 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 +#: erpnext/public/js/utils.js:938 +#: erpnext/selling/doctype/quotation/quotation.js:136 +#: erpnext/selling/doctype/sales_order/sales_order.js:90 +#: erpnext/selling/doctype/sales_order/sales_order.js:984 +msgid "Update Items" +msgstr "" + +#. Label of the update_outstanding_for_self (Check) field in DocType 'Purchase +#. Invoice' +#. Label of the update_outstanding_for_self (Check) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/controllers/accounts_controller.py:192 +msgid "Update Outstanding for Self" +msgstr "" + +#. Label of the update_price_list_based_on (Select) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Update Price List based on" +msgstr "" + +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js:11 +msgid "Update Print Format" +msgstr "" + +#. Label of the get_stock_and_rate (Button) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Update Rate and Availability" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:541 +msgid "Update Rate as per Last Purchase" +msgstr "" + +#. Label of the update_stock (Check) field in DocType 'POS Invoice' +#. Label of the update_stock (Check) field in DocType 'POS Profile' +#. Label of the update_stock (Check) field in DocType 'Purchase Invoice' +#. Label of the update_stock (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Update Stock" +msgstr "" + +#. Label of the update_type (Select) field in DocType 'BOM Update Log' +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +msgid "Update Type" +msgstr "" + +#. Label of the update_existing_price_list_rate (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Update existing Price List Rate" +msgstr "" + +#. Label of the update_latest_price_in_all_boms (Button) field in DocType 'BOM +#. Update Tool' +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "Update latest price in all BOMs" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:474 +msgid "Update stock must be enabled for the purchase invoice {0}" +msgstr "" + +#. Description of the 'Update timestamp on new communication' (Check) field in +#. DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Update the modified timestamp on new communications received in Lead & Opportunity." +msgstr "" + +#. Label of the update_timestamp_on_new_communication (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Update timestamp on new communication" +msgstr "" + +#. Description of the 'Actual Start Time' (Datetime) field in DocType 'Work +#. Order Operation' +#. Description of the 'Actual End Time' (Datetime) field in DocType 'Work Order +#. Operation' +#. Description of the 'Actual Operation Time' (Float) field in DocType 'Work +#. Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Updated via 'Time Log' (In Minutes)" +msgstr "" + +#: erpnext/accounts/doctype/account_category/account_category.py:55 +msgid "Updated {0} Financial Report Row(s) with new category name" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:137 +msgid "Updating Costing and Billing fields against this Project..." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1495 +msgid "Updating Variants..." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1203 +msgid "Updating Work Order status" +msgstr "" + +#: erpnext/public/js/print.js:156 +msgid "Updating details." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:114 +msgid "Updating..." +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:48 +msgid "Upload Bank Statement" +msgstr "" + +#. Label of the upload_xml_invoices_section (Section Break) field in DocType +#. 'Import Supplier Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Upload XML Invoices" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:104 +msgid "Upload your bank statement file to start the import process. We support CSV, XLSX and PDF files." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:148 +msgid "Uploading..." +msgstr "" + +#. Description of the 'Submit ERR Journals?' (Check) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Upon enabling this, the JV will be submitted for a different exchange rate." +msgstr "" + +#. Description of the 'Auto reserve stock' (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Upon submission of the Sales Order, Work Order, or Production Plan, the system will automatically reserve the stock." +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:311 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:428 +msgid "Upper Income" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'Task' +#. Option in a Select field in the tasks Web Form +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/web_form/tasks/tasks.json +msgid "Urgent" +msgstr "" + +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.js:36 +msgid "Use 'Repost in background' button to trigger background job. Job can only be triggered when document is in Queued or Failed status." +msgstr "" + +#. Description of the 'Advanced Filtering' (Check) field in DocType 'Financial +#. Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Use Python filters to get Accounts" +msgstr "" + +#. Label of the use_batchwise_valuation (Check) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Use Batch-wise Valuation" +msgstr "" + +#. Label of the use_csv_sniffer (Check) field in DocType 'Bank Statement +#. Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Use CSV Sniffer" +msgstr "" + +#. Label of the use_company_roundoff_cost_center (Check) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Use Company Default Round Off Cost Center" +msgstr "" + +#. Label of the use_company_roundoff_cost_center (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Use Company default Cost Center for Round off" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:146 +msgid "Use Default Warehouse" +msgstr "" + +#. Description of the 'Calculate Estimated Arrival Times' (Button) field in +#. DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Use Google Maps Direction API to calculate estimated arrival times" +msgstr "" + +#. Description of the 'Optimize Route' (Button) field in DocType 'Delivery +#. Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Use Google Maps Direction API to optimize route" +msgstr "" + +#. Label of the use_http (Check) field in DocType 'Currency Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "Use HTTP Protocol" +msgstr "" + +#. Label of the item_based_reposting (Check) field in DocType 'Stock Reposting +#. Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Use Item based reposting" +msgstr "" + +#. Label of the use_legacy_js_reactivity (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Use Legacy (Client side) Reactivity" +msgstr "" + +#. Label of the use_multi_level_bom (Check) field in DocType 'Work Order' +#. Label of the use_multi_level_bom (Check) field in DocType 'Stock Entry' +#: erpnext/manufacturing/doctype/bom/bom.js:437 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Use Multi-Level BOM" +msgstr "" + +#. Label of the use_posting_datetime_for_naming_documents (Check) field in +#. DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Use Posting Datetime for Naming Documents" +msgstr "" + +#. Label of the use_serial_batch_fields (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Use Serial / Batch fields" +msgstr "" + +#. Label of the use_serial_batch_fields (Check) field in DocType 'POS Invoice +#. Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Purchase +#. Invoice Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Sales Invoice +#. Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Asset +#. Capitalization Stock Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Delivery Note +#. Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Packed Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Pick List +#. Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Purchase +#. Receipt Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Stock Entry +#. Detail' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Stock +#. Reconciliation Item' +#. Label of the use_serial_batch_fields (Check) field in DocType +#. 'Subcontracting Receipt Item' +#. Label of the use_serial_batch_fields (Check) field in DocType +#. 'Subcontracting Receipt Supplied Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Use Serial No / Batch Fields" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:518 +msgid "Use Suggestion" +msgstr "" + +#. Label of the use_transaction_date_exchange_rate (Check) field in DocType +#. 'Purchase Invoice' +#. Label of the use_transaction_date_exchange_rate (Check) field in DocType +#. 'Buying Settings' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Use Transaction Date Exchange Rate" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:638 +msgid "Use a name that is different from previous project name" +msgstr "" + +#. Label of the use_for_shopping_cart (Check) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Use for Shopping Cart" +msgstr "" + +#. Label of the use_legacy_budget_controller (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Use legacy Budget Controller" +msgstr "" + +#. Label of the use_legacy_controller_for_pcv (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Use legacy controller for Period Closing Voucher" +msgstr "" + +#. Label of the fallback_to_default_price_list (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Use prices from Default Price List as fallback" +msgstr "" + +#. Label of the used (Int) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Used" +msgstr "" + +#. Description of the 'Sales Order Date' (Date) field in DocType 'Sales Order +#. Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Used for Production Plan" +msgstr "" + +#. Description of the 'Is Internal Supplier' (Check) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Used for inter-company transactions" +msgstr "" + +#. Description of the 'Purchase Expense Contra Account' (Link) field in DocType +#. 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Used to balance the books when recording extra purchase costs" +msgstr "" + +#. Description of the 'Tax Withholding Group' (Link) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Used to pick the correct rate row inside the Tax Withholding Category for this supplier (e.g. Company vs Individual rates)" +msgstr "" + +#. Description of the 'Account Category' (Link) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Used with Financial Report Template" +msgstr "" + +#: erpnext/setup/install.py:226 +msgid "User Forum" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.py:113 +msgid "User ID not set for Employee {0}" +msgstr "" + +#. Label of the user_remark (Small Text) field in DocType 'Bank Transaction +#. Rule Accounts' +#. Label of the user_remark (Small Text) field in DocType 'Journal Entry' +#. Label of the user_remark (Small Text) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "User Remark" +msgstr "" + +#. Label of the user_resolution_time (Duration) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "User Resolution Time" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:593 +msgid "User has not applied rule on the invoice {0}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:298 +msgid "User {0} does not exist" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:147 +msgid "User {0} doesn't have any default POS Profile. Check Default at Row {1} for this User." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:327 +msgid "User {0} is already assigned to Employee {1}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:365 +msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:360 +msgid "User {0}: Removed Employee role as there is no mapped employee." +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {} is disabled. Please select valid user/cashier" +msgstr "" + +#. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) +#. field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Users can enable the checkbox If they want to adjust the incoming rate (set using purchase receipt) based on the purchase invoice rate." +msgstr "" + +#. Description of the 'Track Semi Finished Goods' (Check) field in DocType +#. 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Users can make manufacture entry against Job Cards" +msgstr "" + +#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries." +msgstr "" + +#. Description of the 'Role Allowed to over bill ' (Link) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Users with this role are allowed to over bill above the allowance percentage" +msgstr "" + +#. Description of the 'Role Allowed to Over Deliver/Receive' (Link) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Users with this role are allowed to over deliver/receive against orders above the allowance percentage" +msgstr "" + +#. Description of the 'Role to Notify on Depreciation Failure' (Link) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Users with this role will be notified if the asset depreciation gets failed" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:103 +msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative." +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220 +msgid "Utility Expenses" +msgstr "" + +#. Label of the vat_accounts (Table) field in DocType 'South Africa VAT +#. Settings' +#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json +msgid "VAT Accounts" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:41 +msgid "VAT Amount (AED)" +msgstr "" + +#. Name of a report +#: erpnext/regional/report/vat_audit_report/vat_audit_report.json +msgid "VAT Audit Report" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:124 +msgid "VAT on Expenses and All Other Inputs" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:58 +msgid "VAT on Sales and All Other Outputs" +msgstr "" + +#. Label of the valid_from (Date) field in DocType 'Cost Center Allocation' +#. Label of the valid_from (Date) field in DocType 'Coupon Code' +#. Label of the valid_from (Date) field in DocType 'Pricing Rule' +#. Label of the valid_from (Date) field in DocType 'Promotional Scheme' +#. Label of the valid_from (Date) field in DocType 'Lower Deduction +#. Certificate' +#. Label of the valid_from (Date) field in DocType 'Item Price' +#. Label of the valid_from (Date) field in DocType 'Item Tax' +#. Label of the agreement_details_section (Section Break) field in DocType +#. 'Service Level Agreement' +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/item_tax/item_tax.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Valid From" +msgstr "" + +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:45 +msgid "Valid From date not in Fiscal Year {0}" +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:82 +msgid "Valid From must be after {0} as last GL Entry against the cost center {1} posted on this date" +msgstr "" + +#. Label of the valid_till (Date) field in DocType 'Supplier Quotation' +#. Label of the valid_till (Date) field in DocType 'Quotation' +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:261 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:286 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/templates/pages/order.html:59 +msgid "Valid Till" +msgstr "" + +#. Label of the valid_upto (Date) field in DocType 'Coupon Code' +#. Label of the valid_upto (Date) field in DocType 'Pricing Rule' +#. Label of the valid_upto (Date) field in DocType 'Promotional Scheme' +#. Label of the valid_upto (Date) field in DocType 'Lower Deduction +#. Certificate' +#. Label of the valid_upto (Date) field in DocType 'Employee' +#. Label of the valid_upto (Date) field in DocType 'Item Price' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/stock/doctype/item_price/item_price.json +msgid "Valid Up To" +msgstr "" + +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:40 +msgid "Valid Up To date cannot be before Valid From date" +msgstr "" + +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:48 +msgid "Valid Up To date not in Fiscal Year {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:86 +msgid "Valid Upto" +msgstr "" + +#. Label of the countries (Table) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Valid for Countries" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:302 +msgid "Valid from and valid upto fields are mandatory for the cumulative" +msgstr "" + +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:167 +msgid "Valid till Date cannot be before Transaction Date" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.py:162 +msgid "Valid till date cannot be before transaction date" +msgstr "" + +#. Label of the validate_applied_rule (Check) field in DocType 'Pricing Rule' +#. Label of the validate_applied_rule (Check) field in DocType 'Promotional +#. Scheme Price Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "Validate Applied Rule" +msgstr "" + +#. Label of the validate_components_quantities_per_bom (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Validate Components and Quantities Per BOM" +msgstr "" + +#. Label of the validate_material_transfer_warehouses (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Validate Material Transfer warehouses" +msgstr "" + +#. Label of the validate_negative_stock (Check) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Validate Negative Stock" +msgstr "" + +#. Label of the validate_pricing_rule_section (Section Break) field in DocType +#. 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Validate Pricing Rule" +msgstr "" + +#. Label of the validate_stock_on_save (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Validate Stock on Save" +msgstr "" + +#. Label of the validate_consumed_qty (Check) field in DocType 'Buying +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Validate consumed quantity (as per BOM)" +msgstr "" + +#. Label of the validate_selling_price (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Validate selling price for Item against purchase or valuation rate" +msgstr "" + +#. Label of the validity_details_section (Section Break) field in DocType +#. 'Lower Deduction Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Validity Details" +msgstr "" + +#. Label of the uses (Section Break) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Validity and Usage" +msgstr "" + +#. Label of the validity (Int) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Validity in Days" +msgstr "" + +#: erpnext/selling/doctype/quotation/mapper.py:26 +msgid "Validity period of this quotation has ended." +msgstr "" + +#. Option for the 'Consider Tax or Charge for' (Select) field in DocType +#. 'Purchase Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Valuation" +msgstr "" + +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:63 +msgid "Valuation (I - K)" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.js:61 +#: erpnext/stock/report/stock_balance/stock_balance.js:101 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:114 +msgid "Valuation Field Type" +msgstr "" + +#. Label of the valuation_method (Select) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:63 +msgid "Valuation Method" +msgstr "" + +#. Label of the valuation_rate (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the valuation_rate (Currency) field in DocType 'Asset +#. Capitalization Stock Item' +#. Label of the valuation_rate (Currency) field in DocType 'Asset Repair +#. Consumed Item' +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM' +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM +#. Creator' +#. Label of the valuation_rate (Currency) field in DocType 'Quotation Item' +#. Label of the valuation_rate (Currency) field in DocType 'Sales Order Item' +#. Label of the valuation_rate (Float) field in DocType 'Bin' +#. Label of the valuation_rate (Currency) field in DocType 'Item' +#. Label of the valuation_rate (Currency) field in DocType 'Purchase Receipt +#. Item' +#. Label of the incoming_rate (Float) field in DocType 'Serial and Batch Entry' +#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing +#. Balance' +#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail' +#. Label of the valuation_rate (Currency) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/report/gross_profit/gross_profit.py:354 +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/bin/bin.json erpnext/stock/doctype/item/item.js:965 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/available_serial_no/available_serial_no.py:164 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85 +#: erpnext/stock/report/item_prices/item_prices.py:57 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68 +#: erpnext/stock/report/stock_balance/stock_balance.py:563 +msgid "Valuation Rate" +msgstr "" + +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:197 +msgid "Valuation Rate (In / Out)" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2059 +msgid "Valuation Rate Missing" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1604 +msgid "Valuation Rate cannot be negative." +msgstr "" + +#: erpnext/stock/stock_ledger.py:2037 +msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:314 +msgid "Valuation Rate is mandatory if Opening Stock entered" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +msgid "Valuation Rate required for Item {0} at row {1}" +msgstr "" + +#. Option for the 'Consider Tax or Charge for' (Select) field in DocType +#. 'Purchase Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Valuation and Total" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +msgid "Valuation rate for customer provided items has been set to zero." +msgstr "" + +#. Description of the 'Sales Incoming Rate' (Currency) field in DocType +#. 'Purchase Invoice Item' +#. Description of the 'Sales Incoming Rate' (Currency) field in DocType +#. 'Purchase Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 +#: erpnext/accounts/services/taxes.py:322 +msgid "Valuation type charges can not be marked as Inclusive" +msgstr "" + +#: erpnext/public/js/controllers/accounts.js:231 +msgid "Valuation type charges can not marked as Inclusive" +msgstr "" + +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 +msgid "Value (G - D)" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.py:268 +msgid "Value ({0})" +msgstr "" + +#. Label of the value_after_depreciation (Currency) field in DocType 'Asset' +#. Label of the value_after_depreciation (Currency) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the value_after_depreciation (Currency) field in DocType 'Asset +#. Finance Book' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:179 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Value After Depreciation" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Quality +#. Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Value Based Inspection" +msgstr "" + +#. Label of the value_details_section (Section Break) field in DocType 'Asset +#. Value Adjustment' +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +msgid "Value Details" +msgstr "" + +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:24 +#: erpnext/selling/report/sales_analytics/sales_analytics.js:40 +#: erpnext/stock/report/stock_analytics/stock_analytics.js:23 +msgid "Value Or Qty" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:4 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:440 +msgid "Value Proposition" +msgstr "" + +#. Label of the fieldtype (Select) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Value Type" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +msgid "Value as on" +msgstr "" + +#: erpnext/controllers/item_variant.py:131 +msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" +msgstr "" + +#. Label of the value_of_goods (Currency) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Value of Goods" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +msgid "Value of New Capitalized Asset" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +msgid "Value of New Purchase" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +msgid "Value of Scrapped Asset" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +msgid "Value of Sold Asset" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.py:88 +msgid "Value of goods cannot be 0" +msgstr "" + +#: erpnext/public/js/stock_analytics.js:46 +msgid "Value or Qty" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Vara" +msgstr "" + +#. Label of the variable (Data) field in DocType 'Bank Statement Import Log +#. Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Variable" +msgstr "" + +#. Label of the variable_label (Link) field in DocType 'Supplier Scorecard +#. Scoring Variable' +#. Label of the variable_label (Data) field in DocType 'Supplier Scorecard +#. Variable' +#: erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.json +#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.json +msgid "Variable Name" +msgstr "" + +#. Label of the variables (Table) field in DocType 'Supplier Scorecard Period' +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Variables" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:235 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:239 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:321 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:331 +msgid "Variance" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:118 +msgid "Variance ({})" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:267 +#: erpnext/stock/doctype/item/item_list.js:61 +#: erpnext/stock/report/item_variant_details/item_variant_details.py:74 +msgid "Variant" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:966 +msgid "Variant Attribute Error" +msgstr "" + +#. Label of the attributes (Table) field in DocType 'Item' +#: erpnext/public/js/templates/item_quick_entry.html:1 +#: erpnext/stock/doctype/item/item.json +msgid "Variant Attributes" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:267 +msgid "Variant BOM" +msgstr "" + +#. Label of the variant_based_on (Select) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Variant Based On" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:994 +msgid "Variant Based On cannot be changed" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:243 +msgid "Variant Details Report" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/variant_field/variant_field.json +msgid "Variant Field" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:390 +#: erpnext/manufacturing/doctype/bom/bom.js:470 +msgid "Variant Item" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:964 +msgid "Variant Items" +msgstr "" + +#. Label of the variant_of (Link) field in DocType 'Item' +#. Label of the variant_of (Link) field in DocType 'Item Variant Attribute' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Variant Of" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1172 +msgid "Variant creation has been queued." +msgstr "" + +#. Label of the variants_section (Tab Break) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Variants" +msgstr "" + +#. Name of a DocType +#. Label of the vehicle (Link) field in DocType 'Delivery Trip' +#: erpnext/setup/doctype/vehicle/vehicle.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Vehicle" +msgstr "" + +#. Label of the lr_date (Date) field in DocType 'Purchase Receipt' +#. Label of the lr_date (Date) field in DocType 'Subcontracting Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Vehicle Date" +msgstr "" + +#. Label of the vehicle_no (Data) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Vehicle No" +msgstr "" + +#. Label of the lr_no (Data) field in DocType 'Purchase Receipt' +#. Label of the lr_no (Data) field in DocType 'Subcontracting Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Vehicle Number" +msgstr "" + +#. Label of the vehicle_value (Currency) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Vehicle Value" +msgstr "" + +#. Label of the vendor_invoice (Link) field in DocType 'Landed Cost Vendor +#. Invoice' +#: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:42 +msgid "Vendor Invoice" +msgstr "" + +#. Label of the vendor_invoices (Table) field in DocType 'Landed Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Vendor Invoices" +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:538 +msgid "Vendor Name" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:51 +msgid "Venture Capital" +msgstr "" + +#: erpnext/www/book_appointment/verify/index.html:15 +msgid "Verification failed please check the link" +msgstr "" + +#. Label of the verified_by (Data) field in DocType 'Quality Inspection' +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Verified By" +msgstr "" + +#: erpnext/templates/emails/confirm_appointment.html:6 +#: erpnext/www/book_appointment/verify/index.html:4 +msgid "Verify Email" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Versta" +msgstr "" + +#. Label of the via_customer_portal (Check) field in DocType 'Issue' +#. Label of a field in the issues Web Form +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/web_form/issues/issues.json +msgid "Via Customer Portal" +msgstr "" + +#. Label of the via_landed_cost_voucher (Check) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Via Landed Cost Voucher" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:31 +msgid "Vice President" +msgstr "" + +#. Name of a DocType +#: erpnext/utilities/doctype/video/video.json +msgid "Video" +msgstr "" + +#. Name of a DocType +#: erpnext/utilities/doctype/video/video_list.js:3 +#: erpnext/utilities/doctype/video_settings/video_settings.json +msgid "Video Settings" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:9 +msgid "View Account Coverage" +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:123 +msgid "View All Prices" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:25 +msgid "View BOM Update Log" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'View Balance Sheet' +#. Description of a report in the Onboarding Step 'View Balance Sheet' +#: erpnext/accounts/onboarding_step/view_balance_sheet/view_balance_sheet.json +#: erpnext/assets/onboarding_step/view_balance_sheet/view_balance_sheet.json +msgid "View Balance Sheet" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:47 +msgid "View Chart of Accounts" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:93 +msgid "View Data Based on" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:248 +msgid "View Exchange Gain/Loss Journals" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:164 +msgid "View Instructions" +msgstr "" + +#: erpnext/crm/doctype/campaign/campaign.js:15 +msgid "View Leads" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:274 +#: erpnext/stock/doctype/batch/batch.js:18 +msgid "View Ledger" +msgstr "" + +#: erpnext/stock/doctype/serial_no/serial_no.js:32 +msgid "View Ledgers" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:65 +msgid "View MRP" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.js:7 +msgid "View Now" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'View Project Summary' +#. Description of a report in the Onboarding Step 'View Project Summary' +#: erpnext/projects/onboarding_step/view_project_summary/view_project_summary.json +msgid "View Project Summary" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'View Purchase Order Analysis' +#. Description of a report in the Onboarding Step 'View Purchase Order +#. Analysis' +#: erpnext/buying/onboarding_step/view_purchase_order_analysis/view_purchase_order_analysis.json +msgid "View Purchase Order Analysis" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'View Sales Order Analysis' +#. Description of a report in the Onboarding Step 'View Sales Order Analysis' +#: erpnext/selling/onboarding_step/view_sales_order_analysis/view_sales_order_analysis.json +msgid "View Sales Order Analysis" +msgstr "" + +#. Label of an action in the Onboarding Step 'View Stock Balance Report' +#: erpnext/stock/onboarding_step/view_stock_balance_report/view_stock_balance_report.json +#: erpnext/stock/report/stock_ledger/stock_ledger.js:139 +msgid "View Stock Balance" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'View Stock Balance Report' +#. Description of a report in the Onboarding Step 'View Stock Balance Report' +#: erpnext/selling/onboarding_step/view_stock_balance_report/view_stock_balance_report.json +#: erpnext/stock/onboarding_step/view_stock_balance_report/view_stock_balance_report.json +msgid "View Stock Balance Report" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:162 +msgid "View Stock Ledger" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:8 +msgid "View Type" +msgstr "" + +#. Label of an action in the Onboarding Step 'View Work Order Summary Report' +#: erpnext/manufacturing/onboarding_step/view_work_order_summary_report/view_work_order_summary_report.json +msgid "View Work Order Summary" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/manufacturing/onboarding_step/view_work_order_summary_report/view_work_order_summary_report.json +msgid "View Work Order Summary Report" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:55 +msgid "View all reconciliation actions taken in this session" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialog.tsx:20 +msgid "View all reconciliation actions taken in this session." +msgstr "" + +#. Label of the view_attachments (Check) field in DocType 'Project User' +#: erpnext/projects/doctype/project_user/project_user.json +msgid "View attachments" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:192 +msgid "View call log" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:997 +msgid "View older transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:997 +msgid "View older transactions" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:293 +msgid "View transaction" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:293 +msgid "View transactions" +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Video' +#: erpnext/utilities/doctype/video/video.json +msgid "Vimeo" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:216 +msgid "Virtual DocType" +msgstr "" + +#: erpnext/templates/pages/help.html:46 +msgid "Visit the forums" +msgstr "" + +#. Label of the visited (Check) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Visited" +msgstr "" + +#. Group in Maintenance Schedule's connections +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +msgid "Visits" +msgstr "" + +#. Option for the 'Communication Medium Type' (Select) field in DocType +#. 'Communication Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Voice" +msgstr "" + +#. Name of a DocType +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Voice Call Settings" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Volt-Ampere" +msgstr "" + +#: erpnext/accounts/report/purchase_register/purchase_register.py:165 +#: erpnext/accounts/report/sales_register/sales_register.py:179 +msgid "Voucher" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.js:56 +#: erpnext/stock/report/available_serial_no/available_serial_no.py:196 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:97 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:403 +msgid "Voucher #" +msgstr "" + +#. Option for the 'Reconciliation Type' (Select) field in DocType 'Bank +#. Transaction Payments' +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +msgid "Voucher Created" +msgstr "" + +#. Label of the voucher_detail_no (Data) field in DocType 'GL Entry' +#. Label of the voucher_detail_no (Data) field in DocType 'Payment Ledger +#. Entry' +#. Label of the voucher_detail_no (Data) field in DocType 'Serial and Batch +#. Bundle' +#. Label of the voucher_detail_no (Data) field in DocType 'Serial and Batch +#. Entry' +#. Label of the voucher_detail_no (Data) field in DocType 'Stock Ledger Entry' +#. Label of the voucher_detail_no (Data) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:51 +msgid "Voucher Detail No" +msgstr "" + +#. Label of the voucher_detail_reference (Data) field in DocType 'Work Order +#. Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Voucher Detail Reference" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.html:160 +msgid "Voucher Details" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:394 +msgid "Voucher Name" +msgstr "" + +#. Label of the voucher_no (Dynamic Link) field in DocType 'Advance Payment +#. Ledger Entry' +#. Label of the voucher_no (Dynamic Link) field in DocType 'GL Entry' +#. Label of the voucher_no (Data) field in DocType 'Ledger Health' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Payment Ledger +#. Entry' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Repost Accounting +#. Ledger Items' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Repost Payment +#. Ledger Items' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Unreconcile +#. Payment' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Repost Item +#. Valuation' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Serial and Batch +#. Bundle' +#. Label of the voucher_no (Data) field in DocType 'Serial and Batch Entry' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Stock Ledger Entry' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:299 +#: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json +#: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1197 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 +#: erpnext/accounts/report/general_ledger/general_ledger.js:49 +#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:174 +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:19 +#: erpnext/public/js/utils/unreconcile.js:79 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:152 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:98 +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:44 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:168 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:108 +#: erpnext/stock/report/reserved_stock/reserved_stock.js:77 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:151 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:51 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:114 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:34 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:158 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:165 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:74 +msgid "Voucher No" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +msgid "Voucher No is mandatory" +msgstr "" + +#. Label of the voucher_qty (Float) field in DocType 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.py:117 +msgid "Voucher Qty" +msgstr "" + +#. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +msgid "Voucher Subtype" +msgstr "" + +#. Label of the voucher_type (Link) field in DocType 'Advance Payment Ledger +#. Entry' +#. Label of the voucher_type (Link) field in DocType 'GL Entry' +#. Label of the voucher_type (Data) field in DocType 'Ledger Health' +#. Label of the voucher_type (Link) field in DocType 'Payment Ledger Entry' +#. Label of the voucher_type (Link) field in DocType 'Repost Accounting Ledger +#. Items' +#. Label of the voucher_type (Link) field in DocType 'Repost Payment Ledger' +#. Label of the voucher_type (Link) field in DocType 'Repost Payment Ledger +#. Items' +#. Label of the voucher_type (Link) field in DocType 'Unreconcile Payment' +#. Label of the voucher_type (Link) field in DocType 'Repost Item Valuation' +#. Label of the voucher_type (Link) field in DocType 'Serial and Batch Bundle' +#. Label of the voucher_type (Data) field in DocType 'Serial and Batch Entry' +#. Label of the voucher_type (Link) field in DocType 'Stock Ledger Entry' +#. Label of the voucher_type (Select) field in DocType 'Stock Reservation +#. Entry' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:390 +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +#: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 +#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 +#: erpnext/accounts/report/purchase_register/purchase_register.py:160 +#: erpnext/accounts/report/sales_register/sales_register.py:174 +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:17 +#: erpnext/public/js/utils/unreconcile.js:71 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/available_serial_no/available_serial_no.py:194 +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:146 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:91 +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:38 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:161 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:106 +#: erpnext/stock/report/reserved_stock/reserved_stock.js:65 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:145 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:40 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:109 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:156 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:401 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68 +msgid "Voucher Type" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:210 +msgid "Voucher {0} is over-allocated by {1}" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.json +msgid "Voucher-wise Balance" +msgstr "" + +#. Label of the vouchers (Table) field in DocType 'Repost Accounting Ledger' +#. Label of the selected_vouchers_section (Section Break) field in DocType +#. 'Repost Payment Ledger' +#. Label of the purchase_receipts (Table) field in DocType 'Landed Cost +#. Voucher' +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Vouchers" +msgstr "" + +#: erpnext/patches/v15_0/remove_exotel_integration.py:32 +msgid "WARNING: Exotel app has been separated from ERPNext, please install the app to continue using Exotel integration." +msgstr "" + +#. Label of the wip_composite_asset (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the wip_composite_asset (Link) field in DocType 'Purchase Order +#. Item' +#. Label of the wip_composite_asset (Link) field in DocType 'Material Request +#. Item' +#. Label of the wip_composite_asset (Link) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "WIP Composite Asset" +msgstr "" + +#. Label of the wip_warehouse (Link) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "WIP WH" +msgstr "" + +#. Label of the wip_warehouse (Link) field in DocType 'BOM Operation' +#. Label of the wip_warehouse (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order_calendar.js:44 +msgid "WIP Warehouse" +msgstr "" + +#. Label of a number card in the Manufacturing Workspace +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +msgid "WIP Work Orders" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/test_workstation.py:147 +#: erpnext/patches/v16_0/make_workstation_operating_components.py:50 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:317 +msgid "Wages" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:435 +msgid "Waiting for payment..." +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:10 +msgid "Walk In" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:4 +msgid "Warehouse Capacity Summary" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:79 +msgid "Warehouse Capacity for Item '{0}' must be greater than the existing stock level of {1} {2}." +msgstr "" + +#. Label of the warehouse_contact_info (Section Break) field in DocType +#. 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Warehouse Contact Info" +msgstr "" + +#. Label of the warehouse_defaults_section (Section Break) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Warehouse Defaults" +msgstr "" + +#. Label of the warehouse_detail (Section Break) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Warehouse Detail" +msgstr "" + +#. Label of the warehouse_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Warehouse Details" +msgstr "" + +#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.py:113 +msgid "Warehouse Disabled?" +msgstr "" + +#. Label of the warehouse_name (Data) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Warehouse Name" +msgstr "" + +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Purchase Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "Warehouse Settings" +msgstr "" + +#. Label of the warehouse_type (Link) field in DocType 'Warehouse' +#. Name of a DocType +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/doctype/warehouse_type/warehouse_type.json +#: erpnext/stock/report/available_batch_report/available_batch_report.js:57 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:45 +#: erpnext/stock/report/stock_ageing/stock_ageing.js:23 +#: erpnext/stock/report/stock_balance/stock_balance.js:94 +msgid "Warehouse Type" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Warehouse Wise Stock Balance" +msgstr "" + +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Request for Quotation Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Supplier Quotation Item' +#. Label of the reference (Section Break) field in DocType 'Quotation Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales +#. Order Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Delivery Note Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Purchase Receipt Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Warehouse and Reference" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:101 +msgid "Warehouse can not be deleted as stock ledger entry exists for this warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_no/serial_no.py:85 +msgid "Warehouse cannot be changed for Serial No." +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:161 +msgid "Warehouse is mandatory" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:309 +msgid "Warehouse is required to get producible FG Items" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:240 +msgid "Warehouse not found against the account {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:896 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:401 +msgid "Warehouse required for stock Item {0}" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.json +msgid "Warehouse wise Item Balance Age and Value" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:95 +msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 +msgid "Warehouse {0} does not belong to Company {1}." +msgstr "" + +#: erpnext/stock/utils.py:411 +msgid "Warehouse {0} does not belong to company {1}" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:289 +msgid "Warehouse {0} does not exist" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/reservation.py:77 +msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:147 +msgid "Warehouse {0} is not linked to any account, please mention the account in the warehouse record or set default inventory account in company {1}." +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:20 +msgid "Warehouse: {0} does not belong to {1}" +msgstr "" + +#. Label of the warehouses (Table MultiSelect) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:526 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/stock/report/stock_balance/stock_balance.js:76 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:30 +msgid "Warehouses" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:148 +msgid "Warehouses with child nodes cannot be converted to ledger" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:158 +msgid "Warehouses with existing transaction can not be converted to group." +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:150 +msgid "Warehouses with existing transaction can not be converted to ledger." +msgstr "" + +#. Option for the 'Action if same rate is not maintained throughout internal +#. transaction' (Select) field in DocType 'Accounts Settings' +#. Option for the 'Action if Annual Budget Exceeded on MR' (Select) field in +#. DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on MR' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Annual Budget Exceeded on PO' (Select) field in +#. DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on PO' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Annual Budget Exceeded on Actual' (Select) field +#. in DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on Actual' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Anual Budget Exceeded on Cumulative Expense' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Accumulative Monthly Budget Exceeded on Cumulative +#. Expense' (Select) field in DocType 'Budget' +#. Option for the 'Action if same rate is not maintained' (Select) field in +#. DocType 'Buying Settings' +#. Option for the 'Action if same rate is not maintained throughout sales +#. cycle' (Select) field in DocType 'Selling Settings' +#. Option for the 'Action if Quality Inspection is not submitted' (Select) +#. field in DocType 'Stock Settings' +#. Option for the 'Action if Quality Inspection is rejected' (Select) field in +#. DocType 'Stock Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Warn" +msgstr "" + +#. Label of the warn_pos (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Warn POs" +msgstr "" + +#. Label of the warn_pos (Check) field in DocType 'Supplier Scorecard Scoring +#. Standing' +#. Label of the warn_pos (Check) field in DocType 'Supplier Scorecard Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Warn Purchase Orders" +msgstr "" + +#. Label of the warn_rfqs (Check) field in DocType 'Supplier' +#. Label of the warn_rfqs (Check) field in DocType 'Supplier Scorecard Scoring +#. Standing' +#. Label of the warn_rfqs (Check) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Warn RFQs" +msgstr "" + +#. Label of the warn_pos (Check) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Warn for new Purchase Orders" +msgstr "" + +#. Label of the warn_rfqs (Check) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Warn for new Request for Quotations" +msgstr "" + +#. Description of the 'Maintain same rate throughout sales cycle' (Check) field +#. in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Warn or stop if Item rate is changed in Delivery Notes and Sales Invoices generated from a Sales Order." +msgstr "" + +#. Description of the 'Maintain same rate throughout the purchase cycle' +#. (Check) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Warn or stop if Item rate is changed in Purchase Invoice or Purchase Receipt generated from a Purchase Order." +msgstr "" + +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:134 +msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" +msgstr "" + +#: erpnext/stock/stock_ledger.py:843 +msgid "Warning on Negative Stock" +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:114 +msgid "Warning!" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:123 +msgid "Warning: Account changed for warehouse" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1003 +msgid "Warning: Another {0} # {1} exists against stock entry {2}" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:534 +msgid "Warning: Material Requested Qty is less than Minimum Order Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:291 +msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:75 +msgid "Warning: This action cannot be undone!" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_validation.py:74 +msgid "Warnings" +msgstr "" + +#. Label of a Card Break in the Support Workspace +#: erpnext/support/workspace/support/support.json +msgid "Warranty" +msgstr "" + +#. Label of the warranty_amc_details (Section Break) field in DocType 'Serial +#. No' +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Warranty / AMC Details" +msgstr "" + +#. Label of the warranty_amc_status (Select) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Warranty / AMC Status" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Name of a DocType +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:103 +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/support.json +msgid "Warranty Claim" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:546 +msgid "Warranty Expiry (Serial)" +msgstr "" + +#. Label of the warranty_expiry_date (Date) field in DocType 'Serial No' +#. Label of the warranty_expiry_date (Date) field in DocType 'Warranty Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Warranty Expiry Date" +msgstr "" + +#. Label of the warranty_period (Int) field in DocType 'Serial No' +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Warranty Period (Days)" +msgstr "" + +#. Label of the warranty_period (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Warranty Period (in days)" +msgstr "" + +#: erpnext/utilities/doctype/video/video.js:7 +msgid "Watch Video" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Watt" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Watt-Hour" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Wavelength In Gigametres" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Wavelength In Kilometres" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Wavelength In Megametres" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:187 +msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:169 +msgid "We support uploading CSV, XLSX, XLS and PDF files. Please make sure the file contains the correct columns." +msgstr "" + +#: erpnext/www/support/index.html:7 +msgid "We're here to help!" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:122 +msgid "We've auto-detected the details of the statement file." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:282 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:300 +msgid "We've found 1 existing transaction in the system that conflicts with the transactions in the statement file. Are you sure you want to proceed with the import?" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:232 +msgid "We've found 1 transaction in the statement file that will be imported into the system. Please review the details below and click the 'Import' button to proceed." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:283 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:301 +msgid "We've found {0} existing transactions in the system that conflict with the transactions in the statement file. Are you sure you want to proceed with the import?" +msgstr "" + +#. Name of a DocType +#: erpnext/portal/doctype/website_attribute/website_attribute.json +msgid "Website Attribute" +msgstr "" + +#. Label of the web_long_description (Text Editor) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Website Description" +msgstr "" + +#. Name of a DocType +#: erpnext/portal/doctype/website_filter_field/website_filter_field.json +msgid "Website Filter Field" +msgstr "" + +#. Label of the website_image (Attach Image) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Website Image" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/website_item_group/website_item_group.json +msgid "Website Item Group" +msgstr "" + +#. Label of the sb_web_spec (Section Break) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Website Specifications" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:95 +msgid "Week of the year" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.py:457 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:121 +msgid "Week {0} {1}" +msgstr "" + +#. Label of the weekday (Select) field in DocType 'Quality Goal' +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +msgid "Weekday" +msgstr "" + +#. Label of the weekly_off (Check) field in DocType 'Holiday' +#. Label of the weekly_off (Select) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday/holiday.json +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Weekly Off" +msgstr "" + +#. Label of the weekly_time_to_send (Time) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Weekly Time to send" +msgstr "" + +#. Label of the weight (Float) field in DocType 'Shipment Parcel' +#. Label of the weight (Float) field in DocType 'Shipment Parcel Template' +#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Weight (kg)" +msgstr "" + +#. Label of the weight_per_unit (Float) field in DocType 'POS Invoice Item' +#. Label of the weight_per_unit (Float) field in DocType 'Purchase Invoice +#. Item' +#. Label of the weight_per_unit (Float) field in DocType 'Sales Invoice Item' +#. Label of the weight_per_unit (Float) field in DocType 'Purchase Order Item' +#. Label of the weight_per_unit (Float) field in DocType 'Supplier Quotation +#. Item' +#. Label of the weight_per_unit (Float) field in DocType 'Quotation Item' +#. Label of the weight_per_unit (Float) field in DocType 'Sales Order Item' +#. Label of the weight_per_unit (Float) field in DocType 'Delivery Note Item' +#. Label of the weight_per_unit (Float) field in DocType 'Item' +#. Label of the weight_per_unit (Float) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Weight Per Unit" +msgstr "" + +#. Label of the weight_uom (Link) field in DocType 'POS Invoice Item' +#. Label of the weight_uom (Link) field in DocType 'Purchase Invoice Item' +#. Label of the weight_uom (Link) field in DocType 'Sales Invoice Item' +#. Label of the weight_uom (Link) field in DocType 'Purchase Order Item' +#. Label of the weight_uom (Link) field in DocType 'Supplier Quotation Item' +#. Label of the weight_uom (Link) field in DocType 'Quotation Item' +#. Label of the weight_uom (Link) field in DocType 'Sales Order Item' +#. Label of the weight_uom (Link) field in DocType 'Delivery Note Item' +#. Label of the weight_uom (Link) field in DocType 'Item' +#. Label of the weight_uom (Link) field in DocType 'Packing Slip Item' +#. Label of the weight_uom (Link) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Weight UOM" +msgstr "" + +#. Label of the weighting_function (Small Text) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Weighting Function" +msgstr "" + +#: erpnext/templates/pages/help.html:12 +msgid "What do you need help with?" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:82 +msgid "What will be deleted:" +msgstr "" + +#. Label of the whatsapp_no (Data) field in DocType 'Lead' +#. Label of the whatsapp (Data) field in DocType 'Opportunity' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "WhatsApp" +msgstr "" + +#. Label of the wheels (Int) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Wheels" +msgstr "" + +#. Description of the 'Sub Assembly Warehouse' (Link) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "When a parent warehouse is chosen, the system conducts Project Qty checks against the associated child warehouses" +msgstr "" + +#. Description of the 'Disable Transaction Threshold' (Check) field in DocType +#. 'Tax Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "When checked, only cumulative threshold will be applied" +msgstr "" + +#. Description of the 'Disable Cumulative Threshold' (Check) field in DocType +#. 'Tax Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "When checked, only transaction threshold will be applied for transaction individually" +msgstr "" + +#. Description of the 'Use Posting Datetime for Naming Documents' (Check) field +#. in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "When checked, the system will use the posting datetime of the document for naming the document instead of the creation datetime of the document." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1508 +msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend." +msgstr "" + +#. Description of the 'Enable cut-off date on creating bulk Delivery Notes' +#. (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "When enabled, it adds a cutoff date filter to Delivery Notes created in bulk from Sales Orders. This allows you to process orders only with a transaction date up to the specified cutoff date, which is useful for period-end processing and batch fulfillment." +msgstr "" + +#. Description of the 'Block Supplier' (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:384 +msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:374 +msgid "While creating account for Child Company {0}, parent account {1} not found. Please create the parent account in corresponding COA" +msgstr "" + +#. Description of the 'Use Transaction Date Exchange Rate' (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "While making Purchase Invoice from Purchase Order, use Exchange Rate on Invoice's transaction date rather than inheriting it from Purchase Order. Only applies for Purchase Invoice." +msgstr "" + +#. Option for the 'Marital Status' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Widowed" +msgstr "" + +#. Label of the width (Float) field in DocType 'Shipment Parcel' +#. Label of the width (Float) field in DocType 'Shipment Parcel Template' +#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Width (cm)" +msgstr "" + +#. Label of the amt_in_word_width (Float) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Width of amount in word" +msgstr "" + +#. Description of the 'Taxes' (Table) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Will also apply for variants" +msgstr "" + +#. Description of the 'Reorder level based on Warehouse' (Table) field in +#. DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Will also apply for variants unless overridden" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:616 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:621 +msgid "Will be auto-populated" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:259 +msgid "Wire Transfer" +msgstr "" + +#. Label of the with_operations (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "With Operations" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:63 +#: erpnext/accounts/report/trial_balance/trial_balance.js:83 +msgid "With Period Closing Entry For Opening Balances" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the withdrawal (Currency) field in DocType 'Bank Transaction' +#. Option for the 'Transaction Type' (Select) field in DocType 'Bank +#. Transaction Rule' +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:88 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:145 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:246 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:313 +#: banking/src/pages/BankStatementImporter.tsx:194 +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:67 +msgid "Withdrawal" +msgstr "" + +#. Label of the withholding_date (Date) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Withholding Date" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:278 +msgid "Withholding Document" +msgstr "" + +#. Label of the withholding_name (Dynamic Link) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Withholding Document Name" +msgstr "" + +#. Label of the withholding_doctype (Link) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Withholding Document Type" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:70 +msgid "Within 1 day" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:71 +msgid "Within 2 days" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:72 +msgid "Within 3 days" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:73 +msgid "Within 4 days" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:74 +msgid "Within 5 days" +msgstr "" + +#. Label of a chart in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "Won Opportunities" +msgstr "" + +#. Label of a number card in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "Won Opportunity (Last 1 Month)" +msgstr "" + +#. Label of the work_done (Small Text) field in DocType 'Maintenance Visit +#. Purpose' +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +msgid "Work Done" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#. Option for the 'Status' (Select) field in DocType 'Job Card' +#. Option for the 'Status' (Select) field in DocType 'Job Card Operation' +#. Option for the 'Status' (Select) field in DocType 'Warranty Claim' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:12 +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +#: erpnext/setup/doctype/company/company.py:392 +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Work In Progress" +msgstr "" + +#. Option for the 'Transfer Material Against' (Select) field in DocType 'BOM' +#. Label of the work_order (Link) field in DocType 'Job Card' +#. Name of a DocType +#. Option for the 'Transfer Material Against' (Select) field in DocType 'Work +#. Order' +#. Label of a Link in the Manufacturing Workspace +#. Label of the work_order (Link) field in DocType 'Material Request' +#. Label of the work_order (Link) field in DocType 'Pick List' +#. Label of the work_order (Link) field in DocType 'Serial No' +#. Label of the work_order (Link) field in DocType 'Stock Entry' +#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation +#. Entry' +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom/bom.js:258 +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1094 +#: erpnext/stock/doctype/material_request/material_request.js:216 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:512 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:142 +#: erpnext/templates/pages/material_request_info.html:45 +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Work Order" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:144 +msgid "Work Order / Subcontract PO" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +msgid "Work Order Additional Item" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:93 +msgid "Work Order Analysis" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Work Order Consumed Materials" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Work Order Item" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +msgid "Work Order Mismatch" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Work Order Operation" +msgstr "" + +#. Label of the work_order_qty (Float) field in DocType 'Sales Order Item' +#. Label of the work_order_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +msgid "Work Order Qty" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:152 +msgid "Work Order Qty Analysis" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.json +msgid "Work Order Stock Report" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Work Order Summary" +msgstr "" + +#. Description of a report in the Onboarding Step 'View Work Order Summary +#. Report' +#: erpnext/manufacturing/onboarding_step/view_work_order_summary_report/view_work_order_summary_report.json +msgid "Work Order Summary Report" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:580 +msgid "Work Order cannot be created for following reason:
        {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:861 +msgid "Work Order cannot be raised against a Item Template" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +msgid "Work Order has been {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +msgid "Work Order is mandatory" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1297 +msgid "Work Order not created" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1391 +msgid "Work Order {0} created" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:194 +msgid "Work Order {0} has no produced qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/stock_entry_base.py:35 +msgid "Work Order {0} must be submitted" +msgstr "" + +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 +#: erpnext/stock/doctype/material_request/material_request.py:568 +msgid "Work Orders" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1390 +msgid "Work Orders Created: {0}" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/work_orders_in_progress/work_orders_in_progress.json +msgid "Work Orders in Progress" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Work Order Operation' +#. Label of the work_in_progress (Column Break) field in DocType 'Email Digest' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Work in Progress" +msgstr "" + +#. Label of the wip_warehouse (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Work-in-Progress Warehouse" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +msgid "Work-in-Progress Warehouse is required before Submit" +msgstr "" + +#. Label of the workday (Select) field in DocType 'Service Day' +#: erpnext/support/doctype/service_day/service_day.json +msgid "Workday" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:137 +msgid "Workday {0} has been repeated." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Task' +#. Option in a Select field in the tasks Web Form +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/web_form/tasks/tasks.json +msgid "Working" +msgstr "" + +#. Label of the working_hours_section (Tab Break) field in DocType +#. 'Workstation' +#. Label of the working_hours (Table) field in DocType 'Workstation' +#. Label of a number card in the Projects Workspace +#. Label of the support_and_resolution_section_break (Section Break) field in +#. DocType 'Service Level Agreement' +#. Label of the support_and_resolution (Table) field in DocType 'Service Level +#. Agreement' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:65 +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Working Hours" +msgstr "" + +#. Label of the workstation (Link) field in DocType 'BOM Operation' +#. Label of the workstation (Link) field in DocType 'BOM Website Operation' +#. Label of the workstation (Link) field in DocType 'Job Card' +#. Label of the workstation (Link) field in DocType 'Work Order Operation' +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of the manufacturing_section (Section Break) field in DocType 'Item +#. Lead Time' +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:337 +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/templates/generators/bom.html:70 +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Workstation" +msgstr "" + +#. Label of the workstation (Link) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Workstation / Machine" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json +msgid "Workstation Cost" +msgstr "" + +#. Label of the workstation_dashboard (HTML) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Workstation Dashboard" +msgstr "" + +#. Label of the workstation_name (Data) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Workstation Name" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json +msgid "Workstation Operating Component" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/workstation_operating_component_account/workstation_operating_component_account.json +msgid "Workstation Operating Component Account" +msgstr "" + +#. Label of the workstation_status_tab (Tab Break) field in DocType +#. 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Workstation Status" +msgstr "" + +#. Label of the workstation_type (Link) field in DocType 'BOM Operation' +#. Label of the workstation_type (Link) field in DocType 'Job Card' +#. Label of the workstation_type (Link) field in DocType 'Work Order Operation' +#. Label of the workstation_type (Link) field in DocType 'Workstation' +#. Name of a DocType +#. Label of the workstation_type (Data) field in DocType 'Workstation Type' +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Workstation Type" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json +msgid "Workstation Working Hour" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:476 +msgid "Workstation is closed on the following dates as per Holiday List: {0}" +msgstr "" + +#. Label of the workstations_tab (Tab Break) field in DocType 'Plant Floor' +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +msgid "Workstations" +msgstr "" + +#. Label of the write_off (Section Break) field in DocType 'Journal Entry' +#. Label of the column_break4 (Section Break) field in DocType 'POS Invoice' +#. Label of the write_off_section (Section Break) field in DocType 'POS +#. Profile' +#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice' +#. Label of the write_off_section (Section Break) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/setup/doctype/company/company.py:675 +msgid "Write Off" +msgstr "" + +#. Label of the write_off_account (Link) field in DocType 'POS Invoice' +#. Label of the write_off_account (Link) field in DocType 'POS Profile' +#. Label of the write_off_account (Link) field in DocType 'Purchase Invoice' +#. Label of the write_off_account (Link) field in DocType 'Sales Invoice' +#. Label of the write_off_account (Link) field in DocType 'Company' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/setup/doctype/company/company.json +msgid "Write Off Account" +msgstr "" + +#. Label of the write_off_amount (Currency) field in DocType 'Journal Entry' +#. Label of the write_off_amount (Currency) field in DocType 'POS Invoice' +#. Label of the write_off_amount (Currency) field in DocType 'Purchase Invoice' +#. Label of the write_off_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Write Off Amount" +msgstr "" + +#. Label of the base_write_off_amount (Currency) field in DocType 'POS Invoice' +#. Label of the base_write_off_amount (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the base_write_off_amount (Currency) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Write Off Amount (Company Currency)" +msgstr "" + +#. Label of the write_off_based_on (Select) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Write Off Based On" +msgstr "" + +#. Label of the write_off_cost_center (Link) field in DocType 'POS Invoice' +#. Label of the write_off_cost_center (Link) field in DocType 'POS Profile' +#. Label of the write_off_cost_center (Link) field in DocType 'Purchase +#. Invoice' +#. Label of the write_off_cost_center (Link) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Write Off Cost Center" +msgstr "" + +#. Label of the write_off_difference_amount (Button) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Write Off Difference Amount" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Write Off Entry" +msgstr "" + +#. Label of the write_off_limit (Currency) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Write Off Limit" +msgstr "" + +#. Label of the write_off_outstanding_amount_automatically (Check) field in +#. DocType 'POS Invoice' +#. Label of the write_off_outstanding_amount_automatically (Check) field in +#. DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Write Off Outstanding Amount" +msgstr "" + +#. Label of the section_break_34 (Section Break) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Writeoff" +msgstr "" + +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Depreciation Schedule' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Written Down Value" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:70 +msgid "Wrong Company" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:250 +msgid "Wrong Password" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:55 +msgid "Wrong Template" +msgstr "" + +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:66 +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:69 +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:72 +msgid "XML Files Processed" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Yard" +msgstr "" + +#. Label of the year_end_date (Date) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "Year End Date" +msgstr "" + +#. Label of the year (Data) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:9 +msgid "Year Name" +msgstr "" + +#. Label of the year_start_date (Date) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "Year Start Date" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:92 +msgid "Year in 2 digits" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:91 +msgid "Year in 4 digits" +msgstr "" + +#. Label of the year_of_passing (Int) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Year of Passing" +msgstr "" + +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.py:89 +msgid "Year start date or end date is overlapping with {0}. To avoid please set company" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:30 +msgid "You are importing data for the code list:" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:232 +msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:114 +msgid "You are not authorized to add or update entries before {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:341 +msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:316 +msgid "You are not authorized to set Frozen value" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:514 +msgid "You are picking more than required quantity for the item {0}. Check if there is any other pick list created for the sales order {1}." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 +msgid "You can add the original invoice {} manually to proceed." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 +msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." +msgstr "" + +#: erpnext/templates/emails/confirm_appointment.html:10 +msgid "You can also copy-paste this link in your browser" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:123 +msgid "You can also set default CWIP account in Company {}" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:87 +msgid "You can also use variables in the series name by putting them between (.) dots" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 +msgid "You can change the parent account to a Balance Sheet account or select a different account." +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:186 +msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

        " +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:574 +msgid "You can not enter current voucher in 'Against Journal Entry' column" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:230 +msgid "You can only have Plans with the same billing cycle in a Subscription" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:423 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1044 +msgid "You can only redeem max {0} points in this order." +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:190 +msgid "You can only select one mode of payment as default" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:595 +msgid "You can redeem upto {0}." +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 +msgid "You can reset the clearing dates of these entries here." +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:59 +msgid "You can set it as a machine name or operation type. For example, stiching machine 12" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:742 +msgid "You can set up the rule to split the transaction across multiple accounts." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:208 +msgid "You can use {0} to reconcile against {1} later." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 +msgid "You can't make any changes to Job Card since Work Order is closed." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 +msgid "You can't redeem Loyalty Points having more value than the Total Amount." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:776 +msgid "You cannot change the rate if BOM is mentioned against any Item." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +msgid "You cannot create a {0} within the closed Accounting Period {1}" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:64 +msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:145 +msgid "You cannot create/amend any accounting entries till this date." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 +msgid "You cannot credit and debit same account at the same time" +msgstr "" + +#: erpnext/projects/doctype/project_type/project_type.py:25 +msgid "You cannot delete Project Type 'External'" +msgstr "" + +#: erpnext/setup/doctype/department/department.js:19 +msgid "You cannot edit root node." +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +msgid "You cannot enable both the settings '{0}' and '{1}'." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 +msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:625 +msgid "You cannot redeem more than {0}." +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 +msgid "You cannot repost item valuation before {}" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:832 +msgid "You cannot restart a Subscription that is not cancelled." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:281 +msgid "You cannot submit empty order." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:280 +msgid "You cannot submit the order without payment." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:968 +msgid "You cannot update stock for a Debit Note. A Debit Note is a financial document that should not affect inventory. Please disable 'Update Stock'." +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:109 +msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 +msgid "You do not have permission to import and submit bank transactions" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:73 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:77 +msgid "You do not have permission to import bank transactions" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:210 +msgid "You do not have permissions to {} items in a {}." +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 +msgid "You don't have enough Loyalty Points to redeem" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:588 +msgid "You don't have enough points to redeem." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1760 +msgid "You don't have permission to create a Company Address. Please contact your System Manager." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1740 +msgid "You don't have permission to update Company details. Please contact your System Manager." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:36 +msgid "You don't have permission to update Received Qty DocField for item {0}" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1734 +msgid "You don't have permission to update this document. Please contact your System Manager." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 +msgid "You had {} errors while creating opening invoices. Check {} for more details" +msgstr "" + +#: erpnext/public/js/utils.js:1038 +msgid "You have already selected items from {0} {1}" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:420 +msgid "You have been invited to collaborate on the project {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:263 +msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the default price list being inserted in the transaction price list." +msgstr "" + +#: erpnext/selling/doctype/selling_settings/selling_settings.py:110 +msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the default price list being inserted into the transaction price list." +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:442 +msgid "You have entered a duplicate Delivery Note on Row" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 +msgid "You have not added any bank accounts to your company." +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:60 +msgid "You have not performed any reconciliations in this session yet." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1170 +msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +msgid "You have unsaved changes. Do you want to save the invoice?" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +msgid "You must select a customer before adding an item." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 +msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgstr "" + +#: erpnext/accounts/services/taxes.py:276 +msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Video' +#: erpnext/utilities/doctype/video/video.json +msgid "YouTube" +msgstr "" + +#. Name of a report +#: erpnext/utilities/report/youtube_interactions/youtube_interactions.json +msgid "YouTube Interactions" +msgstr "" + +#: erpnext/www/book_appointment/index.html:49 +msgid "Your Name (required)" +msgstr "" + +#: erpnext/www/book_appointment/verify/index.html:11 +msgid "Your email has been verified and your appointment has been scheduled" +msgstr "" + +#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:22 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:342 +msgid "Your order is out for delivery!" +msgstr "" + +#: erpnext/templates/pages/help.html:52 +msgid "Your tickets" +msgstr "" + +#. Label of the youtube_video_id (Data) field in DocType 'Video' +#: erpnext/utilities/doctype/video/video.json +msgid "Youtube ID" +msgstr "" + +#. Label of the youtube_tracking_section (Section Break) field in DocType +#. 'Video' +#: erpnext/utilities/doctype/video/video.json +msgid "Youtube Statistics" +msgstr "" + +#: erpnext/public/js/utils/contact_address_quick_entry.js:88 +msgid "ZIP Code" +msgstr "" + +#. Label of the zero_balance (Check) field in DocType 'Exchange Rate +#. Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Zero Balance" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 +msgid "Zero Rated" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:190 +msgid "Zero quantity" +msgstr "" + +#. Label of the zero_quantity_line_items_section (Section Break) field in +#. DocType 'Buying Settings' +#. Label of the section_break_zero_qty (Section Break) field in DocType +#. 'Selling Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Zero-Quantity Line Items" +msgstr "" + +#. Label of the zip_file (Attach) field in DocType 'Import Supplier Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Zip File" +msgstr "" + +#: erpnext/stock/reorder_item.py:364 +msgid "[Important] [ERPNext] Auto Reorder Errors" +msgstr "" + +#: erpnext/controllers/status_updater.py:306 +msgid "`Allow Negative rates for Items`" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2051 +msgid "after" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:58 +msgid "as Code" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:74 +msgid "as Description" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:49 +msgid "as Title" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1026 +msgid "as a percentage of finished item quantity" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +msgid "as of {0}" +msgstr "" + +#: erpnext/www/book_appointment/index.html:43 +msgid "at" +msgstr "" + +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:16 +msgid "based_on" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:91 +msgid "by {}" +msgstr "" + +#: erpnext/public/js/utils/sales_common.js:336 +msgid "cannot be greater than 100" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 +msgid "dated {0}" +msgstr "" + +#. Label of the description (Small Text) field in DocType 'Production Plan Sub +#. Assembly Item' +#: erpnext/edi/doctype/code_list/code_list_import.js:81 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "description" +msgstr "" + +#. Option for the 'Plaid Environment' (Select) field in DocType 'Plaid +#. Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "development" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:451 +msgid "discount applied" +msgstr "" + +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:45 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:67 +msgid "doc_type" +msgstr "" + +#. Description of the 'Coupon Name' (Data) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "e.g. \"Summer Holiday 2019 Offer 20\"" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:663 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1233 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:685 +msgid "e.g. Bank Charges" +msgstr "" + +#. Description of the 'Shipping Rule Label' (Data) field in DocType 'Shipping +#. Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "example: Next Day Shipping" +msgstr "" + +#. Option for the 'Service Provider' (Select) field in DocType 'Currency +#. Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "exchangerate.host" +msgstr "" + +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:193 +msgid "fieldname" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:97 +msgid "fieldname on the document e.g." +msgstr "" + +#. Option for the 'Service Provider' (Select) field in DocType 'Currency +#. Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "frankfurter.dev" +msgstr "" + +#. Option for the 'Service Provider' (Select) field in DocType 'Currency +#. Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "frankfurter.dev - v2" +msgstr "" + +#: erpnext/templates/form_grid/item_grid.html:66 +#: erpnext/templates/form_grid/item_grid.html:80 +msgid "hidden" +msgstr "" + +#: erpnext/projects/doctype/project/project_dashboard.html:13 +msgid "hours" +msgstr "" + +#. Label of the lft (Int) field in DocType 'Cost Center' +#. Label of the lft (Int) field in DocType 'Location' +#. Label of the lft (Int) field in DocType 'Task' +#. Label of the lft (Int) field in DocType 'Customer Group' +#. Label of the lft (Int) field in DocType 'Department' +#. Label of the lft (Int) field in DocType 'Employee' +#. Label of the lft (Int) field in DocType 'Item Group' +#. Label of the lft (Int) field in DocType 'Sales Person' +#. Label of the lft (Int) field in DocType 'Supplier Group' +#. Label of the lft (Int) field in DocType 'Territory' +#. Label of the lft (Int) field in DocType 'Warehouse' +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/assets/doctype/location/location.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/sales_person/sales_person.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/setup/doctype/territory/territory.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "lft" +msgstr "" + +#. Label of the material_request_item (Data) field in DocType 'Production Plan +#. Item' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +msgid "material_request_item" +msgstr "" + +#: erpnext/controllers/selling_controller.py:219 +msgid "must be between 0 and 100" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:676 +msgid "name" +msgstr "" + +#: erpnext/templates/pages/task_info.html:75 +msgid "on" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:50 +msgid "or its descendants" +msgstr "" + +#: erpnext/templates/includes/macros.html:207 +#: erpnext/templates/includes/macros.html:211 +msgid "out of 5" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1241 +msgid "paid to" +msgstr "" + +#: erpnext/public/js/utils.js:463 +msgid "payments app is not installed. Please install it from {0} or {1}" +msgstr "" + +#: erpnext/utilities/__init__.py:51 +msgid "payments app is not installed. Please install it from {} or {}" +msgstr "" + +#. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' +#. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation +#. Type' +#. Description of the 'Billing Rate' (Currency) field in DocType 'Activity +#. Cost' +#. Description of the 'Costing Rate' (Currency) field in DocType 'Activity +#. Cost' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +#: erpnext/projects/doctype/activity_cost/activity_cost.json +msgid "per hour" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2052 +msgid "performing either one below:" +msgstr "" + +#. Description of the 'Product Bundle Item' (Data) field in DocType 'Pick List +#. Item' +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "product bundle item row's name in sales order. Also indicates that picked item is to be used for a product bundle" +msgstr "" + +#. Option for the 'Plaid Environment' (Select) field in DocType 'Plaid +#. Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "production" +msgstr "" + +#. Label of the quotation_item (Data) field in DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "quotation_item" +msgstr "" + +#: erpnext/templates/includes/macros.html:202 +msgid "ratings" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1241 +msgid "received from" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:143 +msgid "reconciled" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:164 +msgid "returned" +msgstr "" + +#. Label of the rgt (Int) field in DocType 'Cost Center' +#. Label of the rgt (Int) field in DocType 'Location' +#. Label of the rgt (Int) field in DocType 'Task' +#. Label of the rgt (Int) field in DocType 'Customer Group' +#. Label of the rgt (Int) field in DocType 'Department' +#. Label of the rgt (Int) field in DocType 'Employee' +#. Label of the rgt (Int) field in DocType 'Item Group' +#. Label of the rgt (Int) field in DocType 'Sales Person' +#. Label of the rgt (Int) field in DocType 'Supplier Group' +#. Label of the rgt (Int) field in DocType 'Territory' +#. Label of the rgt (Int) field in DocType 'Warehouse' +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/assets/doctype/location/location.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/sales_person/sales_person.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/setup/doctype/territory/territory.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "rgt" +msgstr "" + +#. Option for the 'Plaid Environment' (Select) field in DocType 'Plaid +#. Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "sandbox" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:164 +msgid "sold" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:809 +msgid "subscription is already cancelled." +msgstr "" + +#: erpnext/controllers/status_updater.py:493 +#: erpnext/controllers/status_updater.py:512 +msgid "target_ref_field" +msgstr "" + +#. Label of the temporary_name (Data) field in DocType 'Production Plan Item' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +msgid "temporary name" +msgstr "" + +#. Label of the title (Data) field in DocType 'Activity Cost' +#: erpnext/projects/doctype/activity_cost/activity_cost.json +msgid "title" +msgstr "" + +#: erpnext/www/book_appointment/index.js:134 +msgid "to" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1259 +msgid "to unallocate the amount of this Return Invoice before cancelling it." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:178 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:182 +msgid "transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:458 +msgid "transaction selected" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:178 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:182 +msgid "transactions" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:458 +msgid "transactions selected" +msgstr "" + +#. Description of the 'Coupon Code' (Data) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "unique e.g. SAVE20 To be used to get discount" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:66 +msgid "updated delivered quantity for item {0} to {1}" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:9 +msgid "variance" +msgstr "" + +#. Description of the 'Increase In Asset Life (Months)' (Int) field in DocType +#. 'Asset Finance Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "via Asset Repair" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py:41 +msgid "via BOM Update Tool" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:121 +msgid "you must select Capital Work in Progress Account in accounts table" +msgstr "" + +#: erpnext/accounts/services/taxes.py:116 +msgid "{0} '{1}' is disabled" +msgstr "" + +#: erpnext/accounts/utils.py:200 +msgid "{0} '{1}' not in Fiscal Year {2}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/status.py:181 +msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1295 +msgid "{0} Account not found against Customer {1}." +msgstr "" + +#: erpnext/utilities/transaction_base.py:257 +msgid "{0} Account: {1} ({2}) must be in either customer billing currency: {3} or Company default currency: {4}" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:559 +msgid "{0} Budget for Account {1} against {2} {3} is {4}. It is already exceeded by {5}." +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:562 +msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:117 +msgid "{0} Digest" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:263 +#: erpnext/public/js/utils/naming_series.js:403 +msgid "{0} Naming Series" +msgstr "" + +#: erpnext/accounts/utils.py:1590 +msgid "{0} Number {1} is already used in {2} {3}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/operations_cost.py:134 +msgid "{0} Operating Cost for operation {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:572 +msgid "{0} Operations: {1}" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:232 +msgid "{0} Request for {1}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:391 +msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1048 +msgid "{0} Transaction(s) Reconciled" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:164 +msgid "{0} Year Work Anniversary" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:165 +msgid "{0} Years Work Anniversary" +msgstr "" + +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:60 +msgid "{0} account is not of company {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:63 +msgid "{0} account is not of type {1}" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:55 +msgid "{0} account not found while submitting purchase receipt" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:807 +msgid "{0} against Bill {1} dated {2}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:795 +msgid "{0} against Purchase Order {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:785 +msgid "{0} against Sales Invoice {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:789 +msgid "{0} against Sales Order {1}" +msgstr "" + +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.py:66 +msgid "{0} already has a Parent Procedure {1}." +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:63 +#: erpnext/accounts/report/pos_register/pos_register.py:120 +msgid "{0} and {1} are mandatory" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:42 +msgid "{0} asset cannot be transferred" +msgstr "" + +#: erpnext/controllers/trends.py:66 +msgid "{0} can be either {1} or {2}." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:279 +msgid "{0} can not be negative" +msgstr "" + +#: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 +msgid "{0} cannot be changed with opened Opening Entries." +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 +msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:168 +msgid "{0} cannot be zero" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:130 +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:199 +#: erpnext/stock/doctype/pick_list/mapper.py:79 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:323 +msgid "{0} created" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:33 +msgid "{0} creation for the following records will be skipped." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:303 +msgid "{0} currency must be same as company's default currency. Please select another account." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.py:286 +msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:137 +msgid "{0} currently has a {1} Supplier Scorecard standing, and RFQs to this supplier should be issued with caution." +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:164 +msgid "{0} does not belong to Company {1}" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:185 +msgid "{0} does not belong to the Company {1}." +msgstr "" + +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.py:74 +msgid "{0} entered twice in Item Tax" +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.py:47 +#: erpnext/stock/doctype/item/item.py:522 +msgid "{0} entered twice {1} in Item Taxes" +msgstr "" + +#: erpnext/accounts/utils.py:137 +#: erpnext/projects/doctype/activity_cost/activity_cost.py:40 +msgid "{0} for {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:455 +msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +msgid "{0} has been modified after you pulled it. Please pull it again." +msgstr "" + +#: erpnext/setup/default_success_action.py:15 +msgid "{0} has been submitted successfully" +msgstr "" + +#: erpnext/projects/doctype/project/project_dashboard.html:15 +msgid "{0} hours" +msgstr "" + +#: erpnext/accounts/services/payment_schedule.py:235 +msgid "{0} in row {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +msgid "{0} is a child table and will be deleted automatically with its parent" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:95 +msgid "{0} is a mandatory Accounting Dimension.
        Please set a value for {0} in Accounting Dimensions section." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:102 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:155 +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:60 +msgid "{0} is added multiple times on rows: {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +msgid "{0} is already running for {1}" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:169 +msgid "{0} is blocked so this transaction cannot proceed" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:508 +msgid "{0} is in Draft. Submit it before creating the Asset." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:865 +msgid "{0} is mandatory for Item {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100 +#: erpnext/accounts/services/gl_validator.py:157 +msgid "{0} is mandatory for account {1}" +msgstr "" + +#: erpnext/public/js/controllers/taxes_and_totals.js:131 +msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" +msgstr "" + +#: erpnext/accounts/services/taxes.py:233 +msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1813 +msgid "{0} is not a CSV file." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:236 +msgid "{0} is not a company bank account" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:53 +msgid "{0} is not a group node. Please select a group node as parent cost center" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:109 +msgid "{0} is not a stock Item" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:407 +msgid "{0} is not a valid Accounting Dimension." +msgstr "" + +#: erpnext/controllers/item_variant.py:199 +msgid "{0} is not a valid Value for Attribute {1} of Item {2}." +msgstr "" + +#: erpnext/stock/utils.py:136 +msgid "{0} is not a valid {1} fieldname." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:168 +msgid "{0} is not added in the table" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:146 +msgid "{0} is not enabled in {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 +msgid "{0} is not running. Cannot trigger events for this Document" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:478 +msgid "{0} is not the default supplier for any items." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 +msgid "{0} is on hold till {1}" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 +msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:537 +msgid "{0} items disassembled" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:501 +msgid "{0} items in progress" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:525 +msgid "{0} items lost during process." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:482 +msgid "{0} items produced" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:505 +msgid "{0} items returned" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:508 +msgid "{0} items to return" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:219 +msgid "{0} must be negative in return document" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/inter_company.py:60 +msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/costing.py:63 +msgid "{0} not found for item {1}" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:706 +msgid "{0} parameter is invalid" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:65 +msgid "{0} payment entries can not be filtered by {1}" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:167 +msgctxt "Do MMMM YYYY" +msgid "{0} to {1}" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:234 +msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:1085 +msgid "{0} units of Item {1} is not available in any of the warehouses." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:1078 +msgid "{0} units of Item {1} is not available in any of the warehouses. Other Pick Lists exist for this item." +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:144 +msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." +msgstr "" + +#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 +#: erpnext/stock/stock_ledger.py:2214 +msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." +msgstr "" + +#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." +msgstr "" + +#: erpnext/stock/stock_ledger.py:1692 +msgid "{0} units of {1} needed in {2} to complete this transaction." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:36 +msgid "{0} until {1}" +msgstr "" + +#: erpnext/stock/utils.py:402 +msgid "{0} valid serial nos for Item {1}" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1177 +msgid "{0} variants created." +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +msgid "{0} view is currently unsupported in Custom Financial Report." +msgstr "" + +#: erpnext/accounts/doctype/payment_term/payment_term.js:19 +msgid "{0} will be given as discount." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:523 +msgid "{0} will be set as the {1} in subsequently scanned items" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1084 +msgid "{0} {1}" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:266 +msgid "{0} {1} Manually" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1052 +msgid "{0} {1} Partially Reconciled" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:559 +msgid "{0} {1} cannot be updated. If you need to make changes, we recommend canceling the existing entry and creating a new one." +msgstr "" + +#: erpnext/accounts/doctype/payment_order/payment_order.py:130 +msgid "{0} {1} created" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +msgid "{0} {1} does not exist" +msgstr "" + +#: erpnext/accounts/party.py:577 +msgid "{0} {1} has accounting entries in currency {2} for company {3}. Please select a receivable or payable account with currency {2}." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:465 +msgid "{0} {1} has already been fully paid." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:475 +msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/status.py:35 +#: erpnext/selling/doctype/sales_order/services/status.py:45 +#: erpnext/stock/doctype/material_request/material_request.py:258 +msgid "{0} {1} has been modified. Please refresh." +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:285 +msgid "{0} {1} has not been submitted so the action cannot be completed" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:103 +msgid "{0} {1} is allocated twice in this Bank Transaction" +msgstr "" + +#: erpnext/edi/doctype/common_code/common_code.py:54 +msgid "{0} {1} is already linked to Common Code {2}." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 +msgid "{0} {1} is associated with {2}, but Party Account is {3}" +msgstr "" + +#: erpnext/controllers/selling_controller.py:509 +#: erpnext/controllers/subcontracting_controller.py:1152 +msgid "{0} {1} is cancelled or closed" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:437 +msgid "{0} {1} is cancelled or stopped" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:275 +msgid "{0} {1} is cancelled so the action cannot be completed" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:155 +msgid "{0} {1} is closed" +msgstr "" + +#: erpnext/accounts/party.py:824 +msgid "{0} {1} is disabled" +msgstr "" + +#: erpnext/accounts/party.py:830 +msgid "{0} {1} is frozen" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:153 +msgid "{0} {1} is fully billed" +msgstr "" + +#: erpnext/accounts/party.py:834 +msgid "{0} {1} is not active" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 +msgid "{0} {1} is not associated with {2} {3}" +msgstr "" + +#: erpnext/accounts/utils.py:133 +msgid "{0} {1} is not in any active Fiscal Year" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:151 +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:191 +msgid "{0} {1} is not submitted" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:721 +msgid "{0} {1} is on hold" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:727 +msgid "{0} {1} must be submitted" +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:275 +msgid "{0} {1} not allowed to be reposted. You can enable it by adding it '{2}' table in {3}." +msgstr "" + +#: erpnext/buying/utils.py:117 +msgid "{0} {1} status is {2}." +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:242 +msgid "{0} {1} via CSV File" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:226 +msgid "{0} {1}: 'Profit and Loss' type account {2} not allowed in Opening Entry" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:252 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:86 +msgid "{0} {1}: Account {2} does not belong to Company {3}" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:240 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:74 +msgid "{0} {1}: Account {2} is a Group Account and group accounts cannot be used in transactions" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:247 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:81 +msgid "{0} {1}: Account {2} is inactive" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:293 +msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:226 +msgid "{0} {1}: Cost Center is mandatory for Item {2}" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:179 +msgid "{0} {1}: Cost Center is required for 'Profit and Loss' account {2}." +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:265 +msgid "{0} {1}: Cost Center {2} does not belong to Company {3}" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:272 +msgid "{0} {1}: Cost Center {2} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:145 +msgid "{0} {1}: Customer is required against Receivable account {2}" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:167 +msgid "{0} {1}: Either debit or credit amount is required for {2}" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:151 +msgid "{0} {1}: Supplier is required against Payable account {2}" +msgstr "" + +#: erpnext/projects/doctype/project/project_list.js:6 +msgid "{0}%" +msgstr "" + +#: erpnext/controllers/website_list_for_contact.py:210 +msgid "{0}% Billed" +msgstr "" + +#: erpnext/controllers/website_list_for_contact.py:218 +msgid "{0}% Delivered" +msgstr "" + +#: erpnext/accounts/doctype/payment_term/payment_term.js:15 +#, python-format +msgid "{0}% of total invoice value will be given as discount." +msgstr "" + +#: erpnext/projects/doctype/task/task.py:129 +msgid "{0}'s {1} cannot be after {2}'s Expected End Date." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 +msgid "{0}, complete the operation {1} before the operation {2}." +msgstr "" + +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 +msgid "{0}, {1} or {2} are the only allowed options." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +msgid "{0}: Child table (auto-deleted with parent)" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +msgid "{0}: Not found" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +msgid "{0}: Protected DocType" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +msgid "{0}: Virtual DocType (no database table)" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:488 +msgid "{0}: {1} does not belong to the Company: {2}" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1354 +msgid "{0}: {1} does not exist" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:290 +msgid "{0}: {1} is a group account." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +msgid "{0}: {1} must be less than {2}" +msgstr "" + +#: erpnext/controllers/buying_controller.py:1028 +msgid "{count} Assets created for {item_code}" +msgstr "" + +#: erpnext/controllers/buying_controller.py:928 +msgid "{doctype} {name} is cancelled or closed." +msgstr "" + +#: erpnext/controllers/stock_controller.py:668 +msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" +msgstr "" + +#: erpnext/controllers/stock_controller.py:551 +msgid "{ref_doctype} {ref_name} status is {status}." +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:429 +msgid "{}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" +msgstr "" + +#: erpnext/controllers/buying_controller.py:289 +msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 +msgid "{} invoices" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{} is a child company." +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{} {} is already linked with another {}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{} {} is already linked with {} {}" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{} {} is not affecting bank account {}" +msgstr "" + diff --git a/erpnext/locale/bs.po b/erpnext/locale/bs.po index a097213ab2a..30ce80fbb7f 100644 --- a/erpnext/locale/bs.po +++ b/erpnext/locale/bs.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"PO-Revision-Date: 2026-06-24 19:23\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Bosnian\n" "MIME-Version: 1.0\n" @@ -27,8 +27,8 @@ msgid "\n" "\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." msgstr "\n" "\t\t\tŠarža {0} artikla {1} ima negativne zalihe u skladištu {2}{3}.\n" -"\t\t\tMolimo dodajte količinu zaliha od {4} da biste nastavili s ovim unosom.\n" -"\t\t\tAko nije moguće izvršiti unos prilagođavanja, omogućite 'Dozvoli Negativne Zalihe za Šaržu' ya Šaržu {0} ili u Postavkama Zaliha da biste nastavili.\n" +"\t\t\tDodaj količinu zaliha od {4} da biste nastavili s ovim unosom.\n" +"\t\t\tAko nije moguće izvršiti unos prilagođavanja, omogućite 'Dozvoli Negativne Zalihe za Šaržu' za Šaržu {0} ili u Postavkama Zaliha da biste nastavili.\n" "\t\t\tMeđutim, omogućavanje ove postavke može dovesti do negativnih zaliha u sistemu.\n" "\t\t\tStoga, molimo vas da osigurate da se nivoi zaliha što prije prilagode kako bi se održala ispravna stopa vrednovanja." @@ -12197,7 +12197,7 @@ msgstr "Konsolidirana Prodajna Faktura" #. Name of a report #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.json msgid "Consolidated Trial Balance" -msgstr "Konsolidovani Bruto Bilans" +msgstr "Konsolidovani Probni Bilans" #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:71 msgid "Consolidated Trial Balance can be generated for Companies having same root Company." @@ -12205,7 +12205,7 @@ msgstr "Konsolidovani Bruto Bilans može se generirati za poduzeća koje imaju i #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:167 msgid "Consolidated Trial balance could not be generated as Exchange Rate from {0} to {1} is not available for {2}." -msgstr "Konsolidovani Bruto Bilans nije mogao biti generisan jer kurs od {0} do {1} nije dostupan za {2}." +msgstr "Konsolidovani Probni Bilans nije mogao biti generisan jer kurs valute od {0} do {1} nije dostupan za {2}." #. Option for the 'Lead Type' (Select) field in DocType 'Lead' #: erpnext/crm/doctype/lead/lead.json @@ -58110,7 +58110,7 @@ msgstr "Stablo Procedura" #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Trial Balance" -msgstr "Bruto Stanje" +msgstr "Probni Bilans" #. Name of a report #: erpnext/accounts/report/trial_balance_simple/trial_balance_simple.json @@ -58124,7 +58124,7 @@ msgstr "Bruto Stanje (Jednostavno)" #: erpnext/accounts/workspace/financial_reports/financial_reports.json #: erpnext/workspace_sidebar/financial_reports.json msgid "Trial Balance for Party" -msgstr "Bruto Stanje Stranke" +msgstr "Probni Bilans Stranke" #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json diff --git a/erpnext/locale/de.po b/erpnext/locale/de.po index f353af1e90e..9edb848d4b7 100644 --- a/erpnext/locale/de.po +++ b/erpnext/locale/de.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"PO-Revision-Date: 2026-06-23 19:26\n" "Last-Translator: hello@frappe.io\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -4293,7 +4293,7 @@ msgstr "Verkauf erlauben" #. in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Allow Sales Order creation for expired Quotation" -msgstr "" +msgstr "Auftragserstellung für abgelaufene Angebote zulassen" #. Label of the allow_zero_qty_in_sales_order (Check) field in DocType 'Selling #. Settings' @@ -4409,7 +4409,7 @@ msgstr "Rechnungswährung darf sich von Kontowährung unterscheiden" #. 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Allow multiple Sales Orders against a customer's Purchase Order" -msgstr "" +msgstr "Mehrere Aufträge (je Kunde) mit derselben Bestellnummer erlauben" #. Label of the allow_negative_rates_for_items (Check) field in DocType 'Buying #. Settings' @@ -48219,7 +48219,7 @@ msgstr "Einsparungen" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Sazhen" -msgstr "" +msgstr "Saschen" #. Label of the scan_barcode (Data) field in DocType 'POS Invoice' #. Label of the scan_barcode (Data) field in DocType 'Purchase Invoice' @@ -51463,7 +51463,7 @@ msgstr "Quadratmeile" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Square Yard" -msgstr "" +msgstr "Quadratyard" #. Label of the stage_name (Data) field in DocType 'Sales Stage' #: erpnext/crm/doctype/sales_stage/sales_stage.json @@ -52544,7 +52544,7 @@ msgstr "Lagerbestände/Konten können nicht eingefroren werden, da die Verarbeit #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Stone" -msgstr "" +msgstr "Stone" #. Label of the stop_reason (Select) field in DocType 'Downtime Entry' #: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json @@ -59818,7 +59818,7 @@ msgstr "Wert oder Menge" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Vara" -msgstr "" +msgstr "Vara" #. Label of the variable (Data) field in DocType 'Bank Statement Import Log #. Column Map' @@ -61136,7 +61136,7 @@ msgstr "Einbehalt-Dokumenttyp" #: banking/src/components/features/Settings/Preferences.tsx:70 msgid "Within 1 day" -msgstr "" +msgstr "Innerhalb eines Tages" #: banking/src/components/features/Settings/Preferences.tsx:71 msgid "Within 2 days" @@ -62090,7 +62090,7 @@ msgstr "" #. Exchange Settings' #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json msgid "frankfurter.dev" -msgstr "" +msgstr "frankfurter.dev" #. Option for the 'Service Provider' (Select) field in DocType 'Currency #. Exchange Settings' diff --git a/erpnext/locale/fa.po b/erpnext/locale/fa.po index 243217b64c5..f32898dedc9 100644 --- a/erpnext/locale/fa.po +++ b/erpnext/locale/fa.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"PO-Revision-Date: 2026-06-23 19:26\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -61985,7 +61985,7 @@ msgstr "frankfurter.dev" #. Exchange Settings' #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json msgid "frankfurter.dev - v2" -msgstr "" +msgstr "frankfurter.dev - v2" #: erpnext/templates/form_grid/item_grid.html:66 #: erpnext/templates/form_grid/item_grid.html:80 diff --git a/erpnext/locale/hr.po b/erpnext/locale/hr.po index e00b0cfd0d7..581c9d294ae 100644 --- a/erpnext/locale/hr.po +++ b/erpnext/locale/hr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"PO-Revision-Date: 2026-06-24 19:23\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -25,7 +25,12 @@ msgid "\n" "\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" "\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" "\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" +msgstr "\n" +"\t\t\tŠarža {0} artikla {1} ima negativne zalihe u skladištu {2}{3}.\n" +"\t\t\tDodaj količinu zaliha od {4} da biste nastavili s ovim unosom.\n" +"\t\t\tAko nije moguće izvršiti unos prilagođavanja, omogućite 'Dozvoli Negativne Zalihe za Šaržu' za Šaržu {0} ili u Postavkama Zaliha da biste nastavili.\n" +"\t\t\tMeđutim, omogućavanje ove postavke može dovesti do negativnih zaliha u ssustavu.\n" +"\t\t\tStoga, molimo vas da osigurate da se razina zaliha što prije prilagode kako bi se održala ispravna stopa vrednovanja." #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json @@ -1067,7 +1072,7 @@ msgstr "Otpremnica se može kreirati samo za nacrt Dostavnice." #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." -msgstr "" +msgstr "Verifikat Zatvaranje Razdoblja je već podnesen i početni unos se više ne može kreirati. {0} za više informacija." #. Description of a DocType #: erpnext/stock/doctype/price_list/price_list.json @@ -2732,7 +2737,7 @@ msgstr "Dodaj više zadataka" #: erpnext/stock/doctype/item/item.js:974 msgid "Add Opening Stock" -msgstr "" +msgstr "Dodaj Početne Zalihe" #. Label of the add_deduct_tax (Select) field in DocType 'Advance Taxes and #. Charges' @@ -4024,7 +4029,7 @@ msgstr "Automatski Dodjeli Predujam (FIFO)" #. 'Purchase Taxes and Charges' #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json msgid "Allocate Full Amount to Stock Items" -msgstr "" +msgstr "Dodijeli Puni Iznos Artiklima Zaliha" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 msgid "Allocate Payment Amount" @@ -4603,7 +4608,7 @@ msgstr "Također se ne možete vratiti na FIFO nakon što ste za ovu stavku post #: erpnext/stock/report/stock_balance/stock_balance.py:644 msgid "Alt UOM" -msgstr "" +msgstr "Alternativna Jedinica" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 @@ -7295,7 +7300,7 @@ msgstr "Količinsko Stanje" #: erpnext/stock/report/stock_balance/stock_balance.py:635 msgid "Balance Qty (Alt UOM)" -msgstr "" +msgstr "Količinsko Stanja (Alternativna Jedinica)" #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:71 msgid "Balance Qty (Stock)" @@ -12192,15 +12197,15 @@ msgstr "Konsolidirana Prodajna Faktura" #. Name of a report #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.json msgid "Consolidated Trial Balance" -msgstr "Konsolidirana Bruto Bilanca" +msgstr "Konsolidirana Probna Bilanca" #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:71 msgid "Consolidated Trial Balance can be generated for Companies having same root Company." -msgstr "Konsolidirana Bruto Bilanca može se generirati za tvrtke koje imaju istu matičnu tvrtku." +msgstr "Konsolidirana Probna Bilanca može se generirati za tvrtke koje imaju istu matičnu tvrtku." #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:167 msgid "Consolidated Trial balance could not be generated as Exchange Rate from {0} to {1} is not available for {2}." -msgstr "Konsolidirana Bruto Bilanca nije mogla biti generirana jer tečaj od {0} do {1} nije dostupan za {2}." +msgstr "Konsolidirana Probna Bilanca nije mongla biti generirana jer devizni tečaj od {0} do {1} nije dostupan za {2}." #. Option for the 'Lead Type' (Select) field in DocType 'Lead' #: erpnext/crm/doctype/lead/lead.json @@ -13772,7 +13777,7 @@ msgstr "Kreiranje Naloga Knjiženja u toku..." #: erpnext/stock/doctype/item/item.js:988 msgid "Creating Opening Stock Entry..." -msgstr "" +msgstr "Kreiranje Početnog Unosa Zaliha..." #: erpnext/stock/doctype/packing_slip/packing_slip.js:42 msgid "Creating Packing Slip ..." @@ -16099,7 +16104,7 @@ msgstr "Standard Predlošci PDV-a za prodaju, nabavu i artikle su kreirani." #: erpnext/stock/doctype/item/item.js:942 #: erpnext/stock/doctype/item/item.js:954 msgid "Default warehouse from Item Defaults." -msgstr "" +msgstr "Standard Skladište iz Standard Postavki Artikala." #. Description of the 'Time Between Operations (Mins)' (Int) field in DocType #. 'Manufacturing Settings' @@ -16285,7 +16290,7 @@ msgstr "Izbriši Transakcije" #: erpnext/setup/doctype/company/company.js:254 msgid "Delete all the Transactions for {0}" -msgstr "" +msgstr "Izbriši sve transakcije za {0}" #. Label of a Link in the ERPNext Settings Workspace #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json @@ -19569,7 +19574,7 @@ msgstr "Prekomjerna Demontaža" #: erpnext/stock/doctype/stock_entry/services/material_transfer.py:243 msgid "Excess Material Transfer" -msgstr "" +msgstr "Prijenos Dodatnog Materijala" #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:55 msgid "Excess Materials Consumed" @@ -23440,7 +23445,7 @@ msgstr "Ako je označeno, odabrana količina neće biti automatski ispunjena pri #. DocType 'Purchase Taxes and Charges' #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json msgid "If checked, the entire amount (e.g. Freight) is allocated to the valuation of stock & asset items only. If unchecked, the amount is distributed across all items and the portion belonging to non-stock items is not added to valuation." -msgstr "" +msgstr "Ako je odabrano, cijeli iznos (npr. Vozarina) se dodjeljuje samo za stopu vrijednovanja zaliha i imovine. Ako nije odabrano, iznos se raspoređuje na sve artikle, a dio koji pripada artiklima koje nisu na zalihama se ne dodaje stopi vrijednovanja." #. Description of the 'Considered In Paid Amount' (Check) field in DocType #. 'Purchase Taxes and Charges' @@ -23615,7 +23620,7 @@ msgstr "Ako je omogućeno, sustav će dopustiti negativne unose zaliha za šarž #. 'Batch' #: erpnext/stock/doctype/batch/batch.json msgid "If enabled, the system will allow negative stock entries for this batch, overriding the 'Allow negative stock for Batch' setting in Stock Settings. This may lead to incorrect valuation rates, so it is recommended to avoid using this option." -msgstr "" +msgstr "Ako je omogućeno, sustav će dopustiti unos negativnih zaliha za ovu šaržu, poništavajući postavku 'Dopusti negativne zalihe za Šaržu' u Postavkama Zaliha. To može dovesti do netočnih stopa vrednovanja, stoga se preporučuje izbjegavanje korištenja ove opcije." #. Description of the 'Allow UOM with conversion rate defined in Item' (Check) #. field in DocType 'Stock Settings' @@ -25516,7 +25521,7 @@ msgstr "Nevažeći upit pretraživanja" #: erpnext/stock/doctype/stock_entry/stock_entry.py:1649 msgid "Invalid subcontract order field: {0}" -msgstr "" +msgstr "Nevažeći nalog podizvođača: {0}" #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:99 msgid "Invalid value {0} for 'Based On'" @@ -28866,7 +28871,7 @@ msgstr "Odsustvo Isplaćeno?" #: erpnext/stock/doctype/item/item.js:969 msgid "Leave as 0 to allow zero valuation rate." -msgstr "" +msgstr "Ostavite kao 0 kako biste omogućili nultu stopu vrednovanja." #. Description of the 'Success Redirect URL' (Data) field in DocType #. 'Appointment Booking Settings' @@ -32343,7 +32348,7 @@ msgstr "Bez Odgovora" #: erpnext/stock/doctype/item/item.js:913 msgid "No Company Found" -msgstr "" +msgstr "Nije pronađenaTvrtka" #: erpnext/accounts/doctype/sales_invoice/mapper.py:115 msgid "No Customer found for Inter Company Transactions which represents company {0}" @@ -32534,7 +32539,7 @@ msgstr "Nema podataka. Čini se da ste otpremili praznu datoteku" #: erpnext/stock/doctype/item/item.js:943 msgid "No default warehouse set for this company. Entry will use Stock Settings default." -msgstr "" +msgstr "Za ovu tvrtku nije postavljeno standard skladište. Unos će koristiti standard postavke zaliha." #: erpnext/templates/generators/bom.html:85 msgid "No description given" @@ -32820,7 +32825,7 @@ msgstr "Nisu pronađeni vaučeri za ovu transakciju" #: erpnext/stock/doctype/item/item.py:1734 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." -msgstr "" +msgstr "Nije pronađeno skladište za {0}. Postavi Standard Skladište u Postavkama Artikala ili Postavkama Zaliha." #: erpnext/accounts/doctype/sales_invoice/mapper.py:163 msgid "No {0} found for Inter Company Transactions." @@ -33564,7 +33569,7 @@ msgstr "Dozvoljene su samo vrijednosti između [0,1). Kao {0,00, 0,04, 0,09, ... #. 'Repost Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json msgid "Only works for Purchase Receipt, Purchase Invoice and Stock Entry" -msgstr "" +msgstr "Radi samo za Račun Nabave, Fakturu Nabave i Unos Zaliha" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.py:43 msgid "Only {0} are supported" @@ -33857,24 +33862,24 @@ msgstr "Početna Zaliha" #: erpnext/stock/doctype/item/item.py:1588 msgid "Opening Stock can only be set for stock items." -msgstr "" +msgstr "Početne zalihe mogu se postaviti samo za artikle na zalihi." #: erpnext/stock/doctype/item/item.py:1595 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." -msgstr "" +msgstr "Početne zalihe se ne mogu kreirati jer već postoje transakcije zaliha za artikal {0}." #: erpnext/stock/doctype/item/item.py:1591 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." -msgstr "" +msgstr "Početne zalihe za serijske ili šaržne artikle mora se postaviti putem Usklađivanje Zaliha." #: erpnext/stock/doctype/item/item.py:356 msgid "Opening Stock reconciliation created with zero valuation rate: {0}" -msgstr "" +msgstr "Početno Usklađivanje Zaliha kreirano sa nultom stopom vrednovanja: {0}" #: erpnext/stock/doctype/item/item.py:364 #: erpnext/stock/doctype/item/item.py:1637 msgid "Opening Stock reconciliation created: {0}" -msgstr "" +msgstr "Početno Usklađivanje Zaliha kreirano: {0}" #. Label of the opening_time (Time) field in DocType 'Issue' #: erpnext/support/doctype/issue/issue.json @@ -33892,7 +33897,7 @@ msgstr "Otvaranje & Zatvaranje" #: erpnext/stock/doctype/item/item.py:199 msgid "Opening stock creation has been queued and will be created in the background. Please check the Stock Reconciliation after some time." -msgstr "" +msgstr "Kreiranje početnih zaliha je stavljeno u red čekanja i bit će kreirano u pozadini. Molimo provjerite usklađivanje zaliha nakon nekog vremena." #. Label of the operating_component (Link) field in DocType 'Workstation Cost' #. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes @@ -35646,7 +35651,7 @@ msgstr "Djelomično Rezervisano" #. Option for the 'Status' (Select) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "Partially Transferred" -msgstr "" +msgstr "Djelomično Preneseno" #. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -37722,7 +37727,7 @@ msgstr "Dodaj barem jednu seriju imenovanja." #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." -msgstr "" +msgstr "Dodaj barem jedan red u Postavke Artikala sa tvrtkom prije postavljanja početnih zaliha." #: erpnext/public/js/utils/serial_no_batch_selector.js:663 msgid "Please add atleast one Serial No / Batch No" @@ -38128,7 +38133,7 @@ msgstr "Potvrdi da datoteka koju koristite ima kolonu 'Nadređeni Račun' u zagl #: erpnext/setup/doctype/company/company.js:234 msgid "Please make sure you really want to delete all the transactions for {0}. Your master data will remain as it is. This action cannot be undone." -msgstr "" +msgstr "Da li zaista želiš izbrisati sve transakcije za {0}. Vaši glavni podaci će ostati onakvi kakvi jesu. Ova radnja se ne može poništiti." #: erpnext/stock/doctype/item/item.js:1025 msgid "Please mention 'Weight UOM' along with Weight." @@ -38648,7 +38653,7 @@ msgstr "Postavi Centar Troškova za Imovinu ili postavite Centar Troškova Amort #: erpnext/stock/doctype/item/item.py:339 #: erpnext/stock/doctype/item/item.py:1621 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." -msgstr "" +msgstr "Postavi Privremeni Početni Račun za {0} kako biste kreirali početno usklađivanje zaliha." #: erpnext/projects/doctype/project/project.py:806 msgid "Please set a default Holiday List for Company {0}" @@ -43157,7 +43162,7 @@ msgstr "Dostignut je Najviši Nivo" #: erpnext/accounts/services/gl_validator.py:127 msgid "Read the docs" -msgstr "" +msgstr "Pročitaj dokumentaciju" #. Label of the reading_1 (Data) field in DocType 'Quality Inspection Reading' #: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json @@ -43270,7 +43275,7 @@ msgstr "Preračunaj Nabavnu/Prodajnu Cijenu" #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json msgid "Recalculate Valuation Rate" -msgstr "" +msgstr "Ponovo izračunaj Stopu Vrednovanja" #. Option for the 'Status' (Select) field in DocType 'Asset' #. Option for the 'Purpose' (Select) field in DocType 'Asset Movement' @@ -46051,7 +46056,7 @@ msgstr "Red #{0}: Ne može se prenijeti više od potrebne količine {1} za artik #: erpnext/stock/doctype/stock_entry/services/material_transfer.py:233 msgid "Row #{0}: Cannot transfer {1} {2} of Item {3}. Maximum transferable quantity is {4} {2}." -msgstr "" +msgstr "Red #{0}: Ne može se prenijeti {1} {2} artikal {3}. Najveća prenosiva količina je {4} {2}." #: erpnext/selling/doctype/product_bundle/product_bundle.py:138 msgid "Row #{0}: Child Item should not be a Product Bundle. Please remove Item {1} and Save" @@ -47742,7 +47747,7 @@ msgstr "Prodajni Nalog {0} već postoji naspram Nabavnog Naloga Klijenta {1}. Da #: erpnext/projects/doctype/project/project.py:256 msgid "Sales Order {0} is already linked to Project {1}, skipping the link." -msgstr "" +msgstr "Prodajni Nalog {0} je već povezan s projektom {1}, preskoči poveznicu." #: erpnext/selling/doctype/sales_order/mapper.py:883 #: erpnext/selling/doctype/sales_order/mapper.py:896 @@ -50038,7 +50043,7 @@ msgstr "Postavi Novi Datum Izdavanja" #: erpnext/stock/doctype/item/item.js:203 msgid "Set Opening Stock" -msgstr "" +msgstr "Postavi Početne Zalihe" #. Label of the set_op_cost_and_secondary_items_from_sub_assemblies (Check) #. field in DocType 'Manufacturing Settings' @@ -50732,7 +50737,7 @@ msgstr "Prikažite ukupnu vrijednost iz Podružnica" #: erpnext/stock/report/stock_balance/stock_balance.js:115 msgid "Show Alternate UOM Balance" -msgstr "" +msgstr "Prikaži Saldo Alternativne Jedinice" #: erpnext/accounts/report/general_ledger/general_ledger.js:199 msgid "Show Cancelled Entries" @@ -58105,12 +58110,12 @@ msgstr "Stablo Procedura" #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Trial Balance" -msgstr "Bruto Stanje" +msgstr "Probna Bilanca" #. Name of a report #: erpnext/accounts/report/trial_balance_simple/trial_balance_simple.json msgid "Trial Balance (Simple)" -msgstr "Bruto Stanje (Jednostavno)" +msgstr "Probna Bilanca (Jednostavno)" #. Name of a report #. Label of a Link in the Financial Reports Workspace @@ -58119,7 +58124,7 @@ msgstr "Bruto Stanje (Jednostavno)" #: erpnext/accounts/workspace/financial_reports/financial_reports.json #: erpnext/workspace_sidebar/financial_reports.json msgid "Trial Balance for Party" -msgstr "Bruto Stanje Stranke" +msgstr "Probna Bilanca Stranke" #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json @@ -59685,7 +59690,7 @@ msgstr "Nedostaje Stopa Vrednovanja" #: erpnext/stock/doctype/item/item.py:1604 msgid "Valuation Rate cannot be negative." -msgstr "" +msgstr "Stopa Vrednovanja ne može biti negativna." #: erpnext/stock/stock_ledger.py:2037 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." @@ -62094,7 +62099,7 @@ msgstr "frankfurter.dev" #. Exchange Settings' #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json msgid "frankfurter.dev - v2" -msgstr "" +msgstr "frankfurter.dev - v2" #: erpnext/templates/form_grid/item_grid.html:66 #: erpnext/templates/form_grid/item_grid.html:80 diff --git a/erpnext/locale/hu.po b/erpnext/locale/hu.po index 0f94b30b3db..32f1ae596ce 100644 --- a/erpnext/locale/hu.po +++ b/erpnext/locale/hu.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"PO-Revision-Date: 2026-06-24 19:22\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -11865,7 +11865,7 @@ msgstr "" #. Label of the items (Table) field in DocType 'BOM' #: erpnext/manufacturing/doctype/bom/bom.json msgid "Components" -msgstr "" +msgstr "Komponensek" #. Option for the 'Asset Type' (Select) field in DocType 'Asset' #: erpnext/assets/doctype/asset/asset.json @@ -36116,7 +36116,7 @@ msgstr "" #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:408 msgid "Payment Details" -msgstr "" +msgstr "Fizetési részletek" #. Label of the payment_document (Link) field in DocType 'Bank Clearance #. Detail' @@ -59394,7 +59394,7 @@ msgstr "" #: erpnext/stock/doctype/item/item_prices.html:86 msgid "Valid Upto" -msgstr "" +msgstr "Valid Upto" #. Label of the countries (Table) field in DocType 'Shipping Rule' #: erpnext/accounts/doctype/shipping_rule/shipping_rule.json diff --git a/erpnext/locale/sl.po b/erpnext/locale/sl.po index 1e599b8cab9..435ce599d6f 100644 --- a/erpnext/locale/sl.po +++ b/erpnext/locale/sl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"PO-Revision-Date: 2026-06-24 19:23\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Slovenian\n" "MIME-Version: 1.0\n" @@ -12751,13 +12751,13 @@ msgstr "" #. Label of the cost_allocation (Currency) field in DocType 'BOM' #: erpnext/manufacturing/doctype/bom/bom.json msgid "Cost Allocation" -msgstr "" +msgstr "porazdelitve stroškov" #. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary #. Item' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json msgid "Cost Allocation %" -msgstr "" +msgstr "porazdelitve stroškov %" #. Label of the cost_allocation__process_loss_section (Section Break) field in #. DocType 'BOM' diff --git a/erpnext/locale/sv.po b/erpnext/locale/sv.po index 54feb927c2a..59bb86af9fe 100644 --- a/erpnext/locale/sv.po +++ b/erpnext/locale/sv.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"PO-Revision-Date: 2026-06-24 19:23\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -12204,15 +12204,15 @@ msgstr "Konsoliderad Försäljning Faktura" #. Name of a report #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.json msgid "Consolidated Trial Balance" -msgstr "Konsoliderat Brutto Saldo" +msgstr "Konsoliderad Prov Saldo" #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:71 msgid "Consolidated Trial Balance can be generated for Companies having same root Company." -msgstr "Konsoliderad Brutto Saldo kan skapas för bolag som har samma moderbolag." +msgstr "Konsoliderad Prov Saldo kan skapas för bolag som har samma moderbolag." #: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:167 msgid "Consolidated Trial balance could not be generated as Exchange Rate from {0} to {1} is not available for {2}." -msgstr "Konsoliderad Brutto Saldo kunde inte skapas eftersom växelkurs från {0} till {1} inte är tillgänglig för {2}." +msgstr "Konsoliderad Prov Saldo kunde inte skapas eftersom växelkurs från {0} till {1} inte är tillgänglig för {2}." #. Option for the 'Lead Type' (Select) field in DocType 'Lead' #: erpnext/crm/doctype/lead/lead.json @@ -58117,12 +58117,12 @@ msgstr "Kvalitet Procedur Träd" #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Trial Balance" -msgstr "Brutto Saldo" +msgstr "Prov Saldo" #. Name of a report #: erpnext/accounts/report/trial_balance_simple/trial_balance_simple.json msgid "Trial Balance (Simple)" -msgstr "Brutto Saldo (Enkel)" +msgstr "Prov Saldo (Enkel)" #. Name of a report #. Label of a Link in the Financial Reports Workspace @@ -58131,7 +58131,7 @@ msgstr "Brutto Saldo (Enkel)" #: erpnext/accounts/workspace/financial_reports/financial_reports.json #: erpnext/workspace_sidebar/financial_reports.json msgid "Trial Balance for Party" -msgstr "Brutto Saldo för Parti" +msgstr "Prov Saldo för Parti" #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json diff --git a/erpnext/locale/uz.po b/erpnext/locale/uz.po new file mode 100644 index 00000000000..1319e18ce04 --- /dev/null +++ b/erpnext/locale/uz.po @@ -0,0 +1,62892 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: hello@frappe.io\n" +"POT-Creation-Date: 2026-06-21 10:42+0000\n" +"PO-Revision-Date: 2026-06-24 19:24\n" +"Last-Translator: hello@frappe.io\n" +"Language-Team: Uzbek\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.16.0\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: uz\n" +"X-Crowdin-File: /[frappe.erpnext] develop/erpnext/locale/main.pot\n" +"X-Crowdin-File-ID: 46\n" +"Language: uz_UZ\n" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 +msgid "\n" +"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" +"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" +"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" +"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" +"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + +#. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid " " +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.js:82 +msgid " Address" +msgstr "" + +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:611 +msgid " Amount" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:114 +msgid " BOM" +msgstr "" + +#. Label of the default_wip_warehouse (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid " Default Work In Progress Warehouse " +msgstr "" + +#. Label of the istable (Check) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid " Is Child Table" +msgstr "" + +#. Label of the is_subcontracted (Check) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid " Is Subcontracted" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:196 +msgid " Item" +msgstr "" + +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:151 +#: erpnext/selling/report/sales_analytics/sales_analytics.py:128 +msgid " Name" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:144 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:185 +msgid " Phantom Item" +msgstr "" + +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:602 +msgid " Rate" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:122 +msgid " Raw Material" +msgstr "" + +#. Label of the skip_material_transfer (Check) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid " Skip Material Transfer" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:133 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:174 +msgid " Sub Assembly" +msgstr "" + +#: erpnext/projects/doctype/project_update/project_update.py:140 +msgid " Summary" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:279 +msgid "\"Customer Provided Item\" cannot be Purchase Item also" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:281 +msgid "\"Customer Provided Item\" cannot have Valuation Rate" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:383 +msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:274 +msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" +msgstr "" + +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +msgid "# In Stock" +msgstr "" + +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +msgid "# Req'd Items" +msgstr "" + +#. Label of the per_delivered (Percent) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "% Delivered" +msgstr "" + +#. Label of the per_billed (Percent) field in DocType 'Timesheet' +#. Label of the per_billed (Percent) field in DocType 'Sales Order' +#. Label of the per_billed (Percent) field in DocType 'Delivery Note' +#. Label of the per_billed (Percent) field in DocType 'Purchase Receipt' +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "% Amount Billed" +msgstr "" + +#. Label of the per_billed (Percent) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "% Billed" +msgstr "" + +#. Label of the percent_complete_method (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "% Complete Method" +msgstr "" + +#. Label of the percent_complete (Percent) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "% Completed" +msgstr "" + +#. Label of the cost_allocation_per (Percent) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "% Cost Allocation" +msgstr "" + +#. Label of the per_delivered (Percent) field in DocType 'Pick List' +#. Label of the per_delivered (Percent) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "% Delivered" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1022 +#, python-format +msgid "% Finished Item Quantity" +msgstr "" + +#. Label of the per_installed (Percent) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "% Installed" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:70 +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:16 +msgid "% Occupied" +msgstr "" + +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:283 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:337 +msgid "% Of Grand Total" +msgstr "" + +#. Label of the per_ordered (Percent) field in DocType 'Material Request' +#: erpnext/stock/doctype/material_request/material_request.json +msgid "% Ordered" +msgstr "" + +#. Label of the per_picked (Percent) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "% Picked" +msgstr "" + +#. Label of the process_loss_percentage (Percent) field in DocType 'BOM' +#. Label of the process_loss_percentage (Percent) field in DocType 'Stock +#. Entry' +#. Label of the per_process_loss (Percent) field in DocType 'Subcontracting +#. Inward Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "% Process Loss" +msgstr "" + +#. Label of the per_produced (Percent) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "% Produced" +msgstr "" + +#. Label of the progress (Percent) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "% Progress" +msgstr "" + +#. Label of the per_raw_material_received (Percent) field in DocType +#. 'Subcontracting Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "% Raw Material Received" +msgstr "" + +#. Label of the per_raw_material_returned (Percent) field in DocType +#. 'Subcontracting Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "% Raw Material Returned" +msgstr "" + +#. Label of the per_received (Percent) field in DocType 'Purchase Order' +#. Label of the per_received (Percent) field in DocType 'Material Request' +#. Label of the per_received (Percent) field in DocType 'Subcontracting Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "% Received" +msgstr "" + +#. Label of the per_returned (Percent) field in DocType 'Delivery Note' +#. Label of the per_returned (Percent) field in DocType 'Purchase Receipt' +#. Label of the per_returned (Percent) field in DocType 'Subcontracting Inward +#. Order' +#. Label of the per_returned (Percent) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "% Returned" +msgstr "" + +#. Description of the '% Amount Billed' (Percent) field in DocType 'Sales +#. Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +#, python-format +msgid "% of materials billed against this Sales Order" +msgstr "" + +#. Description of the '% Delivered' (Percent) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +#, python-format +msgid "% of materials delivered against this Pick List" +msgstr "" + +#. Description of the '% Delivered' (Percent) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +#, python-format +msgid "% of materials delivered against this Sales Order" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1299 +msgid "'Account' in the Accounting section of Customer {0}" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:304 +msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" +msgstr "" + +#: erpnext/controllers/trends.py:62 +msgid "'Based On' and 'Group By' can not be same" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:23 +msgid "'Days Since Last Order' must be greater than or equal to zero" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1304 +msgid "'Default {0} Account' in Company {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:893 +msgid "'Entries' cannot be empty" +msgstr "" + +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:24 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:127 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:322 +msgid "'From Date' is required" +msgstr "" + +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:18 +msgid "'From Date' must be after 'To Date'" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:466 +msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 +msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 +msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgstr "" + +#: erpnext/stock/report/stock_ledger/stock_ledger.py:684 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:725 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +msgid "'Opening'" +msgstr "" + +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:27 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:129 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:328 +msgid "'To Date' is required" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +msgid "'To Package No.' cannot be less than 'From Package No.'" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:80 +msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 +msgid "'Update Stock' cannot be checked for fixed asset sale" +msgstr "" + +#: erpnext/accounts/doctype/bank_account/bank_account.py:79 +msgid "'{0}' account is already used by {1}. Use another account." +msgstr "" + +#: erpnext/accounts/doctype/pos_settings/pos_settings.py:44 +msgid "'{0}' has been already added." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:315 +#: erpnext/setup/doctype/company/company.py:326 +msgid "'{0}' should be in company currency {1}." +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:174 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:203 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:106 +msgid "(A) Qty After Transaction" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:208 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:111 +msgid "(B) Expected Qty After Transaction" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:223 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:126 +msgid "(C) Total Qty in Queue" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:184 +msgid "(C) Total qty in queue" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:194 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:233 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:136 +msgid "(D) Balance Stock Value" +msgstr "" + +#. Description of the 'Capacity' (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "(Daily Yield * No of Units Produced) / 100" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:199 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:238 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:141 +msgid "(E) Balance Stock Value in Queue" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:248 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:151 +msgid "(F) Change in Stock Value" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:192 +msgid "(Forecast)" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:253 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:156 +msgid "(G) Sum of Change in Stock Value" +msgstr "" + +#. Description of the 'Daily Yield (%)' (Percent) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "(Good Units Produced / Total Units Produced) × 100" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:263 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:166 +msgid "(H) Change in Stock Value (FIFO Queue)" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:209 +msgid "(H) Valuation Rate" +msgstr "" + +#. Description of the 'Actual Operating Cost' (Currency) field in DocType 'Work +#. Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "(Hour Rate / 60) * Actual Operation Time" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:273 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:176 +msgid "(I) Valuation Rate" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:278 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:181 +msgid "(J) Valuation Rate as per FIFO" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:288 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:191 +msgid "(K) Valuation = Value (D) ÷ Qty (A)" +msgstr "" + +#. Description of the 'Applicable on Cumulative Expense' (Check) field in +#. DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "(Purchase Order + Material Request + Actual Expense)" +msgstr "" + +#. Description of the 'No of Units Produced' (Int) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "(Total Workstation Time / Manufacturing Time) * 60" +msgstr "" + +#. Description of the 'From No' (Int) field in DocType 'Share Transfer' +#. Description of the 'To No' (Int) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "(including)" +msgstr "" + +#. Description of the 'Sales Taxes and Charges' (Table) field in DocType 'Sales +#. Taxes and Charges Template' +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +msgid "* Will be calculated in the transaction." +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:128 +#: erpnext/stock/doctype/item/item_prices.html:136 +msgid "+ Add Price" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:112 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:360 +msgid "0 - 30 Days" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:114 +msgid "0-30" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110 +msgid "0-30 Days" +msgstr "" + +#. Description of the 'Conversion Factor' (Float) field in DocType 'Loyalty +#. Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "1 Loyalty Points = How much base currency?" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Video Settings' +#: erpnext/utilities/doctype/video_settings/video_settings.json +msgid "1 hr" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 +msgid "1 invoice" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "1-10" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "1000+" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "11-50" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114 +msgid "1{0}" +msgstr "" + +#. Option for the 'Periodicity' (Select) field in DocType 'Asset Maintenance +#. Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "2 Yearly" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "201-500" +msgstr "" + +#. Option for the 'Periodicity' (Select) field in DocType 'Asset Maintenance +#. Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "3 Yearly" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:113 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:361 +msgid "30 - 60 Days" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Video Settings' +#: erpnext/utilities/doctype/video_settings/video_settings.json +msgid "30 mins" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:115 +msgid "30-60" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110 +msgid "30-60 Days" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "501-1000" +msgstr "" + +#. Option for the 'No of Employees' (Select) field in DocType 'Lead' +#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity' +#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "51-200" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Video Settings' +#: erpnext/utilities/doctype/video_settings/video_settings.json +msgid "6 hrs" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:114 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:362 +msgid "60 - 90 Days" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:116 +msgid "60-90" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110 +msgid "60-90 Days" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:115 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:363 +msgid "90 - 120 Days" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:117 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110 +msgid "90 Above" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1293 +msgid "<0" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:544 +msgid "Cannot create asset.

        You're trying to create {0} asset(s) from {2} {3}.
        However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." +msgstr "" + +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py:59 +msgid "From Time cannot be later than To Time for {0}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:436 +msgid "Row #{0}: Bundle {1} in warehouse {2} has insufficient packed items:
          {3}
        " +msgstr "" + +#. Content of the 'Help Text' (HTML) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#, python-format +msgid "
        \n" +"

        Note

        \n" +"
          \n" +"
        • \n" +"You can use Jinja tags in Subject and Body fields for dynamic values.\n" +"
        • \n" +" All fields in this doctype are available under the doc object and all fields for the customer to whom the mail will go to is available under the customer object.\n" +"
        \n" +"

        Examples

        \n" +"\n" +"
          \n" +"
        • Subject:

          Statement Of Accounts for {{ customer.customer_name }}

        • \n" +"
        • Body:

          \n" +"
          Hello {{ customer.customer_name }},
          PFA your Statement Of Accounts from {{ doc.from_date }} to {{ doc.to_date }}.
        • \n" +"
        \n" +"" +msgstr "" + +#. Content of the 'Other Details' (HTML) field in DocType 'Purchase Receipt' +#. Content of the 'Other Details' (HTML) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "
        Other Details
        " +msgstr "" + +#. Content of the 'no_bank_transactions' (HTML) field in DocType 'Bank +#. Reconciliation Tool' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +msgid "
        No Matching Bank Transactions Found
        " +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:262 +msgid "
        {0}
        " +msgstr "" + +#. Content of the 'Stock Levels HTML' (HTML) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "
        " +msgstr "" + +#. Content of the 'Prices HTML' (HTML) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "
        " +msgstr "" + +#. Content of the 'uom_help_html' (HTML) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "
        Define alternate units for this item. Eg: 1 Box = 12 Nos, set conversion factor as 12. (Will also apply for variants) Learn more →
        " +msgstr "" + +#. Content of the 'settings' (HTML) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "
        \n" +"

        All dimensions in centimeter only

        \n" +"
        " +msgstr "" + +#. Content of the 'about' (HTML) field in DocType 'Product Bundle' +#: erpnext/selling/doctype/product_bundle/product_bundle.json +msgid "

        About Product Bundle

        \n\n" +"

        Aggregate group of Items into another Item. This is useful if you are bundling a certain Items into a package and you maintain stock of the packed Items and not the aggregate Item.

        \n" +"

        The package Item will have Is Stock Item as No and Is Sales Item as Yes.

        \n" +"

        Example:

        \n" +"

        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.

        " +msgstr "" + +#. Content of the 'Help' (HTML) field in DocType 'Currency Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "

        Currency Exchange Settings Help

        \n" +"

        There are 3 variables that could be used within the endpoint, result key and in values of the parameter.

        \n" +"

        Exchange rate between {from_currency} and {to_currency} on {transaction_date} is fetched by the API.

        \n" +"

        Example: If your endpoint is exchange.com/2021-08-01, then, you will have to input exchange.com/{transaction_date}

        " +msgstr "" + +#. Content of the 'Body and Closing Text Help' (HTML) field in DocType 'Dunning +#. Letter Text' +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "

        Body Text and Closing Text Example

        \n\n" +"
        We have noticed that you have not yet paid invoice {{sales_invoice}} for {{frappe.db.get_value(\"Currency\", currency, \"symbol\")}} {{outstanding_amount}}. This is a friendly reminder that the invoice was due on {{due_date}}. Please pay the amount due immediately to avoid any further dunning cost.
        \n\n" +"

        How to get fieldnames

        \n\n" +"

        The fieldnames you can use in your template are the fields in the document. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)

        \n\n" +"

        Templating

        \n\n" +"

        Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.

        " +msgstr "" + +#. Content of the 'Contract Template Help' (HTML) field in DocType 'Contract +#. Template' +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "

        Contract Template Example

        \n\n" +"
        Contract for Customer {{ party_name }}\n\n"
        +"-Valid From : {{ start_date }} \n"
        +"-Valid To : {{ end_date }}\n"
        +"
        \n\n" +"

        How to get fieldnames

        \n\n" +"

        The field names you can use in your Contract Template are the fields in the Contract for which you are creating the template. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Contract)

        \n\n" +"

        Templating

        \n\n" +"

        Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.

        " +msgstr "" + +#. Content of the 'Terms and Conditions Help' (HTML) field in DocType 'Terms +#. and Conditions' +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +msgid "

        Standard Terms and Conditions Example

        \n\n" +"
        Delivery Terms for Order number {{ name }}\n\n"
        +"-Order Date : {{ transaction_date }} \n"
        +"-Expected Delivery Date : {{ delivery_date }}\n"
        +"
        \n\n" +"

        How to get fieldnames

        \n\n" +"

        The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)

        \n\n" +"

        Templating

        \n\n" +"

        Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.

        " +msgstr "" + +#. Content of the 'account_no_settings' (HTML) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "" +msgstr "" + +#. Content of the 'html_19' (HTML) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "" +msgstr "" + +#. Content of the 'Date Settings' (HTML) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:126 +msgid "
      • Clearance date must be after cheque date for row(s): {0}
      • " +msgstr "" + +#: erpnext/accounts/services/billing_validation.py:139 +msgid "
      • Item {0} in row(s) {1} billed more than {2}
      • " +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:427 +msgid "
      • Packed Item {0}: Required {1}, Available {2}
      • " +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:121 +msgid "
      • Payment document required for row(s): {0}
      • " +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 +#: erpnext/utilities/bulk_transaction.py:37 +msgid "
      • {}
      • " +msgstr "" + +#: erpnext/accounts/services/billing_validation.py:136 +msgid "

        Cannot overbill for the following Items:

        " +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 +msgid "

        Following {0}s doesn't belong to Company {1} :

        " +msgstr "" + +#. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "

        In your Email Template, you can use the following special variables:\n" +"

        \n" +"
          \n" +"
        • \n" +" {{ update_password_link }}: A link where your supplier can set a new password to log into your portal.\n" +"
        • \n" +"
        • \n" +" {{ portal_link }}: A link to this RFQ in your supplier portal.\n" +"
        • \n" +"
        • \n" +" {{ supplier_name }}: The company name of your supplier.\n" +"
        • \n" +"
        • \n" +" {{ contact.salutation }} {{ contact.last_name }}: The contact person of your supplier.\n" +"
        • \n" +" {{ user_fullname }}: Your full name.\n" +"
        • \n" +"
        \n" +"

        \n" +"

        Apart from these, you can access all values in this RFQ, like {{ message_for_supplier }} or {{ terms }}.

        " +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:119 +msgid "

        Please correct the following row(s):

          " +msgstr "" + +#: erpnext/controllers/buying_controller.py:124 +msgid "

          Posting Date {0} cannot be before Purchase Order date for the following:

            " +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:134 +msgid "

            Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.

            Are you sure you want to continue?" +msgstr "" + +#: erpnext/accounts/services/billing_validation.py:150 +msgid "

            To allow over-billing, please set allowance in Accounts Settings.

            " +msgstr "" + +#. Content of the 'Message Examples' (HTML) field in DocType 'Payment Gateway +#. Account' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +msgid "
            Message Example
            \n\n" +"<p> Thank You for being a part of {{ doc.company }}! We hope you are enjoying the service.</p>\n\n" +"<p> Please find enclosed the E Bill statement. The outstanding amount is {{ doc.grand_total }}.</p>\n\n" +"<p> We don't want you to be spending time running around in order to pay for your Bill.
            After all, life is beautiful and the time you have in hand should be spent to enjoy it!
            So here are our little ways to help you get more time for life! </p>\n\n" +"<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n" +"
            \n" +msgstr "" + +#. Content of the 'Message Examples' (HTML) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "
            Message Example
            \n\n" +"<p>Dear {{ doc.contact_person }},</p>\n\n" +"<p>Requesting payment for {{ doc.doctype }}, {{ doc.name }} for {{ doc.grand_total }}.</p>\n\n" +"<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n" +"
            \n" +msgstr "" + +#. Header text in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Masters & Reports" +msgstr "" + +#. Header text in the Invoicing Workspace +#. Header text in the Assets Workspace +#. Header text in the Buying Workspace +#. Header text in the Manufacturing Workspace +#. Header text in the Projects Workspace +#. Header text in the Quality Workspace +#. Header text in the Selling Workspace +#. Header text in the Home Workspace +#. Header text in the Support Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/support/workspace/support/support.json +msgid "Reports & Masters" +msgstr "" + +#. Header text in the Subcontracting Workspace +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracting Inward and Outward" +msgstr "" + +#. Header text in the ERPNext Settings Workspace +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +msgid "Your Shortcuts\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t" +msgstr "" + +#. Header text in the Manufacturing Workspace +#. Header text in the Home Workspace +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/setup/workspace/home/home.json +msgid "Your Shortcuts" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:1300 +msgid "Grand Total: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:1301 +msgid "Outstanding Amount: {0}" +msgstr "" + +#. Content of the 'html_19' (HTML) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "\n" +"\n" +" \n" +" \n" +" \n" +" \n" +"\n" +"\n" +"\n" +" \n" +" \n" +"\n" +"\n" +" \n" +" \n" +"\n\n" +"\n" +"
            Child DocumentNon Child Document
            \n" +"

            To access parent document field use parent.fieldname and to access child table document field use doc.fieldname

            \n\n" +"
            \n" +"

            To access document field use doc.fieldname

            \n" +"
            \n" +"

            Example: parent.doctype == \"Stock Entry\" and doc.item_code == \"Test\"

            \n\n" +"
            \n" +"

            Example: doc.doctype == \"Stock Entry\" and doc.purpose == \"Manufacture\"

            \n" +"
            \n\n\n\n\n\n\n" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:213 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:116 +msgid "A - B" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:189 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:228 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:131 +msgid "A - C" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:355 +msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:73 +msgid "A Holiday List can be added to exclude counting these days for the Workstation." +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:140 +msgid "A Lead requires either a person's name or an organization's name" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 +msgid "A Packing Slip can only be created for Draft Delivery Note." +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:123 +msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/price_list/price_list.json +msgid "A Price List is a collection of Item Prices either Selling, Buying, or both" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/item/item.json +msgid "A Product or a Service that is bought, sold or kept in stock." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/mapper.py:228 +msgid "A Reverse Journal Entry {0} already exists for this Journal Entry." +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json +msgid "A condition for a Shipping Rule" +msgstr "" + +#. Description of the 'Send To Primary Contact' (Check) field in DocType +#. 'Process Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "A customer must have primary contact email." +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Product Bundle' +#: erpnext/selling/doctype/product_bundle/product_bundle.json +msgid "A disabled Product Bundle cannot be selected in transactions." +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:59 +msgid "A driver must be set to submit." +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "A logical Warehouse against which stock entries are made." +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1489 +msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." +msgstr "" + +#: erpnext/templates/emails/confirm_appointment.html:2 +msgid "A new appointment has been created for you with {0}" +msgstr "" + +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:3 +msgid "A new fiscal year has been automatically created." +msgstr "" + +#. Description of the 'Inspection Required before Delivery' (Check) field in +#. DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "A quality inspection must be completed before generating a Delivery Note for this item." +msgstr "" + +#. Description of the 'Inspection Required before Purchase' (Check) field in +#. DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "A quality inspection must be completed before generating a Purchase Receipt for this item." +msgstr "" + +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:99 +msgid "A template with tax category {0} already exists. Only one template is allowed with each tax category" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission." +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "A+" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "A-" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "AB+" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "AB-" +msgstr "" + +#. Option for the 'Invoice Series' (Select) field in DocType 'Import Supplier +#. Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "ACC-PINV-.YYYY.-" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:88 +msgid "ALL records will be deleted (entire DocType cleared)" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:552 +msgid "AMC Expiry (Serial)" +msgstr "" + +#. Label of the amc_expiry_date (Date) field in DocType 'Serial No' +#. Label of the amc_expiry_date (Date) field in DocType 'Warranty Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "AMC Expiry Date" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "AP Summary" +msgstr "" + +#. Label of the api_details_section (Section Break) field in DocType 'Currency +#. Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "API Details" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "AR Summary" +msgstr "" + +#. Label of the awb_number (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "AWB Number" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Abampere" +msgstr "" + +#. Label of the abbr (Data) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Abbr" +msgstr "" + +#. Label of the abbr (Data) field in DocType 'Item Attribute Value' +#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json +msgid "Abbreviation" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:249 +msgid "Abbreviation already used for another company" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:246 +msgid "Abbreviation is mandatory" +msgstr "" + +#: erpnext/stock/doctype/item_attribute/item_attribute.py:112 +msgid "Abbreviation: {0} must appear only once" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289 +msgid "Above" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:116 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:364 +msgid "Above 120 Days" +msgstr "" + +#. Name of a role +#: erpnext/setup/doctype/department/department.json +msgid "Academics User" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:38 +msgid "Accept Matching Rule" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:39 +msgid "Accept the rule for the selected transaction" +msgstr "" + +#. Label of the acceptance_formula (Code) field in DocType 'Item Quality +#. Inspection Parameter' +#. Label of the acceptance_formula (Code) field in DocType 'Quality Inspection +#. Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Acceptance Criteria Formula" +msgstr "" + +#. Label of the value (Data) field in DocType 'Item Quality Inspection +#. Parameter' +#. Label of the value (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Acceptance Criteria Value" +msgstr "" + +#. Label of the qty (Float) field in DocType 'Purchase Invoice Item' +#. Label of the qty (Float) field in DocType 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Accepted Qty" +msgstr "" + +#. Label of the stock_qty (Float) field in DocType 'Purchase Invoice Item' +#. Label of the stock_qty (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Accepted Qty in Stock UOM" +msgstr "" + +#. Label of the qty (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Accepted Quantity" +msgstr "" + +#. Label of the warehouse (Link) field in DocType 'Purchase Invoice Item' +#. Label of the set_warehouse (Link) field in DocType 'Purchase Receipt' +#. Label of the warehouse (Link) field in DocType 'Purchase Receipt Item' +#. Label of the set_warehouse (Link) field in DocType 'Subcontracting Receipt' +#. Label of the warehouse (Link) field in DocType 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Accepted Warehouse" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:485 +msgid "Accepting the suggestion will reconcile both transactions." +msgstr "" + +#. Label of the access_key (Data) field in DocType 'Currency Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "Access Key" +msgstr "" + +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:48 +msgid "Access Key is required for Service Provider: {0}" +msgstr "" + +#. Description of the 'Common Code' (Data) field in DocType 'UOM' +#: erpnext/setup/doctype/uom/uom.json +msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." +msgstr "" + +#. Description of the 'Customer Numbers' (Table) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Account / customer numbers assigned to your companies by this supplier (for reconciliation on their statements)" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/account_balance/account_balance.json +msgid "Account Balance" +msgstr "" + +#. Label of the account_category (Link) field in DocType 'Account' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account_tree.js:162 +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Account Category" +msgstr "" + +#. Label of the account_category_name (Data) field in DocType 'Account +#. Category' +#: erpnext/accounts/doctype/account_category/account_category.json +msgid "Account Category Name" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +msgid "Account Closing Balance" +msgstr "" + +#. Label of the account_currency (Link) field in DocType 'Account Closing +#. Balance' +#. Label of the currency (Link) field in DocType 'Advance Taxes and Charges' +#. Label of the account_currency (Link) field in DocType 'Bank Clearance' +#. Label of the account_currency (Link) field in DocType 'Bank Reconciliation +#. Tool' +#. Label of the account_currency (Link) field in DocType 'Exchange Rate +#. Revaluation Account' +#. Label of the account_currency (Link) field in DocType 'GL Entry' +#. Label of the account_currency (Link) field in DocType 'Journal Entry +#. Account' +#. Label of the account_currency (Link) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the account_currency (Link) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the account_currency (Link) field in DocType 'Unreconcile Payment +#. Entries' +#. Label of the account_currency (Link) field in DocType 'Landed Cost Taxes and +#. Charges' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Account Currency" +msgstr "" + +#. Label of the paid_from_account_currency (Link) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Account Currency (From)" +msgstr "" + +#. Label of the paid_to_account_currency (Link) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Account Currency (To)" +msgstr "" + +#. Option for the 'Data Source' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Account Data" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:20 +#: erpnext/accounts/report/cash_flow/cash_flow.js:29 +#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:21 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:20 +msgid "Account Detail Level" +msgstr "" + +#. Label of the account_details_section (Section Break) field in DocType 'Bank +#. Account' +#. Label of the account_details_section (Section Break) field in DocType 'GL +#. Entry' +#. Label of the section_break_7 (Section Break) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Account Details" +msgstr "" + +#. Label of the account_head (Link) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the account_head (Link) field in DocType 'POS Closing Entry Taxes' +#. Label of the account_head (Link) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the account_head (Link) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Account Head" +msgstr "" + +#. Label of the account_manager (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Account Manager" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 +#: erpnext/controllers/accounts_controller.py:1308 +msgid "Account Missing" +msgstr "" + +#. Label of the account_name (Data) field in DocType 'Account' +#. Label of the account_name (Data) field in DocType 'Bank Account' +#. Label of the account_name (Data) field in DocType 'Ledger Merge' +#. Label of the account_name (Data) field in DocType 'Ledger Merge Accounts' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:399 +#: erpnext/accounts/report/financial_statements.py:705 +#: erpnext/accounts/report/trial_balance/trial_balance.py:498 +msgid "Account Name" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:377 +msgid "Account Not Found" +msgstr "" + +#. Label of the account_number (Data) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account_tree.js:128 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:406 +#: erpnext/accounts/report/financial_statements.py:712 +#: erpnext/accounts/report/trial_balance/trial_balance.py:505 +msgid "Account Number" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:363 +msgid "Account Number {0} already used in account {1}" +msgstr "" + +#. Label of the account_opening_balance (Currency) field in DocType 'Bank +#. Reconciliation Tool' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +msgid "Account Opening Balance" +msgstr "" + +#. Label of the paid_from (Link) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Account Paid From" +msgstr "" + +#. Label of the paid_to (Link) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Account Paid To" +msgstr "" + +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.py:120 +msgid "Account Pay Only" +msgstr "" + +#. Label of the account_subtype (Link) field in DocType 'Bank Account' +#. Label of the account_subtype (Data) field in DocType 'Bank Account Subtype' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.json +msgid "Account Subtype" +msgstr "" + +#. Label of the account_type (Select) field in DocType 'Account' +#. Label of the account_type (Link) field in DocType 'Bank Account' +#. Label of the account_type (Data) field in DocType 'Bank Account Type' +#. Label of the account_type (Data) field in DocType 'Journal Entry Account' +#. Label of the account_type (Data) field in DocType 'Payment Entry Reference' +#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry' +#. Label of the account_type (Select) field in DocType 'Party Type' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account.py:210 +#: erpnext/accounts/doctype/account/account_tree.js:154 +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/account_balance/account_balance.js:34 +#: erpnext/setup/doctype/party_type/party_type.json +msgid "Account Type" +msgstr "" + +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:166 +msgid "Account Value" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:332 +msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:326 +msgid "Account balance already in Debit, you are not allowed to set 'Balance Must Be' as 'Credit'" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:101 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:107 +msgid "Account company does not match with the rule company." +msgstr "" + +#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py:47 +msgid "Account filter not set!" +msgstr "" + +#. Label of the account_for_change_amount (Link) field in DocType 'POS Invoice' +#. Label of the account_for_change_amount (Link) field in DocType 'POS Profile' +#. Label of the account_for_change_amount (Link) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Account for Change Amount" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:153 +msgid "Account is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:48 +msgid "Account is mandatory to get payment entries" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:635 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:217 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1201 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:315 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:659 +msgid "Account is required" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:913 +msgid "Account not Found" +msgstr "" + +#. Description of the 'Purchase Expense Account' (Link) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account to record additional purchase expenses like freight or customs" +msgstr "" + +#. Description of the 'COGS Account' (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account where cost of goods sold will be posted when this item is sold" +msgstr "" + +#. Description of the 'Income Account' (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account where revenue from selling this item will be credited" +msgstr "" + +#. Description of the 'Expense Account' (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Account where the cost of this item will be debited on purchase" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:431 +msgid "Account with child nodes cannot be converted to ledger" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:283 +msgid "Account with child nodes cannot be set as ledger" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:442 +msgid "Account with existing transaction can not be converted to group." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:467 +msgid "Account with existing transaction can not be deleted" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:277 +#: erpnext/accounts/doctype/account/account.py:433 +msgid "Account with existing transaction cannot be converted to ledger" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:79 +msgid "Account {0} added multiple times" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:295 +msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:292 +msgid "Account {0} cannot be disabled as it is already set as {1} for {2}." +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:162 +msgid "Account {0} does not belong to company {1}" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:297 +msgid "Account {0} does not belong to company: {1}" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:602 +msgid "Account {0} does not exist" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:70 +msgid "Account {0} does not exists" +msgstr "" + +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:48 +msgid "Account {0} does not match with Company {1} in Mode of Account: {2}" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:140 +msgid "Account {0} doesn't belong to Company {1}" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:557 +msgid "Account {0} exists in parent company {1}." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:415 +msgid "Account {0} is added in the child company {1}" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:286 +msgid "Account {0} is disabled." +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:435 +msgid "Account {0} is frozen" +msgstr "" + +#: erpnext/accounts/services/base_gl_composer.py:210 +msgid "Account {0} is invalid. Account Currency must be {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:36 +msgid "Account {0} should be of type Expense" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:153 +msgid "Account {0}: Parent account {1} can not be a ledger" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:159 +msgid "Account {0}: Parent account {1} does not belong to company: {2}" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:147 +msgid "Account {0}: Parent account {1} does not exist" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:150 +msgid "Account {0}: You can not assign itself as parent account" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:90 +msgid "Account: {0} is capital Work in progress and can not be updated by Journal Entry" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:396 +msgid "Account: {0} can only be updated via Stock Transactions" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +msgid "Account: {0} is not permitted under Payment Entry" +msgstr "" + +#: erpnext/accounts/services/taxes.py:333 +msgid "Account: {0} with currency: {1} can not be selected" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:1 +msgid "Accountant" +msgstr "" + +#. Group in Bank Account's connections +#. Label of the accounting_tab (Tab Break) field in DocType 'POS Profile' +#. Label of the accounting (Section Break) field in DocType 'Purchase Invoice +#. Item' +#. Label of the section_break_10 (Section Break) field in DocType 'Shipping +#. Rule' +#. Label of the accounting_tab (Tab Break) field in DocType 'Supplier' +#. Label of a Desktop Icon +#. Label of the accounting_tab (Tab Break) field in DocType 'Customer' +#. Label of a Card Break in the Home Workspace +#. Label of the accounting (Tab Break) field in DocType 'Item' +#. Label of the accounting (Section Break) field in DocType 'Stock Entry +#. Detail' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/desktop_icon/accounting.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/setup_wizard/data/industry_type.txt:1 +#: erpnext/setup/workspace/home/home.json erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Accounting" +msgstr "" + +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Dunning' +#. Label of the section_break_9 (Section Break) field in DocType 'Dunning Type' +#. Label of the more_info (Section Break) field in DocType 'POS Invoice' +#. Label of the accounting (Section Break) field in DocType 'POS Invoice Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the more_info (Section Break) field in DocType 'Sales Invoice' +#. Label of the accounting (Section Break) field in DocType 'Sales Invoice +#. Item' +#. Label of the accounting_details (Section Break) field in DocType 'Purchase +#. Order Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Delivery Note Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Material Request Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Purchase Receipt Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#. Label of the accounting_details_section (Section Break) field in DocType +#. 'Subcontracting Receipt Supplied Item' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Accounting Details" +msgstr "" + +#. Name of a DocType +#. Label of the accounting_dimension (Select) field in DocType 'Accounting +#. Dimension Filter' +#. Label of the accounting_dimension (Link) field in DocType 'Allowed +#. Dimension' +#. Label of a Link in the Invoicing Workspace +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Repair' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +#: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:32 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/budget.json +msgid "Accounting Dimension" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:214 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:150 +msgid "Accounting Dimension {0} is required for 'Balance Sheet' account {1}." +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:201 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:138 +msgid "Accounting Dimension {0} is required for 'Profit and Loss' account {1}." +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Accounting Dimension Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Accounting Dimension Filter" +msgstr "" + +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Advance Taxes and Charges' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Journal Entry Account' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Journal Entry Template Account' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Loyalty Program' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Opening Invoice Creation Tool' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Opening Invoice Creation Tool Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Payment Entry' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Payment Reconciliation Allocation' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Payment Request' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'POS Invoice' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'POS Invoice Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'POS Profile' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Invoice Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Taxes and Charges' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Sales Invoice' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Sales Invoice Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Sales Taxes and Charges' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Shipping Rule' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subscription' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subscription Plan' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Capitalization' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Capitalization Asset Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Capitalization Service Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Capitalization Stock Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Asset Value Adjustment' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Request for Quotation Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Supplier Quotation' +#. Label of the ad_sec_break (Section Break) field in DocType 'Supplier +#. Quotation Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Sales Order' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Sales Order Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Delivery Note' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Delivery Note Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Landed Cost Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Material Request Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Receipt' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Receipt Item' +#. Label of the accounting_dimensions_section (Tab Break) field in DocType +#. 'Stock Entry' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Stock Entry Detail' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Stock Reconciliation' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subcontracting Order' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subcontracting Receipt Supplied Item' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/material_request/material_request_dashboard.py:20 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Accounting Dimensions" +msgstr "" + +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Order' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Purchase Order Item' +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Accounting Dimensions " +msgstr "" + +#. Label of the accounting_dimensions_section (Section Break) field in DocType +#. 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Accounting Dimensions Filter" +msgstr "" + +#. Label of the accounts (Table) field in DocType 'Journal Entry' +#. Label of the accounts (Table) field in DocType 'Journal Entry Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Accounting Entries" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:947 +#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 +msgid "Accounting Entry for Asset" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:137 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:155 +msgid "Accounting Entry for LCV in Stock Entry {0}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:225 +msgid "Accounting Entry for Landed Cost Voucher for SCR {0}" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/provisional_accounting.py:38 +msgid "Accounting Entry for Service" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:203 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:224 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:241 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:262 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 +#: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 +#: erpnext/stock/services/base_stock_gl_composer.py:65 +#: erpnext/stock/services/base_stock_gl_composer.py:80 +#: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:67 +msgid "Accounting Entry for Stock" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:269 +msgid "Accounting Entry for {0}" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:98 +msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:193 +#: erpnext/assets/doctype/asset/asset.js:185 +#: erpnext/assets/doctype/asset_repair/asset_repair.js:92 +#: erpnext/buying/doctype/supplier/supplier.js:123 +#: erpnext/public/js/controllers/stock_controller.js:88 +#: erpnext/public/js/utils/ledger_preview.js:8 +#: erpnext/selling/doctype/customer/customer.js:173 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:51 +msgid "Accounting Ledger" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Accounting Masters" +msgstr "" + +#. Title of the Module Onboarding 'Accounting Onboarding' +#: erpnext/accounts/module_onboarding/accounting_onboarding/accounting_onboarding.json +msgid "Accounting Onboarding" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Accounting Period" +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +msgid "Accounting Period overlaps with {0}" +msgstr "" + +#. Description of the 'Accounts Frozen Till Date' (Date) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Accounting entries are frozen up to this date. Only users with the specified role can create or modify entries before this date." +msgstr "" + +#. Label of the applicable_on_account (Link) field in DocType 'Applicable On +#. Account' +#. Label of the accounts (Table) field in DocType 'Bank Transaction Rule' +#. Label of the accounts (Table) field in DocType 'Mode of Payment' +#. Label of the payment_accounts_section (Section Break) field in DocType +#. 'Payment Entry' +#. Label of the accounts (Table) field in DocType 'Tax Withholding Category' +#. Label of the section_break_2 (Section Break) field in DocType 'Asset +#. Category' +#. Label of the accounts (Table) field in DocType 'Asset Category' +#. Label of the accounts_tab (Tab Break) field in DocType 'Company' +#. Label of the accounts (Table) field in DocType 'Customer Group' +#. Label of the accounts (Section Break) field in DocType 'Email Digest' +#. Group in Incoterm's connections +#. Label of the accounts (Table) field in DocType 'Supplier Group' +#: erpnext/accounts/doctype/applicable_on_account/applicable_on_account.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +#: erpnext/assets/doctype/asset_category/asset_category.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/company/company.py:452 +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/setup/install.py:393 +msgid "Accounts" +msgstr "" + +#. Label of the closing_settings_tab (Tab Break) field in DocType 'Accounts +#. Settings' +#. Label of the accounts_closing_tab (Tab Break) field in DocType 'Company' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/setup/doctype/company/company.json +msgid "Accounts Closing" +msgstr "" + +#. Label of the accounts_frozen_till_date (Date) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Accounts Frozen Till Date" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:186 +msgid "Accounts Included in Report" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:160 +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:185 +msgid "Accounts Missing from Report" +msgstr "" + +#. Option for the 'Write Off Based On' (Select) field in DocType 'Journal +#. Entry' +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.json +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126 +#: erpnext/buying/doctype/supplier/supplier.js:135 +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Accounts Payable" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:177 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.json +msgid "Accounts Payable Summary" +msgstr "" + +#. Option for the 'Write Off Based On' (Select) field in DocType 'Journal +#. Entry' +#. Option for the 'Report' (Select) field in DocType 'Process Statement Of +#. Accounts' +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:12 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:12 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.json +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:149 +#: erpnext/selling/doctype/customer/customer.js:162 +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Accounts Receivable" +msgstr "" + +#. Label of the accounts_receivable_payable_tuning_section (Section Break) +#. field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Accounts Receivable / Payable Tuning" +msgstr "" + +#. Label of the receivable_payable_remarks_length (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Accounts Receivable / Payable remarks length" +msgstr "" + +#. Label of the accounts_receivable_credit (Link) field in DocType 'Invoice +#. Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Accounts Receivable Credit Account" +msgstr "" + +#. Label of the accounts_receivable_discounted (Link) field in DocType 'Invoice +#. Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Accounts Receivable Discounted Account" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:204 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.json +msgid "Accounts Receivable Summary" +msgstr "" + +#. Label of the accounts_receivable_unpaid (Link) field in DocType 'Invoice +#. Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Accounts Receivable Unpaid Account" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a shortcut in the ERPNext Settings Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Accounts Settings" +msgstr "" + +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: erpnext/desktop_icon/accounts_setup.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Accounts Setup" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1010 +msgid "Accounts table cannot be blank." +msgstr "" + +#. Label of the merge_accounts (Table) field in DocType 'Ledger Merge' +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +msgid "Accounts to Merge" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270 +msgid "Accrued Expenses" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117 +#: erpnext/accounts/report/account_balance/account_balance.js:37 +msgid "Accumulated Depreciation" +msgstr "" + +#. Label of the accumulated_depreciation_account (Link) field in DocType 'Asset +#. Category Account' +#. Label of the accumulated_depreciation_account (Link) field in DocType +#. 'Company' +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +#: erpnext/setup/doctype/company/company.json +msgid "Accumulated Depreciation Account" +msgstr "" + +#. Label of the accumulated_depreciation_amount (Currency) field in DocType +#. 'Depreciation Schedule' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:173 +#: erpnext/assets/doctype/asset/asset.js:380 +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +msgid "Accumulated Depreciation Amount" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +msgid "Accumulated Depreciation as on" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:533 +msgid "Accumulated Monthly" +msgstr "" + +#: erpnext/controllers/budget_controller.py:429 +msgid "Accumulated Monthly Budget for Account {0} against {1} {2} is {3}. It will be collectively ({4}) exceeded by {5}" +msgstr "" + +#: erpnext/controllers/budget_controller.py:331 +msgid "Accumulated Monthly Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:39 +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js:12 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:40 +msgid "Accumulated Values" +msgstr "" + +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:125 +msgid "Accumulated Values in Group Company" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:111 +msgid "Achieved ({})" +msgstr "" + +#. Label of the acquisition_date (Date) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Acquisition Date" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Acre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Acre (US)" +msgstr "" + +#: erpnext/quality_management/doctype/quality_review/quality_review_list.js:7 +msgid "Action Initialised" +msgstr "" + +#. Label of the action_if_accumulated_monthly_budget_exceeded (Select) field in +#. DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Accumulated Monthly Budget Exceeded on Actual" +msgstr "" + +#. Label of the action_if_accumulated_monthly_budget_exceeded_on_mr (Select) +#. field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Accumulated Monthly Budget Exceeded on MR" +msgstr "" + +#. Label of the action_if_accumulated_monthly_budget_exceeded_on_po (Select) +#. field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Accumulated Monthly Budget Exceeded on PO" +msgstr "" + +#. Label of the action_if_accumulated_monthly_exceeded_on_cumulative_expense +#. (Select) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Accumulative Monthly Budget Exceeded on Cumulative Expense" +msgstr "" + +#. Label of the action_if_annual_budget_exceeded (Select) field in DocType +#. 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Annual Budget Exceeded on Actual" +msgstr "" + +#. Label of the action_if_annual_budget_exceeded_on_mr (Select) field in +#. DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Annual Budget Exceeded on MR" +msgstr "" + +#. Label of the action_if_annual_budget_exceeded_on_po (Select) field in +#. DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Annual Budget Exceeded on PO" +msgstr "" + +#. Label of the action_if_annual_exceeded_on_cumulative_expense (Select) field +#. in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Action if Anual Budget Exceeded on Cumulative Expense" +msgstr "" + +#. Label of the action_if_quality_inspection_is_not_submitted (Select) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Action if Quality Inspection is not submitted" +msgstr "" + +#. Label of the action_if_quality_inspection_is_rejected (Select) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Action if Quality Inspection is rejected" +msgstr "" + +#. Label of the maintain_same_rate_action (Select) field in DocType 'Buying +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Action if same rate is not maintained" +msgstr "" + +#. Label of the maintain_same_rate_action (Select) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Action if same rate is not maintained throughout internal transaction" +msgstr "" + +#. Label of the maintain_same_rate_action (Select) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Action if same rate is not maintained throughout sales cycle" +msgstr "" + +#. Label of the action_on_new_invoice (Select) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Action on New Invoice" +msgstr "" + +#. Label of the actions_performed (Text Editor) field in DocType 'Asset +#. Maintenance Log' +#. Label of the actions_performed (Long Text) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Actions performed" +msgstr "" + +#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/item/item.js:481 +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Activate Serial / Batch No for Item" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.py:70 +msgid "Active Leads" +msgstr "" + +#. Label of the on_status_image (Attach Image) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Active Status" +msgstr "" + +#. Label of a number card in the Subcontracting Workspace +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Active Subcontracted Items" +msgstr "" + +#. Label of the activities_tab (Tab Break) field in DocType 'Lead' +#. Label of the activities_tab (Tab Break) field in DocType 'Opportunity' +#. Label of the activities_tab (Tab Break) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Activities" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Activity Cost" +msgstr "" + +#: erpnext/projects/doctype/activity_cost/activity_cost.py:55 +msgid "Activity Cost exists for Employee {0} against Activity Type - {1}" +msgstr "" + +#: erpnext/projects/doctype/activity_type/activity_type.js:10 +msgid "Activity Cost per Employee" +msgstr "" + +#. Label of the activity_type (Link) field in DocType 'Sales Invoice Timesheet' +#. Label of the activity_type (Link) field in DocType 'Activity Cost' +#. Name of a DocType +#. Label of the activity_type (Data) field in DocType 'Activity Type' +#. Label of the activity_type (Link) field in DocType 'Timesheet Detail' +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/activity_type/activity_type.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:29 +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/public/js/projects/timer.js:9 +#: erpnext/templates/pages/timelog_info.html:25 +#: erpnext/workspace_sidebar/projects.json +msgid "Activity Type" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:234 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:238 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:320 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:330 +msgid "Actual" +msgstr "" + +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:125 +msgid "Actual Balance Qty" +msgstr "" + +#. Label of the actual_batch_qty (Float) field in DocType 'Packed Item' +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Actual Batch Quantity" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +msgid "Actual Cost" +msgstr "" + +#. Label of the actual_date (Date) field in DocType 'Maintenance Schedule +#. Detail' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +msgid "Actual Date" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 +msgid "Actual Delivery Date" +msgstr "" + +#. Label of the section_break_cmgo (Section Break) field in DocType 'Master +#. Production Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +msgid "Actual Demand" +msgstr "" + +#. Label of the actual_end_date (Datetime) field in DocType 'Job Card' +#. Label of the actual_end_date (Datetime) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:254 +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:129 +msgid "Actual End Date" +msgstr "" + +#. Label of the actual_end_date (Date) field in DocType 'Project' +#. Label of the act_end_date (Date) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Actual End Date (via Timesheet)" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:321 +msgid "Actual End Date cannot be before Actual Start Date" +msgstr "" + +#. Label of the actual_end_time (Datetime) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Actual End Time" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:459 +msgid "Actual Expense" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:613 +msgid "Actual Expenses" +msgstr "" + +#. Label of the actual_operating_cost (Currency) field in DocType 'Work Order' +#. Label of the actual_operating_cost (Currency) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Actual Operating Cost" +msgstr "" + +#. Label of the actual_operation_time (Float) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Actual Operation Time" +msgstr "" + +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:461 +msgid "Actual Posting" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the actual_qty (Float) field in DocType 'Bin' +#. Label of the actual_qty (Float) field in DocType 'Material Request Item' +#. Label of the actual_qty (Float) field in DocType 'Packed Item' +#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:21 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:95 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:143 +msgid "Actual Qty" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Actual Qty (at source/target)" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Asset Capitalization Stock +#. Item' +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +msgid "Actual Qty in Warehouse" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:201 +msgid "Actual Qty is mandatory" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:37 +#: erpnext/stock/dashboard/item_dashboard_list.html:28 +msgid "Actual Qty {0} / Waiting Qty {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:196 +msgid "Actual Qty: Quantity available in the warehouse." +msgstr "" + +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:95 +msgid "Actual Quantity" +msgstr "" + +#. Label of the actual_start_date (Datetime) field in DocType 'Job Card' +#. Label of the actual_start_date (Datetime) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:248 +msgid "Actual Start Date" +msgstr "" + +#. Label of the actual_start_date (Date) field in DocType 'Project' +#. Label of the act_start_date (Date) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Actual Start Date (via Timesheet)" +msgstr "" + +#. Label of the actual_start_time (Datetime) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Actual Start Time" +msgstr "" + +#. Label of the timing_detail (Tab Break) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Actual Time" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Actual Time and Cost" +msgstr "" + +#. Label of the actual_time (Float) field in DocType 'Project' +#. Label of the actual_time (Float) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Actual Time in Hours (via Timesheet)" +msgstr "" + +#: erpnext/stock/page/stock_balance/stock_balance.js:55 +msgid "Actual qty in stock" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 +#: erpnext/public/js/controllers/accounts.js:197 +msgid "Actual type tax cannot be included in Item rate in row {0}" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1022 +msgid "Ad-hoc Qty" +msgstr "" + +#: erpnext/stock/doctype/price_list/price_list.js:8 +msgid "Add / Edit Prices" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:214 +msgid "Add Columns in Transaction Currency" +msgstr "" + +#. Label of the add_corrective_operation_cost_in_finished_good_valuation +#. (Check) field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Add Corrective Operation Cost in Finished Good Valuation" +msgstr "" + +#: erpnext/public/js/event.js:24 +msgid "Add Customers" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:93 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:442 +msgid "Add Discount" +msgstr "" + +#: erpnext/public/js/event.js:40 +msgid "Add Employees" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:256 +#: erpnext/selling/doctype/sales_order/sales_order.js:278 +#: erpnext/stock/dashboard/item_dashboard.js:216 +msgid "Add Item" +msgstr "" + +#: erpnext/public/js/utils/item_selector.js:20 +#: erpnext/public/js/utils/item_selector.js:35 +msgid "Add Items" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:56 +msgid "Add Items in the Purpose Table" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.js:84 +msgid "Add Lead to Prospect" +msgstr "" + +#: erpnext/public/js/event.js:16 +msgid "Add Leads" +msgstr "" + +#. Label of the add_local_holidays (Section Break) field in DocType 'Holiday +#. List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Add Local Holidays" +msgstr "" + +#. Label of the add_manually (Check) field in DocType 'Repost Payment Ledger' +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +msgid "Add Manually" +msgstr "" + +#: erpnext/projects/doctype/task/task_tree.js:42 +msgid "Add Multiple" +msgstr "" + +#: erpnext/projects/doctype/task/task_tree.js:49 +msgid "Add Multiple Tasks" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:974 +msgid "Add Opening Stock" +msgstr "" + +#. Label of the add_deduct_tax (Select) field in DocType 'Advance Taxes and +#. Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +msgid "Add Or Deduct" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:280 +msgid "Add Order Discount" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:281 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:416 +msgid "Add Phantom Item" +msgstr "" + +#. Label of the add_quote (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Add Quote" +msgstr "" + +#. Label of the add_raw_materials (Button) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom/bom.js:1050 +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Add Raw Materials" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:711 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1260 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:728 +msgid "Add Row" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:227 +#: banking/src/components/features/Settings/MatchingRules.tsx:30 +msgid "Add Rule" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:82 +msgid "Add Safety Stock" +msgstr "" + +#: erpnext/public/js/event.js:48 +msgid "Add Sales Partners" +msgstr "" + +#. Label of the add_schedule (Button) field in DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order/sales_order.js:687 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Add Schedule" +msgstr "" + +#. Label of the add_serial_batch_bundle (Button) field in DocType +#. 'Subcontracting Receipt Item' +#. Label of the add_serial_batch_bundle (Button) field in DocType +#. 'Subcontracting Receipt Supplied Item' +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Add Serial / Batch Bundle" +msgstr "" + +#. Label of the add_serial_batch_bundle (Button) field in DocType 'Purchase +#. Invoice Item' +#. Label of the add_serial_batch_bundle (Button) field in DocType 'Purchase +#. Receipt Item' +#. Label of the add_serial_batch_bundle (Button) field in DocType 'Stock Entry +#. Detail' +#. Label of the add_serial_batch_bundle (Button) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Add Serial / Batch No" +msgstr "" + +#. Label of the add_serial_batch_for_rejected_qty (Button) field in DocType +#. 'Purchase Receipt Item' +#. Label of the add_serial_batch_for_rejected_qty (Button) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Add Serial / Batch No (Rejected Qty)" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:26 +msgid "Add Series Prefix" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 +msgid "Add Stock" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:281 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:416 +msgid "Add Sub Assembly" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:517 +#: erpnext/public/js/event.js:32 +msgid "Add Suppliers" +msgstr "" + +#: erpnext/utilities/activation.py:126 +msgid "Add Timesheets" +msgstr "" + +#. Label of the add_weekly_holidays (Section Break) field in DocType 'Holiday +#. List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Add Weekly Holidays" +msgstr "" + +#: erpnext/public/js/utils/crm_activities.js:144 +msgid "Add a Note" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:879 +msgid "Add a charge to the payment entry with the difference amount" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:863 +msgid "Add a charge to the payment entry with the unallocated amount" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:800 +msgid "Add a row with the difference amount" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:579 +msgid "Add all accounts that you want to split the transaction into." +msgstr "" + +#: erpnext/www/book_appointment/index.html:42 +msgid "Add details" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:23 +#: erpnext/stock/doctype/pick_list/pick_list.js:89 +msgid "Add items in the Item Locations table" +msgstr "" + +#. Label of the add_deduct_tax (Select) field in DocType 'Purchase Taxes and +#. Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Add or Deduct" +msgstr "" + +#: erpnext/utilities/activation.py:116 +msgid "Add the rest of your organization as your users. You can also add invite Customers to your portal by adding them from Contacts" +msgstr "" + +#. Label of the get_weekly_off_dates (Button) field in DocType 'Holiday List' +#. Label of the get_local_holidays (Button) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Add to Holidays" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.js:38 +msgid "Add to Prospect" +msgstr "" + +#. Label of the add_to_transit (Check) field in DocType 'Stock Entry' +#. Label of the add_to_transit (Check) field in DocType 'Stock Entry Type' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Add to Transit" +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:117 +msgid "Add vouchers to generate preview." +msgstr "" + +#: erpnext/accounts/doctype/coupon_code/coupon_code.js:36 +msgid "Add/Edit Coupon Conditions" +msgstr "" + +#. Label of the added_by (Link) field in DocType 'CRM Note' +#: erpnext/crm/doctype/crm_note/crm_note.json +msgid "Added By" +msgstr "" + +#. Label of the added_on (Datetime) field in DocType 'CRM Note' +#: erpnext/crm/doctype/crm_note/crm_note.json +msgid "Added On" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.py:134 +msgid "Added Supplier Role to User {0}." +msgstr "" + +#: erpnext/controllers/website_list_for_contact.py:311 +msgid "Added {1} Role to User {0}." +msgstr "" + +#: erpnext/crm/doctype/lead/lead.js:81 +msgid "Adding Lead to Prospect..." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:451 +msgid "Additional" +msgstr "" + +#. Label of the additional_asset_cost (Currency) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Additional Asset Cost" +msgstr "" + +#. Label of the additional_cost (Currency) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Additional Cost" +msgstr "" + +#. Label of the additional_cost_per_qty (Currency) field in DocType +#. 'Subcontracting Order Item' +#. Label of the additional_cost_per_qty (Currency) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Additional Cost Per Qty" +msgstr "" + +#. Label of the additional_costs_section (Tab Break) field in DocType 'Stock +#. Entry' +#. Label of the additional_costs (Table) field in DocType 'Stock Entry' +#. Label of the tab_additional_costs (Tab Break) field in DocType +#. 'Subcontracting Order' +#. Label of the additional_costs (Table) field in DocType 'Subcontracting +#. Order' +#. Label of the tab_additional_costs (Tab Break) field in DocType +#. 'Subcontracting Receipt' +#. Label of the additional_costs (Table) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Additional Costs" +msgstr "" + +#. Label of the non_stock_items (Table) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Additional Costs (as per BOM)" +msgstr "" + +#. Label of the additional_data (Code) field in DocType 'Common Code' +#: erpnext/edi/doctype/common_code/common_code.json +msgid "Additional Data" +msgstr "" + +#. Label of the additional_details (Section Break) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Additional Details" +msgstr "" + +#. Label of the section_break_49 (Section Break) field in DocType 'POS Invoice' +#. Label of the section_break_44 (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the additional_discount_section (Section Break) field in DocType +#. 'Sales Invoice' +#. Label of the discount_section (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the section_break_41 (Section Break) field in DocType 'Supplier +#. Quotation' +#. Label of the additional_discount_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the additional_discount_section (Section Break) field in DocType +#. 'Sales Order' +#. Label of the section_break_49 (Section Break) field in DocType 'Delivery +#. Note' +#. Label of the section_break_42 (Section Break) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Additional Discount" +msgstr "" + +#. Label of the discount_amount (Currency) field in DocType 'POS Invoice' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Invoice' +#. Label of the discount_amount (Currency) field in DocType 'Sales Invoice' +#. Label of the additional_discount_amount (Currency) field in DocType +#. 'Subscription' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Order' +#. Label of the discount_amount (Currency) field in DocType 'Supplier +#. Quotation' +#. Label of the discount_amount (Currency) field in DocType 'Quotation' +#. Label of the base_discount_amount (Currency) field in DocType 'Sales Order' +#. Label of the discount_amount (Currency) field in DocType 'Sales Order' +#. Label of the discount_amount (Currency) field in DocType 'Delivery Note' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Additional Discount Amount" +msgstr "" + +#. Label of the base_discount_amount (Currency) field in DocType 'POS Invoice' +#. Label of the base_discount_amount (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the base_discount_amount (Currency) field in DocType 'Sales +#. Invoice' +#. Label of the base_discount_amount (Currency) field in DocType 'Purchase +#. Order' +#. Label of the base_discount_amount (Currency) field in DocType 'Supplier +#. Quotation' +#. Label of the base_discount_amount (Currency) field in DocType 'Quotation' +#. Label of the base_discount_amount (Currency) field in DocType 'Delivery +#. Note' +#. Label of the base_discount_amount (Currency) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Additional Discount Amount (Company Currency)" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:846 +msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" +msgstr "" + +#. Label of the additional_discount_percentage (Float) field in DocType 'POS +#. Invoice' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Purchase Invoice' +#. Label of the additional_discount_percentage (Float) field in DocType 'Sales +#. Invoice' +#. Label of the additional_discount_percentage (Percent) field in DocType +#. 'Subscription' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Purchase Order' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Supplier Quotation' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Quotation' +#. Label of the additional_discount_percentage (Float) field in DocType 'Sales +#. Order' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Delivery Note' +#. Label of the additional_discount_percentage (Float) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Additional Discount Percentage" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Additional Finished Good" +msgstr "" + +#. Label of the addtional_info (Section Break) field in DocType 'Journal Entry' +#. Label of the additional_info_section (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the more_information (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the section_break_jtou (Section Break) field in DocType 'Asset' +#. Label of the additional_info_section (Section Break) field in DocType +#. 'Purchase Order' +#. Label of the more_info (Section Break) field in DocType 'Supplier Quotation' +#. Label of the sb_more_info (Section Break) field in DocType 'Task' +#. Label of the additional_info_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the additional_info_section (Section Break) field in DocType 'Sales +#. Order' +#. Label of the more_info (Section Break) field in DocType 'Delivery Note' +#. Label of the additional_info_section (Section Break) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Additional Info" +msgstr "" + +#. Label of the other_info_tab (Section Break) field in DocType 'Lead' +#. Label of the additional_information (Text) field in DocType 'Quality Review' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/selling/page/point_of_sale/pos_payment.js:59 +msgid "Additional Information" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:85 +msgid "Additional Information updated successfully." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:830 +msgid "Additional Material Transfer" +msgstr "" + +#. Label of the additional_notes (Text) field in DocType 'Quotation Item' +#. Label of the additional_notes (Text) field in DocType 'Sales Order Item' +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Additional Notes" +msgstr "" + +#. Label of the additional_operating_cost (Currency) field in DocType 'Work +#. Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Additional Operating Cost" +msgstr "" + +#. Label of the additional_transferred_qty (Float) field in DocType 'Work +#. Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Additional Transferred Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:591 +msgid "Additional Transferred Qty {0}\n" +"\t\t\t\t\tcannot be greater than {1}.\n" +"\t\t\t\t\tTo fix this, increase the percentage value\n" +"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" +"\t\t\t\t\tin Manufacturing Settings." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 +msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" +msgstr "" + +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Dunning' +#. Label of the contact_and_address_tab (Tab Break) field in DocType 'POS +#. Invoice' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Purchase +#. Invoice' +#. Label of the contact_and_address_tab (Tab Break) field in DocType 'Sales +#. Invoice' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Purchase +#. Order' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Request +#. for Quotation' +#. Label of the contact_and_address_tab (Tab Break) field in DocType 'Supplier' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Supplier +#. Quotation' +#. Label of the address_contact_section (Section Break) field in DocType +#. 'Opportunity' +#. Label of the contacts_tab (Tab Break) field in DocType 'Prospect' +#. Label of the contact_and_address_tab (Tab Break) field in DocType 'Customer' +#. Label of the address_and_contact_tab (Tab Break) field in DocType +#. 'Quotation' +#. Label of the contact_info (Tab Break) field in DocType 'Sales Order' +#. Label of the company_info (Section Break) field in DocType 'Company' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Delivery +#. Note' +#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Address & Contact" +msgstr "" + +#. Label of the address_section (Section Break) field in DocType 'Lead' +#. Label of the contact_details (Tab Break) field in DocType 'Employee' +#. Label of the address_contacts (Section Break) field in DocType 'Sales +#. Partner' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Address & Contacts" +msgstr "" + +#. Label of a Link in the Financial Reports Workspace +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/selling/report/address_and_contacts/address_and_contacts.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Address And Contacts" +msgstr "" + +#. Label of the address_desc (HTML) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Address Desc" +msgstr "" + +#. Label of the address_html (HTML) field in DocType 'Bank' +#. Label of the address_html (HTML) field in DocType 'Bank Account' +#. Label of the address_html (HTML) field in DocType 'Shareholder' +#. Label of the address_html (HTML) field in DocType 'Supplier' +#. Label of the address_html (HTML) field in DocType 'Lead' +#. Label of the address_html (HTML) field in DocType 'Opportunity' +#. Label of the address_html (HTML) field in DocType 'Prospect' +#. Label of the address_html (HTML) field in DocType 'Customer' +#. Label of the address_html (HTML) field in DocType 'Sales Partner' +#. Label of the address_html (HTML) field in DocType 'Manufacturer' +#. Label of the address_html (HTML) field in DocType 'Warehouse' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Address HTML" +msgstr "" + +#. Label of the address (Link) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Address Name" +msgstr "" + +#. Label of the address_and_contact (Section Break) field in DocType 'Bank' +#. Label of the address_and_contact (Section Break) field in DocType 'Bank +#. Account' +#. Label of the address_and_contact (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the address_contacts (Section Break) field in DocType 'Customer' +#. Label of the address_and_contact (Section Break) field in DocType +#. 'Warehouse' +#. Label of the tab_address_and_contact (Tab Break) field in DocType +#. 'Subcontracting Order' +#. Label of the tab_addresses (Tab Break) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Address and Contact" +msgstr "" + +#. Label of the address_contacts (Section Break) field in DocType 'Shareholder' +#. Label of the address_contacts (Section Break) field in DocType 'Supplier' +#. Label of the address_contacts (Section Break) field in DocType +#. 'Manufacturer' +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +msgid "Address and Contacts" +msgstr "" + +#: erpnext/accounts/custom/address.py:33 +msgid "Address needs to be linked to a Company. Please add a row for Company in the Links table." +msgstr "" + +#. Description of the 'Determine Address Tax Category from' (Select) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Address used to determine Tax Category in transactions" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1189 +msgid "Adjustment Against" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:199 +msgid "Adjustment based on Purchase Invoice rate" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:2 +msgid "Administrative Assistant" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173 +msgid "Administrative Expenses" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:3 +msgid "Administrative Officer" +msgstr "" + +#. Label of the advance_account (Link) field in DocType 'Party Account' +#: erpnext/accounts/doctype/party_account/party_account.json +msgid "Advance Account" +msgstr "" + +#: erpnext/utilities/transaction_base.py:273 +msgid "Advance Account: {0} must be in either customer billing currency: {1} or Company default currency: {2}" +msgstr "" + +#. Label of the advance_amount (Currency) field in DocType 'Purchase Invoice +#. Advance' +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:165 +msgid "Advance Amount" +msgstr "" + +#. Label of the advance_paid (Currency) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Advance Paid" +msgstr "" + +#. Label of the advance_paid (Currency) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Advance Paid (Company Currency)" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:75 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:122 +msgid "Advance Payment" +msgstr "" + +#. Option for the 'Reconciliation Takes Effect On' (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Advance Payment Date" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +msgid "Advance Payment Ledger Entry" +msgstr "" + +#. Label of the advance_payment_status (Select) field in DocType 'Purchase +#. Order' +#. Label of the advance_payment_status (Select) field in DocType 'Sales Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Advance Payment Status" +msgstr "" + +#. Label of the advances_section (Section Break) field in DocType 'POS Invoice' +#. Label of the advances_section (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the advances_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the advance_payments_section (Section Break) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/controllers/accounts_controller.py:280 +#: erpnext/setup/doctype/company/company.json +msgid "Advance Payments" +msgstr "" + +#. Name of a DocType +#. Label of the taxes (Table) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Advance Taxes and Charges" +msgstr "" + +#. Label of the advance_voucher_no (Dynamic Link) field in DocType 'Journal +#. Entry Account' +#. Label of the advance_voucher_no (Dynamic Link) field in DocType 'Payment +#. Entry Reference' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Advance Voucher No" +msgstr "" + +#. Label of the advance_voucher_type (Link) field in DocType 'Journal Entry +#. Account' +#. Label of the advance_voucher_type (Link) field in DocType 'Payment Entry +#. Reference' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Advance Voucher Type" +msgstr "" + +#. Label of the advance_amount (Currency) field in DocType 'Sales Invoice +#. Advance' +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Advance amount" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:983 +msgid "Advance amount cannot be greater than {0} {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:172 +msgid "Advance paid against {0} {1} cannot be greater than Grand Total {2}" +msgstr "" + +#. Description of the 'Only Include Allocated Payments' (Check) field in +#. DocType 'Purchase Invoice' +#. Description of the 'Only Include Allocated Payments' (Check) field in +#. DocType 'Sales Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Advance payments allocated against orders will only be fetched" +msgstr "" + +#. Label of the advanced_features_tab (Tab Break) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Advanced Features" +msgstr "" + +#. Label of the advanced_filtering (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Advanced Filtering" +msgstr "" + +#. Label of the advances (Table) field in DocType 'POS Invoice' +#. Label of the advances (Table) field in DocType 'Purchase Invoice' +#. Label of the advances (Table) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Advances" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:3 +msgid "Advertisement" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:2 +msgid "Advertising" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:3 +msgid "Aerospace" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:79 +msgid "After save, please refresh the page to apply the changes." +msgstr "" + +#. Label of the against (Text) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:20 +msgid "Against" +msgstr "" + +#. Label of the against_account (Data) field in DocType 'Bank Clearance Detail' +#. Label of the against_account (Text) field in DocType 'Journal Entry Account' +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:164 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:331 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:140 +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 +#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +msgid "Against Account" +msgstr "" + +#. Label of the against_blanket_order (Check) field in DocType 'Purchase Order +#. Item' +#. Label of the against_blanket_order (Check) field in DocType 'Quotation Item' +#. Label of the against_blanket_order (Check) field in DocType 'Sales Order +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Against Blanket Order" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:838 +msgid "Against Customer Order {0}" +msgstr "" + +#. Label of the dn_detail (Data) field in DocType 'Delivery Note Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Delivery Note Item" +msgstr "" + +#. Label of the prevdoc_docname (Dynamic Link) field in DocType 'Quotation +#. Item' +#: erpnext/selling/doctype/quotation_item/quotation_item.json +msgid "Against Docname" +msgstr "" + +#. Label of the prevdoc_doctype (Link) field in DocType 'Quotation Item' +#: erpnext/selling/doctype/quotation_item/quotation_item.json +msgid "Against Doctype" +msgstr "" + +#. Label of the prevdoc_detail_docname (Data) field in DocType 'Installation +#. Note Item' +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +msgid "Against Document Detail No" +msgstr "" + +#. Label of the prevdoc_docname (Dynamic Link) field in DocType 'Maintenance +#. Visit Purpose' +#. Label of the prevdoc_docname (Data) field in DocType 'Installation Note +#. Item' +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +msgid "Against Document No" +msgstr "" + +#. Label of the against_expense_account (Small Text) field in DocType 'Purchase +#. Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Against Expense Account" +msgstr "" + +#. Label of the against_fg (Link) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Against Finished Good" +msgstr "" + +#. Label of the against_income_account (Small Text) field in DocType 'POS +#. Invoice' +#. Label of the against_income_account (Small Text) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Against Income Account" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:590 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:798 +msgid "Against Journal Entry {0} does not have any unmatched {1} entry" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:400 +msgid "Against Journal Entry {0} is already adjusted against some other voucher" +msgstr "" + +#. Label of the against_pick_list (Link) field in DocType 'Sales Invoice Item' +#. Label of the against_pick_list (Link) field in DocType 'Delivery Note Item' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Pick List" +msgstr "" + +#. Label of the against_sales_invoice (Link) field in DocType 'Delivery Note +#. Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Sales Invoice" +msgstr "" + +#. Label of the si_detail (Data) field in DocType 'Delivery Note Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Sales Invoice Item" +msgstr "" + +#. Label of the against_sales_order (Link) field in DocType 'Delivery Note +#. Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Sales Order" +msgstr "" + +#. Label of the so_detail (Data) field in DocType 'Delivery Note Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Against Sales Order Item" +msgstr "" + +#. Label of the against_stock_entry (Link) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Against Stock Entry" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:336 +msgid "Against Supplier Invoice {0}" +msgstr "" + +#. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +msgid "Against Voucher" +msgstr "" + +#. Label of the against_voucher_no (Dynamic Link) field in DocType 'Advance +#. Payment Ledger Entry' +#. Label of the against_voucher_no (Dynamic Link) field in DocType 'Payment +#. Ledger Entry' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:57 +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:71 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:192 +msgid "Against Voucher No" +msgstr "" + +#. Label of the against_voucher_type (Link) field in DocType 'Advance Payment +#. Ledger Entry' +#. Label of the against_voucher_type (Link) field in DocType 'GL Entry' +#. Label of the against_voucher_type (Link) field in DocType 'Payment Ledger +#. Entry' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 +msgid "Against Voucher Type" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:113 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:60 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:259 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:102 +msgid "Age" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:154 +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:138 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:139 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1223 +msgid "Age (Days)" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.py:267 +msgid "Age ({0})" +msgstr "" + +#. Label of the ageing_based_on (Select) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:66 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:119 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:21 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:95 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:119 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:21 +msgid "Ageing Based On" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:80 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:35 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:109 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:35 +#: erpnext/stock/report/stock_ageing/stock_ageing.js:58 +msgid "Ageing Range" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:104 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:352 +msgid "Ageing Report based on {0} up to {1}" +msgstr "" + +#. Label of the agenda (Table) field in DocType 'Quality Meeting' +#. Label of the agenda (Text Editor) field in DocType 'Quality Meeting Agenda' +#: erpnext/quality_management/doctype/quality_meeting/quality_meeting.json +#: erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.json +msgid "Agenda" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:4 +msgid "Agent" +msgstr "" + +#. Label of the agent_busy_message (Data) field in DocType 'Incoming Call +#. Settings' +#. Label of the agent_busy_message (Data) field in DocType 'Voice Call +#. Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Agent Busy Message" +msgstr "" + +#. Label of the agent_detail_section (Section Break) field in DocType +#. 'Appointment Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Agent Details" +msgstr "" + +#. Label of the agent_group (Link) field in DocType 'Incoming Call Handling +#. Schedule' +#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json +msgid "Agent Group" +msgstr "" + +#. Label of the agent_unavailable_message (Data) field in DocType 'Incoming +#. Call Settings' +#. Label of the agent_unavailable_message (Data) field in DocType 'Voice Call +#. Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Agent Unavailable Message" +msgstr "" + +#. Label of the agent_list (Table MultiSelect) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Agents" +msgstr "" + +#. Description of a DocType +#: erpnext/selling/doctype/product_bundle/product_bundle.json +msgid "Aggregate a group of Items into another Item. This is useful if you are maintaining the stock of the packed items and not the bundled item" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:4 +msgid "Agriculture" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:5 +msgid "Airline" +msgstr "" + +#. Label of the algorithm (Select) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "Algorithm" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 +#: erpnext/accounts/utils.py:1652 erpnext/public/js/setup_wizard.js:184 +msgid "All Accounts" +msgstr "" + +#. Label of the all_activities_section (Section Break) field in DocType 'Lead' +#. Label of the all_activities_section (Section Break) field in DocType +#. 'Opportunity' +#. Label of the all_activities_section (Section Break) field in DocType +#. 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "All Activities" +msgstr "" + +#. Label of the all_activities_html (HTML) field in DocType 'Lead' +#. Label of the all_activities_html (HTML) field in DocType 'Opportunity' +#. Label of the all_activities_html (HTML) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "All Activities HTML" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:423 +msgid "All BOMs" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Contact" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Customer Contact" +msgstr "" + +#: erpnext/patches/v13_0/remove_bad_selling_defaults.py:9 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:165 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:167 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:174 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:180 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:186 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:192 +msgid "All Customer Groups" +msgstr "" + +#: erpnext/patches/v11_0/create_department_records_for_each_company.py:23 +#: erpnext/patches/v11_0/update_department_lft_rgt.py:9 +#: erpnext/patches/v11_0/update_department_lft_rgt.py:11 +#: erpnext/patches/v11_0/update_department_lft_rgt.py:16 +#: erpnext/setup/doctype/company/company.py:445 +#: erpnext/setup/doctype/company/company.py:448 +#: erpnext/setup/doctype/company/company.py:453 +#: erpnext/setup/doctype/company/company.py:459 +#: erpnext/setup/doctype/company/company.py:465 +#: erpnext/setup/doctype/company/company.py:471 +#: erpnext/setup/doctype/company/company.py:477 +#: erpnext/setup/doctype/company/company.py:483 +#: erpnext/setup/doctype/company/company.py:489 +#: erpnext/setup/doctype/company/company.py:495 +#: erpnext/setup/doctype/company/company.py:501 +#: erpnext/setup/doctype/company/company.py:507 +#: erpnext/setup/doctype/company/company.py:513 +#: erpnext/setup/doctype/company/company.py:519 +#: erpnext/setup/doctype/company/company.py:525 +msgid "All Departments" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Employee (Active)" +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.py:35 +#: erpnext/setup/doctype/item_group/item_group.py:36 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:33 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:41 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:48 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:54 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:60 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:66 +msgid "All Item Groups" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:29 +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:271 +msgid "All Items" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Lead (Open)" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:114 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:113 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:115 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:113 +msgid "All Parties" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Sales Partner Contact" +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Sales Person" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "All Sales Transactions can be tagged against multiple Sales Persons so that you can set and monitor targets." +msgstr "" + +#. Option for the 'Send To' (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "All Supplier Contact" +msgstr "" + +#: erpnext/patches/v11_0/rename_supplier_type_to_supplier_group.py:29 +#: erpnext/patches/v11_0/rename_supplier_type_to_supplier_group.py:32 +#: erpnext/patches/v11_0/rename_supplier_type_to_supplier_group.py:36 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:197 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:199 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:206 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:212 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:218 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:224 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:230 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:236 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:242 +msgid "All Supplier Groups" +msgstr "" + +#: erpnext/patches/v13_0/remove_bad_selling_defaults.py:12 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:145 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:147 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:154 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:160 +msgid "All Territories" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:390 +msgid "All Warehouses" +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:72 +msgid "All active prices for this item across buying and selling price lists." +msgstr "" + +#. Description of the 'Reconciled' (Check) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "All allocations have been successfully reconciled" +msgstr "" + +#: erpnext/support/doctype/issue/issue.js:109 +msgid "All communications including and above this shall be moved into the new Issue" +msgstr "" + +#. Description of the 'Billing Currency' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "All invoices and orders for this customer will be created in this currency." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:60 +msgid "All items are already requested" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +msgid "All items have already been Invoiced/Returned" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/mapper.py:445 +msgid "All items have already been received" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:274 +msgid "All items have already been transferred for this Work Order." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:3002 +msgid "All items in this document already have a linked Quality Inspection." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:915 +msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:926 +msgid "All linked Sales Orders must be subcontracted." +msgstr "" + +#. Description of the 'Carry Forward Communication and Comments' (Check) field +#. in DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "All the Comments and Emails will be copied from one document to another newly created document(Lead -> Opportunity -> Quotation) throughout the CRM documents." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 +msgid "All the items have been already returned." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1272 +msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/mapper.py:83 +msgid "All these items have already been Invoiced/Returned" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:108 +msgid "Allocate" +msgstr "" + +#. Label of the allocate_advances_automatically (Check) field in DocType 'POS +#. Invoice' +#. Label of the allocate_advances_automatically (Check) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Allocate Advances Automatically (FIFO)" +msgstr "" + +#. Label of the allocate_full_amount_to_stock_items (Check) field in DocType +#. 'Purchase Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Allocate Full Amount to Stock Items" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +msgid "Allocate Payment Amount" +msgstr "" + +#. Label of the allocate_payment_based_on_payment_terms (Check) field in +#. DocType 'Payment Terms Template' +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json +msgid "Allocate Payment Based On Payment Terms" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +msgid "Allocate Payment Request" +msgstr "" + +#. Label of the allocated_amount (Currency) field in DocType 'Payment Entry +#. Reference' +#. Label of the allocated (Check) field in DocType 'Process Payment +#. Reconciliation Log' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:249 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:687 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:724 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:850 +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Allocated" +msgstr "" + +#. Label of the allocated_amount (Currency) field in DocType 'Bank Transaction' +#. Label of the allocated_amount (Currency) field in DocType 'Bank Transaction +#. Payments' +#. Label of the allocated_amount (Currency) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the allocated_amount (Currency) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the allocated_amount (Currency) field in DocType 'Purchase Invoice +#. Advance' +#. Label of the allocated_amount (Currency) field in DocType 'Unreconcile +#. Payment Entries' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +#: erpnext/accounts/report/gross_profit/gross_profit.py:409 +#: erpnext/public/js/utils/unreconcile.js:87 +msgid "Allocated Amount" +msgstr "" + +#. Label of the sec_break2 (Section Break) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Allocated Entries" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:49 +msgid "Allocated To:" +msgstr "" + +#. Label of the allocated_amount (Currency) field in DocType 'Sales Invoice +#. Advance' +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Allocated amount" +msgstr "" + +#: erpnext/accounts/utils.py:665 +msgid "Allocated amount cannot be greater than unadjusted amount" +msgstr "" + +#: erpnext/accounts/utils.py:663 +msgid "Allocated amount cannot be negative" +msgstr "" + +#. Label of the allocation (Table) field in DocType 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:282 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Allocation" +msgstr "" + +#. Label of the allocations (Table) field in DocType 'Process Payment +#. Reconciliation Log' +#. Label of the allocations_section (Section Break) field in DocType 'Process +#. Payment Reconciliation Log' +#. Label of the allocations (Table) field in DocType 'Unreconcile Payment' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +#: erpnext/public/js/utils/unreconcile.js:104 +msgid "Allocations" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:430 +msgid "Allotted Qty" +msgstr "" + +#. Label of the allow_account_creation_against_child_company (Check) field in +#. DocType 'Company' +#: erpnext/accounts/doctype/account/account.py:555 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68 +#: erpnext/setup/doctype/company/company.json +msgid "Allow Account Creation Against Child Company" +msgstr "" + +#. Label of the allow_alternative_item (Check) field in DocType 'BOM' +#. Label of the allow_alternative_item (Check) field in DocType 'BOM Item' +#. Label of the allow_alternative_item (Check) field in DocType 'Job Card Item' +#. Label of the allow_alternative_item (Check) field in DocType 'Work Order' +#. Label of the allow_alternative_item (Check) field in DocType 'Work Order +#. Item' +#. Label of the allow_alternative_item (Check) field in DocType 'Item' +#. Label of the allow_alternative_item (Check) field in DocType 'Stock Entry +#. Detail' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Allow Alternative Item" +msgstr "" + +#: erpnext/stock/doctype/item_alternative/item_alternative.py:68 +msgid "Allow Alternative Item must be checked on Item {}" +msgstr "" + +#. Label of the material_consumption (Check) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow Continuous Material Consumption" +msgstr "" + +#. Label of the allow_editing_of_items_and_quantities_in_work_order (Check) +#. field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow Editing of Items and Quantities in Work Order" +msgstr "" + +#. Label of the job_card_excess_transfer (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow Excess Material Transfer" +msgstr "" + +#. Label of the allow_pegged_currencies_exchange_rates (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Allow Implicit Pegged Currency Conversion" +msgstr "" + +#. Label of the allow_in_returns (Check) field in DocType 'POS Payment Method' +#: erpnext/accounts/doctype/pos_payment_method/pos_payment_method.json +msgid "Allow In Returns" +msgstr "" + +#: erpnext/controllers/selling_controller.py:873 +msgid "Allow Item to Be Added Multiple Times in a Transaction" +msgstr "" + +#. Label of the allow_multiple_items (Check) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allow Item to be added multiple times in a transaction" +msgstr "" + +#. Label of the allow_lead_duplication_based_on_emails (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allow Lead Duplication based on Emails" +msgstr "" + +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:9 +msgid "Allow Multiple Material Consumption" +msgstr "" + +#. Label of the allow_negative_stock (Check) field in DocType 'Item' +#. Label of the allow_negative_stock (Check) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/stock_settings/stock_settings.py:225 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:237 +msgid "Allow Negative Stock" +msgstr "" + +#. Label of the allow_negative_stock_for_batch (Check) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Allow Negative Stock for Batch" +msgstr "" + +#. Label of the allow_or_restrict (Select) field in DocType 'Accounting +#. Dimension Filter' +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Allow Or Restrict Dimension" +msgstr "" + +#. Label of the allow_overtime (Check) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow Overtime" +msgstr "" + +#. Label of the allow_partial_payment (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Allow Partial Payment" +msgstr "" + +#. Label of the allow_production_on_holidays (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow Production on Holidays" +msgstr "" + +#. Label of the is_purchase_item (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow Purchase" +msgstr "" + +#. Label of the allow_zero_qty_in_purchase_order (Check) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allow Purchase Order with Zero Quantity" +msgstr "" + +#. Label of the allow_zero_qty_in_quotation (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow Quotation with zero quantity" +msgstr "" + +#. Label of the allow_rename_attribute_value (Check) field in DocType 'Item +#. Variant Settings' +#: erpnext/controllers/item_variant.py:211 +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Allow Rename Attribute Value" +msgstr "" + +#. Label of the allow_zero_qty_in_request_for_quotation (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allow Request for Quotation with Zero Quantity" +msgstr "" + +#. Label of the allow_resetting_service_level_agreement (Check) field in +#. DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Allow Resetting Service Level Agreement" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:785 +msgid "Allow Resetting Service Level Agreement from Support Settings." +msgstr "" + +#. Label of the is_sales_item (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow Sales" +msgstr "" + +#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field +#. in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow Sales Order creation for expired Quotation" +msgstr "" + +#. Label of the allow_zero_qty_in_sales_order (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow Sales Order with zero quantity" +msgstr "" + +#. Label of the allow_stale (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Allow Stale Exchange Rates" +msgstr "" + +#. Label of the allow_zero_qty_in_supplier_quotation (Check) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allow Supplier Quotation with Zero Quantity" +msgstr "" + +#. Label of the allow_uom_with_conversion_rate_defined_in_item (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow UOM with conversion rate defined in Item" +msgstr "" + +#. Label of the allow_discount_change (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Allow User to Edit Discount" +msgstr "" + +#. Label of the allow_rate_change (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Allow User to Edit Rate" +msgstr "" + +#. Label of the allow_warehouse_change (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Allow User to Edit Warehouse" +msgstr "" + +#. Label of the allow_different_uom (Check) field in DocType 'Item Variant +#. Settings' +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Allow Variant UOM to be different from Template UOM" +msgstr "" + +#. Label of the allow_zero_rate (Check) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Allow Zero Rate" +msgstr "" + +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'POS Invoice +#. Item' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Purchase +#. Invoice Item' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Sales +#. Invoice Item' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Delivery +#. Note Item' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Purchase +#. Receipt Item' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Stock Entry +#. Detail' +#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Allow Zero Valuation Rate" +msgstr "" + +#. Label of the allow_delivery_of_overproduced_qty (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow delivery of overproduced quantity" +msgstr "" + +#. Label of the editable_price_list_rate (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow editing Price List rate in transactions" +msgstr "" + +#. Label of the allow_existing_serial_no (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow existing Serial No to be Manufactured/Received again" +msgstr "" + +#. Label of the allow_internal_transfer_at_arms_length_price (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow internal transfers at user-defined rate" +msgstr "" + +#. Description of the 'Allow Continuous Material Consumption' (Check) field in +#. DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow material consumptions without immediately manufacturing finished goods against a Work Order" +msgstr "" + +#. Label of the allow_multi_currency_invoices_against_single_party_account +#. (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Allow multi-currency invoices against single party account " +msgstr "" + +#. Label of the allow_against_multiple_purchase_orders (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow multiple Sales Orders against a customer's Purchase Order" +msgstr "" + +#. Label of the allow_negative_rates_for_items (Check) field in DocType 'Buying +#. Settings' +#. Label of the allow_negative_rates_for_items (Check) field in DocType +#. 'Selling Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow negative rates for Items" +msgstr "" + +#. Label of the allow_negative_stock (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow negative stock" +msgstr "" + +#. Label of the allow_negative_stock_for_batch (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow negative stock for Batch" +msgstr "" + +#. Label of the allow_partial_reservation (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow partial reservation" +msgstr "" + +#. Label of the allow_purchase_invoice_creation_without_purchase_order (Check) +#. field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Allow purchase invoice creation without purchase order" +msgstr "" + +#. Label of the allow_purchase_invoice_creation_without_purchase_receipt +#. (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Allow purchase invoice creation without purchase receipt" +msgstr "" + +#. Label of the dn_required (Check) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Allow sales invoice creation without delivery note" +msgstr "" + +#. Label of the so_required (Check) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Allow sales invoice creation without sales order" +msgstr "" + +#. Description of the 'Zero-Quantity Line Items' (Section Break) field in +#. DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow sales transactions with zero quantities if the rate is fixed but the quantities are not. e.g. Rate Contracts" +msgstr "" + +#. Label of the allow_multiple_items (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Allow same Item to be added multiple times in a transaction" +msgstr "" + +#. Description of the 'Allow Negative Stock' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow stock to go below zero for this item, even if negative stock is disabled in Stock Settings." +msgstr "" + +#. Description of the 'Allow Alternative Item' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow substituting this item with an alternative from the Item Alternative list when stock is unavailable." +msgstr "" + +#. Description of the 'Allow Purchase' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow this item to be used in purchase transactions." +msgstr "" + +#. Description of the 'Allow Sales' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Allow this item to be used in sales transactions." +msgstr "" + +#. Label of the allow_to_edit_stock_uom_qty_for_purchase (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow to edit stock UOM qty for Purchase documents" +msgstr "" + +#. Label of the allow_to_edit_stock_uom_qty_for_sales (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow to edit stock UOM qty for Sales documents" +msgstr "" + +#. Label of the allow_to_edit_stock_uom_qty_for_stock_entry (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow to edit stock UOM qty for Stock Entry" +msgstr "" + +#. Label of the allow_to_make_quality_inspection_after_purchase_or_delivery +#. (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allow to make Quality Inspection after Purchase / Delivery" +msgstr "" + +#. Description of the 'Allow Excess Material Transfer' (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Allow transferring raw materials even after the Required Quantity is fulfilled" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json +msgid "Allowed Dimension" +msgstr "" + +#. Label of the repost_allowed_types (Table) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Allowed DocTypes" +msgstr "" + +#. Group in Supplier's connections +#. Group in Customer's connections +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Allowed Items" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json +msgid "Allowed To Transact With" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:81 +msgid "Allowed special characters are '/' and '-'" +msgstr "" + +#. Label of the companies (Table) field in DocType 'Supplier' +#. Label of the companies (Table) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Allowed to transact with" +msgstr "" + +#. Description of the 'Enable stock reservation' (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Allows to keep aside a specific quantity of inventory for a particular order." +msgstr "" + +#. Description of the 'Allow Purchase Order with Zero Quantity' (Check) field +#. in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allows users to submit Purchase Orders with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts." +msgstr "" + +#. Description of the 'Allow Request for Quotation with Zero Quantity' (Check) +#. field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allows users to submit Request for Quotations with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts." +msgstr "" + +#. Description of the 'Allow Supplier Quotation with Zero Quantity' (Check) +#. field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Allows users to submit Supplier Quotations with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +msgid "Already Imported" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:1081 +msgid "Already Picked" +msgstr "" + +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Already record exists for the item {0}" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 +msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:38 +msgid "Also you can't switch back to FIFO after setting the valuation method to Moving Average for this item." +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:644 +msgid "Alt UOM" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:291 +#: erpnext/manufacturing/doctype/work_order/work_order.js:158 +#: erpnext/manufacturing/doctype/work_order/work_order.js:173 +#: erpnext/public/js/utils.js:587 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:339 +msgid "Alternate Item" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:427 +msgid "Alternative For Item" +msgstr "" + +#. Label of the alternative_item_code (Link) field in DocType 'Item +#. Alternative' +#: erpnext/stock/doctype/item_alternative/item_alternative.json +msgid "Alternative Item Code" +msgstr "" + +#. Label of the alternative_item_name (Read Only) field in DocType 'Item +#. Alternative' +#: erpnext/stock/doctype/item_alternative/item_alternative.json +msgid "Alternative Item Name" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.js:379 +msgid "Alternative Items" +msgstr "" + +#: erpnext/stock/doctype/item_alternative/item_alternative.py:40 +msgid "Alternative item must not be same as item code" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:383 +msgid "Alternatively, you can download the template and fill your data in." +msgstr "" + +#. Option for the 'Action on New Invoice' (Select) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Always Ask" +msgstr "" + +#. Label of the amount (Currency) field in DocType 'Advance Payment Ledger +#. Entry' +#. Label of the tax_amount (Currency) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the amount (Data) field in DocType 'Bank Clearance Detail' +#. Label of the amount (Currency) field in DocType 'Bank Guarantee' +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the amount (Currency) field in DocType 'Budget Distribution' +#. Label of the amount (Float) field in DocType 'Cashier Closing Payments' +#. Label of the sec_break1 (Section Break) field in DocType 'Journal Entry +#. Account' +#. Label of the payment_amounts_section (Section Break) field in DocType +#. 'Payment Entry' +#. Label of the amount (Currency) field in DocType 'Payment Ledger Entry' +#. Label of the amount (Currency) field in DocType 'Payment Order Reference' +#. Label of the amount (Currency) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the amount (Currency) field in DocType 'Payment Reconciliation +#. Invoice' +#. Label of the amount (Currency) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the amount (Currency) field in DocType 'Payment Reference' +#. Label of the grand_total (Currency) field in DocType 'Payment Request' +#. Option for the 'Discount Type' (Select) field in DocType 'Payment Schedule' +#. Option for the 'Discount Type' (Select) field in DocType 'Payment Term' +#. Option for the 'Discount Type' (Select) field in DocType 'Payment Terms +#. Template Detail' +#. Label of the amount (Currency) field in DocType 'POS Closing Entry Taxes' +#. Option for the 'Margin Type' (Select) field in DocType 'POS Invoice Item' +#. Label of the amount (Currency) field in DocType 'POS Invoice Item' +#. Label of the grand_total (Currency) field in DocType 'POS Invoice Reference' +#. Option for the 'Margin Type' (Select) field in DocType 'Pricing Rule' +#. Label of the amount (Currency) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the amount (Currency) field in DocType 'Purchase Invoice Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Purchase Invoice +#. Item' +#. Label of the tax_amount (Currency) field in DocType 'Purchase Taxes and +#. Charges' +#. Option for the 'Margin Type' (Select) field in DocType 'Sales Invoice Item' +#. Label of the amount (Currency) field in DocType 'Sales Invoice Item' +#. Label of the amount (Currency) field in DocType 'Sales Invoice Payment' +#. Label of the grand_total (Currency) field in DocType 'Sales Invoice +#. Reference' +#. Label of the tax_amount (Currency) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the amount (Currency) field in DocType 'Share Balance' +#. Label of the amount (Currency) field in DocType 'Share Transfer' +#. Label of the amount (Currency) field in DocType 'Asset Capitalization +#. Service Item' +#. Label of the amount (Currency) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the amount (Currency) field in DocType 'Purchase Order Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Purchase Order Item' +#. Label of the amount (Currency) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the amount (Currency) field in DocType 'Supplier Quotation Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Supplier Quotation +#. Item' +#. Label of the amount (Currency) field in DocType 'Opportunity Item' +#. Label of the amount (Currency) field in DocType 'Prospect Opportunity' +#. Label of the amount_section (Section Break) field in DocType 'BOM Creator +#. Item' +#. Label of the amount (Currency) field in DocType 'BOM Creator Item' +#. Label of the amount (Currency) field in DocType 'BOM Explosion Item' +#. Label of the amount (Currency) field in DocType 'BOM Item' +#. Label of the amount (Currency) field in DocType 'Work Order Additional Item' +#. Label of the amount (Currency) field in DocType 'Work Order Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Quotation Item' +#. Label of the amount (Currency) field in DocType 'Quotation Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Sales Order Item' +#. Label of the amount (Currency) field in DocType 'Sales Order Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Delivery Note Item' +#. Label of the amount (Currency) field in DocType 'Delivery Note Item' +#. Label of the amount (Currency) field in DocType 'Landed Cost Item' +#. Label of the amount (Currency) field in DocType 'Landed Cost Taxes and +#. Charges' +#. Option for the 'Distribute Charges Based On' (Select) field in DocType +#. 'Landed Cost Voucher' +#. Label of the amount (Currency) field in DocType 'Material Request Item' +#. Label of the amount (Currency) field in DocType 'Purchase Receipt Item' +#. Option for the 'Margin Type' (Select) field in DocType 'Purchase Receipt +#. Item' +#. Label of the amount (Currency) field in DocType 'Stock Entry Detail' +#. Label of the amount (Currency) field in DocType 'Stock Reconciliation Item' +#. Label of the amount (Currency) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Option for the 'Distribute Additional Costs Based On ' (Select) field in +#. DocType 'Subcontracting Order' +#. Label of the amount (Currency) field in DocType 'Subcontracting Order Item' +#. Label of the amount (Currency) field in DocType 'Subcontracting Order +#. Service Item' +#. Label of the amount (Currency) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Option for the 'Distribute Additional Costs Based On ' (Select) field in +#. DocType 'Subcontracting Receipt' +#. Label of the amount (Currency) field in DocType 'Subcontracting Receipt +#. Item' +#. Label of the amount (Currency) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:169 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:327 +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx:57 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:895 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1181 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1242 +#: banking/src/components/features/BankReconciliation/SelectedTransactionsTable.tsx:25 +#: banking/src/pages/BankStatementImporter.tsx:189 +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/budget_distribution/budget_distribution.json +#: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:334 +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/payment_reference/payment_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:41 +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:67 +#: erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:252 +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:10 +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:48 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:79 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:416 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:44 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:273 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:327 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:201 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:111 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:44 +#: erpnext/accounts/report/share_balance/share_balance.py:61 +#: erpnext/accounts/report/share_ledger/share_ledger.py:57 +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:74 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:277 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/selling/doctype/quotation/quotation.js:315 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:52 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:53 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:301 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:164 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:43 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:66 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:118 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:156 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:71 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/templates/form_grid/bank_reconciliation_grid.html:4 +#: erpnext/templates/form_grid/item_grid.html:9 +#: erpnext/templates/form_grid/stock_entry_grid.html:11 +#: erpnext/templates/pages/order.html:103 erpnext/templates/pages/rfq.html:46 +msgid "Amount" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:35 +msgid "Amount (AED)" +msgstr "" + +#. Label of the base_amount (Currency) field in DocType 'Advance Payment Ledger +#. Entry' +#. Label of the base_tax_amount (Currency) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the amount (Currency) field in DocType 'Payment Entry Deduction' +#. Label of the base_amount (Currency) field in DocType 'POS Invoice Item' +#. Label of the base_amount (Currency) field in DocType 'Purchase Invoice Item' +#. Label of the base_tax_amount (Currency) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the base_amount (Currency) field in DocType 'Sales Invoice Item' +#. Label of the base_tax_amount (Currency) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the base_amount (Currency) field in DocType 'Purchase Order Item' +#. Label of the base_amount (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the base_amount (Currency) field in DocType 'Opportunity Item' +#. Label of the base_amount (Currency) field in DocType 'BOM Item' +#. Label of the base_amount (Currency) field in DocType 'Quotation Item' +#. Label of the base_amount (Currency) field in DocType 'Sales Order Item' +#. Label of the base_amount (Currency) field in DocType 'Delivery Note Item' +#. Label of the base_amount (Currency) field in DocType 'Landed Cost Taxes and +#. Charges' +#. Label of the amount (Currency) field in DocType 'Landed Cost Vendor Invoice' +#. Label of the base_amount (Currency) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +#: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Amount (Company Currency)" +msgstr "" + +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:325 +msgid "Amount Delivered" +msgstr "" + +#. Label of the amount_difference (Currency) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Amount Difference" +msgstr "" + +#. Label of the amount_difference_with_purchase_invoice (Currency) field in +#. DocType 'Purchase Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Amount Difference with Purchase Invoice" +msgstr "" + +#. Label of the amount_eligible_for_commission (Currency) field in DocType 'POS +#. Invoice' +#. Label of the amount_eligible_for_commission (Currency) field in DocType +#. 'Sales Invoice' +#. Label of the amount_eligible_for_commission (Currency) field in DocType +#. 'Sales Order' +#. Label of the amount_eligible_for_commission (Currency) field in DocType +#. 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Amount Eligible for Commission" +msgstr "" + +#. Label of the amount_in_figure (Column Break) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Amount In Figure" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Amount column has \"CR\"/\"DR\" values" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Amount column has positive/negative values" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:896 +msgid "Amount does not match the selected transaction" +msgstr "" + +#. Label of the amount_in_account_currency (Currency) field in DocType 'Payment +#. Ledger Entry' +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:212 +msgid "Amount in Account Currency" +msgstr "" + +#. Description of the 'Outstanding Amount' (Currency) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Amount in party's bank account currency" +msgstr "" + +#. Description of the 'Amount' (Currency) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Amount in transaction currency" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:74 +msgid "Amount in {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:896 +msgid "Amount matches the selected transaction" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:191 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:220 +msgid "Amount to Bill" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1255 +msgid "Amount {0} {1} adjusted against {2} {3}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1266 +msgid "Amount {0} {1} as adjustment to {2}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1230 +msgid "Amount {0} {1} transferred from {2} to {3}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1236 +msgid "Amount {0} {1} {2} {3}" +msgstr "" + +#. Label of the amounts_section (Section Break) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Amounts" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ampere" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ampere-Hour" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ampere-Minute" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ampere-Second" +msgstr "" + +#: erpnext/controllers/trends.py:288 erpnext/controllers/trends.py:300 +#: erpnext/controllers/trends.py:309 +msgid "Amt" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/item_group/item_group.json +msgid "An Item Group is a way to classify items based on types." +msgstr "" + +#. Description of the 'Notify by email on creation of automatic Material +#. Request' (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +msgid "An error has been appeared while reposting item valuation via {0}" +msgstr "" + +#: erpnext/public/js/controllers/buying.js:378 +#: erpnext/public/js/utils/sales_common.js:489 +msgid "An error occurred during the update process" +msgstr "" + +#: erpnext/stock/reorder_item.py:368 +msgid "An error occurred for certain Items while creating Material Requests based on Re-order level. Please rectify these issues :" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:124 +msgid "Analysis Chart" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:4 +msgid "Analyst" +msgstr "" + +#. Label of the analytics_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Analytical Accounting" +msgstr "" + +#: erpnext/public/js/utils.js:184 +msgid "Annual Billing: {0}" +msgstr "" + +#: erpnext/controllers/budget_controller.py:453 +msgid "Annual Budget for Account {0} against {1} {2} is {3}. It will be collectively ({4}) exceeded by {5}" +msgstr "" + +#: erpnext/controllers/budget_controller.py:318 +msgid "Annual Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}" +msgstr "" + +#. Label of the expense_year_to_date (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Annual Expenses" +msgstr "" + +#. Label of the income_year_to_date (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Annual Income" +msgstr "" + +#. Label of the annual_revenue (Currency) field in DocType 'Lead' +#. Label of the annual_revenue (Currency) field in DocType 'Opportunity' +#. Label of the annual_revenue (Currency) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Annual Revenue" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:145 +msgid "Another Budget record '{0}' already exists against {1} '{2}' and account '{3}' with overlapping fiscal years." +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:107 +msgid "Another Cost Center Allocation record {0} applicable from {1}, hence this allocation will be applicable upto {2}" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:1044 +msgid "Another Payment Request is already processed" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.py:123 +msgid "Another Sales Person {0} exists with the same Employee id" +msgstr "" + +#. Option for the 'Transaction Type' (Select) field in DocType 'Bank +#. Transaction Rule' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Any" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:49 +msgid "Any debit transaction with the keyword 'Bank Fee'." +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:37 +msgid "Any one of following filters required: warehouse, Item Code, Item Group" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:6 +msgid "Apparel & Accessories" +msgstr "" + +#. Label of the applicable_charges (Currency) field in DocType 'Landed Cost +#. Item' +#. Label of the sec_break1 (Section Break) field in DocType 'Landed Cost +#. Voucher' +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Applicable Charges" +msgstr "" + +#. Label of the dimensions (Table) field in DocType 'Accounting Dimension +#. Filter' +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Applicable Dimension" +msgstr "" + +#. Description of the 'Holiday List' (Link) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Applicable Holiday List" +msgstr "" + +#. Label of the applicable_modules_section (Section Break) field in DocType +#. 'Terms and Conditions' +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +msgid "Applicable Modules" +msgstr "" + +#. Label of the accounts (Table) field in DocType 'Accounting Dimension Filter' +#. Name of a DocType +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +#: erpnext/accounts/doctype/applicable_on_account/applicable_on_account.json +msgid "Applicable On Account" +msgstr "" + +#. Label of the to_designation (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Applicable To (Designation)" +msgstr "" + +#. Label of the to_emp (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Applicable To (Employee)" +msgstr "" + +#. Label of the system_role (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Applicable To (Role)" +msgstr "" + +#. Label of the system_user (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Applicable To (User)" +msgstr "" + +#. Label of the countries (Table) field in DocType 'Price List' +#: erpnext/stock/doctype/price_list/price_list.json +msgid "Applicable for Countries" +msgstr "" + +#. Label of the section_break_15 (Section Break) field in DocType 'POS Profile' +#. Label of the applicable_for_users (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Applicable for Users" +msgstr "" + +#. Description of the 'Transporter' (Link) field in DocType 'Driver' +#: erpnext/setup/doctype/driver/driver.json +msgid "Applicable for external driver" +msgstr "" + +#: erpnext/regional/italy/setup.py:162 +msgid "Applicable if the company is SpA, SApA or SRL" +msgstr "" + +#: erpnext/regional/italy/setup.py:171 +msgid "Applicable if the company is a limited liability company" +msgstr "" + +#: erpnext/regional/italy/setup.py:122 +msgid "Applicable if the company is an Individual or a Proprietorship" +msgstr "" + +#. Label of the applicable_on_cumulative_expense (Check) field in DocType +#. 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Applicable on Cumulative Expense" +msgstr "" + +#. Label of the applicable_on_material_request (Check) field in DocType +#. 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Applicable on Material Request" +msgstr "" + +#. Label of the applicable_on_purchase_order (Check) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Applicable on Purchase Order" +msgstr "" + +#. Label of the applicable_on_booking_actual_expenses (Check) field in DocType +#. 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Applicable on booking actual expenses" +msgstr "" + +#. Description of the 'Allow Partial Payment' (Check) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Applicable only on Transactions made using POS" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:10 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:10 +msgid "Application of Funds (Assets)" +msgstr "" + +#: erpnext/templates/includes/order/order_taxes.html:70 +msgid "Applied Coupon Code" +msgstr "" + +#. Description of the 'Minimum Value' (Float) field in DocType 'Quality +#. Inspection Reading' +#. Description of the 'Maximum Value' (Float) field in DocType 'Quality +#. Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Applied on each reading." +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +msgid "Applied putaway rules." +msgstr "" + +#. Label of the applies_to (Table) field in DocType 'Common Code' +#: erpnext/edi/doctype/common_code/common_code.json +msgid "Applies To" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:284 +msgid "Applies to deposits" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:284 +msgid "Applies to withdrawals" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:284 +msgid "Applies to withdrawals and deposits" +msgstr "" + +#. Label of the apply_discount_on (Select) field in DocType 'POS Invoice' +#. Label of the apply_discount_on (Select) field in DocType 'Purchase Invoice' +#. Label of the apply_discount_on (Select) field in DocType 'Sales Invoice' +#. Label of the apply_additional_discount (Select) field in DocType +#. 'Subscription' +#. Label of the apply_discount_on (Select) field in DocType 'Purchase Order' +#. Label of the apply_discount_on (Select) field in DocType 'Supplier +#. Quotation' +#. Label of the apply_discount_on (Select) field in DocType 'Quotation' +#. Label of the apply_discount_on (Select) field in DocType 'Sales Order' +#. Label of the apply_discount_on (Select) field in DocType 'Delivery Note' +#. Label of the apply_discount_on (Select) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Apply Additional Discount On" +msgstr "" + +#. Label of the apply_discount_on (Select) field in DocType 'POS Profile' +#. Label of the apply_discount_on (Select) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Apply Discount On" +msgstr "" + +#. Label of the apply_discount_on_rate (Check) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:190 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:199 +msgid "Apply Discount on Discounted Rate" +msgstr "" + +#. Label of the apply_discount_on_rate (Check) field in DocType 'Promotional +#. Scheme Price Discount' +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "Apply Discount on Rate" +msgstr "" + +#. Label of the apply_multiple_pricing_rules (Check) field in DocType 'Pricing +#. Rule' +#. Label of the apply_multiple_pricing_rules (Check) field in DocType +#. 'Promotional Scheme Price Discount' +#. Label of the apply_multiple_pricing_rules (Check) field in DocType +#. 'Promotional Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Apply Multiple Pricing Rules" +msgstr "" + +#. Label of the apply_on (Select) field in DocType 'Pricing Rule' +#. Label of the apply_on (Select) field in DocType 'Promotional Scheme' +#. Label of the document_type (Link) field in DocType 'Service Level Agreement' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Apply On" +msgstr "" + +#. Label of the apply_putaway_rule (Check) field in DocType 'Purchase Receipt' +#. Label of the apply_putaway_rule (Check) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Apply Putaway Rule" +msgstr "" + +#. Label of the apply_recursion_over (Float) field in DocType 'Pricing Rule' +#. Label of the apply_recursion_over (Float) field in DocType 'Promotional +#. Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Apply Recursion Over (As Per Transaction UOM)" +msgstr "" + +#. Label of the brands (Table) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Apply Rule On Brand" +msgstr "" + +#. Label of the items (Table) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Apply Rule On Item Code" +msgstr "" + +#. Label of the item_groups (Table) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Apply Rule On Item Group" +msgstr "" + +#. Label of the apply_rule_on_other (Select) field in DocType 'Pricing Rule' +#. Label of the apply_rule_on_other (Select) field in DocType 'Promotional +#. Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Apply Rule On Other" +msgstr "" + +#. Label of the apply_sla_for_resolution (Check) field in DocType 'Service +#. Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Apply SLA for Resolution Time" +msgstr "" + +#. Description of the 'Enable Discounts and Margin' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Apply discounts and margins on products" +msgstr "" + +#. Label of the apply_restriction_on_values (Check) field in DocType +#. 'Accounting Dimension Filter' +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Apply restriction on dimension values" +msgstr "" + +#. Label of the apply_to_all_doctypes (Check) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Apply to All Inventory Documents" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Apply to Document" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/workspace_sidebar/crm.json +msgid "Appointment" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Appointment Booking Settings" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json +msgid "Appointment Booking Slots" +msgstr "" + +#: erpnext/crm/doctype/appointment/appointment.py:95 +msgid "Appointment Confirmation" +msgstr "" + +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment Created Successfully" +msgstr "" + +#. Label of the appointment_details_section (Section Break) field in DocType +#. 'Appointment Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Appointment Details" +msgstr "" + +#. Label of the appointment_duration (Int) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Appointment Duration (In Minutes)" +msgstr "" + +#: erpnext/www/book_appointment/index.py:23 +msgid "Appointment Scheduling Disabled" +msgstr "" + +#: erpnext/www/book_appointment/index.py:24 +msgid "Appointment Scheduling has been disabled for this site" +msgstr "" + +#. Label of the appointment_with (Link) field in DocType 'Appointment' +#: erpnext/crm/doctype/appointment/appointment.json +msgid "Appointment With" +msgstr "" + +#: erpnext/crm/doctype/appointment/appointment.py:101 +msgid "Appointment was created. But no lead was found. Please check the email to confirm" +msgstr "" + +#. Label of the approving_role (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Approving Role (above authorized value)" +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:77 +msgid "Approving Role cannot be same as role the rule is Applicable To" +msgstr "" + +#. Label of the approving_user (Link) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Approving User (above authorized value)" +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:75 +msgid "Approving User cannot be same as user the rule is Applicable To" +msgstr "" + +#. Description of the 'Enable Fuzzy Matching' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Approximately match the description/party name against parties" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Are" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:379 +msgid "Are you sure you want to cancel this {} {}?" +msgstr "" + +#: erpnext/public/js/utils/demo.js:17 +msgid "Are you sure you want to clear all demo data?" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 +msgid "Are you sure you want to delete this Item?" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list.js:18 +msgid "Are you sure you want to delete {0}?

            This action will also delete all associated Common Code documents.

            " +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:81 +msgid "Are you sure you want to restart this subscription?" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.js:83 +msgid "Are you sure you want to revise this budget? The current budget will be cancelled and a new draft will be created." +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:379 +msgid "Are you sure you want to unmatch the voucher from this transaction?" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:41 +msgid "Are you sure you want to unreconcile this transaction?" +msgstr "" + +#. Label of the area (Float) field in DocType 'Location' +#. Name of a UOM +#: erpnext/assets/doctype/location/location.json +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Area" +msgstr "" + +#. Label of the area_uom (Link) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Area UOM" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:438 +msgid "Arrival Quantity" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Arshin" +msgstr "" + +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:57 +#: erpnext/stock/report/stock_ageing/stock_ageing.js:16 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:30 +msgid "As On Date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:198 +msgctxt "Do MMM YYYY" +msgid "As of {0}" +msgstr "" + +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:123 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:123 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js:15 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:15 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js:15 +msgid "As on Date" +msgstr "" + +#. Description of the 'Finished Good Quantity ' (Float) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "As per Stock UOM" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:189 +msgid "As the field {0} is enabled, the field {1} is mandatory." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:197 +msgid "As the field {0} is enabled, the value of the field {1} should be more than 1." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1096 +msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there are reserved stock, you cannot disable {0}." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 +msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:224 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:236 +msgid "As {0} is enabled, you can not enable {1}." +msgstr "" + +#. Label of the po_items (Table) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Assembly Items" +msgstr "" + +#. Option for the 'Root Type' (Select) field in DocType 'Account' +#. Option for the 'Root Type' (Select) field in DocType 'Account Category' +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge' +#. Label of the asset (Link) field in DocType 'POS Invoice Item' +#. Label of the asset (Link) field in DocType 'Sales Invoice Item' +#. Name of a DocType +#. Label of the asset (Link) field in DocType 'Asset Activity' +#. Label of the asset (Link) field in DocType 'Asset Capitalization Asset Item' +#. Label of the asset (Link) field in DocType 'Asset Depreciation Schedule' +#. Label of the asset (Link) field in DocType 'Asset Movement Item' +#. Label of the asset (Link) field in DocType 'Asset Repair' +#. Label of the asset (Link) field in DocType 'Asset Shift Allocation' +#. Label of the asset (Link) field in DocType 'Asset Value Adjustment' +#. Label of a Link in the Assets Workspace +#. Label of the asset (Link) field in DocType 'Serial No' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/account_balance/account_balance.js:25 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_activity/asset_activity.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:192 +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset" +msgstr "" + +#. Label of the asset_account (Link) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "Asset Account" +msgstr "" + +#. Name of a DocType +#. Name of a report +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset_activity/asset_activity.json +#: erpnext/assets/report/asset_activity/asset_activity.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Activity" +msgstr "" + +#. Group in Asset's connections +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Capitalization" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +msgid "Asset Capitalization Asset Item" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +msgid "Asset Capitalization Service Item" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +msgid "Asset Capitalization Stock Item" +msgstr "" + +#. Label of the asset_category (Link) field in DocType 'Purchase Invoice Item' +#. Label of the asset_category (Link) field in DocType 'Asset' +#. Name of a DocType +#. Label of the asset_category (Read Only) field in DocType 'Asset Maintenance' +#. Label of the asset_category (Read Only) field in DocType 'Asset Value +#. Adjustment' +#. Label of a Link in the Assets Workspace +#. Label of the asset_category (Link) field in DocType 'Item' +#. Label of the asset_category (Link) field in DocType 'Purchase Receipt Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_category/asset_category.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:23 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:482 +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Category" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +msgid "Asset Category Account" +msgstr "" + +#. Label of the asset_category_name (Data) field in DocType 'Asset Category' +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Asset Category Name" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:375 +msgid "Asset Category is mandatory for Fixed Asset item" +msgstr "" + +#. Label of the depreciation_cost_center (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Asset Depreciation Cost Center" +msgstr "" + +#. Name of a report +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Depreciation Ledger" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "Asset Depreciation Schedule" +msgstr "" + +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:178 +msgid "Asset Depreciation Schedule for Asset {0} and Finance Book {1} is not using shift based depreciation" +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:249 +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:184 +msgid "Asset Depreciation Schedule not found for Asset {0} and Finance Book {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:82 +msgid "Asset Depreciation Schedule {0} for Asset {1} already exists." +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:76 +msgid "Asset Depreciation Schedule {0} for Asset {1} and Finance Book {2} already exists." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:235 +msgid "Asset Depreciation Schedules created/updated:
            {0}

            Please check, edit if needed, and submit the Asset." +msgstr "" + +#. Name of a report +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Depreciations and Balances" +msgstr "" + +#. Label of the asset_details (Section Break) field in DocType 'Serial No' +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Asset Details" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Asset Disposal" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Asset Finance Book" +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:474 +msgid "Asset ID" +msgstr "" + +#. Label of the asset_location (Link) field in DocType 'Purchase Invoice Item' +#. Label of the asset_location (Link) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Asset Location" +msgstr "" + +#. Name of a DocType +#. Label of the asset_maintenance (Link) field in DocType 'Asset Maintenance +#. Log' +#. Name of a report +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log_calendar.js:18 +#: erpnext/assets/report/asset_maintenance/asset_maintenance.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Maintenance" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Maintenance Log" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Asset Maintenance Task" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Maintenance Team" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:203 +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Movement" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +msgid "Asset Movement Item" +msgstr "" + +#. Label of the asset_name (Data) field in DocType 'Asset' +#. Label of the target_asset_name (Data) field in DocType 'Asset +#. Capitalization' +#. Label of the asset_name (Data) field in DocType 'Asset Capitalization Asset +#. Item' +#. Label of the asset_name (Link) field in DocType 'Asset Maintenance' +#. Label of the asset_name (Read Only) field in DocType 'Asset Maintenance Log' +#. Label of the asset_name (Data) field in DocType 'Asset Movement Item' +#. Label of the asset_name (Read Only) field in DocType 'Asset Repair' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:480 +msgid "Asset Name" +msgstr "" + +#. Label of the asset_naming_series (Select) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Asset Naming Series" +msgstr "" + +#. Label of the asset_owner (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Asset Owner" +msgstr "" + +#. Label of the asset_owner_company (Link) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Asset Owner Company" +msgstr "" + +#. Label of the asset_quantity (Int) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Asset Quantity" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284 +#: erpnext/accounts/report/account_balance/account_balance.js:38 +#: erpnext/setup/doctype/company/company.json +msgid "Asset Received But Not Billed" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and +#. Batch Bundle' +#. Label of the asset_repair (Link) field in DocType 'Stock Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset/asset.js:108 +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Repair" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +msgid "Asset Repair Consumed Item" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json +msgid "Asset Repair Purchase Invoice" +msgstr "" + +#. Label of the asset_settings_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Asset Settings" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json +msgid "Asset Shift Allocation" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.json +msgid "Asset Shift Factor" +msgstr "" + +#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.py:32 +msgid "Asset Shift Factor {0} is set as default currently. Please change it first." +msgstr "" + +#. Label of the asset_status (Select) field in DocType 'Serial No' +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Asset Status" +msgstr "" + +#. Label of the asset_type (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Asset Type" +msgstr "" + +#. Label of the asset_value (Currency) field in DocType 'Asset Capitalization +#. Asset Item' +#: erpnext/assets/dashboard_fixtures.py:180 +#: erpnext/assets/doctype/asset/asset.js:512 +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:208 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:457 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:504 +msgid "Asset Value" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Assets Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset/asset.js:100 +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Asset Value Adjustment" +msgstr "" + +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:53 +msgid "Asset Value Adjustment cannot be posted before Asset's purchase date {0}." +msgstr "" + +#. Label of a chart in the Assets Workspace +#: erpnext/assets/dashboard_fixtures.py:56 +#: erpnext/assets/workspace/assets/assets.json +msgid "Asset Value Analytics" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:277 +msgid "Asset cancelled" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:735 +msgid "Asset cannot be cancelled, as it is already {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:400 +msgid "Asset cannot be scrapped before the last depreciation entry." +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:472 +msgid "Asset capitalized after Asset Capitalization {0} was submitted" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:286 +msgid "Asset created" +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:259 +msgid "Asset created after being split from Asset {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:289 +msgid "Asset deleted" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:177 +msgid "Asset issued to Employee {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:178 +msgid "Asset out of order due to Asset Repair {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:164 +msgid "Asset received at Location {0} and issued to Employee {1}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:462 +msgid "Asset restored" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:480 +msgid "Asset restored after Asset Capitalization {0} was cancelled" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:121 +msgid "Asset returned" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:448 +msgid "Asset scrapped" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:450 +msgid "Asset scrapped via Journal Entry {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:121 +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:124 +msgid "Asset sold" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:264 +msgid "Asset submitted" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:172 +msgid "Asset transferred to Location {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:268 +msgid "Asset updated after being split into Asset {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:335 +msgid "Asset updated due to Asset Repair {0} {1}." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:382 +msgid "Asset {0} cannot be scrapped, as it is already {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:193 +msgid "Asset {0} does not belong to Item {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:45 +msgid "Asset {0} does not belong to company {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:105 +msgid "Asset {0} does not belong to the custodian {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:77 +msgid "Asset {0} does not belong to the location {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:521 +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:612 +msgid "Asset {0} does not exist" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:447 +msgid "Asset {0} has been updated. Please set the depreciation details if any and submit it." +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:74 +msgid "Asset {0} is in {1} status and cannot be repaired." +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:95 +msgid "Asset {0} is not set to calculate depreciation." +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:101 +msgid "Asset {0} is not submitted. Please submit the asset before proceeding." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:380 +msgid "Asset {0} must be submitted" +msgstr "" + +#: erpnext/controllers/buying_controller.py:1039 +msgid "Asset {assets_link} created for {item_code}" +msgstr "" + +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:222 +msgid "Asset's depreciation schedule updated after Asset Shift Allocation {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:81 +msgid "Asset's value adjusted after cancellation of Asset Value Adjustment {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:71 +msgid "Asset's value adjusted after submission of Asset Value Adjustment {0}" +msgstr "" + +#. Label of the assets_tab (Tab Break) field in DocType 'Accounts Settings' +#. Label of the asset_items (Table) field in DocType 'Asset Capitalization' +#. Label of the assets (Table) field in DocType 'Asset Movement' +#. Name of a Workspace +#. Label of a Card Break in the Assets Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json +#: erpnext/workspace_sidebar/assets.json +msgid "Assets" +msgstr "" + +#. Title of the Module Onboarding 'Asset Onboarding' +#: erpnext/assets/module_onboarding/asset_onboarding/asset_onboarding.json +msgid "Assets Setup" +msgstr "" + +#: erpnext/controllers/buying_controller.py:1057 +msgid "Assets not created for {item_code}. You will have to create asset manually." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1044 +msgid "Assets {assets_link} created for {item_code}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +msgid "Assign Job to Employee" +msgstr "" + +#. Label of the assign_to_name (Read Only) field in DocType 'Asset Maintenance +#. Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Assign to Name" +msgstr "" + +#. Label of the filters_section (Section Break) field in DocType 'Service Level +#. Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Assignment Conditions" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:5 +msgid "Associate" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:136 +msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} for the batch {4} in the warehouse {5}. Please restock the item." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:161 +msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 +msgid "At least one account with exchange gain or loss is required" +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:169 +msgid "At least one asset has to be selected." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +msgid "At least one invoice has to be selected." +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:169 +msgid "At least one item should be entered with negative quantity in return document" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:535 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:195 +msgid "At least one mode of payment is required for POS invoice." +msgstr "" + +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.py:35 +msgid "At least one of the Applicable Modules should be selected" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:204 +msgid "At least one of the Selling or Buying must be selected" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 +msgid "At least one raw material item must be present in the stock entry for the type {0}" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:27 +msgid "At least one row is required for a financial report template" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:164 +msgid "At row #{0}: the Difference Account must not be a Stock type account..." +msgstr "" + +#: erpnext/manufacturing/doctype/routing/routing.py:50 +msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:175 +msgid "At row #{0}: you have selected the Difference Account {1}..." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +msgid "At row {0}: Batch No is mandatory for Item {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:129 +msgid "At row {0}: Parent Row No cannot be set for item {1}" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +msgid "At row {0}: Qty is mandatory for the batch {1}" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +msgid "At row {0}: Serial No is mandatory for Item {1}" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:498 +msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 +msgid "At row {0}: set Parent Row No for item {1}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Atmosphere" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:256 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:73 +msgid "Attach CSV File" +msgstr "" + +#. Description of the 'File to Rename' (Attach) field in DocType 'Rename Tool' +#: erpnext/utilities/doctype/rename_tool/rename_tool.json +msgid "Attach a comma separated .csv file with two columns, one for the old name and one for the new name." +msgstr "" + +#. Label of the import_file (Attach) field in DocType 'Chart of Accounts +#. Importer' +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +msgid "Attach custom Chart of Accounts file" +msgstr "" + +#. Label of the attendance_and_leave_details (Tab Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Attendance & Leaves" +msgstr "" + +#. Label of the attendance_device_id (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Attendance Device ID (Biometric/RF tag ID)" +msgstr "" + +#. Label of the attribute (Link) field in DocType 'Website Attribute' +#. Label of the attribute (Link) field in DocType 'Item Variant Attribute' +#: erpnext/portal/doctype/website_attribute/website_attribute.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Attribute" +msgstr "" + +#. Label of the attribute_name (Data) field in DocType 'Item Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +msgid "Attribute Name" +msgstr "" + +#. Label of the attribute_value (Data) field in DocType 'Item Attribute Value' +#. Label of the attribute_value (Data) field in DocType 'Item Variant +#. Attribute' +#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Attribute Value" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:886 +msgid "Attribute Value {0} is not valid for the selected attribute {1}." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1032 +msgid "Attribute table is mandatory" +msgstr "" + +#: erpnext/stock/doctype/item_attribute/item_attribute.py:107 +msgid "Attribute value: {0} must appear only once" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:875 +msgid "Attribute {0} is disabled." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:863 +msgid "Attribute {0} is not valid for the selected template." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1036 +msgid "Attribute {0} selected multiple times in Attributes Table" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:964 +msgid "Attributes" +msgstr "" + +#. Name of a role +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/finance_book/finance_book.json +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json +#: erpnext/setup/doctype/company/company.json +msgid "Auditor" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py:67 +msgid "Authentication Failed" +msgstr "" + +#. Label of the authorised_by_section (Section Break) field in DocType +#. 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Authorised By" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/authorization_control/authorization_control.json +msgid "Authorization Control" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Authorization Rule" +msgstr "" + +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:27 +msgid "Authorized Signatory" +msgstr "" + +#. Label of the value (Float) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Authorized Value" +msgstr "" + +#. Label of the auto_exchange_rate_revaluation (Check) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Auto Create Exchange Rate Revaluation" +msgstr "" + +#. Label of the auto_created (Check) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "Auto Created" +msgstr "" + +#. Label of the auto_created_via_reorder (Check) field in DocType 'Material +#. Request' +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Auto Created (Reorder)" +msgstr "" + +#. Label of the auto_created_serial_and_batch_bundle (Check) field in DocType +#. 'Stock Ledger Entry' +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Auto Created Serial and Batch Bundle" +msgstr "" + +#. Label of the auto_creation_of_contact (Check) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Auto Creation of Contact" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:380 +msgid "Auto Fetch" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_details.js:228 +msgid "Auto Fetch Serial Numbers" +msgstr "" + +#. Label of the auto_material_request (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto Material Request" +msgstr "" + +#: erpnext/stock/reorder_item.py:319 +msgid "Auto Material Requests Generated" +msgstr "" + +#. Label of the auto_opt_in (Check) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Auto Opt In (For all customers)" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:66 +msgid "Auto Reconcile" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1034 +msgid "Auto Reconciliation" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:982 +msgid "Auto Reconciliation has started in the background" +msgstr "" + +#. Label of the auto_reconciliation_job_trigger (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Auto Reconciliation job trigger" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:153 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:201 +msgid "Auto Reconciliation of Payments has been disabled. Enable it through {0}" +msgstr "" + +#. Label of the subscription_detail (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Auto Repeat Detail" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +msgid "Auto Tax Settings Error" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:166 +msgid "Auto User Creation Error" +msgstr "" + +#. Description of the 'Close Replied Opportunity After Days' (Int) field in +#. DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Auto close Opportunity Replied after the no. of days mentioned above" +msgstr "" + +#. Label of the auto_create_purchase_receipt (Check) field in DocType 'Buying +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Auto create Purchase Receipt" +msgstr "" + +#. Label of the auto_create_serial_and_batch_bundle_for_outward (Check) field +#. in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto create Serial and Batch Bundle for outward" +msgstr "" + +#. Label of the auto_create_subcontracting_order (Check) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Auto create Subcontracting Order" +msgstr "" + +#. Label of the auto_create_assets (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Auto create assets on purchase" +msgstr "" + +#. Label of the auto_insert_price_list_rate_if_missing (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto insert Item Price if missing" +msgstr "" + +#. Description of the 'Enable Automatic Party Matching' (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Auto match and set the Party in Bank Transactions" +msgstr "" + +#. Label of the reorder_section (Section Break) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Auto re-order" +msgstr "" + +#. Label of the auto_reconcile_payments (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Auto reconcile Payments" +msgstr "" + +#: erpnext/public/js/controllers/buying.js:373 +#: erpnext/public/js/utils/sales_common.js:484 +msgid "Auto repeat document updated" +msgstr "" + +#. Label of the auto_reserve_serial_and_batch (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto reserve Serial and Batch Nos" +msgstr "" + +#. Label of the auto_reserve_stock_for_sales_order_on_purchase (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto reserve Stock for Sales Order on Purchase" +msgstr "" + +#. Label of the auto_reserve_stock (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Auto reserve stock" +msgstr "" + +#. Description of the 'Write Off Limit' (Currency) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Auto write off precision loss while consolidation" +msgstr "" + +#. Label of the auto_add_item_to_cart (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Automatically Add Filtered Item To Cart" +msgstr "" + +#. Label of the create_new_batch (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Automatically Create New Batch" +msgstr "" + +#. Label of the add_taxes_from_item_tax_template (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Automatically add Taxes and Charges from Item Tax Template" +msgstr "" + +#. Label of the add_taxes_from_taxes_and_charges_template (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Automatically add taxes from Taxes and Charges Template" +msgstr "" + +#. Label of the automatically_fetch_payment_terms (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Automatically fetch Payment Terms from Order/Quotation" +msgstr "" + +#. Label of the automatically_post_balancing_accounting_entry (Check) field in +#. DocType 'Accounting Dimension Detail' +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Automatically post balancing accounting entry" +msgstr "" + +#. Label of the automatically_process_deferred_accounting_entry (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Automatically process deferred Accounting entry" +msgstr "" + +#. Label of the automatically_run_rules_on_unreconciled_transactions (Check) +#. field in DocType 'Accounts Settings' +#: banking/src/components/features/Settings/Preferences.tsx:84 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Automatically run rules on unreconciled transactions" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:7 +msgid "Automotive" +msgstr "" + +#. Label of the availability_of_slots (Table) field in DocType 'Appointment +#. Booking Settings' +#. Name of a DocType +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json +msgid "Availability Of Slots" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:513 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:387 +msgid "Available" +msgstr "" + +#. Label of the available__future_inventory_section (Section Break) field in +#. DocType 'Bin' +#: erpnext/stock/doctype/bin/bin.json +msgid "Available / Future Inventory" +msgstr "" + +#. Label of the actual_batch_qty (Float) field in DocType 'Delivery Note Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Available Batch Qty at From Warehouse" +msgstr "" + +#. Label of the actual_batch_qty (Float) field in DocType 'POS Invoice Item' +#. Label of the actual_batch_qty (Float) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Available Batch Qty at Warehouse" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/available_batch_report/available_batch_report.json +msgid "Available Batch Report" +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:491 +msgid "Available For Use Date" +msgstr "" + +#. Label of the available_qty_section (Section Break) field in DocType +#. 'Delivery Note Item' +#. Label of the available_quantity_section (Section Break) field in DocType +#. 'Pick List Item' +#: erpnext/manufacturing/doctype/workstation/workstation.js:505 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 +#: erpnext/public/js/utils.js:647 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/report/stock_ageing/stock_ageing.py:216 +msgid "Available Qty" +msgstr "" + +#. Label of the required_qty (Float) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the available_qty_for_consumption (Float) field in DocType +#. 'Subcontracting Receipt Supplied Item' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Available Qty For Consumption" +msgstr "" + +#. Label of the company_total_stock (Float) field in DocType 'Purchase Order +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "Available Qty at Company" +msgstr "" + +#. Label of the available_qty_at_source_warehouse (Float) field in DocType +#. 'Work Order Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Available Qty at Source Warehouse" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Purchase Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "Available Qty at Target Warehouse" +msgstr "" + +#. Label of the available_qty_at_wip_warehouse (Float) field in DocType 'Work +#. Order Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Available Qty at WIP Warehouse" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'POS Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +msgid "Available Qty at Warehouse" +msgstr "" + +#. Label of the available_qty (Float) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.py:138 +msgid "Available Qty to Reserve" +msgstr "" + +#. Label of the available_quantity_section (Section Break) field in DocType +#. 'Sales Invoice Item' +#. Label of the available_quantity_section (Section Break) field in DocType +#. 'Quotation Item' +#. Label of the available_quantity_section (Section Break) field in DocType +#. 'Sales Order Item' +#. Label of the qty (Float) field in DocType 'Quick Stock Balance' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +msgid "Available Quantity" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/available_serial_no/available_serial_no.json +msgid "Available Serial No" +msgstr "" + +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:38 +msgid "Available Stock" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Available Stock for Packing Items" +msgstr "" + +#. Label of the available_for_use_date (Date) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Available for Use Date" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:382 +msgid "Available for use date is required" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:251 +msgid "Available {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:491 +msgid "Available-for-use Date should be after purchase date" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.py:217 +#: erpnext/stock/report/stock_ageing/stock_ageing.py:251 +#: erpnext/stock/report/stock_balance/stock_balance.py:591 +msgid "Average Age" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:124 +msgid "Average Completion" +msgstr "" + +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Average Discount" +msgstr "" + +#. Label of a number card in the Selling Workspace +#: erpnext/selling/workspace/selling/selling.json +msgid "Average Order Value" +msgstr "" + +#. Label of a number card in the Buying Workspace +#: erpnext/buying/workspace/buying/buying.json +msgid "Average Order Values" +msgstr "" + +#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry' +#: erpnext/accounts/report/share_balance/share_balance.py:60 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Average Rate" +msgstr "" + +#. Label of the avg_response_time (Duration) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Average Response Time" +msgstr "" + +#. Description of the 'Lead Time in days' (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Average time taken by the supplier to deliver" +msgstr "" + +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:63 +msgid "Avg Daily Outgoing" +msgstr "" + +#. Label of the avg_rate (Float) field in DocType 'Serial and Batch Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Avg Rate" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:154 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:368 +msgid "Avg Rate (Balance Stock)" +msgstr "" + +#: erpnext/stock/report/item_variant_details/item_variant_details.py:96 +msgid "Avg. Buying Price List Rate" +msgstr "" + +#: erpnext/stock/report/item_variant_details/item_variant_details.py:102 +msgid "Avg. Selling Price List Rate" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:347 +msgid "Avg. Selling Rate" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "B+" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "B-" +msgstr "" + +#. Option for the 'Algorithm' (Select) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "BFS" +msgstr "" + +#. Label of the bin_qty_section (Section Break) field in DocType 'Material +#. Request Plan Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "BIN Qty" +msgstr "" + +#. Option for the 'Backflush raw materials of subcontract based on' (Select) +#. field in DocType 'Buying Settings' +#. Label of the bom (Link) field in DocType 'Purchase Order Item' +#. Name of a DocType +#. Option for the 'Based On' (Select) field in DocType 'BOM' +#. Option for the 'Backflush Raw Materials Based On' (Select) field in DocType +#. 'Manufacturing Settings' +#. Label of the bom_section (Section Break) field in DocType 'Manufacturing +#. Settings' +#. Label of the bom (Link) field in DocType 'Work Order Operation' +#. Label of a Link in the Manufacturing Workspace +#. Label of the bom (Link) field in DocType 'Subcontracting Inward Order Item' +#. Label of the bom (Link) field in DocType 'Subcontracting Order Item' +#. Label of the bom (Link) field in DocType 'Subcontracting Receipt Item' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom/bom_tree.js:8 +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:209 +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1496 +#: erpnext/stock/doctype/material_request/material_request.js:351 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:805 +#: erpnext/stock/report/bom_search/bom_search.py:38 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:524 +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM" +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:21 +msgid "BOM 1" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/mapper.py:82 +msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 +msgid "BOM 2" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:4 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM Comparison Tool" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:178 +msgid "BOM Component" +msgstr "" + +#. Label of the bom_conf_tab (Tab Break) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "BOM Configuration" +msgstr "" + +#. Label of the bom_created (Check) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "BOM Created" +msgstr "" + +#. Label of the bom_creator (Link) field in DocType 'BOM' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM Creator" +msgstr "" + +#. Label of the bom_creator_item (Data) field in DocType 'BOM' +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "BOM Creator Item" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:392 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:535 +msgid "BOM Creator Item with name {0} does not exist" +msgstr "" + +#. Label of the bom_detail_no (Data) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the bom_detail_no (Data) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the bom_detail_no (Data) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the bom_detail_no (Data) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "BOM Detail No" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.json +msgid "BOM Explorer" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +msgid "BOM Explosion Item" +msgstr "" + +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:20 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:101 +msgid "BOM ID" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "BOM Item" +msgstr "" + +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:71 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:174 +msgid "BOM Level" +msgstr "" + +#. Label of the bom_no (Link) field in DocType 'BOM Item' +#. Label of the bom_no (Link) field in DocType 'BOM Operation' +#. Label of the bom_no (Link) field in DocType 'Master Production Schedule +#. Item' +#. Label of the bom_no (Link) field in DocType 'Production Plan Item' +#. Label of the bom_no (Link) field in DocType 'Production Plan Sub Assembly +#. Item' +#. Label of the bom_no (Link) field in DocType 'Work Order' +#. Label of the bom_no (Link) field in DocType 'Sales Order Item' +#. Label of the bom_no (Link) field in DocType 'Material Request Item' +#. Label of the bom_no (Link) field in DocType 'Quality Inspection' +#. Label of the bom_no (Link) field in DocType 'Stock Entry' +#. Label of the bom_no (Link) field in DocType 'Stock Entry Detail' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:8 +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:31 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1083 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "BOM No" +msgstr "" + +#. Label of the bom_no (Link) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "BOM No (For Semi-Finished Goods)" +msgstr "" + +#. Description of the 'BOM No' (Link) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "BOM No. for a Finished Good Item" +msgstr "" + +#. Name of a DocType +#. Label of the operations (Table) field in DocType 'Routing' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/routing/routing.json +msgid "BOM Operation" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM Operations Time" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:248 +msgid "BOM Output" +msgstr "" + +#: erpnext/stock/report/item_prices/item_prices.py:60 +msgid "BOM Rate" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/report/bom_search/bom_search.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM Search" +msgstr "" + +#. Name of a DocType +#. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/report/item_where_used/item_where_used.py:213 +msgid "BOM Secondary Item" +msgstr "" + +#. Label of the bom_secondary_item (Data) field in DocType 'Job Card Secondary +#. Item' +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +msgid "BOM Secondary Item Reference" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.json +msgid "BOM Stock Analysis" +msgstr "" + +#. Label of the tab_2_tab (Tab Break) field in DocType 'BOM Creator' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "BOM Tree" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json +msgid "BOM Update Batch" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:84 +msgid "BOM Update Initiated" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +msgid "BOM Update Log" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "BOM Update Tool" +msgstr "" + +#. Description of a DocType +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +msgid "BOM Update Tool Log with job status maintained" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:102 +msgid "BOM Updation already in progress. Please wait until {0} is complete." +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json +msgid "BOM Variance Report" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json +msgid "BOM Website Item" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json +msgid "BOM Website Operation" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:250 +msgid "BOM and Finished Good Quantity is mandatory for Disassembly" +msgstr "" + +#. Label of the bom_and_work_order_tab (Tab Break) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "BOM and Production" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:386 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:857 +msgid "BOM does not contain any stock item" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py:85 +msgid "BOM recursion: {0} cannot be child of {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:766 +msgid "BOM recursion: {1} cannot be parent or child of {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1401 +msgid "BOM {0} does not belong to Item {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1396 +msgid "BOM {0} must be active" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1399 +msgid "BOM {0} must be submitted" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:839 +msgid "BOM {0} not found for the item {1}" +msgstr "" + +#. Label of the boms_updated (Long Text) field in DocType 'BOM Update Batch' +#: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json +msgid "BOMs Updated" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:314 +msgid "BOMs created successfully" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:324 +msgid "BOMs creation failed" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:264 +msgid "BOMs creation has been enqueued, kindly check the status after some time" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:347 +msgid "Backdated Stock Entry" +msgstr "" + +#. Label of the backflush_from_wip_warehouse (Check) field in DocType 'BOM +#. Operation' +#. Label of the backflush_from_wip_warehouse (Check) field in DocType 'Job +#. Card' +#. Label of the backflush_from_wip_warehouse (Check) field in DocType 'Work +#. Order Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:379 +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Backflush Materials From WIP Warehouse" +msgstr "" + +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:16 +msgid "Backflush Raw Materials" +msgstr "" + +#. Label of the backflush_raw_materials_based_on (Select) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Backflush Raw Materials Based On" +msgstr "" + +#. Label of the from_wip_warehouse (Check) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Backflush Raw Materials From Work-in-Progress Warehouse" +msgstr "" + +#. Label of the backflush_raw_materials_of_subcontract_based_on (Select) field +#. in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Backflush raw materials of subcontract based on" +msgstr "" + +#. Label of the balance (Currency) field in DocType 'Bank Account Balance' +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:310 +#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/report/account_balance/account_balance.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.html:168 +#: erpnext/accounts/report/purchase_register/purchase_register.py:244 +#: erpnext/accounts/report/sales_register/sales_register.py:278 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:71 +msgid "Balance" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:40 +msgid "Balance (Dr - Cr)" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +msgid "Balance ({0})" +msgstr "" + +#. Label of the balance_in_account_currency (Currency) field in DocType +#. 'Exchange Rate Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Balance In Account Currency" +msgstr "" + +#. Label of the balance_in_base_currency (Currency) field in DocType 'Exchange +#. Rate Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Balance In Base Currency" +msgstr "" + +#: erpnext/stock/report/available_batch_report/available_batch_report.py:62 +#: erpnext/stock/report/available_serial_no/available_serial_no.py:126 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84 +#: erpnext/stock/report/stock_balance/stock_balance.py:517 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:331 +msgid "Balance Qty" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:635 +msgid "Balance Qty (Alt UOM)" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:71 +msgid "Balance Qty (Stock)" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:144 +msgid "Balance Serial No" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Account' +#. Option for the 'Report Type' (Select) field in DocType 'Financial Report +#. Template' +#. Option for the 'Report Type' (Select) field in DocType 'Process Period +#. Closing Voucher Detail' +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of the column_break_16 (Column Break) field in DocType 'Email Digest' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +#: erpnext/accounts/report/balance_sheet/balance_sheet.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/public/js/financial_statements.js:327 +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Balance Sheet" +msgstr "" + +#. Label of the bs_closing_balance (JSON) field in DocType 'Process Period +#. Closing Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "Balance Sheet Closing Balance" +msgstr "" + +#. Label of the balance_sheet_summary (Heading) field in DocType 'Bisect +#. Accounting Statements' +#. Label of the balance_sheet_summary (Float) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Balance Sheet Summary" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 +msgid "Balance Stock Qty" +msgstr "" + +#. Label of the stock_value (Currency) field in DocType 'Stock Closing Balance' +#. Label of the stock_value (Currency) field in DocType 'Stock Ledger Entry' +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Balance Stock Value" +msgstr "" + +#. Label of the balance_type (Select) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Balance Type" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:174 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86 +#: erpnext/stock/report/stock_balance/stock_balance.py:525 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:388 +msgid "Balance Value" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:347 +msgid "Balance for Account {0} must always be {1}" +msgstr "" + +#. Label of the balance_must_be (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Balance must be" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:305 +msgctxt "Do MMM YYYY" +msgid "Balances as per bank statement before {0}" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Name of a DocType +#. Label of the bank (Link) field in DocType 'Bank Account' +#. Label of the bank (Link) field in DocType 'Bank Guarantee' +#. Label of the bank (Link) field in DocType 'Bank Statement Import' +#. Option for the 'Type' (Select) field in DocType 'Mode of Payment' +#. Label of the bank (Read Only) field in DocType 'Payment Entry' +#. Label of the company_bank (Link) field in DocType 'Payment Order' +#. Label of the bank (Link) field in DocType 'Payment Request' +#. Label of a Link in the Invoicing Workspace +#. Option for the 'Salary Mode' (Select) field in DocType 'Employee' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/report/account_balance/account_balance.js:39 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank" +msgstr "" + +#. Label of the bank_cash_account (Link) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Bank / Cash Account" +msgstr "" + +#. Label of the bank_ac_no (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Bank A/C No." +msgstr "" + +#. Name of a DocType +#. Label of the bank_account (Link) field in DocType 'Bank Account Balance' +#. Label of the bank_account (Link) field in DocType 'Bank Clearance' +#. Label of the bank_account (Link) field in DocType 'Bank Guarantee' +#. Label of the bank_account (Link) field in DocType 'Bank Reconciliation Tool' +#. Label of the bank_account (Link) field in DocType 'Bank Statement Import' +#. Label of the bank_account (Link) field in DocType 'Bank Statement Import +#. Log' +#. Label of the bank_account (Link) field in DocType 'Bank Transaction' +#. Label of the bank_account (Link) field in DocType 'Invoice Discounting' +#. Label of the bank_account (Link) field in DocType 'Journal Entry Account' +#. Label of the bank_account (Link) field in DocType 'Payment Order Reference' +#. Label of the bank_account (Link) field in DocType 'Payment Request' +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:141 +#: banking/src/pages/BankStatementImporter.tsx:90 +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.js:21 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:16 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.js:16 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Account" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json +msgid "Bank Account Balance" +msgstr "" + +#. Label of the bank_account_details (Section Break) field in DocType 'Payment +#. Order Reference' +#. Label of the bank_account_details (Section Break) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Bank Account Details" +msgstr "" + +#. Label of the bank_account_info (Section Break) field in DocType 'Bank +#. Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Bank Account Info" +msgstr "" + +#. Label of the bank_account_no (Data) field in DocType 'Bank Account' +#. Label of the bank_account_no (Data) field in DocType 'Bank Guarantee' +#. Label of the bank_account_no (Read Only) field in DocType 'Payment Entry' +#. Label of the bank_account_no (Read Only) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Bank Account No" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Account Subtype" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Account Type" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 +msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 +msgid "Bank Accounts" +msgstr "" + +#. Label of the bank_balance (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Bank Balance" +msgstr "" + +#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224 +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Bank Charges" +msgstr "" + +#. Label of the bank_charges_account (Link) field in DocType 'Invoice +#. Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Bank Charges Account" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:34 +msgid "Bank Charges, Salary, etc." +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Clearance" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +msgid "Bank Clearance Detail" +msgstr "" + +#. Name of a report +#: banking/src/pages/BankReconciliation.tsx:119 +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.json +msgid "Bank Clearance Summary" +msgstr "" + +#. Label of the credit_balance (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Bank Credit Balance" +msgstr "" + +#. Label of the bank_details_section (Section Break) field in DocType 'Bank' +#. Label of the bank_details_section (Section Break) field in DocType +#. 'Employee' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank/bank_dashboard.py:7 +#: erpnext/setup/doctype/employee/employee.json +msgid "Bank Details" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:260 +msgid "Bank Draft" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:97 +msgid "Bank Entries Created" +msgstr "" + +#. Option for the 'Classify As' (Select) field in DocType 'Bank Transaction +#. Rule' +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:90 +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:299 +#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:17 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:478 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:571 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:269 +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:14 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Bank Entry" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:319 +msgid "Bank Entry Created" +msgstr "" + +#. Label of the bank_entry_type (Select) field in DocType 'Bank Transaction +#. Rule' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Bank Entry Type" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:212 +msgid "Bank Fee, Salary, etc." +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Guarantee" +msgstr "" + +#. Label of the bank_guarantee_number (Data) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Bank Guarantee Number" +msgstr "" + +#. Label of the bg_type (Select) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Bank Guarantee Type" +msgstr "" + +#. Label of the bank_name (Data) field in DocType 'Bank' +#. Label of the bank_name (Data) field in DocType 'Cheque Print Template' +#. Label of the bank_name (Data) field in DocType 'Employee' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +#: erpnext/setup/doctype/employee/employee.json +msgid "Bank Name" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314 +msgid "Bank Overdraft Account" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/banking.json +msgid "Bank Reconciliation" +msgstr "" + +#. Name of a report +#. Label of a Link in the Invoicing Workspace +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:208 +#: banking/src/pages/BankReconciliation.tsx:117 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:1 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Bank Reconciliation Statement" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Bank Reconciliation Tool" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:99 +msgid "Bank Statement" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:290 +msgid "Bank Statement Balance as per General Ledger" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Bank Statement Import" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Bank Statement Import Log" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Bank Statement Import Log Column Map" +msgstr "" + +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:44 +msgid "Bank Statement balance as per General Ledger" +msgstr "" + +#. Name of a DocType +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:35 +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:32 +msgid "Bank Transaction" +msgstr "" + +#. Label of the bank_transaction_mapping (Table) field in DocType 'Bank' +#. Name of a DocType +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.json +msgid "Bank Transaction Mapping" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +msgid "Bank Transaction Payments" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Bank Transaction Rule" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +msgid "Bank Transaction Rule Accounts" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json +msgid "Bank Transaction Rule Description Conditions" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:508 +msgid "Bank Transaction {0} Matched" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:557 +msgid "Bank Transaction {0} added as Journal Entry" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:532 +msgid "Bank Transaction {0} added as Payment Entry" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:161 +msgid "Bank Transaction {0} is already fully reconciled" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:577 +msgid "Bank Transaction {0} updated" +msgstr "" + +#: banking/src/pages/BankReconciliation.tsx:118 +msgid "Bank Transactions" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +msgid "Bank account cannot be named as {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:700 +msgid "Bank account credit for withdrawal" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:683 +msgid "Bank account debit for deposit" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +msgid "Bank account {0} already exists and could not be created again" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:158 +msgid "Bank accounts added" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:78 +msgid "Bank statement imported." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +msgid "Bank transaction creation error" +msgstr "" + +#. Label of the bank_cash_account (Link) field in DocType 'Process Payment +#. Reconciliation' +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "Bank/Cash Account" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:60 +msgid "Bank/Cash Account {0} doesn't belong to company {1}" +msgstr "" + +#. Label of the banking_section (Section Break) field in DocType 'Accounts +#. Settings' +#. Label of a Card Break in the Invoicing Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: banking/src/pages/BankReconciliation.tsx:57 +#: banking/src/pages/BankReconciliation.tsx:87 +#: banking/src/pages/BankStatementImporterContainer.tsx:22 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/desktop_icon/banking.json +#: erpnext/setup/setup_wizard/data/industry_type.txt:8 +#: erpnext/workspace_sidebar/banking.json +msgid "Banking" +msgstr "" + +#. Label of the barcode_type (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "Barcode Type" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:545 +msgid "Barcode {0} already used in Item {1}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:560 +msgid "Barcode {0} is not a valid {1} code" +msgstr "" + +#. Label of the sb_barcodes (Section Break) field in DocType 'Item' +#. Label of the barcodes (Table) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Barcodes" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Barleycorn" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Barrel (Oil)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Barrel(Beer)" +msgstr "" + +#. Label of the base_amount (Currency) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Base Amount" +msgstr "" + +#. Label of the base_amount (Currency) field in DocType 'Sales Invoice Payment' +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +msgid "Base Amount (Company Currency)" +msgstr "" + +#. Label of the base_change_amount (Currency) field in DocType 'POS Invoice' +#. Label of the base_change_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Base Change Amount (Company Currency)" +msgstr "" + +#. Label of the base_cost (Currency) field in DocType 'BOM Secondary Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +msgid "Base Cost (Company Currency)" +msgstr "" + +#. Label of the base_cost_per_unit (Float) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Base Cost Per Unit" +msgstr "" + +#. Label of the base_hour_rate (Currency) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Base Hour Rate(Company Currency)" +msgstr "" + +#. Label of the base_rate (Currency) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Base Rate" +msgstr "" + +#. Label of the withholding_amount (Currency) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Base Tax Withheld" +msgstr "" + +#. Label of the taxable_amount (Currency) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Base Taxable Amount" +msgstr "" + +#. Label of the base_total_billable_amount (Currency) field in DocType +#. 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Base Total Billable Amount" +msgstr "" + +#. Label of the base_total_billed_amount (Currency) field in DocType +#. 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Base Total Billed Amount" +msgstr "" + +#. Label of the base_total_costing_amount (Currency) field in DocType +#. 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Base Total Costing Amount" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:46 +msgid "Based On Data ( in years )" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:30 +msgid "Based On Document" +msgstr "" + +#. Label of the based_on_payment_terms (Check) field in DocType 'Process +#. Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:131 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:108 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:153 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:126 +msgid "Based On Payment Terms" +msgstr "" + +#. Option for the 'Subscription Price Based On' (Select) field in DocType +#. 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Based On Price List" +msgstr "" + +#. Label of the based_on_value (Dynamic Link) field in DocType 'Party Specific +#. Item' +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +msgid "Based On Value" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:427 +msgid "Based on the above entries, the balance amount (debit or credit) will be set for the last row to balance the journal entry." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:60 +msgid "Based on your HR Policy, select your leave allocation period's end date" +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:55 +msgid "Based on your HR Policy, select your leave allocation period's start date" +msgstr "" + +#. Label of the basic_amount (Currency) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Basic Amount" +msgstr "" + +#. Label of the base_rate (Currency) field in DocType 'BOM Item' +#. Label of the base_rate (Currency) field in DocType 'Sales Order Item' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Basic Rate (Company Currency)" +msgstr "" + +#. Label of the basic_rate (Currency) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Basic Rate (as per Stock UOM)" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80 +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:418 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:32 +#: erpnext/stock/workspace/stock/stock.json +msgid "Batch" +msgstr "" + +#. Label of the description (Small Text) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Batch Description" +msgstr "" + +#. Label of the sb_batch (Section Break) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Batch Details" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:217 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:469 +msgid "Batch Expiry Date" +msgstr "" + +#. Label of the batch_id (Data) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Batch ID" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:129 +msgid "Batch ID is mandatory" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Batch Item Expiry Status" +msgstr "" + +#. Label of the section_break_gnhq (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Batch Item settings" +msgstr "" + +#. Label of the batch_no (Link) field in DocType 'POS Invoice Item' +#. Label of the batch_no (Link) field in DocType 'Purchase Invoice Item' +#. Label of the batch_no (Link) field in DocType 'Sales Invoice Item' +#. Label of the batch_no (Link) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the batch_no (Link) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the batch_no (Link) field in DocType 'Job Card' +#. Label of the batch_no (Link) field in DocType 'Delivery Note Item' +#. Label of the batch_no (Link) field in DocType 'Item Price' +#. Label of the batch_no (Link) field in DocType 'Packed Item' +#. Label of the batch_no (Link) field in DocType 'Packing Slip Item' +#. Label of the batch_no (Link) field in DocType 'Pick List Item' +#. Label of the batch_no (Link) field in DocType 'Purchase Receipt Item' +#. Label of the batch_no (Link) field in DocType 'Quality Inspection' +#. Label of the batch_no (Link) field in DocType 'Serial and Batch Entry' +#. Label of the batch_no (Link) field in DocType 'Serial No' +#. Label of the batch_no (Link) field in DocType 'Stock Closing Balance' +#. Label of the batch_no (Link) field in DocType 'Stock Entry Detail' +#. Label of the batch_no (Data) field in DocType 'Stock Ledger Entry' +#. Label of the batch_no (Link) field in DocType 'Stock Reconciliation Item' +#. Label of the batch_no (Link) field in DocType 'Subcontracting Receipt Item' +#. Label of the batch_no (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 +#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/public/js/utils/barcode_scanner.js:281 +#: erpnext/public/js/utils/serial_no_batch_selector.js:450 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/available_batch_report/available_batch_report.js:64 +#: erpnext/stock/report/available_batch_report/available_batch_report.py:50 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:68 +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:33 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:81 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:162 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:19 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:462 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:77 +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/workspace_sidebar/stock.json +msgid "Batch No" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +msgid "Batch No is mandatory" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 +msgid "Batch No {0} does not exists" +msgstr "" + +#: erpnext/stock/utils.py:626 +msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:490 +msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" +msgstr "" + +#. Label of the batch_no (Int) field in DocType 'BOM Update Batch' +#: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json +msgid "Batch No." +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:16 +#: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 +msgid "Batch Nos" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2009 +msgid "Batch Nos are created successfully" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:1203 +msgid "Batch Not Available for Return" +msgstr "" + +#. Label of the batch_number_series (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Batch Number Series" +msgstr "" + +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:163 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:33 +msgid "Batch Qty" +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:126 +msgid "Batch Qty updated successfully" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:177 +msgid "Batch Qty updated to {0}" +msgstr "" + +#. Label of the batch_qty (Float) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Batch Quantity" +msgstr "" + +#. Label of the batch_size (Float) field in DocType 'BOM Operation' +#. Label of the batch_size (Int) field in DocType 'Operation' +#. Label of the batch_size (Float) field in DocType 'Work Order' +#. Label of the batch_size (Float) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:361 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Batch Size" +msgstr "" + +#. Label of the stock_uom (Link) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Batch UOM" +msgstr "" + +#. Label of the batch_and_serial_no_section (Section Break) field in DocType +#. 'Asset Capitalization Stock Item' +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +msgid "Batch and Serial No" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:746 +msgid "Batch not created for item {} since it does not have a batch series." +msgstr "" + +#. Description of the 'Automatically Create New Batch' (Check) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Batch number will be auto-created in format AAAA.00001 if not specified in transactions. Leave blank to always enter batch numbers manually." +msgstr "" + +#. Description of the 'Has Expiry Date' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Batch number will be created based on expiry date. Expiry dates can be set in the Batch master." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:384 +msgid "Batch {0} and Warehouse" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:1202 +msgid "Batch {0} is not available in warehouse {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289 +msgid "Batch {0} of Item {1} has expired." +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:93 +msgid "Batch {0} of Item {1} is disabled." +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Batch-Wise Balance History" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:164 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:183 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:86 +msgid "Batchwise Valuation" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Before reconciliation" +msgstr "" + +#. Label of the start (Int) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Begin On (Days)" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:396 +msgid "Below Subscription Plans are of different currency to the party default billing currency/Company currency: {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:211 +msgid "Below is a list of all accounting entries posted against the bank account {0} between {1} and {2}." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:251 +msgid "Below is a list of all bank transactions imported in the system for the bank account {0} between {1} and {2}." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:197 +msgid "Below is a list of all entries posted against the bank account {0} which have not been cleared till {1}." +msgstr "" + +#. Label of the bill_date (Date) field in DocType 'Journal Entry' +#. Label of the bill_date (Date) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1208 +#: erpnext/accounts/report/purchase_register/purchase_register.py:216 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Bill Date" +msgstr "" + +#. Label of the generate_new_invoices_past_due_date (Check) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Bill Even If Previous Invoice Unpaid" +msgstr "" + +#. Option for the 'Generate Invoice At' (Select) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Bill N days before period start" +msgstr "" + +#. Label of the bill_no (Data) field in DocType 'Journal Entry' +#. Label of the bill_no (Data) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1207 +#: erpnext/accounts/report/purchase_register/purchase_register.py:215 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Bill No" +msgstr "" + +#. Label of the bill_for_rejected_quantity_in_purchase_invoice (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Bill for rejected quantity in Purchase Invoice" +msgstr "" + +#. Label of a Card Break in the Manufacturing Workspace +#. Label of a Link in the Manufacturing Workspace +#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/material_request/material_request.js:139 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:791 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Bill of Materials" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Timesheet' +#: erpnext/controllers/website_list_for_contact.py:210 +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/doctype/timesheet/timesheet_list.js:9 +msgid "Billed" +msgstr "" + +#. Label of the billed_amt (Currency) field in DocType 'Purchase Order Item' +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:51 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:51 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:127 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:191 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:285 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:108 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:220 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:309 +msgid "Billed Amount" +msgstr "" + +#. Label of the billed_amt (Currency) field in DocType 'Sales Order Item' +#. Label of the billed_amt (Currency) field in DocType 'Delivery Note Item' +#. Label of the billed_amt (Currency) field in DocType 'Purchase Receipt Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Billed Amt" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.json +msgid "Billed Items To Be Received" +msgstr "" + +#. Label of the billed_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:263 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:287 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +msgid "Billed Qty" +msgstr "" + +#. Label of the section_break_56 (Section Break) field in DocType 'Purchase +#. Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "Billed, Received & Returned" +msgstr "" + +#. Option for the 'Determine Address Tax Category from' (Select) field in +#. DocType 'Accounts Settings' +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Purchase Invoice' +#. Label of the address_and_contact (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the billing_address_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the billing_address_column (Section Break) field in DocType 'Sales +#. Order' +#. Label of the contact_info (Section Break) field in DocType 'Delivery Note' +#. Label of the address_display (Text Editor) field in DocType 'Delivery Note' +#. Label of the billing_address (Link) field in DocType 'Purchase Receipt' +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Purchase Receipt' +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Billing Address" +msgstr "" + +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Purchase Order' +#. Label of the billing_address_display (Text Editor) field in DocType 'Request +#. for Quotation' +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Supplier Quotation' +#. Label of the billing_address_display (Text Editor) field in DocType +#. 'Subcontracting Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Billing Address Details" +msgstr "" + +#. Label of the customer_address (Link) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Billing Address Name" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:206 +msgid "Billing Address does not belong to the {0}" +msgstr "" + +#. Label of the billing_amount (Currency) field in DocType 'Sales Invoice +#. Timesheet' +#. Label of the billing_amount (Currency) field in DocType 'Timesheet Detail' +#. Label of the base_billing_amount (Currency) field in DocType 'Timesheet +#. Detail' +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:73 +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:50 +msgid "Billing Amount" +msgstr "" + +#. Label of the billing_city (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Billing City" +msgstr "" + +#. Label of the billing_country (Link) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Billing Country" +msgstr "" + +#. Label of the billing_county (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Billing County" +msgstr "" + +#. Label of the default_currency (Link) field in DocType 'Supplier' +#. Label of the default_currency (Link) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Billing Currency" +msgstr "" + +#: erpnext/public/js/purchase_trends_filters.js:39 +msgid "Billing Date" +msgstr "" + +#. Label of the billing_details (Section Break) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Billing Details" +msgstr "" + +#. Label of the billing_email (Data) field in DocType 'Process Statement Of +#. Accounts Customer' +#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json +msgid "Billing Email" +msgstr "" + +#. Label of the billing_heatmap (HTML) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Billing Heatmap" +msgstr "" + +#. Label of the billing_history_section (Section Break) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Billing History" +msgstr "" + +#. Label of the billing_hours (Float) field in DocType 'Sales Invoice +#. Timesheet' +#. Label of the billing_hours (Float) field in DocType 'Timesheet Detail' +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:67 +msgid "Billing Hours" +msgstr "" + +#. Label of the billing_interval (Select) field in DocType 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Billing Interval" +msgstr "" + +#. Label of the billing_interval_count (Int) field in DocType 'Subscription +#. Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Billing Interval Count" +msgstr "" + +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.py:42 +msgid "Billing Interval Count cannot be less than 1" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:445 +msgid "Billing Interval in Subscription Plan must be Month to follow calendar months" +msgstr "" + +#. Label of the billing_period_section (Section Break) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Billing Period" +msgstr "" + +#. Label of the billing_rate (Currency) field in DocType 'Activity Cost' +#. Label of the billing_rate (Currency) field in DocType 'Timesheet Detail' +#. Label of the base_billing_rate (Currency) field in DocType 'Timesheet +#. Detail' +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Billing Rate" +msgstr "" + +#. Label of the billing_state (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Billing State" +msgstr "" + +#. Label of the billing_status (Select) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_calendar.js:31 +msgid "Billing Status" +msgstr "" + +#. Label of the billing_zipcode (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Billing Zipcode" +msgstr "" + +#: erpnext/accounts/party.py:619 +msgid "Billing currency must be equal to either default company's currency or party account currency" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/bin/bin.json +msgid "Bin" +msgstr "" + +#: erpnext/stock/doctype/bin/bin.js:16 +msgid "Bin Qty Recalculated" +msgstr "" + +#. Label of the bio (Text Editor) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Bio / Cover Letter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Biot" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:9 +msgid "Biotechnology" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:156 +msgid "Birthday" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "Bisect Accounting Statements" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:9 +msgid "Bisect Left" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Bisect Nodes" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:13 +msgid "Bisect Right" +msgstr "" + +#. Label of the bisecting_from (Heading) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "Bisecting From" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:61 +msgid "Bisecting Left ..." +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:71 +msgid "Bisecting Right ..." +msgstr "" + +#. Label of the bisecting_to (Heading) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "Bisecting To" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Biweekly" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:285 +msgid "Black" +msgstr "" + +#. Option for the 'Data Source' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Blank Line" +msgstr "" + +#. Label of the blanket_order (Link) field in DocType 'Purchase Order Item' +#. Name of a DocType +#. Label of the blanket_order (Link) field in DocType 'Quotation Item' +#. Label of the blanket_order (Link) field in DocType 'Sales Order Item' +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Blanket Order" +msgstr "" + +#. Label of the blanket_order_allowance (Float) field in DocType 'Buying +#. Settings' +#. Label of the blanket_order_allowance (Float) field in DocType 'Selling +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Blanket Order Allowance (%)" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +msgid "Blanket Order Item" +msgstr "" + +#. Label of the blanket_order_rate (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the blanket_order_rate (Currency) field in DocType 'Quotation Item' +#. Label of the blanket_order_rate (Currency) field in DocType 'Sales Order +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Blanket Order Rate" +msgstr "" + +#. Label of the blanket_order_section (Section Break) field in DocType 'Buying +#. Settings' +#. Label of the blanket_orders_section (Section Break) field in DocType +#. 'Selling Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Blanket Orders" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:109 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:271 +msgid "Block Invoice" +msgstr "" + +#. Label of the on_hold (Check) field in DocType 'Supplier' +#. Label of the block_supplier_section (Section Break) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Block Supplier" +msgstr "" + +#. Description of the 'Is Frozen' (Check) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n" +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Blocks this customer from being used on any new transaction." +msgstr "" + +#. Label of the blog_subscriber (Check) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Blog Subscriber" +msgstr "" + +#. Label of the blood_group (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Blood Group" +msgstr "" + +#. Label of the body_text (Text Editor) field in DocType 'Dunning' +#. Label of the body_text (Text Editor) field in DocType 'Dunning Letter Text' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Body Text" +msgstr "" + +#. Label of the body_and_closing_text_help (HTML) field in DocType 'Dunning +#. Letter Text' +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Body and Closing Text Help" +msgstr "" + +#. Label of the bold_text (Check) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Bold Text" +msgstr "" + +#. Description of the 'Bold Text' (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Bold text for emphasis (totals, major headings)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:287 +msgid "Book Advance Payments as Liability option is chosen. Paid From account changed from {0} to {1}." +msgstr "" + +#. Label of the book_advance_payments_in_separate_party_account (Check) field +#. in DocType 'Payment Entry' +#. Label of the book_advance_payments_in_separate_party_account (Check) field +#. in DocType 'Company' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/setup/doctype/company/company.json +msgid "Book Advance Payments in Separate Party Account" +msgstr "" + +#: erpnext/www/book_appointment/index.html:3 +msgid "Book Appointment" +msgstr "" + +#. Label of the book_asset_depreciation_entry_automatically (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book Asset Depreciation entry automatically" +msgstr "" + +#. Label of the book_deferred_entries_based_on (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book Deferred entries based on" +msgstr "" + +#: erpnext/www/book_appointment/index.html:15 +msgid "Book an appointment" +msgstr "" + +#. Label of the book_deferred_entries_via_journal_entry (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book deferred entries via Journal Entry" +msgstr "" + +#. Label of the book_tax_discount_loss (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Book tax loss on early payment discount" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/shipment/shipment_list.js:5 +msgid "Booked" +msgstr "" + +#. Label of the booked_fixed_asset (Check) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Booked Fixed Asset" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:143 +msgid "Books have been closed till the period ending on {0}" +msgstr "" + +#. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Both" +msgstr "" + +#: erpnext/setup/doctype/supplier_group/supplier_group.py:57 +msgid "Both Payable Account: {0} and Advance Account: {1} must be of same currency for company: {2}" +msgstr "" + +#: erpnext/setup/doctype/customer_group/customer_group.py:62 +msgid "Both Receivable Account: {0} and Advance Account: {1} must be of same currency for company: {2}" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:415 +msgid "Both Trial Period Start Date and Trial Period End Date must be set" +msgstr "" + +#: erpnext/utilities/transaction_base.py:288 +msgid "Both {0} Account: {1} and Advance Account: {2} must be of same currency for company: {3}" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Box" +msgstr "" + +#. Label of the branch (Link) field in DocType 'SMS Center' +#. Name of a DocType +#. Label of the branch (Data) field in DocType 'Branch' +#. Label of the branch (Link) field in DocType 'Employee' +#. Label of the branch (Link) field in DocType 'Employee Internal Work History' +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/sms_center/sms_center.json +#: erpnext/setup/doctype/branch/branch.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.json +#: erpnext/workspace_sidebar/organization.json +msgid "Branch" +msgstr "" + +#. Label of the branch_code (Data) field in DocType 'Bank Account' +#. Label of the branch_code (Data) field in DocType 'Bank Guarantee' +#. Label of the branch_code (Read Only) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Branch Code" +msgstr "" + +#. Label of the brand_defaults (Table) field in DocType 'Brand' +#: erpnext/setup/doctype/brand/brand.json +msgid "Brand Defaults" +msgstr "" + +#. Label of the brand (Data) field in DocType 'POS Invoice Item' +#. Label of the brand (Data) field in DocType 'Sales Invoice Item' +#. Label of the brand (Link) field in DocType 'Sales Order Item' +#. Label of the brand (Data) field in DocType 'Brand' +#. Label of the brand (Link) field in DocType 'Delivery Note Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/setup/doctype/brand/brand.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Brand Name" +msgstr "" + +#. Option for the 'Maintenance Type' (Select) field in DocType 'Maintenance +#. Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Breakdown" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:10 +msgid "Broadcasting" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:11 +msgid "Brokerage" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:234 +msgid "Browse BOM" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu (It)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu (Mean)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu (Th)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu/Hour" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu/Minutes" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Btu/Seconds" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:101 +msgid "Bucket Size" +msgstr "" + +#. Label of the budget_section (Section Break) field in DocType 'Accounts +#. Settings' +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/cost_center/cost_center.js:45 +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:65 +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:73 +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:81 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:233 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:237 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:319 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:329 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:454 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/desktop_icon/budget.json erpnext/workspace_sidebar/budget.json +msgid "Budget" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/budget_account/budget_account.json +msgid "Budget Account" +msgstr "" + +#. Label of the budget_against (Select) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:80 +msgid "Budget Against" +msgstr "" + +#. Label of the budget_amount (Currency) field in DocType 'Budget' +#. Label of the budget_amount (Currency) field in DocType 'Budget Account' +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/budget_account/budget_account.json +msgid "Budget Amount" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:84 +msgid "Budget Amount can not be {0}." +msgstr "" + +#. Label of the budget_detail (Section Break) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Budget Detail" +msgstr "" + +#. Label of the budget_distribution (Table) field in DocType 'Budget' +#. Name of a DocType +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/budget_distribution/budget_distribution.json +msgid "Budget Distribution" +msgstr "" + +#. Label of the budget_distribution_total (Currency) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Budget Distribution Total" +msgstr "" + +#. Label of the budget_end_date (Date) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Budget End Date" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:582 +#: erpnext/accounts/doctype/budget/budget.py:584 +#: erpnext/controllers/budget_controller.py:293 +#: erpnext/controllers/budget_controller.py:296 +msgid "Budget Exceeded" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:232 +msgid "Budget Limit Exceeded" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:61 +msgid "Budget List" +msgstr "" + +#. Label of the budget_start_date (Date) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Budget Start Date" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/budget.json +msgid "Budget Variance" +msgstr "" + +#. Name of a report +#. Label of a Link in the Invoicing Workspace +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:77 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Budget Variance Report" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:160 +msgid "Budget cannot be assigned against Group Account {0}" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:165 +msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgstr "" + +#: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 +msgid "Budgets" +msgstr "" + +#. Label of the buffer_time (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Buffer Time" +msgstr "" + +#. Option for the 'Data fetch method' (Select) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Buffered Cursor" +msgstr "" + +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +msgid "Build All?" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:20 +msgid "Build Tree" +msgstr "" + +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +msgid "Buildable Qty" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107 +msgid "Buildings" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:88 +msgid "Bulk Bank Entry" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:76 +msgid "Bulk Payment" +msgstr "" + +#: erpnext/utilities/doctype/rename_tool/rename_tool.js:71 +msgid "Bulk Rename Jobs" +msgstr "" + +#. Name of a DocType +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.json +msgid "Bulk Transaction Log" +msgstr "" + +#. Name of a DocType +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "Bulk Transaction Log Detail" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:82 +msgid "Bulk Transfer" +msgstr "" + +#. Label of the packed_items (Table) field in DocType 'Quotation' +#. Label of the bundle_items_section (Section Break) field in DocType +#. 'Quotation' +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Bundle Items" +msgstr "" + +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:94 +msgid "Bundle Qty" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Bushel (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Bushel (US Dry Level)" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:6 +msgid "Business Analyst" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:7 +msgid "Business Development Manager" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Busy" +msgstr "" + +#: erpnext/stock/doctype/batch/batch_dashboard.py:8 +#: erpnext/stock/doctype/item/item_dashboard.py:22 +msgid "Buy" +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:96 +msgid "Buy & Sell" +msgstr "" + +#. Description of a DocType +#: erpnext/selling/doctype/customer/customer.json +msgid "Buyer of Goods and Services." +msgstr "" + +#. Label of the buying (Check) field in DocType 'Pricing Rule' +#. Label of the buying (Check) field in DocType 'Promotional Scheme' +#. Option for the 'Shipping Rule Type' (Select) field in DocType 'Shipping +#. Rule' +#. Group in Subscription's connections +#. Name of a Workspace +#. Label of a Card Break in the Buying Workspace +#. Label of a Desktop Icon +#. Group in Incoterm's connections +#. Label of the buying (Check) field in DocType 'Terms and Conditions' +#. Label of the buying (Check) field in DocType 'Item Price' +#. Label of the buying (Check) field in DocType 'Price List' +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/buying/workspace/buying/buying.json erpnext/desktop_icon/buying.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/stock/doctype/item/item_prices.html:98 +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/price_list/price_list.json +#: erpnext/workspace_sidebar/buying.json +msgid "Buying" +msgstr "" + +#. Label of the sales_settings (Section Break) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Buying & Selling Settings" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:368 +msgid "Buying Amount" +msgstr "" + +#. Label of the buying_cost_center (Link) field in DocType 'Item Default' +#. Label of the vf_buying_cost_center (Read Only) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Buying Cost Center" +msgstr "" + +#: erpnext/stock/report/item_price_stock/item_price_stock.py:40 +msgid "Buying Price List" +msgstr "" + +#: erpnext/stock/report/item_price_stock/item_price_stock.py:46 +msgid "Buying Rate" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of a shortcut in the ERPNext Settings Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Buying Settings" +msgstr "" + +#. Title of the Module Onboarding 'Buying Onboarding' +#: erpnext/buying/module_onboarding/buying_onboarding/buying_onboarding.json +msgid "Buying Setup" +msgstr "" + +#. Label of the buying_and_selling_tab (Tab Break) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Buying and Selling" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:219 +msgid "Buying must be checked, if Applicable For is selected as {0}" +msgstr "" + +#: erpnext/buying/doctype/buying_settings/buying_settings.js:62 +msgid "By default, the Supplier Name is set as per the Supplier Name entered. If you want Suppliers to be named by a Naming Series choose the 'Naming Series' option." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "By-Product" +msgstr "" + +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68 +msgid "Bypass credit check at Sales Order" +msgstr "" + +#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer +#. Credit Limit' +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +msgid "Bypass credit limit check at sales order" +msgstr "" + +#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "CC To" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "COA Importer" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "CODE-39" +msgstr "" + +#. Label of the default_cogs_account (Link) field in DocType 'Item Default' +#. Label of the vf_default_cogs_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "COGS Account" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.json +msgid "COGS By Item Group" +msgstr "" + +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:44 +msgid "COGS Debit" +msgstr "" + +#. Name of a Workspace +#. Label of a Desktop Icon +#. Label of a Card Break in the Home Workspace +#. Title of a Workspace Sidebar +#: erpnext/crm/workspace/crm/crm.json erpnext/desktop_icon/crm.json +#: erpnext/setup/workspace/home/home.json erpnext/workspace_sidebar/crm.json +msgid "CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/crm_note/crm_note.json +msgid "CRM Note" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/crm_settings/crm_settings.json +#: erpnext/workspace_sidebar/crm.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "CRM Settings" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122 +msgid "CWIP Account" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Caballeria" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cable Length" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cable Length (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cable Length (US)" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:73 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:28 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:102 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:28 +msgid "Calculate Ageing With" +msgstr "" + +#. Label of the calculate_based_on (Select) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Calculate Based On" +msgstr "" + +#. Label of the calculate_depreciation (Check) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Calculate Depreciation" +msgstr "" + +#. Label of the calculate_arrival_time (Button) field in DocType 'Delivery +#. Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Calculate Estimated Arrival Times" +msgstr "" + +#. Label of the editable_bundle_item_rates (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Calculate Product Bundle price based on child Item's rates" +msgstr "" + +#. Description of the 'Hidden Line (Internal Use Only)' (Check) field in +#. DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Calculate but don't show on final report" +msgstr "" + +#. Label of the calculate_depr_using_total_days (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Calculate daily depreciation using total days in depreciation period" +msgstr "" + +#. Option for the 'Data Source' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Calculated Amount" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:308 +msgid "Calculated Bank Statement Balance" +msgstr "" + +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:57 +msgid "Calculated Bank Statement balance" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.json +msgid "Calculated Discount Mismatch" +msgstr "" + +#. Label of the section_break_11 (Section Break) field in DocType 'Supplier +#. Scorecard Period' +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Calculations" +msgstr "" + +#. Label of the calendar_event (Link) field in DocType 'Appointment' +#: erpnext/crm/doctype/appointment/appointment.json +msgid "Calendar Event" +msgstr "" + +#. Option for the 'Maintenance Type' (Select) field in DocType 'Asset +#. Maintenance Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Calibration" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calibre" +msgstr "" + +#: erpnext/telephony/doctype/call_log/call_log.js:8 +msgid "Call Again" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:41 +msgid "Call Connected" +msgstr "" + +#. Label of the call_details_section (Section Break) field in DocType 'Call +#. Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Call Details" +msgstr "" + +#. Description of the 'Duration' (Duration) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Call Duration in seconds" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:48 +msgid "Call Ended" +msgstr "" + +#. Label of the call_handling_schedule (Table) field in DocType 'Incoming Call +#. Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +msgid "Call Handling Schedule" +msgstr "" + +#. Name of a DocType +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Call Log" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:45 +msgid "Call Missed" +msgstr "" + +#. Label of the call_received_by (Link) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Call Received By" +msgstr "" + +#. Label of the call_receiving_device (Select) field in DocType 'Voice Call +#. Settings' +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Call Receiving Device" +msgstr "" + +#. Label of the call_routing (Select) field in DocType 'Incoming Call Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +msgid "Call Routing" +msgstr "" + +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js:58 +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.py:48 +msgid "Call Schedule Row {0}: To time slot should always be ahead of From time slot." +msgstr "" + +#. Label of the section_break_11 (Section Break) field in DocType 'Call Log' +#: erpnext/public/js/call_popup/call_popup.js:164 +#: erpnext/telephony/doctype/call_log/call_log.json +#: erpnext/telephony/doctype/call_log/call_log.py:135 +msgid "Call Summary" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:187 +msgid "Call Summary Saved" +msgstr "" + +#. Label of the call_type (Data) field in DocType 'Telephony Call Type' +#: erpnext/telephony/doctype/telephony_call_type/telephony_call_type.json +msgid "Call Type" +msgstr "" + +#: erpnext/telephony/doctype/call_log/call_log.js:8 +msgid "Callback" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calorie (Food)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calorie (It)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calorie (Mean)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calorie (Th)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Calorie/Seconds" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Campaign Efficiency" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/campaign_email_schedule/campaign_email_schedule.json +msgid "Campaign Email Schedule" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/campaign_item/campaign_item.json +msgid "Campaign Item" +msgstr "" + +#. Label of the campaign_name (Data) field in DocType 'Campaign' +#. Option for the 'Campaign Naming By' (Select) field in DocType 'CRM Settings' +#: erpnext/crm/doctype/campaign/campaign.json +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Campaign Name" +msgstr "" + +#. Label of the campaign_naming_by (Select) field in DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Campaign Naming By" +msgstr "" + +#. Label of the campaign_schedules_section (Section Break) field in DocType +#. 'Campaign' +#. Label of the campaign_schedules (Table) field in DocType 'Campaign' +#: erpnext/crm/doctype/campaign/campaign.json +msgid "Campaign Schedules" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:113 +msgid "Campaign {0} not found" +msgstr "" + +#: erpnext/setup/doctype/authorization_control/authorization_control.py:61 +msgid "Can be approved by {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.py:133 +msgid "Can not filter based on Cashier, if grouped by Cashier" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:80 +msgid "Can not filter based on Child Account, if grouped by Account" +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.py:130 +msgid "Can not filter based on Customer, if grouped by Customer" +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.py:127 +msgid "Can not filter based on POS Profile, if grouped by POS Profile" +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.py:136 +msgid "Can not filter based on Payment Method, if grouped by Payment Method" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:83 +msgid "Can not filter based on Voucher No, if grouped by Voucher" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/mapper.py:32 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +msgid "Can only make payment against unbilled {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/accounts/services/taxes.py:242 +#: erpnext/public/js/controllers/accounts.js:103 +msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:217 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" +msgstr "" + +#: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 +msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:218 +msgid "Cancel Material Visits {0} before cancelling this Maintenance Visit" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:54 +msgid "Cancel Subscription" +msgstr "" + +#. Label of the cancel_after_grace (Check) field in DocType 'Subscription +#. Settings' +#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json +msgid "Cancel Subscription After Grace Period" +msgstr "" + +#. Label of the cancel_at_period_end (Check) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Cancel When Period Ends" +msgstr "" + +#. Label of the cancelation_date (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Cancelation Date" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +msgid "Cancelled Job Card cannot be processed." +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:76 +msgid "Cannot Assign Cashier" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot Calculate Arrival Time as Driver Address is Missing." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:236 +msgid "Cannot Change Inventory Account Setting" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:445 +msgid "Cannot Create Return" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:688 +#: erpnext/stock/doctype/item/item.py:701 +#: erpnext/stock/doctype/item/item.py:717 +msgid "Cannot Merge" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot Optimize Route as Driver Address is Missing." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:292 +msgid "Cannot Relieve Employee" +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:71 +msgid "Cannot Resubmit Ledger entries for vouchers in Closed fiscal year." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:204 +msgid "Cannot add child table {0} to deletion list. Child tables are automatically deleted with their parent DocTypes." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:226 +msgid "Cannot amend {0} {1}, please create a new one instead." +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:1300 +msgid "Cannot apply TDS against multiple parties in one entry" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:378 +msgid "Cannot be a fixed asset item as Stock Ledger is created." +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 +msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:248 +msgid "Cannot cancel POS Closing Entry" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 +msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 +msgid "Cannot cancel as processing of cancelled documents is pending." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +msgid "Cannot cancel because submitted Stock Entry {0} exists" +msgstr "" + +#: erpnext/stock/stock_ledger.py:176 +msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:593 +msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:48 +msgid "Cannot cancel this document as it is linked with the submitted Asset Value Adjustment {0}. Please cancel the Asset Value Adjustment to continue." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1145 +msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +msgid "Cannot cancel transaction for Completed Work Order." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:984 +msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74 +msgid "Cannot change Reference Document Type." +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:53 +msgid "Cannot change Service Stop Date for item in row {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:975 +msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:342 +msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency." +msgstr "" + +#: erpnext/projects/doctype/task/task.py:146 +msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:61 +msgid "Cannot convert Cost Center to ledger as it has child nodes" +msgstr "" + +#: erpnext/projects/doctype/task/task.js:49 +msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:444 +msgid "Cannot convert to Group because Account Type is selected." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:280 +msgid "Cannot covert to Group because Account Type is selected." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:277 +msgid "Cannot create Intercompany {0}. All items in the source {1} have already been fully invoiced. Please check the existing linked {2}s." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/reservation.py:49 +msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/stock/doctype/pick_list/pick_list.py:256 +msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:34 +msgid "Cannot create accounting entries against disabled accounts: {0}" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:444 +msgid "Cannot create return for consolidated invoice {0}." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:903 +msgid "Cannot deactivate or cancel BOM as it is linked with other BOMs" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity.py:283 +msgid "Cannot declare as lost, because Quotation has been made." +msgstr "" + +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js:16 +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js:26 +msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +msgid "Cannot delete Exchange Gain/Loss row" +msgstr "" + +#: erpnext/stock/doctype/serial_no/serial_no.py:119 +msgid "Cannot delete Serial No {0}, as it is used in stock transactions" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:403 +msgid "Cannot delete an item which has been ordered" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +msgid "Cannot delete protected core DocType: {0}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:213 +msgid "Cannot delete virtual DocType: {0}. Virtual DocTypes do not have database tables." +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:147 +msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:568 +msgid "Cannot disable perpetual inventory, as there are existing Stock Ledger Entries for the company {0}. Please cancel the stock transactions first and try again." +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:128 +msgid "Cannot disable {0} as it may lead to incorrect stock valuation." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/status.py:226 +msgid "Cannot disassemble more than produced quantity." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:46 +msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:233 +msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." +msgstr "" + +#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:624 +#: erpnext/selling/doctype/sales_order/sales_order.py:647 +msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.js:111 +msgid "Cannot fetch selected rows for submitted Payment Request" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:62 +msgid "Cannot find Item or Warehouse with this Barcode" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:63 +msgid "Cannot find Item with this Barcode" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:356 +msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." +msgstr "" + +#: erpnext/accounts/party.py:1091 +msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/status.py:41 +msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +msgid "Cannot produce more item for {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +msgid "Cannot produce more than {0} items for {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:361 +msgid "Cannot receive from customer against negative outstanding" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:289 +msgid "Cannot reduce quantity than ordered or purchased quantity" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 +#: erpnext/accounts/services/taxes.py:257 +#: erpnext/public/js/controllers/accounts.js:120 +msgid "Cannot refer row number greater than or equal to current row number for this Charge type" +msgstr "" + +#: erpnext/accounts/doctype/bank/bank.js:63 +msgid "Cannot retrieve link token for update. Check Error Log for more information" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:68 +msgid "Cannot retrieve link token. Check Error Log for more information" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:368 +msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 +#: erpnext/accounts/services/taxes.py:247 +#: erpnext/public/js/controllers/accounts.js:112 +#: erpnext/public/js/controllers/taxes_and_totals.js:554 +msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.py:293 +msgid "Cannot set as Lost as Sales Order is made." +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:89 +msgid "Cannot set authorization on basis of Discount for {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:775 +msgid "Cannot set multiple Item Defaults for a company." +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:108 +msgid "Cannot set multiple account rows for the same company" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:258 +msgid "Cannot set quantity less than delivered quantity." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:259 +msgid "Cannot set quantity less than received quantity." +msgstr "" + +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.py:69 +msgid "Cannot set the field {0} for copying in variants" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:266 +msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:923 +msgid "Cannot submit Job Card {0} while it is On Hold. Please resume and complete the job before submission." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:283 +msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1675 +msgid "Cannot {0} from {1} without any negative outstanding invoice" +msgstr "" + +#. Label of the canonical_uri (Data) field in DocType 'Code List' +#. Label of the canonical_uri (Data) field in DocType 'Common Code' +#: erpnext/edi/doctype/code_list/code_list.json +#: erpnext/edi/doctype/common_code/common_code.json +msgid "Canonical URI" +msgstr "" + +#. Label of the capacity_per_day (Int) field in DocType 'Item Lead Time' +#. Label of the capacity (Float) field in DocType 'Putaway Rule' +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:964 +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +msgid "Capacity" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:69 +msgid "Capacity (Stock UOM)" +msgstr "" + +#. Label of the capacity_planning (Section Break) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Capacity Planning" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/operations.py:147 +msgid "Capacity Planning Error, planned start time can not be same as end time" +msgstr "" + +#. Label of the capacity_planning_for_days (Int) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Capacity Planning For (Days)" +msgstr "" + +#. Label of the stock_capacity (Float) field in DocType 'Putaway Rule' +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +msgid "Capacity in Stock UOM" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:86 +msgid "Capacity must be greater than 0" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82 +msgid "Capital Equipment" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338 +msgid "Capital Stock" +msgstr "" + +#. Label of the capital_work_in_progress_account (Link) field in DocType 'Asset +#. Category Account' +#. Label of the capital_work_in_progress_account (Link) field in DocType +#. 'Company' +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +#: erpnext/setup/doctype/company/company.json +msgid "Capital Work In Progress Account" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/report/account_balance/account_balance.js:42 +msgid "Capital Work in Progress" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:223 +msgid "Capitalize Asset" +msgstr "" + +#. Label of the capitalize_repair_cost (Check) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Capitalize Repair Cost" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:221 +msgid "Capitalize this asset before submitting." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:14 +msgid "Capitalized" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Carat" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:6 +msgid "Carriage Paid To" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:7 +msgid "Carriage and Insurance Paid to" +msgstr "" + +#. Label of the carrier (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Carrier" +msgstr "" + +#. Label of the carrier_service (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Carrier Service" +msgstr "" + +#. Label of the carry_forward_communication_and_comments (Check) field in +#. DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Carry Forward Communication and Comments" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Option for the 'Type' (Select) field in DocType 'Mode of Payment' +#. Option for the 'Salary Mode' (Select) field in DocType 'Employee' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:21 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:27 +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/accounts/report/account_balance/account_balance.js:40 +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:257 +msgid "Cash" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Cash Entry" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Financial Report +#. Template' +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/accounts/report/cash_flow/cash_flow.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Cash Flow" +msgstr "" + +#: erpnext/public/js/financial_statements.js:359 +msgid "Cash Flow Statement" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:187 +msgid "Cash Flow from Financing" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:180 +msgid "Cash Flow from Investing" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:168 +msgid "Cash Flow from Operations" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:20 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:26 +msgid "Cash In Hand" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:326 +msgid "Cash or Bank Account is mandatory for making payment entry" +msgstr "" + +#. Label of the cash_bank_account (Link) field in DocType 'POS Invoice' +#. Label of the cash_bank_account (Link) field in DocType 'Purchase Invoice' +#. Label of the cash_bank_account (Link) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Cash/Bank Account" +msgstr "" + +#. Label of the user (Link) field in DocType 'POS Closing Entry' +#. Label of the user (Link) field in DocType 'POS Opening Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/accounts/report/pos_register/pos_register.js:38 +#: erpnext/accounts/report/pos_register/pos_register.py:132 +#: erpnext/accounts/report/pos_register/pos_register.py:211 +msgid "Cashier" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +msgid "Cashier Closing" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json +msgid "Cashier Closing Payments" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:77 +msgid "Cashier is currently assigned to another POS." +msgstr "" + +#. Label of the catch_all (Link) field in DocType 'Communication Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Catch All" +msgstr "" + +#. Label of the categorize_by (Select) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Categorize By" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:117 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:80 +msgid "Categorize by" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:130 +msgid "Categorize by Account" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:84 +msgid "Categorize by Item" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:134 +msgid "Categorize by Party" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:83 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:86 +msgid "Categorize by Supplier" +msgstr "" + +#. Option for the 'Categorize By' (Select) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:122 +msgid "Categorize by Voucher" +msgstr "" + +#. Option for the 'Categorize By' (Select) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:126 +msgid "Categorize by Voucher (Consolidated)" +msgstr "" + +#. Label of the category_details_section (Section Break) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Category Details" +msgstr "" + +#: erpnext/assets/dashboard_fixtures.py:93 +msgid "Category-wise Asset Value" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.py:289 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:140 +msgid "Caution" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:210 +msgid "Caution: This might alter frozen accounts." +msgstr "" + +#. Label of the cell_number (Data) field in DocType 'Driver' +#: erpnext/setup/doctype/driver/driver.json +msgid "Cellphone Number" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Celsius" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cental" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Centiarea" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Centigram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Centilitre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Centimeter" +msgstr "" + +#. Label of the certificate_attachement (Attach) field in DocType 'Asset +#. Maintenance Log' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +msgid "Certificate" +msgstr "" + +#. Label of the certificate_details_section (Section Break) field in DocType +#. 'Lower Deduction Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Certificate Details" +msgstr "" + +#. Label of the certificate_limit (Currency) field in DocType 'Lower Deduction +#. Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Certificate Limit" +msgstr "" + +#. Label of the certificate_no (Data) field in DocType 'Lower Deduction +#. Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Certificate No" +msgstr "" + +#. Label of the certificate_required (Check) field in DocType 'Asset +#. Maintenance Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Certificate Required" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Chain" +msgstr "" + +#. Label of the change_amount (Currency) field in DocType 'POS Invoice' +#. Label of the change_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:318 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/page/point_of_sale/pos_payment.js:684 +msgid "Change Amount" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:94 +msgid "Change Release Date" +msgstr "" + +#. Label of the stock_value_difference (Float) field in DocType 'Serial and +#. Batch Entry' +#. Label of the stock_value_difference (Currency) field in DocType 'Stock +#. Closing Balance' +#. Label of the stock_value_difference (Currency) field in DocType 'Stock +#. Ledger Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:171 +msgid "Change in Stock Value" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:773 +msgid "Change the account type to Receivable or select a different account." +msgstr "" + +#. Description of the 'Last Integration Date' (Date) field in DocType 'Bank +#. Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Change this date manually to setup the next synchronization start date" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:158 +msgid "Changed customer name to '{}' as '{}' already exists." +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 +msgid "Changes in {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:447 +msgid "Changing Customer Group for the selected Customer is not allowed." +msgstr "" + +#. Description of the 'column_break_mfor' (Column Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Changing the account in any transaction of the DocTypes listed below will trigger a repost. To prevent reposting, remove the relevant DocType from the list." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:34 +msgid "Changing the valuation method to Moving Average will affect new transactions. If backdated entries are added, earlier FIFO-based entries will be reposted, which may change closing balances." +msgstr "" + +#. Option for the 'Lead Type' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:1 +msgid "Channel Partner" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 +#: erpnext/accounts/services/taxes.py:309 +msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/report/account_balance/account_balance.js:41 +msgid "Chargeable" +msgstr "" + +#. Label of the charges (Currency) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Charges Incurred" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:24 +msgid "Charges are updated in Purchase Receipt against each item" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:18 +msgid "Charges will be distributed proportionately based on item qty or amount, as per your selection" +msgstr "" + +#. Label of the chart_of_accounts (Select) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Chart Of Accounts Template" +msgstr "" + +#. Label of the chart_preview (Section Break) field in DocType 'Chart of +#. Accounts Importer' +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +msgid "Chart Preview" +msgstr "" + +#. Label of the chart_tree (HTML) field in DocType 'Chart of Accounts Importer' +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +msgid "Chart Tree" +msgstr "" + +#. Label of the chart_of_accounts_section (Section Break) field in DocType +#. 'Accounts Settings' +#. Label of a Link in the Invoicing Workspace +#. Label of the section_break_28 (Section Break) field in DocType 'Company' +#. Label of a Link in the Home Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.js:87 +#: erpnext/accounts/doctype/account/account_tree.js:5 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/public/js/setup_wizard.js:43 +#: erpnext/setup/doctype/company/company.js:139 +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/invoicing.json +msgid "Chart of Accounts" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Link in the Home Workspace +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/setup/workspace/home/home.json +msgid "Chart of Accounts Importer" +msgstr "" + +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account_tree.js:191 +#: erpnext/accounts/doctype/cost_center/cost_center.js:41 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Chart of Cost Centers" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:66 +msgid "Charts Based On" +msgstr "" + +#. Label of the chassis_no (Data) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Chassis No" +msgstr "" + +#. Label of the warehouse_group (Link) field in DocType 'Item Reorder' +#: erpnext/stock/doctype/item_reorder/item_reorder.json +msgid "Check Availability in Warehouse" +msgstr "" + +#. Label of the check_supplier_invoice_uniqueness (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Check Supplier invoice number uniqueness" +msgstr "" + +#. Description of the 'Is Container' (Check) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Check if it is a hydroponic unit" +msgstr "" + +#. Description of the 'Skip Material Transfer to WIP Warehouse' (Check) field +#. in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Check if material transfer entry is not required" +msgstr "" + +#. Description of the 'Not Applicable' (Check) field in DocType 'Item Tax +#. Template Detail' +#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json +#, python-format +msgid "Check if this tax is not applicable to items (distinct from 0% rate)" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py:58 +msgid "Check row {0} for account {1}: Party Type is only allowed for Receivable or Payable accounts" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py:65 +msgid "Check row {0} for account {1}: Party is only allowed if Party Type is set" +msgstr "" + +#. Description of the 'Must be Whole Number' (Check) field in DocType 'UOM' +#: erpnext/setup/doctype/uom/uom.json +msgid "Check this to disallow fractions. (for Nos)" +msgstr "" + +#. Label of the checked_on (Datetime) field in DocType 'Ledger Health' +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +msgid "Checked On" +msgstr "" + +#. Description of the 'Round Off Tax Amount' (Check) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Checking this will round off the tax amount to the nearest integer" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:108 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:148 +msgid "Checkout" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:263 +msgid "Checkout Order / Submit Order / New Order" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:300 +msgid "Checks and Deposits incorrectly cleared" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:12 +msgid "Chemical" +msgstr "" + +#. Option for the 'Salary Mode' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:254 +msgid "Cheque" +msgstr "" + +#. Label of the cheque_date (Date) field in DocType 'Bank Clearance Detail' +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +msgid "Cheque Date" +msgstr "" + +#. Label of the cheque_height (Float) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Cheque Height" +msgstr "" + +#. Label of the cheque_number (Data) field in DocType 'Bank Clearance Detail' +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +msgid "Cheque Number" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Cheque Print Template" +msgstr "" + +#. Label of the cheque_size (Select) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Cheque Size" +msgstr "" + +#. Label of the cheque_width (Float) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Cheque Width" +msgstr "" + +#. Label of the reference_date (Date) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/public/js/controllers/transaction.js:2810 +msgid "Cheque/Reference Date" +msgstr "" + +#. Label of the reference_no (Data) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:39 +msgid "Cheque/Reference No" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:132 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:323 +msgid "Cheque/Reference Number" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:134 +msgid "Cheques Required" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.json +msgid "Cheques and Deposits Incorrectly cleared" +msgstr "" + +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:50 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:54 +msgid "Cheques and Deposits incorrectly cleared" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:9 +msgid "Chief Executive Officer" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:10 +msgid "Chief Financial Officer" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:11 +msgid "Chief Operating Officer" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:12 +msgid "Chief Technology Officer" +msgstr "" + +#. Label of the child_doctypes (Small Text) field in DocType 'Transaction +#. Deletion Record To Delete' +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Child DocTypes" +msgstr "" + +#. Label of the child_docname (Data) field in DocType 'Pricing Rule Detail' +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +msgid "Child Docname" +msgstr "" + +#. Label of the child_row_reference (Data) field in DocType 'Quality +#. Inspection' +#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Child Row Reference" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:207 +msgid "Child Table Not Allowed" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:319 +msgid "Child Task exists for this Task. You can not delete this Task." +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 +msgid "Child nodes can be only created under 'Group' type nodes" +msgstr "" + +#. Description of the 'Child DocTypes' (Small Text) field in DocType +#. 'Transaction Deletion Record To Delete' +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Child tables that will also be deleted" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:104 +msgid "Child warehouse exists for this warehouse. You can not delete this warehouse." +msgstr "" + +#: erpnext/projects/doctype/task/task.py:263 +msgid "Circular Reference Error" +msgstr "" + +#. Label of the claimed_landed_cost_amount (Currency) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Claimed Landed Cost Amount (Company Currency)" +msgstr "" + +#. Label of the class_per (Data) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Class / Percentage" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/territory/territory.json +msgid "Classification of Customers by region" +msgstr "" + +#. Label of the classify_as (Select) field in DocType 'Bank Transaction Rule' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Classify As" +msgstr "" + +#. Description of the 'Market Segment' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting." +msgstr "" + +#. Label of the more_information (Text Editor) field in DocType 'Bank +#. Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Clauses and Conditions" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:493 +msgid "Clear Last Scanned Warehouse" +msgstr "" + +#. Label of the clear_notifications_status (Select) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Clear Notifications" +msgstr "" + +#. Label of the clear_table (Button) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Clear Table" +msgstr "" + +#. Label of the clearance_date (Date) field in DocType 'Bank Clearance Detail' +#. Label of the clearance_date (Date) field in DocType 'Bank Transaction +#. Payments' +#. Label of the clearance_date (Date) field in DocType 'Journal Entry' +#. Label of the clearance_date (Date) field in DocType 'Payment Entry' +#. Label of the clearance_date (Date) field in DocType 'Purchase Invoice' +#. Label of the clearance_date (Date) field in DocType 'Sales Invoice Payment' +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:157 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:339 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:178 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:154 +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:40 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:28 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:102 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:154 +#: erpnext/templates/form_grid/bank_reconciliation_grid.html:7 +msgid "Clearance Date" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:135 +msgid "Clearance Date not mentioned" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:180 +msgid "Clearance Date updated" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:159 +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:174 +msgid "Clearance date changed from {0} to {1} via Bank Clearance Tool" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:292 +msgid "Clearance date updated" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:184 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:82 +msgid "Cleared" +msgstr "" + +#: erpnext/public/js/utils/demo.js:21 +msgid "Clearing Demo Data..." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:720 +msgid "Click on 'Get Finished Goods for Manufacture' to fetch the items from the above Sales Orders. Items only for which a BOM is present will be fetched." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:70 +msgid "Click on Add to Holidays. This will populate the holidays table with all the dates that fall on the selected weekly off. Repeat the process for populating the dates for all your weekly holidays" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:715 +msgid "Click on Get Sales Orders to fetch sales orders based on the above filters." +msgstr "" + +#. Description of the 'Import Invoices' (Button) field in DocType 'Import +#. Supplier Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Click on Import Invoices button once the zip file has been attached to the document. Any errors related to processing will be shown in the Error Log." +msgstr "" + +#: erpnext/templates/emails/confirm_appointment.html:3 +msgid "Click on the link below to verify your email and confirm the appointment" +msgstr "" + +#. Description of the 'Reset Raw Materials Table' (Button) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Click this button if you encounter a negative stock error for a serial or batch item. The system will fetch the available serials or batches automatically." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:485 +msgid "Click to add email / phone" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:790 +msgid "Click to pay in full." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:183 +msgid "Click to set the closing balance as per statement" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/RawTableGrid.tsx:137 +msgid "Click to set this as the header row." +msgstr "" + +#. Label of the close_issue_after_days (Int) field in DocType 'Support +#. Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Close Issue After Days" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:69 +msgid "Close Loan" +msgstr "" + +#. Label of the close_opportunity_after_days (Int) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Close Replied Opportunity After Days" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +msgid "Close the POS" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/closed_document/closed_document.json +msgid "Closed Document" +msgstr "" + +#. Label of the closed_documents (Table) field in DocType 'Accounting Period' +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +msgid "Closed Documents" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +msgid "Closed Work Order can not be stopped or Re-opened" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:486 +msgid "Closed order cannot be cancelled. Unclose to cancel." +msgstr "" + +#. Label of the expected_closing (Date) field in DocType 'Prospect Opportunity' +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +msgid "Closing" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:455 +#: erpnext/accounts/report/trial_balance/trial_balance.py:554 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:226 +msgid "Closing (Cr)" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:448 +#: erpnext/accounts/report/trial_balance/trial_balance.py:547 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:219 +msgid "Closing (Dr)" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:406 +msgid "Closing (Opening + Total)" +msgstr "" + +#. Label of the closing_account_head (Link) field in DocType 'Period Closing +#. Voucher' +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +msgid "Closing Account Head" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:126 +msgid "Closing Account {0} must be of type Liability / Equity" +msgstr "" + +#. Label of the closing_amount (Currency) field in DocType 'POS Closing Entry +#. Detail' +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +msgid "Closing Amount" +msgstr "" + +#. Label of the bank_statement_closing_balance (Currency) field in DocType +#. 'Bank Reconciliation Tool' +#. Label of the closing_balance (Currency) field in DocType 'Bank Statement +#. Import Log' +#. Option for the 'Balance Type' (Select) field in DocType 'Financial Report +#. Row' +#. Label of the closing_balance (JSON) field in DocType 'Process Period Closing +#. Voucher Detail' +#: banking/src/pages/BankStatementImporter.tsx:255 +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:230 +msgid "Closing Balance" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:185 +msgctxt "Do MMMM YYYY" +msgid "Closing Balance as of {}" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/number_card.js:18 +msgid "Closing Balance as per Bank Statement" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/number_card.js:24 +msgid "Closing Balance as per ERP" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:171 +msgid "Closing Balance as per statement" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:68 +msgid "Closing Balance as per system" +msgstr "" + +#. Label of the closing_date (Date) field in DocType 'Account Closing Balance' +#. Label of the closing_date (Date) field in DocType 'Task' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/projects/doctype/task/task.json +msgid "Closing Date" +msgstr "" + +#. Label of the closing_text (Text Editor) field in DocType 'Dunning' +#. Label of the closing_text (Text Editor) field in DocType 'Dunning Letter +#. Text' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Closing Text" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.html:211 +msgid "Closing [Opening + Total] " +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:75 +msgid "Closing balance as per system" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:294 +msgid "Closing balance deleted." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:238 +msgid "Closing balance is required." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:257 +msgctxt "Do MMM YYYY" +msgid "Closing balance on bank statement as of {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:232 +msgid "Closing balance set." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Co-Product" +msgstr "" + +#. Name of a DocType +#. Label of the code_list (Link) field in DocType 'Common Code' +#: erpnext/edi/doctype/code_list/code_list.json +#: erpnext/edi/doctype/common_code/common_code.json +msgid "Code List" +msgstr "" + +#. Description of the 'Line Reference' (Data) field in DocType 'Financial +#. Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Code to reference this line in formulas (e.g., REV100, EXP200, ASSET100)" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:4 +msgid "Cold Calling" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:281 +msgid "Collect Outstanding Amount" +msgstr "" + +#. Label of the collect_progress (Check) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Collect Progress" +msgstr "" + +#. Label of the collection_factor (Currency) field in DocType 'Loyalty Program +#. Collection' +#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json +msgid "Collection Factor (=1 LP)" +msgstr "" + +#. Label of the collection_rules (Table) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Collection Rules" +msgstr "" + +#. Label of the rules (Section Break) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Collection Tier" +msgstr "" + +#. Description of the 'Color' (Color) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Color to highlight values (e.g., red for exceptions)" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:280 +msgid "Colour" +msgstr "" + +#. Label of the column_mapping (Table) field in DocType 'Bank Statement Import +#. Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Column Mapping" +msgstr "" + +#. Label of the file_field (Data) field in DocType 'Bank Transaction Mapping' +#: erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.json +msgid "Column in Bank File" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:52 +msgid "Columns are not according to template. Please compare the uploaded file with standard template" +msgstr "" + +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py:39 +msgid "Combined invoice portion must equal 100%" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:178 +msgid "Commercial" +msgstr "" + +#. Label of the sales_team_section_break (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the commission_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the sales_team_section_break (Section Break) field in DocType +#. 'Sales Order' +#. Label of the sales_team_section_break (Section Break) field in DocType +#. 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:49 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Commission" +msgstr "" + +#. Label of the default_commission_rate (Float) field in DocType 'Customer' +#. Label of the commission_rate (Float) field in DocType 'Sales Order' +#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Float) field in DocType 'Sales Partner' +#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_team/sales_team.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Commission Rate" +msgstr "" + +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:168 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:47 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:81 +msgid "Commission Rate %" +msgstr "" + +#. Label of the commission_rate (Float) field in DocType 'POS Invoice' +#. Label of the commission_rate (Float) field in DocType 'Sales Invoice' +#. Label of the commission_rate (Float) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Commission Rate (%)" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177 +msgid "Commission on Sales" +msgstr "" + +#. Description of the 'Sales Partner' (Section Break) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Commission paid to the Sales Partner on transactions with this customer." +msgstr "" + +#. Name of a DocType +#. Label of the common_code (Data) field in DocType 'Common Code' +#. Label of the common_code (Data) field in DocType 'UOM' +#: erpnext/edi/doctype/common_code/common_code.json +#: erpnext/setup/doctype/uom/uom.json +msgid "Common Code" +msgstr "" + +#. Label of the communication_channel (Select) field in DocType 'Communication +#. Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Communication Channel" +msgstr "" + +#. Name of a DocType +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Communication Medium" +msgstr "" + +#. Name of a DocType +#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json +msgid "Communication Medium Timeslot" +msgstr "" + +#. Label of the communication_medium_type (Select) field in DocType +#. 'Communication Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Communication Medium Type" +msgstr "" + +#: erpnext/setup/install.py:98 +msgid "Compact Item Print" +msgstr "" + +#. Label of the companies (Table) field in DocType 'Fiscal Year' +#. Label of the section_break_xdsp (Section Break) field in DocType 'Ledger +#. Health Monitor' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:26 +msgid "Companies" +msgstr "" + +#. Label of the company (Link) field in DocType 'Account' +#. Label of the company (Link) field in DocType 'Account Closing Balance' +#. Label of the company (Link) field in DocType 'Accounting Dimension Detail' +#. Label of the company (Link) field in DocType 'Accounting Dimension Filter' +#. Label of the company (Link) field in DocType 'Accounting Period' +#. Label of the company (Link) field in DocType 'Advance Payment Ledger Entry' +#. Label of the company (Link) field in DocType 'Allowed To Transact With' +#. Label of the company (Link) field in DocType 'Bank Account' +#. Label of the company (Link) field in DocType 'Bank Account Balance' +#. Label of the company (Link) field in DocType 'Bank Reconciliation Tool' +#. Label of the company (Link) field in DocType 'Bank Statement Import' +#. Label of the company (Link) field in DocType 'Bank Transaction' +#. Label of the company (Link) field in DocType 'Bank Transaction Rule' +#. Label of the company (Link) field in DocType 'Bisect Accounting Statements' +#. Label of the company (Link) field in DocType 'Budget' +#. Label of the company (Link) field in DocType 'Chart of Accounts Importer' +#. Label of the company (Link) field in DocType 'Cost Center' +#. Label of the company (Link) field in DocType 'Cost Center Allocation' +#. Label of the company (Link) field in DocType 'Dunning' +#. Label of the company (Link) field in DocType 'Dunning Type' +#. Label of the company (Link) field in DocType 'Exchange Rate Revaluation' +#. Label of the company (Link) field in DocType 'Fiscal Year Company' +#. Label of the company (Link) field in DocType 'GL Entry' +#. Label of the company (Link) field in DocType 'Invoice Discounting' +#. Label of the company (Link) field in DocType 'Item Tax Template' +#. Label of the company (Link) field in DocType 'Journal Entry' +#. Label of the company (Link) field in DocType 'Journal Entry Template' +#. Label of the company (Link) field in DocType 'Ledger Health Monitor Company' +#. Label of the company (Link) field in DocType 'Ledger Merge' +#. Label of the company (Link) field in DocType 'Loyalty Point Entry' +#. Label of the company (Link) field in DocType 'Loyalty Program' +#. Label of the company (Link) field in DocType 'Mode of Payment Account' +#. Label of the company (Link) field in DocType 'Opening Invoice Creation Tool' +#. Label of the company (Link) field in DocType 'Party Account' +#. Label of the company (Link) field in DocType 'Payment Entry' +#. Label of the company (Link) field in DocType 'Payment Gateway Account' +#. Label of the company (Link) field in DocType 'Payment Ledger Entry' +#. Label of the company (Link) field in DocType 'Payment Order' +#. Label of the company (Link) field in DocType 'Payment Reconciliation' +#. Label of the company (Link) field in DocType 'Payment Request' +#. Label of the company (Link) field in DocType 'Period Closing Voucher' +#. Label of the company (Link) field in DocType 'POS Closing Entry' +#. Label of the company (Link) field in DocType 'POS Invoice' +#. Label of the company (Link) field in DocType 'POS Invoice Merge Log' +#. Label of the company (Link) field in DocType 'POS Opening Entry' +#. Label of the company (Link) field in DocType 'POS Profile' +#. Label of the company (Link) field in DocType 'Pricing Rule' +#. Label of the company (Link) field in DocType 'Process Deferred Accounting' +#. Label of the company (Link) field in DocType 'Process Payment +#. Reconciliation' +#. Label of the company (Link) field in DocType 'Process Statement Of Accounts' +#. Label of the company (Link) field in DocType 'Promotional Scheme' +#. Label of the company (Link) field in DocType 'Purchase Invoice' +#. Label of the company (Link) field in DocType 'Purchase Taxes and Charges +#. Template' +#. Label of the company (Link) field in DocType 'Repost Accounting Ledger' +#. Label of the company (Link) field in DocType 'Repost Payment Ledger' +#. Label of the company (Link) field in DocType 'Sales Invoice' +#. Label of the company (Link) field in DocType 'Sales Taxes and Charges +#. Template' +#. Label of the company (Link) field in DocType 'Share Transfer' +#. Label of the company (Link) field in DocType 'Shareholder' +#. Label of the company (Link) field in DocType 'Shipping Rule' +#. Label of the company (Link) field in DocType 'Subscription' +#. Label of the company (Link) field in DocType 'Tax Rule' +#. Label of the company (Link) field in DocType 'Tax Withholding Account' +#. Label of the company (Link) field in DocType 'Tax Withholding Entry' +#. Label of the company (Link) field in DocType 'Unreconcile Payment' +#. Label of a Link in the Invoicing Workspace +#. Option for the 'Asset Owner' (Select) field in DocType 'Asset' +#. Label of the company (Link) field in DocType 'Asset' +#. Label of the company (Link) field in DocType 'Asset Capitalization' +#. Label of the company_name (Link) field in DocType 'Asset Category Account' +#. Label of the company (Link) field in DocType 'Asset Depreciation Schedule' +#. Label of the company (Link) field in DocType 'Asset Maintenance' +#. Label of the company (Link) field in DocType 'Asset Maintenance Team' +#. Label of the company (Link) field in DocType 'Asset Movement' +#. Label of the company (Link) field in DocType 'Asset Movement Item' +#. Label of the company (Link) field in DocType 'Asset Repair' +#. Label of the company (Link) field in DocType 'Asset Value Adjustment' +#. Label of the company (Link) field in DocType 'Customer Number At Supplier' +#. Label of the company (Link) field in DocType 'Purchase Order' +#. Label of the company (Link) field in DocType 'Request for Quotation' +#. Option for the 'Supplier Type' (Select) field in DocType 'Supplier' +#. Label of the company (Link) field in DocType 'Supplier Quotation' +#. Label of the company (Link) field in DocType 'Lead' +#. Label of the company (Link) field in DocType 'Opportunity' +#. Label of the company (Link) field in DocType 'Prospect' +#. Label of the company (Link) field in DocType 'Maintenance Schedule' +#. Label of the company (Link) field in DocType 'Maintenance Visit' +#. Label of the company (Link) field in DocType 'Blanket Order' +#. Label of the company (Link) field in DocType 'BOM' +#. Label of the company (Link) field in DocType 'BOM Creator' +#. Label of the company (Link) field in DocType 'Job Card' +#. Label of the company (Link) field in DocType 'Master Production Schedule' +#. Label of the company (Link) field in DocType 'Plant Floor' +#. Label of the company (Link) field in DocType 'Production Plan' +#. Label of the company (Link) field in DocType 'Sales Forecast' +#. Label of the company (Link) field in DocType 'Work Order' +#. Label of the company (Link) field in DocType 'Workstation Operating +#. Component Account' +#. Label of the company (Link) field in DocType 'Project' +#. Label of the company (Link) field in DocType 'Task' +#. Label of the company (Link) field in DocType 'Timesheet' +#. Label of the company (Link) field in DocType 'Import Supplier Invoice' +#. Label of the company (Link) field in DocType 'Lower Deduction Certificate' +#. Label of the company (Link) field in DocType 'South Africa VAT Settings' +#. Label of the company (Link) field in DocType 'UAE VAT Settings' +#. Option for the 'Customer Type' (Select) field in DocType 'Customer' +#. Label of the company (Link) field in DocType 'Customer Credit Limit' +#. Label of the company (Link) field in DocType 'Installation Note' +#. Label of the company (Link) field in DocType 'Quotation' +#. Label of the company (Link) field in DocType 'Sales Order' +#. Label of the company (Link) field in DocType 'Supplier Number At Customer' +#. Label of the company (Link) field in DocType 'Authorization Rule' +#. Name of a DocType +#. Label of the company_name (Data) field in DocType 'Company' +#. Label of the company (Link) field in DocType 'Department' +#. Label of the company (Link) field in DocType 'Employee' +#. Label of the company_name (Data) field in DocType 'Employee External Work +#. History' +#. Label of the company (Link) field in DocType 'Transaction Deletion Record' +#. Label of the company (Link) field in DocType 'Vehicle' +#. Label of a Link in the Home Workspace +#. Label of the company (Link) field in DocType 'Bin' +#. Label of the company (Link) field in DocType 'Delivery Note' +#. Label of the company (Link) field in DocType 'Delivery Trip' +#. Label of the company (Link) field in DocType 'Item Default' +#. Label of the company (Link) field in DocType 'Landed Cost Voucher' +#. Label of the company (Link) field in DocType 'Material Request' +#. Label of the company (Link) field in DocType 'Pick List' +#. Label of the company (Link) field in DocType 'Purchase Receipt' +#. Label of the company (Link) field in DocType 'Putaway Rule' +#. Label of the company (Link) field in DocType 'Quality Inspection' +#. Label of the company (Link) field in DocType 'Repost Item Valuation' +#. Label of the company (Link) field in DocType 'Serial and Batch Bundle' +#. Label of the company (Link) field in DocType 'Serial No' +#. Option for the 'Pickup from' (Select) field in DocType 'Shipment' +#. Label of the pickup_company (Link) field in DocType 'Shipment' +#. Option for the 'Delivery to' (Select) field in DocType 'Shipment' +#. Label of the delivery_company (Link) field in DocType 'Shipment' +#. Label of the company (Link) field in DocType 'Stock Closing Balance' +#. Label of the company (Link) field in DocType 'Stock Closing Entry' +#. Label of the company (Link) field in DocType 'Stock Entry' +#. Label of the company (Link) field in DocType 'Stock Ledger Entry' +#. Label of the company (Link) field in DocType 'Stock Reconciliation' +#. Label of the company (Link) field in DocType 'Stock Reservation Entry' +#. Label of the company (Link) field in DocType 'Warehouse' +#. Label of the company (Link) field in DocType 'Subcontracting Inward Order' +#. Label of the company (Link) field in DocType 'Subcontracting Order' +#. Label of the company (Link) field in DocType 'Subcontracting Receipt' +#. Label of the company (Link) field in DocType 'Issue' +#. Label of the company (Link) field in DocType 'Warranty Claim' +#. Label of a Workspace Sidebar Item +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:81 +#: banking/src/pages/BankStatementImporter.tsx:84 +#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.js:8 +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account_tree.js:12 +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:9 +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +#: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:289 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/ledger_health_monitor_company/ledger_health_monitor_company.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/party_account/party_account.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/doctype/tax_withholding_account/tax_withholding_account.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:24 +#: erpnext/accounts/report/account_balance/account_balance.js:8 +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:8 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:8 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:10 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:8 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:8 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:8 +#: erpnext/accounts/report/balance_sheet/balance_sheet.html:128 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:8 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js:7 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:43 +#: erpnext/accounts/report/cash_flow/cash_flow.html:128 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.js:8 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:8 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:8 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:8 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:50 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:8 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:7 +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:8 +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:9 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:8 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:192 +#: erpnext/accounts/report/general_ledger/general_ledger.js:8 +#: erpnext/accounts/report/general_ledger/general_ledger.py:59 +#: erpnext/accounts/report/gross_profit/gross_profit.js:8 +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:8 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:40 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:230 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:28 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:277 +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:8 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:8 +#: erpnext/accounts/report/pos_register/pos_register.js:8 +#: erpnext/accounts/report/pos_register/pos_register.py:116 +#: erpnext/accounts/report/pos_register/pos_register.py:239 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:128 +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:8 +#: erpnext/accounts/report/purchase_register/purchase_register.js:33 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js:7 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:22 +#: erpnext/accounts/report/sales_register/sales_register.js:33 +#: erpnext/accounts/report/share_ledger/share_ledger.py:58 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:8 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:8 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:8 +#: erpnext/accounts/report/trial_balance/trial_balance.html:133 +#: erpnext/accounts/report/trial_balance/trial_balance.js:8 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:8 +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.js:8 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:8 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:464 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:547 +#: erpnext/buying/doctype/customer_number_at_supplier/customer_number_at_supplier.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:8 +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:134 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.js:8 +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:49 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:8 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:316 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:8 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:268 +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.js:7 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:8 +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/crm/report/lead_details/lead_details.js:8 +#: erpnext/crm/report/lead_details/lead_details.py:52 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:8 +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:58 +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:51 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:133 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:52 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/workstation_operating_component_account/workstation_operating_component_account.json +#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:2 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:7 +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:8 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:7 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:8 +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:7 +#: erpnext/manufacturing/report/production_analytics/production_analytics.js:8 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:8 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:7 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:7 +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/report/project_summary/project_summary.js:8 +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:45 +#: erpnext/public/js/financial_statements.js:381 +#: erpnext/public/js/purchase_trends_filters.js:8 +#: erpnext/public/js/sales_trends_filters.js:51 +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json +#: erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.json +#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js:27 +#: erpnext/regional/report/irs_1099/irs_1099.js:8 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.js:8 +#: erpnext/regional/report/vat_audit_report/vat_audit_report.js:8 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json +#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/sales_funnel/sales_funnel.js:36 +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:8 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:115 +#: erpnext/selling/report/lost_quotations/lost_quotations.js:8 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:8 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:47 +#: erpnext/selling/report/sales_analytics/sales_analytics.js:69 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.js:8 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:354 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:8 +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:8 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:8 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:33 +#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:8 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:33 +#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:8 +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.js:18 +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/company/company_tree.js:10 +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/department/department_tree.js:10 +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee/employee_tree.js:8 +#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:188 +#: erpnext/setup/install.py:197 erpnext/setup/workspace/home/home.json +#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8 +#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/item/item.js:929 +#: erpnext/stock/doctype/item_default/item_default.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/doctype/warehouse/warehouse_tree.js:11 +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:12 +#: erpnext/stock/report/available_batch_report/available_batch_report.js:8 +#: erpnext/stock/report/available_serial_no/available_serial_no.js:8 +#: erpnext/stock/report/available_serial_no/available_serial_no.py:203 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:8 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.js:7 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:8 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:8 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.js:7 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:145 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.js:7 +#: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 +#: erpnext/stock/report/item_where_used/item_where_used.js:15 +#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 +#: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:114 +#: erpnext/stock/report/reserved_stock/reserved_stock.js:8 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:191 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:9 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:75 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:41 +#: erpnext/stock/report/stock_ageing/stock_ageing.js:8 +#: erpnext/stock/report/stock_analytics/stock_analytics.js:41 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:7 +#: erpnext/stock/report/stock_balance/stock_balance.js:8 +#: erpnext/stock/report/stock_balance/stock_balance.py:580 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:8 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:441 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8 +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8 +#: erpnext/stock/report/total_stock_summary/total_stock_summary.js:17 +#: erpnext/stock/report/total_stock_summary/total_stock_summary.py:29 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:8 +#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.js:8 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/support/report/issue_analytics/issue_analytics.js:8 +#: erpnext/support/report/issue_summary/issue_summary.js:8 +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/organization.json +msgid "Company" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:36 +msgid "Company Abbreviation" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:101 +msgid "Company Abbreviation (requires ERPNext to be installed)" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:174 +msgid "Company Abbreviation cannot have more than 5 characters" +msgstr "" + +#. Label of the account (Link) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Company Account" +msgstr "" + +#: erpnext/accounts/doctype/bank_account/bank_account.py:70 +msgid "Company Account is mandatory" +msgstr "" + +#. Label of the company_address (Link) field in DocType 'Dunning' +#. Label of the company_address_display (Text Editor) field in DocType 'POS +#. Invoice' +#. Label of the company_address (Link) field in DocType 'POS Profile' +#. Label of the company_address_display (Text Editor) field in DocType 'Sales +#. Invoice' +#. Label of the company_address_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the company_address_display (Text Editor) field in DocType +#. 'Quotation' +#. Label of the company_address_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the company_address_display (Text Editor) field in DocType 'Sales +#. Order' +#. Label of the col_break46 (Section Break) field in DocType 'Sales Order' +#. Label of the company_address_display (Text Editor) field in DocType +#. 'Delivery Note' +#. Label of the company_address_section (Section Break) field in DocType +#. 'Delivery Note' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Company Address" +msgstr "" + +#. Label of the company_address_display (Text Editor) field in DocType +#. 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "Company Address Display" +msgstr "" + +#. Label of the company_address (Link) field in DocType 'POS Invoice' +#. Label of the company_address (Link) field in DocType 'Sales Invoice' +#. Label of the company_address (Link) field in DocType 'Quotation' +#. Label of the company_address (Link) field in DocType 'Sales Order' +#. Label of the company_address (Link) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Company Address Name" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1705 +msgid "Company Address is missing. You don't have permission to create an Address. Please contact your System Manager." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1693 +msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager." +msgstr "" + +#. Label of the bank_account (Link) field in DocType 'Payment Entry' +#. Label of the company_bank_account (Link) field in DocType 'Payment Order' +#. Label of the default_bank_account (Link) field in DocType 'Supplier' +#. Label of the default_bank_account (Link) field in DocType 'Customer' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Company Bank Account" +msgstr "" + +#. Label of the company_billing_address_section (Section Break) field in +#. DocType 'Purchase Invoice' +#. Label of the billing_address (Link) field in DocType 'Purchase Order' +#. Label of the company_billing_address_section (Section Break) field in +#. DocType 'Purchase Order' +#. Label of the billing_address (Link) field in DocType 'Request for Quotation' +#. Label of the company_billing_address_section (Section Break) field in +#. DocType 'Supplier Quotation' +#. Label of the billing_address (Link) field in DocType 'Supplier Quotation' +#. Label of the billing_address_section (Section Break) field in DocType +#. 'Purchase Receipt' +#. Label of the billing_address (Link) field in DocType 'Subcontracting Order' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Company Billing Address" +msgstr "" + +#. Label of the company_contact_person (Link) field in DocType 'POS Invoice' +#. Label of the company_contact_person (Link) field in DocType 'Sales Invoice' +#. Label of the company_contact_person (Link) field in DocType 'Quotation' +#. Label of the company_contact_person (Link) field in DocType 'Sales Order' +#. Label of the company_contact_person (Link) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Company Contact Person" +msgstr "" + +#. Label of the company_description (Text Editor) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Company Description" +msgstr "" + +#. Label of the company_details_section (Section Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Company Details" +msgstr "" + +#. Option for the 'Preferred Contact Email' (Select) field in DocType +#. 'Employee' +#. Label of the company_email (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Company Email" +msgstr "" + +#. Label of the company_field (Data) field in DocType 'Transaction Deletion +#. Record To Delete' +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Company Field" +msgstr "" + +#. Label of the company_logo (Attach Image) field in DocType 'Company' +#: erpnext/public/js/print.js:80 erpnext/setup/doctype/company/company.json +msgid "Company Logo" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:77 +msgid "Company Name cannot be Company" +msgstr "" + +#: erpnext/accounts/custom/address.py:36 +msgid "Company Not Linked" +msgstr "" + +#. Label of the shipping_address (Link) field in DocType 'Request for +#. Quotation' +#. Label of the shipping_address (Link) field in DocType 'Subcontracting Order' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Company Shipping Address" +msgstr "" + +#. Label of the company_tax_id (Data) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Company Tax ID" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +msgid "Company and Posting Date is mandatory" +msgstr "" + +#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py:43 +msgid "Company and account filters not set!" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:169 +msgid "Company currencies of both the companies should match for Inter Company Transactions." +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:380 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:851 +msgid "Company field is required" +msgstr "" + +#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py:45 +msgid "Company filter not set!" +msgstr "" + +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:77 +msgid "Company is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/bank_account/bank_account.py:67 +msgid "Company is mandatory for company account" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:481 +msgid "Company is mandatory for generating an invoice. Please set a default company in Global Defaults." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:85 +msgid "Company is required" +msgstr "" + +#. Description of the 'Company Field' (Data) field in DocType 'Transaction +#. Deletion Record To Delete' +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Company link field name used for filtering (optional - leave empty to delete all records)" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:239 +msgid "Company name not same" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:330 +msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:164 +msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" +msgstr "" + +#. Description of the 'Registration Details' (Code) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Company registration numbers for your reference. Tax numbers etc." +msgstr "" + +#. Description of the 'Represents Company' (Link) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Company which internal customer represents" +msgstr "" + +#. Description of the 'Represents Company' (Link) field in DocType 'Delivery +#. Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Company which internal customer represents." +msgstr "" + +#. Description of the 'Represents Company' (Link) field in DocType 'Purchase +#. Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Company which internal supplier represents" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:74 +msgid "Company {0} added multiple times" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:519 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308 +msgid "Company {0} does not exist" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 +msgid "Company {0} is added more than once" +msgstr "" + +#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.py:33 +msgid "Company {0} is not in South Africa." +msgstr "" + +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {} does not match with POS Profile Company {}" +msgstr "" + +#. Name of a DocType +#. Label of the competitor (Link) field in DocType 'Competitor Detail' +#: erpnext/crm/doctype/competitor/competitor.json +#: erpnext/crm/doctype/competitor_detail/competitor_detail.json +#: erpnext/selling/report/lost_quotations/lost_quotations.py:24 +msgid "Competitor" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/competitor_detail/competitor_detail.json +msgid "Competitor Detail" +msgstr "" + +#. Label of the competitor_name (Data) field in DocType 'Competitor' +#: erpnext/crm/doctype/competitor/competitor.json +msgid "Competitor Name" +msgstr "" + +#. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' +#. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Competitors" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:663 +#: erpnext/manufacturing/doctype/workstation/workstation.js:151 +msgid "Complete Job" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:917 +msgid "Complete Match" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:44 +msgid "Complete Order" +msgstr "" + +#. Label of the completed_by (Link) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Completed By" +msgstr "" + +#. Label of the completed_on (Date) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Completed On" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:186 +msgid "Completed On cannot be greater than Today" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:76 +msgid "Completed Operation" +msgstr "" + +#. Label of a chart in the Projects Workspace +#: erpnext/projects/workspace/projects/projects.json +msgid "Completed Projects" +msgstr "" + +#. Label of the completed_qty (Float) field in DocType 'Job Card Operation' +#. Label of the completed_qty (Float) field in DocType 'Job Card Time Log' +#. Label of the completed_qty (Float) field in DocType 'Work Order Operation' +#. Label of the ordered_qty (Float) field in DocType 'Material Request Item' +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Completed Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/operations.py:251 +msgid "Completed Qty cannot be greater than 'Qty to Manufacture'" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:258 +#: erpnext/manufacturing/doctype/job_card/job_card.js:392 +#: erpnext/manufacturing/doctype/workstation/workstation.js:296 +msgid "Completed Quantity" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:136 +#: erpnext/public/js/templates/crm_activities.html:64 +msgid "Completed Tasks" +msgstr "" + +#. Label of the completed_time (Data) field in DocType 'Job Card Operation' +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +msgid "Completed Time" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/completed_work_orders/completed_work_orders.json +msgid "Completed Work Orders" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:73 +msgid "Completion" +msgstr "" + +#. Label of the completion_by (Date) field in DocType 'Quality Action +#. Resolution' +#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json +msgid "Completion By" +msgstr "" + +#. Label of the completion_date (Date) field in DocType 'Asset Maintenance Log' +#. Label of the completion_date (Datetime) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:49 +msgid "Completion Date" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:82 +msgid "Completion Date can not be before Failure Date. Please adjust the dates accordingly." +msgstr "" + +#. Label of the completion_status (Select) field in DocType 'Maintenance +#. Schedule Detail' +#. Label of the completion_status (Select) field in DocType 'Maintenance Visit' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Completion Status" +msgstr "" + +#. Label of the accounts (Table) field in DocType 'Workstation Operating +#. Component' +#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json +msgid "Component Expense Account" +msgstr "" + +#. Label of the component_name (Data) field in DocType 'Workstation Operating +#. Component' +#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json +msgid "Component Name" +msgstr "" + +#. Label of the items (Table) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Components" +msgstr "" + +#. Option for the 'Asset Type' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Composite Asset" +msgstr "" + +#. Option for the 'Asset Type' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Composite Component" +msgstr "" + +#. Label of the comprehensive_insurance (Data) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Comprehensive Insurance" +msgstr "" + +#. Option for the 'Call Receiving Device' (Select) field in DocType 'Voice Call +#. Settings' +#: erpnext/setup/setup_wizard/data/industry_type.txt:13 +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Computer" +msgstr "" + +#. Label of the condition (Code) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Conditional Rule" +msgstr "" + +#. Label of the conditional_rule_examples_section (Section Break) field in +#. DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Conditional Rule Examples" +msgstr "" + +#. Description of the 'Mixed Conditions' (Check) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Conditions will be applied on all the selected items combined. " +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:395 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:413 +msgid "Configure Accounts" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:578 +msgid "Configure Accounts for Bank Entry" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankPicker.tsx:69 +msgid "Configure Bank Accounts" +msgstr "" + +#. Label of an action in the Onboarding Step 'Review Chart of Accounts' +#: erpnext/accounts/onboarding_step/chart_of_accounts/chart_of_accounts.json +msgid "Configure Chart of Accounts" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:56 +msgid "Configure Product Assembly" +msgstr "" + +#. Label of the configure (Button) field in DocType 'Buying Settings' +#. Label of the configure (Button) field in DocType 'Selling Settings' +#. Label of the configure (Button) field in DocType 'Stock Settings' +#. Label of the configure_series (Button) field in DocType 'Stock Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Configure Series" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:21 +#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:27 +msgid "Configure match filters for vouchers" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:202 +msgid "Configure rules to save time when reconciling transactions." +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:44 +msgid "Configure settings for the banking module" +msgstr "" + +#. Description of the 'Action if same rate is not maintained' (Select) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Configure the action to stop the transaction or just warn if the same rate is not maintained." +msgstr "" + +#: erpnext/buying/doctype/buying_settings/buying_settings.js:69 +msgid "Configure the default Price List when creating a new Purchase transaction. Item prices will be fetched from this Price List." +msgstr "" + +#. Label of the confirm_before_resetting_posting_date (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Confirm before resetting posting date" +msgstr "" + +#. Label of the final_confirmation_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Confirmation Date" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:280 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:298 +msgid "Conflicting Transactions" +msgstr "" + +#. Label of the connection_tab (Tab Break) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Connection" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:176 +msgid "Consider Accounting Dimensions" +msgstr "" + +#. Label of the consider_minimum_order_qty (Check) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Consider Minimum Order Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1090 +msgid "Consider Process Loss" +msgstr "" + +#. Label of the skip_available_sub_assembly_item (Check) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Consider Projected Qty in Calculation" +msgstr "" + +#. Label of the ignore_existing_ordered_qty (Check) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Consider Projected Qty in Calculation (RM)" +msgstr "" + +#. Label of the consider_rejected_warehouses (Check) field in DocType 'Pick +#. List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Consider Rejected Warehouses" +msgstr "" + +#. Label of the category (Select) field in DocType 'Purchase Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Consider Tax or Charge for" +msgstr "" + +#. Label of the apply_tds (Check) field in DocType 'Payment Entry' +#. Label of the apply_tds (Check) field in DocType 'Purchase Invoice' +#. Label of the apply_tds (Check) field in DocType 'Purchase Invoice Item' +#. Label of the apply_tds (Check) field in DocType 'Sales Invoice' +#. Label of the apply_tds (Check) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Consider for Tax Withholding" +msgstr "" + +#. Label of the apply_tds (Check) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Consider for Tax Withholding " +msgstr "" + +#. Label of the included_in_paid_amount (Check) field in DocType 'Advance Taxes +#. and Charges' +#. Label of the included_in_paid_amount (Check) field in DocType 'Purchase +#. Taxes and Charges' +#. Label of the included_in_paid_amount (Check) field in DocType 'Sales Taxes +#. and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Considered In Paid Amount" +msgstr "" + +#. Label of the combine_items (Check) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Consolidate Sales Order Items" +msgstr "" + +#. Label of the combine_sub_items (Check) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Consolidate Sub Assembly Items" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +msgid "Consolidated" +msgstr "" + +#. Label of the consolidated_credit_note (Link) field in DocType 'POS Invoice +#. Merge Log' +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +msgid "Consolidated Credit Note" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +msgid "Consolidated Financial Statement" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Consolidated Report" +msgstr "" + +#. Label of the consolidated_invoice (Link) field in DocType 'POS Invoice' +#. Label of the consolidated_invoice (Link) field in DocType 'POS Invoice Merge +#. Log' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:277 +msgid "Consolidated Sales Invoice" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.json +msgid "Consolidated Trial Balance" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:71 +msgid "Consolidated Trial Balance can be generated for Companies having same root Company." +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:167 +msgid "Consolidated Trial balance could not be generated as Exchange Rate from {0} to {1} is not available for {2}." +msgstr "" + +#. Option for the 'Lead Type' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/setup/setup_wizard/data/designation.txt:8 +msgid "Consultant" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:14 +msgid "Consulting" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:64 +msgid "Consumable" +msgstr "" + +#: erpnext/patches/v16_0/make_workstation_operating_components.py:48 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:315 +msgid "Consumables" +msgstr "" + +#. Label of the consume_components_section (Section Break) field in DocType +#. 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Consume Components" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Serial No' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:60 +msgid "Consumed" +msgstr "" + +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:62 +msgid "Consumed Amount" +msgstr "" + +#. Label of the asset_items_total (Currency) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Consumed Asset Total Value" +msgstr "" + +#. Label of the section_break_26 (Section Break) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Consumed Assets" +msgstr "" + +#. Label of the supplied_items (Table) field in DocType 'Purchase Receipt' +#. Label of the supplied_items (Table) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Consumed Items" +msgstr "" + +#. Label of the consumed_items_cost (Currency) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Consumed Items Cost" +msgstr "" + +#. Label of the consumed_qty (Float) field in DocType 'Job Card Item' +#. Label of the consumed_qty (Float) field in DocType 'Work Order Item' +#. Label of the consumed_qty (Float) field in DocType 'Stock Reservation Entry' +#. Label of the consumed_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the consumed_qty (Float) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the consumed_qty (Float) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:145 +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:59 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:146 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:61 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Consumed Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 +msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgstr "" + +#. Label of the consumed_quantity (Data) field in DocType 'Asset Repair +#. Consumed Item' +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +msgid "Consumed Quantity" +msgstr "" + +#. Label of the section_break_16 (Section Break) field in DocType 'Asset +#. Capitalization' +#. Label of the stock_consumption_details_section (Section Break) field in +#. DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Consumed Stock Items" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:283 +msgid "Consumed Stock Items, Consumed Asset Items or Consumed Service Items is mandatory for Capitalization" +msgstr "" + +#. Label of the stock_items_total (Currency) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Consumed Stock Total Value" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136 +msgid "Consumed quantity of item {0} exceeds transferred quantity." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:15 +msgid "Consumer Products" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:198 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:101 +msgid "Consumption Rate" +msgstr "" + +#. Label of the contact_desc (HTML) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Contact Desc" +msgstr "" + +#. Label of the contact_html (HTML) field in DocType 'Bank' +#. Label of the contact_html (HTML) field in DocType 'Bank Account' +#. Label of the contact_html (HTML) field in DocType 'Shareholder' +#. Label of the contact_html (HTML) field in DocType 'Supplier' +#. Label of the contact_html (HTML) field in DocType 'Lead' +#. Label of the contact_html (HTML) field in DocType 'Opportunity' +#. Label of the contact_html (HTML) field in DocType 'Prospect' +#. Label of the contact_html (HTML) field in DocType 'Customer' +#. Label of the contact_html (HTML) field in DocType 'Sales Partner' +#. Label of the contact_html (HTML) field in DocType 'Manufacturer' +#. Label of the contact_html (HTML) field in DocType 'Warehouse' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Contact HTML" +msgstr "" + +#. Label of the contact_info_tab (Section Break) field in DocType 'Lead' +#. Label of the contact_info (Section Break) field in DocType 'Maintenance +#. Schedule' +#. Label of the contact_info_section (Section Break) field in DocType +#. 'Maintenance Visit' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Contact Info" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Delivery +#. Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Contact Information" +msgstr "" + +#. Label of the contact_list (Code) field in DocType 'Shareholder' +#: erpnext/accounts/doctype/shareholder/shareholder.json +msgid "Contact List" +msgstr "" + +#. Label of the contact_mobile (Data) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Contact Mobile" +msgstr "" + +#. Label of the contact_mobile (Small Text) field in DocType 'Purchase Order' +#. Label of the contact_mobile (Small Text) field in DocType 'Subcontracting +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Contact Mobile No" +msgstr "" + +#. Label of the contact_display (Small Text) field in DocType 'Purchase Order' +#. Label of the contact (Link) field in DocType 'Delivery Stop' +#. Label of the contact_display (Small Text) field in DocType 'Subcontracting +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Contact Name" +msgstr "" + +#. Label of the contact_no (Data) field in DocType 'Sales Team' +#: erpnext/selling/doctype/sales_team/sales_team.json +msgid "Contact No." +msgstr "" + +#. Label of the contact_person (Link) field in DocType 'Dunning' +#. Label of the contact_person (Link) field in DocType 'POS Invoice' +#. Label of the contact_person (Link) field in DocType 'Purchase Invoice' +#. Label of the contact_person (Link) field in DocType 'Sales Invoice' +#. Label of the contact_person (Link) field in DocType 'Supplier Quotation' +#. Label of the contact_person (Link) field in DocType 'Opportunity' +#. Label of the contact_person (Link) field in DocType 'Prospect Opportunity' +#. Label of the contact_person (Link) field in DocType 'Maintenance Schedule' +#. Label of the contact_person (Link) field in DocType 'Maintenance Visit' +#. Label of the contact_person (Link) field in DocType 'Installation Note' +#. Label of the contact_person (Link) field in DocType 'Quotation' +#. Label of the contact_person (Link) field in DocType 'Sales Order' +#. Label of the contact_person (Link) field in DocType 'Delivery Note' +#. Label of the contact_person (Link) field in DocType 'Purchase Receipt' +#. Label of the contact_person (Link) field in DocType 'Subcontracting Receipt' +#. Label of the contact_person (Link) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Contact Person" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:220 +msgid "Contact Person does not belong to the {0}" +msgstr "" + +#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule +#. Description Conditions' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:200 +#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json +msgid "Contains" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Contra Entry" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/workspace_sidebar/crm.json +msgid "Contract" +msgstr "" + +#. Label of the sb_contract (Section Break) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Contract Details" +msgstr "" + +#. Label of the contract_end_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Contract End Date" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json +msgid "Contract Fulfilment Checklist" +msgstr "" + +#. Label of the sb_terms (Section Break) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Contract Period" +msgstr "" + +#. Label of the contract_template (Link) field in DocType 'Contract' +#. Name of a DocType +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "Contract Template" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.json +msgid "Contract Template Fulfilment Terms" +msgstr "" + +#. Label of the contract_template_help (HTML) field in DocType 'Contract +#. Template' +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "Contract Template Help" +msgstr "" + +#. Label of the contract_terms (Text Editor) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Contract Terms" +msgstr "" + +#. Label of the contract_terms (Text Editor) field in DocType 'Contract +#. Template' +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "Contract Terms and Conditions" +msgstr "" + +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:75 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:131 +msgid "Contribution %" +msgstr "" + +#. Label of the allocated_percentage (Float) field in DocType 'Sales Team' +#: erpnext/selling/doctype/sales_team/sales_team.json +msgid "Contribution (%)" +msgstr "" + +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:87 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:139 +msgid "Contribution Amount" +msgstr "" + +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:133 +msgid "Contribution Qty" +msgstr "" + +#. Label of the allocated_amount (Currency) field in DocType 'Sales Team' +#: erpnext/selling/doctype/sales_team/sales_team.json +msgid "Contribution to Net Total" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Control Action" +msgstr "" + +#. Label of the control_action_for_cumulative_expense_section (Section Break) +#. field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Control Action for Cumulative Expense" +msgstr "" + +#. Label of the control_historical_stock_transactions_section (Section Break) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Control Historical Stock Transactions" +msgstr "" + +#. Description of the 'Based On' (Select) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry." +msgstr "" + +#. Description of the 'Tax Category' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Controls which tax template is auto-applied when this customer is selected on a transaction." +msgstr "" + +#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program' +#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt +#. Item Supplied' +#. Label of the conversion_factor (Float) field in DocType 'BOM Creator Item' +#. Label of the conversion_factor (Float) field in DocType 'BOM Item' +#. Label of the conversion_factor (Float) field in DocType 'BOM Secondary Item' +#. Label of the conversion_factor (Float) field in DocType 'Material Request +#. Plan Item' +#. Label of the conversion_factor (Float) field in DocType 'Delivery Schedule +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Packed Item' +#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Putaway Rule' +#. Label of the conversion_factor (Float) field in DocType 'Stock Entry Detail' +#. Label of the conversion_factor (Float) field in DocType 'UOM Conversion +#. Detail' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting BOM' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting +#. Inward Order Item' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting +#. Order Item' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting +#. Order Supplied Item' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting +#. Receipt Item' +#. Label of the conversion_factor (Float) field in DocType 'Subcontracting +#. Receipt Supplied Item' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/public/js/utils.js:898 +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Conversion Factor" +msgstr "" + +#. Label of the conversion_rate (Float) field in DocType 'Dunning' +#. Label of the conversion_rate (Float) field in DocType 'BOM' +#. Label of the conversion_rate (Float) field in DocType 'BOM Creator' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:93 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Conversion Rate" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:461 +msgid "Conversion factor for default Unit of Measure must be 1 in row {0}" +msgstr "" + +#: erpnext/controllers/stock_controller.py:77 +msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1386 +msgid "Conversion rate cannot be 0" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1393 +msgid "Conversion rate is 1.00, but document currency is different from company currency" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1389 +msgid "Conversion rate must be 1.00 if document currency is same as company currency" +msgstr "" + +#. Label of the clean_description_html (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Convert Item description to clean HTML in transactions" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:124 +#: erpnext/accounts/doctype/cost_center/cost_center.js:123 +msgid "Convert to Group" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.js:53 +msgctxt "Warehouse" +msgid "Convert to Group" +msgstr "" + +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.js:10 +msgid "Convert to Item Based Reposting" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.js:52 +msgctxt "Warehouse" +msgid "Convert to Ledger" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:96 +#: erpnext/accounts/doctype/cost_center/cost_center.js:121 +msgid "Convert to Non-Group" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Lead' +#. Option for the 'Status' (Select) field in DocType 'Opportunity' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/lead_details/lead_details.js:40 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:73 +msgid "Converted" +msgstr "" + +#. Label of the copied_from (Data) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Copied From" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:83 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:76 +msgid "Copied to clipboard" +msgstr "" + +#. Label of the copy_attachments_to_transaction (Check) field in DocType 'Terms +#. and Conditions' +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +msgid "Copy Attachments to Transaction" +msgstr "" + +#. Label of the copy_fields_to_variant (Section Break) field in DocType 'Item +#. Variant Settings' +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Copy Fields to Variant" +msgstr "" + +#. Option for the 'Corrective/Preventive' (Select) field in DocType 'Quality +#. Action' +#: erpnext/quality_management/doctype/quality_action/quality_action.json +msgid "Corrective" +msgstr "" + +#. Label of the corrective_action (Text Editor) field in DocType 'Non +#. Conformance' +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +msgid "Corrective Action" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:446 +msgid "Corrective Job Card" +msgstr "" + +#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job +#. Card' +#: erpnext/manufacturing/doctype/job_card/job_card.js:455 +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Corrective Operation" +msgstr "" + +#. Label of the corrective_operation_cost (Currency) field in DocType 'Work +#. Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Corrective Operation Cost" +msgstr "" + +#. Label of the corrective_preventive (Select) field in DocType 'Quality +#. Action' +#: erpnext/quality_management/doctype/quality_action/quality_action.json +msgid "Corrective/Preventive" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:16 +msgid "Cosmetics" +msgstr "" + +#. Label of the cost (Currency) field in DocType 'Subscription Plan' +#. Label of the cost (Currency) field in DocType 'BOM Secondary Item' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +msgid "Cost" +msgstr "" + +#. Label of the cost_allocation (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Cost Allocation" +msgstr "" + +#. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +msgid "Cost Allocation %" +msgstr "" + +#. Label of the cost_allocation__process_loss_section (Section Break) field in +#. DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Cost Allocation / Process Loss" +msgstr "" + +#. Label of the cost_center (Link) field in DocType 'Account Closing Balance' +#. Label of the cost_center (Link) field in DocType 'Advance Taxes and Charges' +#. Option for the 'Budget Against' (Select) field in DocType 'Budget' +#. Label of the cost_center (Link) field in DocType 'Budget' +#. Name of a DocType +#. Label of the cost_center (Link) field in DocType 'Cost Center Allocation +#. Percentage' +#. Label of the cost_center (Link) field in DocType 'Dunning' +#. Label of the cost_center (Link) field in DocType 'Dunning Type' +#. Label of the cost_center (Link) field in DocType 'GL Entry' +#. Label of the cost_center (Link) field in DocType 'Journal Entry Account' +#. Label of the cost_center (Link) field in DocType 'Journal Entry Template +#. Account' +#. Label of the cost_center (Link) field in DocType 'Loyalty Program' +#. Label of the cost_center (Link) field in DocType 'Opening Invoice Creation +#. Tool' +#. Label of the cost_center (Link) field in DocType 'Opening Invoice Creation +#. Tool Item' +#. Label of the cost_center (Link) field in DocType 'Payment Entry' +#. Label of the cost_center (Link) field in DocType 'Payment Entry Deduction' +#. Label of the cost_center (Link) field in DocType 'Payment Ledger Entry' +#. Label of the cost_center (Link) field in DocType 'Payment Reconciliation' +#. Label of the cost_center (Link) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the cost_center (Link) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the cost_center (Link) field in DocType 'Payment Request' +#. Label of the cost_center (Link) field in DocType 'POS Invoice' +#. Label of the cost_center (Link) field in DocType 'POS Invoice Item' +#. Label of the cost_center (Link) field in DocType 'POS Profile' +#. Label of the cost_center (Link) field in DocType 'Process Payment +#. Reconciliation' +#. Label of the cost_center (Table MultiSelect) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the cost_center_name (Link) field in DocType 'PSOA Cost Center' +#. Label of the cost_center (Link) field in DocType 'Purchase Invoice' +#. Label of the cost_center (Link) field in DocType 'Purchase Invoice Item' +#. Label of the cost_center (Link) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the cost_center (Link) field in DocType 'Sales Invoice' +#. Label of the cost_center (Link) field in DocType 'Sales Invoice Item' +#. Label of the cost_center (Link) field in DocType 'Sales Taxes and Charges' +#. Label of the cost_center (Link) field in DocType 'Shipping Rule' +#. Label of the cost_center (Link) field in DocType 'Subscription' +#. Label of the cost_center (Link) field in DocType 'Subscription Plan' +#. Label of the cost_center (Link) field in DocType 'Asset' +#. Label of the cost_center (Link) field in DocType 'Asset Capitalization' +#. Label of the cost_center (Link) field in DocType 'Asset Capitalization Asset +#. Item' +#. Label of the cost_center (Link) field in DocType 'Asset Capitalization +#. Service Item' +#. Label of the cost_center (Link) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the cost_center (Link) field in DocType 'Asset Repair' +#. Label of the cost_center (Link) field in DocType 'Asset Value Adjustment' +#. Label of the cost_center (Link) field in DocType 'Purchase Order' +#. Label of the cost_center (Link) field in DocType 'Purchase Order Item' +#. Label of the cost_center (Link) field in DocType 'Request for Quotation +#. Item' +#. Label of the cost_center (Link) field in DocType 'Supplier Quotation' +#. Label of the cost_center (Link) field in DocType 'Supplier Quotation Item' +#. Label of the cost_center (Link) field in DocType 'Sales Order' +#. Label of the cost_center (Link) field in DocType 'Sales Order Item' +#. Label of the cost_center (Link) field in DocType 'Delivery Note' +#. Label of the cost_center (Link) field in DocType 'Delivery Note Item' +#. Label of the cost_center (Link) field in DocType 'Landed Cost Item' +#. Label of the cost_center (Link) field in DocType 'Material Request Item' +#. Label of the cost_center (Link) field in DocType 'Purchase Receipt' +#. Label of the cost_center (Link) field in DocType 'Purchase Receipt Item' +#. Label of the cost_center (Link) field in DocType 'Stock Entry' +#. Label of the cost_center (Link) field in DocType 'Stock Entry Detail' +#. Label of the cost_center (Link) field in DocType 'Stock Reconciliation' +#. Label of the cost_center (Link) field in DocType 'Subcontracting Order' +#. Label of the cost_center (Link) field in DocType 'Subcontracting Order Item' +#. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt' +#. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt +#. Item' +#. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#. Label of a Workspace Sidebar Item +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:591 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:650 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1179 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1223 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:593 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:673 +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.json +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:28 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:47 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:30 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:47 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:42 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 +#: erpnext/accounts/report/general_ledger/general_ledger.js:154 +#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/gross_profit/gross_profit.js:68 +#: erpnext/accounts/report/gross_profit/gross_profit.py:395 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 +#: erpnext/accounts/report/purchase_register/purchase_register.js:46 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:30 +#: erpnext/accounts/report/sales_register/sales_register.js:52 +#: erpnext/accounts/report/sales_register/sales_register.py:252 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:79 +#: erpnext/accounts/report/trial_balance/trial_balance.js:49 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:29 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:525 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/public/js/financial_statements.js:475 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/workspace_sidebar/budget.json +msgid "Cost Center" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/budget.json +msgid "Cost Center Allocation" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.json +msgid "Cost Center Allocation Percentage" +msgstr "" + +#. Label of the allocation_percentages (Table) field in DocType 'Cost Center +#. Allocation' +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json +msgid "Cost Center Allocation Percentages" +msgstr "" + +#. Label of the cost_center_name (Data) field in DocType 'Cost Center' +#: erpnext/accounts/doctype/cost_center/cost_center.json +msgid "Cost Center Name" +msgstr "" + +#. Label of the cost_center_number (Data) field in DocType 'Cost Center' +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:38 +msgid "Cost Center Number" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Cost Center and Budgeting" +msgstr "" + +#: erpnext/public/js/utils/sales_common.js:540 +msgid "Cost Center for Item rows has been updated to {0}" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:75 +msgid "Cost Center is a part of Cost Center Allocation, hence cannot be converted to a group" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1220 +msgid "Cost Center is required" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 +msgid "Cost Center is required in row {0} in Taxes table for type {1}" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:72 +msgid "Cost Center with Allocation records can not be converted to a group" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:78 +msgid "Cost Center with existing transactions can not be converted to group" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:63 +msgid "Cost Center with existing transactions can not be converted to ledger" +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:152 +msgid "Cost Center {0} cannot be used for allocation as it is used as main cost center in other allocation record." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:358 +msgid "Cost Center {} doesn't belong to Company {}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:365 +msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" + +#: erpnext/accounts/report/financial_statements.py:685 +msgid "Cost Center: {0} does not exist" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:129 +msgid "Cost Centers" +msgstr "" + +#. Label of the currency_detail (Section Break) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Cost Configuration" +msgstr "" + +#. Label of the cost_per_unit (Float) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Cost Per Unit" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:474 +msgid "Cost allocation between finished goods and secondary items should equal 100%" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:8 +msgid "Cost and Freight" +msgstr "" + +#. Description of the 'Buying Cost Center' (Link) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Cost center used for tracking purchase expenses for this item" +msgstr "" + +#. Description of the 'Selling Cost Center' (Link) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Cost center used for tracking sales revenue for this item" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:42 +msgid "Cost of Delivered Items" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the cost_of_good_sold_section (Section Break) field in DocType +#. 'Item Default' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148 +#: erpnext/accounts/report/account_balance/account_balance.js:43 +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Cost of Goods Sold" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:41 +msgid "Cost of Issued Items" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.json +msgid "Cost of Poor Quality Report" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40 +msgid "Cost of Purchased Items" +msgstr "" + +#: erpnext/config/projects.py:67 +msgid "Cost of various activities" +msgstr "" + +#. Label of the ctc (Currency) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Cost to Company (CTC)" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:9 +msgid "Cost, Insurance and Freight" +msgstr "" + +#. Label of the costing (Tab Break) field in DocType 'BOM' +#. Label of the currency_detail (Section Break) field in DocType 'BOM Creator' +#. Label of the costing_section (Section Break) field in DocType 'BOM +#. Operation' +#. Label of the costing_tab (Tab Break) field in DocType 'Project' +#. Label of the sb_costing (Section Break) field in DocType 'Task' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Costing" +msgstr "" + +#. Label of the costing_amount (Currency) field in DocType 'Timesheet Detail' +#. Label of the base_costing_amount (Currency) field in DocType 'Timesheet +#. Detail' +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Costing Amount" +msgstr "" + +#. Label of the costing_detail (Section Break) field in DocType 'BOM Creator' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Costing Details" +msgstr "" + +#. Label of the costing_rate (Currency) field in DocType 'Activity Cost' +#. Label of the costing_rate (Currency) field in DocType 'Timesheet Detail' +#. Label of the base_costing_rate (Currency) field in DocType 'Timesheet +#. Detail' +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Costing Rate" +msgstr "" + +#. Label of the project_details (Section Break) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Costing and Billing" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:140 +msgid "Costing and Billing fields has been updated" +msgstr "" + +#: erpnext/setup/demo.py:78 +msgid "Could Not Delete Demo Data" +msgstr "" + +#: erpnext/selling/doctype/quotation/mapper.py:265 +msgid "Could not auto create Customer due to the following missing mandatory field(s):" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/services/billing_status.py:52 +msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:972 +msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +msgid "Could not detect the Company for updating Bank Accounts" +msgstr "" + +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:128 +msgid "Could not find a suitable shift to match the difference: {0}" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 +#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 +msgid "Could not find path for " +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 +msgid "Could not re-extract the table." +msgstr "" + +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.py:123 +#: erpnext/accounts/report/financial_statements.py:241 +msgid "Could not retrieve information for {0}." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/CSVRawDataPreview.tsx:65 +msgid "Could not save the column mapping." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:80 +msgid "Could not save the table settings." +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:80 +msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +msgid "Could not solve weighted score function. Make sure the formula is valid." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/CSVRawDataPreview.tsx:88 +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:158 +msgid "Could not update the header row." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Coulomb" +msgstr "" + +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:419 +msgid "Country Code in File does not match with country code set up in the system" +msgstr "" + +#. Label of the country_of_origin (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Country of Origin" +msgstr "" + +#. Name of a DocType +#. Label of the coupon_code (Data) field in DocType 'Coupon Code' +#. Label of the coupon_code (Link) field in DocType 'POS Invoice' +#. Label of the coupon_code (Link) field in DocType 'Sales Invoice' +#. Label of the coupon_code (Link) field in DocType 'Quotation' +#. Label of the coupon_code (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Coupon Code" +msgstr "" + +#. Label of the coupon_code_based (Check) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Coupon Code Based" +msgstr "" + +#. Label of the description (Text Editor) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Coupon Description" +msgstr "" + +#. Label of the coupon_name (Data) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Coupon Name" +msgstr "" + +#. Label of the coupon_type (Select) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Coupon Type" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:63 +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:84 +#: erpnext/templates/form_grid/bank_reconciliation_grid.html:16 +msgid "Cr" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Asset Category' +#: erpnext/assets/onboarding_step/create_asset_category/create_asset_category.json +msgid "Create Asset Category" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Asset Item' +#: erpnext/assets/onboarding_step/create_asset_item/create_asset_item.json +msgid "Create Asset Item" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Asset Location' +#: erpnext/assets/onboarding_step/create_asset_location/create_asset_location.json +msgid "Create Asset Location" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:277 +msgid "Create Bank Entry against" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Bill of Materials' +#: erpnext/manufacturing/onboarding_step/create_bill_of_materials/create_bill_of_materials.json +#: erpnext/subcontracting/onboarding_step/create_bill_of_materials/create_bill_of_materials.json +msgid "Create Bill of Materials" +msgstr "" + +#. Label of the create_chart_of_accounts_based_on (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Create Chart Of Accounts Based On" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Customer' +#: erpnext/selling/onboarding_step/create_customer/create_customer.json +msgid "Create Customer" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Delivery Note' +#: erpnext/selling/onboarding_step/create_delivery_note/create_delivery_note.json +#: erpnext/stock/onboarding_step/create_delivery_note/create_delivery_note.json +msgid "Create Delivery Note" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:63 +msgid "Create Delivery Trip" +msgstr "" + +#: erpnext/utilities/activation.py:139 +msgid "Create Employee" +msgstr "" + +#: erpnext/utilities/activation.py:137 +msgid "Create Employee Records" +msgstr "" + +#: erpnext/utilities/activation.py:138 +msgid "Create Employee records." +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Existing Asset' +#: erpnext/assets/onboarding_step/create_existing_asset/create_existing_asset.json +msgid "Create Existing Asset" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Finished Goods' +#: erpnext/manufacturing/onboarding_step/create_finished_goods/create_finished_goods.json +msgid "Create Finished Good" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/manufacturing/onboarding_step/create_finished_goods/create_finished_goods.json +msgid "Create Finished Goods" +msgstr "" + +#. Label of the is_grouped_asset (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Create Grouped Asset" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:262 +msgid "Create Inter Company Journal Entry" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:55 +msgid "Create Invoices" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Item' +#: erpnext/buying/onboarding_step/create_item/create_item.json +#: erpnext/selling/onboarding_step/create_item/create_item.json +#: erpnext/stock/onboarding_step/create_item/create_item.json +msgid "Create Item" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:199 +msgid "Create Job Card" +msgstr "" + +#. Label of the create_job_card_based_on_batch_size (Check) field in DocType +#. 'Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Create Job Card based on Batch Size" +msgstr "" + +#: erpnext/accounts/doctype/payment_order/payment_order.js:39 +msgid "Create Journal Entries" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.js:18 +msgid "Create Journal Entry" +msgstr "" + +#: erpnext/utilities/activation.py:81 +msgid "Create Lead" +msgstr "" + +#: erpnext/utilities/activation.py:79 +msgid "Create Leads" +msgstr "" + +#. Label of the post_change_gl_entries (Check) field in DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "Create Ledger Entries for Change Amount" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:257 +#: erpnext/selling/doctype/customer/customer.js:289 +msgid "Create Link" +msgstr "" + +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.js:41 +msgid "Create MPS" +msgstr "" + +#. Label of the create_missing_party (Check) field in DocType 'Opening Invoice +#. Creation Tool' +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +msgid "Create Missing Party" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:196 +msgid "Create Multi-level BOM" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:122 +msgid "Create New Contact" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:128 +msgid "Create New Customer" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:134 +msgid "Create New Lead" +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 +msgid "Create New Version" +msgstr "" + +#: banking/src/components/common/LinkFieldCombobox.tsx:284 +msgid "Create New {0}" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Operations' +#: erpnext/manufacturing/onboarding_step/create_operations/create_operations.json +msgid "Create Operation" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/manufacturing/onboarding_step/create_operations/create_operations.json +msgid "Create Operations" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.js:161 +msgid "Create Opportunity" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +msgid "Create POS Opening Entry" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Payment Entry' +#: erpnext/accounts/doctype/payment_request/payment_request.js:66 +#: erpnext/accounts/onboarding_step/create_payment_entry/create_payment_entry.json +msgid "Create Payment Entry" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:866 +msgid "Create Payment Entry for Consolidated POS Invoices." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:539 +msgid "Create Payment Request" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:812 +msgid "Create Pick List" +msgstr "" + +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js:11 +msgid "Create Print Format" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Project' +#: erpnext/projects/onboarding_step/create_project/create_project.json +msgid "Create Project" +msgstr "" + +#: erpnext/crm/doctype/lead/lead_list.js:8 +msgid "Create Prospect" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Purchase Invoice' +#: erpnext/buying/onboarding_step/create_purchase_invoice/create_purchase_invoice.json +msgid "Create Purchase Invoice" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Purchase Order' +#: erpnext/buying/onboarding_step/create_purchase_order/create_purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1749 +#: erpnext/utilities/activation.py:108 +msgid "Create Purchase Order" +msgstr "" + +#: erpnext/utilities/activation.py:106 +msgid "Create Purchase Orders" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Purchase Receipt' +#: erpnext/stock/onboarding_step/create_purchase_receipt/create_purchase_receipt.json +msgid "Create Purchase Receipt" +msgstr "" + +#: erpnext/utilities/activation.py:90 +msgid "Create Quotation" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Raw Materials' +#: erpnext/manufacturing/onboarding_step/create_raw_materials/create_raw_materials.json +#: erpnext/subcontracting/onboarding_step/create_raw_materials/create_raw_materials.json +msgid "Create Raw Material" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/manufacturing/onboarding_step/create_raw_materials/create_raw_materials.json +#: erpnext/subcontracting/onboarding_step/create_raw_materials/create_raw_materials.json +msgid "Create Raw Materials" +msgstr "" + +#. Label of the create_receiver_list (Button) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Create Receiver List" +msgstr "" + +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:44 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:92 +msgid "Create Reposting Entries" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:58 +msgid "Create Reposting Entry" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Sales Invoice' +#: erpnext/accounts/onboarding_step/create_sales_invoice/create_sales_invoice.json +#: erpnext/projects/doctype/timesheet/timesheet.js:55 +#: erpnext/projects/doctype/timesheet/timesheet.js:231 +#: erpnext/projects/doctype/timesheet/timesheet.js:235 +#: erpnext/selling/onboarding_step/create_sales_invoice/create_sales_invoice.json +msgid "Create Sales Invoice" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Sales Order' +#: erpnext/selling/onboarding_step/create_sales_order/create_sales_order.json +#: erpnext/utilities/activation.py:99 +msgid "Create Sales Order" +msgstr "" + +#: erpnext/utilities/activation.py:98 +msgid "Create Sales Orders to help you plan your work and deliver on-time" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Service Item' +#: erpnext/subcontracting/onboarding_step/create_service_item/create_service_item.json +msgid "Create Service Item" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:283 +#: erpnext/stock/doctype/material_request/material_request.js:478 +msgid "Create Stock Entry" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Subcontracted Item' +#: erpnext/subcontracting/onboarding_step/create_subcontracted_item/create_subcontracted_item.json +msgid "Create Subcontracted Item" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Subcontracting Order' +#: erpnext/subcontracting/onboarding_step/create_subcontracting_order/create_subcontracting_order.json +msgid "Create Subcontracting Order" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/subcontracting/onboarding_step/create_subcontracting_po/create_subcontracting_po.json +msgid "Create Subcontracting PO" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Subcontracting PO' +#: erpnext/subcontracting/onboarding_step/create_subcontracting_po/create_subcontracting_po.json +msgid "Create Subcontracting Purchase Order" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/buying/onboarding_step/create_supplier/create_supplier.json +msgid "Create Supplier" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:181 +msgid "Create Supplier Quotation" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Tasks' +#: erpnext/projects/onboarding_step/create_tasks/create_tasks.json +msgid "Create Task" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/projects/onboarding_step/create_tasks/create_tasks.json +msgid "Create Tasks" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:173 +msgid "Create Tax Template" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Timesheet' +#: erpnext/projects/onboarding_step/create_timesheet/create_timesheet.json +#: erpnext/utilities/activation.py:130 +msgid "Create Timesheet" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Transfer Entry' +#: erpnext/stock/onboarding_step/create_transfer_entry/create_transfer_entry.json +msgid "Create Transfer Entry" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:50 +#: erpnext/setup/doctype/employee/employee.js:52 +#: erpnext/utilities/activation.py:119 +msgid "Create User" +msgstr "" + +#. Label of the create_user_automatically (Check) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Create User Automatically" +msgstr "" + +#. Label of the create_user_permission (Check) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.js:65 +#: erpnext/setup/doctype/employee/employee.json +msgid "Create User Permission" +msgstr "" + +#: erpnext/utilities/activation.py:115 +msgid "Create Users" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1308 +msgid "Create Variant" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1113 +#: erpnext/stock/doctype/item/item.js:1157 +msgid "Create Variants" +msgstr "" + +#. Label of an action in the Onboarding Step 'Setup Warehouse' +#: erpnext/stock/onboarding_step/setup_warehouse/setup_warehouse.json +msgid "Create Warehouses" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Create Work Order' +#: erpnext/manufacturing/onboarding_step/create_work_order/create_work_order.json +msgid "Create Work Order" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:10 +msgid "Create Workstation" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:683 +msgid "Create a journal entry for expenses, income or split transactions" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:689 +msgid "Create a new entry based on the rule" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:71 +msgid "Create a new rule to automatically classify transactions." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1140 +#: erpnext/stock/doctype/item/item.js:1301 +msgid "Create a variant with the template image." +msgstr "" + +#: erpnext/stock/stock_ledger.py:2055 +msgid "Create an incoming stock transaction for the Item." +msgstr "" + +#: erpnext/utilities/activation.py:88 +msgid "Create customer quotes" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Delivery Note' +#: erpnext/selling/onboarding_step/create_delivery_note/create_delivery_note.json +msgid "Create delivery note" +msgstr "" + +#. Label of the create_pr_in_draft_status (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Create payment requests in Draft status" +msgstr "" + +#. Label of an action in the Onboarding Step 'Create Supplier' +#: erpnext/buying/onboarding_step/create_supplier/create_supplier.json +msgid "Create supplier" +msgstr "" + +#: erpnext/public/js/bulk_transaction_processing.js:14 +msgid "Create {0} {1} ?" +msgstr "" + +#. Label of the created_by_migration (Check) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Created By Migration" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +msgid "Created {0} scorecards for {1} between:" +msgstr "" + +#. Description of the 'Create User Automatically' (Check) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Creates a User account for this employee using the Preferred, Company, or Personal email." +msgstr "" + +#. Description of the 'Create Grouped Asset' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Creates a single grouped asset instead of individual assets when purchased in bulk." +msgstr "" + +#. Description of the 'Standard Selling Rate' (Currency) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Creates an Item Price automatically when the item is saved" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:140 +msgid "Creating Accounts..." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1624 +msgid "Creating Delivery Note ..." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:715 +msgid "Creating Delivery Schedule..." +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162 +msgid "Creating Dimensions..." +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:92 +msgid "Creating Journal Entries..." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:988 +msgid "Creating Opening Stock Entry..." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.js:42 +msgid "Creating Packing Slip ..." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:61 +msgid "Creating Purchase Invoices ..." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1773 +msgid "Creating Purchase Order ..." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:725 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:471 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:74 +msgid "Creating Purchase Receipt ..." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:603 +msgid "Creating Return of Components ..." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:59 +msgid "Creating Sales Invoices ..." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:87 +msgid "Creating Stock Entry" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1894 +msgid "Creating Subcontracting Inward Order ..." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:486 +msgid "Creating Subcontracting Order ..." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:692 +msgid "Creating Subcontracting Receipt ..." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:85 +msgid "Creating User..." +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:36 +msgid "Creating demo data" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +msgid "Creating {} out of {} {}" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:141 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:154 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:46 +msgid "Creation" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:212 +msgid "Creation of {1}(s) successful" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:229 +msgid "Creation of {0} failed.\n" +"\t\t\t\tCheck Bulk Transaction Log" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:220 +msgid "Creation of {0} partially successful.\n" +"\t\t\t\tCheck Bulk Transaction Log" +msgstr "" + +#. Option for the 'Balance must be' (Select) field in DocType 'Account' +#. Label of the credit (Data) field in DocType 'Bank Transaction Rule Accounts' +#. Label of the credit_in_account_currency (Currency) field in DocType 'Journal +#. Entry Account' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:199 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:594 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:693 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:133 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:140 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:404 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:596 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:711 +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:39 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:11 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:88 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:148 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:441 +#: erpnext/accounts/report/general_ledger/general_ledger.html:167 +#: erpnext/accounts/report/purchase_register/purchase_register.py:243 +#: erpnext/accounts/report/sales_register/sales_register.py:277 +#: erpnext/accounts/report/trial_balance/trial_balance.py:540 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:212 +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:34 +msgid "Credit" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +msgid "Credit (Transaction)" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +msgid "Credit ({0})" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:346 +msgid "Credit Account" +msgstr "" + +#. Label of the credit (Currency) field in DocType 'Account Closing Balance' +#. Label of the credit (Currency) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Credit Amount" +msgstr "" + +#. Label of the credit_in_account_currency (Currency) field in DocType 'Account +#. Closing Balance' +#. Label of the credit_in_account_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Credit Amount in Account Currency" +msgstr "" + +#. Label of the credit_in_reporting_currency (Currency) field in DocType +#. 'Account Closing Balance' +#. Label of the credit_in_reporting_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Credit Amount in Reporting Currency" +msgstr "" + +#. Label of the credit_in_transaction_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Credit Amount in Transaction Currency" +msgstr "" + +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:67 +msgid "Credit Balance" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:258 +msgid "Credit Card" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Credit Card Entry" +msgstr "" + +#. Label of the credit_days (Int) field in DocType 'Payment Schedule' +#. Label of the credit_days (Int) field in DocType 'Payment Term' +#. Label of the credit_days (Int) field in DocType 'Payment Terms Template +#. Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Credit Days" +msgstr "" + +#. Label of the credit_limits (Table) field in DocType 'Customer' +#. Label of the credit_limit (Currency) field in DocType 'Customer Credit +#. Limit' +#. Label of the credit_limit (Currency) field in DocType 'Company' +#. Label of the credit_limits (Table) field in DocType 'Customer Group' +#. Label of the section_credit_limit (Section Break) field in DocType 'Supplier +#. Group' +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:65 +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Credit Limit" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:539 +msgid "Credit Limit Crossed" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50 +msgid "Credit Limit:" +msgstr "" + +#. Label of the invoicing_settings_tab (Tab Break) field in DocType 'Accounts +#. Settings' +#. Label of the credit_limit_section (Section Break) field in DocType 'Customer +#. Group' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Credit Limits" +msgstr "" + +#. Label of the credit_months (Int) field in DocType 'Payment Schedule' +#. Label of the credit_months (Int) field in DocType 'Payment Term' +#. Label of the credit_months (Int) field in DocType 'Payment Terms Template +#. Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Credit Months" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#. Label of the credit_note (Link) field in DocType 'Stock Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:176 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1217 +#: erpnext/controllers/sales_and_purchase_return.py:462 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:89 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/workspace_sidebar/invoicing.json +msgid "Credit Note" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:203 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:137 +msgid "Credit Note Amount" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/services/status.py:73 +msgid "Credit Note Issued" +msgstr "" + +#. Description of the 'Update Outstanding for Self' (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/services/billing_status.py:49 +msgid "Credit Note {0} has been created automatically" +msgstr "" + +#. Label of the credit_to (Link) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:380 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:388 +#: erpnext/controllers/accounts_controller.py:1288 +msgid "Credit To" +msgstr "" + +#. Label of the credit (Currency) field in DocType 'Journal Entry Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Credit in Company Currency" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:505 +#: erpnext/selling/doctype/customer/customer.py:562 +msgid "Credit limit has been crossed for customer {0} ({1}/{2})" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:395 +msgid "Credit limit is already defined for the Company {0}" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:561 +msgid "Credit limit reached for customer {0}" +msgstr "" + +#: erpnext/accounts/utils.py:2854 +msgid "Credit limit warning — submission may be blocked: {0}" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:215 +msgid "Creditor Turnover Ratio" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262 +msgid "Creditors" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:392 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:264 +msgid "Credits" +msgstr "" + +#. Label of the criteria (Table) field in DocType 'Supplier Scorecard Period' +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Criteria" +msgstr "" + +#. Label of the formula (Small Text) field in DocType 'Supplier Scorecard +#. Criteria' +#. Label of the formula (Small Text) field in DocType 'Supplier Scorecard +#. Scoring Criteria' +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Criteria Formula" +msgstr "" + +#. Label of the criteria_name (Data) field in DocType 'Supplier Scorecard +#. Criteria' +#. Label of the criteria_name (Link) field in DocType 'Supplier Scorecard +#. Scoring Criteria' +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Criteria Name" +msgstr "" + +#. Label of the criteria_setup (Section Break) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Criteria Setup" +msgstr "" + +#. Label of the weight (Percent) field in DocType 'Supplier Scorecard Criteria' +#. Label of the weight (Percent) field in DocType 'Supplier Scorecard Scoring +#. Criteria' +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Criteria Weight" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 +msgid "Criteria weights must add up to 100%" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +msgid "Cron Interval should be between 1 and 59 Min" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/website_item_group/website_item_group.json +msgid "Cross Listing of Item in multiple groups" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Centimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Decimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Inch" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Millimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cubic Yard" +msgstr "" + +#. Label of the cumulative_threshold (Float) field in DocType 'Tax Withholding +#. Rate' +#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json +msgid "Cumulative Threshold" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cup" +msgstr "" + +#. Label of a Link in the Invoicing Workspace +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Currency Exchange" +msgstr "" + +#. Label of the currency_exchange_section (Section Break) field in DocType +#. 'Accounts Settings' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Currency Exchange Settings" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/currency_exchange_settings_details/currency_exchange_settings_details.json +msgid "Currency Exchange Settings Details" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/currency_exchange_settings_result/currency_exchange_settings_result.json +msgid "Currency Exchange Settings Result" +msgstr "" + +#: erpnext/setup/doctype/currency_exchange/currency_exchange.py:55 +msgid "Currency Exchange must be applicable for Buying or for Selling." +msgstr "" + +#. Label of the currency_and_price_list (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the currency_and_price_list (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Purchase Order' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Supplier Quotation' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Quotation' +#. Label of the currency_and_price_list (Section Break) field in DocType 'Sales +#. Order' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Delivery Note' +#. Label of the currency_and_price_list (Section Break) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Currency and Price List" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:350 +msgid "Currency can not be changed after making entries using some other currency" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +msgid "Currency filters are currently unsupported in Custom Financial Report." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/services/gl_composer.py:215 +#: erpnext/accounts/doctype/payment_entry/services/gl_composer.py:284 +#: erpnext/accounts/utils.py:2573 +msgid "Currency for {0} must be {1}" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:133 +msgid "Currency of the Closing Account must be {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:680 +msgid "Currency of the price list {0} must be {1} or {2}" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:298 +msgid "Currency should be same as Price List Currency: {0}" +msgstr "" + +#. Label of the current_address (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Current Address" +msgstr "" + +#. Label of the current_accommodation_type (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Current Address Is" +msgstr "" + +#. Label of the current_amount (Currency) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Current Amount" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Current Asset" +msgstr "" + +#. Label of the current_asset_value (Currency) field in DocType 'Asset +#. Capitalization Asset Item' +#. Label of the current_asset_value (Currency) field in DocType 'Asset Value +#. Adjustment' +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +msgid "Current Asset Value" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:11 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:11 +msgid "Current Assets" +msgstr "" + +#. Label of the current_bom (Link) field in DocType 'BOM Update Log' +#. Label of the current_bom (Link) field in DocType 'BOM Update Tool' +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "Current BOM" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 +msgid "Current BOM and New BOM can not be same" +msgstr "" + +#. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate +#. Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Current Exchange Rate" +msgstr "" + +#. Label of the current_invoice_end (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Current Invoice End" +msgstr "" + +#. Label of the current_invoice_start (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Current Invoice Start" +msgstr "" + +#. Label of the current_level (Int) field in DocType 'BOM Update Log' +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +msgid "Current Level" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260 +msgid "Current Liabilities" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Current Liability" +msgstr "" + +#. Label of the current_node (Link) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "Current Node" +msgstr "" + +#. Label of the current_qty (Float) field in DocType 'Stock Reconciliation +#. Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/total_stock_summary/total_stock_summary.py:23 +msgid "Current Qty" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:154 +msgid "Current Ratio" +msgstr "" + +#. Label of the current_serial_and_batch_bundle (Link) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Current Serial / Batch Bundle" +msgstr "" + +#. Label of the current_serial_no (Long Text) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Current Serial No" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:223 +msgid "Current Series" +msgstr "" + +#. Label of the current_state (Select) field in DocType 'Share Balance' +#: erpnext/accounts/doctype/share_balance/share_balance.json +msgid "Current State" +msgstr "" + +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:205 +msgid "Current Status" +msgstr "" + +#. Label of the current_stock (Float) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the current_stock (Float) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/stock/report/item_variant_details/item_variant_details.py:106 +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Current Stock" +msgstr "" + +#. Label of the current_valuation_rate (Currency) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Current Valuation Rate" +msgstr "" + +#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Current tier based on accumulated points. Updated automatically on each invoice." +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.js:90 +msgid "Curves" +msgstr "" + +#. Label of the custodian (Link) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Custodian" +msgstr "" + +#. Label of the custody (Float) field in DocType 'Cashier Closing' +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +msgid "Custody" +msgstr "" + +#. Option for the 'Data Source' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Custom API" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Financial Report +#. Template' +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Custom Financial Statement" +msgstr "" + +#. Label of the custom_remark (Check) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Custom Remark" +msgstr "" + +#. Label of the custom_remarks (Check) field in DocType 'Payment Entry' +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:481 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:345 +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Custom Remarks" +msgstr "" + +#. Label of the custom_delimiters (Check) field in DocType 'Bank Statement +#. Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Custom delimiters" +msgstr "" + +#. Label of the customer (Link) field in DocType 'Bank Guarantee' +#. Label of the customer (Link) field in DocType 'Coupon Code' +#. Label of the customer (Link) field in DocType 'Discounted Invoice' +#. Label of the customer (Link) field in DocType 'Dunning' +#. Label of the customer (Link) field in DocType 'Loyalty Point Entry' +#. Label of the customer (Link) field in DocType 'POS Invoice' +#. Label of the customer (Link) field in DocType 'POS Invoice Merge Log' +#. Option for the 'Merge Invoices Based On' (Select) field in DocType 'POS +#. Invoice Merge Log' +#. Label of the customer (Link) field in DocType 'POS Invoice Reference' +#. Label of the customer (Link) field in DocType 'POS Profile' +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the customer (Link) field in DocType 'Pricing Rule' +#. Label of the customer (Link) field in DocType 'Process Statement Of Accounts +#. Customer' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the customer (Table MultiSelect) field in DocType 'Promotional +#. Scheme' +#. Label of the customer (Link) field in DocType 'Sales Invoice' +#. Label of the customer (Link) field in DocType 'Sales Invoice Reference' +#. Label of the customer (Link) field in DocType 'Tax Rule' +#. Option for the 'Asset Owner' (Select) field in DocType 'Asset' +#. Label of the customer (Link) field in DocType 'Asset' +#. Label of the customer (Link) field in DocType 'Purchase Order' +#. Option for the 'Party Type' (Select) field in DocType 'Contract' +#. Label of the customer (Link) field in DocType 'Maintenance Schedule' +#. Label of the customer (Link) field in DocType 'Maintenance Visit' +#. Label of the customer (Link) field in DocType 'Blanket Order' +#. Label of the customer (Link) field in DocType 'Production Plan' +#. Label of the customer (Link) field in DocType 'Production Plan Sales Order' +#. Label of the customer (Link) field in DocType 'Project' +#. Label of the customer (Link) field in DocType 'Timesheet' +#. Option for the 'Type' (Select) field in DocType 'Quality Feedback' +#. Name of a DocType +#. Label of the customer (Link) field in DocType 'Installation Note' +#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item' +#. Label of the customer (Link) field in DocType 'Sales Order' +#. Label of the customer (Link) field in DocType 'SMS Center' +#. Label of a Link in the Selling Workspace +#. Option for the 'Customer or Item' (Select) field in DocType 'Authorization +#. Rule' +#. Name of a role +#. Label of a Link in the Home Workspace +#. Label of a shortcut in the Home Workspace +#. Label of the customer (Link) field in DocType 'Delivery Note' +#. Label of the customer (Link) field in DocType 'Delivery Stop' +#. Label of the customer (Link) field in DocType 'Item Price' +#. Label of the customer (Link) field in DocType 'Material Request' +#. Label of the customer (Link) field in DocType 'Pick List' +#. Label of the customer (Link) field in DocType 'Serial No' +#. Option for the 'Pickup from' (Select) field in DocType 'Shipment' +#. Label of the pickup_customer (Link) field in DocType 'Shipment' +#. Option for the 'Delivery to' (Select) field in DocType 'Shipment' +#. Label of the delivery_customer (Link) field in DocType 'Shipment' +#. Label of the customer (Link) field in DocType 'Warehouse' +#. Label of the customer (Link) field in DocType 'Subcontracting Inward Order' +#. Label of the customer (Link) field in DocType 'Issue' +#. Option for the 'Entity Type' (Select) field in DocType 'Service Level +#. Agreement' +#. Label of the customer (Link) field in DocType 'Warranty Claim' +#. Label of a field in the issues Web Form +#. Label of the customer (Link) field in DocType 'Call Log' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:411 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:114 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:112 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:134 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:38 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:29 +#: erpnext/accounts/report/general_ledger/general_ledger.html:136 +#: erpnext/accounts/report/gross_profit/gross_profit.py:416 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:38 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:22 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:221 +#: erpnext/accounts/report/pos_register/pos_register.js:44 +#: erpnext/accounts/report/pos_register/pos_register.py:129 +#: erpnext/accounts/report/pos_register/pos_register.py:197 +#: erpnext/accounts/report/sales_register/sales_register.js:21 +#: erpnext/accounts/report/sales_register/sales_register.py:187 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.js:225 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/lead/lead.js:32 +#: erpnext/crm/doctype/opportunity/opportunity.js:99 +#: erpnext/crm/doctype/prospect/prospect.js:8 +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:55 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:98 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/timesheet/timesheet.js:223 +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:46 +#: erpnext/public/js/sales_trends_filters.js:25 +#: erpnext/public/js/sales_trends_filters.js:39 +#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json +#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js:21 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1237 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_calendar.js:19 +#: erpnext/selling/doctype/selling_settings/selling_settings.js:48 +#: erpnext/selling/doctype/sms_center/sms_center.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:320 +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:16 +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:64 +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.js:7 +#: erpnext/selling/report/inactive_customers/inactive_customers.py:97 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:47 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:73 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:37 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:21 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:42 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:241 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:41 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:156 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:53 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:25 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:40 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:52 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:53 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:74 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/territory/territory.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/delivery_note/delivery_note.js:215 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:495 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:489 +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:36 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:121 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:36 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:46 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:534 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/support/report/issue_analytics/issue_analytics.js:69 +#: erpnext/support/report/issue_analytics/issue_analytics.py:37 +#: erpnext/support/report/issue_summary/issue_summary.js:57 +#: erpnext/support/report/issue_summary/issue_summary.py:35 +#: erpnext/support/web_form/issues/issues.json +#: erpnext/telephony/doctype/call_log/call_log.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/home.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/selling.json +#: erpnext/workspace_sidebar/subscription.json +msgid "Customer" +msgstr "" + +#. Label of the customer (Link) field in DocType 'Customer Item' +#: erpnext/accounts/doctype/customer_item/customer_item.json +msgid "Customer " +msgstr "" + +#. Label of the master_name (Dynamic Link) field in DocType 'Authorization +#. Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Customer / Item / Item Group" +msgstr "" + +#. Label of the customer_address (Link) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Customer / Lead Address" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:95 +msgid "Customer > Customer Group > Territory" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Customer Acquisition and Loyalty" +msgstr "" + +#. Label of the customer_address (Link) field in DocType 'Dunning' +#. Label of the customer_address (Link) field in DocType 'POS Invoice' +#. Label of the customer_address (Link) field in DocType 'Sales Invoice' +#. Label of the customer_address (Link) field in DocType 'Maintenance Schedule' +#. Label of the customer_address (Link) field in DocType 'Maintenance Visit' +#. Label of the customer_address (Link) field in DocType 'Installation Note' +#. Label of the customer_address (Link) field in DocType 'Quotation' +#. Label of the customer_address (Link) field in DocType 'Sales Order' +#. Label of the customer_address (Small Text) field in DocType 'Delivery Stop' +#. Label of the customer_address (Link) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Customer Address" +msgstr "" + +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Customer Addresses And Contacts" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274 +msgid "Customer Advances" +msgstr "" + +#. Label of the customer_code (Small Text) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Customer Code" +msgstr "" + +#. Label of the customer_contact_person (Link) field in DocType 'Purchase +#. Order' +#. Label of the customer_contact_display (Small Text) field in DocType +#. 'Purchase Order' +#. Label of the customer_contact (Small Text) field in DocType 'Delivery Stop' +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Customer Contact" +msgstr "" + +#. Label of the customer_contact_email (Code) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Customer Contact Email" +msgstr "" + +#. Label of a Link in the Financial Reports Workspace +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/selling.json +msgid "Customer Credit Balance" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json +msgid "Customer Credit Limit" +msgstr "" + +#. Label of the currency (Link) field in DocType 'Subcontracting Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Customer Currency" +msgstr "" + +#. Label of the customer_defaults_tab (Tab Break) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Customer Defaults" +msgstr "" + +#. Label of the customer_details_section (Section Break) field in DocType +#. 'Appointment' +#. Label of the customer_details (Section Break) field in DocType 'Project' +#. Label of the customer_details (Text) field in DocType 'Customer' +#. Label of the customer_details (Section Break) field in DocType 'Item' +#. Label of the contact_info (Section Break) field in DocType 'Warranty Claim' +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Customer Details" +msgstr "" + +#. Label of the customer_feedback (Small Text) field in DocType 'Maintenance +#. Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Customer Feedback" +msgstr "" + +#. Label of the customer_group (Link) field in DocType 'Customer Group Item' +#. Label of the customer_group (Link) field in DocType 'Loyalty Program' +#. Label of the customer_group (Link) field in DocType 'POS Customer Group' +#. Label of the customer_group (Link) field in DocType 'POS Invoice' +#. Option for the 'Merge Invoices Based On' (Select) field in DocType 'POS +#. Invoice Merge Log' +#. Label of the customer_group (Link) field in DocType 'POS Invoice Merge Log' +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the customer_group (Link) field in DocType 'Pricing Rule' +#. Option for the 'Select Customers By' (Select) field in DocType 'Process +#. Statement Of Accounts' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the customer_group (Table MultiSelect) field in DocType +#. 'Promotional Scheme' +#. Label of the customer_group (Link) field in DocType 'Sales Invoice' +#. Label of the customer_group (Link) field in DocType 'Tax Rule' +#. Label of the customer_group (Link) field in DocType 'Opportunity' +#. Label of the customer_group (Link) field in DocType 'Prospect' +#. Label of a Link in the CRM Workspace +#. Label of the customer_group (Link) field in DocType 'Maintenance Schedule' +#. Label of the customer_group (Link) field in DocType 'Maintenance Visit' +#. Label of the customer_group (Link) field in DocType 'Customer' +#. Label of the customer_group (Link) field in DocType 'Installation Note' +#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item' +#. Label of the customer_group (Link) field in DocType 'Quotation' +#. Label of the customer_group (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Name of a DocType +#. Label of a Link in the Home Workspace +#. Label of the customer_group (Link) field in DocType 'Delivery Note' +#. Label of the customer_group (Link) field in DocType 'Item Customer Detail' +#. Option for the 'Entity Type' (Select) field in DocType 'Service Level +#. Agreement' +#. Label of the customer_group (Link) field in DocType 'Warranty Claim' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/customer_group_item/customer_group_item.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/pos_customer_group/pos_customer_group.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:115 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1245 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:96 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:187 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:56 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:163 +#: erpnext/accounts/report/gross_profit/gross_profit.py:423 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:208 +#: erpnext/accounts/report/sales_register/sales_register.js:27 +#: erpnext/accounts/report/sales_register/sales_register.py:202 +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/public/js/sales_trends_filters.js:26 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/report/inactive_customers/inactive_customers.py:100 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:81 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:30 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:42 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:42 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json +msgid "Customer Group" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/customer_group_item/customer_group_item.json +msgid "Customer Group Item" +msgstr "" + +#. Label of the customer_group_name (Data) field in DocType 'Customer Group' +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Customer Group Name" +msgstr "" + +#. Label of the customer_groups (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Customer Groups" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/customer_item/customer_item.json +msgid "Customer Item" +msgstr "" + +#. Label of the customer_items (Table) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Customer Items" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1236 +msgid "Customer LPO" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:185 +msgid "Customer LPO No." +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Customer Ledger" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +msgid "Customer Ledger Summary" +msgstr "" + +#. Label of the customer_contact_mobile (Small Text) field in DocType 'Purchase +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Customer Mobile No" +msgstr "" + +#. Label of the customer_name (Data) field in DocType 'Dunning' +#. Label of the customer_name (Data) field in DocType 'POS Invoice' +#. Label of the customer_name (Data) field in DocType 'Process Statement Of +#. Accounts Customer' +#. Label of the customer_name (Small Text) field in DocType 'Sales Invoice' +#. Label of the customer_name (Data) field in DocType 'Purchase Order' +#. Label of the customer_name (Data) field in DocType 'Opportunity' +#. Label of the customer_name (Data) field in DocType 'Maintenance Schedule' +#. Label of the customer_name (Data) field in DocType 'Maintenance Visit' +#. Label of the customer_name (Data) field in DocType 'Blanket Order' +#. Label of the customer_name (Data) field in DocType 'Customer' +#. Label of the customer_name (Data) field in DocType 'Quotation' +#. Label of the customer_name (Data) field in DocType 'Sales Order' +#. Option for the 'Customer Naming By' (Select) field in DocType 'Selling +#. Settings' +#. Label of the customer_name (Data) field in DocType 'Delivery Note' +#. Label of the customer_name (Link) field in DocType 'Item Customer Detail' +#. Label of the customer_name (Data) field in DocType 'Pick List' +#. Label of the customer_name (Data) field in DocType 'Subcontracting Inward +#. Order' +#. Label of the customer_name (Data) field in DocType 'Issue' +#. Label of the customer_name (Data) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:157 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:92 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:35 +#: erpnext/accounts/report/gross_profit/gross_profit.py:430 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:228 +#: erpnext/accounts/report/sales_register/sales_register.py:193 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:74 +#: erpnext/selling/report/inactive_customers/inactive_customers.py:98 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:79 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Customer Name" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:22 +msgid "Customer Name: " +msgstr "" + +#. Label of the cust_master_name (Select) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Customer Naming By" +msgstr "" + +#. Label of the customer_number (Data) field in DocType 'Customer Number At +#. Supplier' +#: erpnext/buying/doctype/customer_number_at_supplier/customer_number_at_supplier.json +msgid "Customer Number" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/customer_number_at_supplier/customer_number_at_supplier.json +msgid "Customer Number At Supplier" +msgstr "" + +#. Label of the customer_numbers (Table) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Customer Numbers" +msgstr "" + +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:165 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:80 +msgid "Customer PO" +msgstr "" + +#. Label of the customer_po_details (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the customer_po_details (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the customer_po_details (Section Break) field in DocType 'Delivery +#. Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Customer PO Details" +msgstr "" + +#. Label of the customer_pos_id (Data) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Customer POS ID" +msgstr "" + +#. Label of the portal_users (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Customer Portal Users" +msgstr "" + +#. Label of the customer_primary_address (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Customer Primary Address" +msgstr "" + +#. Label of the customer_primary_contact (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Customer Primary Contact" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Option for the 'Default Material Request Type' (Select) field in DocType +#. 'Item' +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Customer Provided" +msgstr "" + +#. Label of the customer_provided_item_cost (Currency) field in DocType 'Stock +#. Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Customer Provided Item Cost" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:494 +msgid "Customer Service" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:13 +msgid "Customer Service Representative" +msgstr "" + +#. Label of the customer_territory (Link) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Customer Territory" +msgstr "" + +#. Label of the customer_type (Select) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Customer Type" +msgstr "" + +#. Label of the customer_warehouse (Link) field in DocType 'Subcontracting +#. Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Customer Warehouse" +msgstr "" + +#. Label of the target_warehouse (Link) field in DocType 'POS Invoice Item' +#. Label of the target_warehouse (Link) field in DocType 'Sales Order Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Customer Warehouse (Optional)" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:146 +msgid "Customer Warehouse {0} does not belong to Customer {1}." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:1006 +msgid "Customer contact updated successfully." +msgstr "" + +#: erpnext/support/doctype/warranty_claim/warranty_claim.py:55 +msgid "Customer is required" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:136 +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:158 +msgid "Customer isn't enrolled in any Loyalty Program" +msgstr "" + +#. Label of the customer_or_item (Select) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Customer or Item" +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:93 +msgid "Customer required for 'Customerwise Discount'" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:885 +#: erpnext/selling/doctype/sales_order/sales_order.py:392 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:393 +msgid "Customer {0} does not belong to project {1}" +msgstr "" + +#. Label of the customer_item_code (Data) field in DocType 'POS Invoice Item' +#. Label of the customer_item_code (Data) field in DocType 'Sales Invoice Item' +#. Label of the customer_item_code (Data) field in DocType 'Quotation Item' +#. Label of the customer_item_code (Data) field in DocType 'Sales Order Item' +#. Label of the customer_item_code (Data) field in DocType 'Delivery Note Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Customer's Item Code" +msgstr "" + +#. Label of the po_no (Data) field in DocType 'POS Invoice' +#. Label of the po_no (Data) field in DocType 'Sales Invoice' +#. Label of the po_no (Data) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Customer's Purchase Order" +msgstr "" + +#. Label of the po_date (Date) field in DocType 'POS Invoice' +#. Label of the po_date (Date) field in DocType 'Sales Invoice' +#. Label of the po_date (Date) field in DocType 'Sales Order' +#. Label of the po_date (Date) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Customer's Purchase Order Date" +msgstr "" + +#. Label of the po_no (Small Text) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Customer's Purchase Order No" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:8 +msgid "Customer's Vendor" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.json +msgid "Customer-wise Item Price" +msgstr "" + +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:43 +msgid "Customer/Lead Name" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:19 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:21 +msgid "Customer: " +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the customers (Table) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Customers" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/customers_without_any_sales_transactions/customers_without_any_sales_transactions.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Customers Without Any Sales Transactions" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:108 +msgid "Customers not selected." +msgstr "" + +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Customerwise Discount" +msgstr "" + +#. Name of a DocType +#. Label of the customs_tariff_number (Link) field in DocType 'Item' +#. Label of a Link in the Stock Workspace +#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Customs Tariff Number" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Cycle/Second" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:204 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:243 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:146 +msgid "D - E" +msgstr "" + +#. Option for the 'Algorithm' (Select) field in DocType 'Bisect Accounting +#. Statements' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +msgid "DFS" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:750 +msgid "Daily Project Summary for {0}" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:169 +msgid "Daily Reminders" +msgstr "" + +#. Label of the daily_time_to_send (Time) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Daily Time to send" +msgstr "" + +#. Name of a report +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Daily Timesheet Summary" +msgstr "" + +#. Label of the daily_yield (Percent) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Daily Yield (%)" +msgstr "" + +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:15 +msgid "Data Based On" +msgstr "" + +#. Label of the data_import_configuration_section (Section Break) field in +#. DocType 'Bank' +#: erpnext/accounts/doctype/bank/bank.json +msgid "Data Import Configuration" +msgstr "" + +#. Label of a Card Break in the Home Workspace +#: erpnext/setup/workspace/home/home.json +msgid "Data Import and Settings" +msgstr "" + +#. Label of the data_source (Select) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Data Source" +msgstr "" + +#. Label of the receivable_payable_fetch_method (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Data fetch method" +msgstr "" + +#. Label of the date (Date) field in DocType 'Bulk Transaction Log Detail' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "Date " +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:97 +msgid "Date Based On" +msgstr "" + +#. Label of the date_of_retirement (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Date Of Retirement" +msgstr "" + +#. Label of the date_settings (HTML) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Date Settings" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:72 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:92 +msgid "Date must be between {0} and {1}" +msgstr "" + +#. Label of the date_of_birth (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Date of Birth" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:257 +msgid "Date of Birth cannot be greater than today." +msgstr "" + +#. Label of the date_of_commencement (Date) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Date of Commencement" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:110 +msgid "Date of Commencement should be greater than Date of Incorporation" +msgstr "" + +#. Label of the date_of_establishment (Date) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Date of Establishment" +msgstr "" + +#. Label of the date_of_incorporation (Date) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Date of Incorporation" +msgstr "" + +#. Label of the date_of_issue (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Date of Issue" +msgstr "" + +#. Label of the date_of_joining (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Date of Joining" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:272 +msgid "Date of Transaction" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:25 +msgid "Date: {0} to {1}" +msgstr "" + +#. Label of the dates_section (Section Break) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Dates" +msgstr "" + +#. Label of the normal_balances (Table) field in DocType 'Process Period +#. Closing Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "Dates to Process" +msgstr "" + +#. Label of the day_of_week (Select) field in DocType 'Appointment Booking +#. Slots' +#. Label of the day_of_week (Select) field in DocType 'Availability Of Slots' +#. Label of the day_of_week (Select) field in DocType 'Incoming Call Handling +#. Schedule' +#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json +#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json +#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json +msgid "Day Of Week" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:94 +msgid "Day of month" +msgstr "" + +#. Label of the day_to_send (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Day to Send" +msgstr "" + +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment +#. Schedule' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Schedule' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Term' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Term' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Terms +#. Template Detail' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Terms Template Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Day(s) after invoice date" +msgstr "" + +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment +#. Schedule' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Schedule' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Term' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Term' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Terms +#. Template Detail' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Terms Template Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Day(s) after the end of the invoice month" +msgstr "" + +#. Option for the 'Book Deferred entries based on' (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Days" +msgstr "" + +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:52 +#: erpnext/selling/report/inactive_customers/inactive_customers.js:8 +#: erpnext/selling/report/inactive_customers/inactive_customers.py:106 +msgid "Days Since Last Order" +msgstr "" + +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:34 +msgid "Days Since Last order" +msgstr "" + +#. Label of the days_until_due (Int) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Days Until Due" +msgstr "" + +#. Label of the delinked (Check) field in DocType 'Advance Payment Ledger +#. Entry' +#. Label of the delinked (Check) field in DocType 'Payment Ledger Entry' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +msgid "DeLinked" +msgstr "" + +#. Label of the deal_owner (Data) field in DocType 'Prospect Opportunity' +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +msgid "Deal Owner" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:3 +msgid "Dealer" +msgstr "" + +#. Option for the 'Balance must be' (Select) field in DocType 'Account' +#. Label of the debit (Data) field in DocType 'Bank Transaction Rule Accounts' +#. Label of the debit_in_account_currency (Currency) field in DocType 'Journal +#. Entry Account' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:198 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:593 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:673 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:126 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:133 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:403 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:595 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:696 +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:38 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:10 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:81 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:141 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:434 +#: erpnext/accounts/report/general_ledger/general_ledger.html:166 +#: erpnext/accounts/report/purchase_register/purchase_register.py:242 +#: erpnext/accounts/report/sales_register/sales_register.py:276 +#: erpnext/accounts/report/trial_balance/trial_balance.py:533 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:205 +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:27 +msgid "Debit" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +msgid "Debit (Transaction)" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +msgid "Debit ({0})" +msgstr "" + +#. Label of the debit_or_credit_note_posting_date (Date) field in DocType +#. 'Payment Reconciliation Allocation' +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +msgid "Debit / Credit Note Posting Date" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:338 +msgid "Debit Account" +msgstr "" + +#. Label of the debit (Currency) field in DocType 'Account Closing Balance' +#. Label of the debit (Currency) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Debit Amount" +msgstr "" + +#. Label of the debit_in_account_currency (Currency) field in DocType 'Account +#. Closing Balance' +#. Label of the debit_in_account_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Debit Amount in Account Currency" +msgstr "" + +#. Label of the debit_in_reporting_currency (Currency) field in DocType +#. 'Account Closing Balance' +#. Label of the debit_in_reporting_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Debit Amount in Reporting Currency" +msgstr "" + +#. Label of the debit_in_transaction_currency (Currency) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Debit Amount in Transaction Currency" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:178 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1220 +#: erpnext/controllers/sales_and_purchase_return.py:466 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45 +#: erpnext/workspace_sidebar/invoicing.json +msgid "Debit Note" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:205 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:137 +msgid "Debit Note Amount" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Debit Note Issued" +msgstr "" + +#. Description of the 'Update Outstanding for Self' (Check) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Debit Note will update it's own outstanding amount, even if 'Return Against' is specified." +msgstr "" + +#. Label of the debit_to (Link) field in DocType 'POS Invoice' +#. Label of the debit_to (Link) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:769 +#: erpnext/controllers/accounts_controller.py:1288 +msgid "Debit To" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 +msgid "Debit To is required" +msgstr "" + +#: erpnext/accounts/general_ledger.py:462 +msgid "Debit and Credit not equal for {0} #{1}. Difference is {2}." +msgstr "" + +#. Label of the debit (Currency) field in DocType 'Journal Entry Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Debit in Company Currency" +msgstr "" + +#. Label of the debit_to (Link) field in DocType 'Discounted Invoice' +#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json +msgid "Debit to" +msgstr "" + +#. Label of the debit_credit_mismatch (Check) field in DocType 'Ledger Health +#. Monitor' +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +msgid "Debit-Credit Mismatch" +msgstr "" + +#. Label of the debit_credit_mismatch (Check) field in DocType 'Ledger Health' +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +msgid "Debit-Credit mismatch" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Debit/Credit" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:391 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:263 +msgid "Debits" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:172 +msgid "Debt Equity Ratio" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:214 +msgid "Debtor Turnover Ratio" +msgstr "" + +#: erpnext/accounts/party.py:626 +msgid "Debtor/Creditor" +msgstr "" + +#: erpnext/accounts/party.py:629 +msgid "Debtor/Creditor Advance" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:13 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:13 +msgid "Debtors" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Decigram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Decilitre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Decimeter" +msgstr "" + +#: erpnext/public/js/utils/sales_common.js:633 +msgid "Declare Lost" +msgstr "" + +#. Option for the 'Add Or Deduct' (Select) field in DocType 'Advance Taxes and +#. Charges' +#. Option for the 'Add or Deduct' (Select) field in DocType 'Purchase Taxes and +#. Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Deduct" +msgstr "" + +#. Label of the tax_deduction_basis (Select) field in DocType 'Tax Withholding +#. Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Deduct Tax On Basis" +msgstr "" + +#. Label of the source_section (Section Break) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Deducted From" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Lower +#. Deduction Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Deductee Details" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/taxes.json +msgid "Deduction Certificate" +msgstr "" + +#. Label of the deductions_or_loss_section (Section Break) field in DocType +#. 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Deductions or Loss" +msgstr "" + +#. Label of the default_account (Link) field in DocType 'Mode of Payment +#. Account' +#. Label of the account (Link) field in DocType 'Party Account' +#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json +#: erpnext/accounts/doctype/party_account/party_account.json +msgid "Default Account" +msgstr "" + +#. Label of the default_accounts_section (Section Break) field in DocType +#. 'Supplier' +#. Label of the accounts (Table) field in DocType 'Customer' +#. Label of the default_settings (Section Break) field in DocType 'Company' +#. Label of the default_receivable_account (Section Break) field in DocType +#. 'Customer Group' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Default Accounts" +msgstr "" + +#: erpnext/projects/doctype/activity_cost/activity_cost.py:70 +msgid "Default Activity Cost exists for Activity Type - {0}" +msgstr "" + +#. Label of the default_advance_account (Link) field in DocType 'Payment +#. Reconciliation' +#. Label of the default_advance_account (Link) field in DocType 'Process +#. Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "Default Advance Account" +msgstr "" + +#. Label of the default_advance_paid_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/company/company.py:327 +msgid "Default Advance Paid Account" +msgstr "" + +#. Label of the default_advance_received_account (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/company/company.py:316 +msgid "Default Advance Received Account" +msgstr "" + +#. Label of the default_ageing_range (Data) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Default Ageing Range" +msgstr "" + +#. Label of the default_bom (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default BOM" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:504 +msgid "Default BOM ({0}) must be active for this item or its template" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/mapper.py:87 +msgid "Default BOM for {0} not found" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:309 +msgid "Default BOM not found for FG Item {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/mapper.py:83 +msgid "Default BOM not found for Item {0} and Project {1}" +msgstr "" + +#. Label of the default_bank_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Bank Account" +msgstr "" + +#. Label of the billing_rate (Currency) field in DocType 'Activity Type' +#: erpnext/projects/doctype/activity_type/activity_type.json +msgid "Default Billing Rate" +msgstr "" + +#. Label of the buying_price_list (Link) field in DocType 'Buying Settings' +#. Label of the default_buying_price_list (Link) field in DocType 'Import +#. Supplier Invoice' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Default Buying Price List" +msgstr "" + +#. Label of the default_buying_terms (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Buying Terms" +msgstr "" + +#. Label of the default_cash_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Cash Account" +msgstr "" + +#. Label of the default_common_code (Link) field in DocType 'Code List' +#: erpnext/edi/doctype/code_list/code_list.json +msgid "Default Common Code" +msgstr "" + +#. Label of the default_company (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Default Company" +msgstr "" + +#. Label of the cost_center (Link) field in DocType 'Project' +#. Label of the cost_center (Link) field in DocType 'Company' +#: erpnext/projects/doctype/project/project.json +#: erpnext/setup/doctype/company/company.json +msgid "Default Cost Center" +msgstr "" + +#. Label of the default_expense_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Cost of Goods Sold Account" +msgstr "" + +#. Label of the costing_rate (Currency) field in DocType 'Activity Type' +#: erpnext/projects/doctype/activity_type/activity_type.json +msgid "Default Costing Rate" +msgstr "" + +#. Label of the default_currency (Link) field in DocType 'Company' +#. Label of the default_currency (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Default Currency" +msgstr "" + +#. Label of the customer_group (Link) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Default Customer Group" +msgstr "" + +#. Label of the default_deferred_expense_account (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Deferred Expense Account" +msgstr "" + +#. Label of the default_deferred_revenue_account (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Deferred Revenue Account" +msgstr "" + +#. Label of the default_dimension (Dynamic Link) field in DocType 'Accounting +#. Dimension Detail' +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Default Dimension" +msgstr "" + +#. Label of the default_distance_unit (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Default Distance Unit" +msgstr "" + +#. Label of the default_finance_book (Link) field in DocType 'Asset' +#. Label of the default_finance_book (Link) field in DocType 'Company' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/setup/doctype/company/company.json +msgid "Default Finance Book" +msgstr "" + +#. Label of the default_fg_warehouse (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Finished Goods Warehouse" +msgstr "" + +#. Label of the default_holiday_list (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Holiday List" +msgstr "" + +#. Label of the default_in_transit_warehouse (Link) field in DocType 'Company' +#. Label of the default_in_transit_warehouse (Link) field in DocType +#. 'Warehouse' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Default In-Transit Warehouse" +msgstr "" + +#. Label of the default_income_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Income Account" +msgstr "" + +#. Label of the default_inventory_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Inventory Account" +msgstr "" + +#. Label of the item_group (Link) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Default Item Group" +msgstr "" + +#. Label of the default_item_manufacturer (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Item Manufacturer" +msgstr "" + +#. Label of the default_letter_head (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Letter Head (DocType)" +msgstr "" + +#. Label of the default_letter_head_report (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Letter Head (Report)" +msgstr "" + +#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Manufacturer Part No" +msgstr "" + +#. Label of the default_material_request_type (Select) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Material Request Type" +msgstr "" + +#. Label of the default_operating_cost_account (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Operating Cost Account" +msgstr "" + +#. Label of the default_payable_account (Link) field in DocType 'Company' +#. Label of the default_payable_account (Section Break) field in DocType +#. 'Supplier Group' +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Default Payable Account" +msgstr "" + +#. Label of the default_discount_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Payment Discount Account" +msgstr "" + +#. Label of the message (Small Text) field in DocType 'Payment Gateway Account' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +msgid "Default Payment Request Message" +msgstr "" + +#. Label of the payment_terms (Link) field in DocType 'Company' +#. Label of the payment_terms (Link) field in DocType 'Customer Group' +#. Label of the payment_terms (Link) field in DocType 'Supplier Group' +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Default Payment Terms Template" +msgstr "" + +#. Label of the selling_price_list (Link) field in DocType 'Selling Settings' +#. Label of the default_price_list (Link) field in DocType 'Customer Group' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Default Price List" +msgstr "" + +#. Label of the default_priority (Link) field in DocType 'Service Level +#. Agreement' +#. Label of the default_priority (Check) field in DocType 'Service Level +#. Priority' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +#: erpnext/support/doctype/service_level_priority/service_level_priority.json +msgid "Default Priority" +msgstr "" + +#. Label of the default_provisional_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Provisional Account" +msgstr "" + +#. Label of the purchase_uom (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Purchase Unit of Measure" +msgstr "" + +#. Label of the default_valid_till (Data) field in DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Default Quotation Validity Days" +msgstr "" + +#. Label of the default_receivable_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Receivable Account" +msgstr "" + +#. Label of the default_sales_contact (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Sales Contact" +msgstr "" + +#. Label of the sales_uom (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Sales Unit of Measure" +msgstr "" + +#. Label of the default_scrap_warehouse (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Scrap Warehouse" +msgstr "" + +#. Label of the default_selling_terms (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Selling Terms" +msgstr "" + +#. Label of the default_service_level_agreement (Check) field in DocType +#. 'Service Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Default Service Level Agreement" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:161 +msgid "Default Service Level Agreement for {0} already exists." +msgstr "" + +#. Label of the default_source_warehouse (Link) field in DocType 'BOM' +#. Label of the default_warehouse (Link) field in DocType 'BOM Creator' +#. Label of the from_warehouse (Link) field in DocType 'Stock Entry' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Default Source Warehouse" +msgstr "" + +#. Label of the stock_uom (Link) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Default Stock UOM" +msgstr "" + +#. Label of the valuation_method (Select) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Stock Valuation Method" +msgstr "" + +#. Label of the supplier_group (Link) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Default Supplier Group" +msgstr "" + +#. Label of the default_target_warehouse (Link) field in DocType 'BOM' +#. Label of the to_warehouse (Link) field in DocType 'Stock Entry' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Default Target Warehouse" +msgstr "" + +#. Label of the territory (Link) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Default Territory" +msgstr "" + +#. Label of the stock_uom (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Default Unit of Measure" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1382 +msgid "Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You need to either cancel the linked documents or create a new Item." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1362 +msgid "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." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1010 +msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'" +msgstr "" + +#. Label of the valuation_method (Select) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Default Valuation Method" +msgstr "" + +#. Label of the default_warehouse_section (Section Break) field in DocType +#. 'BOM' +#. Label of the section_break_jwgn (Section Break) field in DocType 'Stock +#. Entry' +#. Label of the set_warehouse (Link) field in DocType 'Stock Reconciliation' +#. Label of the default_warehouse (Link) field in DocType 'Stock Settings' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/stock/doctype/item/item.js:950 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Default Warehouse" +msgstr "" + +#. Label of the default_warehouse_for_sales_return (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Default Warehouse for Sales Return" +msgstr "" + +#. Label of the workstation (Link) field in DocType 'Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Default Workstation" +msgstr "" + +#. Description of the 'Default Account' (Link) field in DocType 'Mode of +#. Payment Account' +#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json +msgid "Default account will be automatically updated in POS Invoice when this mode is selected." +msgstr "" + +#. Description of the 'Price List' (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Default price list for buying or selling this item" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Default settings for your stock-related transactions" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:207 +msgid "Default tax templates for sales, purchase and items are created." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:942 +#: erpnext/stock/doctype/item/item.js:954 +msgid "Default warehouse from Item Defaults." +msgstr "" + +#. Description of the 'Time Between Operations (Mins)' (Int) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Default: 10 mins" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:17 +msgid "Defense" +msgstr "" + +#. Label of the deferred_accounting_section (Section Break) field in DocType +#. 'Company' +#. Label of the deferred_accounting_section (Section Break) field in DocType +#. 'Item' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item/item.json +msgid "Deferred Accounting" +msgstr "" + +#. Label of the deferred_accounting_defaults_section (Section Break) field in +#. DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Deferred Accounting Defaults" +msgstr "" + +#. Label of the deferred_accounting_settings_section (Section Break) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Deferred Accounting Settings" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Label of the deferred_expense_section (Section Break) field in DocType +#. 'Purchase Invoice Item' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +msgid "Deferred Expense" +msgstr "" + +#. Label of the deferred_expense_account (Link) field in DocType 'Purchase +#. Invoice Item' +#. Label of the vf_deferred_expense_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Deferred Expense Account" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Label of the deferred_revenue (Section Break) field in DocType 'POS Invoice +#. Item' +#. Label of the deferred_revenue (Section Break) field in DocType 'Sales +#. Invoice Item' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Deferred Revenue" +msgstr "" + +#. Label of the deferred_revenue_account (Link) field in DocType 'POS Invoice +#. Item' +#. Label of the deferred_revenue_account (Link) field in DocType 'Sales Invoice +#. Item' +#. Label of the vf_deferred_revenue_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Deferred Revenue Account" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.json +msgid "Deferred Revenue and Expense" +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:596 +msgid "Deferred accounting failed for some invoices:" +msgstr "" + +#: erpnext/config/projects.py:39 +msgid "Define Project type." +msgstr "" + +#. Description of the 'End of Life' (Date) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Defines the date after which the item can no longer be used in transactions or manufacturing" +msgstr "" + +#. Description of the 'Payment Terms Template' (Link) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Dekagram/Litre" +msgstr "" + +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:130 +msgid "Delay (In Days)" +msgstr "" + +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:333 +msgid "Delay (in Days)" +msgstr "" + +#. Label of the stop_delay (Int) field in DocType 'Delivery Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Delay between Delivery Stops" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:120 +msgid "Delay in payment (Days)" +msgstr "" + +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:157 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:72 +msgid "Delayed Days" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/delayed_item_report/delayed_item_report.json +msgid "Delayed Item Report" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/delayed_order_report/delayed_order_report.json +msgid "Delayed Order Report" +msgstr "" + +#. Name of a report +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Delayed Tasks Summary" +msgstr "" + +#. Label of the delete_linked_ledger_entries (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Delete Accounting and Stock Ledger entries on deletion of transaction" +msgstr "" + +#. Label of the delete_bin_data_status (Select) field in DocType 'Transaction +#. Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Delete Bins" +msgstr "" + +#. Label of the delete_cancelled_entries (Check) field in DocType 'Repost +#. Accounting Ledger' +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json +msgid "Delete Cancelled Ledger Entries" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: erpnext/hooks.py erpnext/public/js/utils/demo.js:5 +msgid "Delete Demo Data" +msgstr "" + +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.js:66 +msgid "Delete Dimension" +msgstr "" + +#. Label of the delete_leads_and_addresses_status (Select) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Delete Leads and Addresses" +msgstr "" + +#. Label of the delete_transactions_status (Select) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/company/company.js:184 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Delete Transactions" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:254 +msgid "Delete all the Transactions for {0}" +msgstr "" + +#. Label of a Link in the ERPNext Settings Workspace +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +msgid "Deleted Documents" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:293 +msgid "Deleting closing balance..." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:148 +msgid "Deleting rule..." +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list.js:28 +msgid "Deleting {0} and all associated Common Code documents..." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +msgid "Deletion in Progress!" +msgstr "" + +#: erpnext/regional/__init__.py:14 +msgid "Deletion is not permitted for country {0}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:216 +msgid "Deletion process restarted" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:97 +msgid "Deletion will start automatically after submission." +msgstr "" + +#. Label of the delimiter_options (Data) field in DocType 'Bank Statement +#. Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Delimiter options" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:335 +msgid "Deliver (Dropship)" +msgstr "" + +#. Label of the deliver_secondary_items (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Deliver secondary Items" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Purchase Order' +#. Option for the 'Status' (Select) field in DocType 'Serial No' +#. Option for the 'Tracking Status' (Select) field in DocType 'Shipment' +#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:20 +#: erpnext/controllers/website_list_for_contact.py:216 +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:61 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Delivered" +msgstr "" + +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:64 +msgid "Delivered Amount" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:10 +msgid "Delivered At Place" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:11 +msgid "Delivered At Place Unloaded" +msgstr "" + +#. Label of the delivered_by_supplier (Check) field in DocType 'POS Invoice +#. Item' +#. Label of the delivered_by_supplier (Check) field in DocType 'Sales Invoice +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Delivered By Supplier" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:12 +msgid "Delivered Duty Paid" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.json +msgid "Delivered Items To Be Billed" +msgstr "" + +#. Label of the delivered_qty (Float) field in DocType 'POS Invoice Item' +#. Label of the delivered_qty (Float) field in DocType 'Sales Invoice Item' +#. Label of the delivered_qty (Float) field in DocType 'Sales Order Item' +#. Label of the delivered_qty (Float) field in DocType 'Serial and Batch Entry' +#. Label of the delivered_qty (Float) field in DocType 'Stock Reservation +#. Entry' +#. Label of the delivered_qty (Float) field in DocType 'Subcontracting Inward +#. Order Item' +#. Label of the delivered_qty (Float) field in DocType 'Subcontracting Inward +#. Order Secondary Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:63 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:131 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +msgid "Delivered Qty" +msgstr "" + +#. Label of the delivered_qty (Float) field in DocType 'Pick List Item' +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Delivered Qty (in Stock UOM)" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:57 +msgid "Delivered Qty cannot be increased by more than {0} for item {1}" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:50 +msgid "Delivered Qty cannot be reduced by more than {0} for item {1}" +msgstr "" + +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:102 +msgid "Delivered Quantity" +msgstr "" + +#. Label of the delivered_by_supplier (Check) field in DocType 'Purchase +#. Invoice Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +msgid "Delivered by Supplier" +msgstr "" + +#. Label of the delivered_by_supplier (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Delivered by Supplier (Drop Ship)" +msgstr "" + +#: erpnext/templates/pages/material_request_info.html:66 +msgid "Delivered: {0}" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Delivery" +msgstr "" + +#. Label of the delivery_date (Date) field in DocType 'Master Production +#. Schedule Item' +#. Label of the delivery_date (Date) field in DocType 'Sales Forecast Item' +#. Label of the delivery_date (Date) field in DocType 'Delivery Schedule Item' +#. Label of the delivery_date (Date) field in DocType 'Sales Order' +#. Label of the delivery_date (Date) field in DocType 'Sales Order Item' +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 +#: erpnext/public/js/utils.js:891 +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:662 +#: erpnext/selling/doctype/sales_order/sales_order.js:1571 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:332 +msgid "Delivery Date" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Delivery +#. Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Delivery Details" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:119 +msgid "Delivery From Date" +msgstr "" + +#. Name of a role +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/vehicle/vehicle.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Delivery Manager" +msgstr "" + +#. Label of the delivery_note (Link) field in DocType 'POS Invoice Item' +#. Label of the delivery_note (Link) field in DocType 'Sales Invoice Item' +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Name of a DocType +#. Label of the delivery_note (Link) field in DocType 'Delivery Stop' +#. Label of the delivery_note (Link) field in DocType 'Packing Slip' +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Label of the delivery_note (Link) field in DocType 'Shipment Delivery Note' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:434 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45 +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:291 +#: erpnext/accounts/report/sales_register/sales_register.py:245 +#: erpnext/selling/doctype/sales_order/sales_order.js:1086 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:81 +#: erpnext/selling/doctype/selling_settings/selling_settings.js:52 +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:54 +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/pick_list/pick_list.js:137 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:59 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:152 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Delivery Note" +msgstr "" + +#. Label of the dn_detail (Data) field in DocType 'POS Invoice Item' +#. Label of the dn_detail (Data) field in DocType 'Sales Invoice Item' +#. Label of the items (Table) field in DocType 'Delivery Note' +#. Name of a DocType +#. Label of the dn_detail (Data) field in DocType 'Packing Slip Item' +#. Label of the delivery_note_item (Data) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Delivery Note Item" +msgstr "" + +#. Label of the delivery_note_no (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Delivery Note No" +msgstr "" + +#. Label of the pi_detail (Data) field in DocType 'Packing Slip Item' +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +msgid "Delivery Note Packed Item" +msgstr "" + +#. Label of a Link in the Selling Workspace +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/report/delivery_note_trends/delivery_note_trends.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Delivery Note Trends" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1022 +msgid "Delivery Note {0} is not submitted" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1240 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75 +msgid "Delivery Notes" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:95 +msgid "Delivery Notes should not be in draft state when submitting a Delivery Trip. The following Delivery Notes are still in draft state: {0}. Please submit them first." +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:150 +msgid "Delivery Notes {0} updated" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:657 +#: erpnext/selling/doctype/sales_order/sales_order.js:684 +msgid "Delivery Schedule" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +msgid "Delivery Schedule Item" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/stock.json +msgid "Delivery Settings" +msgstr "" + +#. Name of a DocType +#. Label of the delivery_stops (Table) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Delivery Stop" +msgstr "" + +#. Label of the delivery_service_stops (Section Break) field in DocType +#. 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Delivery Stops" +msgstr "" + +#. Label of the delivery_to (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Delivery To" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:125 +msgid "Delivery To Date" +msgstr "" + +#. Label of the delivery_trip (Link) field in DocType 'Delivery Note' +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/delivery_note/delivery_note.js:280 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Delivery Trip" +msgstr "" + +#. Name of a role +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/vehicle/vehicle.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Delivery User" +msgstr "" + +#. Label of the delivery_warehouse (Link) field in DocType 'Subcontracting +#. Inward Order Item' +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +msgid "Delivery Warehouse" +msgstr "" + +#. Label of the heading_delivery_to (Heading) field in DocType 'Shipment' +#. Label of the delivery_to_type (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Delivery to" +msgstr "" + +#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in +#. DocType 'Master Production Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:233 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:312 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:377 +msgid "Demand" +msgstr "" + +#. Label of the demand_qty (Float) field in DocType 'Sales Forecast Item' +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1016 +msgid "Demand Qty" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:324 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:389 +msgid "Demand vs Supply" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:551 +msgid "Demo Bank Account" +msgstr "" + +#. Label of the demo_company (Link) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Demo Company" +msgstr "" + +#: erpnext/setup/demo.py:51 +msgid "Demo Data creation failed." +msgstr "" + +#: erpnext/public/js/utils/demo.js:25 +msgid "Demo data cleared" +msgstr "" + +#: erpnext/setup/demo.py:42 +msgid "Demo data creation failed. Check notifications for more info." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:18 +msgid "Department Stores" +msgstr "" + +#. Label of the departure_time (Datetime) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Departure Time" +msgstr "" + +#. Label of the dependant_sle_voucher_detail_no (Data) field in DocType 'Stock +#. Ledger Entry' +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Dependant SLE Voucher Detail No" +msgstr "" + +#. Name of a DocType +#: erpnext/projects/doctype/dependent_task/dependent_task.json +msgid "Dependent Task" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:179 +msgid "Dependent Task {0} is not a Template Task" +msgstr "" + +#. Label of the depends_on (Table) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Dependent Tasks" +msgstr "" + +#. Label of the depends_on_tasks (Code) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Depends on Tasks" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the deposit (Currency) field in DocType 'Bank Transaction' +#. Option for the 'Transaction Type' (Select) field in DocType 'Bank +#. Transaction Rule' +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:95 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:162 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:247 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:314 +#: banking/src/pages/BankStatementImporter.tsx:194 +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:60 +msgid "Deposit" +msgstr "" + +#. Label of the daily_prorata_based (Check) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the daily_prorata_based (Check) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Depreciate based on daily pro-rata" +msgstr "" + +#. Label of the shift_based (Check) field in DocType 'Asset Depreciation +#. Schedule' +#. Label of the shift_based (Check) field in DocType 'Asset Finance Book' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Depreciate based on shifts" +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:212 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:450 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:518 +msgid "Depreciated Amount" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset' +#. Group in Asset's connections +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:109 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181 +#: erpnext/accounts/report/account_balance/account_balance.js:44 +#: erpnext/accounts/report/cash_flow/cash_flow.py:170 +#: erpnext/assets/doctype/asset/asset.json +msgid "Depreciation" +msgstr "" + +#. Label of the depreciation_amount (Currency) field in DocType 'Depreciation +#. Schedule' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:167 +#: erpnext/assets/doctype/asset/asset.js:379 +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +msgid "Depreciation Amount" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +msgid "Depreciation Amount during the period" +msgstr "" + +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:149 +msgid "Depreciation Date" +msgstr "" + +#. Label of the section_break_33 (Section Break) field in DocType 'Asset' +#. Label of the depreciation_details_section (Section Break) field in DocType +#. 'Asset Depreciation Schedule' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "Depreciation Details" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +msgid "Depreciation Eliminated due to disposal of assets" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:185 +#: erpnext/assets/doctype/asset/asset.js:122 +msgid "Depreciation Entry" +msgstr "" + +#. Label of the depr_entry_posting_status (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Depreciation Entry Posting Status" +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:136 +msgid "Depreciation Entry against asset {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:261 +msgid "Depreciation Entry against {0} worth {1}" +msgstr "" + +#. Label of the depreciation_expense_account (Link) field in DocType 'Asset +#. Category Account' +#. Label of the depreciation_expense_account (Link) field in DocType 'Company' +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +#: erpnext/setup/doctype/company/company.json +msgid "Depreciation Expense Account" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:308 +msgid "Depreciation Expense Account should be an Income or Expense Account." +msgstr "" + +#. Label of the depreciation_method (Select) field in DocType 'Asset' +#. Label of the depreciation_method (Select) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the depreciation_method (Select) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Depreciation Method" +msgstr "" + +#. Label of the depreciation_options (Section Break) field in DocType 'Asset +#. Category' +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Depreciation Options" +msgstr "" + +#. Label of the depreciation_start_date (Date) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Depreciation Posting Date" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:919 +msgid "Depreciation Posting Date cannot be before Available-for-use Date" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:387 +msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:720 +msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" +msgstr "" + +#. Label of the depreciation_schedule_sb (Section Break) field in DocType +#. 'Asset' +#. Label of the depreciation_schedule_section (Section Break) field in DocType +#. 'Asset Depreciation Schedule' +#. Label of the depreciation_schedule (Table) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the depreciation_schedule_section (Section Break) field in DocType +#. 'Asset Shift Allocation' +#. Label of the depreciation_schedule (Table) field in DocType 'Asset Shift +#. Allocation' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +#: erpnext/workspace_sidebar/assets.json +msgid "Depreciation Schedule" +msgstr "" + +#. Label of the depreciation_schedule_view (HTML) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Depreciation Schedule View" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:485 +msgid "Depreciation cannot be calculated for fully depreciated assets" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +msgid "Depreciation eliminated via reversal" +msgstr "" + +#. Label of the description_rules (Table) field in DocType 'Bank Transaction +#. Rule' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Description Rules" +msgstr "" + +#. Label of the description_of_content (Small Text) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Description of Content" +msgstr "" + +#. Description of the 'Template Name' (Data) field in DocType 'Financial Report +#. Template' +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +msgid "Descriptive name for your template (e.g., 'Standard P&L', 'Detailed Balance Sheet')" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:14 +msgid "Designer" +msgstr "" + +#. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' +#. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Detailed Reason" +msgstr "" + +#. Label of the detected_amount_format (Select) field in DocType 'Bank +#. Statement Import Log' +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:191 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Detected Amount Format" +msgstr "" + +#. Label of the detected_date_format (Data) field in DocType 'Bank Statement +#. Import Log' +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Detected Date Format" +msgstr "" + +#. Label of the detected_header_index (Int) field in DocType 'Bank Statement +#. Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Detected Header Index" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:174 +msgid "Detected Tables" +msgstr "" + +#. Label of the detected_transaction_ending_index (Int) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Detected Transaction Ending Index" +msgstr "" + +#. Label of the detected_transaction_starting_index (Int) field in DocType +#. 'Bank Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Detected Transaction Starting Index" +msgstr "" + +#. Label of the determine_address_tax_category_from (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Determine Address Tax Category from" +msgstr "" + +#. Description of the 'Tax Category' (Link) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Determines which tax rules apply to this supplier" +msgstr "" + +#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Diesel" +msgstr "" + +#. Label of the difference_heading (Heading) field in DocType 'Bisect +#. Accounting Statements' +#. Label of the difference (Float) field in DocType 'Bisect Nodes' +#. Label of the difference (Currency) field in DocType 'POS Closing Entry +#. Detail' +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:106 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:792 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:871 +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:173 +#: erpnext/public/js/bank_reconciliation_tool/number_card.js:30 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:130 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:35 +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:35 +msgid "Difference" +msgstr "" + +#. Label of the difference (Currency) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Difference (Dr - Cr)" +msgstr "" + +#. Label of the difference_account (Link) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the difference_account (Link) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the difference_account (Link) field in DocType 'Asset Value +#. Adjustment' +#. Label of the expense_account (Link) field in DocType 'Stock Entry Detail' +#. Label of the expense_account (Link) field in DocType 'Stock Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:314 +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Difference Account" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:167 +msgid "Difference Account in Items Table" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 +msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 +msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" + +#. Label of the difference_amount (Currency) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the difference_amount (Currency) field in DocType 'Payment +#. Reconciliation Payment' +#. Label of the difference_amount (Currency) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the difference_amount (Currency) field in DocType 'Asset Value +#. Adjustment' +#. Label of the difference_amount (Currency) field in DocType 'Stock +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:329 +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Difference Amount" +msgstr "" + +#. Label of the difference_amount (Currency) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Difference Amount (Company Currency)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:204 +msgid "Difference Amount must be zero" +msgstr "" + +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:49 +msgid "Difference In" +msgstr "" + +#. Label of the gain_loss_posting_date (Date) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the gain_loss_posting_date (Date) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the difference_posting_date (Date) field in DocType 'Purchase +#. Invoice Advance' +#. Label of the difference_posting_date (Date) field in DocType 'Sales Invoice +#. Advance' +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Difference Posting Date" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:120 +msgid "Difference Qty" +msgstr "" + +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:136 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:172 +msgid "Difference Value" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.js:504 +msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +msgid "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." +msgstr "" + +#. Label of the dimension_defaults (Table) field in DocType 'Accounting +#. Dimension' +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json +msgid "Dimension Defaults" +msgstr "" + +#. Label of the dimension_details_tab (Tab Break) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Dimension Details" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:92 +msgid "Dimension Filter" +msgstr "" + +#. Label of the dimension_filter_help (HTML) field in DocType 'Accounting +#. Dimension Filter' +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Dimension Filter Help" +msgstr "" + +#. Label of the label (Data) field in DocType 'Accounting Dimension' +#. Label of the dimension_name (Data) field in DocType 'Inventory Dimension' +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Dimension Name" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.json +msgid "Dimension-wise Accounts Balance Report" +msgstr "" + +#. Label of the dimensions_section (Section Break) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Dimensions" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Direct Expense" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146 +msgid "Direct Expenses" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242 +msgid "Direct Income" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:346 +msgid "Direct return is not allowed for Timesheet." +msgstr "" + +#. Label of the disabled (Check) field in DocType 'Account' +#. Label of the disabled (Check) field in DocType 'Accounting Dimension' +#. Label of the disable (Check) field in DocType 'Pricing Rule' +#. Label of the disable (Check) field in DocType 'Promotional Scheme' +#. Label of the disable (Check) field in DocType 'Promotional Scheme Price +#. Discount' +#. Label of the disable (Check) field in DocType 'Promotional Scheme Product +#. Discount' +#. Label of the disable (Check) field in DocType 'Putaway Rule' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +msgid "Disable" +msgstr "" + +#. Label of the disable_capacity_planning (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Disable Capacity Planning" +msgstr "" + +#. Label of the disable_cumulative_threshold (Check) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Disable Cumulative Threshold" +msgstr "" + +#. Label of the disable_in_words (Check) field in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Disable In Words" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:182 +msgid "Disable Opening Balance Calculation" +msgstr "" + +#. Label of the disable_rounded_total (Check) field in DocType 'POS Profile' +#. Label of the disable_rounded_total (Check) field in DocType 'Purchase +#. Invoice' +#. Label of the disable_rounded_total (Check) field in DocType 'Sales Invoice' +#. Label of the disable_rounded_total (Check) field in DocType 'Purchase Order' +#. Label of the disable_rounded_total (Check) field in DocType 'Supplier +#. Quotation' +#. Label of the disable_rounded_total (Check) field in DocType 'Quotation' +#. Label of the disable_rounded_total (Check) field in DocType 'Sales Order' +#. Label of the disable_rounded_total (Check) field in DocType 'Global +#. Defaults' +#. Label of the disable_rounded_total (Check) field in DocType 'Delivery Note' +#. Label of the disable_rounded_total (Check) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/global_defaults/global_defaults.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Disable Rounded Total" +msgstr "" + +#. Label of the disable_serial_no_and_batch_selector (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Disable Serial No and Batch selector" +msgstr "" + +#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Disable Stock Delivered But Not Billed in Sales Return" +msgstr "" + +#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Disable Transaction Threshold" +msgstr "" + +#. Label of the disable_last_purchase_rate (Check) field in DocType 'Buying +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Disable last purchase rate" +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Financial Report +#. Template' +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +msgid "Disable template to prevent use in reports" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:35 +msgid "Disabled Account Selected" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:97 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:505 +msgid "Disabled Bank Account" +msgstr "" + +#: erpnext/stock/doctype/packed_item/packed_item.py:216 +msgid "Disabled Product Bundle" +msgstr "" + +#: erpnext/stock/utils.py:424 +msgid "Disabled Warehouse {0} cannot be used for this transaction." +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Disabled items cannot be selected in any transaction." +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:118 +msgid "Disabled pricing rules since this {} is an internal transfer" +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:134 +msgid "Disabled tax included prices since this {} is an internal transfer" +msgstr "" + +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 +msgid "Disabled template must not be default template" +msgstr "" + +#. Description of the 'Scan Mode' (Check) field in DocType 'Stock +#. Reconciliation' +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Disables auto-fetching of existing quantity" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/manufacturing/doctype/work_order/work_order.js:1068 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:387 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:430 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Disassemble" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:225 +msgid "Disassemble Order" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:198 +msgid "Disassemble Qty cannot be less than or equal to 0." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:457 +msgid "Disassemble Qty cannot be less than or equal to 0." +msgstr "" + +#. Label of the disassembled_qty (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Disassembled Qty" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:64 +msgid "Disburse Loan" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js:9 +msgid "Disbursed" +msgstr "" + +#. Option for the 'Action on New Invoice' (Select) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Discard Changes and Load New Invoice" +msgstr "" + +#. Label of the discount (Float) field in DocType 'Payment Schedule' +#. Label of the discount (Float) field in DocType 'Payment Term' +#. Label of the discount (Float) field in DocType 'Payment Terms Template +#. Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:406 +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:151 +#: erpnext/templates/form_grid/item_grid.html:71 +msgid "Discount" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_details.js:178 +msgid "Discount (%)" +msgstr "" + +#. Label of the discount_percentage (Percent) field in DocType 'POS Invoice +#. Item' +#. Label of the discount_percentage (Percent) field in DocType 'Sales Invoice +#. Item' +#. Label of the discount_percentage (Percent) field in DocType 'Quotation Item' +#. Label of the discount_percentage (Percent) field in DocType 'Sales Order +#. Item' +#. Label of the discount_percentage (Float) field in DocType 'Delivery Note +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Discount (%) on Price List Rate with Margin" +msgstr "" + +#. Label of the additional_discount_account (Link) field in DocType 'Sales +#. Invoice' +#. Label of the discount_account (Link) field in DocType 'Sales Invoice Item' +#. Label of the default_discount_account (Link) field in DocType 'Item Default' +#. Label of the vf_default_discount_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Discount Account" +msgstr "" + +#. Label of the discount_amount (Currency) field in DocType 'POS Invoice Item' +#. Option for the 'Rate or Discount' (Select) field in DocType 'Pricing Rule' +#. Label of the discount_amount (Currency) field in DocType 'Pricing Rule' +#. Option for the 'Discount Type' (Select) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the discount_amount (Currency) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the discount_amount (Currency) field in DocType 'Sales Invoice +#. Item' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the discount_amount (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the discount_amount (Currency) field in DocType 'Quotation Item' +#. Label of the discount_amount (Currency) field in DocType 'Sales Order Item' +#. Label of the discount_amount (Currency) field in DocType 'Delivery Note +#. Item' +#. Label of the discount_amount (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Discount Amount" +msgstr "" + +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:58 +msgid "Discount Amount in Transaction" +msgstr "" + +#. Label of the discount_date (Date) field in DocType 'Payment Schedule' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +msgid "Discount Date" +msgstr "" + +#. Option for the 'Rate or Discount' (Select) field in DocType 'Pricing Rule' +#. Label of the discount_percentage (Float) field in DocType 'Pricing Rule' +#. Option for the 'Discount Type' (Select) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the discount_percentage (Float) field in DocType 'Promotional +#. Scheme Price Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "Discount Percentage" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:56 +msgid "Discount Percentage can be applied either against a Price List or for all Price List." +msgstr "" + +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:52 +msgid "Discount Percentage in Transaction" +msgstr "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Payment Term' +#. Label of the section_break_8 (Section Break) field in DocType 'Payment Terms +#. Template Detail' +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Discount Settings" +msgstr "" + +#. Label of the discount_type (Select) field in DocType 'Payment Schedule' +#. Label of the discount_type (Select) field in DocType 'Payment Term' +#. Label of the discount_type (Select) field in DocType 'Payment Terms Template +#. Detail' +#. Label of the rate_or_discount (Select) field in DocType 'Promotional Scheme +#. Price Discount' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "Discount Type" +msgstr "" + +#. Label of the discount_validity (Int) field in DocType 'Payment Schedule' +#. Label of the discount_validity (Int) field in DocType 'Payment Term' +#. Label of the discount_validity (Int) field in DocType 'Payment Terms +#. Template Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Discount Validity" +msgstr "" + +#. Label of the discount_validity_based_on (Select) field in DocType 'Payment +#. Schedule' +#. Label of the discount_validity_based_on (Select) field in DocType 'Payment +#. Term' +#. Label of the discount_validity_based_on (Select) field in DocType 'Payment +#. Terms Template Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Discount Validity Based On" +msgstr "" + +#. Label of the discount_and_margin (Section Break) field in DocType 'POS +#. Invoice Item' +#. Label of the section_break_26 (Section Break) field in DocType 'Purchase +#. Invoice Item' +#. Label of the discount_and_margin (Section Break) field in DocType 'Sales +#. Invoice Item' +#. Label of the discount_and_margin_section (Section Break) field in DocType +#. 'Purchase Order Item' +#. Label of the discount_and_margin_section (Section Break) field in DocType +#. 'Supplier Quotation Item' +#. Label of the discount_and_margin (Section Break) field in DocType 'Quotation +#. Item' +#. Label of the discount_and_margin (Section Break) field in DocType 'Sales +#. Order Item' +#. Label of the discount_and_margin (Section Break) field in DocType 'Delivery +#. Note Item' +#. Label of the discount_and_margin_section (Section Break) field in DocType +#. 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Discount and Margin" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:835 +msgid "Discount cannot be greater than 100%" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:416 +msgid "Discount cannot be greater than 100%." +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:91 +msgid "Discount must be less than 100" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 +msgid "Discount of {} applied as per Payment Term" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'Pricing +#. Rule' +#. Label of the section_break_10 (Section Break) field in DocType 'Promotional +#. Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Discount on Other Item" +msgstr "" + +#. Label of the discount_percentage (Percent) field in DocType 'Purchase +#. Invoice Item' +#. Label of the discount_percentage (Percent) field in DocType 'Purchase Order +#. Item' +#. Label of the discount_percentage (Percent) field in DocType 'Supplier +#. Quotation Item' +#. Label of the discount_percentage (Percent) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Discount on Price List Rate (%)" +msgstr "" + +#. Label of the discounted_amount (Currency) field in DocType 'Overdue Payment' +#. Label of the discounted_amount (Currency) field in DocType 'Payment +#. Schedule' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +msgid "Discounted Amount" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json +msgid "Discounted Invoice" +msgstr "" + +#. Label of the sb_2 (Section Break) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Discounts" +msgstr "" + +#. Description of the 'Is Recursive' (Check) field in DocType 'Pricing Rule' +#. Description of the 'Is Recursive' (Check) field in DocType 'Promotional +#. Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Discounts to be applied in sequential ranges like buy 1 get 1, buy 2 get 2, buy 3 get 3 and so on" +msgstr "" + +#. Label of the general_and_payment_ledger_mismatch (Check) field in DocType +#. 'Ledger Health Monitor' +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +msgid "Discrepancy between General and Payment Ledger" +msgstr "" + +#. Label of the discretionary_reason (Data) field in DocType 'Loyalty Point +#. Entry' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +msgid "Discretionary Reason" +msgstr "" + +#. Label of the dislike_count (Float) field in DocType 'Video' +#: erpnext/utilities/doctype/video/video.json +#: erpnext/utilities/report/youtube_interactions/youtube_interactions.py:27 +msgid "Dislikes" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:488 +msgid "Dispatch" +msgstr "" + +#. Label of the dispatch_address_display (Text Editor) field in DocType +#. 'Purchase Invoice' +#. Label of the dispatch_address (Text Editor) field in DocType 'Sales Invoice' +#. Label of the dispatch_address (Link) field in DocType 'Purchase Order' +#. Label of the dispatch_address (Text Editor) field in DocType 'Sales Order' +#. Label of the dispatch_address (Text Editor) field in DocType 'Delivery Note' +#. Label of the dispatch_address_display (Text Editor) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Dispatch Address" +msgstr "" + +#. Label of the dispatch_address_display (Text Editor) field in DocType +#. 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Dispatch Address Details" +msgstr "" + +#. Label of the dispatch_address_name (Link) field in DocType 'Sales Invoice' +#. Label of the dispatch_address_name (Link) field in DocType 'Sales Order' +#. Label of the dispatch_address_name (Link) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Dispatch Address Name" +msgstr "" + +#. Label of the dispatch_address (Link) field in DocType 'Purchase Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Dispatch Address Template" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Delivery +#. Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Dispatch Information" +msgstr "" + +#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:11 +#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:20 +#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:28 +#: erpnext/setup/setup_wizard/operations/defaults_setup.py:58 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:340 +msgid "Dispatch Notification" +msgstr "" + +#. Label of the dispatch_attachment (Link) field in DocType 'Delivery Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Dispatch Notification Attachment" +msgstr "" + +#. Label of the dispatch_template (Link) field in DocType 'Delivery Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Dispatch Notification Template" +msgstr "" + +#. Label of the sb_dispatch (Section Break) field in DocType 'Delivery +#. Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Dispatch Settings" +msgstr "" + +#. Label of the display_data_formatting_section (Section Break) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Display & Data Formatting" +msgstr "" + +#. Label of the display_name (Data) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Display Name" +msgstr "" + +#. Label of the disposal_date (Date) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Disposal Date" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:840 +msgid "Disposal date {0} cannot be before {1} date {2} of the asset." +msgstr "" + +#. Label of the distance (Float) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Distance" +msgstr "" + +#. Label of the uom (Link) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Distance UOM" +msgstr "" + +#. Label of the acc_pay_dist_from_left_edge (Float) field in DocType 'Cheque +#. Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Distance from left edge" +msgstr "" + +#. Label of the acc_pay_dist_from_top_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the date_dist_from_top_edge (Float) field in DocType 'Cheque Print +#. Template' +#. Label of the payer_name_from_top_edge (Float) field in DocType 'Cheque Print +#. Template' +#. Label of the amt_in_words_from_top_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the amt_in_figures_from_top_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the acc_no_dist_from_top_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the signatory_from_top_edge (Float) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Distance from top edge" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Distinct unit of an Item" +msgstr "" + +#. Label of the distribute_additional_costs_based_on (Select) field in DocType +#. 'Subcontracting Order' +#. Label of the distribute_additional_costs_based_on (Select) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Distribute Additional Costs Based On " +msgstr "" + +#. Label of the distribute_charges_based_on (Select) field in DocType 'Landed +#. Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Distribute Charges Based On" +msgstr "" + +#. Label of the distribute_equally (Check) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Distribute Equally" +msgstr "" + +#. Option for the 'Distribute Charges Based On' (Select) field in DocType +#. 'Landed Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Distribute Manually" +msgstr "" + +#. Label of the distributed_discount_amount (Currency) field in DocType 'POS +#. Invoice Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Purchase Invoice Item' +#. Label of the distributed_discount_amount (Currency) field in DocType 'Sales +#. Invoice Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Purchase Order Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Supplier Quotation Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Quotation Item' +#. Label of the distributed_discount_amount (Currency) field in DocType 'Sales +#. Order Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Delivery Note Item' +#. Label of the distributed_discount_amount (Currency) field in DocType +#. 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Distributed Discount Amount" +msgstr "" + +#. Label of the distribution_frequency (Select) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Distribution Frequency" +msgstr "" + +#. Label of the distribution_id (Data) field in DocType 'Monthly Distribution' +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +msgid "Distribution Name" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:2 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:240 +msgid "Distributor" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343 +msgid "Dividends Paid" +msgstr "" + +#. Option for the 'Marital Status' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Divorced" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/report/lead_details/lead_details.js:41 +msgid "Do Not Contact" +msgstr "" + +#. Label of the do_not_explode (Check) field in DocType 'BOM Creator Item' +#. Label of the do_not_explode (Check) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Do Not Explode" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:129 +msgid "Do Not Use Batchwise Valuation" +msgstr "" + +#. Label of the do_not_fetch_incoming_rate_from_serial_no (Check) field in +#. DocType 'Stock Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Do not fetch incoming rate from Serial No" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Do not import" +msgstr "" + +#. Description of the 'Hide Currency Symbol' (Select) field in DocType 'Global +#. Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Do not show any symbol like $ etc next to currencies." +msgstr "" + +#. Label of the do_not_update_serial_batch_on_creation_of_auto_bundle (Check) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Do not update Serial / Batch on creation of auto bundle" +msgstr "" + +#. Label of the do_not_update_variants (Check) field in DocType 'Item Variant +#. Settings' +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Do not update variants on save" +msgstr "" + +#. Label of the do_not_use_batchwise_valuation (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Do not use Batch-wise Valuation" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:957 +msgid "Do you really want to restore this scrapped asset?" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:26 +msgid "Do you still want to enable immutable ledger?" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:109 +msgid "Do you still want to enable negative inventory?" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:42 +msgid "Do you want to change valuation method?" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:158 +msgid "Do you want to notify all the customers by email?" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:334 +msgid "Do you want to submit the material request" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:108 +msgid "Do you want to submit the stock entry?" +msgstr "" + +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 +#: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 +msgid "DocType can be one of them {0}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +msgid "DocType {0} does not exist" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:295 +msgid "DocType {0} with company field '{1}' is already in the list" +msgstr "" + +#. Label of the doctypes_to_delete (Table) field in DocType 'Transaction +#. Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "DocTypes To Delete" +msgstr "" + +#. Description of the 'Excluded DocTypes' (Table) field in DocType 'Transaction +#. Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "DocTypes that will NOT be deleted." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:84 +msgid "DocTypes with a company field:" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:88 +msgid "DocTypes without a company field:" +msgstr "" + +#: erpnext/templates/pages/search_help.py:22 +msgid "Docs Search" +msgstr "" + +#. Label of the document_count (Int) field in DocType 'Transaction Deletion +#. Record To Delete' +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Document Count" +msgstr "" + +#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts +#. Settings' +#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying +#. Settings' +#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling +#. Settings' +#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/public/js/utils/naming_series.js:7 +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Document Naming" +msgstr "" + +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 +msgid "Document No" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Subscription Invoice' +#: erpnext/accounts/doctype/subscription_invoice/subscription_invoice.json +msgid "Document Type " +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66 +msgid "Document Type already used as a dimension" +msgstr "" + +#. Description of the 'Reconciliation queue size' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Documents Processed on each trigger. Queue Size should be between 5 and 100" +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:260 +msgid "Documents: {0} have deferred revenue/expense enabled for them. Cannot repost." +msgstr "" + +#. Label of the dont_create_loyalty_points (Check) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Don't Create Loyalty Points" +msgstr "" + +#. Label of the dont_enforce_free_item_qty (Check) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Don't Enforce Free Item Qty" +msgstr "" + +#. Label of the dont_recompute_tax (Check) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the dont_recompute_tax (Check) field in DocType 'Sales Taxes and +#. Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Don't Recompute Tax" +msgstr "" + +#. Label of the dont_reserve_sales_order_qty_on_sales_return (Check) field in +#. DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Don't reserve Sales Order qty on sales return" +msgstr "" + +#. Label of the doors (Int) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Doors" +msgstr "" + +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Depreciation Schedule' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Double Declining Balance" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:247 +msgid "Download CSV Template" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:145 +msgid "Download PDF for Supplier" +msgstr "" + +#. Label of the download_materials_required (Button) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Download Required Materials" +msgstr "" + +#. Label of the downtime (Data) field in DocType 'Asset Repair' +#. Label of the downtime (Float) field in DocType 'Downtime Entry' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Downtime" +msgstr "" + +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:93 +msgid "Downtime (In Hours)" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Downtime Analysis" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Downtime Entry" +msgstr "" + +#. Label of the downtime_reason_section (Section Break) field in DocType +#. 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Downtime Reason" +msgstr "" + +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:246 +msgid "Dr/Cr" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:298 +msgid "Drag a box to move it, or drag a corner to resize. The table is re-read from the new region automatically." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Dram" +msgstr "" + +#. Name of a DocType +#. Label of the driver (Link) field in DocType 'Delivery Note' +#. Label of the driver (Link) field in DocType 'Delivery Trip' +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Driver" +msgstr "" + +#. Label of the driver_address (Link) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Driver Address" +msgstr "" + +#. Label of the driver_email (Data) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Driver Email" +msgstr "" + +#. Label of the driver_name (Data) field in DocType 'Delivery Note' +#. Label of the driver_name (Data) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Driver Name" +msgstr "" + +#. Label of the class (Data) field in DocType 'Driving License Category' +#: erpnext/setup/doctype/driving_license_category/driving_license_category.json +msgid "Driver licence class" +msgstr "" + +#. Label of the driving_license_categories (Section Break) field in DocType +#. 'Driver' +#: erpnext/setup/doctype/driver/driver.json +msgid "Driving License Categories" +msgstr "" + +#. Label of the driving_license_category (Table) field in DocType 'Driver' +#. Name of a DocType +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/driving_license_category/driving_license_category.json +msgid "Driving License Category" +msgstr "" + +#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item' +#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item' +#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order' +#. Label of the drop_ship_section (Section Break) field in DocType 'Sales Order +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Drop Ship" +msgstr "" + +#: banking/src/components/ui/file-dropzone.tsx:36 +msgid "Drop a file here, or click to select a file" +msgstr "" + +#: banking/src/components/ui/file-dropzone.tsx:36 +msgid "Drop some files here, or click to select files" +msgstr "" + +#: erpnext/accounts/party.py:719 +msgid "Due Date cannot be after {0}" +msgstr "" + +#: erpnext/accounts/party.py:695 +msgid "Due Date cannot be before {0}" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:167 +msgid "Due to stock closing entry {0}, you cannot repost item valuation before {1}" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:158 +#: erpnext/workspace_sidebar/banking.json +msgid "Dunning" +msgstr "" + +#. Label of the dunning_amount (Currency) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "Dunning Amount" +msgstr "" + +#. Label of the base_dunning_amount (Currency) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "Dunning Amount (Company Currency)" +msgstr "" + +#. Label of the dunning_fee (Currency) field in DocType 'Dunning' +#. Label of the dunning_fee (Currency) field in DocType 'Dunning Type' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +msgid "Dunning Fee" +msgstr "" + +#. Label of the text_block_section (Section Break) field in DocType 'Dunning +#. Type' +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +msgid "Dunning Letter" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Dunning Letter Text" +msgstr "" + +#. Label of the dunning_level (Int) field in DocType 'Overdue Payment' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +msgid "Dunning Level" +msgstr "" + +#. Label of the dunning_type (Link) field in DocType 'Dunning' +#. Name of a DocType +#. Label of the dunning_type (Data) field in DocType 'Dunning Type' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +#: erpnext/workspace_sidebar/banking.json +msgid "Dunning Type" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:178 +msgid "Duplicate Customer Group" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:190 +msgid "Duplicate DocType" +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:69 +msgid "Duplicate Entry. Please check Authorization Rule {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:414 +msgid "Duplicate Finance Book" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:172 +msgid "Duplicate Item Group" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:102 +msgid "Duplicate Item Under Same Parent" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:80 +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.py:37 +msgid "Duplicate Operating Component {0} found in Operating Components" +msgstr "" + +#: erpnext/accounts/doctype/pos_settings/pos_settings.py:44 +msgid "Duplicate POS Fields" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:106 +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:64 +msgid "Duplicate POS Invoices found" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:155 +msgid "Duplicate Payment Schedule selected" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:83 +msgid "Duplicate Project with Tasks" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:159 +msgid "Duplicate Sales Invoices found" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1492 +msgid "Duplicate Serial Number Error" +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:80 +msgid "Duplicate Stock Closing Entry" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:177 +msgid "Duplicate customer group found in the customer group table" +msgstr "" + +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.py:44 +msgid "Duplicate entry against the item code {0} and manufacturer {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:189 +msgid "Duplicate entry: {0}{1}" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:172 +msgid "Duplicate item group found in the item group table" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:186 +msgid "Duplicate project has been created" +msgstr "" + +#: erpnext/utilities/transaction_base.py:112 +msgid "Duplicate row {0} with same {1}" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:157 +msgid "Duplicate {0} found in the table" +msgstr "" + +#. Label of the duration (Int) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Duration (Days)" +msgstr "" + +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:67 +msgid "Duration in Days" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291 +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256 +msgid "Duties and Taxes" +msgstr "" + +#. Label of the dynamic_condition_tab (Tab Break) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Dynamic Condition" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Dyne" +msgstr "" + +#: erpnext/regional/italy/utils.py:228 erpnext/regional/italy/utils.py:248 +#: erpnext/regional/italy/utils.py:258 erpnext/regional/italy/utils.py:266 +#: erpnext/regional/italy/utils.py:273 erpnext/regional/italy/utils.py:277 +#: erpnext/regional/italy/utils.py:284 erpnext/regional/italy/utils.py:293 +#: erpnext/regional/italy/utils.py:318 erpnext/regional/italy/utils.py:325 +#: erpnext/regional/italy/utils.py:430 +msgid "E-Invoicing Information Missing" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "EAN" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "EAN-13" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "EAN-8" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "EMU Of Charge" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "EMU of current" +msgstr "" + +#. Label of a Desktop Icon +#: erpnext/desktop_icon/erpnext.json +msgid "ERPNext" +msgstr "" + +#. Label of a Desktop Icon +#. Name of a Workspace +#. Title of a Workspace Sidebar +#: erpnext/desktop_icon/erpnext_settings.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "ERPNext Settings" +msgstr "" + +#. Label of the user_id (Data) field in DocType 'Employee Group Table' +#: erpnext/setup/doctype/employee_group_table/employee_group_table.json +msgid "ERPNext User ID" +msgstr "" + +#. Description of the 'Maintain Stock' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "ERPNext will make a stock ledger entry for each transaction of this item. Keep unchecked for non-stock or service items." +msgstr "" + +#. Option for the 'How often should project be updated of Total Purchase Cost +#. ?' (Select) field in DocType 'Buying Settings' +#. Option for the 'How often should sales data be updated in Company/Project?' +#. (Select) field in DocType 'Selling Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Each Transaction" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.py:223 +msgid "Earliest" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:592 +msgid "Earliest Age" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:32 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:45 +msgid "Earnest Money" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:526 +msgid "Edit BOM" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.html:37 +msgid "Edit Capacity" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:109 +msgid "Edit Cart" +msgstr "" + +#: erpnext/controllers/item_variant.py:213 +msgid "Edit Not Allowed" +msgstr "" + +#: erpnext/public/js/utils/crm_activities.js:186 +msgid "Edit Note" +msgstr "" + +#. Label of the set_posting_time (Check) field in DocType 'POS Invoice' +#. Label of the set_posting_time (Check) field in DocType 'Purchase Invoice' +#. Label of the set_posting_time (Check) field in DocType 'Sales Invoice' +#. Label of the set_posting_time (Check) field in DocType 'Asset +#. Capitalization' +#. Label of the set_posting_time (Check) field in DocType 'Delivery Note' +#. Label of the set_posting_time (Check) field in DocType 'Purchase Receipt' +#. Label of the set_posting_time (Check) field in DocType 'Stock Entry' +#. Label of the set_posting_time (Check) field in DocType 'Stock +#. Reconciliation' +#. Label of the set_posting_time (Check) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/stock/doctype/delivery_note/delivery_note.js:508 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Edit Posting Date and Time" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:290 +msgid "Edit Receipt" +msgstr "" + +#. Label of the override_tax_withholding_entries (Check) field in DocType +#. 'Journal Entry' +#. Label of the override_tax_withholding_entries (Check) field in DocType +#. 'Payment Entry' +#. Label of the override_tax_withholding_entries (Check) field in DocType +#. 'Purchase Invoice' +#. Label of the override_tax_withholding_entries (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Edit Tax Withholding Entries" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/EditRule.tsx:51 +msgid "Edit this rule" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:788 +msgid "Editing {0} is not allowed as per POS Profile settings" +msgstr "" + +#. Label of the education (Table) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/setup_wizard/data/industry_type.txt:19 +msgid "Education" +msgstr "" + +#. Label of the educational_qualification (Section Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Educational Qualification" +msgstr "" + +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:147 +msgid "Either 'Selling' or 'Buying' must be selected" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:290 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:441 +msgid "Either Workstation or Workstation Type is mandatory" +msgstr "" + +#: erpnext/setup/doctype/territory/territory.py:40 +msgid "Either target qty or target amount is mandatory" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.py:54 +msgid "Either target qty or target amount is mandatory." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:677 +msgid "Elapsed Time" +msgstr "" + +#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Electric" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:222 +msgid "Electrical" +msgstr "" + +#: erpnext/patches/v16_0/make_workstation_operating_components.py:47 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:314 +msgid "Electricity" +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Electricity down" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87 +msgid "Electronic Equipment" +msgstr "" + +#. Name of a report +#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.json +msgid "Electronic Invoice Register" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:20 +msgid "Electronics" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ells (UK)" +msgstr "" + +#: erpnext/www/book_appointment/index.html:52 +msgid "Email Address (required)" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:162 +msgid "Email Address must be unique, it is already used in {0}" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/email_campaign/email_campaign.json +#: erpnext/workspace_sidebar/crm.json +msgid "Email Campaign" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:112 +#: erpnext/crm/doctype/email_campaign/email_campaign.py:149 +#: erpnext/crm/doctype/email_campaign/email_campaign.py:157 +msgid "Email Campaign Error" +msgstr "" + +#. Label of the email_campaign_for (Select) field in DocType 'Email Campaign' +#: erpnext/crm/doctype/email_campaign/email_campaign.json +msgid "Email Campaign For " +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:125 +msgid "Email Campaign Send Error" +msgstr "" + +#. Label of the supplier_response_section (Section Break) field in DocType +#. 'Request for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Email Details" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Email Digest" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/email_digest_recipient/email_digest_recipient.json +msgid "Email Digest Recipient" +msgstr "" + +#. Label of the settings (Section Break) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Email Digest Settings" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.js:15 +msgid "Email Digest: {0}" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:50 +msgid "Email Receipt" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:379 +msgid "Email Sent to Supplier {0}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:443 +msgid "Email is required to create a user" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:72 +msgid "Email is required to create a user." +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:174 +msgid "Email or Phone/Mobile of the Contact are mandatory to continue." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:326 +msgid "Email sent successfully." +msgstr "" + +#. Label of the email_sent_to (Data) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Email sent to" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:441 +msgid "Email sent to {0}" +msgstr "" + +#: erpnext/crm/doctype/appointment/appointment.py:114 +msgid "Email verification failed." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 +msgid "Emails Queued" +msgstr "" + +#. Label of the emergency_contact_details (Section Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Emergency Contact" +msgstr "" + +#. Label of the person_to_be_contacted (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Emergency Contact Name" +msgstr "" + +#. Label of the emergency_phone_number (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Emergency Phone" +msgstr "" + +#. Name of a role +#. Label of the employee (Link) field in DocType 'Supplier Scorecard' +#. Option for the 'Party Type' (Select) field in DocType 'Contract' +#. Label of the employee (Table MultiSelect) field in DocType 'Job Card' +#. Label of the employee (Link) field in DocType 'Job Card Time Log' +#. Label of the employee (Link) field in DocType 'Activity Cost' +#. Label of the employee (Link) field in DocType 'Timesheet' +#. Label of the employee (Link) field in DocType 'Driver' +#. Name of a DocType +#. Label of the employee (Data) field in DocType 'Employee' +#. Label of the section_break_00 (Section Break) field in DocType 'Employee +#. Group' +#. Label of the employee_list (Table) field in DocType 'Employee Group' +#. Label of the employee (Link) field in DocType 'Employee Group Table' +#. Label of the employee (Link) field in DocType 'Sales Person' +#. Label of the employee (Link) field in DocType 'Vehicle' +#. Label of the employee (Link) field in DocType 'Delivery Trip' +#. Label of the employee (Link) field in DocType 'Serial No' +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card/job_card_calendar.js:27 +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:328 +#: erpnext/manufacturing/doctype/workstation/workstation.js:359 +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/activity_type/activity_type.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/doctype/timesheet/timesheet_calendar.js:28 +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:24 +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:10 +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:45 +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee_group/employee_group.json +#: erpnext/setup/doctype/employee_group_table/employee_group_table.json +#: erpnext/setup/doctype/sales_person/sales_person.json +#: erpnext/setup/doctype/sales_person/sales_person_tree.js:7 +#: erpnext/setup/doctype/vehicle/vehicle.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Employee" +msgstr "" + +#. Label of the employee_link (Link) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +msgid "Employee " +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Employee Advance" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:26 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:37 +msgid "Employee Advances" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:188 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:327 +msgid "Employee Benefits Obligation" +msgstr "" + +#. Label of the employee_detail (Section Break) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Employee Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Employee Education" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json +msgid "Employee External Work History" +msgstr "" + +#. Label of the employee_group (Link) field in DocType 'Communication Medium +#. Timeslot' +#. Name of a DocType +#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json +#: erpnext/setup/doctype/employee_group/employee_group.json +msgid "Employee Group" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/employee_group_table/employee_group_table.json +msgid "Employee Group Table" +msgstr "" + +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:33 +msgid "Employee ID" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.json +msgid "Employee Internal Work History" +msgstr "" + +#. Label of the employee_name (Data) field in DocType 'Activity Cost' +#. Label of the employee_name (Data) field in DocType 'Timesheet' +#. Label of the employee_name (Data) field in DocType 'Employee Group Table' +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:25 +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:53 +#: erpnext/setup/doctype/employee_group_table/employee_group_table.json +msgid "Employee Name" +msgstr "" + +#. Label of the employee_number (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Employee Number" +msgstr "" + +#. Label of the employee_user_id (Link) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Employee User Id" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:333 +msgid "Employee cannot report to himself." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:583 +msgid "Employee is required" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:109 +msgid "Employee is required while issuing Asset {0}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:440 +msgid "Employee {0} already has a linked user" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:92 +#: erpnext/assets/doctype/asset_movement/asset_movement.py:113 +msgid "Employee {0} does not belong to the company {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:410 +msgid "Employee {0} is currently working on another workstation. Please assign another employee." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:608 +msgid "Employee {0} not found" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:351 +msgid "Employees" +msgstr "" + +#: erpnext/stock/doctype/batch/batch_list.js:16 +msgid "Empty" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +msgid "Empty To Delete List" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ems(Pica)" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2974 +msgid "Enable {0} on the Item master to proceed with {1} inspection." +msgstr "" + +#. Label of the enable_accounting_dimensions (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Accounting Dimensions" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1743 +msgid "Enable Allow Partial Reservation in the Stock Settings to reserve partial stock." +msgstr "" + +#. Label of the enable_scheduling (Check) field in DocType 'Appointment Booking +#. Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Enable Appointment Scheduling" +msgstr "" + +#. Label of the enable_auto_email (Check) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Enable Auto Email" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1171 +msgid "Enable Auto Re-Order" +msgstr "" + +#. Label of the enable_party_matching (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Automatic Party Matching" +msgstr "" + +#. Label of the enable_cwip_accounting (Check) field in DocType 'Asset +#. Category' +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Enable Capital Work in Progress Accounting" +msgstr "" + +#. Label of the enable_common_party_accounting (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Common Party Accounting" +msgstr "" + +#. Label of the enable_deferred_expense (Check) field in DocType 'Purchase +#. Invoice Item' +#. Label of the enable_deferred_expense (Check) field in DocType 'Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/item/item.json +msgid "Enable Deferred Expense" +msgstr "" + +#. Label of the enable_deferred_revenue (Check) field in DocType 'POS Invoice +#. Item' +#. Label of the enable_deferred_revenue (Check) field in DocType 'Sales Invoice +#. Item' +#. Label of the enable_deferred_revenue (Check) field in DocType 'Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/item/item.json +msgid "Enable Deferred Revenue" +msgstr "" + +#. Label of the enable_discounts_and_margin (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Discounts and Margin" +msgstr "" + +#. Label of the enable_european_access (Check) field in DocType 'Plaid +#. Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "Enable European Access" +msgstr "" + +#. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Fuzzy Matching" +msgstr "" + +#. Label of the enable_health_monitor (Check) field in DocType 'Ledger Health +#. Monitor' +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +msgid "Enable Health Monitor" +msgstr "" + +#. Label of the enable_immutable_ledger (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Immutable Ledger" +msgstr "" + +#. Label of the enable_item_wise_inventory_account (Check) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Enable Item-wise Inventory Account" +msgstr "" + +#. Label of the enable_loyalty_point_program (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Loyalty Point Program" +msgstr "" + +#. Label of the enable_opportunity_creation_from_contact_us (Check) field in +#. DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Opportunity Creation from Contact Us" +msgstr "" + +#. Label of the enable_parallel_reposting (Check) field in DocType 'Stock +#. Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Enable Parallel Reposting" +msgstr "" + +#. Label of the enable_perpetual_inventory (Check) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Enable Perpetual Inventory" +msgstr "" + +#. Label of the enable_provisional_accounting_for_non_stock_items (Check) field +#. in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Enable Provisional Accounting For Non Stock Items" +msgstr "" + +#. Label of the enable_separate_reposting_for_gl (Check) field in DocType +#. 'Stock Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Enable Separate Reposting for GL" +msgstr "" + +#: erpnext/stock/report/stock_ledger/stock_ledger.js:122 +msgid "Enable Serial / Batch Bundle" +msgstr "" + +#. Label of the enable_subscription (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Subscription" +msgstr "" + +#. Description of the 'Enable Subscription' (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable Subscription tracking in invoice" +msgstr "" + +#. Label of the enable_utm (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable UTM" +msgstr "" + +#. Description of the 'Enable UTM' (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable Urchin Tracking Module parameters in Quotation, Sales Order, Sales Invoice, POS Invoice, Lead, and Delivery Note." +msgstr "" + +#. Label of the enable_youtube_tracking (Check) field in DocType 'Video +#. Settings' +#: erpnext/utilities/doctype/video_settings/video_settings.json +msgid "Enable YouTube Tracking" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:104 +msgid "Enable automatic party matching" +msgstr "" + +#. Description of the 'Enable Accounting Dimensions' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable cost center, projects and other custom accounting dimensions" +msgstr "" + +#. Label of the enable_cutoff_date_on_bulk_delivery_note_creation (Check) field +#. in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable cut-off date on creating bulk Delivery Notes" +msgstr "" + +#. Label of the enable_discount_accounting (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable discount accounting for selling" +msgstr "" + +#. Description of the 'Include Item In Manufacturing' (Check) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Enable for raw material items used in BOM. Uncheck for additional services like 'washing' used in manufacturing." +msgstr "" + +#. Description of the 'Is Subcontracted Item' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Enable if a vendor manufactures this item for you. You can choose to provide them raw materials using the default BOM." +msgstr "" + +#. Description of the 'Is Fixed Asset' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Enable if this item is a company asset like machinery or furniture." +msgstr "" + +#. Description of the 'Is Customer Provided Item' (Check) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Enable if this item is provided by a customer and received via Stock Entry." +msgstr "" + +#. Description of the 'Consider Rejected Warehouses' (Check) field in DocType +#. 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Enable it if users want to consider rejected materials to dispatch." +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:125 +msgid "Enable party name/description fuzzy matching" +msgstr "" + +#. Label of the enable_stock_reservation (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Enable stock reservation" +msgstr "" + +#. Description of the 'Has Priority' (Check) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Enable this checkbox even if you want to set the zero priority" +msgstr "" + +#. Description of the 'Use legacy Budget Controller' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable this if you are experiencing issues with the new budget controller. Uses the older budget validation logic" +msgstr "" + +#. Description of the 'Calculate daily depreciation using total days in +#. depreciation period' (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enable this option to calculate daily depreciation by considering the total number of days in the entire depreciation period, (including leap years) while using daily pro-rata based depreciation" +msgstr "" + +#. Description of the 'Allow negative rates for Items' (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable this option to permit the use of negative rates for items in sales transactions. This setting is useful for applying substantial discounts, processing refunds or returns, and handling special promotional pricing." +msgstr "" + +#. Description of the 'Validate selling price for Item against purchase or +#. valuation rate' (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable this to block transactions where the selling price is less than the purchase or valuation rate" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:34 +msgid "Enable to apply SLA on every {0}" +msgstr "" + +#. Description of the 'Is Transporter' (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Enable to make this supplier selectable as a transporter on Delivery Notes and Stock Entries" +msgstr "" + +#. Description of the 'Retain Sample' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Enable to reserve a small sample from each batch for any analysis arising ahead" +msgstr "" + +#. Label of the enable_tracking_sales_commissions (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enable tracking sales commissions" +msgstr "" + +#. Description of the 'Fetch Timesheet in Sales Invoice' (Check) field in +#. DocType 'Projects Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +msgid "Enabling the check box will fetch timesheet on select of a Project in Sales Invoice" +msgstr "" + +#. Description of the 'Enforce Time Logs' (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Enabling this checkbox will force each Job Card Time Log to have From Time and To Time" +msgstr "" + +#. Description of the 'Check Supplier invoice number uniqueness' (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enabling this ensures each Purchase Invoice has a unique value in Supplier Invoice No. field within a particular fiscal year" +msgstr "" + +#. Description of the 'Book Advance Payments in Separate Party Account' (Check) +#. field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Enabling this option will allow you to record -

            1. Advances Received in a Liability Account instead of the Asset Account

            2. Advances Paid in an Asset Account instead of the Liability Account" +msgstr "" + +#. Description of the 'Allow multi-currency invoices against single party +#. account ' (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Enabling this will allow creation of multi-currency invoices against single party account in company currency" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:22 +msgid "Enabling this will change the way how cancelled transactions are handled." +msgstr "" + +#. Description of the 'Calculate Product Bundle price based on child Item's +#. rates' (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Enabling this will do the following:\n" +"
              \n" +"
            • Make the rate column of all Packed/Bundle Items tables editable.
            • \n" +"
            • Calculate the prices of all Product Bundles in the Items table, based on the prices of its child Items, specified in the Packed/Bundle Items table.
            • \n" +"
            \n" +"Note: If this is enabled, updating the rate of the Product Bundle in the Items table will not change its price. It will get reset to the price based on its Child Items on saving the doc." +msgstr "" + +#. Label of the encashment_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Encashment Date" +msgstr "" + +#: erpnext/crm/doctype/contract/contract.py:73 +msgid "End Date cannot be before Start Date." +msgstr "" + +#. Label of the end_time (Time) field in DocType 'Workstation Working Hour' +#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings' +#. Label of the end_time (Time) field in DocType 'Service Day' +#. Label of the end_time (Datetime) field in DocType 'Call Log' +#: erpnext/manufacturing/doctype/job_card/job_card.js:331 +#: erpnext/manufacturing/doctype/job_card/job_card.js:399 +#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +#: erpnext/support/doctype/service_day/service_day.json +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "End Time" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:362 +msgid "End Transit" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 +#: erpnext/accounts/report/cash_flow/cash_flow.html:147 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:64 +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:25 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:147 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:89 +#: erpnext/public/js/financial_statements.js:443 +msgid "End Year" +msgstr "" + +#: erpnext/accounts/report/financial_statements.py:133 +msgid "End Year cannot be before Start Year" +msgstr "" + +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.js:48 +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.py:37 +msgid "End date cannot be before start date" +msgstr "" + +#. Description of the 'To Date' (Date) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "End date of current invoice's period" +msgstr "" + +#. Label of the end_of_life (Date) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "End of Life" +msgstr "" + +#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule +#. Description Conditions' +#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json +msgid "Ends With" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:202 +msgid "Ends with" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:21 +msgid "Energy" +msgstr "" + +#. Label of the enforce_time_logs (Check) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Enforce Time Logs" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:15 +msgid "Engineer" +msgstr "" + +#. Label of the ensure_delivery_based_on_produced_serial_no (Check) field in +#. DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Ensure Delivery Based on Produced Serial No" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:283 +msgid "Enter API key in Google Settings." +msgstr "" + +#: erpnext/public/js/print.js:67 +msgid "Enter Company Details" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:232 +msgid "Enter First and Last name of Employee, based on Which Full Name will be updated. IN transactions, it will be Full Name which will be fetched." +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:212 +msgid "Enter Manually" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:291 +msgid "Enter Serial Nos" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:360 +#: erpnext/manufacturing/doctype/job_card/job_card.js:422 +#: erpnext/manufacturing/doctype/workstation/workstation.js:312 +msgid "Enter Value" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:96 +msgid "Enter Visit Details" +msgstr "" + +#: erpnext/manufacturing/doctype/routing/routing.js:88 +msgid "Enter a name for Routing." +msgstr "" + +#: erpnext/manufacturing/doctype/operation/operation.js:20 +msgid "Enter a name for the Operation, for example, Cutting." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:50 +msgid "Enter a name for this Holiday List." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:616 +msgid "Enter amount to be redeemed." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1470 +msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:953 +msgid "Enter customer's email" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:959 +msgid "Enter customer's phone number" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:928 +msgid "Enter date to scrap asset" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:483 +msgid "Enter depreciation details" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:408 +msgid "Enter discount percentage." +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:294 +msgid "Enter each serial no in a new line" +msgstr "" + +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:51 +msgid "Enter the Bank Guarantee Number before submitting." +msgstr "" + +#. Description of the 'Ref Code' (Data) field in DocType 'Item Customer Detail' +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +msgid "Enter the Item Code that this customer uses at their end. This will be shown in Sales Orders for the customer's reference." +msgstr "" + +#: erpnext/manufacturing/doctype/routing/routing.js:93 +msgid "Enter the Operation, the table will fetch the Operation details like Hourly Rate, Workstation automatically.\n\n" +" After that, set the Operation Time in minutes and the table will calculate the Operation Costs based on the Hourly Rate and Operation Time." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:250 +msgctxt "Do MMM YYYY" +msgid "Enter the closing balance you see in your bank statement for {0} as of the {1}" +msgstr "" + +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:53 +msgid "Enter the name of the Beneficiary before submitting." +msgstr "" + +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:55 +msgid "Enter the name of the bank or lending institution before submitting." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1496 +msgid "Enter the opening stock units." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:995 +msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1234 +msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:539 +msgid "Enter {0} amount." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:22 +msgid "Entertainment & Leisure" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186 +msgid "Entertainment Expenses" +msgstr "" + +#. Label of the entity (Dynamic Link) field in DocType 'Service Level +#. Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Entity" +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:190 +msgid "Entries below have a posting date after {0} but the clearance date is before {1}." +msgstr "" + +#. Label of the voucher_type (Select) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Entry Type" +msgstr "" + +#. Option for the 'Root Type' (Select) field in DocType 'Account' +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Option for the 'Root Type' (Select) field in DocType 'Account Category' +#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337 +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/report/account_balance/account_balance.js:29 +#: erpnext/accounts/report/account_balance/account_balance.js:45 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 +msgid "Equity" +msgstr "" + +#. Label of the equity_or_liability_account (Link) field in DocType 'Share +#. Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "Equity/Liability Account" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Erg" +msgstr "" + +#. Label of the description (Long Text) field in DocType 'Asset Repair' +#. Label of the error_description (Long Text) field in DocType 'Bulk +#. Transaction Log Detail' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "Error Description" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +msgid "Error Occurred" +msgstr "" + +#: erpnext/telephony/doctype/call_log/call_log.py:199 +msgid "Error during caller information update" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:53 +msgid "Error evaluating the criteria formula" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:267 +msgid "Error getting details for {0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:322 +msgid "Error in party matching for Bank Transaction {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:350 +msgid "Error uploading attachments" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:325 +msgid "Error while posting depreciation entries" +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:594 +msgid "Error while processing deferred accounting for {0}" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +msgid "Error while reposting item valuation" +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 +msgid "Error: This asset already has {0} depreciation periods booked.\n" +"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" +"\t\t\t\t\tPlease correct the dates accordingly." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 +msgid "Error: {0} is mandatory field" +msgstr "" + +#. Label of the errors_notification_section (Section Break) field in DocType +#. 'Stock Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Errors Notification" +msgstr "" + +#. Label of the estimated_arrival (Datetime) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Estimated Arrival" +msgstr "" + +#. Label of the estimated_costing (Currency) field in DocType 'Project' +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/projects/doctype/project/project.json +msgid "Estimated Cost" +msgstr "" + +#. Label of the estimated_time_and_cost (Section Break) field in DocType 'Work +#. Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Estimated Time and Cost" +msgstr "" + +#. Label of the period (Select) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Evaluation Period" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:87 +msgid "Even if there are multiple Pricing Rules with highest priority, then following internal priorities are applied:" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:2 +msgid "Ex Works" +msgstr "" + +#. Label of the url (Data) field in DocType 'Currency Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "Example URL" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1102 +msgid "Example of a linked document: {0}" +msgstr "" + +#. Description of the 'Serial Number Series' (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Example: ABCD.#####\n" +"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." +msgstr "" + +#. Description of the 'Batch Number Series' (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Example: ABCD.#####. If series is set and Batch No is not mentioned in transactions, then automatic batch number will be created based on this series. If you always want to explicitly mention Batch No for this item, leave this blank. Note: this setting will take priority over the Naming Series Prefix in Stock Settings." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:468 +msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2321 +msgid "Example: Serial No {0} reserved in {1}." +msgstr "" + +#. Label of the exception_budget_approver_role (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Exception Budget Approver Role" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:53 +msgid "Excess Disassembly" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:243 +msgid "Excess Material Transfer" +msgstr "" + +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:55 +msgid "Excess Materials Consumed" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1234 +msgid "Excess Transfer" +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Excessive machine set up time" +msgstr "" + +#. Label of the exchange_gain__loss_section (Section Break) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Exchange Gain / Loss" +msgstr "" + +#. Label of the exchange_gain_loss_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Exchange Gain / Loss Account" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Exchange Gain Or Loss" +msgstr "" + +#. Label of the exchange_gain_loss (Currency) field in DocType 'Payment Entry +#. Reference' +#. Label of the exchange_gain_loss (Currency) field in DocType 'Purchase +#. Invoice Advance' +#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice +#. Advance' +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222 +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +#: erpnext/setup/doctype/company/company.py:682 +msgid "Exchange Gain/Loss" +msgstr "" + +#: erpnext/accounts/services/exchange_gain_loss.py:113 +#: erpnext/accounts/services/exchange_gain_loss.py:190 +msgid "Exchange Gain/Loss amount has been booked through {0}" +msgstr "" + +#. Label of the exchange_rate (Float) field in DocType 'Advance Payment Ledger +#. Entry' +#. Label of the exchange_rate (Float) field in DocType 'Journal Entry Account' +#. Label of the exchange_rate (Float) field in DocType 'Payment Entry +#. Reference' +#. Label of the exchange_rate (Float) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the exchange_rate (Float) field in DocType 'Payment Reconciliation +#. Invoice' +#. Label of the exchange_rate (Float) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the pegged_exchange_rate (Data) field in DocType 'Pegged Currency +#. Details' +#. Label of the conversion_rate (Float) field in DocType 'POS Invoice' +#. Label of the exchange_rate (Float) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the conversion_rate (Float) field in DocType 'Purchase Invoice' +#. Label of the conversion_rate (Float) field in DocType 'Sales Invoice' +#. Label of the conversion_rate (Float) field in DocType 'Tax Withholding +#. Entry' +#. Label of the conversion_rate (Float) field in DocType 'Purchase Order' +#. Label of the conversion_rate (Float) field in DocType 'Supplier Quotation' +#. Label of the conversion_rate (Float) field in DocType 'Opportunity' +#. Label of the exchange_rate (Float) field in DocType 'Timesheet' +#. Label of the conversion_rate (Float) field in DocType 'Quotation' +#. Label of the conversion_rate (Float) field in DocType 'Sales Order' +#. Label of the exchange_rate (Float) field in DocType 'Currency Exchange' +#. Label of the conversion_rate (Float) field in DocType 'Delivery Note' +#. Label of the exchange_rate (Float) field in DocType 'Landed Cost Taxes and +#. Charges' +#. Label of the conversion_rate (Float) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/pegged_currency_details/pegged_currency_details.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Exchange Rate" +msgstr "" + +#. Name of a DocType +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#. Label of a Link in the Invoicing Workspace +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Exchange Rate Revaluation" +msgstr "" + +#. Label of the accounts (Table) field in DocType 'Exchange Rate Revaluation' +#. Name of a DocType +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Exchange Rate Revaluation Account" +msgstr "" + +#. Label of the exchange_rate_revaluation_settings_section (Section Break) +#. field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Exchange Rate Revaluation Settings" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:72 +msgid "Exchange Rate must be same as {0} {1} ({2})" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Excise Entry" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:1515 +msgid "Excise Invoice" +msgstr "" + +#. Label of the excise_page (Data) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Excise Page Number" +msgstr "" + +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:86 +msgid "Exclude Zero Balance Parties" +msgstr "" + +#. Label of the doctypes_to_be_ignored (Table) field in DocType 'Transaction +#. Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Excluded DocTypes" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the excluded_fee (Currency) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Excluded Fee" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:265 +msgid "Execution" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:16 +msgid "Executive Assistant" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:23 +msgid "Executive Search" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:80 +msgid "Exempt Supplies" +msgstr "" + +#. Label of the exempted_role (Link) field in DocType 'Accounting Period' +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +msgid "Exempted Role" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:5 +msgid "Exhibition" +msgstr "" + +#. Option for the 'Asset Type' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Existing Asset" +msgstr "" + +#. Option for the 'Create Chart Of Accounts Based On' (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Existing Company" +msgstr "" + +#. Label of the existing_company (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Existing Company " +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:1 +msgid "Existing Customer" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:307 +msgid "Existing transactions in the system belonging to the same bank account and date range" +msgstr "" + +#. Label of the exit (Tab Break) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Exit" +msgstr "" + +#. Label of the held_on (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Exit Interview Held On" +msgstr "" + +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:475 +msgid "Expected" +msgstr "" + +#. Label of the expected_amount (Currency) field in DocType 'POS Closing Entry +#. Detail' +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +msgid "Expected Amount" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:432 +msgid "Expected Arrival Date" +msgstr "" + +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:119 +msgid "Expected Balance Qty" +msgstr "" + +#. Label of the expected_closing (Date) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Expected Closing Date" +msgstr "" + +#. Label of the expected_delivery_date (Date) field in DocType 'Purchase Order +#. Item' +#. Label of the expected_delivery_date (Date) field in DocType 'Supplier +#. Quotation Item' +#. Label of the expected_delivery_date (Date) field in DocType 'Work Order' +#. Label of the expected_delivery_date (Date) field in DocType 'Subcontracting +#. Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Expected Delivery Date" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:375 +msgid "Expected Delivery Date should be after Sales Order Date" +msgstr "" + +#. Label of the expected_end_date (Datetime) field in DocType 'Job Card' +#. Label of the expected_end_date (Date) field in DocType 'Project' +#. Label of the exp_end_date (Datetime) field in DocType 'Task' +#. Label of a field in the tasks Web Form +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:49 +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:126 +#: erpnext/projects/web_form/tasks/tasks.json +#: erpnext/templates/pages/task_info.html:55 +msgid "Expected End Date" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:113 +msgid "Expected End Date should be less than or equal to parent task's Expected End Date {0}." +msgstr "" + +#. Label of the expected_hours (Float) field in DocType 'Timesheet Detail' +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/public/js/projects/timer.js:16 +msgid "Expected Hrs" +msgstr "" + +#. Label of the expected_start_date (Datetime) field in DocType 'Job Card' +#. Label of the expected_start_date (Date) field in DocType 'Project' +#. Label of the exp_start_date (Datetime) field in DocType 'Task' +#. Label of a field in the tasks Web Form +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:45 +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:120 +#: erpnext/projects/web_form/tasks/tasks.json +#: erpnext/templates/pages/task_info.html:50 +msgid "Expected Start Date" +msgstr "" + +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:129 +msgid "Expected Stock Value" +msgstr "" + +#. Label of the expected_time (Float) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Expected Time (in hours)" +msgstr "" + +#. Label of the time_required (Float) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Expected Time Required (In Mins)" +msgstr "" + +#. Label of the expected_value_after_useful_life (Currency) field in DocType +#. 'Asset Depreciation Schedule' +#. Description of the 'Salvage Value' (Currency) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Expected Value After Useful Life" +msgstr "" + +#. Option for the 'Root Type' (Select) field in DocType 'Account' +#. Option for the 'Root Type' (Select) field in DocType 'Account Category' +#. Label of the expense (Float) field in DocType 'Cashier Closing' +#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge' +#. Option for the 'Type' (Select) field in DocType 'Process Deferred +#. Accounting' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 +#: erpnext/accounts/report/account_balance/account_balance.js:28 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 +msgid "Expense" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:220 +msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the expense_account (Link) field in DocType 'Loyalty Program' +#. Label of the expense_account (Link) field in DocType 'POS Invoice Item' +#. Label of the expense_account (Link) field in DocType 'POS Profile' +#. Label of the expense_account (Link) field in DocType 'Sales Invoice Item' +#. Label of the expense_account (Link) field in DocType 'Asset Capitalization +#. Service Item' +#. Label of the expense_account (Link) field in DocType 'Asset Repair Purchase +#. Invoice' +#. Label of the expense_account (Link) field in DocType 'Purchase Order Item' +#. Label of the expense_account (Link) field in DocType 'Workstation Operating +#. Component Account' +#. Label of the expense_account (Link) field in DocType 'Delivery Note Item' +#. Label of the expense_account (Link) field in DocType 'Item Default' +#. Label of the vf_expense_account (Read Only) field in DocType 'Item Default' +#. Label of the deferred_expense_account (Link) field in DocType 'Item Default' +#. Label of the expense_account (Link) field in DocType 'Landed Cost Taxes and +#. Charges' +#. Label of the expense_account (Link) field in DocType 'Material Request Item' +#. Label of the expense_account (Link) field in DocType 'Purchase Receipt Item' +#. Label of the expense_account (Link) field in DocType 'Subcontracting Order +#. Item' +#. Label of the expense_account (Link) field in DocType 'Subcontracting Receipt +#. Item' +#. Label of the expense_account (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/account_balance/account_balance.js:46 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:251 +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/workstation_operating_component_account/workstation_operating_component_account.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item_default/item_default.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Expense Account" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:199 +msgid "Expense Account Missing" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Expense Claim" +msgstr "" + +#. Label of the expense_account (Link) field in DocType 'Purchase Invoice Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +msgid "Expense Head" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:80 +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:100 +msgid "Expense Head Changed" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:158 +msgid "Expense account is mandatory for item {0}" +msgstr "" + +#. Description of the 'Enable Deferred Revenue' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145 +msgid "Expenses" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153 +#: erpnext/accounts/report/account_balance/account_balance.js:49 +msgid "Expenses Included In Asset Valuation" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158 +#: erpnext/accounts/report/account_balance/account_balance.js:51 +msgid "Expenses Included In Valuation" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:308 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:513 +msgid "Expired Batches" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:289 +msgid "Expires in a week or less" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:293 +msgid "Expires today or already expired" +msgstr "" + +#. Option for the 'Pick Serial / Batch Based On' (Select) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Expiry" +msgstr "" + +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:38 +msgid "Expiry (In Days)" +msgstr "" + +#. Label of the expiry_date (Date) field in DocType 'Loyalty Point Entry' +#. Label of the expiry_date (Date) field in DocType 'Driver' +#. Label of the expiry_date (Date) field in DocType 'Driving License Category' +#. Label of the expiry_date (Date) field in DocType 'Batch' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/driving_license_category/driving_license_category.json +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/report/available_batch_report/available_batch_report.py:57 +msgid "Expiry Date" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:219 +msgid "Expiry Date Mandatory" +msgstr "" + +#. Label of the expiry_duration (Int) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Expiry Duration (in days)" +msgstr "" + +#. Label of the section_break0 (Tab Break) field in DocType 'BOM' +#. Label of the exploded_items (Table) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Exploded Items" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.json +msgid "Exponential Smoothing Forecasting" +msgstr "" + +#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js:34 +msgid "Export E-Invoices" +msgstr "" + +#. Label of the extended_bank_statement_section (Section Break) field in +#. DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Extended Bank Statement" +msgstr "" + +#. Label of the external_work_history (Table) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "External Work History" +msgstr "" + +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:148 +msgid "Extra Consumed Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:271 +msgid "Extra Job Card Quantity" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:275 +msgid "Extra Large" +msgstr "" + +#. Label of the section_break_xhtl (Section Break) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Extra Material Transfer" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:271 +msgid "Extra Small" +msgstr "" + +#. Label of the finished_good (Link) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "FG / Semi FG Item" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:21 +msgid "FG Items to Make" +msgstr "" + +#. Option for the 'Default Stock Valuation Method' (Select) field in DocType +#. 'Company' +#. Option for the 'Valuation Method' (Select) field in DocType 'Item' +#. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock +#. Settings' +#. Option for the 'Pick Serial / Batch Based On' (Select) field in DocType +#. 'Stock Settings' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "FIFO" +msgstr "" + +#. Label of the fifo_queue (Long Text) field in DocType 'Stock Closing Balance' +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +msgid "FIFO Queue" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.json +msgid "FIFO Queue vs Qty After Transaction Comparison" +msgstr "" + +#. Label of the stock_queue (Small Text) field in DocType 'Serial and Batch +#. Entry' +#. Label of the stock_queue (Long Text) field in DocType 'Stock Ledger Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "FIFO Stock Queue (qty, rate)" +msgstr "" + +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:179 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:218 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:121 +msgid "FIFO/LIFO Queue" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "FX Revaluation" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Fahrenheit" +msgstr "" + +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js:17 +msgid "Failed Entries" +msgstr "" + +#: erpnext/utilities/doctype/video_settings/video_settings.py:33 +msgid "Failed to Authenticate the API key." +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:37 +#: erpnext/setup/setup_wizard/setup_wizard.py:38 +msgid "Failed to create demo data" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:295 +msgid "Failed to delete closing balance." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:150 +msgid "Failed to delete rule." +msgstr "" + +#: erpnext/setup/demo.py:77 +msgid "Failed to erase demo data, please delete the demo company manually." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:287 +msgid "Failed to initiate payment with {0}. Please try again or contact support." +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:16 +#: erpnext/setup/setup_wizard/setup_wizard.py:17 +msgid "Failed to install presets" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:163 +msgid "Failed to parse MT940 format. Error: {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:264 +msgid "Failed to post depreciation entries" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:58 +msgid "Failed to run rules evaluation" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:126 +msgid "Failed to send email for campaign {0} to {1}" +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:26 +msgid "Failed to set defaults" +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:21 +#: erpnext/setup/setup_wizard/setup_wizard.py:22 +msgid "Failed to setup company" +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:28 +msgid "Failed to setup defaults" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:861 +msgid "Failed to setup defaults for country {0}. Please contact support." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:116 +msgid "Failed to update auto classify transactions settings" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:177 +msgid "Failed to update rule priorities" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:521 +msgid "Failed to update subscription status for {0} {1}" +msgstr "" + +#. Label of the failure_date (Datetime) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Failure Date" +msgstr "" + +#. Label of the failure_description_section (Section Break) field in DocType +#. 'POS Closing Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "Failure Description" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.js:37 +msgid "Failure: {0}" +msgstr "" + +#. Label of the family_background (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Family Background" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Faraday" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Fathom" +msgstr "" + +#. Label of the document_name (Dynamic Link) field in DocType 'Quality +#. Feedback' +#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json +msgid "Feedback By" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/quality.json +msgid "Feedback Template" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Fees" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:396 +msgid "Fetch Based On" +msgstr "" + +#. Label of the fetch_customers (Button) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Fetch Customers" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:82 +msgid "Fetch Items from Warehouse" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity.js:117 +msgid "Fetch Latest Exchange Rate" +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.js:61 +msgid "Fetch Overdue Payments" +msgstr "" + +#. Label of the fetch_payment_schedule_in_payment_request (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Fetch Payment Schedule in Payment Request" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:42 +msgid "Fetch Subscription Updates" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:305 +msgid "Fetch Timesheet" +msgstr "" + +#. Label of the fetch_timesheet_in_sales_invoice (Check) field in DocType +#. 'Projects Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +msgid "Fetch Timesheet in Sales Invoice" +msgstr "" + +#. Label of the fetch_from_parent (Select) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Fetch Value From" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:372 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:828 +msgid "Fetch exploded BOM (including sub-assemblies)" +msgstr "" + +#. Label of the fetch_valuation_rate_for_internal_transaction (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Fetch valuation rate for internal Transaction" +msgstr "" + +#. Description of the 'Price List' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Fetched automatically on sales orders and invoices for this customer." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_details.js:459 +msgid "Fetched only {0} available serial numbers." +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:198 +msgid "Fetching Material Requests..." +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:145 +msgid "Fetching Sales Orders..." +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.js:135 +#: erpnext/public/js/controllers/transaction.js:1625 +msgid "Fetching exchange rates ..." +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:74 +msgid "Fetching..." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:224 +msgid "Field '{0}' is not a valid Company link field for DocType {1}" +msgstr "" + +#. Label of the field_mapping_section (Section Break) field in DocType +#. 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Field Mapping" +msgstr "" + +#. Label of the bank_transaction_field (Select) field in DocType 'Bank +#. Transaction Mapping' +#: erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.json +msgid "Field in Bank Transaction" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95 +msgid "Fieldname Conflict" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87 +msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value." +msgstr "" + +#. Description of the 'Do not update variants on save' (Check) field in DocType +#. 'Item Variant Settings' +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Fields will be copied over only at time of creation." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +msgid "File does not belong to this Transaction Deletion Record" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +msgid "File not found" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +msgid "File not found on server" +msgstr "" + +#. Label of the file_to_rename (Attach) field in DocType 'Rename Tool' +#: erpnext/utilities/doctype/rename_tool/rename_tool.json +msgid "File to Rename" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 +#: erpnext/public/js/financial_statements.js:395 +msgid "Filter Based On" +msgstr "" + +#. Label of the filter_duration (Int) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Filter Duration (Months)" +msgstr "" + +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:60 +msgid "Filter Total Zero Qty" +msgstr "" + +#. Label of the filter_by_reference_date (Check) field in DocType 'Bank +#. Reconciliation Tool' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +msgid "Filter by Reference Date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:351 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:217 +msgid "Filter by amount" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:70 +msgid "Filter by invoice status" +msgstr "" + +#. Label of the invoice_name (Data) field in DocType 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Filter on Invoice" +msgstr "" + +#. Label of the payment_name (Data) field in DocType 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Filter on Payment" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:158 +msgid "Filters for Material Requests" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:92 +msgid "Filters for Sales Orders" +msgstr "" + +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:74 +msgid "Filters missing" +msgstr "" + +#. Label of the bom_no (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Final BOM" +msgstr "" + +#. Label of the details_tab (Tab Break) field in DocType 'BOM Creator' +#. Label of the production_item (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Final Product" +msgstr "" + +#. Label of the finance_book (Link) field in DocType 'Account Closing Balance' +#. Name of a DocType +#. Label of the finance_book (Link) field in DocType 'GL Entry' +#. Label of the finance_book (Link) field in DocType 'Journal Entry' +#. Label of the finance_book (Link) field in DocType 'Payment Ledger Entry' +#. Label of the finance_book (Link) field in DocType 'POS Invoice Item' +#. Label of the finance_book (Link) field in DocType 'Process Statement Of +#. Accounts' +#. Label of the finance_book (Link) field in DocType 'Sales Invoice Item' +#. Label of a Link in the Invoicing Workspace +#. Label of the finance_book (Link) field in DocType 'Asset Capitalization' +#. Label of the finance_book (Link) field in DocType 'Asset Capitalization +#. Asset Item' +#. Label of the finance_book (Link) field in DocType 'Asset Depreciation +#. Schedule' +#. Label of the finance_book (Link) field in DocType 'Asset Finance Book' +#. Label of the finance_book (Link) field in DocType 'Asset Shift Allocation' +#. Label of the finance_book (Link) field in DocType 'Asset Value Adjustment' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/finance_book/finance_book.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:22 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:41 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:24 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:41 +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:48 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:51 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:104 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:51 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:32 +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:51 +#: erpnext/accounts/report/general_ledger/general_ledger.js:16 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:31 +#: erpnext/accounts/report/trial_balance/trial_balance.js:71 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:48 +#: erpnext/public/js/financial_statements.js:389 +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Finance Book" +msgstr "" + +#. Label of the finance_book_detail (Section Break) field in DocType 'Asset +#. Category' +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Finance Book Detail" +msgstr "" + +#. Label of the finance_book_id (Int) field in DocType 'Asset Depreciation +#. Schedule' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "Finance Book Id" +msgstr "" + +#. Label of the finance_books (Table) field in DocType 'Asset' +#. Label of the finance_books (Table) field in DocType 'Asset Category' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Finance Books" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:17 +msgid "Finance Manager" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/financial_ratios/financial_ratios.json +msgid "Financial Ratios" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Financial Report Row" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Financial Report Template" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +msgid "Financial Report Template {0} is disabled" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +msgid "Financial Report Template {0} not found" +msgstr "" + +#. Name of a Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/desktop_icon/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Financial Reports" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:24 +msgid "Financial Services" +msgstr "" + +#. Label of a Card Break in the Financial Reports Workspace +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/public/js/financial_statements.js:325 +msgid "Financial Statements" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:48 +msgid "Financial Year Begins On" +msgstr "" + +#. Description of the 'Ignore Account closing balance' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Financial reports will be generated using GL Entry doctypes (should be enabled if Period Closing Voucher is not posted for all years sequentially or missing) " +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:896 +#: erpnext/manufacturing/doctype/work_order/work_order.js:911 +#: erpnext/manufacturing/doctype/work_order/work_order.js:920 +msgid "Finish" +msgstr "" + +#. Label of the fg_item (Link) field in DocType 'Purchase Order Item' +#. Label of the item_code (Link) field in DocType 'BOM Creator' +#. Label of the parent_item_code (Link) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the fg_item (Link) field in DocType 'Sales Order Item' +#. Label of the finished_good (Link) field in DocType 'Subcontracting BOM' +#: erpnext/buying/doctype/purchase_order/purchase_order.js:180 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:43 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:147 +#: erpnext/selling/doctype/sales_order/sales_order.js:868 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Finished Good" +msgstr "" + +#. Label of the finished_good_bom (Link) field in DocType 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Finished Good BOM" +msgstr "" + +#. Label of the fg_item (Link) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service +#. Item' +#: erpnext/public/js/utils.js:913 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +msgid "Finished Good Item" +msgstr "" + +#. Label of the fg_item_code (Link) field in DocType 'Subcontracting Inward +#. Order Secondary Item' +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:36 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +msgid "Finished Good Item Code" +msgstr "" + +#: erpnext/public/js/utils.js:931 +msgid "Finished Good Item Qty" +msgstr "" + +#. Label of the fg_item_qty (Float) field in DocType 'Subcontracting Inward +#. Order Service Item' +#. Label of the fg_item_qty (Float) field in DocType 'Subcontracting Order +#. Service Item' +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +msgid "Finished Good Item Quantity" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:295 +msgid "Finished Good Item is not specified for service item {0}" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:312 +msgid "Finished Good Item {0} Qty can not be zero" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:306 +msgid "Finished Good Item {0} must be a sub-contracted item" +msgstr "" + +#. Label of the fg_item_qty (Float) field in DocType 'Purchase Order Item' +#. Label of the fg_item_qty (Float) field in DocType 'Sales Order Item' +#. Label of the finished_good_qty (Float) field in DocType 'Subcontracting BOM' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Finished Good Qty" +msgstr "" + +#. Label of the fg_completed_qty (Float) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Finished Good Quantity " +msgstr "" + +#. Label of the serial_no_and_batch_for_finished_good_section (Section Break) +#. field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Finished Good Serial / Batch" +msgstr "" + +#. Label of the finished_good_uom (Link) field in DocType 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Finished Good UOM" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:51 +msgid "Finished Good {0} does not have a default BOM." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:46 +msgid "Finished Good {0} is disabled." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:48 +msgid "Finished Good {0} must be a stock item." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:55 +msgid "Finished Good {0} must be a sub-contracted item." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1475 +#: erpnext/setup/doctype/company/company.py:393 +msgid "Finished Goods" +msgstr "" + +#. Label of the fg_based_section_section (Section Break) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Finished Goods Based Operating Cost" +msgstr "" + +#. Label of the fg_item (Link) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Finished Goods Item" +msgstr "" + +#. Label of the fg_reference_id (Data) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Finished Goods Reference" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:165 +msgid "Finished Goods Return" +msgstr "" + +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:108 +msgid "Finished Goods Value" +msgstr "" + +#. Label of the fg_warehouse (Link) field in DocType 'BOM Operation' +#. Label of the warehouse (Link) field in DocType 'Production Plan Item' +#. Label of the fg_warehouse (Link) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Finished Goods Warehouse" +msgstr "" + +#. Label of the fg_based_operating_cost (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Finished Goods based Operating Cost" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +msgid "Finished Item {0} does not match with Work Order {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:71 +msgid "Finished good quantity being consumed ({0} in stock UOM) must equal the quantity to disassemble ({1}). Do not change the UOM, conversion factor or quantity of the finished good row." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:615 +msgid "First Delivery Date" +msgstr "" + +#. Label of the first_email (Time) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "First Email" +msgstr "" + +#. Label of the first_responded_on (Datetime) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "First Responded On" +msgstr "" + +#. Option for the 'Service Level Agreement Status' (Select) field in DocType +#. 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "First Response Due" +msgstr "" + +#: erpnext/support/doctype/issue/test_issue.py:238 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:906 +msgid "First Response SLA Failed by {}" +msgstr "" + +#. Label of the first_response_time (Duration) field in DocType 'Opportunity' +#. Label of the first_response_time (Duration) field in DocType 'Issue' +#. Label of the response_time (Duration) field in DocType 'Service Level +#. Priority' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/service_level_priority/service_level_priority.json +#: erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.py:16 +msgid "First Response Time" +msgstr "" + +#. Name of a report +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "First Response Time for Issues" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "First Response Time for Opportunity" +msgstr "" + +#: erpnext/regional/italy/utils.py:236 +msgid "Fiscal Regime is mandatory, kindly set the fiscal regime in the company {0}" +msgstr "" + +#. Name of a DocType +#. Label of the fiscal_year (Link) field in DocType 'GL Entry' +#. Label of the fiscal_year (Link) field in DocType 'Monthly Distribution' +#. Label of the fiscal_year (Link) field in DocType 'Period Closing Voucher' +#. Label of a Link in the Invoicing Workspace +#. Label of the fiscal_year (Link) field in DocType 'Lower Deduction +#. Certificate' +#. Label of the fiscal_year (Link) field in DocType 'Target Detail' +#. Label of the fiscal_year (Data) field in DocType 'Stock Ledger Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:18 +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:16 +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:38 +#: erpnext/accounts/report/trial_balance/trial_balance.js:16 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:16 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:16 +#: erpnext/public/js/purchase_trends_filters.js:28 +#: erpnext/public/js/sales_trends_filters.js:44 +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/regional/report/irs_1099/irs_1099.js:17 +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:15 +#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:15 +#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:15 +#: erpnext/setup/doctype/target_detail/target_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Fiscal Year" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:100 +msgid "Fiscal Year (requires ERPNext to be installed)" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json +msgid "Fiscal Year Company" +msgstr "" + +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:5 +msgid "Fiscal Year Details" +msgstr "" + +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.py:53 +msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" +msgstr "" + +#: erpnext/controllers/trends.py:59 +msgid "Fiscal Year {0} Does Not Exist" +msgstr "" + +#: erpnext/accounts/report/trial_balance/trial_balance.py:49 +msgid "Fiscal Year {0} does not exist" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:97 +msgid "Fiscal Year {0} is not available for Company {1}." +msgstr "" + +#: erpnext/accounts/report/trial_balance/trial_balance.py:43 +msgid "Fiscal Year {0} is required" +msgstr "" + +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:28 +msgid "Fix SABB Entry" +msgstr "" + +#. Option for the 'Calculate Based On' (Select) field in DocType 'Shipping +#. Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Fixed" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/report/account_balance/account_balance.js:52 +#: erpnext/stock/doctype/item/item_list.js:20 +msgid "Fixed Asset" +msgstr "" + +#. Label of the fixed_asset_account (Link) field in DocType 'Asset +#. Capitalization Asset Item' +#. Label of the fixed_asset_account (Link) field in DocType 'Asset Category +#. Account' +#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_category_account/asset_category_account.json +msgid "Fixed Asset Account" +msgstr "" + +#. Label of the fixed_asset_defaults (Section Break) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Fixed Asset Defaults" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:372 +msgid "Fixed Asset Item must be a non-stock item." +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.json +#: erpnext/workspace_sidebar/assets.json +msgid "Fixed Asset Register" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:213 +msgid "Fixed Asset Turnover Ratio" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:737 +msgid "Fixed Asset item {0} cannot be used in BOMs." +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81 +msgid "Fixed Assets" +msgstr "" + +#. Label of the fixed_deposit_number (Data) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Fixed Deposit Number" +msgstr "" + +#. Label of the fixed_email (Link) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Fixed Outgoing Email Account" +msgstr "" + +#. Option for the 'Subscription Price Based On' (Select) field in DocType +#. 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Fixed Rate" +msgstr "" + +#. Label of the fixed_time (Check) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Fixed Time" +msgstr "" + +#. Name of a role +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Fleet Manager" +msgstr "" + +#. Label of the details_tab (Tab Break) field in DocType 'Plant Floor' +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +msgid "Floor" +msgstr "" + +#. Label of the floor_name (Data) field in DocType 'Plant Floor' +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +msgid "Floor Name" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Fluid Ounce (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Fluid Ounce (US)" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:408 +msgid "Focus on Item Group filter" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:399 +msgid "Focus on search input" +msgstr "" + +#. Label of the folio_no (Data) field in DocType 'Shareholder' +#: erpnext/accounts/doctype/shareholder/shareholder.json +msgid "Folio no." +msgstr "" + +#. Label of the follow_calendar_months (Check) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Follow Calendar Months" +msgstr "" + +#: erpnext/templates/emails/reorder_item.html:1 +msgid "Following Material Requests have been raised automatically based on Item's re-order level" +msgstr "" + +#: erpnext/selling/doctype/customer/mapper.py:173 +msgid "Following fields are mandatory to create address:" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:25 +msgid "Food, Beverage & Tobacco" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Foot Of Water" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Foot/Minute" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Foot/Second" +msgstr "" + +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:23 +msgid "For" +msgstr "" + +#: erpnext/public/js/utils/sales_common.js:389 +msgid "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." +msgstr "" + +#. Label of the for_all_stock_asset_accounts (Check) field in DocType 'Journal +#. Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "For All Stock Asset Accounts" +msgstr "" + +#. Label of the for_buying (Check) field in DocType 'Currency Exchange' +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +msgid "For Buying" +msgstr "" + +#. Label of the company (Link) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "For Company" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:187 +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:211 +msgid "For Item" +msgstr "" + +#: erpnext/stock/services/internal_transfer.py:104 +msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" +msgstr "" + +#. Label of the for_job_card (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "For Job Card" +msgstr "" + +#. Label of the for_operation (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.js:464 +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "For Operation" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:172 +msgid "For PDF statements, we auto-detect the tables on each page. You can then confirm each detected table, map its columns, and exclude anything that is not transactions (e.g. ads or summaries). Password-protected PDFs are supported - the password is saved on the bank account and reused." +msgstr "" + +#. Label of the for_price_list (Link) field in DocType 'Pricing Rule' +#. Label of the for_price_list (Link) field in DocType 'Promotional Scheme +#. Price Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "For Price List" +msgstr "" + +#. Description of the 'Planned Quantity' (Float) field in DocType 'Sales Order +#. Item' +#. Description of the 'Produced Quantity' (Float) field in DocType 'Sales Order +#. Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "For Production" +msgstr "" + +#. Label of the material_request_planning (Section Break) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "For Raw Materials" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:982 +msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}" +msgstr "" + +#. Label of the for_selling (Check) field in DocType 'Currency Exchange' +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +msgid "For Selling" +msgstr "" + +#: erpnext/accounts/doctype/payment_order/payment_order.js:108 +msgid "For Supplier" +msgstr "" + +#. Label of the warehouse (Link) field in DocType 'Material Request Plan Item' +#. Label of the for_warehouse (Link) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:471 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1488 +#: erpnext/stock/doctype/material_request/material_request.js:361 +#: erpnext/templates/form_grid/material_request_grid.html:36 +msgid "For Warehouse" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:136 +msgid "For Work Order" +msgstr "" + +#: erpnext/controllers/status_updater.py:292 +msgid "For an item {0}, quantity must be negative number" +msgstr "" + +#: erpnext/controllers/status_updater.py:289 +msgid "For an item {0}, quantity must be positive number" +msgstr "" + +#. Description of the 'Income Account' (Link) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "For dunning fee and interest" +msgstr "" + +#. Description of the 'Year Name' (Data) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "For e.g. 2012, 2012-13" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:154 +msgid "For example, if set to 4, the system will try to find matching transactions in other banks 4 days before and after the transaction date. This is because transactions can clear on different days on different bank accounts." +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:60 +msgid "For example, if set to 4, the system will try to find matching transfer transactions in other banks 4 days before and after the transaction date. This is because transactions can clear on different days on different bank accounts." +msgstr "" + +#. Description of the 'Collection Factor (=1 LP)' (Currency) field in DocType +#. 'Loyalty Program Collection' +#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json +msgid "For how much spent = 1 Loyalty Point" +msgstr "" + +#. Description of the 'Supplier' (Link) field in DocType 'Request for +#. Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "For individual supplier" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 +msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +msgstr "" + +#: erpnext/controllers/status_updater.py:302 +msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgstr "" + +#. Description of the 'Do not fetch incoming rate from Serial No' (Check) field +#. in DocType 'Stock Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "For legacy serial nos, do not fetch incoming rate from serial no and calculate it based on the inward transaction" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:400 +msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/mapper.py:381 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:208 +msgid "For project - {0}, update your status" +msgstr "" + +#. Description of the 'Parent Warehouse' (Link) field in DocType 'Master +#. Production Schedule' +#. Description of the 'Parent Warehouse' (Link) field in DocType 'Sales +#. Forecast' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 +msgid "For quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + +#. Description of the 'Territory Manager' (Link) field in DocType 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "For reference" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 +#: erpnext/public/js/controllers/accounts.js:204 +msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +msgid "For row {0}: Enter Planned Qty" +msgstr "" + +#. Description of the 'Service Expense Account' (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "For service item" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:178 +msgid "For the 'Apply Rule On Other' condition the field {0} is mandatory" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:1425 +msgctxt "Clear payment terms template and/or payment schedule when due date is changed" +msgid "For the new {0} to take effect, would you like to clear the current {1}?" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:268 +msgid "For the {0}, no stock is available for the return in the warehouse {1}." +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:1254 +msgid "For the {0}, the quantity is required to make the return entry" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:258 +msgid "Force Clear" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:304 +msgid "Force Clear Voucher" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:85 +msgid "Force evaluate all" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:83 +msgid "Force re-evaluate all unreconciled transactions, even if they were previously evaluated" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:48 +msgid "Force-Fetch Subscription Updates" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:234 +msgid "Forecast" +msgstr "" + +#. Label of the forecast_demand_section (Section Break) field in DocType +#. 'Master Production Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +msgid "Forecast Demand" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Forecasting" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:264 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:265 +#: erpnext/accounts/report/consolidated_trial_balance/test_consolidated_trial_balance.py:73 +msgid "Foreign Currency Translation Reserve" +msgstr "" + +#. Label of the foreign_trade_details (Section Break) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Foreign Trade Details" +msgstr "" + +#. Label of the formula_based_criteria (Check) field in DocType 'Item Quality +#. Inspection Parameter' +#. Label of the formula_based_criteria (Check) field in DocType 'Quality +#. Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Formula Based Criteria" +msgstr "" + +#. Label of the calculation_formula (Code) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Formula or Account Filter" +msgstr "" + +#: erpnext/templates/pages/help.html:35 +msgid "Forum Activity" +msgstr "" + +#. Label of the forum_sb (Section Break) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Forum Posts" +msgstr "" + +#. Label of the forum_url (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Forum URL" +msgstr "" + +#: erpnext/setup/install.py:232 +msgid "Frappe School" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:4 +msgid "Free Alongside Ship" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:3 +msgid "Free Carrier" +msgstr "" + +#. Label of the free_item (Link) field in DocType 'Pricing Rule' +#. Label of the section_break_6 (Section Break) field in DocType 'Promotional +#. Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Free Item" +msgstr "" + +#. Label of the free_item_rate (Currency) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Free Item Rate" +msgstr "" + +#. Title of an incoterm +#: erpnext/setup/doctype/incoterm/incoterms.csv:5 +msgid "Free On Board" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:283 +msgid "Free item code is not selected" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:653 +msgid "Free item not set in the pricing rule {0}" +msgstr "" + +#. Label of the stock_frozen_upto_days (Int) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Freeze stocks older than (days)" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190 +msgid "Freight and Forwarding Charges" +msgstr "" + +#. Label of the frequency (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Frequency To Collect Progress" +msgstr "" + +#. Label of the frequency_of_depreciation (Int) field in DocType 'Asset' +#. Label of the frequency_of_depreciation (Int) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the frequency_of_depreciation (Int) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Frequency of Depreciation (Months)" +msgstr "" + +#: erpnext/www/support/index.html:45 +msgid "Frequently Read Articles" +msgstr "" + +#. Label of the from_bom (Link) field in DocType 'Material Request Plan Item' +#. Label of the from_bom (Check) field in DocType 'Stock Entry' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "From BOM" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:105 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:169 +msgid "From BOM No" +msgstr "" + +#. Label of the from_company (Data) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "From Company" +msgstr "" + +#. Description of the 'Corrective Operation Cost' (Currency) field in DocType +#. 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "From Corrective Job Card" +msgstr "" + +#. Label of the from_currency (Link) field in DocType 'Currency Exchange' +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +msgid "From Currency" +msgstr "" + +#: erpnext/setup/doctype/currency_exchange/currency_exchange.py:52 +msgid "From Currency and To Currency cannot be same" +msgstr "" + +#. Label of the customer (Link) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "From Customer" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:45 +msgid "From Date and To Date are Mandatory" +msgstr "" + +#: erpnext/accounts/report/financial_statements.py:138 +msgid "From Date and To Date are mandatory" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:29 +msgid "From Date and To Date are required" +msgstr "" + +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:30 +msgid "From Date and To Date lie in different Fiscal Year" +msgstr "" + +#: erpnext/accounts/report/trial_balance/trial_balance.py:64 +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:13 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:14 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:29 +msgid "From Date cannot be greater than To Date" +msgstr "" + +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:60 +msgid "From Date cannot be greater than To Date." +msgstr "" + +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:26 +msgid "From Date is mandatory" +msgstr "" + +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:53 +#: erpnext/accounts/report/general_ledger/general_ledger.py:86 +#: erpnext/accounts/report/pos_register/pos_register.py:124 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:32 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:25 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:34 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:38 +msgid "From Date must be before To Date" +msgstr "" + +#: erpnext/accounts/report/trial_balance/trial_balance.py:68 +msgid "From Date should be within the Fiscal Year. Assuming From Date = {0}" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:43 +msgid "From Date: {0} cannot be greater than To date: {1}" +msgstr "" + +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:26 +msgid "From Datetime" +msgstr "" + +#. Label of the from_delivery_date (Date) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "From Delivery Date" +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.js:59 +msgid "From Delivery Note" +msgstr "" + +#. Label of the from_doctype (Link) field in DocType 'Bulk Transaction Log +#. Detail' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "From Doctype" +msgstr "" + +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:78 +msgid "From Due Date" +msgstr "" + +#. Label of the from_employee (Link) field in DocType 'Asset Movement Item' +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +msgid "From Employee" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:98 +msgid "From Employee is required while issuing Asset {0}" +msgstr "" + +#. Label of the from_external_ecomm_platform (Check) field in DocType 'Coupon +#. Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "From External Ecomm Platform" +msgstr "" + +#. Label of the from_fiscal_year (Link) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:51 +msgid "From Fiscal Year" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:110 +msgid "From Fiscal Year cannot be greater than To Fiscal Year" +msgstr "" + +#. Label of the from_folio_no (Data) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "From Folio No" +msgstr "" + +#. Label of the from_invoice_date (Date) field in DocType 'Payment +#. Reconciliation' +#. Label of the from_invoice_date (Date) field in DocType 'Process Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "From Invoice Date" +msgstr "" + +#. Label of the from_no (Int) field in DocType 'Share Balance' +#. Label of the from_no (Int) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "From No" +msgstr "" + +#. Label of the from_case_no (Int) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "From Package No." +msgstr "" + +#. Label of the from_payment_date (Date) field in DocType 'Payment +#. Reconciliation' +#. Label of the from_payment_date (Date) field in DocType 'Process Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "From Payment Date" +msgstr "" + +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:36 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:22 +msgid "From Posting Date" +msgstr "" + +#. Label of the from_range (Float) field in DocType 'Item Attribute' +#. Label of the from_range (Float) field in DocType 'Item Variant Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "From Range" +msgstr "" + +#: erpnext/stock/doctype/item_attribute/item_attribute.py:95 +msgid "From Range has to be less than To Range" +msgstr "" + +#. Label of the from_reference_date (Date) field in DocType 'Bank +#. Reconciliation Tool' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +msgid "From Reference Date" +msgstr "" + +#. Label of the from_shareholder (Link) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "From Shareholder" +msgstr "" + +#. Label of the from_template (Link) field in DocType 'Journal Entry' +#. Label of the project_template (Link) field in DocType 'Project' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/projects/doctype/project/project.json +msgid "From Template" +msgstr "" + +#. Label of the from_time (Time) field in DocType 'Cashier Closing' +#. Label of the from_time (Datetime) field in DocType 'Sales Invoice Timesheet' +#. Label of the from_time (Time) field in DocType 'Communication Medium +#. Timeslot' +#. Label of the from_time (Time) field in DocType 'Availability Of Slots' +#. Label of the from_time (Datetime) field in DocType 'Downtime Entry' +#. Label of the from_time (Datetime) field in DocType 'Job Card Scheduled Time' +#. Label of the from_time (Datetime) field in DocType 'Job Card Time Log' +#. Label of the from_time (Time) field in DocType 'Project' +#. Label of the from_time (Datetime) field in DocType 'Timesheet Detail' +#. Label of the from_time (Time) field in DocType 'Incoming Call Handling +#. Schedule' +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json +#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:91 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:179 +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json +#: erpnext/templates/pages/timelog_info.html:31 +msgid "From Time" +msgstr "" + +#. Label of the from_time (Time) field in DocType 'Appointment Booking Slots' +#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json +msgid "From Time " +msgstr "" + +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.py:72 +msgid "From Time Should Be Less Than To Time" +msgstr "" + +#. Label of the from_value (Float) field in DocType 'Shipping Rule Condition' +#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json +msgid "From Value" +msgstr "" + +#. Label of the from_voucher_detail_no (Data) field in DocType 'Stock +#. Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "From Voucher Detail No" +msgstr "" + +#. Label of the from_voucher_no (Dynamic Link) field in DocType 'Stock +#. Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.js:103 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:164 +msgid "From Voucher No" +msgstr "" + +#. Label of the from_voucher_type (Select) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.js:92 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:158 +msgid "From Voucher Type" +msgstr "" + +#. Label of the from_warehouse (Link) field in DocType 'Purchase Invoice Item' +#. Label of the from_warehouse (Link) field in DocType 'Purchase Order Item' +#. Label of the from_warehouse (Link) field in DocType 'Material Request Plan +#. Item' +#. Label of the warehouse (Link) field in DocType 'Packed Item' +#. Label of the from_warehouse (Link) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "From Warehouse" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:36 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:32 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:36 +msgid "From and To Dates are required." +msgstr "" + +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:166 +msgid "From and To dates are required" +msgstr "" + +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:51 +msgid "From date cannot be greater than To date" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:79 +msgid "From value must be less than to value in row {0}" +msgstr "" + +#. Label of the freeze_account (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/buying/doctype/supplier/supplier_list.js:9 +msgid "Frozen" +msgstr "" + +#. Description of the 'Is Frozen' (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Frozen suppliers block ledger entries until unfrozen. Use this to temporarily lock accounting activity without disabling the supplier." +msgstr "" + +#. Label of the fuel_type (Select) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Fuel Type" +msgstr "" + +#. Label of the uom (Link) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Fuel UOM" +msgstr "" + +#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract' +#. Label of the fulfilled (Check) field in DocType 'Contract Fulfilment +#. Checklist' +#. Option for the 'Service Level Agreement Status' (Select) field in DocType +#. 'Issue' +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json +#: erpnext/support/doctype/issue/issue.json +msgid "Fulfilled" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:24 +msgid "Fulfillment" +msgstr "" + +#. Name of a role +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Fulfillment User" +msgstr "" + +#. Label of the fulfilment_deadline (Date) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Fulfilment Deadline" +msgstr "" + +#. Label of the sb_fulfilment (Section Break) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Fulfilment Details" +msgstr "" + +#. Label of the fulfilment_status (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Fulfilment Status" +msgstr "" + +#. Label of the fulfilment_terms (Table) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Fulfilment Terms" +msgstr "" + +#. Label of the fulfilment_terms (Table) field in DocType 'Contract Template' +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "Fulfilment Terms and Conditions" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:275 +msgid "Full Name, Email or Phone/Mobile of the user are mandatory to continue." +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Full and Final Statement" +msgstr "" + +#. Option for the 'Billing Status' (Select) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Fully Billed" +msgstr "" + +#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance +#. Schedule Detail' +#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance +#. Visit' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Fully Completed" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Delivery Status' (Select) field in DocType 'Pick List' +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Fully Delivered" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:6 +msgid "Fully Depreciated" +msgstr "" + +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase +#. Order' +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Fully Paid" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Furlong" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92 +msgid "Furniture and Fixtures" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:135 +msgid "Further accounts can be made under Groups, but entries can be made against non-Groups" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:31 +msgid "Further cost centers can be made under Groups but entries can be made against non-Groups" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person_tree.js:15 +msgid "Further nodes can be only created under 'Group' type nodes" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1232 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179 +msgid "Future Payment Amount" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1231 +msgid "Future Payment Ref" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:123 +msgid "Future Payments" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:389 +msgid "Future date is not allowed" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:258 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:161 +msgid "G - D" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:16 +msgid "GENERAL LEDGER" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankPicker.tsx:127 +#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:64 +msgid "GL Account" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:172 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:250 +msgid "GL Balance" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +msgid "GL Entry" +msgstr "" + +#. Label of the gle_processing_status (Select) field in DocType 'Period Closing +#. Voucher' +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +msgid "GL Entry Processing Status" +msgstr "" + +#. Label of the gl_reposting_index (Int) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "GL reposting index" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "GS1" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "GTIN" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "GTIN-14" +msgstr "" + +#. Label of the gain_loss (Currency) field in DocType 'Exchange Rate +#. Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Gain/Loss" +msgstr "" + +#. Label of the disposal_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Gain/Loss Account on Asset Disposal" +msgstr "" + +#. Description of the 'Gain/Loss already booked' (Currency) field in DocType +#. 'Exchange Rate Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Gain/Loss accumulated in foreign currency account. Accounts with '0' balance in either Base or Account currency" +msgstr "" + +#. Label of the gain_loss_booked (Currency) field in DocType 'Exchange Rate +#. Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Gain/Loss already booked" +msgstr "" + +#. Label of the gain_loss_unbooked (Currency) field in DocType 'Exchange Rate +#. Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Gain/Loss from Revaluation" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:138 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:225 +#: erpnext/setup/doctype/company/company.py:690 +msgid "Gain/Loss on Asset Disposal" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gallon (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gallon Dry (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gallon Liquid (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gamma" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:102 +msgid "Gantt Chart" +msgstr "" + +#: erpnext/config/projects.py:28 +msgid "Gantt chart of all tasks." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gauss" +msgstr "" + +#. Option for the 'Report' (Select) field in DocType 'Process Statement Of +#. Accounts' +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.js:110 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "General Ledger" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.js:82 +msgctxt "Warehouse" +msgid "General Ledger" +msgstr "" + +#. Label of the general_ledger_remarks_length (Int) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "General Ledger remarks length" +msgstr "" + +#. Label of the gs (Section Break) field in DocType 'Item Group' +#: erpnext/setup/doctype/item_group/item_group.json +msgid "General Settings" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.json +msgid "General and Payment Ledger Comparison" +msgstr "" + +#. Label of the general_and_payment_ledger_mismatch (Check) field in DocType +#. 'Ledger Health' +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +msgid "General and Payment Ledger mismatch" +msgstr "" + +#. Description of the 'Supplier Details' (Text) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "General information about your Supplier" +msgstr "" + +#. Label of the generate_demand (Button) field in DocType 'Sales Forecast' +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +msgid "Generate Demand" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:54 +msgid "Generate Demo Data for Exploration" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/regional/italy.js:4 +msgid "Generate E-Invoice" +msgstr "" + +#. Label of the generate_invoice_at (Select) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Generate Invoice At" +msgstr "" + +#. Label of the generate_schedule (Button) field in DocType 'Maintenance +#. Schedule' +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +msgid "Generate Schedule" +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.js:12 +msgid "Generate Stock Closing Entry" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:112 +msgid "Generate To Delete List" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +msgid "Generate To Delete list first" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight." +msgstr "" + +#. Label of the generated (Check) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Generated" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:56 +msgid "Generating Master Production Schedule..." +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.js:30 +msgid "Generating Preview" +msgstr "" + +#. Label of the get_actual_demand (Button) field in DocType 'Master Production +#. Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +msgid "Get Actual Demand" +msgstr "" + +#. Label of the get_advances (Button) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Get Advances Paid" +msgstr "" + +#. Label of the get_advances (Button) field in DocType 'POS Invoice' +#. Label of the get_advances (Button) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Get Advances Received" +msgstr "" + +#. Label of the get_allocations (Button) field in DocType 'Unreconcile Payment' +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +msgid "Get Allocations" +msgstr "" + +#. Label of the get_balance_for_periodic_accounting (Button) field in DocType +#. 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Get Balance" +msgstr "" + +#. Label of the get_current_stock (Button) field in DocType 'Purchase Receipt' +#. Label of the get_current_stock (Button) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Get Current Stock" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.js:190 +msgid "Get Customer Group Details" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:646 +msgid "Get Delivery Schedule" +msgstr "" + +#. Label of the get_entries (Button) field in DocType 'Exchange Rate +#. Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Get Entries" +msgstr "" + +#. Label of the get_items (Button) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Finished Goods" +msgstr "" + +#. Description of the 'Get Finished Goods' (Button) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Finished Goods for Manufacture" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:57 +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:159 +msgid "Get Invoices" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:104 +msgid "Get Invoices based on Filters" +msgstr "" + +#. Label of the get_item_locations (Button) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Get Item Locations" +msgstr "" + +#. Label of the get_items_from (Select) field in DocType 'Production Plan' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:177 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:202 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:361 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:395 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:427 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:467 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:514 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:537 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:380 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:402 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:447 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:75 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:108 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:80 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:100 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/public/js/controllers/buying.js:325 +#: erpnext/selling/doctype/quotation/quotation.js:182 +#: erpnext/selling/doctype/sales_order/sales_order.js:201 +#: erpnext/selling/doctype/sales_order/sales_order.js:1254 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:187 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:239 +#: erpnext/stock/doctype/material_request/material_request.js:141 +#: erpnext/stock/doctype/material_request/material_request.js:238 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:144 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:244 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:456 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:536 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:627 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:795 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:165 +msgid "Get Items From" +msgstr "" + +#. Label of the transfer_materials (Button) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Items for Purchase / Transfer" +msgstr "" + +#. Label of the get_items_for_mr (Button) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Items for Purchase Only" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:346 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:831 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:844 +msgid "Get Items from BOM" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:419 +msgid "Get Items from Material Requests against this Supplier" +msgstr "" + +#: erpnext/public/js/controllers/buying.js:602 +msgid "Get Items from Product Bundle" +msgstr "" + +#. Label of the get_latest_query (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Get Latest Query" +msgstr "" + +#. Label of the get_material_request (Button) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Material Request" +msgstr "" + +#. Label of the get_material_requests (Button) field in DocType 'Master +#. Production Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:181 +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:183 +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +msgid "Get Material Requests" +msgstr "" + +#. Label of the get_outstanding_invoices (Button) field in DocType 'Journal +#. Entry' +#. Label of the get_outstanding_invoices (Button) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Get Outstanding Invoices" +msgstr "" + +#. Label of the get_outstanding_orders (Button) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Get Outstanding Orders" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:38 +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:40 +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:43 +msgid "Get Payment Entries" +msgstr "" + +#: erpnext/accounts/doctype/payment_order/payment_order.js:23 +#: erpnext/accounts/doctype/payment_order/payment_order.js:31 +msgid "Get Payments from" +msgstr "" + +#. Label of the get_rm_cost_from_consumption_entry (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Get Raw Materials Cost from Consumption Entry" +msgstr "" + +#. Label of the get_sales_orders (Button) field in DocType 'Master Production +#. Schedule' +#. Label of the get_sales_orders (Button) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:128 +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:130 +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Sales Orders" +msgstr "" + +#. Label of the get_secondary_items (Button) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Get Secondary Items" +msgstr "" + +#. Label of the get_started_sections (Code) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Get Started Sections" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:552 +msgid "Get Stock" +msgstr "" + +#. Label of the get_sub_assembly_items (Button) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Get Sub Assembly Items" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:151 +msgid "Get Supplier Group Details" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:461 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:481 +msgid "Get Suppliers" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:485 +msgid "Get Suppliers By" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:357 +msgid "Get Timesheets" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:84 +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:87 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:94 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:97 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:102 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:107 +msgid "Get Unreconciled Entries" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:73 +msgid "Get around the system quickly with keyboard shortcuts" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:71 +msgid "Get stops from" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:196 +msgid "Getting Secondary Items" +msgstr "" + +#. Option for the 'Coupon Type' (Select) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Gift Card" +msgstr "" + +#. Description of the 'Recurse Every (As Per Transaction UOM)' (Float) field in +#. DocType 'Pricing Rule' +#. Description of the 'Recurse Every (As Per Transaction UOM)' (Float) field in +#. DocType 'Promotional Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Give free item for every N quantity" +msgstr "" + +#. Name of a DocType +#. Label of a shortcut in the ERPNext Settings Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/setup/doctype/global_defaults/global_defaults.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Global Defaults" +msgstr "" + +#: erpnext/www/book_appointment/index.html:58 +msgid "Go back" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.js:7 +msgid "Go to Bank Statement Importer in the Banking module to use this importer." +msgstr "" + +#: banking/src/pages/BankReconciliation.tsx:96 +msgid "Go to Desktop" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.js:15 +msgid "Go to the Banking module to setup this rule." +msgstr "" + +#. Label of a Card Break in the Quality Workspace +#: erpnext/quality_management/workspace/quality/quality.json +msgid "Goal and Procedure" +msgstr "" + +#. Group in Quality Procedure's connections +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Goals" +msgstr "" + +#. Option for the 'Shipment Type' (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Goods" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:394 +#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:34 +msgid "Goods In Transit" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:36 +msgid "Goods Transferred" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +msgid "Goods are already received against the outward entry {0}" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:190 +msgid "Government" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subscription' +#. Label of the grace_period (Int) field in DocType 'Subscription Settings' +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json +msgid "Grace Period" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Graduate" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Grain" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Grain/Cubic Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Grain/Gallon (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Grain/Gallon (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram/Cubic Centimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram/Cubic Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram/Cubic Millimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Gram/Litre" +msgstr "" + +#. Label of the grand_total (Currency) field in DocType 'Dunning' +#. Label of the total_amount (Currency) field in DocType 'Payment Entry +#. Reference' +#. Label of the grand_total (Currency) field in DocType 'POS Closing Entry' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType 'POS +#. Invoice' +#. Label of the grand_total (Currency) field in DocType 'POS Invoice' +#. Option for the 'Apply Discount On' (Select) field in DocType 'POS Profile' +#. Option for the 'Apply Discount On' (Select) field in DocType 'Pricing Rule' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Invoice' +#. Label of the base_grand_total (Currency) field in DocType 'Purchase Invoice' +#. Label of the grand_total (Currency) field in DocType 'Purchase Invoice' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Sales Invoice' +#. Label of the base_grand_total (Currency) field in DocType 'Sales Invoice' +#. Label of the grand_total (Currency) field in DocType 'Sales Invoice' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Subscription' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Order' +#. Label of the base_grand_total (Currency) field in DocType 'Purchase Order' +#. Label of the grand_total (Currency) field in DocType 'Purchase Order' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Supplier Quotation' +#. Label of the grand_total (Currency) field in DocType 'Supplier Quotation' +#. Label of the grand_total (Currency) field in DocType 'Production Plan Sales +#. Order' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Quotation' +#. Label of the base_grand_total (Currency) field in DocType 'Quotation' +#. Label of the grand_total (Currency) field in DocType 'Quotation' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Sales Order' +#. Label of the base_grand_total (Currency) field in DocType 'Sales Order' +#. Label of the grand_total (Currency) field in DocType 'Sales Order' +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Delivery Note' +#. Label of the base_grand_total (Currency) field in DocType 'Delivery Note' +#. Label of the grand_total (Currency) field in DocType 'Delivery Note' +#. Label of the grand_total (Currency) field in DocType 'Delivery Stop' +#. Label of the grand_total (Currency) field in DocType 'Landed Cost Purchase +#. Receipt' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Receipt' +#. Label of the base_grand_total (Currency) field in DocType 'Purchase Receipt' +#. Label of the grand_total (Currency) field in DocType 'Purchase Receipt' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:248 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:685 +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:15 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/report/pos_register/pos_register.py:218 +#: erpnext/accounts/report/purchase_register/purchase_register.py:277 +#: erpnext/accounts/report/sales_register/sales_register.py:305 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:105 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:554 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:558 +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:185 +#: erpnext/selling/page/point_of_sale/pos_payment.js:692 +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/templates/includes/order/order_taxes.html:105 +#: erpnext/templates/pages/rfq.html:58 +msgid "Grand Total" +msgstr "" + +#. Label of the base_grand_total (Currency) field in DocType 'POS Invoice' +#. Label of the base_grand_total (Currency) field in DocType 'Supplier +#. Quotation' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:246 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +msgid "Grand Total (Company Currency)" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:252 +msgid "Grand Total (Transaction Currency)" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:147 +msgid "Grand Total must match sum of Payment References" +msgstr "" + +#. Label of the grant_commission (Check) field in DocType 'POS Invoice Item' +#. Label of the grant_commission (Check) field in DocType 'Sales Invoice Item' +#. Label of the grant_commission (Check) field in DocType 'Sales Order Item' +#. Label of the grant_commission (Check) field in DocType 'Delivery Note Item' +#. Label of the grant_commission (Check) field in DocType 'Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +msgid "Grant Commission" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +msgid "Greater Than Amount" +msgstr "" + +#. Label of the greeting_message (Data) field in DocType 'Incoming Call +#. Settings' +#. Label of the greeting_message (Data) field in DocType 'Voice Call Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Greeting Message" +msgstr "" + +#. Label of the greeting_subtitle (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Greeting Subtitle" +msgstr "" + +#. Label of the greeting_title (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Greeting Title" +msgstr "" + +#. Label of the greetings_section_section (Section Break) field in DocType +#. 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Greetings Section" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:26 +msgid "Grocery" +msgstr "" + +#. Label of the gross_margin (Currency) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Gross Margin" +msgstr "" + +#. Label of the per_gross_margin (Percent) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Gross Margin %" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of the gross_profit (Currency) field in DocType 'Quotation Item' +#. Label of the gross_profit (Currency) field in DocType 'Sales Order Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/gross_profit/gross_profit.json +#: erpnext/accounts/report/gross_profit/gross_profit.py:375 +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Gross Profit" +msgstr "" + +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:206 +msgid "Gross Profit / Loss" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:382 +msgid "Gross Profit Percent" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:173 +msgid "Gross Profit Ratio" +msgstr "" + +#. Option for the 'Deduct Tax On Basis' (Select) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Gross Total" +msgstr "" + +#. Label of the gross_weight_pkg (Float) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Gross Weight" +msgstr "" + +#. Label of the gross_weight_uom (Link) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Gross Weight UOM" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.json +msgid "Gross and Net Profit Report" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:148 +msgid "Group By Customer" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:126 +msgid "Group By Supplier" +msgstr "" + +#. Label of the group_name (Data) field in DocType 'Tax Withholding Group' +#: erpnext/accounts/doctype/tax_withholding_group/tax_withholding_group.json +msgid "Group Name" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person_tree.js:14 +msgid "Group Node" +msgstr "" + +#. Label of the group_same_items (Check) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Group Same Items" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:157 +msgid "Group Warehouses cannot be used in transactions. Please change the value of {0}" +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.js:56 +msgid "Group by" +msgstr "" + +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:61 +msgid "Group by Material Request" +msgstr "" + +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:83 +msgid "Group by Party" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:90 +msgid "Group by Purchase Order" +msgstr "" + +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.js:89 +msgid "Group by Sales Order" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:156 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:188 +msgid "Group by Voucher" +msgstr "" + +#: erpnext/stock/utils.py:418 +msgid "Group node warehouse is not allowed to select for transactions" +msgstr "" + +#. Label of the group_same_items (Check) field in DocType 'POS Invoice' +#. Label of the group_same_items (Check) field in DocType 'Purchase Invoice' +#. Label of the group_same_items (Check) field in DocType 'Sales Invoice' +#. Label of the group_same_items (Check) field in DocType 'Purchase Order' +#. Label of the group_same_items (Check) field in DocType 'Supplier Quotation' +#. Label of the group_same_items (Check) field in DocType 'Quotation' +#. Label of the group_same_items (Check) field in DocType 'Sales Order' +#. Label of the group_same_items (Check) field in DocType 'Delivery Note' +#. Label of the group_same_items (Check) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Group same items" +msgstr "" + +#: erpnext/stock/doctype/item/item_dashboard.py:18 +msgid "Groups" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:32 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:32 +msgid "Growth View" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:268 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:171 +msgid "H - F" +msgstr "" + +#. Name of a role +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/contract_template/contract_template.json +#: erpnext/projects/doctype/activity_type/activity_type.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/doctype/task_type/task_type.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/setup/doctype/branch/branch.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/designation/designation.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee_group/employee_group.json +#: erpnext/setup/doctype/holiday_list/holiday_list.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/setup/setup_wizard/data/designation.txt:18 +#: erpnext/support/doctype/issue/issue.json +msgid "HR Manager" +msgstr "" + +#. Name of a role +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/setup/doctype/branch/branch.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/designation/designation.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee_group/employee_group.json +#: erpnext/setup/doctype/holiday_list/holiday_list.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/support/doctype/issue/issue.json +msgid "HR User" +msgstr "" + +#. Option for the 'Distribution Frequency' (Select) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:72 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:77 +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:59 +#: erpnext/public/js/financial_statements.js:456 +#: erpnext/public/js/purchase_trends_filters.js:21 +#: erpnext/public/js/sales_trends_filters.js:13 +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:34 +#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:34 +#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:34 +msgid "Half-Yearly" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hand" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:161 +msgid "Handle Employee Advances" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:228 +msgid "Hardware" +msgstr "" + +#. Label of the has_alternative_item (Check) field in DocType 'Quotation Item' +#: erpnext/selling/doctype/quotation_item/quotation_item.json +msgid "Has Alternative Item" +msgstr "" + +#. Label of the has_batch_no (Check) field in DocType 'Work Order' +#. Label of the has_batch_no (Check) field in DocType 'Item' +#. Label of the has_batch_no (Check) field in DocType 'Serial and Batch Bundle' +#. Label of the has_batch_no (Check) field in DocType 'Stock Ledger Entry' +#. Label of the has_batch_no (Check) field in DocType 'Stock Reservation Entry' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Has Batch No" +msgstr "" + +#. Label of the has_certificate (Check) field in DocType 'Asset Maintenance +#. Log' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +msgid "Has Certificate " +msgstr "" + +#. Label of the has_corrective_cost (Check) field in DocType 'Landed Cost Taxes +#. and Charges' +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Has Corrective Cost" +msgstr "" + +#. Label of the has_expiry_date (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Has Expiry Date" +msgstr "" + +#. Label of the has_item_scanned (Check) field in DocType 'POS Invoice Item' +#. Label of the has_item_scanned (Check) field in DocType 'Sales Invoice Item' +#. Label of the has_item_scanned (Check) field in DocType 'Delivery Note Item' +#. Label of the has_item_scanned (Check) field in DocType 'Purchase Receipt +#. Item' +#. Label of the has_item_scanned (Check) field in DocType 'Stock Entry Detail' +#. Label of the has_item_scanned (Data) field in DocType 'Stock Reconciliation +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Has Item Scanned" +msgstr "" + +#. Label of the has_operating_cost (Check) field in DocType 'Landed Cost Taxes +#. and Charges' +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Has Operating Cost" +msgstr "" + +#. Label of the has_print_format (Check) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Has Print Format" +msgstr "" + +#. Label of the has_priority (Check) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Has Priority" +msgstr "" + +#. Label of the has_serial_no (Check) field in DocType 'Work Order' +#. Label of the has_serial_no (Check) field in DocType 'Item' +#. Label of the has_serial_no (Check) field in DocType 'Serial and Batch +#. Bundle' +#. Label of the has_serial_no (Check) field in DocType 'Stock Ledger Entry' +#. Label of the has_serial_no (Check) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Has Serial No" +msgstr "" + +#. Label of the has_subcontracted (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Has Subcontracted" +msgstr "" + +#. Label of the has_unit_price_items (Check) field in DocType 'Purchase Order' +#. Label of the has_unit_price_items (Check) field in DocType 'Request for +#. Quotation' +#. Label of the has_unit_price_items (Check) field in DocType 'Supplier +#. Quotation' +#. Label of the has_unit_price_items (Check) field in DocType 'Quotation' +#. Label of the has_unit_price_items (Check) field in DocType 'Sales Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Has Unit Price Items" +msgstr "" + +#. Label of the has_variants (Check) field in DocType 'BOM' +#. Label of the has_variants (Check) field in DocType 'BOM Item' +#. Label of the has_variants (Check) field in DocType 'Item' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/stock/doctype/item/item.json +msgid "Has Variants" +msgstr "" + +#. Label of the use_naming_series (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Have default Naming Series for Batch ID?" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:19 +msgid "Head of Marketing and Sales" +msgstr "" + +#. Label of the header_text (Data) field in DocType 'Bank Statement Import Log +#. Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Header Text" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/account/account.json +msgid "Heads (or groups) against which Accounting Entries are made and balances are maintained." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:27 +msgid "Health Care" +msgstr "" + +#. Label of the health_details (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Health Details" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hectare" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hectogram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hectometer" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hectopascal" +msgstr "" + +#. Label of the height (Float) field in DocType 'Shipment Parcel' +#. Label of the height (Float) field in DocType 'Shipment Parcel Template' +#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Height (cm)" +msgstr "" + +#: erpnext/templates/pages/search_help.py:14 +msgid "Help Results for" +msgstr "" + +#. Label of the help_section (Section Break) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Help Section" +msgstr "" + +#. Label of the help_text (HTML) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Help Text" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +msgid "Helps you distribute the Budget/Target across months if you have seasonality in your business." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:355 +msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2040 +msgid "Here are the options to proceed:" +msgstr "" + +#. Description of the 'Family Background' (Small Text) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Here you can maintain family details like name and occupation of parent, spouse and children" +msgstr "" + +#. Description of the 'Health Details' (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Here you can maintain height, weight, allergies, medical concerns etc" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:258 +msgid "Here, you can select a senior of this Employee. Based on this, Organization Chart will be populated." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:77 +msgid "Here, your weekly offs are pre-populated based on the previous selections. You can add more rows to also add public and national holidays individually." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hertz" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +msgid "Hi," +msgstr "" + +#. Label of the hidden_calculation (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Hidden Line (Internal Use Only)" +msgstr "" + +#. Description of the 'Contact List' (Code) field in DocType 'Shareholder' +#: erpnext/accounts/doctype/shareholder/shareholder.json +msgid "Hidden list maintaining the list of contacts linked to Shareholder" +msgstr "" + +#. Label of the hide_currency_symbol (Select) field in DocType 'Global +#. Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Hide Currency Symbol" +msgstr "" + +#. Label of the hide_tax_id (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Hide Customer's Tax ID from sales transactions" +msgstr "" + +#. Label of the hide_when_empty (Check) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Hide If Zero" +msgstr "" + +#. Label of the hide_images (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Hide Images" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +msgid "Hide Recent Orders" +msgstr "" + +#. Label of the hide_unavailable_items (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Hide Unavailable Items" +msgstr "" + +#. Description of the 'Hide If Zero' (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Hide this line if amount is zero" +msgstr "" + +#. Label of the hide_timesheets (Check) field in DocType 'Project User' +#: erpnext/projects/doctype/project_user/project_user.json +msgid "Hide timesheets" +msgstr "" + +#. Description of the 'Priority' (Select) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Higher the number, higher the priority" +msgstr "" + +#. Label of the history_in_company (Section Break) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "History In Company" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:314 +#: erpnext/selling/doctype/sales_order/sales_order.js:1033 +msgid "Hold" +msgstr "" + +#. Label of the sb_14 (Section Break) field in DocType 'Purchase Invoice' +#. Label of the on_hold (Check) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:98 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Hold Invoice" +msgstr "" + +#. Label of the hold_type (Select) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Hold Type" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/holiday/holiday.json +msgid "Holiday" +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.py:162 +msgid "Holiday Date {0} added multiple times" +msgstr "" + +#. Label of the holiday_list (Link) field in DocType 'Appointment Booking +#. Settings' +#. Label of the holiday_list (Link) field in DocType 'Workstation' +#. Label of the holiday_list (Link) field in DocType 'Project' +#. Label of the holiday_list (Link) field in DocType 'Employee' +#. Name of a DocType +#. Label of the holiday_list (Link) field in DocType 'Service Level Agreement' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/holiday_list/holiday_list.json +#: erpnext/setup/doctype/holiday_list/holiday_list_calendar.js:19 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Holiday List" +msgstr "" + +#. Label of the holiday_list_name (Data) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Holiday List Name" +msgstr "" + +#. Label of the holidays_section (Section Break) field in DocType 'Holiday +#. List' +#. Label of the holidays (Table) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Holidays" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Horsepower" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Horsepower-Hours" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hour" +msgstr "" + +#. Label of the hour_rate (Currency) field in DocType 'BOM Operation' +#. Label of the hour_rate (Currency) field in DocType 'Job Card' +#. Label of the hour_rate (Float) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Hour Rate" +msgstr "" + +#. Label of the hours (Float) field in DocType 'Workstation Working Hour' +#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:28 +#: erpnext/templates/pages/timelog_info.html:37 +msgid "Hours" +msgstr "" + +#: erpnext/templates/pages/projects.html:26 +msgid "Hours Spent" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:67 +msgid "How Pricing Rule is applied?" +msgstr "" + +#. Label of the frequency (Select) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "How frequently?" +msgstr "" + +#. Description of the 'Quantity (Output Qty)' (Float) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "How many units of the final product this BOM makes." +msgstr "" + +#. Label of the project_update_frequency (Select) field in DocType 'Buying +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "How often should project be updated of Total Purchase Cost ?" +msgstr "" + +#. Label of the sales_update_frequency (Select) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "How often should sales data be updated in Company/Project?" +msgstr "" + +#. Description of the 'Data Source' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "How this line gets its data" +msgstr "" + +#. Description of the 'Value Type' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "How to format and present values in the financial report (only if different from column fieldtype)" +msgstr "" + +#. Label of the hours (Float) field in DocType 'Timesheet Detail' +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Hrs" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:500 +msgid "Human Resources" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hundredweight (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Hundredweight (US)" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:283 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:186 +msgid "I - J" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:293 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:196 +msgid "I - K" +msgstr "" + +#. Label of the iban (Data) field in DocType 'Bank Account' +#. Label of the iban (Data) field in DocType 'Bank Guarantee' +#. Label of the iban (Read Only) field in DocType 'Payment Request' +#. Label of the iban (Data) field in DocType 'Employee' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/setup/doctype/employee/employee.json +msgid "IBAN" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:93 +msgid "IMPORTANT: Create a backup before proceeding!" +msgstr "" + +#. Name of a report +#: erpnext/regional/report/irs_1099/irs_1099.json +msgid "IRS 1099" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "ISBN" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "ISBN-10" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "ISBN-13" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "ISSN" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Iches Of Water" +msgstr "" + +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:128 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:69 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:115 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:192 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:83 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:152 +msgid "Id" +msgstr "" + +#. Description of the 'From Package No.' (Int) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Identification of the package for the delivery (for print)" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:5 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:441 +msgid "Identifying Decision Makers" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Idle" +msgstr "" + +#. Description of the 'Book Deferred entries based on' (Select) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If \"Months\" is selected, a fixed amount will be booked as deferred revenue or expense for each month irrespective of the number of days in a month. It will be prorated if deferred revenue or expense is not booked for an entire month" +msgstr "" + +#. Description of the 'Reconcile on Advance Payment Date' (Check) field in +#. DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "If Enabled - Reconciliation happens on the Advance Payment posting date
            \n" +"If Disabled - Reconciliation happens on oldest of 2 Dates: Invoice Date or the Advance Payment posting date
            \n" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:34 +msgid "If Auto Opt In is checked, then the customers will be automatically linked with the concerned Loyalty Program (on save)" +msgstr "" + +#. Description of the 'Cost Center' (Link) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "If Income or Expense" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:127 +msgid "If a party cannot be matched by account number or IBAN, the system will try fuzzy matching using the party name and transaction description." +msgstr "" + +#: erpnext/manufacturing/doctype/operation/operation.js:32 +msgid "If an operation is divided into sub operations, they can be added here." +msgstr "" + +#. Description of the 'Account' (Link) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "If blank, parent Warehouse Account or company default will be considered in transactions" +msgstr "" + +#. Description of the 'Bill for rejected quantity in Purchase Invoice' (Check) +#. field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "If checked, Rejected Quantity will be included while making Purchase Invoice from Purchase Receipt." +msgstr "" + +#. Description of the 'Reserve Stock' (Check) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "If checked, Stock will be reserved on Submit" +msgstr "" + +#. Description of the 'Is Credit Card' (Check) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "If checked, journal entries made using bank reconciliation will be of type \"Credit Card Entry\"" +msgstr "" + +#. Description of the 'Scan Mode' (Check) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "If checked, picked qty won't automatically be fulfilled on submit of pick list." +msgstr "" + +#. Description of the 'Allocate Full Amount to Stock Items' (Check) field in +#. DocType 'Purchase Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "If checked, the entire amount (e.g. Freight) is allocated to the valuation of stock & asset items only. If unchecked, the amount is distributed across all items and the portion belonging to non-stock items is not added to valuation." +msgstr "" + +#. Description of the 'Considered In Paid Amount' (Check) field in DocType +#. 'Purchase Taxes and Charges' +#. Description of the 'Considered In Paid Amount' (Check) field in DocType +#. 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "If checked, the tax amount will be considered as already included in the Paid Amount in Payment Entry" +msgstr "" + +#. Description of the 'Is this Tax included in Basic Rate?' (Check) field in +#. DocType 'Purchase Taxes and Charges' +#. Description of the 'Is this Tax included in Basic Rate?' (Check) field in +#. DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount" +msgstr "" + +#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in +#. DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line." +msgstr "" + +#. Description of the 'Update Stock' (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "If checked, updates inventory; stock and accounting entries are created together. Leave unchecked if a Delivery Note is created separately." +msgstr "" + +#. Description of the 'Update Stock' (Check) field in DocType 'Purchase +#. Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "If checked, updates inventory; stock and accounting entries are created together. Leave unchecked if a Purchase Receipt is created separately." +msgstr "" + +#: erpnext/public/js/setup_wizard.js:56 +msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later." +msgstr "" + +#. Description of the 'Service Address' (Small Text) field in DocType 'Warranty +#. Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "If different than customer address" +msgstr "" + +#. Description of the 'Disable In Words' (Check) field in DocType 'Global +#. Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "If disable, 'In Words' field will not be visible in any transaction" +msgstr "" + +#. Description of the 'Disable Rounded Total' (Check) field in DocType 'Global +#. Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "If disable, 'Rounded Total' field will not be visible in any transaction" +msgstr "" + +#. Description of the 'Ignore Pricing Rule' (Check) field in DocType 'Pick +#. List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "If enabled then system won't apply the pricing rule on the delivery note which will be create from the pick list" +msgstr "" + +#. Description of the 'Pick Manually' (Check) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "If enabled then system won't override the picked qty / batches / serial numbers / warehouse." +msgstr "" + +#. Description of the 'Send Document Print' (Check) field in DocType 'Request +#. for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "If enabled, a print of this document will be attached to each email" +msgstr "" + +#. Description of the 'Enable discount accounting for selling' (Check) field in +#. DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "If enabled, additional ledger entries will be made for discounts in a separate Discount Account" +msgstr "" + +#. Description of the 'Send Attached Files' (Check) field in DocType 'Request +#. for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "If enabled, all files attached to this document will be attached to each email" +msgstr "" + +#. Description of the 'Do not update Serial / Batch on creation of auto bundle' +#. (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, do not update serial / batch values in the stock transactions on creation of auto Serial \n" +" / Batch Bundle. " +msgstr "" + +#. Description of the 'Consider Projected Qty in Calculation' (Check) field in +#. DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "If enabled, formula for Qty to Order:
            \n" +"Required Qty (BOM) - Projected Qty.
            This helps avoid over-ordering." +msgstr "" + +#. Description of the 'Consider Projected Qty in Calculation (RM)' (Check) +#. field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "If enabled, formula for Required Qty:
            \n" +"Required Qty (BOM) - Projected Qty.
            This helps avoid over-ordering." +msgstr "" + +#. Description of the 'Create Ledger Entries for Change Amount' (Check) field +#. in DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "If enabled, ledger entries will be posted for change amount in POS transactions" +msgstr "" + +#. Description of the 'Automatically run rules on unreconciled transactions' +#. (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If enabled, rule matching algorithm will run every hour" +msgstr "" + +#. Description of the 'Grant Commission' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If enabled, sales from this item will be included in Sales Person and Sales Partner commission calculations" +msgstr "" + +#. Description of the 'Allow delivery of overproduced quantity' (Check) field +#. in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "If enabled, system will allow user to deliver the entire quantity of the finished goods produced against the Subcontracting Inward Order. If disabled, system will allow delivery of only the ordered quantity." +msgstr "" + +#. Description of the 'Set incoming rate as zero for expired Batch' (Check) +#. field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "If enabled, system will set incoming rate as zero for stand-alone credit notes with expired batch item." +msgstr "" + +#. Description of the 'Deliver secondary Items' (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "If enabled, the Secondary Items generated against a Finished Good will also be added in the Stock Entry when delivering that Finished Good." +msgstr "" + +#. Description of the 'Disable Rounded Total' (Check) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "If enabled, the consolidated invoices will have rounded total disabled" +msgstr "" + +#. Description of the 'Allow internal transfers at user-defined rate' (Check) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, the item rate won't adjust to the valuation rate during internal transfers, but accounting will still use the valuation rate. This will allow the user to specify a different rate for printing or taxation purposes." +msgstr "" + +#. Description of the 'Validate Material Transfer warehouses' (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, the source and target warehouse in the Material Transfer Stock Entry must be different else an error will be thrown. If inventory dimensions are present, same source and target warehouse can be allowed but atleast any one of the inventory dimension fields must be different." +msgstr "" + +#. Description of the 'Allow negative stock for Batch' (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, the system will allow negative stock entries for the batch. But, this may lead to incorrect valuation rates, so it is recommended to avoid using this option. The system will permit negative stock only when it is caused by backdated entries and will validate and block negative stock in all other cases." +msgstr "" + +#. Description of the 'Allow Negative Stock for Batch' (Check) field in DocType +#. 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "If enabled, the system will allow negative stock entries for this batch, overriding the 'Allow negative stock for Batch' setting in Stock Settings. This may lead to incorrect valuation rates, so it is recommended to avoid using this option." +msgstr "" + +#. Description of the 'Allow UOM with conversion rate defined in Item' (Check) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, the system will allow selecting UOMs in sales and purchase transactions only if the conversion rate is set in the item master." +msgstr "" + +#. Description of the 'Allow Editing of Items and Quantities in Work Order' +#. (Check) field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "If enabled, the system will allow users to edit the raw materials and their quantities in the Work Order. The system will not reset the quantities as per the BOM, if the user has changed them." +msgstr "" + +#. Description of the 'Set valuation rate for rejected Materials' (Check) field +#. in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "If enabled, the system will generate an accounting entry for materials rejected in the Purchase Receipt." +msgstr "" + +#. Description of the 'Enable Item-wise Inventory Account' (Check) field in +#. DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "If enabled, the system will use the inventory account set in the Item Master or Item Group or Brand. Otherwise, it will use the inventory account set in the Warehouse." +msgstr "" + +#. Description of the 'Do not use Batch-wise Valuation' (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, the system will use the moving average valuation method to calculate the valuation rate for the batched items and will not consider the individual batch-wise incoming rate." +msgstr "" + +#. Description of the 'Validate Applied Rule' (Check) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "If enabled, then system will only validate the pricing rule and not apply automatically. User has to manually set the discount percentage / margin / free items to validate the pricing rule" +msgstr "" + +#. Description of the 'Include in Charts' (Check) field in DocType 'Financial +#. Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "If enabled, this row's values will be displayed on financial charts" +msgstr "" + +#. Description of the 'Confirm before resetting posting date' (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If enabled, user will be alerted before resetting posting date to current date in relevant transactions" +msgstr "" + +#. Description of the 'Disable Serial No and Batch selector' (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If enabled, users must enter Serial No. / Batch data manually instead of using the selector dialog." +msgstr "" + +#. Description of the 'Variant Of' (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If item is a variant of another item then description, image, pricing, taxes etc will be set from the template unless explicitly specified" +msgstr "" + +#. Description of the 'Get Items for Purchase / Transfer' (Button) field in +#. DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "If items in stock, proceed with Material Transfer or Purchase." +msgstr "" + +#. Description of the 'Role allowed to create/edit back-dated transactions' +#. (Link) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "If mentioned, the system will allow only the users with this Role to create or modify any stock transaction earlier than the latest stock transaction for a specific item and warehouse. If set as blank, it allows all users to create/edit back-dated transactions." +msgstr "" + +#. Description of the 'To Package No.' (Int) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "If more than one package of the same type (for print)" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:103 +msgid "If multiple Pricing Rules continue to prevail, users are asked to set Priority manually to resolve conflict." +msgstr "" + +#. Description of the 'Use prices from Default Price List as fallback' (Check) +#. field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "If no Item Price is found for an item in the Price List set in the transaction, prices from the Default Price List will be fetched." +msgstr "" + +#. Description of the 'Automatically add taxes from Taxes and Charges Template' +#. (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." +msgstr "" + +#: erpnext/stock/stock_ledger.py:2050 +msgid "If not, you can Cancel / Submit this entry" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +msgid "If party does not exist, create it using the Customer Name field." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +msgid "If party does not exist, create it using the Supplier Name field." +msgstr "" + +#. Description of the 'Free Item Rate' (Currency) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "If rate is zero then item will be treated as \"Free Item\"" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:258 +msgid "If rule matches, then:" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:51 +msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, 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." +msgstr "" + +#. Description of the 'Default Accounts' (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "If set, accounting entries for this customer will post to these accounts instead of the company default." +msgstr "" + +#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1267 +msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected." +msgstr "" + +#. Description of the 'Frozen' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "If the account is frozen, entries are allowed to restricted users." +msgstr "" + +#: erpnext/stock/stock_ledger.py:2043 +msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." +msgstr "" + +#. Description of the 'Projected On Hand' (Float) field in DocType 'Material +#. Request Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "If the reorder check is set at the Group warehouse level, the available quantity becomes the sum of the projected quantities of all its child warehouses." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1286 +msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed." +msgstr "" + +#. Description of the 'Catch All' (Link) field in DocType 'Communication +#. Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "If there is no assigned timeslot, then communication will be handled by this group" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:24 +msgid "If there is no title column, use the code column for the title." +msgstr "" + +#. Description of the 'Allocate Payment Based On Payment Terms' (Check) field +#. in DocType 'Payment Terms Template' +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json +msgid "If this checkbox is checked, paid amount will be splitted and allocated as per the amounts in payment schedule against each payment term" +msgstr "" + +#. Description of the 'Follow Calendar Months' (Check) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "If this is checked subsequent new invoices will be created on calendar month and quarter start dates irrespective of current invoice start date" +msgstr "" + +#. Description of the 'Submit Journal entries' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If this is unchecked Journal Entries will be saved in a Draft state and will have to be submitted manually" +msgstr "" + +#. Description of the 'Book deferred entries via Journal Entry' (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "If this is unchecked, direct GL entries will be created to book deferred revenue or expense" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:761 +msgid "If this is undesirable please cancel the corresponding Payment Entry." +msgstr "" + +#. Description of the 'Has Variants' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "If this item has variants, then it cannot be selected in sales orders etc." +msgstr "" + +#: erpnext/buying/doctype/buying_settings/buying_settings.js:76 +msgid "If this option is configured 'Yes', ERPNext will prevent you from creating a Purchase Invoice or Receipt without creating a Purchase Order first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Order' checkbox in the Supplier master." +msgstr "" + +#: erpnext/buying/doctype/buying_settings/buying_settings.js:83 +msgid "If this option is configured 'Yes', ERPNext will prevent you from creating a Purchase Invoice without creating a Purchase Receipt first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Receipt' checkbox in the Supplier master." +msgstr "" + +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:10 +msgid "If ticked, multiple materials can be used for a single Work Order. This is useful if one or more time consuming products are being manufactured." +msgstr "" + +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:24 +msgid "If ticked, the BOM cost will be automatically updated based on Valuation Rate / Price List Rate / last purchase rate of raw materials." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:82 +msgid "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." +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:31 +msgid "If unlimited expiry for the Loyalty Points, keep the Expiry Duration empty or 0." +msgstr "" + +#. Description of the 'Is Rejected Warehouse' (Check) field in DocType +#. 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "If yes, then this warehouse will be used to store rejected materials" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1482 +msgid "If you are maintaining stock of this Item in your Inventory, ERPNext will make a stock ledger entry for each transaction of this item." +msgstr "" + +#. Description of the 'Unreconciled Entries' (Section Break) field in DocType +#. 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "If you need to reconcile particular transactions against each other, then please select accordingly. If not, all the transactions will be allocated in FIFO order." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:92 +msgid "If you still want to proceed, please disable {0} checkbox." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +msgid "If you still want to proceed, please enable {0}." +msgstr "" + +#. Description of the 'Sequence ID' (Int) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "If you want to run operations in parallel, keep the same sequence ID for them." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:375 +msgid "If you {0} {1} quantities of the item {2}, the scheme {3} will be applied on the item." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:380 +msgid "If you {0} {1} worth item {2}, the scheme {3} will be applied on the item." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:81 +msgid "If your bank statement shows a different closing balance, it is because all transactions have not reconciled yet." +msgstr "" + +#. Option for the 'Action if Annual Budget Exceeded on MR' (Select) field in +#. DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on MR' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Annual Budget Exceeded on PO' (Select) field in +#. DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on PO' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Annual Budget Exceeded on Actual' (Select) field +#. in DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on Actual' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Anual Budget Exceeded on Cumulative Expense' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Accumulative Monthly Budget Exceeded on Cumulative +#. Expense' (Select) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Ignore" +msgstr "" + +#. Label of the ignore_account_closing_balance (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Ignore Account closing balance" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:131 +msgid "Ignore Closing Balance" +msgstr "" + +#. Label of the ignore_default_payment_terms_template (Check) field in DocType +#. 'Purchase Invoice' +#. Label of the ignore_default_payment_terms_template (Check) field in DocType +#. 'Sales Invoice' +#. Label of the ignore_default_payment_terms_template (Check) field in DocType +#. 'Sales Order' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Ignore Default Payment Terms Template" +msgstr "" + +#. Label of the ignore_employee_time_overlap (Check) field in DocType 'Projects +#. Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +msgid "Ignore Employee Time Overlap" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:145 +msgid "Ignore Empty Stock" +msgstr "" + +#. Label of the ignore_exchange_rate_revaluation_journals (Check) field in +#. DocType 'Process Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:224 +msgid "Ignore Exchange Rate Revaluation and Gain / Loss Journals" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1470 +msgid "Ignore Existing Ordered Qty" +msgstr "" + +#. Label of the ignore_is_opening_check_for_reporting (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Ignore Is Opening check for reporting" +msgstr "" + +#. Label of the ignore_pricing_rule (Check) field in DocType 'POS Invoice' +#. Label of the ignore_pricing_rule (Check) field in DocType 'POS Profile' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Purchase Invoice' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Sales Invoice' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Purchase Order' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Supplier +#. Quotation' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Quotation' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Sales Order' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Delivery Note' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Pick List' +#. Label of the ignore_pricing_rule (Check) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Ignore Pricing Rule" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:335 +msgid "Ignore Pricing Rule is enabled. Cannot apply coupon code." +msgstr "" + +#. Label of the ignore_cr_dr_notes (Check) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:120 +#: erpnext/accounts/report/general_ledger/general_ledger.js:229 +msgid "Ignore System Generated Credit / Debit Notes" +msgstr "" + +#. Label of the ignore_tax_withholding_threshold (Check) field in DocType +#. 'Journal Entry' +#. Label of the ignore_tax_withholding_threshold (Check) field in DocType +#. 'Payment Entry' +#. Label of the ignore_tax_withholding_threshold (Check) field in DocType +#. 'Purchase Invoice' +#. Label of the ignore_tax_withholding_threshold (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Ignore Tax Withholding Threshold" +msgstr "" + +#. Label of the ignore_user_time_overlap (Check) field in DocType 'Projects +#. Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +msgid "Ignore User Time Overlap" +msgstr "" + +#. Description of the 'Add Manually' (Check) field in DocType 'Repost Payment +#. Ledger' +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +msgid "Ignore Voucher Type filter and Select Vouchers Manually" +msgstr "" + +#. Label of the ignore_workstation_time_overlap (Check) field in DocType +#. 'Projects Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +msgid "Ignore Workstation Time Overlap" +msgstr "" + +#. Description of the 'Ignore Is Opening check for reporting' (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:267 +msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}." +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234 +msgid "Impairment" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:6 +msgid "Implementation Partner" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:258 +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:294 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:305 +#: banking/src/pages/BankStatementImporterContainer.tsx:28 +msgid "Import Bank Statement" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json +msgid "Import Chart of Accounts from a csv file" +msgstr "" + +#. Label of a Link in the ERPNext Settings Workspace +#. Label of a Link in the Home Workspace +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/setup/workspace/home/home.json +msgid "Import Data" +msgstr "" + +#: erpnext/setup/doctype/employee/employee_list.js:16 +msgid "Import Employees" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list.js:7 +#: erpnext/edi/doctype/code_list/code_list_list.js:3 +#: erpnext/edi/doctype/common_code/common_code_list.js:3 +msgid "Import Genericode File" +msgstr "" + +#. Label of the import_invoices (Button) field in DocType 'Import Supplier +#. Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Import Invoices" +msgstr "" + +#. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement +#. Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Import MT940 Fromat" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 +msgid "Import Successful" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +msgid "Import Summary" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Name of a DocType +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Import Supplier Invoice" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:228 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:84 +msgid "Import Using CSV file" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:131 +msgid "Import completed. {0} common codes created." +msgstr "" + +#: erpnext/stock/doctype/item_price/item_price.js:38 +msgid "Import in Bulk" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:206 +msgid "Import template should be of type .csv, .xlsx, .xls or .pdf" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:277 +msgid "Import your bank statement to get started." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:115 +msgid "Import {0} transactions" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:251 +msgid "Imported On" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:192 +msgid "Imported {0} DocTypes" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:36 +msgid "Importing Code Lists from remote URLs is not allowed." +msgstr "" + +#: erpnext/edi/doctype/common_code/common_code.py:111 +msgid "Importing Common Codes" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:132 +msgid "Importing {0} transactions" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:115 +msgid "Importing..." +msgstr "" + +#. Option for the 'Manufacturing Type' (Select) field in DocType 'Production +#. Plan Sub Assembly Item' +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "In House" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:18 +msgid "In Maintenance" +msgstr "" + +#. Description of the 'Downtime' (Float) field in DocType 'Downtime Entry' +#. Description of the 'Lead Time' (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "In Mins" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:146 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:178 +msgid "In Party Currency" +msgstr "" + +#. Description of the 'Rate of Depreciation' (Percent) field in DocType 'Asset +#. Depreciation Schedule' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "In Percentage" +msgstr "" + +#. Option for the 'Qualification Status' (Select) field in DocType 'Lead' +#. Option for the 'Status' (Select) field in DocType 'Production Plan' +#. Option for the 'Status' (Select) field in DocType 'Work Order' +#. Option for the 'Inspection Type' (Select) field in DocType 'Quality +#. Inspection' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "In Process" +msgstr "" + +#: erpnext/stock/report/item_variant_details/item_variant_details.py:107 +msgid "In Production" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:112 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82 +#: erpnext/stock/report/stock_balance/stock_balance.py:547 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:317 +msgid "In Qty" +msgstr "" + +#: erpnext/templates/form_grid/stock_entry_grid.html:26 +msgid "In Stock" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Delivery Trip' +#. Option for the 'Transfer Status' (Select) field in DocType 'Material +#. Request' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:11 +#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:28 +msgid "In Transit" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:477 +msgid "In Transit Transfer" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:446 +msgid "In Transit Warehouse" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:553 +msgid "In Value" +msgstr "" + +#. Label of the in_words (Small Text) field in DocType 'Payment Entry' +#. Label of the in_words (Data) field in DocType 'POS Invoice' +#. Label of the base_in_words (Data) field in DocType 'Purchase Invoice' +#. Label of the in_words (Data) field in DocType 'Purchase Invoice' +#. Label of the base_in_words (Small Text) field in DocType 'Sales Invoice' +#. Label of the in_words (Small Text) field in DocType 'Sales Invoice' +#. Label of the base_in_words (Data) field in DocType 'Purchase Order' +#. Label of the in_words (Data) field in DocType 'Purchase Order' +#. Label of the in_words (Data) field in DocType 'Supplier Quotation' +#. Label of the base_in_words (Data) field in DocType 'Quotation' +#. Label of the in_words (Data) field in DocType 'Quotation' +#. Label of the base_in_words (Data) field in DocType 'Sales Order' +#. Label of the in_words (Data) field in DocType 'Sales Order' +#. Label of the base_in_words (Data) field in DocType 'Delivery Note' +#. Label of the in_words (Data) field in DocType 'Delivery Note' +#. Label of the base_in_words (Data) field in DocType 'Purchase Receipt' +#. Label of the in_words (Data) field in DocType 'Purchase Receipt' +#. Label of the in_words (Data) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "In Words" +msgstr "" + +#. Label of the base_in_words (Small Text) field in DocType 'Payment Entry' +#. Label of the base_in_words (Data) field in DocType 'POS Invoice' +#. Label of the base_in_words (Data) field in DocType 'Supplier Quotation' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +msgid "In Words (Company Currency)" +msgstr "" + +#. Description of the 'In Words' (Data) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "In Words (Export) will be visible once you save the Delivery Note." +msgstr "" + +#. Description of the 'In Words' (Data) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "In Words will be visible once you save the Delivery Note." +msgstr "" + +#. Description of the 'In Words (Company Currency)' (Data) field in DocType +#. 'POS Invoice' +#. Description of the 'In Words' (Small Text) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "In Words will be visible once you save the Sales Invoice." +msgstr "" + +#. Description of the 'In Words' (Data) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "In Words will be visible once you save the Sales Order." +msgstr "" + +#. Description of the 'Completed Time' (Data) field in DocType 'Job Card +#. Operation' +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +msgid "In mins" +msgstr "" + +#. Description of the 'Operation Time' (Float) field in DocType 'BOM Operation' +#. Description of the 'Delay between Delivery Stops' (Int) field in DocType +#. 'Delivery Settings' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "In minutes" +msgstr "" + +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.js:8 +msgid "In row {0} of Appointment Booking Slots: \"To Time\" must be later than \"From Time\"." +msgstr "" + +#: erpnext/templates/includes/products_as_grid.html:18 +msgid "In stock" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:26 +msgid "In the case of multi-tier program, Customers will be auto assigned to the concerned tier as per their spent" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:753 +#, python-format +msgid "In this case, the amount will be calculated as 25% of the transaction amount. If the transaction amount is 200, then this will be calculated as 200 * 0.25 = 50." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1515 +msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc." +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/selling/report/inactive_customers/inactive_customers.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Inactive Customers" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.json +msgid "Inactive Sales Items" +msgstr "" + +#. Label of the off_status_image (Attach Image) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Inactive Status" +msgstr "" + +#. Label of the incentives (Currency) field in DocType 'Sales Team' +#: erpnext/selling/doctype/sales_team/sales_team.json +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:92 +msgid "Incentives" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Inch" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Inch Pound-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Inch/Minute" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Inch/Second" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Inches Of Mercury" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:357 +msgid "Include" +msgstr "" + +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:77 +msgid "Include Account Currency" +msgstr "" + +#. Label of the include_ageing (Check) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Include Ageing Summary" +msgstr "" + +#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.js:8 +#: erpnext/selling/report/sales_order_trends/sales_order_trends.js:8 +msgid "Include Closed Orders" +msgstr "" + +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:54 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:54 +msgid "Include Default FB Assets" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:45 +#: erpnext/accounts/report/cash_flow/cash_flow.js:37 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:131 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:85 +#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:29 +#: erpnext/accounts/report/general_ledger/general_ledger.js:193 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:46 +#: erpnext/accounts/report/trial_balance/trial_balance.js:105 +msgid "Include Default FB Entries" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:90 +msgid "Include Expired" +msgstr "" + +#: erpnext/stock/report/available_batch_report/available_batch_report.js:80 +msgid "Include Expired Batches" +msgstr "" + +#. Label of the include_exploded_items (Check) field in DocType 'Purchase +#. Invoice Item' +#. Label of the include_exploded_items (Check) field in DocType 'Production +#. Plan Item' +#. Label of the include_exploded_items (Check) field in DocType 'Subcontracting +#. Inward Order Item' +#. Label of the include_exploded_items (Check) field in DocType 'Subcontracting +#. Order Item' +#. Label of the include_exploded_items (Check) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1466 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Include Exploded Items" +msgstr "" + +#. Label of the include_item_in_manufacturing (Check) field in DocType 'BOM +#. Explosion Item' +#. Label of the include_item_in_manufacturing (Check) field in DocType 'BOM +#. Item' +#. Label of the include_item_in_manufacturing (Check) field in DocType 'Work +#. Order Item' +#. Label of the include_item_in_manufacturing (Check) field in DocType 'Item' +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/stock/doctype/item/item.json +msgid "Include Item In Manufacturing" +msgstr "" + +#. Label of the include_non_stock_items (Check) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Include Non Stock Items" +msgstr "" + +#. Label of the include_pos_transactions (Check) field in DocType 'Bank +#. Clearance' +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:45 +msgid "Include POS Transactions" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 +msgid "Include Payment" +msgstr "" + +#. Label of the is_pos (Check) field in DocType 'POS Invoice' +#. Label of the is_pos (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Include Payment (POS)" +msgstr "" + +#. Label of the include_reconciled_entries (Check) field in DocType 'Bank +#. Clearance' +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +msgid "Include Reconciled Entries" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.js:90 +msgid "Include Returned Invoices (Stand-alone)" +msgstr "" + +#. Label of the include_safety_stock (Check) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Include Safety Stock in Required Qty Calculation" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:87 +msgid "Include Sub-assembly Raw Materials" +msgstr "" + +#. Label of the include_subcontracted_items (Check) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Include Subcontracted Items" +msgstr "" + +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:52 +msgid "Include Timesheets in Draft Status" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:109 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:108 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:51 +msgid "Include UOM" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:137 +msgid "Include Zero Stock Items" +msgstr "" + +#. Label of the include_in_charts (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Include in Charts" +msgstr "" + +#. Label of the include_in_gross (Check) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Include in gross" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the included_fee (Currency) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Included Fee" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:337 +msgid "Included fee is bigger than the withdrawal itself." +msgstr "" + +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:74 +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:75 +msgid "Included in Gross Profit" +msgstr "" + +#. Description of the 'Use Multi-Level BOM' (Check) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Including items for sub assemblies" +msgstr "" + +#. Option for the 'Root Type' (Select) field in DocType 'Account' +#. Option for the 'Root Type' (Select) field in DocType 'Account Category' +#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge' +#. Option for the 'Type' (Select) field in DocType 'Process Deferred +#. Accounting' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241 +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 +#: erpnext/accounts/report/account_balance/account_balance.js:27 +#: erpnext/accounts/report/financial_statements.py:803 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 +msgid "Income" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the income_account (Link) field in DocType 'Dunning' +#. Label of the income_account (Link) field in DocType 'Dunning Type' +#. Label of the income_account (Link) field in DocType 'POS Invoice Item' +#. Label of the income_account (Link) field in DocType 'POS Profile' +#. Label of the income_account (Link) field in DocType 'Sales Invoice Item' +#. Label of the income_account (Link) field in DocType 'Item Default' +#. Label of the vf_income_account (Read Only) field in DocType 'Item Default' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/account_balance/account_balance.js:53 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:77 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:298 +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Income Account" +msgstr "" + +#. Label of the income_and_expense_account (Section Break) field in DocType +#. 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Income and Expense" +msgstr "" + +#. Description of the 'Enable Deferred Expense' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Income from this item will be recognized over a period of months instead of all at once. Eg: annual subscription paid upfront." +msgstr "" + +#. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Incoming Bills" +msgstr "" + +#. Name of a DocType +#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json +msgid "Incoming Call Handling Schedule" +msgstr "" + +#. Name of a DocType +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +msgid "Incoming Call Settings" +msgstr "" + +#. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Incoming Payment" +msgstr "" + +#. Label of the incoming_rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the incoming_rate (Currency) field in DocType 'Packed Item' +#. Label of the purchase_rate (Float) field in DocType 'Serial No' +#. Label of the incoming_rate (Currency) field in DocType 'Stock Ledger Entry' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/available_serial_no/available_serial_no.py:146 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:360 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96 +msgid "Incoming Rate" +msgstr "" + +#. Label of the incoming_rate (Currency) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Incoming Rate (Costing)" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:38 +msgid "Incoming call from {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:133 +msgid "Incompatible Setting Detected" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +msgid "Incorrect Account" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.json +msgid "Incorrect Balance Qty After Transaction" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1057 +msgid "Incorrect Batch Consumed" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:602 +msgid "Incorrect Check in (group) Warehouse for Reorder" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +msgid "Incorrect Company" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +msgid "Incorrect Component Quantity" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:390 +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:56 +msgid "Incorrect Date" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +msgid "Incorrect Invoice" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:362 +msgid "Incorrect Payment Type" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:117 +msgid "Incorrect Reference Document (Purchase Receipt Item)" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.json +msgid "Incorrect Serial No Valuation" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1070 +msgid "Incorrect Serial Number Consumed" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.json +msgid "Incorrect Serial and Batch Bundle" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.json +msgid "Incorrect Stock Value Report" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:173 +msgid "Incorrect Type of Transaction" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:188 +#: erpnext/stock/doctype/pick_list/pick_list.py:212 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:160 +msgid "Incorrect Warehouse" +msgstr "" + +#: erpnext/accounts/general_ledger.py:69 +msgid "Incorrect number of General Ledger Entries found. You might have selected a wrong Account in the transaction." +msgstr "" + +#: banking/src/pages/BankReconciliation.tsx:120 +msgid "Incorrectly Cleared Entries" +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:202 +msgid "Incorrectly cleared entries as per the report." +msgstr "" + +#. Label of the incoterm (Link) field in DocType 'Purchase Invoice' +#. Label of the incoterm (Link) field in DocType 'Sales Invoice' +#. Label of the incoterm (Link) field in DocType 'Purchase Order' +#. Label of the incoterm (Link) field in DocType 'Request for Quotation' +#. Label of the incoterm (Link) field in DocType 'Supplier Quotation' +#. Label of the incoterm (Link) field in DocType 'Quotation' +#. Label of the incoterm (Link) field in DocType 'Sales Order' +#. Name of a DocType +#. Label of the incoterm (Link) field in DocType 'Delivery Note' +#. Label of the incoterm (Link) field in DocType 'Purchase Receipt' +#. Label of the incoterm (Link) field in DocType 'Shipment' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Incoterm" +msgstr "" + +#. Label of the increase_in_asset_life (Int) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Increase In Asset Life (Months)" +msgstr "" + +#. Label of the increase_in_asset_life (Int) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Increase In Asset Life(Months)" +msgstr "" + +#. Label of the increment (Float) field in DocType 'Item Attribute' +#. Label of the increment (Float) field in DocType 'Item Variant Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Increment" +msgstr "" + +#: erpnext/stock/doctype/item_attribute/item_attribute.py:98 +msgid "Increment cannot be 0" +msgstr "" + +#: erpnext/controllers/item_variant.py:120 +msgid "Increment for Attribute {0} cannot be 0" +msgstr "" + +#. Label of the indentation_level (Int) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Indent Level" +msgstr "" + +#. Description of the 'Indent Level' (Int) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Indentation level: 0 = Main heading, 1 = Sub-category, 2 = Individual accounts, etc." +msgstr "" + +#. Description of the 'Delivery Note' (Link) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Indicates that the package is a part of this delivery (Only Draft)" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Indirect Expense" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172 +msgid "Indirect Expenses" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247 +msgid "Indirect Income" +msgstr "" + +#. Option for the 'Supplier Type' (Select) field in DocType 'Supplier' +#. Option for the 'Customer Type' (Select) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:172 +msgid "Individual" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:326 +msgid "Individual GL Entry cannot be cancelled." +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:350 +msgid "Individual Stock Ledger Entry cannot be cancelled." +msgstr "" + +#. Label of the industry (Link) field in DocType 'Lead' +#. Label of the industry (Link) field in DocType 'Opportunity' +#. Label of the industry (Link) field in DocType 'Prospect' +#. Label of the industry (Link) field in DocType 'Customer' +#. Label of the industry (Data) field in DocType 'Industry Type' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/industry_type/industry_type.json +msgid "Industry" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/industry_type/industry_type.json +msgid "Industry Type" +msgstr "" + +#. Label of the column_break_general (Column Break) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Inherited Default" +msgstr "" + +#. Label of the email_notification_sent (Check) field in DocType 'Delivery +#. Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Initial Email Notification Sent" +msgstr "" + +#. Label of the initialize_doctypes_table_status (Select) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Initialize Summary Table" +msgstr "" + +#. Option for the 'Payment Order Status' (Select) field in DocType 'Payment +#. Entry' +#. Option for the 'Status' (Select) field in DocType 'Payment Request' +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase +#. Order' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Initiated" +msgstr "" + +#. Label of the inspected_by (Link) field in DocType 'Quality Inspection' +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:33 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:109 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Inspected By" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:891 +#: erpnext/stock/services/quality_inspection_service.py:111 +msgid "Inspection Rejected" +msgstr "" + +#. Label of the inspection_required (Check) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/services/quality_inspection_service.py:81 +#: erpnext/stock/services/quality_inspection_service.py:83 +msgid "Inspection Required" +msgstr "" + +#. Label of the inspection_required_before_delivery (Check) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Inspection Required before Delivery" +msgstr "" + +#. Label of the inspection_required_before_purchase (Check) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Inspection Required before Purchase" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:881 +#: erpnext/stock/services/quality_inspection_service.py:96 +msgid "Inspection Submission" +msgstr "" + +#. Label of the inspection_type (Select) field in DocType 'Quality Inspection' +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:95 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Inspection Type" +msgstr "" + +#. Label of the inst_date (Date) field in DocType 'Installation Note' +#: erpnext/selling/doctype/installation_note/installation_note.json +msgid "Installation Date" +msgstr "" + +#. Name of a DocType +#. Label of the installation_note (Section Break) field in DocType +#. 'Installation Note' +#. Label of a Link in the Stock Workspace +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/stock/doctype/delivery_note/delivery_note.js:260 +#: erpnext/stock/workspace/stock/stock.json +msgid "Installation Note" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +msgid "Installation Note Item" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:620 +msgid "Installation Note {0} has already been submitted" +msgstr "" + +#. Label of the installation_status (Select) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Installation Status" +msgstr "" + +#. Label of the inst_time (Time) field in DocType 'Installation Note' +#: erpnext/selling/doctype/installation_note/installation_note.json +msgid "Installation Time" +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.py:115 +msgid "Installation date cannot be before delivery date for Item {0}" +msgstr "" + +#. Label of the qty (Float) field in DocType 'Installation Note Item' +#. Label of the installed_qty (Float) field in DocType 'Delivery Note Item' +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Installed Qty" +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:15 +msgid "Installing presets" +msgstr "" + +#. Label of the instruction (Small Text) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Instruction" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +msgid "Insufficient Capacity" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:213 +#: erpnext/accounts/services/child_item_update.py:235 +#: erpnext/controllers/accounts_controller.py:1735 +#: erpnext/controllers/accounts_controller.py:1741 +#: erpnext/controllers/accounts_controller.py:1763 +msgid "Insufficient Permissions" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:466 +#: erpnext/stock/doctype/pick_list/pick_list.py:146 +#: erpnext/stock/doctype/pick_list/pick_list.py:164 +#: erpnext/stock/doctype/pick_list/pick_list.py:1088 +#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 +#: erpnext/stock/stock_ledger.py:2209 +msgid "Insufficient Stock" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2224 +msgid "Insufficient Stock for Batch" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:444 +msgid "Insufficient Stock for Product Bundle Items" +msgstr "" + +#. Label of the insurance_section (Section Break) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Insurance" +msgstr "" + +#. Label of the insurance_company (Data) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Insurance Company" +msgstr "" + +#. Label of the insurance_details (Section Break) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Insurance Details" +msgstr "" + +#. Label of the insurance_end_date (Date) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Insurance End Date" +msgstr "" + +#. Label of the insurance_start_date (Date) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Insurance Start Date" +msgstr "" + +#: erpnext/setup/doctype/vehicle/vehicle.py:44 +msgid "Insurance Start date should be less than Insurance End date" +msgstr "" + +#. Label of the insured_value (Data) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Insured value" +msgstr "" + +#. Label of the insurer (Data) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Insurer" +msgstr "" + +#. Label of the integration_details_section (Section Break) field in DocType +#. 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Integration Details" +msgstr "" + +#. Label of the integration_id (Data) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Integration ID" +msgstr "" + +#. Label of the inter_company_invoice_reference (Link) field in DocType 'POS +#. Invoice' +#. Label of the inter_company_invoice_reference (Link) field in DocType +#. 'Purchase Invoice' +#. Label of the inter_company_invoice_reference (Link) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Inter Company Invoice Reference" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Inter Company Journal Entry" +msgstr "" + +#. Label of the inter_company_journal_entry_reference (Link) field in DocType +#. 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Inter Company Journal Entry Reference" +msgstr "" + +#. Label of the inter_company_order_reference (Link) field in DocType 'Purchase +#. Order' +#. Label of the inter_company_order_reference (Link) field in DocType 'Sales +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Inter Company Order Reference" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1189 +msgid "Inter Company Purchase Order" +msgstr "" + +#. Label of the inter_company_reference (Link) field in DocType 'Delivery Note' +#. Label of the inter_company_reference (Link) field in DocType 'Purchase +#. Receipt' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Inter Company Reference" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:418 +msgid "Inter Company Sales Order" +msgstr "" + +#. Label of the inter_transfer_reference_section (Section Break) field in +#. DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Inter Transfer Reference" +msgstr "" + +#. Label of the interest (Currency) field in DocType 'Overdue Payment' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +msgid "Interest" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223 +msgid "Interest Expense" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248 +msgid "Interest Income" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +msgid "Interest and/or dunning fee" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249 +msgid "Interest on Fixed Deposits" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/report/lead_details/lead_details.js:39 +msgid "Interested" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:300 +msgid "Internal" +msgstr "" + +#. Label of the internal_customer_section (Section Break) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Internal Customer Accounting" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:256 +msgid "Internal Customer for company {0} already exists" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1188 +msgid "Internal Purchase Order" +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:88 +msgid "Internal Sale or Delivery Reference missing." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:417 +msgid "Internal Sales Order" +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:90 +msgid "Internal Sales Reference Missing" +msgstr "" + +#. Label of the internal_supplier_section (Section Break) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Internal Supplier Details" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.py:180 +msgid "Internal Supplier for company {0} already exists" +msgstr "" + +#. Option for the 'Payment Type' (Select) field in DocType 'Payment Entry' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#. Label of the internal_transfer_section (Section Break) field in DocType +#. 'Sales Invoice Item' +#. Label of the internal_transfer_section (Section Break) field in DocType +#. 'Delivery Note Item' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:27 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request/material_request_dashboard.py:19 +msgid "Internal Transfer" +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:99 +msgid "Internal Transfer Reference Missing" +msgstr "" + +#. Label of the internal_transfer_rules_section (Section Break) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Internal Transfer Rules" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:37 +msgid "Internal Transfers" +msgstr "" + +#. Label of the internal_work_history (Table) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Internal Work History" +msgstr "" + +#. Description of the 'Customer Details' (Text) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Internal notes about this customer. Not visible on transactions or the portal." +msgstr "" + +#: erpnext/stock/services/internal_transfer.py:65 +msgid "Internal transfers can only be done in company's default currency" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:28 +msgid "Internet Publishing" +msgstr "" + +#. Description of the 'Auto Reconciliation job trigger' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Interval should be between 1 to 59 MInutes" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:381 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 +#: erpnext/accounts/services/taxes.py:271 +#: erpnext/accounts/services/taxes.py:279 +#: erpnext/assets/doctype/asset_category/asset_category.py:69 +#: erpnext/assets/doctype/asset_category/asset_category.py:97 +msgid "Invalid Account" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:406 +msgid "Invalid Accounting Dimension" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:402 +#: erpnext/accounts/doctype/payment_request/payment_request.py:1166 +msgid "Invalid Allocated Amount" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:169 +msgid "Invalid Amount" +msgstr "" + +#: erpnext/controllers/item_variant.py:135 +msgid "Invalid Attribute" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:531 +msgid "Invalid Auto Repeat Date" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:92 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:500 +msgid "Invalid Bank Account" +msgstr "" + +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.py:40 +msgid "Invalid Barcode. There is no Item attached to this barcode." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:3184 +msgid "Invalid Blanket Order for the selected Customer and Item" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +msgid "Invalid CSV format. Expected column: doctype_name" +msgstr "" + +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.py:69 +msgid "Invalid Child Procedure" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:227 +msgid "Invalid Company Field" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/inter_company.py:46 +msgid "Invalid Company for Inter Company Transaction." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:972 +msgid "Invalid Configuration" +msgstr "" + +#: erpnext/accounts/services/taxes.py:294 +#: erpnext/assets/doctype/asset/asset.py:361 +#: erpnext/assets/doctype/asset/asset.py:368 +msgid "Invalid Cost Center" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:369 +msgid "Invalid Customer Group" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:377 +msgid "Invalid Delivery Date" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:110 +msgid "Invalid Disassembly Item" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:76 +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:125 +msgid "Invalid Disassembly Quantity" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:414 +msgid "Invalid Discount" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:853 +msgid "Invalid Discount Amount" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +msgid "Invalid Document" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Invalid Document Type" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.py:529 +msgid "Invalid Document Type {0}" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:207 +msgid "Invalid File Type" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:326 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:331 +msgid "Invalid Formula" +msgstr "" + +#: erpnext/selling/report/lost_quotations/lost_quotations.py:65 +msgid "Invalid Group By" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:503 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:52 +msgid "Invalid Item" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1518 +msgid "Invalid Item Defaults" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.json +msgid "Invalid Ledger Entries" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:568 +msgid "Invalid Net Purchase Amount" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79 +#: erpnext/accounts/services/gl_validator.py:130 +msgid "Invalid Opening Entry" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:144 +msgid "Invalid POS Invoices" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:391 +msgid "Invalid Parent Account" +msgstr "" + +#: erpnext/public/js/controllers/buying.js:424 +msgid "Invalid Part Number" +msgstr "" + +#: erpnext/utilities/transaction_base.py:42 +msgid "Invalid Posting Time" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:30 +msgid "Invalid Primary Role" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:123 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:125 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:128 +msgid "Invalid Print Format" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 +msgid "Invalid Priority" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:971 +msgid "Invalid Process Loss Configuration" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:722 +msgid "Invalid Purchase Invoice" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:254 +#: erpnext/accounts/services/child_item_update.py:267 +msgid "Invalid Qty" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1000 +msgid "Invalid Quantity" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +msgid "Invalid Query" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:202 +msgid "Invalid Return" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:209 +msgid "Invalid Sales Invoices" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:657 +#: erpnext/assets/doctype/asset/asset.py:685 +msgid "Invalid Schedule" +msgstr "" + +#: erpnext/controllers/selling_controller.py:312 +msgid "Invalid Selling Price" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +msgid "Invalid Serial and Batch Bundle" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:43 +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:65 +msgid "Invalid Source and Target Warehouse" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.py:507 +msgid "Invalid Tree Type {0}" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:37 +msgid "Invalid Upload" +msgstr "" + +#: erpnext/controllers/item_variant.py:203 +msgid "Invalid Value" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:70 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:256 +msgid "Invalid Warehouse" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 +msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 +msgid "Invalid condition expression" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +msgid "Invalid file URL" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:87 +msgid "Invalid filter formula. Please check the syntax." +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.py:280 +msgid "Invalid lost reason {0}, please create a new lost reason" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:476 +msgid "Invalid naming series (. missing) for {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:730 +msgid "Invalid parameter. 'dn' should be of type str" +msgstr "" + +#: erpnext/utilities/transaction_base.py:126 +msgid "Invalid reference {0} {1}" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:96 +msgid "Invalid regex pattern." +msgstr "" + +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:107 +msgid "Invalid result key. Response:" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +msgid "Invalid search query" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1649 +msgid "Invalid subcontract order field: {0}" +msgstr "" + +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:99 +msgid "Invalid value {0} for 'Based On'" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:20 +msgid "Invalid value {0} for 'Doctype'" +msgstr "" + +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119 +#: erpnext/accounts/services/gl_validator.py:166 +#: erpnext/accounts/services/gl_validator.py:176 +msgid "Invalid value {0} for {1} against account {2}" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:196 +msgid "Invalid {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/inter_company.py:44 +msgid "Invalid {0} for Inter Company Transaction." +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:101 +#: erpnext/controllers/sales_and_purchase_return.py:34 +msgid "Invalid {0}: {1}" +msgstr "" + +#. Label of the inventory_section (Tab Break) field in DocType 'Item' +#: erpnext/setup/install.py:383 erpnext/stock/doctype/item/item.json +msgid "Inventory" +msgstr "" + +#. Label of the default_inventory_account (Link) field in DocType 'Item +#. Default' +#. Label of the vf_default_inventory_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Inventory Account" +msgstr "" + +#. Label of the inventory_account_currency (Link) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Inventory Account Currency" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/patches/v15_0/refactor_closing_stock_balance.py:43 +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.py:186 +#: erpnext/workspace_sidebar/stock.json +msgid "Inventory Dimension" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:159 +msgid "Inventory Dimension Negative Stock" +msgstr "" + +#. Label of the inventory_dimension_key (Small Text) field in DocType 'Stock +#. Closing Balance' +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +msgid "Inventory Dimension key" +msgstr "" + +#. Label of the inventory_settings_section (Section Break) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Inventory Settings" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:216 +msgid "Inventory Turnover Ratio" +msgstr "" + +#. Label of the inventory_valuation_section (Section Break) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Inventory Valuation" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:29 +msgid "Investment Banking" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129 +msgid "Investments" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Invite Users' +#: erpnext/setup/onboarding_step/invite_users/invite_users.json +msgid "Invite Users" +msgstr "" + +#. Option for the 'Posting Date inheritance for exchange gain / loss' (Select) +#. field in DocType 'Accounts Settings' +#. Label of the sales_invoice (Link) field in DocType 'Discounted Invoice' +#. Label of the invoice (Dynamic Link) field in DocType 'Loyalty Point Entry' +#. Label of the invoice (Dynamic Link) field in DocType 'Subscription Invoice' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/subscription_invoice/subscription_invoice.json +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:175 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:194 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:97 +msgid "Invoice" +msgstr "" + +#. Label of the enable_features_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Invoice Cancellation" +msgstr "" + +#. Label of the invoice_date (Date) field in DocType 'Payment Reconciliation +#. Invoice' +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +msgid "Invoice Date" +msgstr "" + +#. Name of a DocType +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:148 +msgid "Invoice Discounting" +msgstr "" + +#: erpnext/accounts/doctype/pos_settings/pos_settings.py:56 +msgid "Invoice Document Type Selection Error" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212 +msgid "Invoice Grand Total" +msgstr "" + +#. Label of the invoice_limit (Int) field in DocType 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Invoice Limit" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:246 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:683 +msgid "Invoice No" +msgstr "" + +#. Label of the invoice_number (Data) field in DocType 'Opening Invoice +#. Creation Tool Item' +#. Label of the invoice_number (Dynamic Link) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the invoice_number (Dynamic Link) field in DocType 'Payment +#. Reconciliation Invoice' +#. Label of the invoice_number (Dynamic Link) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +msgid "Invoice Number" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:872 +msgid "Invoice Paid" +msgstr "" + +#. Label of the invoice_portion (Percent) field in DocType 'Overdue Payment' +#. Label of the invoice_portion (Percent) field in DocType 'Payment Schedule' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:47 +msgid "Invoice Portion" +msgstr "" + +#. Label of the invoice_portion (Float) field in DocType 'Payment Term' +#. Label of the invoice_portion (Float) field in DocType 'Payment Terms +#. Template Detail' +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Invoice Portion (%)" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:106 +msgid "Invoice Posting Date" +msgstr "" + +#. Label of the invoice_series (Select) field in DocType 'Import Supplier +#. Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Invoice Series" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:67 +msgid "Invoice Status" +msgstr "" + +#. Label of the invoice_type (Link) field in DocType 'Loyalty Point Entry' +#. Label of the invoice_type (Select) field in DocType 'Opening Invoice +#. Creation Tool' +#. Label of the invoice_type (Link) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the invoice_type (Select) field in DocType 'Payment Reconciliation +#. Invoice' +#. Label of the invoice_type (Link) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html:7 +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/pos_settings/pos_settings.py:54 +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:85 +msgid "Invoice Type" +msgstr "" + +#. Label of the invoice_type (Select) field in DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "Invoice Type Created via POS Screen" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.py:430 +msgid "Invoice already created for all billing hours" +msgstr "" + +#. Label of the invoice_and_billing_tab (Tab Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Invoice and Billing" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.py:427 +msgid "Invoice can't be made for zero billing hour" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:171 +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:139 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:140 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:166 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:194 +msgid "Invoiced Amount" +msgstr "" + +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:76 +msgid "Invoiced Qty" +msgstr "" + +#. Label of the invoices (Table) field in DocType 'Invoice Discounting' +#. Label of the section_break_4 (Section Break) field in DocType 'Opening +#. Invoice Creation Tool' +#. Label of the invoices (Table) field in DocType 'Payment Reconciliation' +#. Group in POS Profile's connections +#. Option for the 'Hold Type' (Select) field in DocType 'Supplier' +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:670 +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198 +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:64 +msgid "Invoices" +msgstr "" + +#. Description of the 'Allocated' (Check) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Invoices and Payments have been Fetched and Allocated" +msgstr "" + +#. Name of a Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/desktop_icon/invoicing.json erpnext/workspace_sidebar/invoicing.json +msgid "Invoicing" +msgstr "" + +#. Label of the invoicing_features_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Invoicing Features" +msgstr "" + +#. Option for the 'Payment Request Type' (Select) field in DocType 'Payment +#. Request' +#. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory +#. Dimension' +#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and +#. Batch Bundle' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Inward" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Inward Order" +msgstr "" + +#. Label of the is_account_payable (Check) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Is Account Payable" +msgstr "" + +#. Label of the is_additional_item (Check) field in DocType 'Work Order Item' +#. Label of the is_additional_item (Check) field in DocType 'Subcontracting +#. Inward Order Received Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +msgid "Is Additional Item" +msgstr "" + +#. Label of the is_additional_transfer_entry (Check) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Is Additional Transfer Entry" +msgstr "" + +#. Label of the is_adjustment_entry (Check) field in DocType 'Stock Ledger +#. Entry' +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Is Adjustment Entry" +msgstr "" + +#. Label of the is_advance (Select) field in DocType 'GL Entry' +#. Label of the is_advance (Select) field in DocType 'Journal Entry Account' +#. Label of the is_advance (Data) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the is_advance (Data) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the is_advance (Data) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +msgid "Is Advance" +msgstr "" + +#. Label of the is_alternative (Check) field in DocType 'Quotation Item' +#: erpnext/selling/doctype/quotation/quotation.js:323 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +msgid "Is Alternative" +msgstr "" + +#. Label of the is_billable (Check) field in DocType 'Timesheet Detail' +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Is Billable" +msgstr "" + +#: erpnext/setup/install.py:160 +msgid "Is Billing Contact" +msgstr "" + +#. Label of the is_cancelled (Check) field in DocType 'GL Entry' +#. Label of the is_cancelled (Check) field in DocType 'Serial and Batch Bundle' +#. Label of the is_cancelled (Check) field in DocType 'Serial and Batch Entry' +#. Label of the is_cancelled (Check) field in DocType 'Stock Ledger Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:57 +msgid "Is Cancelled" +msgstr "" + +#. Label of the is_cash_or_non_trade_discount (Check) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Cash or Non Trade Discount" +msgstr "" + +#. Label of the is_company (Check) field in DocType 'Share Balance' +#. Label of the is_company (Check) field in DocType 'Shareholder' +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/shareholder/shareholder.json +msgid "Is Company" +msgstr "" + +#. Label of the is_company_account (Check) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Is Company Account" +msgstr "" + +#. Label of the is_consolidated (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Consolidated" +msgstr "" + +#. Label of the is_container (Check) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Is Container" +msgstr "" + +#. Label of the is_corrective_job_card (Check) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Is Corrective Job Card" +msgstr "" + +#. Label of the is_corrective_operation (Check) field in DocType 'Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Is Corrective Operation" +msgstr "" + +#. Label of the is_credit_card (Check) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Is Credit Card" +msgstr "" + +#. Label of the is_cumulative (Check) field in DocType 'Pricing Rule' +#. Label of the is_cumulative (Check) field in DocType 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Is Cumulative" +msgstr "" + +#. Label of the is_customer_provided_item (Check) field in DocType 'Work Order +#. Item' +#. Label of the is_customer_provided_item (Check) field in DocType 'Item' +#. Label of the is_customer_provided_item (Check) field in DocType +#. 'Subcontracting Inward Order Received Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +msgid "Is Customer Provided Item" +msgstr "" + +#. Label of the is_default (Check) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Is Default Account" +msgstr "" + +#. Label of the is_default_language (Check) field in DocType 'Dunning Letter +#. Text' +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Is Default Language" +msgstr "" + +#. Label of the dn_required (Select) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Is Delivery Note required to create Sales Invoice?" +msgstr "" + +#. Label of the is_discounted (Check) field in DocType 'POS Invoice' +#. Label of the is_discounted (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Discounted" +msgstr "" + +#. Label of the is_exchange_gain_loss (Check) field in DocType 'Payment Entry +#. Deduction' +#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json +msgid "Is Exchange Gain / Loss?" +msgstr "" + +#. Label of the is_expandable (Check) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Is Expandable" +msgstr "" + +#. Label of the is_final_finished_good (Check) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Is Final Finished Good" +msgstr "" + +#. Label of the is_finished_item (Check) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Is Finished Item" +msgstr "" + +#. Label of the is_fixed_asset (Check) field in DocType 'POS Invoice Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Purchase Invoice Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Sales Invoice Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Purchase Order Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Landed Cost Item' +#. Label of the is_fixed_asset (Check) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Is Fixed Asset" +msgstr "" + +#. Label of the is_free_item (Check) field in DocType 'POS Invoice Item' +#. Label of the is_free_item (Check) field in DocType 'Purchase Invoice Item' +#. Label of the is_free_item (Check) field in DocType 'Sales Invoice Item' +#. Label of the is_free_item (Check) field in DocType 'Purchase Order Item' +#. Label of the is_free_item (Check) field in DocType 'Supplier Quotation Item' +#. Label of the is_free_item (Check) field in DocType 'Quotation Item' +#. Label of the is_free_item (Check) field in DocType 'Sales Order Item' +#. Label of the is_free_item (Check) field in DocType 'Delivery Note Item' +#. Label of the is_free_item (Check) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Is Free Item" +msgstr "" + +#. Label of the is_frozen (Check) field in DocType 'Supplier' +#. Label of the is_frozen (Check) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:69 +msgid "Is Frozen" +msgstr "" + +#. Label of the is_fully_depreciated (Check) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Is Fully Depreciated" +msgstr "" + +#. Label of the is_group (Check) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Is Group Warehouse" +msgstr "" + +#. Label of the is_half_day (Check) field in DocType 'Holiday' +#. Label of the is_half_day (Check) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday/holiday.json +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Is Half Day" +msgstr "" + +#. Label of the is_internal_customer (Check) field in DocType 'Sales Invoice' +#. Label of the is_internal_customer (Check) field in DocType 'Customer' +#. Label of the is_internal_customer (Check) field in DocType 'Sales Order' +#. Label of the is_internal_customer (Check) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Is Internal Customer" +msgstr "" + +#. Label of the is_internal_supplier (Check) field in DocType 'Purchase +#. Invoice' +#. Label of the is_internal_supplier (Check) field in DocType 'Purchase Order' +#. Label of the is_internal_supplier (Check) field in DocType 'Supplier' +#. Label of the is_internal_supplier (Check) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Is Internal Supplier" +msgstr "" + +#. Label of the is_legacy (Check) field in DocType 'BOM Secondary Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +msgid "Is Legacy" +msgstr "" + +#. Label of the is_legacy_scrap_item (Check) field in DocType 'Stock Entry +#. Detail' +#. Label of the is_legacy_scrap_item (Check) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Is Legacy Scrap Item" +msgstr "" + +#. Label of the is_mandatory (Check) field in DocType 'Applicable On Account' +#: erpnext/accounts/doctype/applicable_on_account/applicable_on_account.json +msgid "Is Mandatory" +msgstr "" + +#. Label of the is_milestone (Check) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Is Milestone" +msgstr "" + +#. Label of the is_opening (Select) field in DocType 'GL Entry' +#. Label of the is_opening (Select) field in DocType 'Journal Entry' +#. Label of the is_opening (Select) field in DocType 'Journal Entry Template' +#. Label of the is_opening (Select) field in DocType 'Payment Entry' +#. Label of the is_opening (Select) field in DocType 'Stock Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Is Opening" +msgstr "" + +#. Label of the is_opening (Select) field in DocType 'POS Invoice' +#. Label of the is_opening (Select) field in DocType 'Purchase Invoice' +#. Label of the is_opening (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Opening Entry" +msgstr "" + +#. Label of the is_outward (Check) field in DocType 'Serial and Batch Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +msgid "Is Outward" +msgstr "" + +#. Label of the is_packed (Check) field in DocType 'Serial and Batch Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Is Packed" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:402 +msgid "Is Packed Item" +msgstr "" + +#. Label of the is_paid (Check) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Is Paid" +msgstr "" + +#. Label of the is_paused (Check) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Is Paused" +msgstr "" + +#. Label of the is_period_closing_voucher_entry (Check) field in DocType +#. 'Account Closing Balance' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +msgid "Is Period Closing Voucher Entry" +msgstr "" + +#. Label of the is_phantom_bom (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:68 +msgid "Is Phantom BOM" +msgstr "" + +#. Label of the is_phantom (Check) field in DocType 'BOM Creator' +#. Label of the is_phantom_item (Check) field in DocType 'BOM Creator Item' +#. Label of the is_phantom_item (Check) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:68 +msgid "Is Phantom Item" +msgstr "" + +#. Label of the is_product_bundle (Check) field in DocType 'POS Invoice Item' +#. Label of the is_product_bundle (Check) field in DocType 'Sales Invoice Item' +#. Label of the is_product_bundle (Check) field in DocType 'Quotation Item' +#. Label of the is_product_bundle (Check) field in DocType 'Sales Order Item' +#. Label of the is_product_bundle (Check) field in DocType 'Delivery Note Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Is Product Bundle" +msgstr "" + +#. Label of the po_required (Select) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Is Purchase Order required for Purchase Invoice & Receipt creation?" +msgstr "" + +#. Label of the pr_required (Select) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Is Purchase Receipt required for Purchase Invoice creation?" +msgstr "" + +#. Label of the is_debit_note (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Rate Adjustment Entry (Debit Note)" +msgstr "" + +#. Label of the is_recursive (Check) field in DocType 'Pricing Rule' +#. Label of the is_recursive (Check) field in DocType 'Promotional Scheme +#. Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Is Recursive" +msgstr "" + +#. Label of the is_rejected (Check) field in DocType 'Serial and Batch Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Is Rejected" +msgstr "" + +#. Label of the is_rejected_warehouse (Check) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Is Rejected Warehouse" +msgstr "" + +#. Label of the is_return (Check) field in DocType 'POS Invoice Reference' +#. Label of the is_return (Check) field in DocType 'Sales Invoice Reference' +#. Label of the is_return (Check) field in DocType 'Delivery Note' +#. Label of the is_return (Check) field in DocType 'Purchase Receipt' +#. Label of the is_return (Check) field in DocType 'Stock Entry' +#. Label of the is_return (Check) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +#: erpnext/accounts/report/pos_register/pos_register.js:63 +#: erpnext/accounts/report/pos_register/pos_register.py:237 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Is Return" +msgstr "" + +#. Label of the is_return (Check) field in DocType 'POS Invoice' +#. Label of the is_return (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is Return (Credit Note)" +msgstr "" + +#. Label of the is_return (Check) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Is Return (Debit Note)" +msgstr "" + +#. Label of the is_rule_evaluated (Check) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Is Rule Evaluated" +msgstr "" + +#. Label of the so_required (Select) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Is Sales Order required to create Sales Invoice/Delivery Note?" +msgstr "" + +#. Label of the is_short_year (Check) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "Is Short/Long Year" +msgstr "" + +#. Label of the is_stock_item (Check) field in DocType 'BOM Item' +#. Label of the is_stock_item (Check) field in DocType 'Sales Order Item' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Is Stock Item" +msgstr "" + +#. Label of the is_sub_assembly_item (Check) field in DocType 'BOM Explosion +#. Item' +#. Label of the is_sub_assembly_item (Check) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Is Sub Assembly Item" +msgstr "" + +#. Label of the is_subcontracted (Check) field in DocType 'Purchase Invoice' +#. Label of the is_subcontracted (Check) field in DocType 'Purchase Order' +#. Label of the is_subcontracted (Check) field in DocType 'Supplier Quotation' +#. Label of the is_subcontracted (Check) field in DocType 'BOM Creator Item' +#. Label of the is_subcontracted (Check) field in DocType 'BOM Operation' +#. Label of the is_subcontracted (Check) field in DocType 'Work Order +#. Operation' +#. Label of the is_subcontracted (Check) field in DocType 'Sales Order' +#. Label of the is_subcontracted (Check) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Is Subcontracted" +msgstr "" + +#. Label of the is_sub_contracted_item (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Is Subcontracted Item" +msgstr "" + +#. Label of the is_tax_withholding_account (Check) field in DocType 'Advance +#. Taxes and Charges' +#. Label of the is_tax_withholding_account (Check) field in DocType 'Journal +#. Entry Account' +#. Label of the is_tax_withholding_account (Check) field in DocType 'Purchase +#. Taxes and Charges' +#. Label of the is_tax_withholding_account (Check) field in DocType 'Sales +#. Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Is Tax Withholding Account" +msgstr "" + +#. Label of the is_template (Check) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Is Template" +msgstr "" + +#. Label of the is_transporter (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Is Transporter" +msgstr "" + +#: erpnext/setup/install.py:151 +msgid "Is Your Company Address" +msgstr "" + +#. Label of the is_a_subscription (Check) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Is a Subscription" +msgstr "" + +#. Label of the is_created_using_pos (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Is created using POS" +msgstr "" + +#. Label of the included_in_print_rate (Check) field in DocType 'Purchase Taxes +#. and Charges' +#. Label of the included_in_print_rate (Check) field in DocType 'Sales Taxes +#. and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Is this Tax included in Basic Rate?" +msgstr "" + +#. Option for the 'Transfer Type' (Select) field in DocType 'Share Transfer' +#. Option for the 'Status' (Select) field in DocType 'Asset' +#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement' +#. Label of the issue (Link) field in DocType 'Task' +#. Option for the 'Asset Status' (Select) field in DocType 'Serial No' +#. Name of a DocType +#. Label of the complaint (Text Editor) field in DocType 'Warranty Claim' +#. Title of the issues Web Form +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:22 +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/public/js/communication.js:13 +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/support/web_form/issues/issues.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "Issue" +msgstr "" + +#. Name of a report +#: erpnext/support/report/issue_analytics/issue_analytics.json +msgid "Issue Analytics" +msgstr "" + +#. Label of the issue_credit_note (Check) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Issue Credit Note" +msgstr "" + +#. Label of the complaint_date (Date) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Issue Date" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:180 +msgid "Issue Material" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/support/doctype/issue_priority/issue_priority.json +#: erpnext/support/report/issue_analytics/issue_analytics.js:63 +#: erpnext/support/report/issue_analytics/issue_analytics.py:70 +#: erpnext/support/report/issue_summary/issue_summary.js:51 +#: erpnext/support/report/issue_summary/issue_summary.py:68 +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "Issue Priority" +msgstr "" + +#. Label of the issue_split_from (Link) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Issue Split From" +msgstr "" + +#. Name of a report +#: erpnext/support/report/issue_summary/issue_summary.json +msgid "Issue Summary" +msgstr "" + +#. Label of the issue_type (Link) field in DocType 'Issue' +#. Name of a DocType +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/issue_type/issue_type.json +#: erpnext/support/report/issue_analytics/issue_analytics.py:59 +#: erpnext/support/report/issue_summary/issue_summary.py:57 +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "Issue Type" +msgstr "" + +#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in +#. DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice." +msgstr "" + +#. Option for the 'Current State' (Select) field in DocType 'Share Balance' +#. Option for the 'Status' (Select) field in DocType 'Material Request' +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:44 +msgid "Issued" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/issued_items_against_work_order/issued_items_against_work_order.json +msgid "Issued Items Against Work Order" +msgstr "" + +#. Label of the issues_sb (Section Break) field in DocType 'Support Settings' +#. Label of a Card Break in the Support Workspace +#: erpnext/support/doctype/issue/issue.py:182 +#: erpnext/support/doctype/support_settings/support_settings.json +#: erpnext/support/workspace/support/support.json +msgid "Issues" +msgstr "" + +#. Label of the issuing_date (Date) field in DocType 'Driver' +#. Label of the issuing_date (Date) field in DocType 'Driving License Category' +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/driving_license_category/driving_license_category.json +msgid "Issuing Date" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:647 +msgid "It can take upto few hours for accurate stock values to be visible after merging items." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2567 +msgid "It is needed to fetch Item Details." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 +msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:219 +msgid "It's all good!" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" +msgstr "" + +#. Label of the italic_text (Check) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Italic Text" +msgstr "" + +#. Description of the 'Italic Text' (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Italic text for subtotals or notes" +msgstr "" + +#. Label of the item_code (Link) field in DocType 'POS Invoice Item' +#. Label of the item_code (Link) field in DocType 'Purchase Invoice Item' +#. Label of the item_code (Link) field in DocType 'Sales Invoice Item' +#. Label of the item (Link) field in DocType 'Subscription Plan' +#. Label of the item (Link) field in DocType 'Tax Rule' +#. Label of the item_code (Link) field in DocType 'Asset Repair Consumed Item' +#. Label of a Link in the Buying Workspace +#. Label of the items (Table) field in DocType 'Blanket Order' +#. Label of a Link in the Manufacturing Workspace +#. Option for the 'Restrict Items Based On' (Select) field in DocType 'Party +#. Specific Item' +#. Label of the item_code (Link) field in DocType 'Product Bundle Item' +#. Label of a Link in the Selling Workspace +#. Option for the 'Customer or Item' (Select) field in DocType 'Authorization +#. Rule' +#. Label of a Link in the Home Workspace +#. Label of a shortcut in the Home Workspace +#. Label of the item (Link) field in DocType 'Batch' +#. Name of a DocType +#. Label of the item_code (Link) field in DocType 'Pick List Item' +#. Label of the item_code (Link) field in DocType 'Putaway Rule' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:15 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:33 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:22 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/bom/bom.js:1088 +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:25 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:101 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:165 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:68 +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:15 +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:76 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:234 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:385 +#: erpnext/public/js/purchase_trends_filters.js:48 +#: erpnext/public/js/purchase_trends_filters.js:63 +#: erpnext/public/js/sales_trends_filters.js:23 +#: erpnext/public/js/sales_trends_filters.js:39 +#: erpnext/public/js/stock_analytics.js:92 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:338 +#: erpnext/selling/doctype/sales_order/sales_order.js:1712 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:50 +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.js:14 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:36 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:61 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/dashboard/item_dashboard.js:220 +#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/stock_settings/stock_settings.js:149 +#: erpnext/stock/page/stock_balance/stock_balance.js:23 +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:7 +#: erpnext/stock/report/available_batch_report/available_batch_report.js:24 +#: erpnext/stock/report/available_serial_no/available_serial_no.js:42 +#: erpnext/stock/report/available_serial_no/available_serial_no.py:93 +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.js:24 +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:32 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:76 +#: erpnext/stock/report/item_price_stock/item_price_stock.js:8 +#: erpnext/stock/report/item_prices/item_prices.py:50 +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:88 +#: erpnext/stock/report/item_variant_details/item_variant_details.js:10 +#: erpnext/stock/report/item_where_used/item_where_used.js:8 +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:57 +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:53 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:24 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:81 +#: erpnext/stock/report/reserved_stock/reserved_stock.js:30 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:103 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:28 +#: erpnext/stock/report/stock_ageing/stock_ageing.js:46 +#: erpnext/stock/report/stock_analytics/stock_analytics.js:15 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:43 +#: erpnext/stock/report/stock_balance/stock_balance.py:470 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:287 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:8 +#: erpnext/stock/report/total_stock_summary/total_stock_summary.py:21 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:40 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:97 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/templates/emails/reorder_item.html:8 +#: erpnext/templates/form_grid/material_request_grid.html:6 +#: erpnext/templates/form_grid/stock_entry_grid.html:8 +#: erpnext/templates/generators/bom.html:19 +#: erpnext/templates/pages/material_request_info.html:42 +#: erpnext/templates/pages/order.html:94 erpnext/workspace_sidebar/assets.json +#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json +#: erpnext/workspace_sidebar/manufacturing.json +#: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json +#: erpnext/workspace_sidebar/subcontracting.json +#: erpnext/workspace_sidebar/subscription.json +msgid "Item" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:8 +msgid "Item 1" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:14 +msgid "Item 2" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:20 +msgid "Item 3" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:26 +msgid "Item 4" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:32 +msgid "Item 5" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Alternative" +msgstr "" + +#. Option for the 'Variant Based On' (Select) field in DocType 'Item' +#. Name of a DocType +#. Label of the item_attribute (Link) field in DocType 'Item Variant' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_variant/item_variant.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Attribute" +msgstr "" + +#. Name of a DocType +#. Label of the item_attribute_value (Data) field in DocType 'Item Variant' +#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json +#: erpnext/stock/doctype/item_variant/item_variant.json +msgid "Item Attribute Value" +msgstr "" + +#. Label of the item_attribute_values (Table) field in DocType 'Item Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +msgid "Item Attribute Values" +msgstr "" + +#. Label of the section_break_zlmj (Section Break) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Item Attributes" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/item_balance/item_balance.json +msgid "Item Balance (Simple)" +msgstr "" + +#. Name of a DocType +#. Label of the item_barcode (Data) field in DocType 'Quick Stock Balance' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +msgid "Item Barcode" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:48 +msgid "Item Cart" +msgstr "" + +#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' +#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Pricing +#. Rule' +#. Label of the other_item_code (Link) field in DocType 'Pricing Rule' +#. Label of the item_code (Data) field in DocType 'Pricing Rule Detail' +#. Label of the item_code (Link) field in DocType 'Pricing Rule Item Code' +#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' +#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the other_item_code (Link) field in DocType 'Promotional Scheme' +#. Label of the free_item (Link) field in DocType 'Promotional Scheme Product +#. Discount' +#. Label of the item_code (Link) field in DocType 'Asset' +#. Label of the item_code (Link) field in DocType 'Asset Capitalization Asset +#. Item' +#. Label of the item_code (Link) field in DocType 'Asset Capitalization Service +#. Item' +#. Label of the item_code (Link) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the item_code (Read Only) field in DocType 'Asset Maintenance' +#. Label of the item_code (Read Only) field in DocType 'Asset Maintenance Log' +#. Label of the item_code (Link) field in DocType 'Purchase Order Item' +#. Label of the main_item_code (Link) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the item_code (Link) field in DocType 'Request for Quotation Item' +#. Label of the item_code (Link) field in DocType 'Supplier Quotation Item' +#. Label of the item_code (Link) field in DocType 'Opportunity Item' +#. Label of the item_code (Link) field in DocType 'Maintenance Schedule Detail' +#. Label of the item_code (Link) field in DocType 'Maintenance Schedule Item' +#. Label of the item_code (Link) field in DocType 'Maintenance Visit Purpose' +#. Label of the item_code (Link) field in DocType 'Blanket Order Item' +#. Label of the item_code (Link) field in DocType 'BOM Creator Item' +#. Label of the item_code (Link) field in DocType 'BOM Explosion Item' +#. Label of the item_code (Link) field in DocType 'BOM Item' +#. Label of the item_code (Link) field in DocType 'BOM Secondary Item' +#. Label of the item_code (Link) field in DocType 'BOM Website Item' +#. Label of the item_code (Link) field in DocType 'Job Card Item' +#. Label of the item_code (Link) field in DocType 'Master Production Schedule +#. Item' +#. Label of the item_code (Link) field in DocType 'Material Request Plan Item' +#. Label of the item_code (Link) field in DocType 'Production Plan' +#. Label of the item_code (Link) field in DocType 'Production Plan Item' +#. Label of the item_code (Link) field in DocType 'Sales Forecast Item' +#. Label of the item_code (Link) field in DocType 'Work Order Additional Item' +#. Label of the item_code (Link) field in DocType 'Work Order Item' +#. Label of the item_code (Link) field in DocType 'Import Supplier Invoice' +#. Label of the item_code (Link) field in DocType 'Delivery Schedule Item' +#. Label of the item_code (Link) field in DocType 'Installation Note Item' +#. Label of the item_code (Link) field in DocType 'Quotation Item' +#. Label of the item_code (Link) field in DocType 'Sales Order Item' +#. Label of the item_code (Link) field in DocType 'Bin' +#. Label of the item_code (Link) field in DocType 'Delivery Note Item' +#. Label of the item_code (Data) field in DocType 'Item' +#. Label of the item_code (Link) field in DocType 'Item Alternative' +#. Label of the item_code (Link) field in DocType 'Item Lead Time' +#. Label of the item_code (Link) field in DocType 'Item Manufacturer' +#. Label of the item_code (Link) field in DocType 'Item Price' +#. Label of the item_code (Link) field in DocType 'Landed Cost Item' +#. Label of the item_code (Link) field in DocType 'Material Request Item' +#. Label of the item_code (Link) field in DocType 'Packed Item' +#. Label of the item_code (Link) field in DocType 'Packing Slip Item' +#. Label of the item_code (Link) field in DocType 'Purchase Receipt Item' +#. Label of the item_code (Link) field in DocType 'Quality Inspection' +#. Label of the item (Link) field in DocType 'Quick Stock Balance' +#. Label of the item_code (Link) field in DocType 'Repost Item Valuation' +#. Label of the item_code (Link) field in DocType 'Serial and Batch Bundle' +#. Label of the item_code (Link) field in DocType 'Serial and Batch Entry' +#. Label of the item_code (Link) field in DocType 'Serial No' +#. Label of the item_code (Link) field in DocType 'Stock Closing Balance' +#. Label of the item_code (Link) field in DocType 'Stock Entry Detail' +#. Label of the item_code (Link) field in DocType 'Stock Ledger Entry' +#. Label of the item_code (Link) field in DocType 'Stock Reconciliation Item' +#. Label of the item_code (Link) field in DocType 'Stock Reservation Entry' +#. Option for the 'Item Naming By' (Select) field in DocType 'Stock Settings' +#. Label of the item_code (Link) field in DocType 'Subcontracting Inward Order +#. Item' +#. Label of the main_item_code (Link) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the item_code (Link) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Label of the item_code (Link) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Label of the item_code (Link) field in DocType 'Subcontracting Order Item' +#. Label of the item_code (Link) field in DocType 'Subcontracting Order Service +#. Item' +#. Label of the main_item_code (Link) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the item_code (Link) field in DocType 'Subcontracting Receipt Item' +#. Label of the main_item_code (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#. Label of the item_code (Link) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +#: erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:314 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:68 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:37 +#: erpnext/accounts/report/gross_profit/gross_profit.py:312 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:148 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:167 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:37 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:26 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:231 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:200 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:35 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:471 +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:163 +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:952 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:988 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/projects/doctype/timesheet/timesheet.js:214 +#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/stock_reservation.js:112 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 +#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/utils/serial_no_batch_selector.js:96 +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/selling/doctype/quotation/quotation.js:297 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:369 +#: erpnext/selling/doctype/sales_order/sales_order.js:514 +#: erpnext/selling/doctype/sales_order/sales_order.js:1317 +#: erpnext/selling/doctype/sales_order/sales_order.js:1481 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:29 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:27 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:20 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:252 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:33 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:96 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/report/available_batch_report/available_batch_report.py:21 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:32 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:147 +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:119 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.js:15 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:105 +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:8 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.js:7 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:175 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:115 +#: erpnext/stock/report/item_price_stock/item_price_stock.py:18 +#: erpnext/stock/report/negative_batch_report/negative_batch_report.js:15 +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:40 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:127 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7 +#: erpnext/stock/report/stock_ageing/stock_ageing.py:177 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25 +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:252 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:351 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:507 +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/templates/includes/products_as_list.html:14 +msgid "Item Code" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:61 +msgid "Item Code (Final Product)" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:92 +msgid "Item Code > Item Group > Brand" +msgstr "" + +#: erpnext/stock/doctype/serial_no/serial_no.py:83 +msgid "Item Code cannot be changed for Serial No." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:448 +msgid "Item Code required at Row No {0}" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_item_details.js:278 +msgid "Item Code: {0} is not available under warehouse {1}." +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +msgid "Item Customer Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Item Default" +msgstr "" + +#. Label of the item_defaults (Table) field in DocType 'Item' +#. Label of the item_defaults_section (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Item Defaults" +msgstr "" + +#. Label of the description (Small Text) field in DocType 'BOM' +#. Label of the description (Text Editor) field in DocType 'BOM Item' +#. Label of the description (Text Editor) field in DocType 'BOM Website Item' +#. Label of the item_details (Section Break) field in DocType 'Material Request +#. Plan Item' +#. Label of the description (Small Text) field in DocType 'Work Order' +#. Label of the item_description (Text) field in DocType 'Item Price' +#. Label of the item_description (Small Text) field in DocType 'Quick Stock +#. Balance' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +msgid "Item Description" +msgstr "" + +#. Label of the section_break_19 (Section Break) field in DocType 'Production +#. Plan Sub Assembly Item' +#. Label of the item_details_tab (Tab Break) field in DocType 'Item Lead Time' +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/selling/page/point_of_sale/pos_item_details.js:31 +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Item Details" +msgstr "" + +#. Label of the item_group (Link) field in DocType 'POS Invoice Item' +#. Label of the item_group (Link) field in DocType 'POS Item Group' +#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' +#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Pricing +#. Rule' +#. Label of the other_item_group (Link) field in DocType 'Pricing Rule' +#. Label of the item_group (Link) field in DocType 'Pricing Rule Item Group' +#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' +#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the other_item_group (Link) field in DocType 'Promotional Scheme' +#. Label of the item_group (Link) field in DocType 'Purchase Invoice Item' +#. Label of the item_group (Link) field in DocType 'Sales Invoice Item' +#. Label of the item_group (Link) field in DocType 'Tax Rule' +#. Label of the item_group (Link) field in DocType 'Purchase Order Item' +#. Label of the item_group (Link) field in DocType 'Request for Quotation Item' +#. Label of the item_group (Link) field in DocType 'Supplier Quotation Item' +#. Label of a Link in the Buying Workspace +#. Label of the item_group (Link) field in DocType 'Opportunity Item' +#. Label of the item_group (Link) field in DocType 'BOM Creator' +#. Label of the item_group (Link) field in DocType 'BOM Creator Item' +#. Label of the item_group (Link) field in DocType 'Job Card Item' +#. Option for the 'Restrict Items Based On' (Select) field in DocType 'Party +#. Specific Item' +#. Label of the item_group (Link) field in DocType 'Quotation Item' +#. Label of the item_group (Link) field in DocType 'Sales Order Item' +#. Label of a Link in the Selling Workspace +#. Option for the 'Customer or Item' (Select) field in DocType 'Authorization +#. Rule' +#. Name of a DocType +#. Label of the item_group (Link) field in DocType 'Target Detail' +#. Label of the item_group (Link) field in DocType 'Website Item Group' +#. Label of the item_group (Link) field in DocType 'Delivery Note Item' +#. Label of the item_group (Link) field in DocType 'Item' +#. Label of the item_group (Link) field in DocType 'Material Request Item' +#. Label of the item_group (Data) field in DocType 'Pick List Item' +#. Label of the item_group (Link) field in DocType 'Purchase Receipt Item' +#. Label of the item_group (Link) field in DocType 'Serial and Batch Bundle' +#. Label of the item_group (Link) field in DocType 'Serial No' +#. Label of the item_group (Link) field in DocType 'Stock Closing Balance' +#. Label of the item_group (Data) field in DocType 'Stock Entry Detail' +#. Label of the item_group (Link) field in DocType 'Stock Reconciliation Item' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_item_group/pos_item_group.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/gross_profit/gross_profit.js:44 +#: erpnext/accounts/report/gross_profit/gross_profit.py:325 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:21 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:29 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:28 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:162 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:65 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:181 +#: erpnext/accounts/report/purchase_register/purchase_register.js:58 +#: erpnext/accounts/report/sales_register/sales_register.js:70 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:30 +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:40 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:128 +#: erpnext/public/js/purchase_trends_filters.js:49 +#: erpnext/public/js/sales_trends_filters.js:24 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:236 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:30 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:36 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:54 +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:89 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:41 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:35 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:41 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:103 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/target_detail/target_detail.json +#: erpnext/setup/doctype/website_item_group/website_item_group.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/page/stock_balance/stock_balance.js:35 +#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:43 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:48 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:48 +#: erpnext/stock/report/item_prices/item_prices.py:52 +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.js:20 +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99 +#: erpnext/stock/report/stock_ageing/stock_ageing.py:187 +#: erpnext/stock/report/stock_analytics/stock_analytics.js:8 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:52 +#: erpnext/stock/report/stock_balance/stock_balance.js:32 +#: erpnext/stock/report/stock_balance/stock_balance.py:479 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:71 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:345 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:99 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json +msgid "Item Group" +msgstr "" + +#. Label of the item_group_defaults (Table) field in DocType 'Item Group' +#: erpnext/setup/doctype/item_group/item_group.json +msgid "Item Group Defaults" +msgstr "" + +#. Label of the item_group_name (Data) field in DocType 'Item Group' +#: erpnext/setup/doctype/item_group/item_group.json +msgid "Item Group Name" +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.js:119 +msgid "Item Group Override" +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.js:82 +msgid "Item Group Tree" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +msgid "Item Group not mentioned in item master for item {0}" +msgstr "" + +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Item Group wise Discount" +msgstr "" + +#. Label of the item_groups (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Item Groups" +msgstr "" + +#. Description of the 'Website Image' (Attach Image) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Item Image (if not slideshow)" +msgstr "" + +#. Label of the item_information_section (Section Break) field in DocType +#. 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Item Information" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Item Lead Time" +msgstr "" + +#. Label of the locations (Table) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Item Locations" +msgstr "" + +#. Name of a role +#: erpnext/setup/doctype/brand/brand.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/uom_category/uom_category.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/doctype/warehouse_type/warehouse_type.json +msgid "Item Manager" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Item Manufacturer" +msgstr "" + +#. Label of the item_name (Data) field in DocType 'Opening Invoice Creation +#. Tool Item' +#. Label of the item_name (Data) field in DocType 'POS Invoice Item' +#. Label of the item_name (Data) field in DocType 'Purchase Invoice Item' +#. Label of the item_name (Data) field in DocType 'Sales Invoice Item' +#. Label of the item_name (Read Only) field in DocType 'Asset' +#. Label of the item_name (Data) field in DocType 'Asset Capitalization Asset +#. Item' +#. Label of the item_name (Data) field in DocType 'Asset Capitalization Service +#. Item' +#. Label of the item_name (Data) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the item_name (Read Only) field in DocType 'Asset Maintenance' +#. Label of the item_name (Read Only) field in DocType 'Asset Maintenance Log' +#. Label of the item_name (Data) field in DocType 'Purchase Order Item' +#. Label of the item_name (Data) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the item_name (Data) field in DocType 'Request for Quotation Item' +#. Label of the item_name (Data) field in DocType 'Supplier Quotation Item' +#. Label of the item_name (Data) field in DocType 'Opportunity Item' +#. Label of the item_name (Data) field in DocType 'Maintenance Schedule Detail' +#. Label of the item_name (Data) field in DocType 'Maintenance Schedule Item' +#. Label of the item_name (Data) field in DocType 'Maintenance Visit Purpose' +#. Label of the item_name (Data) field in DocType 'Blanket Order Item' +#. Label of the item_name (Data) field in DocType 'BOM' +#. Label of the item_name (Data) field in DocType 'BOM Creator' +#. Label of the item_name (Data) field in DocType 'BOM Creator Item' +#. Label of the item_name (Data) field in DocType 'BOM Explosion Item' +#. Label of the item_name (Data) field in DocType 'BOM Item' +#. Label of the item_name (Data) field in DocType 'BOM Secondary Item' +#. Label of the item_name (Data) field in DocType 'BOM Website Item' +#. Label of the item_name (Read Only) field in DocType 'Job Card' +#. Label of the item_name (Data) field in DocType 'Job Card Item' +#. Label of the item_name (Data) field in DocType 'Master Production Schedule +#. Item' +#. Label of the item_name (Data) field in DocType 'Material Request Plan Item' +#. Label of the item_name (Data) field in DocType 'Production Plan Sub Assembly +#. Item' +#. Label of the item_name (Data) field in DocType 'Sales Forecast Item' +#. Label of the item_name (Data) field in DocType 'Work Order' +#. Label of the item_name (Data) field in DocType 'Work Order Item' +#. Label of the item_name (Data) field in DocType 'Quotation Item' +#. Label of the item_name (Data) field in DocType 'Sales Order Item' +#. Label of the item_name (Data) field in DocType 'Batch' +#. Label of the item_name (Data) field in DocType 'Delivery Note Item' +#. Label of the item_name (Data) field in DocType 'Item' +#. Label of the item_name (Read Only) field in DocType 'Item Alternative' +#. Label of the item_name (Data) field in DocType 'Item Lead Time' +#. Label of the item_name (Data) field in DocType 'Item Manufacturer' +#. Label of the item_name (Data) field in DocType 'Item Price' +#. Label of the item_name (Data) field in DocType 'Material Request Item' +#. Label of the item_name (Data) field in DocType 'Packed Item' +#. Label of the item_name (Data) field in DocType 'Packing Slip Item' +#. Label of the item_name (Data) field in DocType 'Pick List Item' +#. Label of the item_name (Data) field in DocType 'Purchase Receipt Item' +#. Label of the item_name (Data) field in DocType 'Putaway Rule' +#. Label of the item_name (Data) field in DocType 'Quality Inspection' +#. Label of the item_name (Data) field in DocType 'Quick Stock Balance' +#. Label of the item_name (Data) field in DocType 'Serial and Batch Bundle' +#. Label of the item_name (Data) field in DocType 'Serial No' +#. Label of the item_name (Data) field in DocType 'Stock Closing Balance' +#. Label of the item_name (Data) field in DocType 'Stock Entry Detail' +#. Label of the item_name (Data) field in DocType 'Stock Reconciliation Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Inward Order +#. Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Order Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Order Service +#. Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Receipt Item' +#. Label of the item_name (Data) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#. Label of the item_name (Data) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:74 +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:71 +#: erpnext/accounts/report/gross_profit/gross_profit.py:319 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:34 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:154 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:173 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:71 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:34 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:206 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:101 +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:153 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 +#: erpnext/public/js/controllers/transaction.js:2867 +#: erpnext/public/js/utils.js:827 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1324 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:35 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:34 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:26 +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/available_batch_report/available_batch_report.py:32 +#: erpnext/stock/report/available_serial_no/available_serial_no.py:99 +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:33 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:77 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:153 +#: erpnext/stock/report/item_price_stock/item_price_stock.py:24 +#: erpnext/stock/report/item_prices/item_prices.py:51 +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:143 +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:58 +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440 +#: erpnext/stock/report/stock_ageing/stock_ageing.py:184 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:45 +#: erpnext/stock/report/stock_balance/stock_balance.py:477 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:293 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31 +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:98 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Item Name" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +msgid "Item Name is required." +msgstr "" + +#. Label of the item_naming_by (Select) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Item Naming By" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:455 +msgid "Item Out of Stock" +msgstr "" + +#. Label of the column_break_njfg (Column Break) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Item Override" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Selling Workspace +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json +msgid "Item Price" +msgstr "" + +#. Label of the item_price_settings_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Item Price Settings" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/item_price_stock/item_price_stock.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Price Stock" +msgstr "" + +#: erpnext/stock/get_item_details.py:1181 +#: erpnext/stock/get_item_details.py:1205 +msgid "Item Price added for {0} in Price List - {1}" +msgstr "" + +#: erpnext/stock/doctype/item_price/item_price.py:140 +msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:183 +msgid "Item Price created at rate {0}" +msgstr "" + +#: erpnext/stock/get_item_details.py:1164 +msgid "Item Price updated for {0} in Price List {1}" +msgstr "" + +#. Label of the item_prices_column (Column Break) field in DocType 'Item' +#. Name of a report +#. Label of a Link in the Stock Workspace +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/report/item_prices/item_prices.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Item Prices" +msgstr "" + +#. Name of a DocType +#. Label of the item_quality_inspection_parameter (Table) field in DocType +#. 'Quality Inspection Template' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +msgid "Item Quality Inspection Parameter" +msgstr "" + +#. Label of the item_reference (Link) field in DocType 'Maintenance Schedule +#. Detail' +#. Label of the item_reference (Data) field in DocType 'Production Plan Item' +#. Label of the item_reference (Data) field in DocType 'Production Plan Item +#. Reference' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json +msgid "Item Reference" +msgstr "" + +#. Name of a DocType +#. Label of the item_reorder_section (Section Break) field in DocType 'Material +#. Request Item' +#: erpnext/stock/doctype/item_reorder/item_reorder.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Item Reorder" +msgstr "" + +#. Label of the item_row (Data) field in DocType 'Item Wise Tax Detail' +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +msgid "Item Row" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" +msgstr "" + +#. Label of the item_serial_no (Link) field in DocType 'Quality Inspection' +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Item Serial No" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/item_shortage_report/item_shortage_report.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Shortage Report" +msgstr "" + +#. Label of the supplier_items (Table) field in DocType 'Item' +#. Name of a DocType +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_supplier/item_supplier.json +msgid "Item Supplier" +msgstr "" + +#. Label of the sec_break_taxes (Section Break) field in DocType 'Item Group' +#. Name of a DocType +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/stock/doctype/item_tax/item_tax.json +msgid "Item Tax" +msgstr "" + +#. Label of the item_tax_amount (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the item_tax_amount (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Item Tax Amount Included in Value" +msgstr "" + +#. Label of the item_tax_rate (Small Text) field in DocType 'POS Invoice Item' +#. Label of the item_tax_rate (Code) field in DocType 'Purchase Invoice Item' +#. Label of the item_tax_rate (Small Text) field in DocType 'Sales Invoice +#. Item' +#. Label of the item_tax_rate (Code) field in DocType 'Purchase Order Item' +#. Label of the item_tax_rate (Code) field in DocType 'Supplier Quotation Item' +#. Label of the item_tax_rate (Code) field in DocType 'Quotation Item' +#. Label of the item_tax_rate (Code) field in DocType 'Sales Order Item' +#. Label of the item_tax_rate (Small Text) field in DocType 'Delivery Note +#. Item' +#. Label of the item_tax_rate (Code) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Item Tax Rate" +msgstr "" + +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.py:68 +msgid "Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable" +msgstr "" + +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.py:55 +msgid "Item Tax Row {0}: Account must belong to Company - {1}" +msgstr "" + +#. Name of a DocType +#. Label of the item_tax_template (Link) field in DocType 'POS Invoice Item' +#. Label of the item_tax_template (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the item_tax_template (Link) field in DocType 'Sales Invoice Item' +#. Label of a Link in the Invoicing Workspace +#. Label of the item_tax_template (Link) field in DocType 'Purchase Order Item' +#. Label of the item_tax_template (Link) field in DocType 'Supplier Quotation +#. Item' +#. Label of the item_tax_template (Link) field in DocType 'Quotation Item' +#. Label of the item_tax_template (Link) field in DocType 'Sales Order Item' +#. Label of the item_tax_template (Link) field in DocType 'Delivery Note Item' +#. Label of the item_tax_template (Link) field in DocType 'Item Tax' +#. Label of the item_tax_template (Link) field in DocType 'Purchase Receipt +#. Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item_tax/item_tax.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Item Tax Template" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json +msgid "Item Tax Template Detail" +msgstr "" + +#. Label of the production_item (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Item To Manufacture" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/item_variant/item_variant.json +#: erpnext/stock/report/item_where_used/item_where_used.py:387 +msgid "Item Variant" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Item Variant Attribute" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/item_variant_details/item_variant_details.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Variant Details" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/item/item.js:235 +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/stock.json +msgid "Item Variant Settings" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1331 +msgid "Item Variant {0} already exists with same attributes" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:838 +msgid "Item Variants updated" +msgstr "" + +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.py:87 +msgid "Item Warehouse based reposting has been enabled." +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/item_website_specification/item_website_specification.json +msgid "Item Website Specification" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'POS Invoice +#. Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Purchase +#. Invoice Item' +#. Label of the section_break_18 (Section Break) field in DocType 'Sales +#. Invoice Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Purchase +#. Order Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Supplier +#. Quotation Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Quotation +#. Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Sales +#. Order Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Delivery +#. Note Item' +#. Label of the item_weight_details (Section Break) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Item Weight Details" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/item_where_used/item_where_used.json +msgid "Item Where Used" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.json +#: erpnext/workspace_sidebar/buying.json +msgid "Item Wise Consumption" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +msgid "Item Wise Tax Detail" +msgstr "" + +#. Label of the item_wise_tax_details (Table) field in DocType 'POS Invoice' +#. Label of the item_wise_tax_details (Table) field in DocType 'Purchase +#. Invoice' +#. Label of the item_wise_tax_details (Table) field in DocType 'Sales Invoice' +#. Label of the item_wise_tax_details (Table) field in DocType 'Purchase Order' +#. Label of the item_wise_tax_details (Table) field in DocType 'Supplier +#. Quotation' +#. Label of the item_wise_tax_details (Table) field in DocType 'Quotation' +#. Label of the item_wise_tax_details (Table) field in DocType 'Sales Order' +#. Label of the item_wise_tax_details (Table) field in DocType 'Delivery Note' +#. Label of the item_wise_tax_details (Table) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Item Wise Tax Details" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:560 +msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" +msgstr "" + +#. Label of the section_break_rrrx (Section Break) field in DocType 'Sales +#. Forecast' +#. Label of the item_and_warehouse_section (Section Break) field in DocType +#. 'Bin' +#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Item and Warehouse" +msgstr "" + +#. Label of the issue_details (Section Break) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Item and Warranty Details" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:433 +msgid "Item for row {0} does not match Material Request" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:897 +msgid "Item has variants." +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:436 +msgid "Item is mandatory in Raw Materials table." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_details.js:111 +msgid "Item is removed since no serial / batch no selected." +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +msgid "Item must be added using 'Get Items from Purchase Receipts' button" +msgstr "" + +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:41 +#: erpnext/selling/doctype/sales_order/sales_order.js:1719 +msgid "Item name" +msgstr "" + +#. Label of the operation (Link) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Item operation" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" +msgstr "" + +#. Label of the item (Link) field in DocType 'BOM' +#. Label of the finished_good (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Item to Manufacture" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:27 +msgid "Item valuation rate is recalculated considering landed cost voucher amount" +msgstr "" + +#: erpnext/stock/utils.py:539 +msgid "Item valuation reposting in progress. Report might show incorrect item valuation." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1054 +msgid "Item variant {0} exists with same attributes" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:24 +msgid "Item with name {0} not found in the Purchase Order" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:99 +msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 +msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 +msgid "Item {0} cannot be added as a sub-assembly of itself" +msgstr "" + +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:197 +msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:343 +#: erpnext/stock/doctype/item/item.py:693 +msgid "Item {0} does not exist" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:665 +msgid "Item {0} does not exist in the system or has expired" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:384 +msgid "Item {0} does not exist." +msgstr "" + +#: erpnext/controllers/selling_controller.py:870 +msgid "Item {0} entered multiple times." +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:222 +msgid "Item {0} has already been returned" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:345 +msgid "Item {0} has been disabled" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:631 +msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:43 +msgid "Item {0} has no changes in delivered quantity. Please unselect the row if you do not wish to update its quantity." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1233 +msgid "Item {0} has reached its end of life on {1}" +msgstr "" + +#: erpnext/stock/stock_ledger.py:114 +msgid "Item {0} ignored since it is not a stock item" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 +msgid "Item {0} is already reserved/delivered against Sales Order {1}." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1253 +msgid "Item {0} is cancelled" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1237 +msgid "Item {0} is disabled" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:29 +msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated." +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.py:79 +msgid "Item {0} is not a serialized Item" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1245 +msgid "Item {0} is not a stock Item" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:51 +msgid "Item {0} is not a subcontracted item" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:855 +msgid "Item {0} is not a template item." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +msgid "Item {0} is not active or end of life has been reached" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:347 +msgid "Item {0} must be a Fixed Asset Item" +msgstr "" + +#: erpnext/stock/get_item_details.py:365 +msgid "Item {0} must be a Non-Stock Item" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:349 +msgid "Item {0} must be a non-stock item" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:59 +msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/item_price/item_price.py:56 +msgid "Item {0} not found." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.py:315 +msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:573 +msgid "Item {0}: {1} qty produced. " +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 +msgid "Item {} does not exist." +msgstr "" + +#. Name of a report +#: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json +msgid "Item-wise Price List Rate" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Item-wise Purchase History" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Item-wise Purchase Register" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Item-wise Sales History" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.json +#: erpnext/workspace_sidebar/selling.json +msgid "Item-wise Sales Register" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Item-wise sales Register" +msgstr "" + +#: erpnext/stock/get_item_details.py:769 +msgid "Item/Item Code required to get Item Tax Template." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:484 +msgid "Item: {0} does not exist in the system" +msgstr "" + +#. Label of a Card Break in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/selling.json +msgid "Items & Pricing" +msgstr "" + +#. Label of a Card Break in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Items Catalogue" +msgstr "" + +#: erpnext/stock/report/item_prices/item_prices.js:8 +msgid "Items Filter" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/selling/doctype/sales_order/sales_order.js:1757 +msgid "Items Required" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Items To Be Received" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/report/items_to_be_requested/items_to_be_requested.json +#: erpnext/workspace_sidebar/buying.json +msgid "Items To Be Requested" +msgstr "" + +#. Label of a Card Break in the Selling Workspace +#: erpnext/selling/workspace/selling/selling.json +msgid "Items and Pricing" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:170 +msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:162 +msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1517 +msgid "Items for Raw Material Request" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:110 +msgid "Items not found." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" +msgstr "" + +#. Label of the items_to_be_repost (Code) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Items to Be Repost" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +msgid "Items to Manufacture are required to pull the Raw Materials associated with it." +msgstr "" + +#. Label of a Link in the Buying Workspace +#: erpnext/buying/workspace/buying/buying.json +msgid "Items to Order and Receive" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:72 +#: erpnext/selling/doctype/sales_order/sales_order.js:329 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:225 +msgid "Items to Reserve" +msgstr "" + +#. Description of the 'Warehouse' (Link) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Items under this warehouse will be suggested" +msgstr "" + +#: erpnext/controllers/stock_controller.py:121 +msgid "Items {0} do not exist in the Item master." +msgstr "" + +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Itemwise Discount" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Itemwise Recommended Reorder Level" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "JAN" +msgstr "" + +#. Label of the production_capacity (Int) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Job Capacity" +msgstr "" + +#. Label of the job_card (Link) field in DocType 'Purchase Order Item' +#. Option for the 'Transfer Material Against' (Select) field in DocType 'BOM' +#. Name of a DocType +#. Label of the job_card_section (Section Break) field in DocType 'Operation' +#. Option for the 'Transfer Material Against' (Select) field in DocType 'Work +#. Order' +#. Label of a Link in the Manufacturing Workspace +#. Label of the job_card (Link) field in DocType 'Material Request' +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Label of the job_card (Link) field in DocType 'Stock Entry' +#. Label of the job_card (Link) field in DocType 'Subcontracting Order Item' +#. Label of the job_card (Link) field in DocType 'Subcontracting Receipt Item' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card/job_card.py:1077 +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:408 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Job Card" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:167 +msgid "Job Card Analysis" +msgstr "" + +#. Name of a DocType +#. Label of the job_card_item (Data) field in DocType 'Material Request Item' +#. Label of the job_card_item (Data) field in DocType 'Stock Entry Detail' +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Job Card Item" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:926 +msgid "Job Card On Hold" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +msgid "Job Card Operation" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json +msgid "Job Card Scheduled Time" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +msgid "Job Card Secondary Item" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Job Card Summary" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +msgid "Job Card Time Log" +msgstr "" + +#. Label of the job_card_section (Tab Break) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Job Card and Capacity Planning" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +msgid "Job Card {0} has been completed" +msgstr "" + +#. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Job Cards" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job Paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 +msgid "Job Started" +msgstr "" + +#. Label of the job_title (Data) field in DocType 'Lead' +#. Label of the job_title (Data) field in DocType 'Opportunity' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Job Title" +msgstr "" + +#. Label of the supplier (Link) field in DocType 'Subcontracting Order' +#. Label of the supplier (Link) field in DocType 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Job Worker" +msgstr "" + +#. Label of the supplier_address (Link) field in DocType 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Job Worker Address" +msgstr "" + +#. Label of the address_display (Text Editor) field in DocType 'Subcontracting +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Job Worker Address Details" +msgstr "" + +#. Label of the contact_person (Link) field in DocType 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Job Worker Contact" +msgstr "" + +#. Label of the supplier_currency (Link) field in DocType 'Subcontracting +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Job Worker Currency" +msgstr "" + +#. Label of the supplier_delivery_note (Data) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Job Worker Delivery Note" +msgstr "" + +#. Label of the supplier_name (Data) field in DocType 'Subcontracting Order' +#. Label of the supplier_name (Data) field in DocType 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Job Worker Name" +msgstr "" + +#. Label of the supplier_warehouse (Link) field in DocType 'Subcontracting +#. Order' +#. Label of the supplier_warehouse (Link) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Job Worker Warehouse" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +msgid "Job card {0} created" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:76 +msgid "Job: {0} has been triggered for processing failed transactions" +msgstr "" + +#. Label of the employment_details (Tab Break) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Joining" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Joule" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Joule/Meter" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:30 +msgid "Journal Entries" +msgstr "" + +#: erpnext/accounts/utils.py:1073 +msgid "Journal Entries {0} are un-linked" +msgstr "" + +#. Name of a DocType +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#. Option for the 'Invoice Type' (Select) field in DocType 'Payment +#. Reconciliation Invoice' +#. Label of a Link in the Invoicing Workspace +#. Group in Asset's connections +#. Label of the journal_entry (Link) field in DocType 'Asset Value Adjustment' +#. Label of the journal_entry (Link) field in DocType 'Depreciation Schedule' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:58 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/print_format/journal_auditing_voucher/journal_auditing_voucher.html:10 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/assets/doctype/asset/asset.js:385 +#: erpnext/assets/doctype/asset/asset.js:394 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +#: erpnext/templates/form_grid/bank_reconciliation_grid.html:3 +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Journal Entry" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Journal Entry Account" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Journal Entry Template" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json +msgid "Journal Entry Template Account" +msgstr "" + +#. Label of the voucher_type (Select) field in DocType 'Journal Entry Template' +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Journal Entry Type" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:190 +msgid "Journal Entry for Asset scrapping cannot be cancelled. Please restore the Asset." +msgstr "" + +#. Label of the journal_entry_for_scrap (Link) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Journal Entry for Scrap" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/asset_service.py:32 +msgid "Journal Entry type should be set as Depreciation Entry for asset depreciation" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:580 +msgid "Journal Entry {0} does not have account {1} or already matched against other voucher" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:394 +msgid "Journal Template Accounts" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:97 +msgid "Journal entries have been created" +msgstr "" + +#. Label of the journals_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Journals" +msgstr "" + +#. Description of a DocType +#: erpnext/crm/doctype/campaign/campaign.json +msgid "Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. " +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kelvin" +msgstr "" + +#. Label of a Card Break in the Buying Workspace +#. Label of a Card Break in the Selling Workspace +#. Label of a Card Break in the Stock Workspace +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Key Reports" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kg" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kiloampere" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilocalorie" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilocoulomb" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilogram-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilogram/Cubic Centimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilogram/Cubic Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilogram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilohertz" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilojoule" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilometer" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilometer/Hour" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilopascal" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilopond" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilopound-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilowatt" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kilowatt-Hour" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1079 +msgid "Kindly cancel the Manufacturing Entries first against the work order {0}." +msgstr "" + +#: erpnext/public/js/utils/party.js:269 +msgid "Kindly select the company first" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Kip" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Knot" +msgstr "" + +#. Option for the 'Default Stock Valuation Method' (Select) field in DocType +#. 'Company' +#. Option for the 'Valuation Method' (Select) field in DocType 'Item' +#. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock +#. Settings' +#. Option for the 'Pick Serial / Batch Based On' (Select) field in DocType +#. 'Stock Settings' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "LIFO" +msgstr "" + +#. Label of the taxes (Table) field in DocType 'Landed Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Landed Cost" +msgstr "" + +#. Label of the landed_cost_help (HTML) field in DocType 'Landed Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Landed Cost Help" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:18 +msgid "Landed Cost Id" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +msgid "Landed Cost Item" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +msgid "Landed Cost Purchase Receipt" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/landed_cost_report/landed_cost_report.json +msgid "Landed Cost Report" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Landed Cost Taxes and Charges" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json +msgid "Landed Cost Vendor Invoice" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:671 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:88 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Landed Cost Voucher" +msgstr "" + +#. Label of the landed_cost_voucher_amount (Currency) field in DocType +#. 'Purchase Invoice Item' +#. Label of the landed_cost_voucher_amount (Currency) field in DocType +#. 'Purchase Receipt Item' +#. Label of the landed_cost_voucher_amount (Currency) field in DocType 'Stock +#. Entry Detail' +#. Label of the landed_cost_voucher_amount (Currency) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Landed Cost Voucher Amount" +msgstr "" + +#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Lapsed" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:274 +msgid "Large" +msgstr "" + +#. Label of the carbon_check_date (Date) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Last Carbon Check" +msgstr "" + +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:46 +msgid "Last Communication" +msgstr "" + +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:52 +msgid "Last Communication Date" +msgstr "" + +#. Label of the last_completion_date (Date) field in DocType 'Asset Maintenance +#. Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Last Completion Date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:81 +msgid "Last Fiscal Year" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:673 +msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" + +#. Label of the last_integration_date (Date) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Last Integration Date" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:138 +msgid "Last Month Downtime Analysis" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:104 +msgid "Last Order Amount" +msgstr "" + +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:45 +#: erpnext/selling/report/inactive_customers/inactive_customers.py:105 +msgid "Last Order Date" +msgstr "" + +#. Label of the last_purchase_rate (Currency) field in DocType 'Purchase Order +#. Item' +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM' +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM +#. Creator' +#. Label of the last_purchase_rate (Float) field in DocType 'Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:123 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/report/item_prices/item_prices.py:56 +msgid "Last Purchase Rate" +msgstr "" + +#. Label of the last_scanned_warehouse (Data) field in DocType 'POS Invoice' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Purchase +#. Invoice' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Sales Invoice' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Purchase Order' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Quotation' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Sales Order' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Delivery Note' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Material +#. Request' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Purchase +#. Receipt' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Stock Entry' +#. Label of the last_scanned_warehouse (Data) field in DocType 'Stock +#. Reconciliation' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Last Scanned Warehouse" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:335 +msgid "Last Stock Transaction for item {0} under warehouse {1} was on {2}." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankPicker.tsx:128 +msgid "Last Synced Transaction" +msgstr "" + +#: erpnext/setup/doctype/vehicle/vehicle.py:46 +msgid "Last carbon check date cannot be a future date" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:1037 +msgid "Last transacted" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.py:224 +msgid "Latest" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:593 +msgid "Latest Age" +msgstr "" + +#. Label of the latitude (Float) field in DocType 'Location' +#. Label of the lat (Float) field in DocType 'Delivery Stop' +#: erpnext/assets/doctype/location/location.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Latitude" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'CRM Settings' +#. Option for the 'Email Campaign For ' (Select) field in DocType 'Email +#. Campaign' +#. Name of a DocType +#. Option for the 'Status' (Select) field in DocType 'Lead' +#. Label of the lead (Link) field in DocType 'Prospect Lead' +#. Label of the lead_name (Link) field in DocType 'Customer' +#. Label of a Link in the Home Workspace +#. Label of the lead (Link) field in DocType 'Issue' +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/crm_settings/crm_settings.json +#: erpnext/crm/doctype/email_campaign/email_campaign.json +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/prospect_lead/prospect_lead.json +#: erpnext/crm/report/lead_details/lead_details.js:33 +#: erpnext/crm/report/lead_details/lead_details.py:18 +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js:8 +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:28 +#: erpnext/public/js/communication.js:25 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/support/doctype/issue/issue.json erpnext/workspace_sidebar/crm.json +msgid "Lead" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:399 +msgid "Lead -> Prospect" +msgstr "" + +#. Name of a report +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.json +msgid "Lead Conversion Time" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:21 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:26 +msgid "Lead Count" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/lead_details/lead_details.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Lead Details" +msgstr "" + +#. Label of the lead_name (Data) field in DocType 'Prospect Lead' +#: erpnext/crm/doctype/prospect_lead/prospect_lead.json +#: erpnext/crm/report/lead_details/lead_details.py:24 +msgid "Lead Name" +msgstr "" + +#. Label of the lead_owner (Link) field in DocType 'Lead' +#. Label of the lead_owner (Data) field in DocType 'Prospect Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/prospect_lead/prospect_lead.json +#: erpnext/crm/report/lead_details/lead_details.py:28 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:21 +msgid "Lead Owner" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Lead Owner Efficiency" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:174 +msgid "Lead Owner cannot be same as the Lead Email Address" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Lead Source" +msgstr "" + +#. Label of the cumulative_lead_time (Int) field in DocType 'Master Production +#. Schedule Item' +#. Label of the lead_time (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1073 +#: erpnext/stock/doctype/item/item_dashboard.py:35 +msgid "Lead Time" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:264 +msgid "Lead Time (Days)" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:267 +msgid "Lead Time (in mins)" +msgstr "" + +#. Label of the lead_time_date (Date) field in DocType 'Material Request Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Lead Time Date" +msgstr "" + +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:59 +msgid "Lead Time Days" +msgstr "" + +#. Label of the lead_time_days (Int) field in DocType 'Item' +#. Label of the lead_time_days (Int) field in DocType 'Item Price' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_price/item_price.json +msgid "Lead Time in days" +msgstr "" + +#. Label of the type (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Lead Type" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:398 +msgid "Lead {0} has been added to prospect {1}." +msgstr "" + +#. Label of the leads_section (Tab Break) field in DocType 'Prospect' +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Leads" +msgstr "" + +#: erpnext/utilities/activation.py:80 +msgid "Leads help you get business, add all your contacts and more as your leads" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Learn Asset' +#: erpnext/assets/onboarding_step/learn_asset/learn_asset.json +msgid "Learn Asset" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Learn Subcontracting' +#: erpnext/subcontracting/onboarding_step/learn_subcontracting/learn_subcontracting.json +msgid "Learn Subcontracting" +msgstr "" + +#. Description of the 'Enable Common Party Accounting' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Learn about Common Party" +msgstr "" + +#. Label of the leave_encashed (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Leave Encashed?" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:969 +msgid "Leave as 0 to allow zero valuation rate." +msgstr "" + +#. Description of the 'Success Redirect URL' (Data) field in DocType +#. 'Appointment Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Leave blank for home.\n" +"This is relative to site URL, for example \"about\" will redirect to \"https://yoursitename.com/about\"" +msgstr "" + +#. Description of the 'Release Date' (Date) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Leave blank if the Supplier is blocked indefinitely" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:138 +msgid "Leave blank to use the password already saved for this bank account (if any). It is stored encrypted and reused for future statements." +msgstr "" + +#. Description of the 'Dispatch Notification Attachment' (Link) field in +#. DocType 'Delivery Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Leave blank to use the standard Delivery Note format" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +msgid "Ledger Health" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +msgid "Ledger Health Monitor" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/ledger_health_monitor_company/ledger_health_monitor_company.json +msgid "Ledger Health Monitor Company" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +msgid "Ledger Merge" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json +msgid "Ledger Merge Accounts" +msgstr "" + +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:150 +msgid "Ledger Type" +msgstr "" + +#. Label of a Card Break in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Ledgers" +msgstr "" + +#. Label of the vouchers_posted (Int) field in DocType 'Repost Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Ledgers Posted" +msgstr "" + +#. Label of the left_child (Link) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Left Child" +msgstr "" + +#. Label of the lft (Int) field in DocType 'Quality Procedure' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Left Index" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:398 +msgid "Left column shows inherited defaults (Item Group → Company / Stock Settings). Right column is where you set overrides for this item only." +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.js:136 +msgid "Left column shows system-level defaults (Company / Stock Settings). Right column is where you set overrides for this item group." +msgstr "" + +#. Label of the legacy_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Legacy Fields" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/company/company.json +msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization." +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195 +msgid "Legal Expenses" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:32 +msgid "Legend" +msgstr "" + +#. Label of the length (Float) field in DocType 'Shipment Parcel' +#. Label of the length (Float) field in DocType 'Shipment Parcel Template' +#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Length (cm)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +msgid "Less Than Amount" +msgstr "" + +#. Description of the 'Body Text' (Text Editor) field in DocType 'Dunning +#. Letter Text' +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Letter or Email Body Text" +msgstr "" + +#. Description of the 'Closing Text' (Text Editor) field in DocType 'Dunning +#. Letter Text' +#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json +msgid "Letter or Email Closing Text" +msgstr "" + +#. Label of the bom_level (Int) field in DocType 'Production Plan Sub Assembly +#. Item' +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Level (BOM)" +msgstr "" + +#. Label of the lft (Int) field in DocType 'Account' +#. Label of the lft (Int) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/setup/doctype/company/company.json +msgid "Lft" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +msgid "Liabilities" +msgstr "" + +#. Option for the 'Root Type' (Select) field in DocType 'Account' +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Option for the 'Root Type' (Select) field in DocType 'Account Category' +#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/report/account_balance/account_balance.js:26 +msgid "Liability" +msgstr "" + +#. Label of the license_details (Section Break) field in DocType 'Driver' +#: erpnext/setup/doctype/driver/driver.json +msgid "License Details" +msgstr "" + +#. Label of the license_number (Data) field in DocType 'Driver' +#: erpnext/setup/doctype/driver/driver.json +msgid "License Number" +msgstr "" + +#. Label of the license_plate (Data) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "License Plate" +msgstr "" + +#: erpnext/controllers/status_updater.py:501 +msgid "Limit Crossed" +msgstr "" + +#. Label of the limit_reposting_timeslot (Check) field in DocType 'Stock +#. Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Limit timeslot for Stock Reposting" +msgstr "" + +#. Description of the 'Short Name' (Data) field in DocType 'Manufacturer' +#: erpnext/stock/doctype/manufacturer/manufacturer.json +msgid "Limited to 12 characters" +msgstr "" + +#. Label of the limits_dont_apply_on (Select) field in DocType 'Stock Reposting +#. Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Limits don't apply on" +msgstr "" + +#. Label of the reference_code (Data) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Line Reference" +msgstr "" + +#. Label of the amt_in_words_line_spacing (Float) field in DocType 'Cheque +#. Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Line spacing for amount in words" +msgstr "" + +#. Label of the link_options_sb (Section Break) field in DocType 'Support +#. Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Link Options" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:15 +msgid "Link a new bank account" +msgstr "" + +#. Description of the 'Sub Procedure' (Link) field in DocType 'Quality +#. Procedure Process' +#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json +msgid "Link existing Quality Procedure." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:556 +msgid "Link to Material Request" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:452 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:80 +msgid "Link to Material Requests" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:164 +msgid "Link with Customer" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.js:203 +msgid "Link with Supplier" +msgstr "" + +#. Label of the linked_docs_section (Section Break) field in DocType +#. 'Appointment' +#: erpnext/crm/doctype/appointment/appointment.json +msgid "Linked Documents" +msgstr "" + +#. Label of the section_break_12 (Section Break) field in DocType 'POS Closing +#. Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "Linked Invoices" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/linked_location/linked_location.json +msgid "Linked Location" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1106 +msgid "Linked with submitted documents" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:251 +#: erpnext/selling/doctype/customer/customer.js:283 +msgid "Linking Failed" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:250 +msgid "Linking to Customer Failed. Please try again." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.js:282 +msgid "Linking to Supplier Failed. Please try again." +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 +msgid "Liquidity Ratios" +msgstr "" + +#. Description of the 'Items' (Section Break) field in DocType 'Product Bundle' +#: erpnext/selling/doctype/product_bundle/product_bundle.json +msgid "List items that form the package." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Litre-Atmosphere" +msgstr "" + +#. Label of the load_criteria (Button) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Load All Criteria" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js:68 +msgid "Loading Invoices! Please Wait..." +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Loan" +msgstr "" + +#. Label of the loan_end_date (Date) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Loan End Date" +msgstr "" + +#. Label of the loan_period (Int) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Loan Period (Days)" +msgstr "" + +#. Label of the loan_start_date (Date) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Loan Start Date" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py:61 +msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305 +msgid "Loans (Liabilities)" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:25 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:36 +msgid "Loans and Advances (Assets)" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:210 +msgid "Local" +msgstr "" + +#. Label of the sb_location_details (Section Break) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Location Details" +msgstr "" + +#. Label of the location_name (Data) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Location Name" +msgstr "" + +#. Label of the locked (Check) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Locked" +msgstr "" + +#. Label of the log_entries (Int) field in DocType 'Bulk Transaction Log' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.json +msgid "Log Entries" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/item_price/item_price.json +msgid "Log the selling and buying rate of an Item" +msgstr "" + +#. Label of the logo (Attach) field in DocType 'Sales Partner' +#. Label of the logo (Attach Image) field in DocType 'Manufacturer' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +msgid "Logo" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323 +msgid "Long-term Provisions" +msgstr "" + +#. Label of the longitude (Float) field in DocType 'Location' +#. Label of the lng (Float) field in DocType 'Delivery Stop' +#: erpnext/assets/doctype/location/location.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Longitude" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Opportunity' +#. Option for the 'Status' (Select) field in DocType 'Quotation' +#. Option for the 'Tracking Status' (Select) field in DocType 'Shipment' +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:7 +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/quotation/quotation_list.js:36 +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Lost" +msgstr "" + +#. Name of a report +#: erpnext/crm/report/lost_opportunity/lost_opportunity.json +msgid "Lost Opportunity" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/report/lead_details/lead_details.js:38 +msgid "Lost Quotation" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/lost_quotations/lost_quotations.json +#: erpnext/selling/report/lost_quotations/lost_quotations.py:31 +msgid "Lost Quotations" +msgstr "" + +#: erpnext/selling/report/lost_quotations/lost_quotations.py:37 +msgid "Lost Quotations %" +msgstr "" + +#. Label of the lost_reason (Data) field in DocType 'Opportunity Lost Reason' +#: erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:30 +#: erpnext/selling/report/lost_quotations/lost_quotations.py:24 +msgid "Lost Reason" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.json +msgid "Lost Reason Detail" +msgstr "" + +#. Label of the lost_reasons (Table MultiSelect) field in DocType 'Opportunity' +#. Label of the lost_detail_section (Section Break) field in DocType +#. 'Opportunity' +#. Label of the lost_reasons (Table MultiSelect) field in DocType 'Quotation' +#. Label of the lost_reasons_section (Section Break) field in DocType +#. 'Quotation' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 +#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Lost Reasons" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity.js:28 +msgid "Lost Reasons are required in case opportunity is Lost." +msgstr "" + +#: erpnext/selling/report/lost_quotations/lost_quotations.py:43 +msgid "Lost Value" +msgstr "" + +#: erpnext/selling/report/lost_quotations/lost_quotations.py:49 +msgid "Lost Value %" +msgstr "" + +#. Label of the lower_deduction_certificate (Link) field in DocType 'Tax +#. Withholding Entry' +#. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax +#. Withholding Entry' +#. Label of a Link in the Invoicing Workspace +#. Name of a DocType +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Lower Deduction Certificate" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:309 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:426 +msgid "Lower Income" +msgstr "" + +#. Label of the loyalty_amount (Currency) field in DocType 'POS Invoice' +#. Label of the loyalty_amount (Currency) field in DocType 'Sales Invoice' +#. Label of the loyalty_amount (Currency) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Loyalty Amount" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Loyalty Point Entry" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json +msgid "Loyalty Point Entry Redemption" +msgstr "" + +#. Label of the loyalty_points (Int) field in DocType 'Loyalty Point Entry' +#. Label of the loyalty_points (Int) field in DocType 'POS Invoice' +#. Label of the loyalty_points (Int) field in DocType 'Sales Invoice' +#. Label of the loyalty_points_tab (Section Break) field in DocType 'Customer' +#. Label of the loyalty_points_redemption (Section Break) field in DocType +#. 'Sales Order' +#. Label of the loyalty_points (Int) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:970 +msgid "Loyalty Points" +msgstr "" + +#. Label of the loyalty_points_redemption (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the loyalty_points_redemption (Section Break) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Loyalty Points Redemption" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:16 +msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." +msgstr "" + +#: erpnext/public/js/utils.js:200 +msgid "Loyalty Points: {0}" +msgstr "" + +#. Label of the loyalty_program (Link) field in DocType 'Loyalty Point Entry' +#. Name of a DocType +#. Label of the loyalty_program (Link) field in DocType 'POS Invoice' +#. Label of the loyalty_program (Link) field in DocType 'Sales Invoice' +#. Label of the loyalty_program (Link) field in DocType 'Customer' +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1234 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:963 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Loyalty Program" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json +msgid "Loyalty Program Collection" +msgstr "" + +#. Label of the loyalty_program_help (HTML) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Loyalty Program Help" +msgstr "" + +#. Label of the loyalty_program_name (Data) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Loyalty Program Name" +msgstr "" + +#. Label of the loyalty_program_tier (Data) field in DocType 'Loyalty Point +#. Entry' +#. Label of the loyalty_program_tier (Data) field in DocType 'Customer' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Loyalty Program Tier" +msgstr "" + +#. Label of the loyalty_program_type (Select) field in DocType 'Loyalty +#. Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Loyalty Program Type" +msgstr "" + +#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists." +msgstr "" + +#. Label of the mps (Link) field in DocType 'Purchase Order' +#. Label of the mps (Link) field in DocType 'Work Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast_dashboard.py:9 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:51 +msgid "MPS" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Sales Forecast' +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast_list.js:9 +msgid "MPS Generated" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.py:445 +msgid "MRP Log documents are being created in the background." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:156 +msgid "MT940 file detected. Please enable 'Import MT940 Format' to proceed." +msgstr "" + +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.js:23 +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:78 +#: erpnext/public/js/plant_floor_visual/visual_plant.js:86 +msgid "Machine" +msgstr "" + +#: erpnext/public/js/plant_floor_visual/visual_plant.js:70 +msgid "Machine Type" +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Machine malfunction" +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Machine operator errors" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:728 +#: erpnext/setup/doctype/company/company.py:743 +#: erpnext/setup/doctype/company/company.py:744 +#: erpnext/setup/doctype/company/company.py:745 +msgid "Main" +msgstr "" + +#. Label of the main_cost_center (Link) field in DocType 'Cost Center +#. Allocation' +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json +msgid "Main Cost Center" +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:123 +msgid "Main Cost Center {0} cannot be entered in the child table" +msgstr "" + +#. Label of the main_item_code (Link) field in DocType 'Material Request Plan +#. Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "Main Item Code" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:138 +msgid "Maintain Asset" +msgstr "" + +#. Label of the is_stock_item (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Maintain Stock" +msgstr "" + +#. Label of the maintain_same_internal_transaction_rate (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Maintain same rate throughout internal Transaction" +msgstr "" + +#. Label of the maintain_same_sales_rate (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Maintain same rate throughout sales cycle" +msgstr "" + +#. Label of the maintain_same_rate (Check) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Maintain same rate throughout the purchase cycle" +msgstr "" + +#. Group in Asset's connections +#. Label of a Card Break in the Assets Workspace +#. Option for the 'Status' (Select) field in DocType 'Workstation' +#. Option for the 'Order Type' (Select) field in DocType 'Quotation' +#. Option for the 'Order Type' (Select) field in DocType 'Sales Order' +#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and +#. Batch Bundle' +#. Label of a Card Break in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/workspace/assets/assets.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:299 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/assets.json erpnext/workspace_sidebar/crm.json +msgid "Maintenance" +msgstr "" + +#. Label of the mntc_date (Date) field in DocType 'Maintenance Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Maintenance Date" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'Asset +#. Maintenance Log' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +msgid "Maintenance Details" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.js:50 +msgid "Maintenance Log" +msgstr "" + +#. Label of the maintenance_manager_name (Read Only) field in DocType 'Asset +#. Maintenance' +#. Label of the maintenance_manager_name (Read Only) field in DocType 'Asset +#. Maintenance Team' +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +msgid "Maintenance Manager Name" +msgstr "" + +#. Label of the maintenance_required (Check) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Maintenance Required" +msgstr "" + +#. Label of the maintenance_role (Link) field in DocType 'Maintenance Team +#. Member' +#: erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.json +msgid "Maintenance Role" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Name of a DocType +#. Label of the maintenance_schedule (Link) field in DocType 'Maintenance +#. Visit' +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:164 +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:81 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1166 +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/support.json +msgid "Maintenance Schedule" +msgstr "" + +#. Name of a DocType +#. Label of the maintenance_schedule_detail (Link) field in DocType +#. 'Maintenance Visit' +#. Label of the maintenance_schedule_detail (Data) field in DocType +#. 'Maintenance Visit Purpose' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +msgid "Maintenance Schedule Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +msgid "Maintenance Schedule Item" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:251 +msgid "Maintenance Schedule {0} exists against {1}" +msgstr "" + +#. Name of a report +#: erpnext/maintenance/report/maintenance_schedules/maintenance_schedules.json +msgid "Maintenance Schedules" +msgstr "" + +#. Label of the maintenance_status (Select) field in DocType 'Asset Maintenance +#. Log' +#. Label of the maintenance_status (Select) field in DocType 'Asset Maintenance +#. Task' +#. Label of the maintenance_status (Select) field in DocType 'Serial No' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Maintenance Status" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:59 +msgid "Maintenance Status has to be Cancelled or Completed to Submit" +msgstr "" + +#. Label of the maintenance_task (Data) field in DocType 'Asset Maintenance +#. Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Maintenance Task" +msgstr "" + +#. Label of the asset_maintenance_tasks (Table) field in DocType 'Asset +#. Maintenance' +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +msgid "Maintenance Tasks" +msgstr "" + +#. Label of the maintenance_team (Link) field in DocType 'Asset Maintenance' +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +msgid "Maintenance Team" +msgstr "" + +#. Name of a DocType +#: erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.json +msgid "Maintenance Team Member" +msgstr "" + +#. Label of the maintenance_team_members (Table) field in DocType 'Asset +#. Maintenance Team' +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +msgid "Maintenance Team Members" +msgstr "" + +#. Label of the maintenance_team_name (Data) field in DocType 'Asset +#. Maintenance Team' +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +msgid "Maintenance Team Name" +msgstr "" + +#. Label of the mntc_time (Time) field in DocType 'Maintenance Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Maintenance Time" +msgstr "" + +#. Label of the maintenance_type (Read Only) field in DocType 'Asset +#. Maintenance Log' +#. Label of the maintenance_type (Select) field in DocType 'Asset Maintenance +#. Task' +#. Label of the maintenance_type (Select) field in DocType 'Maintenance Visit' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Maintenance Type" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Name of a DocType +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:87 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1159 +#: erpnext/support/doctype/warranty_claim/warranty_claim.js:47 +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/support.json +msgid "Maintenance Visit" +msgstr "" + +#. Name of a DocType +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +msgid "Maintenance Visit Purpose" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +msgid "Maintenance start date can not be before delivery date for Serial No {0}" +msgstr "" + +#. Label of the maj_opt_subj (Text) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Major/Optional Subjects" +msgstr "" + +#. Label of the make (Data) field in DocType 'Vehicle' +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:264 +#: erpnext/manufacturing/doctype/job_card/job_card.js:479 +#: erpnext/manufacturing/doctype/work_order/work_order.js:851 +#: erpnext/manufacturing/doctype/work_order/work_order.js:885 +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Make" +msgstr "" + +#: erpnext/assets/doctype/asset/asset_list.js:32 +msgid "Make Asset Movement" +msgstr "" + +#. Label of the make_depreciation_entry (Button) field in DocType 'Depreciation +#. Schedule' +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +msgid "Make Depreciation Entry" +msgstr "" + +#. Label of the get_balance (Button) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Make Difference Entry" +msgstr "" + +#. Label of the make_payment_via_journal_entry (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Make Payment via Journal Entry" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:130 +msgid "Make Purchase / Work Order" +msgstr "" + +#: erpnext/templates/pages/order.html:27 +msgid "Make Purchase Invoice" +msgstr "" + +#: erpnext/templates/pages/rfq.html:19 +msgid "Make Quotation" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:328 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:128 +msgid "Make Return Entry" +msgstr "" + +#. Label of the make_sales_invoice (Check) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Make Sales Invoice" +msgstr "" + +#. Label of the make_serial_no_batch_from_work_order (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Make Serial No / Batch from Work Order" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:106 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256 +msgid "Make Stock Entry" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:368 +msgid "Make Subcontracting PO" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:427 +msgid "Make Transfer Entry" +msgstr "" + +#: erpnext/public/js/telephony.js:29 +msgid "Make a call" +msgstr "" + +#: erpnext/config/projects.py:34 +msgid "Make project from a template." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1119 +msgid "Make {0} Variant" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1121 +msgid "Make {0} Variants" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:195 +msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation." +msgstr "" + +#. Description of the 'With Operations' (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Manage cost of operations" +msgstr "" + +#. Description of the 'Enable tracking sales commissions' (Check) field in +#. DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Manage sales partner's and sales team's commissions" +msgstr "" + +#: erpnext/utilities/activation.py:97 +msgid "Manage your orders" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:506 +msgid "Management" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:20 +msgid "Manager" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:21 +msgid "Managing Director" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:101 +msgid "Mandatory Accounting Dimension" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:531 +msgid "Mandatory Field" +msgstr "" + +#. Label of the mandatory_for_bs (Check) field in DocType 'Accounting Dimension +#. Detail' +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Mandatory For Balance Sheet" +msgstr "" + +#. Label of the mandatory_for_pl (Check) field in DocType 'Accounting Dimension +#. Detail' +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Mandatory For Profit and Loss Account" +msgstr "" + +#: erpnext/selling/doctype/quotation/mapper.py:269 +msgid "Mandatory Missing" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:475 +msgid "Mandatory Purchase Order" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:497 +msgid "Mandatory Purchase Receipt" +msgstr "" + +#. Label of the conditional_mandatory_section (Section Break) field in DocType +#. 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Mandatory Section" +msgstr "" + +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Depreciation Schedule' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Finance Book' +#. Option for the 'How often should project be updated of Total Purchase Cost +#. ?' (Select) field in DocType 'Buying Settings' +#. Option for the '% Complete Method' (Select) field in DocType 'Project' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/projects/doctype/project/project.json +msgid "Manual" +msgstr "" + +#. Label of the manual_inspection (Check) field in DocType 'Quality Inspection' +#. Label of the manual_inspection (Check) field in DocType 'Quality Inspection +#. Reading' +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Manual Inspection" +msgstr "" + +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.js:36 +msgid "Manual entry cannot be created! Disable automatic entry for deferred accounting in accounts settings and try again" +msgstr "" + +#. Label of the manufacture_details (Section Break) field in DocType 'Purchase +#. Invoice Item' +#. Label of the manufacture_details (Section Break) field in DocType 'Purchase +#. Order Item' +#. Label of the manufacture_details (Section Break) field in DocType 'Supplier +#. Quotation Item' +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Option for the 'Default Material Request Type' (Select) field in DocType +#. 'Item' +#. Option for the 'Material Request Type' (Select) field in DocType 'Item +#. Reorder' +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#. Label of the manufacture_details (Section Break) field in DocType 'Material +#. Request Item' +#. Label of the manufacture_details (Section Break) field in DocType 'Purchase +#. Receipt Item' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#. Label of the manufacture_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#. Label of the manufacture_details (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:13 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/operation/operation_dashboard.py:7 +#: erpnext/projects/doctype/project/project_dashboard.py:17 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:89 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_dashboard.py:32 +#: erpnext/stock/doctype/item_reorder/item_reorder.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Manufacture" +msgstr "" + +#. Description of the 'Material Request' (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Manufacture against Material Request" +msgstr "" + +#. Label of a number card in the Manufacturing Workspace +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +msgid "Manufactured Items Value" +msgstr "" + +#. Label of the manufactured_qty (Float) field in DocType 'Job Card' +#. Label of the produced_qty (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:90 +msgid "Manufactured Qty" +msgstr "" + +#. Label of the manufacturer (Link) field in DocType 'Purchase Invoice Item' +#. Label of the manufacturer (Link) field in DocType 'Purchase Order Item' +#. Label of the manufacturer (Link) field in DocType 'Supplier Quotation Item' +#. Option for the 'Variant Based On' (Select) field in DocType 'Item' +#. Label of the manufacturer (Link) field in DocType 'Item Manufacturer' +#. Name of a DocType +#. Label of the manufacturer (Link) field in DocType 'Material Request Item' +#. Label of the manufacturer (Link) field in DocType 'Purchase Receipt Item' +#. Label of the manufacturer (Link) field in DocType 'Subcontracting Order +#. Item' +#. Label of the manufacturer (Link) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:110 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Manufacturer" +msgstr "" + +#. Label of the manufacturer_part_no (Data) field in DocType 'Purchase Invoice +#. Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Purchase Order +#. Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Supplier +#. Quotation Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Item +#. Manufacturer' +#. Label of the manufacturer_part_no (Data) field in DocType 'Material Request +#. Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Purchase Receipt +#. Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Subcontracting +#. Order Item' +#. Label of the manufacturer_part_no (Data) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:113 +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Manufacturer Part Number" +msgstr "" + +#: erpnext/public/js/controllers/buying.js:421 +msgid "Manufacturer Part Number {0} is invalid" +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/manufacturer/manufacturer.json +msgid "Manufacturers used in Items" +msgstr "" + +#. Label of a Desktop Icon +#. Label of the work_order_details_section (Section Break) field in DocType +#. 'Production Plan Sub Assembly Item' +#. Name of a Workspace +#. Label of the manufacturing_section (Section Break) field in DocType +#. 'Company' +#. Label of the manufacturing_section (Section Break) field in DocType 'Batch' +#. Label of the manufacturing (Tab Break) field in DocType 'Item' +#. Label of the section_break_wuqi (Section Break) field in DocType 'Item Lead +#. Time' +#. Title of a Workspace Sidebar +#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:30 +#: erpnext/desktop_icon/manufacturing.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29 +#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:388 +#: erpnext/setup/setup_wizard/data/industry_type.txt:31 +#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/material_request/material_request_dashboard.py:18 +#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:21 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order_dashboard.py:13 +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Manufacturing" +msgstr "" + +#. Label of the semi_fg_bom (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Manufacturing BOM" +msgstr "" + +#. Label of the manufacturing_date (Date) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Manufacturing Date" +msgstr "" + +#. Name of a role +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/manufacturing/doctype/routing/routing.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Manufacturing Manager" +msgstr "" + +#. Label of the manufacturing_section_section (Section Break) field in DocType +#. 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Manufacturing Section" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Manufacturing Settings" +msgstr "" + +#. Title of the Module Onboarding 'Manufacturing Onboarding' +#: erpnext/manufacturing/module_onboarding/manufacturing_onboarding/manufacturing_onboarding.json +msgid "Manufacturing Setup" +msgstr "" + +#. Label of the manufacturing_time_in_mins (Int) field in DocType 'Item Lead +#. Time' +#. Label of the manufacturing_time_tab (Tab Break) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Manufacturing Time" +msgstr "" + +#. Label of the type_of_manufacturing (Select) field in DocType 'Production +#. Plan Sub Assembly Item' +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Manufacturing Type" +msgstr "" + +#. Name of a role +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/routing/routing.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/price_list/price_list.json +#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/doctype/warehouse_type/warehouse_type.json +msgid "Manufacturing User" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:106 +msgid "Mapping Subcontracting Inward Order ..." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:152 +msgid "Mapping Subcontracting Order ..." +msgstr "" + +#: erpnext/public/js/utils.js:1058 +msgid "Mapping {0} ..." +msgstr "" + +#. Label of the maps_to (Select) field in DocType 'Bank Statement Import Log +#. Column Map' +#: banking/src/pages/BankStatementImporter.tsx:177 +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Maps To" +msgstr "" + +#. Label of the margin (Section Break) field in DocType 'Pricing Rule' +#. Label of the margin (Section Break) field in DocType 'Project' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/projects/doctype/project/project.json +msgid "Margin" +msgstr "" + +#. Label of the margin_money (Currency) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Margin Money" +msgstr "" + +#. Label of the margin_rate_or_amount (Float) field in DocType 'POS Invoice +#. Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Pricing Rule' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Purchase +#. Invoice Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Sales Invoice +#. Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Purchase Order +#. Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Supplier +#. Quotation Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Quotation Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Sales Order +#. Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Delivery Note +#. Item' +#. Label of the margin_rate_or_amount (Float) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Margin Rate or Amount" +msgstr "" + +#. Label of the margin_type (Select) field in DocType 'POS Invoice Item' +#. Label of the margin_type (Select) field in DocType 'Pricing Rule' +#. Label of the margin_type (Data) field in DocType 'Pricing Rule Detail' +#. Label of the margin_type (Select) field in DocType 'Purchase Invoice Item' +#. Label of the margin_type (Select) field in DocType 'Sales Invoice Item' +#. Label of the margin_type (Select) field in DocType 'Purchase Order Item' +#. Label of the margin_type (Select) field in DocType 'Supplier Quotation Item' +#. Label of the margin_type (Select) field in DocType 'Quotation Item' +#. Label of the margin_type (Select) field in DocType 'Sales Order Item' +#. Label of the margin_type (Select) field in DocType 'Delivery Note Item' +#. Label of the margin_type (Select) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Margin Type" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:33 +msgid "Margin View" +msgstr "" + +#. Label of the marital_status (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Marital Status" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:39 +#: erpnext/public/js/templates/crm_activities.html:123 +msgid "Mark As Closed" +msgstr "" + +#. Description of the 'Is Internal Customer' (Check) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Mark if this customer represents an internal company. Enables inter-company transactions." +msgstr "" + +#. Label of the market_segment (Link) field in DocType 'Lead' +#. Name of a DocType +#. Label of the market_segment (Data) field in DocType 'Market Segment' +#. Label of the market_segment (Link) field in DocType 'Opportunity' +#. Label of the market_segment (Link) field in DocType 'Prospect' +#. Label of the market_segment (Link) field in DocType 'Customer' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/market_segment/market_segment.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Market Segment" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:458 +msgid "Marketing" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196 +msgid "Marketing Expenses" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:23 +msgid "Marketing Specialist" +msgstr "" + +#. Option for the 'Marital Status' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Married" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:7 +msgid "Mass Mailing" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Master Production Schedule" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +msgid "Master Production Schedule Item" +msgstr "" + +#. Label of a Card Break in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "Masters" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:302 +msgid "Match" +msgstr "" + +#: banking/src/pages/BankReconciliation.tsx:116 +msgid "Match and Reconcile" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:62 +msgid "Match or Create" +msgstr "" + +#. Label of the transfer_match_days (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Match transfers within 'N' days" +msgstr "" + +#. Option for the 'Reconciliation Type' (Select) field in DocType 'Bank +#. Transaction Payments' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:73 +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +msgid "Matched" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:57 +msgid "Matched Field" +msgstr "" + +#. Label of the matched_transaction_rule (Link) field in DocType 'Bank +#. Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Matched Transaction Rule" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:368 +msgid "Matched by rule" +msgstr "" + +#: banking/src/components/features/Settings/SettingsDialogContent.tsx:32 +msgid "Matching Rules" +msgstr "" + +#: erpnext/projects/doctype/project/project_dashboard.py:14 +msgid "Material" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:876 +msgid "Material Consumption" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Material Consumption for Manufacture" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:683 +msgid "Material Consumption is not set in Manufacturing Settings." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Option for the 'Default Material Request Type' (Select) field in DocType +#. 'Item' +#. Option for the 'Material Request Type' (Select) field in DocType 'Item +#. Reorder' +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:71 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_reorder/item_reorder.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Material Issue" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Material Planning" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:77 +#: erpnext/stock/doctype/material_request/material_request.js:188 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Material Receipt" +msgstr "" + +#. Label of the material_request (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the material_request (Link) field in DocType 'Purchase Order Item' +#. Label of the material_request (Link) field in DocType 'Request for Quotation +#. Item' +#. Label of the material_request (Link) field in DocType 'Supplier Quotation +#. Item' +#. Label of a Link in the Buying Workspace +#. Option for the 'Get Items From' (Select) field in DocType 'Production Plan' +#. Label of the material_request (Link) field in DocType 'Production Plan Item' +#. Label of the material_request (Link) field in DocType 'Production Plan +#. Material Request' +#. Option for the 'Manufacturing Type' (Select) field in DocType 'Production +#. Plan Sub Assembly Item' +#. Label of the material_request (Link) field in DocType 'Work Order' +#. Label of the material_request (Link) field in DocType 'Sales Order Item' +#. Label of the material_request (Link) field in DocType 'Delivery Note Item' +#. Name of a DocType +#. Label of the material_request (Link) field in DocType 'Pick List' +#. Label of the material_request (Link) field in DocType 'Pick List Item' +#. Label of the material_request (Link) field in DocType 'Purchase Receipt +#. Item' +#. Label of the material_request (Link) field in DocType 'Stock Entry Detail' +#. Label of a Link in the Stock Workspace +#. Label of the material_request (Link) field in DocType 'Subcontracting Order +#. Item' +#. Label of the material_request (Link) field in DocType 'Subcontracting Order +#. Service Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/buying_settings/buying_settings.js:45 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:493 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:361 +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:56 +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:186 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/manufacturing/doctype/job_card/job_card.js:216 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1130 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:37 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request.py:437 +#: erpnext/stock/doctype/material_request/material_request.py:454 +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:304 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:460 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:153 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/stock.json +msgid "Material Request" +msgstr "" + +#. Label of the material_request_date (Date) field in DocType 'Production Plan +#. Material Request' +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json +msgid "Material Request Date" +msgstr "" + +#. Label of the material_request_detail (Section Break) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Material Request Detail" +msgstr "" + +#. Label of the material_request_item (Data) field in DocType 'Purchase Invoice +#. Item' +#. Label of the material_request_item (Data) field in DocType 'Purchase Order +#. Item' +#. Label of the material_request_item (Data) field in DocType 'Request for +#. Quotation Item' +#. Label of the material_request_item (Data) field in DocType 'Supplier +#. Quotation Item' +#. Label of the material_request_item (Data) field in DocType 'Work Order' +#. Label of the material_request_item (Data) field in DocType 'Sales Order +#. Item' +#. Label of the material_request_item (Data) field in DocType 'Delivery Note +#. Item' +#. Name of a DocType +#. Label of the material_request_item (Data) field in DocType 'Pick List Item' +#. Label of the material_request_item (Data) field in DocType 'Purchase Receipt +#. Item' +#. Label of the material_request_item (Link) field in DocType 'Stock Entry +#. Detail' +#. Label of the material_request_item (Data) field in DocType 'Subcontracting +#. Order Item' +#. Label of the material_request_item (Data) field in DocType 'Subcontracting +#. Order Service Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +msgid "Material Request Item" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +msgid "Material Request No" +msgstr "" + +#. Name of a DocType +#. Label of the material_request_plan_item (Data) field in DocType 'Material +#. Request Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Material Request Plan Item" +msgstr "" + +#. Label of the material_request_type (Select) field in DocType 'Item Reorder' +#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:1 +#: erpnext/stock/doctype/item_reorder/item_reorder.json +msgid "Material Request Type" +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:155 +msgid "Material Request already created for the ordered quantity" +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:925 +msgid "Material Request not created, as quantity for Raw Materials already available." +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:149 +msgid "Material Request of maximum {0} can be made for Item {1} against Sales Order {2}" +msgstr "" + +#. Description of the 'Material Request' (Link) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Material Request used to make this Stock Entry" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1306 +msgid "Material Request {0} is cancelled or stopped" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1533 +msgid "Material Request {0} submitted." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Material Requested" +msgstr "" + +#. Label of the material_requests (Table) field in DocType 'Master Production +#. Schedule' +#. Label of the material_requests (Table) field in DocType 'Production Plan' +#: erpnext/accounts/doctype/budget/budget.py:636 +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Material Requests" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sales_order_planning.py:196 +msgid "Material Requests Required" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Name of a report +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/report/material_requests_for_which_supplier_quotations_are_not_created/material_requests_for_which_supplier_quotations_are_not_created.json +msgid "Material Requests for which Supplier Quotations are not created" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +msgid "Material Requirements Planning" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.json +msgid "Material Requirements Planning Report" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:15 +msgid "Material Returned from WIP" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Option for the 'Default Material Request Type' (Select) field in DocType +#. 'Item' +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#. Option for the 'Purpose' (Select) field in DocType 'Pick List' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/manufacturing/doctype/job_card/job_card.js:224 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:83 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/material_request/material_request.js:166 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Material Transfer" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:172 +msgid "Material Transfer (In Transit)" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Pick List' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:108 +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Material Transfer for Manufacture" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Job Card' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Order' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Material Transferred" +msgstr "" + +#. Option for the 'Based On' (Select) field in DocType 'BOM' +#. Option for the 'Backflush Raw Materials Based On' (Select) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Material Transferred for Manufacture" +msgstr "" + +#. Label of the material_transferred_for_manufacturing (Float) field in DocType +#. 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Material Transferred for Manufacturing" +msgstr "" + +#. Option for the 'Backflush raw materials of subcontract based on' (Select) +#. field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Material Transferred for Subcontract" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:151 +msgid "Material from Customer" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:643 +msgid "Material to Supplier" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Materials To Be Transferred" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1550 +msgid "Materials are already received against the {0} {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:189 +#: erpnext/manufacturing/doctype/job_card/job_card.py:903 +msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" + +#. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' +#. Label of the max_amount (Currency) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the max_amount (Currency) field in DocType 'Promotional Scheme +#. Product Discount' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Max Amount" +msgstr "" + +#. Label of the max_amt (Currency) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Max Amt" +msgstr "" + +#. Label of the max_discount (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Max Discount (%)" +msgstr "" + +#. Label of the max_grade (Percent) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the max_grade (Percent) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Max Grade" +msgstr "" + +#. Label of the max_producible_qty (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Max Producible Qty" +msgstr "" + +#. Label of the max_qty (Float) field in DocType 'Promotional Scheme Price +#. Discount' +#. Label of the max_qty (Float) field in DocType 'Promotional Scheme Product +#. Discount' +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Max Qty" +msgstr "" + +#. Label of the max_qty (Float) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Max Qty (As Per Stock UOM)" +msgstr "" + +#. Label of the sample_quantity (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Max Sample Quantity" +msgstr "" + +#. Label of the max_score (Float) field in DocType 'Supplier Scorecard +#. Criteria' +#. Label of the max_score (Float) field in DocType 'Supplier Scorecard Scoring +#. Criteria' +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Max Score" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:292 +msgid "Max discount allowed for item: {0} is {1}%" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1052 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1059 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1082 +#: erpnext/stock/doctype/pick_list/pick_list.js:208 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:399 +msgid "Max: {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:63 +msgid "Maximum Amount" +msgstr "" + +#. Label of the maximum_invoice_amount (Currency) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Maximum Invoice Amount" +msgstr "" + +#. Label of the maximum_net_rate (Float) field in DocType 'Item Tax' +#: erpnext/stock/doctype/item_tax/item_tax.json +msgid "Maximum Net Rate" +msgstr "" + +#. Label of the maximum_payment_amount (Currency) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Maximum Payment Amount" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:82 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:151 +msgid "Maximum Producible Items" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:1171 +msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:1160 +msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}." +msgstr "" + +#. Label of the maximum_use (Int) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Maximum Use" +msgstr "" + +#. Label of the max_value (Float) field in DocType 'Item Quality Inspection +#. Parameter' +#. Label of the max_value (Float) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Maximum Value" +msgstr "" + +#. Description of the 'Max Discount (%)' (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +#, python-format +msgid "Maximum discount % allowed when selling this item. Eg: if set to 20%, a discount greater than 20% cannot be applied in sales transactions." +msgstr "" + +#: erpnext/controllers/selling_controller.py:280 +msgid "Maximum discount for Item {0} is {1}%" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:120 +msgid "Maximum quantity scanned for item {0}." +msgstr "" + +#. Description of the 'Max Sample Quantity' (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Maximum sample quantity that can be retained" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Megacoulomb" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Megagram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Megahertz" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Megajoule" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Megawatt" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2056 +msgid "Mention Valuation Rate in the Item master." +msgstr "" + +#. Description of the 'Accounts' (Table) field in DocType 'Customer Group' +#. Description of the 'Accounts' (Table) field in DocType 'Supplier Group' +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Mention if non-standard receivable account applicable" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:169 +msgid "Merge" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:55 +msgid "Merge Account" +msgstr "" + +#. Label of the merge_invoices_based_on (Select) field in DocType 'POS Invoice +#. Merge Log' +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +msgid "Merge Invoices Based On" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:18 +msgid "Merge Progress" +msgstr "" + +#. Label of the merge_similar_account_heads (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Merge similar Account Heads" +msgstr "" + +#: erpnext/public/js/utils.js:1090 +msgid "Merge taxes from multiple documents" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:141 +msgid "Merge with Existing Account" +msgstr "" + +#. Label of the merged (Check) field in DocType 'Ledger Merge Accounts' +#: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json +msgid "Merged" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:616 +msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:16 +msgid "Merging {0} of {1}" +msgstr "" + +#. Label of the message_for_supplier (Text Editor) field in DocType 'Request +#. for Quotation' +#. Label of the mfs_html (Code) field in DocType 'Request for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Message for Supplier" +msgstr "" + +#. Label of the message_to_show (Data) field in DocType 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Message to show" +msgstr "" + +#. Description of the 'Message' (Text) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Message will be sent to the users to get their status on the Project" +msgstr "" + +#. Description of the 'Message' (Text) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Messages greater than 160 characters will be split into multiple messages" +msgstr "" + +#: erpnext/setup/install.py:128 +msgid "Messaging CRM Campaign" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Meter Of Water" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Meter/Second" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:559 +msgid "Method {0} is not allowed to be run on a Job Card." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Microbar" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Microgram" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Microgram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Micrometer" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Microsecond" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:310 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:427 +msgid "Middle Income" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Mile" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Mile (Nautical)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Mile/Hour" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Mile/Minute" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Mile/Second" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milibar" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milliampere" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millicoulomb" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milligram" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milligram/Cubic Centimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milligram/Cubic Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milligram/Cubic Millimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Milligram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millihertz" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millilitre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millimeter Of Mercury" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millimeter Of Water" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Millisecond" +msgstr "" + +#. Label of the min_amount (Currency) field in DocType 'Bank Transaction Rule' +#. Label of the min_amount (Currency) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the min_amount (Currency) field in DocType 'Promotional Scheme +#. Product Discount' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Min Amount" +msgstr "" + +#. Label of the min_amt (Currency) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Min Amt" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:228 +msgid "Min Amt can not be greater than Max Amt" +msgstr "" + +#. Label of the min_grade (Percent) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the min_grade (Percent) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Min Grade" +msgstr "" + +#. Label of the min_order_qty (Float) field in DocType 'Material Request Item' +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1063 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Min Order Qty" +msgstr "" + +#. Label of the min_qty (Float) field in DocType 'Promotional Scheme Price +#. Discount' +#. Label of the min_qty (Float) field in DocType 'Promotional Scheme Product +#. Discount' +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Min Qty" +msgstr "" + +#. Label of the min_qty (Float) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Min Qty (As Per Stock UOM)" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:224 +msgid "Min Qty can not be greater than Max Qty" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:238 +msgid "Min Qty should be greater than Recurse Over Qty" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1282 +msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:62 +msgid "Min amount cannot be greater than max amount." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:58 +msgid "Minimum Amount" +msgstr "" + +#. Label of the minimum_invoice_amount (Currency) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Minimum Invoice Amount" +msgstr "" + +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js:20 +msgid "Minimum Lead Age (Days)" +msgstr "" + +#. Label of the minimum_net_rate (Float) field in DocType 'Item Tax' +#: erpnext/stock/doctype/item_tax/item_tax.json +msgid "Minimum Net Rate" +msgstr "" + +#. Label of the min_order_qty (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Minimum Order Qty" +msgstr "" + +#. Label of the min_order_qty (Float) field in DocType 'Material Request Plan +#. Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "Minimum Order Quantity" +msgstr "" + +#. Label of the minimum_payment_amount (Currency) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Minimum Payment Amount" +msgstr "" + +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:96 +msgid "Minimum Qty" +msgstr "" + +#. Label of the min_spent (Currency) field in DocType 'Loyalty Program +#. Collection' +#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json +msgid "Minimum Total Spent" +msgstr "" + +#. Label of the min_value (Float) field in DocType 'Item Quality Inspection +#. Parameter' +#. Label of the min_value (Float) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Minimum Value" +msgstr "" + +#. Description of the 'Minimum Order Qty' (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Minimum quantity should be as per Stock UOM\n\n" +msgstr "" + +#. Description of the 'Safety Stock' (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Minimum stock level to maintain as a buffer. Used to calculate recommended reorder level: Reorder Level = Safety Stock + (Average Daily Consumption × Lead Time)." +msgstr "" + +#. Label of the minute (Text Editor) field in DocType 'Quality Meeting Minutes' +#. Name of a UOM +#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Minute" +msgstr "" + +#. Label of the minutes (Table) field in DocType 'Quality Meeting' +#: erpnext/quality_management/doctype/quality_meeting/quality_meeting.json +msgid "Minutes" +msgstr "" + +#. Label of the section_break_19 (Section Break) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Miscellaneous" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229 +msgid "Miscellaneous Expenses" +msgstr "" + +#: erpnext/controllers/buying_controller.py:729 +msgid "Mismatch" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +msgid "Missing" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97 +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:208 +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 +#: erpnext/assets/doctype/asset_category/asset_category.py:126 +msgid "Missing Account" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:191 +msgid "Missing Accounts" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:37 +msgid "Missing Asset" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:187 +#: erpnext/assets/doctype/asset/asset.py:377 +msgid "Missing Cost Center" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1148 +msgid "Missing Default in Company" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:929 +msgid "Missing Dependency" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:44 +msgid "Missing Filters" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:422 +msgid "Missing Finance Book" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +msgid "Missing Finished Good" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:311 +msgid "Missing Formula" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +msgid "Missing Item" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:583 +msgid "Missing Parameter" +msgstr "" + +#: erpnext/utilities/__init__.py:57 +msgid "Missing Payments App" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +msgid "Missing Required Filter" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:297 +msgid "Missing Serial No Bundle" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:172 +msgid "Missing Warehouse" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:156 +msgid "Missing account configuration for company {0}." +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:156 +msgid "Missing email template for dispatch. Please set one in Delivery Settings." +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +msgid "Missing required filter: {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +msgid "Missing value" +msgstr "" + +#. Label of the mixed_conditions (Check) field in DocType 'Pricing Rule' +#. Label of the mixed_conditions (Check) field in DocType 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Mixed Conditions" +msgstr "" + +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:216 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:248 +#: erpnext/accounts/report/purchase_register/purchase_register.py:203 +#: erpnext/accounts/report/sales_register/sales_register.py:224 +msgid "Mode Of Payment" +msgstr "" + +#. Label of the mode_of_payment (Link) field in DocType 'Cashier Closing +#. Payments' +#. Label of the mode_of_payment (Link) field in DocType 'Journal Entry' +#. Name of a DocType +#. Label of the mode_of_payment (Data) field in DocType 'Mode of Payment' +#. Label of the mode_of_payment (Link) field in DocType 'Overdue Payment' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Entry' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Order +#. Reference' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Request' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Schedule' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Term' +#. Label of the mode_of_payment (Link) field in DocType 'Payment Terms Template +#. Detail' +#. Label of the mode_of_payment (Link) field in DocType 'POS Closing Entry +#. Detail' +#. Label of the mode_of_payment (Link) field in DocType 'POS Opening Entry +#. Detail' +#. Label of the mode_of_payment (Link) field in DocType 'POS Payment Method' +#. Label of the mode_of_payment (Link) field in DocType 'Purchase Invoice' +#. Label of the mode_of_payment (Link) field in DocType 'Sales Invoice Payment' +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:234 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:433 +#: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.js:126 +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:40 +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:244 +#: erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.json +#: erpnext/accounts/doctype/pos_payment_method/pos_payment_method.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:47 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:35 +#: erpnext/accounts/report/purchase_register/purchase_register.js:40 +#: erpnext/accounts/report/sales_register/sales_register.js:40 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/selling/page/point_of_sale/pos_controller.js:33 +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Mode of Payment" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json +msgid "Mode of Payment Account" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:35 +msgid "Mode of Payments" +msgstr "" + +#. Label of the model (Data) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Model" +msgstr "" + +#. Label of the section_break_11 (Section Break) field in DocType 'POS Closing +#. Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "Modes of Payment" +msgstr "" + +#: erpnext/templates/pages/projects.html:49 +#: erpnext/templates/pages/projects.html:70 +msgid "Modified On" +msgstr "" + +#. Label of the module (Link) field in DocType 'Financial Report Template' +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +msgid "Module (for Export)" +msgstr "" + +#. Label of the monitor_for_last_x_days (Int) field in DocType 'Ledger Health +#. Monitor' +#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json +msgid "Monitor for Last 'X' days" +msgstr "" + +#. Label of the frequency (Select) field in DocType 'Quality Goal' +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +msgid "Monitoring Frequency" +msgstr "" + +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment +#. Schedule' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Schedule' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Term' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Term' +#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Terms +#. Template Detail' +#. Option for the 'Discount Validity Based On' (Select) field in DocType +#. 'Payment Terms Template Detail' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Month(s) after the end of the invoice month" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:215 +msgid "Monthly Completed Work Orders" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:69 +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/selling.json +msgid "Monthly Distribution" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.json +msgid "Monthly Distribution Percentage" +msgstr "" + +#. Label of the percentages (Table) field in DocType 'Monthly Distribution' +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +msgid "Monthly Distribution Percentages" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:244 +msgid "Monthly Quality Inspections" +msgstr "" + +#. Option for the 'Subscription Price Based On' (Select) field in DocType +#. 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Monthly Rate" +msgstr "" + +#. Label of the monthly_sales_target (Currency) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Monthly Sales Target" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:198 +msgid "Monthly Total Work Orders" +msgstr "" + +#. Option for the 'Book Deferred entries based on' (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Months" +msgstr "" + +#. Description of the 'Is Short/Long Year' (Check) field in DocType 'Fiscal +#. Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "More/Less than 12 months." +msgstr "" + +#. Description of the 'Hide Customer's Tax ID from sales transactions' (Check) +#. field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Most Customers have a unique Tax ID that is fetched into selling transactions. Enable this setting if you do not want Customer Tax IDs to appear in sales transactions." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:32 +msgid "Motion Picture & Video" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:216 +msgid "Move Item" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:239 +msgid "Move Stock" +msgstr "" + +#: erpnext/templates/includes/macros.html:169 +msgid "Move to Cart" +msgstr "" + +#: erpnext/assets/doctype/asset/asset_dashboard.py:7 +msgid "Movement" +msgstr "" + +#. Option for the 'Default Stock Valuation Method' (Select) field in DocType +#. 'Company' +#. Option for the 'Valuation Method' (Select) field in DocType 'Item' +#. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock +#. Settings' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Moving Average" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:82 +msgid "Moving up in tree ..." +msgstr "" + +#. Label of the multi_currency (Check) field in DocType 'Journal Entry' +#. Label of the multi_currency (Check) field in DocType 'Journal Entry +#. Template' +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Multi Currency" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:42 +msgid "Multi-level BOM Creator" +msgstr "" + +#. Option for the 'Bank Entry Type' (Select) field in DocType 'Bank Transaction +#. Rule' +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Multiple Accounts" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:283 +msgid "Multiple Accounts (Journal Template)" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:440 +msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 +msgid "Multiple POS Opening Entry" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:345 +msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" + +#. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty +#. Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Multiple Tier Program" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:259 +msgid "Multiple Variants" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:244 +msgid "Multiple company fields available: {0}. Please select manually." +msgstr "" + +#: erpnext/accounts/services/base_gl_composer.py:33 +msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +msgid "Multiple items cannot be marked as finished item" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:33 +msgid "Music" +msgstr "" + +#. Label of the must_be_whole_number (Check) field in DocType 'UOM' +#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/setup/doctype/uom/uom.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 +#: erpnext/utilities/transaction_base.py:630 +msgid "Must be Whole Number" +msgstr "" + +#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Bank +#. Statement Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Must be a publicly accessible Google Sheets URL and adding Bank Account column is necessary for importing via Google Sheets" +msgstr "" + +#. Label of the mute_email (Check) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Mute Email" +msgstr "" + +#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "N/A" +msgstr "" + +#. Label of the name_and_employee_id (Section Break) field in DocType 'Sales +#. Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Name and Employee ID" +msgstr "" + +#. Label of the name_of_beneficiary (Data) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Name of Beneficiary" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:121 +msgid "Name of new Account. Note: Please don't create accounts for Customers and Suppliers" +msgstr "" + +#. Description of the 'Distribution Name' (Data) field in DocType 'Monthly +#. Distribution' +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json +msgid "Name of the Monthly Distribution" +msgstr "" + +#. Label of the named_place (Data) field in DocType 'Purchase Invoice' +#. Label of the named_place (Data) field in DocType 'Sales Invoice' +#. Label of the named_place (Data) field in DocType 'Purchase Order' +#. Label of the named_place (Data) field in DocType 'Request for Quotation' +#. Label of the named_place (Data) field in DocType 'Supplier Quotation' +#. Label of the named_place (Data) field in DocType 'Quotation' +#. Label of the named_place (Data) field in DocType 'Sales Order' +#. Label of the named_place (Data) field in DocType 'Delivery Note' +#. Label of the named_place (Data) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Named Place" +msgstr "" + +#. Label of the naming_series_prefix (Data) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Naming Series Prefix" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:95 +msgid "Naming Series is mandatory" +msgstr "" + +#. Label of the naming_series_details (Small Text) field in DocType 'Buying +#. Settings' +#. Label of the naming_series_details (Small Text) field in DocType 'Selling +#. Settings' +#. Label of the naming_series_details (Small Text) field in DocType 'Stock +#. Settings' +#. Label of the naming_series_preview (Small Text) field in DocType 'Stock +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Naming Series options" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:196 +msgid "Naming Series updated" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Nanocoulomb" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Nanogram/Litre" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Nanohertz" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Nanometer" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Nanosecond" +msgstr "" + +#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Natural Gas" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:3 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:439 +msgid "Needs Analysis" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/negative_batch_report/negative_batch_report.json +msgid "Negative Batch Report" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +msgid "Negative Quantity is not allowed" +msgstr "" + +#. Label of the negative_stock_section (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Negative Stock" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 +#: erpnext/stock/serial_batch_bundle.py:1558 +msgid "Negative Stock Error" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +msgid "Negative Valuation Rate is not allowed" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:8 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:444 +msgid "Negotiation/Review" +msgstr "" + +#. Label of the net_amount (Currency) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the net_amount (Float) field in DocType 'Cashier Closing' +#. Label of the net_amount (Currency) field in DocType 'POS Invoice Item' +#. Label of the net_amount (Currency) field in DocType 'Purchase Invoice Item' +#. Label of the net_amount (Currency) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the net_amount (Currency) field in DocType 'Sales Invoice Item' +#. Label of the net_amount (Currency) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the net_amount (Currency) field in DocType 'Purchase Order Item' +#. Label of the net_amount (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the net_amount (Currency) field in DocType 'Quotation Item' +#. Label of the net_amount (Currency) field in DocType 'Sales Order Item' +#. Label of the net_amount (Currency) field in DocType 'Delivery Note Item' +#. Label of the net_amount (Currency) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Net Amount" +msgstr "" + +#. Label of the base_net_amount (Currency) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the base_net_amount (Currency) field in DocType 'POS Invoice Item' +#. Label of the base_net_amount (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the base_net_amount (Currency) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the base_net_amount (Currency) field in DocType 'Sales Invoice +#. Item' +#. Label of the base_net_amount (Currency) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the base_net_amount (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the base_net_amount (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the base_net_amount (Currency) field in DocType 'Quotation Item' +#. Label of the base_net_amount (Currency) field in DocType 'Sales Order Item' +#. Label of the base_net_amount (Currency) field in DocType 'Delivery Note +#. Item' +#. Label of the base_net_amount (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Net Amount (Company Currency)" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +msgid "Net Asset value as on" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:186 +msgid "Net Cash from Financing" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:179 +msgid "Net Cash from Investing" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:167 +msgid "Net Cash from Operations" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:172 +msgid "Net Change in Accounts Payable" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:171 +msgid "Net Change in Accounts Receivable" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:138 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:257 +msgid "Net Change in Cash" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:188 +msgid "Net Change in Equity" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:181 +msgid "Net Change in Fixed Asset" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:173 +msgid "Net Change in Inventory" +msgstr "" + +#. Label of the hour_rate (Currency) field in DocType 'Workstation' +#. Label of the hour_rate (Currency) field in DocType 'Workstation Type' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +msgid "Net Hour Rate" +msgstr "" + +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +msgid "Net Profit" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:174 +msgid "Net Profit Ratio" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +msgid "Net Profit/Loss" +msgstr "" + +#. Label of the net_purchase_amount (Currency) field in DocType 'Asset' +#. Label of the net_purchase_amount (Currency) field in DocType 'Asset +#. Depreciation Schedule' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:436 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:497 +msgid "Net Purchase Amount" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:453 +msgid "Net Purchase Amount is mandatory" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:563 +msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." +msgstr "" + +#: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:387 +msgid "Net Purchase Amount {0} cannot be depreciated over {1} cycles." +msgstr "" + +#. Label of the net_rate (Currency) field in DocType 'POS Invoice Item' +#. Label of the net_rate (Currency) field in DocType 'Purchase Invoice Item' +#. Label of the net_rate (Currency) field in DocType 'Sales Invoice Item' +#. Label of the net_rate (Currency) field in DocType 'Purchase Order Item' +#. Label of the net_rate (Currency) field in DocType 'Supplier Quotation Item' +#. Label of the net_rate (Currency) field in DocType 'Quotation Item' +#. Label of the net_rate (Currency) field in DocType 'Sales Order Item' +#. Label of the net_rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the net_rate (Currency) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Net Rate" +msgstr "" + +#. Label of the base_net_rate (Currency) field in DocType 'POS Invoice Item' +#. Label of the base_net_rate (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the base_net_rate (Currency) field in DocType 'Sales Invoice Item' +#. Label of the base_net_rate (Currency) field in DocType 'Purchase Order Item' +#. Label of the base_net_rate (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the base_net_rate (Currency) field in DocType 'Quotation Item' +#. Label of the base_net_rate (Currency) field in DocType 'Sales Order Item' +#. Label of the base_net_rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the base_net_rate (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Net Rate (Company Currency)" +msgstr "" + +#. Label of the net_total (Currency) field in DocType 'POS Closing Entry' +#. Label of the net_total (Currency) field in DocType 'POS Invoice' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType 'POS +#. Invoice' +#. Option for the 'Apply Discount On' (Select) field in DocType 'POS Profile' +#. Option for the 'Apply Discount On' (Select) field in DocType 'Pricing Rule' +#. Label of the net_total (Currency) field in DocType 'Purchase Invoice' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Invoice' +#. Label of the net_total (Currency) field in DocType 'Sales Invoice' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Sales Invoice' +#. Option for the 'Calculate Based On' (Select) field in DocType 'Shipping +#. Rule' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Subscription' +#. Option for the 'Deduct Tax On Basis' (Select) field in DocType 'Tax +#. Withholding Category' +#. Label of the net_total (Currency) field in DocType 'Purchase Order' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Order' +#. Label of the net_total (Currency) field in DocType 'Supplier Quotation' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Supplier Quotation' +#. Label of the net_total (Currency) field in DocType 'Quotation' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Quotation' +#. Label of the net_total (Currency) field in DocType 'Sales Order' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Sales Order' +#. Label of the net_total (Currency) field in DocType 'Delivery Note' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Delivery Note' +#. Label of the net_total (Currency) field in DocType 'Purchase Receipt' +#. Option for the 'Apply Additional Discount On' (Select) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:19 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +#: erpnext/accounts/report/purchase_register/purchase_register.py:255 +#: erpnext/accounts/report/sales_register/sales_register.py:285 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:100 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:528 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:532 +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:161 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/templates/includes/order/order_taxes.html:5 +msgid "Net Total" +msgstr "" + +#. Label of the base_net_total (Currency) field in DocType 'POS Invoice' +#. Label of the base_net_total (Currency) field in DocType 'Purchase Invoice' +#. Label of the base_net_total (Currency) field in DocType 'Sales Invoice' +#. Label of the base_net_total (Currency) field in DocType 'Purchase Order' +#. Label of the base_net_total (Currency) field in DocType 'Supplier Quotation' +#. Label of the base_net_total (Currency) field in DocType 'Quotation' +#. Label of the base_net_total (Currency) field in DocType 'Sales Order' +#. Label of the base_net_total (Currency) field in DocType 'Delivery Note' +#. Label of the base_net_total (Currency) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Net Total (Company Currency)" +msgstr "" + +#. Option for the 'Calculate Based On' (Select) field in DocType 'Shipping +#. Rule' +#. Label of the net_weight_pkg (Float) field in DocType 'Packing Slip' +#. Label of the net_weight (Float) field in DocType 'Packing Slip Item' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +msgid "Net Weight" +msgstr "" + +#. Label of the net_weight_uom (Link) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Net Weight UOM" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:75 +#: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:82 +msgid "Net total calculation precision loss" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:119 +msgid "New Account Name" +msgstr "" + +#. Label of the new_asset_value (Currency) field in DocType 'Asset Value +#. Adjustment' +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +msgid "New Asset Value" +msgstr "" + +#: erpnext/assets/dashboard_fixtures.py:169 +msgid "New Assets (This Year)" +msgstr "" + +#. Label of the new_bom (Link) field in DocType 'BOM Update Log' +#. Label of the new_bom (Link) field in DocType 'BOM Update Tool' +#: erpnext/manufacturing/doctype/bom/bom_tree.js:62 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "New BOM" +msgstr "" + +#. Label of the new_balance_in_account_currency (Currency) field in DocType +#. 'Exchange Rate Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "New Balance In Account Currency" +msgstr "" + +#. Label of the new_balance_in_base_currency (Currency) field in DocType +#. 'Exchange Rate Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "New Balance In Base Currency" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:169 +msgid "New Batch ID (Optional)" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:163 +msgid "New Batch Qty" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:108 +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:18 +#: erpnext/setup/doctype/company/company_tree.js:23 +msgid "New Company" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:26 +msgid "New Cost Center Name" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:30 +msgid "New Customer Revenue" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:15 +msgid "New Customers" +msgstr "" + +#: erpnext/setup/doctype/department/department_tree.js:18 +msgid "New Department" +msgstr "" + +#: erpnext/setup/doctype/employee/employee_tree.js:29 +msgid "New Employee" +msgstr "" + +#. Label of the new_exchange_rate (Float) field in DocType 'Exchange Rate +#. Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "New Exchange Rate" +msgstr "" + +#. Label of the expenses_booked (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Expenses" +msgstr "" + +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:1 +msgid "New Fiscal Year - {0}" +msgstr "" + +#. Label of the income (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Income" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +msgid "New Invoice" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:337 +msgid "New Journal Entry will be posted for the difference amount. The Posting Date can be modified." +msgstr "" + +#. Label of a number card in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "New Lead (Last 1 Month)" +msgstr "" + +#: erpnext/assets/doctype/location/location_tree.js:23 +msgid "New Location" +msgstr "" + +#: erpnext/public/js/templates/crm_notes.html:7 +msgid "New Note" +msgstr "" + +#. Label of a number card in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "New Opportunity (Last 1 Month)" +msgstr "" + +#. Label of the purchase_invoice (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Purchase Invoice" +msgstr "" + +#. Label of the purchase_order (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Purchase Orders" +msgstr "" + +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure_tree.js:24 +msgid "New Quality Procedure" +msgstr "" + +#. Label of the new_quotations (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Quotations" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:68 +msgid "New Rule" +msgstr "" + +#. Label of the sales_invoice (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Sales Invoice" +msgstr "" + +#. Label of the sales_order (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "New Sales Orders" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person_tree.js:3 +msgid "New Sales Person Name" +msgstr "" + +#: erpnext/stock/doctype/serial_no/serial_no.py:70 +msgid "New Serial No cannot have Warehouse. Warehouse must be set by Stock Entry or Purchase Receipt" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:8 +#: erpnext/public/js/utils/crm_activities.js:69 +msgid "New Task" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:247 +msgid "New Version" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse_tree.js:16 +msgid "New Warehouse Name" +msgstr "" + +#. Label of the new_workplace (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "New Workplace" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:405 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +msgstr "" + +#. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in +#. DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 +msgid "New release date should be in the future" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.js:92 +msgid "New revised budget created successfully" +msgstr "" + +#: erpnext/templates/pages/projects.html:37 +msgid "New task" +msgstr "" + +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +msgid "New {0} pricing rules are created" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:34 +msgid "Newspaper Publishers" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Newton" +msgstr "" + +#. Label of the next_billing_period_end (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Next Billing Period End" +msgstr "" + +#. Label of the next_billing_period_start (Date) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Next Billing Period Start" +msgstr "" + +#. Label of the next_depreciation_date (Date) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Next Depreciation Date" +msgstr "" + +#. Label of the next_due_date (Date) field in DocType 'Asset Maintenance Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Next Due Date" +msgstr "" + +#. Label of the next_send (Data) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Next email will be sent on:" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:155 +msgid "No Account Data row found" +msgstr "" + +#: erpnext/setup/doctype/company/test_company.py:95 +msgid "No Account matched these filters: {}" +msgstr "" + +#: erpnext/quality_management/doctype/quality_review/quality_review_list.js:5 +msgid "No Action" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "No Answer" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:913 +msgid "No Company Found" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:115 +msgid "No Customer found for Inter Company Transactions which represents company {0}" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 +msgid "No Customers found with selected options." +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 +msgid "No Delivery Note selected for Customer {}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." +msgstr "" + +#: erpnext/public/js/utils/ledger_preview.js:64 +msgid "No Impact on Accounting Ledger" +msgstr "" + +#: erpnext/stock/get_item_details.py:341 +msgid "No Item with Barcode {0}" +msgstr "" + +#: erpnext/stock/get_item_details.py:345 +msgid "No Item with Serial No {0}" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1462 +msgid "No Items selected for transfer." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1298 +msgid "No Items with Bill of Materials to Manufacture or all items already manufactured" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1451 +msgid "No Items with Bill of Materials." +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:917 +msgid "No Match" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:15 +msgid "No Matching Bank Transactions Found" +msgstr "" + +#: erpnext/public/js/templates/crm_notes.html:46 +msgid "No Notes" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:239 +msgid "No Outstanding Invoices found for this party" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:674 +msgid "No POS Profile found. Please create a New POS Profile first" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1124 +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1200 +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1221 +#: erpnext/stock/doctype/item/item.py:1479 +msgid "No Permission" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:102 +msgid "No Purchase Orders were created" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No Records for these settings." +msgstr "" + +#: erpnext/public/js/utils/unreconcile.js:147 +msgid "No Selection" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:982 +msgid "No Serial / Batches are available for return" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:154 +msgid "No Stock Available Currently" +msgstr "" + +#: erpnext/public/js/templates/call_link.html:30 +msgid "No Summary" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:99 +msgid "No Supplier found for Inter Company Transactions which represents company {0}" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:976 +msgid "No Tables Detected" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100 +msgid "No Tax Withholding data found for the current posting date." +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108 +msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}." +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:995 +msgid "No Terms" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:236 +msgid "No Unreconciled Invoices and Payments found for this party and account" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:241 +msgid "No Unreconciled Payments found for this party" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:100 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:250 +msgid "No Work Orders were created" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:357 +#: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:211 +msgid "No accounting entries for the following warehouses" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:412 +msgid "No accounts configured" +msgstr "" + +#: banking/src/components/common/AccountsDropdown.tsx:157 +msgid "No accounts found." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:637 +msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured" +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:135 +msgid "No active item prices found." +msgstr "" + +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.js:46 +msgid "No additional fields available" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1381 +msgid "No available quantity to reserve for item {0} in warehouse {1}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankPicker.tsx:63 +msgid "No bank accounts found" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:285 +msgid "No bank statements imported yet" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:288 +msgid "No bank transactions found" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:502 +msgid "No billing email found for customer: {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/CompanySelector.tsx:66 +msgid "No company found." +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:444 +msgid "No contacts with email IDs found." +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:137 +msgid "No data for this period" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:46 +msgid "No data found. Seems like you uploaded a blank file" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:943 +msgid "No default warehouse set for this company. Entry will use Stock Settings default." +msgstr "" + +#: erpnext/templates/generators/bom.html:85 +msgid "No description given" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:255 +msgid "No difference found for stock account {0}" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:150 +msgid "No email found for {0} {1}" +msgstr "" + +#: erpnext/telephony/doctype/call_log/call_log.py:119 +msgid "No employee was scheduled for call popup" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:235 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:225 +msgid "No entries found" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:214 +msgid "No entries with a payment document in this list." +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:73 +msgid "No file uploaded or URL provided." +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 +msgid "No invoice linked" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:1351 +msgid "No item available for transfer." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:174 +msgid "No items are available in sales orders {0} for production" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:171 +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:183 +msgid "No items are available in the sales order {0} for production" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:425 +msgid "No items found. Scan barcode again." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:76 +msgid "No items in cart" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1043 +msgid "No matches occurred via auto reconciliation" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:126 +msgid "No material request created" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:199 +msgid "No more children on Left" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:213 +msgid "No more children on Right" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:385 +msgid "No naming series defined" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:638 +msgid "No of Deliveries" +msgstr "" + +#. Label of the no_of_docs (Int) field in DocType 'Transaction Deletion Record +#. Details' +#: erpnext/accounts/doctype/transaction_deletion_record_details/transaction_deletion_record_details.json +msgid "No of Docs" +msgstr "" + +#. Label of the no_of_employees (Select) field in DocType 'Lead' +#. Label of the no_of_employees (Select) field in DocType 'Opportunity' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "No of Employees" +msgstr "" + +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:62 +msgid "No of Interactions" +msgstr "" + +#. Label of the total_reposting_count (Int) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "No of Items to Repost" +msgstr "" + +#. Label of the no_of_months_exp (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "No of Months (Expense)" +msgstr "" + +#. Label of the no_of_months (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "No of Months (Revenue)" +msgstr "" + +#. Label of the no_of_parallel_reposting (Int) field in DocType 'Stock +#. Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "No of Parallel Reposting (Per Item)" +msgstr "" + +#. Label of the no_of_shares (Int) field in DocType 'Share Balance' +#. Label of the no_of_shares (Int) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/report/share_balance/share_balance.py:59 +#: erpnext/accounts/report/share_ledger/share_ledger.py:55 +msgid "No of Shares" +msgstr "" + +#. Label of the no_of_shift (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "No of Shift" +msgstr "" + +#. Label of the no_of_units_produced (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "No of Units Produced" +msgstr "" + +#. Label of the no_of_visits (Int) field in DocType 'Maintenance Schedule Item' +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +msgid "No of Visits" +msgstr "" + +#. Label of the no_of_workstations (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "No of Workstations" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.py:320 +msgid "No open Material Requests found for the given criteria." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:247 +msgid "No open POS Opening Entry found for POS Profile {0}." +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:145 +msgid "No open event" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:57 +msgid "No open task" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:335 +msgid "No outstanding invoices found" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:333 +msgid "No outstanding invoices require exchange rate revaluation" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:289 +msgid "No page image is available for this page." +msgstr "" + +#: erpnext/public/js/controllers/buying.js:531 +msgid "No pending Material Requests found to link for the given items." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:509 +msgid "No primary email found for customer: {0}" +msgstr "" + +#: erpnext/templates/includes/product_list.js:41 +msgid "No products found." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:1029 +msgid "No recent transactions found" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:158 +msgid "No recipients found for campaign {0}" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:59 +msgid "No reconciliation actions found" +msgstr "" + +#: erpnext/accounts/report/purchase_register/purchase_register.py:47 +#: erpnext/accounts/report/sales_register/sales_register.py:46 +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:19 +msgid "No record found" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +msgid "No records found in Allocation table" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +msgid "No records found in the Invoices table" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +msgid "No records found in the Payments table" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:222 +msgid "No reserved stock to unreserve." +msgstr "" + +#: banking/src/components/common/LinkFieldCombobox.tsx:268 +msgid "No results found." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:225 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:208 +msgid "No rows to display." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:152 +msgid "No rows with zero document count found" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:201 +msgid "No rules setup yet" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:77 +msgid "No stock available for this batch." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." +msgstr "" + +#. Description of the 'Stock frozen up to' (Date) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "No stock transactions can be created or modified before this date." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:165 +msgid "No tables were extracted from this PDF." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:40 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:48 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:40 +msgid "No transaction selected" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:276 +msgid "No transactions found for the given filters." +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:276 +msgid "No unreconciled transactions found" +msgstr "" + +#: erpnext/templates/includes/macros.html:291 +#: erpnext/templates/includes/macros.html:324 +msgid "No values" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:816 +msgid "No vouchers found for this transaction" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1734 +msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:163 +msgid "No {0} found for Inter Company Transactions." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:377 +#: erpnext/stock/doctype/item/item_prices.html:80 +msgid "No." +msgstr "" + +#. Label of the no_of_employees (Select) field in DocType 'Prospect' +#: erpnext/crm/doctype/prospect/prospect.json +msgid "No. of Employees" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:66 +msgid "No. of parallel job cards which can be allowed on this workstation. Example: 2 would mean this workstation can process production for two Work Orders at a time." +msgstr "" + +#. Label of a number card in the Projects Workspace +#: erpnext/projects/workspace/projects/projects.json +msgid "Non Completed Tasks" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Non Conformance" +msgstr "" + +#. Label of the non_depreciable_category (Check) field in DocType 'Asset +#. Category' +#: erpnext/assets/doctype/asset_category/asset_category.json +msgid "Non Depreciable Category" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:184 +msgid "Non Profit" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/operations_cost.py:36 +msgid "Non stock items" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322 +msgid "Non-Current Liabilities" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.js:95 +msgid "Non-Zeros" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:117 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:113 +msgid "Non-phantom BOM cannot be created for non-stock item {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +msgid "None of the items have any change in quantity or value." +msgstr "" + +#. Label of the section_normal_balances (Tab Break) field in DocType 'Process +#. Period Closing Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "Normal Balances" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 +#: erpnext/stock/utils.py:693 +msgid "Nos" +msgstr "" + +#. Label of the not_applicable (Check) field in DocType 'Item Tax Template +#. Detail' +#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule' +#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +msgid "Not Applicable" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:824 +#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +msgid "Not Available" +msgstr "" + +#. Option for the 'Billing Status' (Select) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Not Billed" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:190 +msgid "Not Cleared" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Delivery Status' (Select) field in DocType 'Pick List' +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Not Delivered" +msgstr "" + +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Not Initiated" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:125 +msgid "Not Reconciled" +msgstr "" + +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales +#. Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Not Requested" +msgstr "" + +#: erpnext/selling/report/lost_quotations/lost_quotations.py:84 +#: erpnext/support/report/issue_analytics/issue_analytics.py:210 +#: erpnext/support/report/issue_summary/issue_summary.py:207 +#: erpnext/support/report/issue_summary/issue_summary.py:287 +msgid "Not Specified" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Bank Statement Import +#. Log' +#. Option for the 'Status' (Select) field in DocType 'Production Plan' +#. Option for the 'Status' (Select) field in DocType 'Work Order' +#. Option for the 'Transfer Status' (Select) field in DocType 'Material +#. Request' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan/production_plan_list.js:7 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order/work_order_list.js:15 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:9 +msgid "Not Started" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.py:431 +msgid "Not able to find the earliest Fiscal Year for the given company." +msgstr "" + +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Not allow to set alternative item for the item {0}" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 +msgid "Not allowed to create accounting dimension for {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:268 +msgid "Not allowed to update stock transactions older than {0}" +msgstr "" + +#: erpnext/setup/doctype/authorization_control/authorization_control.py:60 +msgid "Not authorized since {0} exceeds limits" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:437 +msgid "Not authorized to edit frozen Account {0}" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:326 +msgid "Not configured" +msgstr "" + +#: erpnext/templates/form_grid/stock_entry_grid.html:26 +msgid "Not in Stock" +msgstr "" + +#: erpnext/templates/includes/products_as_grid.html:20 +msgid "Not in stock" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1302 +msgid "Not permitted to make Purchase Orders" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +msgid "Not permitted to read Job Card" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log_list.js:21 +msgid "Note: Automatic log deletion only applies to logs of type Update Cost" +msgstr "" + +#: erpnext/accounts/party.py:714 +msgid "Note: Due Date exceeds allowed {0} credit days by {1} day(s)" +msgstr "" + +#. Description of the 'Recipients' (Table MultiSelect) field in DocType 'Email +#. Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Note: Email will not be sent to disabled users" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:769 +msgid "Note: If you want to use the finished good {0} as a raw material, then enable the 'Do Not Explode' checkbox in the Items table against the same raw material." +msgstr "" + +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:94 +msgid "Note: Item {0} added multiple times" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:623 +msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.js:30 +msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:684 +msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}" +msgstr "" + +#. Label of the notes (Small Text) field in DocType 'Asset Depreciation +#. Schedule' +#. Label of the notes (Text) field in DocType 'Contract Fulfilment Checklist' +#. Label of the notes_tab (Tab Break) field in DocType 'Lead' +#. Label of the notes (Table) field in DocType 'Lead' +#. Label of the notes (Table) field in DocType 'Opportunity' +#. Label of the notes (Table) field in DocType 'Prospect' +#. Label of the section_break0 (Section Break) field in DocType 'Project' +#. Label of the notes (Text Editor) field in DocType 'Project' +#. Label of the sb_01 (Section Break) field in DocType 'Quality Review' +#. Label of the notes (Small Text) field in DocType 'Manufacturer' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:12 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:44 +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:14 +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/www/book_appointment/index.html:55 +msgid "Notes" +msgstr "" + +#. Label of the notes_html (HTML) field in DocType 'Lead' +#. Label of the notes_html (HTML) field in DocType 'Opportunity' +#. Label of the notes_html (HTML) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Notes HTML" +msgstr "" + +#: erpnext/templates/pages/rfq.html:67 +msgid "Notes: " +msgstr "" + +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:60 +#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:61 +msgid "Nothing is included in gross" +msgstr "" + +#: erpnext/templates/includes/product_list.js:45 +msgid "Nothing more to show." +msgstr "" + +#. Label of the notice_number_of_days (Int) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Notice (days)" +msgstr "" + +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:47 +msgid "Notify Customers via Email" +msgstr "" + +#. Label of the notify_employee (Check) field in DocType 'Supplier Scorecard' +#. Label of the notify_employee (Check) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +msgid "Notify Employee" +msgstr "" + +#. Label of the notify_employee (Check) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Notify Other" +msgstr "" + +#. Label of the notify_reposting_error_to_role (Link) field in DocType 'Stock +#. Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Notify Reposting Error to Role" +msgstr "" + +#. Label of the notify_supplier (Check) field in DocType 'Supplier Scorecard' +#. Label of the notify_supplier (Check) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the notify_supplier (Check) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Notify Supplier" +msgstr "" + +#. Label of the email_reminders (Check) field in DocType 'Appointment Booking +#. Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Notify Via Email" +msgstr "" + +#. Label of the reorder_email_notify (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Notify by email on creation of automatic Material Request" +msgstr "" + +#. Description of the 'Notify Via Email' (Check) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Notify customer and agent via email on the day of the appointment." +msgstr "" + +#. Label of the number_of_agents (Int) field in DocType 'Appointment Booking +#. Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Number of Concurrent Appointments" +msgstr "" + +#. Label of the number_of_days (Int) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Number of Days" +msgstr "" + +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js:14 +msgid "Number of Interaction" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:101 +msgid "Number of Order" +msgstr "" + +#. Label of the number_of_transactions (Int) field in DocType 'Bank Statement +#. Import Log' +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:173 +#: banking/src/pages/BankStatementImporter.tsx:254 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Number of Transactions" +msgstr "" + +#. Label of the demand_number (Int) field in DocType 'Sales Forecast' +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +msgid "Number of Weeks / Months" +msgstr "" + +#. Description of the 'Grace Period' (Int) field in DocType 'Subscription +#. Settings' +#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json +msgid "Number of days after invoice date has elapsed before canceling subscription or marking subscription as unpaid" +msgstr "" + +#. Label of the advance_booking_days (Int) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Number of days appointments can be booked in advance" +msgstr "" + +#. Description of the 'Days Until Due' (Int) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Number of days that the subscriber has to pay invoices generated by this subscription" +msgstr "" + +#. Description of the 'Match transfers within 'N' days' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Number of days to consider for matching transfers across bank accounts" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:58 +#: banking/src/components/features/Settings/Preferences.tsx:148 +msgid "Number of days to match transfers" +msgstr "" + +#. Description of the 'Billing Interval Count' (Int) field in DocType +#. 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Number of intervals for the interval field e.g if Interval is 'Days' and Billing Interval Count is 3, invoices will be generated every 3 days" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:129 +msgid "Number of new Account, it will be included in the account name as a prefix" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:39 +msgid "Number of new Cost Center, it will be included in the cost center name as a prefix" +msgstr "" + +#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Numbers this customer uses to identify your company in their own system." +msgstr "" + +#. Label of the numeric (Check) field in DocType 'Item Quality Inspection +#. Parameter' +#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Numeric" +msgstr "" + +#. Label of the section_break_14 (Section Break) field in DocType 'Quality +#. Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Numeric Inspection" +msgstr "" + +#. Label of the numeric_values (Check) field in DocType 'Item Attribute' +#. Label of the numeric_values (Check) field in DocType 'Item Variant +#. Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Numeric Values" +msgstr "" + +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 +msgid "Numero has not set in the XML file" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "O+" +msgstr "" + +#. Option for the 'Blood Group' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "O-" +msgstr "" + +#. Label of the objective (Text) field in DocType 'Quality Goal Objective' +#. Label of the objective (Text) field in DocType 'Quality Review Objective' +#: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json +#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json +msgid "Objective" +msgstr "" + +#. Label of the sb_01 (Section Break) field in DocType 'Quality Goal' +#. Label of the objectives (Table) field in DocType 'Quality Goal' +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +msgid "Objectives" +msgstr "" + +#. Label of the last_odometer (Int) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Odometer Value (Last)" +msgstr "" + +#. Label of the scheduled_confirmation_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Offer Date" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97 +msgid "Office Equipment" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201 +msgid "Office Maintenance Expenses" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205 +msgid "Office Rent" +msgstr "" + +#. Label of the offsetting_account (Link) field in DocType 'Accounting +#. Dimension Detail' +#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json +msgid "Offsetting Account" +msgstr "" + +#: erpnext/accounts/general_ledger.py:99 +msgid "Offsetting for Accounting Dimension" +msgstr "" + +#. Label of the old_parent (Data) field in DocType 'Account' +#. Label of the old_parent (Data) field in DocType 'Location' +#. Label of the old_parent (Data) field in DocType 'Task' +#. Label of the old_parent (Data) field in DocType 'Department' +#. Label of the old_parent (Data) field in DocType 'Employee' +#. Label of the old_parent (Link) field in DocType 'Supplier Group' +#. Label of the old_parent (Link) field in DocType 'Warehouse' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/assets/doctype/location/location.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Old Parent" +msgstr "" + +#. Option for the 'Reconciliation Takes Effect On' (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Oldest Of Invoice Or Advance" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1037 +msgid "On Hand" +msgstr "" + +#. Label of the on_hold_since (Datetime) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "On Hold Since" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "On Item Quantity" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "On Net Total" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +msgid "On Paid Amount" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "On Previous Row Amount" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges' +#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "On Previous Row Total" +msgstr "" + +#: erpnext/stock/report/available_batch_report/available_batch_report.js:16 +msgid "On This Date" +msgstr "" + +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:84 +msgid "On Track" +msgstr "" + +#. Description of the 'Enable Immutable Ledger' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "On enabling this cancellation entries will be posted on the actual cancellation date and reports will consider cancelled entries as well" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:727 +msgid "On expanding a row in the Items to Manufacture table, you'll see an option to 'Include Exploded Items'. Ticking this includes raw materials of the sub-assembly items in the production process." +msgstr "" + +#. Description of the 'Excluded Fee' (Currency) field in DocType 'Bank +#. Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "On save, the Excluded Fee will be converted to an Included Fee." +msgstr "" + +#. Description of the 'Use Serial / Batch fields' (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "On submission of the stock transaction, system will auto create the Serial and Batch Bundle based on the Serial No / Batch fields." +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "On-machine press checks" +msgstr "" + +#. Title of the Module Onboarding 'Stock Onboarding' +#: erpnext/selling/module_onboarding/stock_onboarding/stock_onboarding.json +msgid "Onboarding for Stock!" +msgstr "" + +#. Description of the 'Release Date' (Date) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Once set, this invoice will be on hold till the set date" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:763 +msgid "Once the Work Order is Closed. It can't be resumed." +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 +msgid "One customer can be part of only single Loyalty Program." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Ongoing" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:228 +msgid "Ongoing Job Cards" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:35 +msgid "Online Auctions" +msgstr "" + +#. Description of the 'Default Advance Account' (Link) field in DocType +#. 'Payment Reconciliation' +#. Description of the 'Default Advance Account' (Link) field in DocType +#. 'Process Payment Reconciliation' +#. Description of the 'Default Advance Received Account' (Link) field in +#. DocType 'Company' +#. Description of the 'Default Advance Paid Account' (Link) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/setup/doctype/company/company.json +msgid "Only 'Payment Entries' made against this advance account are supported." +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:108 +msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +msgid "Only CSV files are allowed" +msgstr "" + +#. Label of the tax_on_excess_amount (Check) field in DocType 'Tax Withholding +#. Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Only Deduct Tax On Excess Amount " +msgstr "" + +#. Label of the only_include_allocated_payments (Check) field in DocType +#. 'Purchase Invoice' +#. Label of the only_include_allocated_payments (Check) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Only Include Allocated Payments" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:137 +msgid "Only Parent can be of type {0}" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.py:57 +msgid "Only Value available for Payment Entry" +msgstr "" + +#. Description of the 'Posting Date inheritance for exchange gain / loss' +#. (Select) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Only applies for Normal Payments" +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:43 +msgid "Only existing assets" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:134 +msgid "Only if the PDF is password protected" +msgstr "" + +#. Description of the 'Is Group' (Check) field in DocType 'Customer Group' +#. Description of the 'Is Group' (Check) field in DocType 'Item Group' +#. Description of the 'Is Group' (Check) field in DocType 'Supplier Group' +#. Description of the 'Is Group' (Check) field in DocType 'Territory' +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/setup/doctype/territory/territory.json +msgid "Only leaf nodes are allowed in transaction" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:352 +msgid "Only one of Deposit or Withdrawal should be non-zero when applying an Excluded Fee." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:362 +msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled." +msgstr "" + +#. Description of the 'Is Active' (Check) field in DocType 'Product Bundle' +#: erpnext/selling/doctype/product_bundle/product_bundle.json +msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +msgid "Only one {0} entry can be created against the Work Order {1}" +msgstr "" + +#. Description of the 'Customer Groups' (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Only show Customer of these Customer Groups" +msgstr "" + +#. Description of the 'Item Groups' (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Only show Items from these Item Groups" +msgstr "" + +#. Description of the 'Customer' (Link) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Only to be used for Subcontracting Inward." +msgstr "" + +#. Description of the 'Rounding Loss Allowance' (Float) field in DocType +#. 'Exchange Rate Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Only values between [0,1) are allowed. Like {0.00, 0.04, 0.09, ...}\n" +"Ex: If allowance is set at 0.07, accounts that have balance of 0.07 in either of the currencies will be considered as zero balance account" +msgstr "" + +#. Description of the 'Recalculate Valuation Rate' (Check) field in DocType +#. 'Repost Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Only works for Purchase Receipt, Purchase Invoice and Stock Entry" +msgstr "" + +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.py:43 +msgid "Only {0} are supported" +msgstr "" + +#. Label of the open_activities_html (HTML) field in DocType 'Lead' +#. Label of the open_activities_html (HTML) field in DocType 'Opportunity' +#. Label of the open_activities_html (HTML) field in DocType 'Prospect' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Open Activities HTML" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom_item_preview.html:24 +msgid "Open BOM {0}" +msgstr "" + +#: erpnext/public/js/templates/call_link.html:11 +msgid "Open Call Log" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:116 +msgid "Open Contact" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:117 +#: erpnext/public/js/templates/crm_activities.html:164 +msgid "Open Event" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:104 +msgid "Open Events" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +msgid "Open Form View" +msgstr "" + +#. Label of the issue (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Open Issues" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:46 +msgid "Open Issues " +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom_item_preview.html:28 +#: erpnext/manufacturing/doctype/work_order/work_order_preview.html:28 +msgid "Open Item {0}" +msgstr "" + +#. Label of the notifications (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/setup/doctype/email_digest/templates/default.html:154 +msgid "Open Notifications" +msgstr "" + +#. Label of the open_orders_section (Section Break) field in DocType 'Master +#. Production Schedule' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +msgid "Open Orders" +msgstr "" + +#. Label of a number card in the Projects Workspace +#. Label of the project (Check) field in DocType 'Email Digest' +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Open Projects" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:70 +msgid "Open Projects " +msgstr "" + +#. Label of the pending_quotations (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Open Quotations" +msgstr "" + +#: erpnext/stock/report/item_variant_details/item_variant_details.py:110 +msgid "Open Sales Orders" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:33 +#: erpnext/public/js/templates/crm_activities.html:92 +msgid "Open Task" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:21 +msgid "Open Tasks" +msgstr "" + +#. Label of the todo_list (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Open To Do" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:130 +msgid "Open To Do " +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order_preview.html:24 +msgid "Open Work Order {0}" +msgstr "" + +#. Name of a report +#. Label of a number card in the Manufacturing Workspace +#: erpnext/manufacturing/report/open_work_orders/open_work_orders.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +msgid "Open Work Orders" +msgstr "" + +#: erpnext/templates/pages/help.html:60 +msgid "Open a new ticket" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:63 +msgid "Open the settings dialog" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:336 +msgid "Open {0} in a new tab" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:404 +#: erpnext/public/js/stock_analytics.js:97 +msgid "Opening" +msgstr "" + +#. Group in POS Profile's connections +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Opening & Closing" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:427 +#: erpnext/accounts/report/trial_balance/trial_balance.py:526 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:198 +msgid "Opening (Cr)" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:420 +#: erpnext/accounts/report/trial_balance/trial_balance.py:519 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:191 +msgid "Opening (Dr)" +msgstr "" + +#. Label of the opening_accumulated_depreciation (Currency) field in DocType +#. 'Asset' +#. Label of the opening_accumulated_depreciation (Currency) field in DocType +#. 'Asset Depreciation Schedule' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:161 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:443 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:511 +msgid "Opening Accumulated Depreciation" +msgstr "" + +#. Label of the opening_amount (Currency) field in DocType 'POS Closing Entry +#. Detail' +#. Label of the opening_amount (Currency) field in DocType 'POS Opening Entry +#. Detail' +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +#: erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.json +#: erpnext/selling/page/point_of_sale/pos_controller.js:41 +msgid "Opening Amount" +msgstr "" + +#. Option for the 'Balance Type' (Select) field in DocType 'Financial Report +#. Row' +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:55 +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:187 +msgid "Opening Balance" +msgstr "" + +#. Description of the 'Balance Type' (Select) field in DocType 'Financial +#. Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Opening Balance = Start of period, Closing Balance = End of period, Period Movement = Net change during period" +msgstr "" + +#. Label of the balance_details (Table) field in DocType 'POS Opening Entry' +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +msgid "Opening Balance Details" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348 +msgid "Opening Balance Equity" +msgstr "" + +#. Label of the z_opening_balances (Table) field in DocType 'Process Period +#. Closing Voucher' +#. Label of the section_opening_balances (Tab Break) field in DocType 'Process +#. Period Closing Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "Opening Balances" +msgstr "" + +#. Label of the opening_date (Date) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Opening Date" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Opening Entry" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +msgid "Opening Invoice Creation In Progress" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Link in the Home Workspace +#: erpnext/accounts/doctype/account/account_tree.js:201 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/setup/workspace/home/home.json +msgid "Opening Invoice Creation Tool" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +msgid "Opening Invoice Creation Tool Item" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:106 +msgid "Opening Invoice Item" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Opening Invoice Tool" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 +msgid "Opening Invoice has rounding adjustment of {0}.

            '{1}' account is required to post these values. Please set it in Company: {2}.

            Or, '{3}' can be enabled to not post any rounding adjustment." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html:8 +msgid "Opening Invoices" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +msgid "Opening Invoices Summary" +msgstr "" + +#. Label of the opening_number_of_booked_depreciations (Int) field in DocType +#. 'Asset' +#. Label of the opening_number_of_booked_depreciations (Int) field in DocType +#. 'Asset Depreciation Schedule' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "Opening Number of Booked Depreciations" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:35 +msgid "Opening Purchase Invoices have been created." +msgstr "" + +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:81 +#: erpnext/stock/report/stock_balance/stock_balance.py:533 +msgid "Opening Qty" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:33 +msgid "Opening Sales Invoices have been created." +msgstr "" + +#. Label of the opening_stock (Float) field in DocType 'Item' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' +#: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item.py:351 +#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Opening Stock" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1588 +msgid "Opening Stock can only be set for stock items." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1595 +msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1591 +msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:356 +msgid "Opening Stock reconciliation created with zero valuation rate: {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:364 +#: erpnext/stock/doctype/item/item.py:1637 +msgid "Opening Stock reconciliation created: {0}" +msgstr "" + +#. Label of the opening_time (Time) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Opening Time" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:540 +msgid "Opening Value" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Opening and Closing" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:199 +msgid "Opening stock creation has been queued and will be created in the background. Please check the Stock Reconciliation after some time." +msgstr "" + +#. Label of the operating_component (Link) field in DocType 'Workstation Cost' +#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes +#. and Charges' +#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Operating Component" +msgstr "" + +#. Label of the workstation_costs (Table) field in DocType 'Workstation' +#. Label of the workstation_costs (Table) field in DocType 'Workstation Type' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +msgid "Operating Components Cost" +msgstr "" + +#. Label of the operating_cost (Currency) field in DocType 'BOM' +#. Label of the operating_cost (Currency) field in DocType 'BOM Operation' +#. Label of the operating_cost (Currency) field in DocType 'Workstation Cost' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +msgid "Operating Cost" +msgstr "" + +#. Label of the base_operating_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Operating Cost (Company Currency)" +msgstr "" + +#. Label of the operating_cost_per_bom_quantity (Currency) field in DocType +#. 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Operating Cost Per BOM Quantity" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/operations_cost.py:176 +msgid "Operating Cost as per Work Order / BOM" +msgstr "" + +#. Label of the base_operating_cost (Currency) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Operating Cost(Company Currency)" +msgstr "" + +#. Label of the over_heads (Tab Break) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Operating Costs" +msgstr "" + +#. Label of the section_break_auzm (Section Break) field in DocType +#. 'Workstation' +#. Label of the section_break_auzm (Section Break) field in DocType +#. 'Workstation Type' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +msgid "Operating Costs (Per Hour)" +msgstr "" + +#. Label of the production_section (Section Break) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Operation & Materials" +msgstr "" + +#. Label of the section_break_22 (Section Break) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Operation Cost" +msgstr "" + +#. Label of the section_break_4 (Section Break) field in DocType 'Operation' +#. Label of the description (Text Editor) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Operation Description" +msgstr "" + +#. Label of the operation_row_id (Int) field in DocType 'BOM Item' +#. Label of the operation_id (Data) field in DocType 'Job Card' +#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and +#. Charges' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:344 +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +msgid "Operation ID" +msgstr "" + +#. Label of the operation_row_id (Int) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Operation Row ID" +msgstr "" + +#. Label of the operation_row_id (Int) field in DocType 'Work Order Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Operation Row Id" +msgstr "" + +#. Label of the operation_row_number (Select) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Operation Row Number" +msgstr "" + +#. Label of the time_in_mins (Float) field in DocType 'BOM Operation' +#. Label of the time_in_mins (Float) field in DocType 'BOM Website Operation' +#. Label of the time_in_mins (Float) field in DocType 'Sub Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json +#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json +msgid "Operation Time" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +msgid "Operation Time must be greater than 0 for Operation {0}" +msgstr "" + +#. Description of the 'Completed Qty' (Float) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Operation completed for how many finished goods?" +msgstr "" + +#. Description of the 'Fixed Time' (Check) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Operation time does not depend on quantity to produce" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:517 +msgid "Operation {0} added multiple times in the work order {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1352 +msgid "Operation {0} does not belong to the work order {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:453 +msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" + +#. Label of the operations (Table) field in DocType 'BOM' +#. Label of the operations_section_section (Section Break) field in DocType +#. 'BOM' +#. Label of the operations_section (Section Break) field in DocType 'Work +#. Order' +#. Label of the operations (Table) field in DocType 'Work Order' +#. Label of the operation (Section Break) field in DocType 'Email Digest' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:325 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/setup/doctype/company/company.py:476 +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/templates/generators/bom.html:61 +msgid "Operations" +msgstr "" + +#. Label of the section_break_xvld (Section Break) field in DocType 'BOM +#. Creator' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Operations Routing" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:920 +msgid "Operations cannot be left blank" +msgstr "" + +#. Label of the operator (Link) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:85 +msgid "Operator" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:22 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:27 +msgid "Opp Count" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:26 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:31 +msgid "Opp/Lead %" +msgstr "" + +#. Label of the opportunities_tab (Tab Break) field in DocType 'Prospect' +#. Label of the opportunities (Table) field in DocType 'Prospect' +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/selling/page/sales_funnel/sales_funnel.py:71 +msgid "Opportunities" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:52 +msgid "Opportunities by Campaign" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:53 +msgid "Opportunities by Medium" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:51 +msgid "Opportunities by Source" +msgstr "" + +#. Label of the opportunity (Link) field in DocType 'Request for Quotation' +#. Label of the opportunity (Link) field in DocType 'Supplier Quotation' +#. Label of the opportunity_section (Section Break) field in DocType 'CRM +#. Settings' +#. Option for the 'Status' (Select) field in DocType 'Lead' +#. Name of a DocType +#. Label of the opportunity (Link) field in DocType 'Prospect Opportunity' +#. Label of the opportunity_name (Link) field in DocType 'Customer' +#. Label of the opportunity (Link) field in DocType 'Quotation' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:385 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/crm_settings/crm_settings.json +#: erpnext/crm/doctype/lead/lead.js:33 erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.js:20 +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +#: erpnext/crm/report/lead_details/lead_details.js:36 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:22 +#: erpnext/public/js/communication.js:35 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.js:154 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/workspace_sidebar/crm.json +msgid "Opportunity" +msgstr "" + +#. Label of the opportunity_amount (Currency) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:29 +msgid "Opportunity Amount" +msgstr "" + +#. Label of the base_opportunity_amount (Currency) field in DocType +#. 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Opportunity Amount (Company Currency)" +msgstr "" + +#. Label of the transaction_date (Date) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Opportunity Date" +msgstr "" + +#. Label of the opportunity_from (Link) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:42 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:29 +msgid "Opportunity From" +msgstr "" + +#. Name of a DocType +#. Label of the enq_det (Text) field in DocType 'Quotation' +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Opportunity Item" +msgstr "" + +#. Label of the lost_reason (Link) field in DocType 'Lost Reason Detail' +#. Name of a DocType +#. Label of the lost_reason (Link) field in DocType 'Opportunity Lost Reason +#. Detail' +#: erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.json +#: erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.json +#: erpnext/crm/doctype/opportunity_lost_reason_detail/opportunity_lost_reason_detail.json +msgid "Opportunity Lost Reason" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/opportunity_lost_reason_detail/opportunity_lost_reason_detail.json +msgid "Opportunity Lost Reason Detail" +msgstr "" + +#. Label of the opportunity_owner (Link) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.py:32 +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:65 +msgid "Opportunity Owner" +msgstr "" + +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:46 +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:58 +msgid "Opportunity Source" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Opportunity Summary by Sales Stage" +msgstr "" + +#. Name of a report +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.json +msgid "Opportunity Summary by Sales Stage " +msgstr "" + +#. Label of the opportunity_type (Link) field in DocType 'Opportunity' +#. Name of a DocType +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/opportunity_type/opportunity_type.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:49 +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:52 +#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.py:48 +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:64 +msgid "Opportunity Type" +msgstr "" + +#. Label of the section_break_14 (Section Break) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Opportunity Value" +msgstr "" + +#: erpnext/public/js/communication.js:102 +msgid "Opportunity {0} created" +msgstr "" + +#. Label of the optimize_route (Button) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Optimize Route" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1029 +msgid "Optional. Select a specific manufacture entry to reverse." +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:178 +msgid "Optional. Sets company's default currency, if not specified." +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:157 +msgid "Optional. This setting will be used to filter in various transactions." +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:165 +msgid "Optional. Used with Financial Report Template" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:83 +msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." +msgstr "" + +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 +msgid "Order Amount" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:80 +msgid "Order By" +msgstr "" + +#. Label of the order_confirmation_date (Date) field in DocType 'Purchase +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Order Confirmation Date" +msgstr "" + +#. Label of the order_confirmation_no (Data) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Order Confirmation No" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:24 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:29 +msgid "Order Count" +msgstr "" + +#. Label of the order_date (Date) field in DocType 'Blanket Order' +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:68 +msgid "Order Date" +msgstr "" + +#. Label of the order_information_section (Section Break) field in DocType +#. 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Order Information" +msgstr "" + +#. Label of the order_no (Data) field in DocType 'Blanket Order' +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +msgid "Order No" +msgstr "" + +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:134 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:175 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:386 +msgid "Order Qty" +msgstr "" + +#. Label of the tracking_section (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the order_status_section (Section Break) field in DocType +#. 'Subcontracting Inward Order' +#. Label of the order_status_section (Section Break) field in DocType +#. 'Subcontracting Order' +#. Label of the order_status_section (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Order Status" +msgstr "" + +#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:4 +msgid "Order Summary" +msgstr "" + +#. Label of the blanket_order_type (Select) field in DocType 'Blanket Order' +#. Label of the order_type (Select) field in DocType 'Quotation' +#. Label of the order_type (Select) field in DocType 'Sales Order' +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Order Type" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:25 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:30 +msgid "Order Value" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:28 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:33 +msgid "Order/Quot %" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Quotation' +#. Option for the 'Status' (Select) field in DocType 'Material Request' +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:5 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/quotation/quotation_list.js:34 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:40 +msgid "Ordered" +msgstr "" + +#. Label of the ordered_qty (Float) field in DocType 'Material Request Plan +#. Item' +#. Label of the ordered_qty (Float) field in DocType 'Production Plan Item' +#. Label of the ordered_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the ordered_qty (Float) field in DocType 'Quotation Item' +#. Label of the ordered_qty (Float) field in DocType 'Sales Order Item' +#. Label of the ordered_qty (Float) field in DocType 'Bin' +#. Label of the ordered_qty (Float) field in DocType 'Packed Item' +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:171 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:240 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:49 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:164 +msgid "Ordered Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:205 +msgid "Ordered Qty: Quantity ordered for purchase, but not received." +msgstr "" + +#. Label of the ordered_qty (Float) field in DocType 'Blanket Order Item' +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:102 +msgid "Ordered Quantity" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11 +#: erpnext/selling/doctype/customer/customer_dashboard.py:20 +#: erpnext/selling/doctype/sales_order/sales_order.py:700 +#: erpnext/setup/doctype/company/company_dashboard.py:23 +msgid "Orders" +msgstr "" + +#. Label of the organization_section (Section Break) field in DocType 'Lead' +#. Label of the organization_details_section (Section Break) field in DocType +#. 'Opportunity' +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:30 +#: erpnext/desktop_icon/organization.json +#: erpnext/workspace_sidebar/organization.json +msgid "Organization" +msgstr "" + +#. Label of the company_name (Data) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Organization Name" +msgstr "" + +#. Label of the original_item (Link) field in DocType 'BOM Item' +#. Label of the original_item (Link) field in DocType 'Stock Entry Detail' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Original Item" +msgstr "" + +#. Label of the margin_details (Section Break) field in DocType 'Bank +#. Guarantee' +#. Label of the other_details (Section Break) field in DocType 'Production +#. Plan' +#. Label of the other_details (HTML) field in DocType 'Purchase Receipt' +#. Label of the other_details (HTML) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Other Details" +msgstr "" + +#. Label of the other_info_tab (Tab Break) field in DocType 'Stock Entry' +#. Label of the tab_other_info (Tab Break) field in DocType 'Subcontracting +#. Inward Order' +#. Label of the tab_other_info (Tab Break) field in DocType 'Subcontracting +#. Order' +#. Label of the tab_other_info (Tab Break) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Other Info" +msgstr "" + +#. Label of a Card Break in the Financial Reports Workspace +#. Label of a Card Break in the Buying Workspace +#. Label of a Card Break in the Selling Workspace +#. Label of a Card Break in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Other Reports" +msgstr "" + +#. Label of the other_settings_section (Section Break) field in DocType +#. 'Manufacturing Settings' +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Other Settings" +msgstr "" + +#. Label of the tab_break_dpet (Tab Break) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Others" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce/Cubic Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce/Cubic Inch" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce/Gallon (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ounce/Gallon (US)" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:119 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83 +#: erpnext/stock/report/stock_balance/stock_balance.py:555 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:324 +msgid "Out Qty" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.py:561 +msgid "Out Value" +msgstr "" + +#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No' +#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty +#. Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Out of AMC" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:20 +msgid "Out of Order" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:633 +msgid "Out of Stock" +msgstr "" + +#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No' +#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty +#. Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Out of Warranty" +msgstr "" + +#: erpnext/templates/includes/macros.html:173 +msgid "Out of stock" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 +#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +msgid "Outdated POS Opening Entry" +msgstr "" + +#. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Outgoing Bills" +msgstr "" + +#. Label of a number card in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Outgoing Payment" +msgstr "" + +#. Label of the outgoing_rate (Float) field in DocType 'Serial and Batch Entry' +#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/stock_ledger/stock_ledger.py:378 +msgid "Outgoing Rate" +msgstr "" + +#. Label of the outstanding (Currency) field in DocType 'Overdue Payment' +#. Label of the outstanding_amount (Currency) field in DocType 'Payment Entry +#. Reference' +#. Label of the outstanding (Currency) field in DocType 'Payment Schedule' +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:686 +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +msgid "Outstanding" +msgstr "" + +#. Label of the base_outstanding (Currency) field in DocType 'Payment Schedule' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +msgid "Outstanding (Company Currency)" +msgstr "" + +#. Label of the outstanding_amount (Float) field in DocType 'Cashier Closing' +#. Label of the outstanding_amount (Currency) field in DocType 'Discounted +#. Invoice' +#. Label of the outstanding_amount (Currency) field in DocType 'Opening Invoice +#. Creation Tool Item' +#. Label of the outstanding_amount (Currency) field in DocType 'Payment +#. Reconciliation Invoice' +#. Label of the outstanding_amount (Currency) field in DocType 'Payment +#. Request' +#. Label of the outstanding_amount (Currency) field in DocType 'POS Invoice' +#. Label of the outstanding_amount (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the outstanding_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:182 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:140 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:141 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169 +#: erpnext/accounts/report/purchase_register/purchase_register.py:291 +#: erpnext/accounts/report/sales_register/sales_register.py:319 +msgid "Outstanding Amount" +msgstr "" + +#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:66 +msgid "Outstanding Amt" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:295 +msgid "Outstanding Checks and Deposits to clear" +msgstr "" + +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:48 +msgid "Outstanding Cheques and Deposits to clear" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:412 +msgid "Outstanding for {0} cannot be less than zero ({1})" +msgstr "" + +#. Option for the 'Payment Request Type' (Select) field in DocType 'Payment +#. Request' +#. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory +#. Dimension' +#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and +#. Batch Bundle' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Outward" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Outward Order" +msgstr "" + +#. Label of the over_billing_allowance (Currency) field in DocType 'Accounts +#. Settings' +#. Label of the over_billing_allowance (Float) field in DocType 'Item' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/stock/doctype/item/item.json +msgid "Over Billing Allowance (%)" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/billing_status.py:266 +msgid "Over Billing Allowance exceeded for Purchase Receipt Item {0} ({1}) by {2}%" +msgstr "" + +#. Label of the over_delivery_receipt_allowance (Float) field in DocType 'Item' +#. Label of the over_delivery_receipt_allowance (Float) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Over Delivery/Receipt Allowance (%)" +msgstr "" + +#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Over Order Allowance (%)" +msgstr "" + +#. Label of the over_picking_allowance (Percent) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Over Picking Allowance (%)" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +msgid "Over Receipt" +msgstr "" + +#: erpnext/controllers/status_updater.py:506 +msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." +msgstr "" + +#. Label of the over_transfer_allowance (Float) field in DocType 'Buying +#. Settings' +#. Label of the mr_qty_allowance (Float) field in DocType 'Stock Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Over Transfer Allowance (%)" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Over Withheld" +msgstr "" + +#: erpnext/controllers/status_updater.py:508 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +msgstr "" + +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {} ignored because you have {} role." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset +#. Maintenance Log' +#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset +#. Maintenance Task' +#. Option for the 'Status' (Select) field in DocType 'Task' +#. Option in a Select field in the tasks Web Form +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/services/status.py:80 +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/report/project_summary/project_summary.py:100 +#: erpnext/projects/web_form/tasks/tasks.json +#: erpnext/selling/doctype/sales_order/sales_order_list.js:30 +msgid "Overdue" +msgstr "" + +#. Label of the overdue_days (Data) field in DocType 'Overdue Payment' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +msgid "Overdue Days" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +msgid "Overdue Payment" +msgstr "" + +#. Label of the overdue_payments (Table) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "Overdue Payments" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:142 +msgid "Overdue Tasks" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Overdue and Discounted" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 +msgid "Overlap in scoring between {0} and {1}" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 +msgid "Overlapping conditions found between:" +msgstr "" + +#. Label of the overproduction_percentage_for_sales_order (Percent) field in +#. DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Overproduction Percentage For Sales Order" +msgstr "" + +#. Label of the overproduction_percentage_for_work_order (Percent) field in +#. DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Overproduction Percentage For Work Order" +msgstr "" + +#. Label of the over_production_for_sales_and_work_order_section (Section +#. Break) field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Overproduction for Sales and Work Order" +msgstr "" + +#. Description of the 'Per-Company Accounts' (Table) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Override the default payable / advance accounts on a per-company basis. Leave blank to use each company's defaults from Company settings." +msgstr "" + +#. Option for the 'Permanent Address Is' (Select) field in DocType 'Employee' +#. Option for the 'Current Address Is' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Owned" +msgstr "" + +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:29 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:24 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:40 +#: erpnext/accounts/report/sales_register/sales_register.js:46 +#: erpnext/accounts/report/sales_register/sales_register.py:236 +#: erpnext/crm/report/lead_details/lead_details.py:45 +msgid "Owner" +msgstr "" + +#. Label of the asset_owner_section (Section Break) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Ownership" +msgstr "" + +#. Label of the p_l_closing_balance (JSON) field in DocType 'Process Period +#. Closing Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "P&L Closing Balance" +msgstr "" + +#. Label of the pan_no (Data) field in DocType 'Lower Deduction Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "PAN No" +msgstr "" + +#. Label of the parent_pcv (Link) field in DocType 'Process Period Closing +#. Voucher' +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "PCV" +msgstr "" + +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 +msgid "PCV Paused" +msgstr "" + +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:53 +msgid "PCV Resumed" +msgstr "" + +#. Label of the pdf_name (Data) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "PDF Name" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:127 +msgid "PDF Password" +msgstr "" + +#. Label of the pdf_tables (JSON) field in DocType 'Bank Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "PDF Tables" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:928 +msgid "PDF statement support requires the 'pdfplumber' library to be installed." +msgstr "" + +#. Label of the pin (Data) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "PIN" +msgstr "" + +#. Label of the po_detail (Data) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "PO Supplied Item" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/selling.json +msgid "POS" +msgstr "" + +#. Label of the invoice_fields (Table) field in DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "POS Additional Fields" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +msgid "POS Closed" +msgstr "" + +#. Name of a DocType +#. Label of the pos_closing_entry (Link) field in DocType 'POS Invoice Merge +#. Log' +#. Label of the pos_closing_entry (Data) field in DocType 'POS Opening Entry' +#. Label of the pos_closing_entry (Link) field in DocType 'Sales Invoice' +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "POS Closing Entry" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json +msgid "POS Closing Entry Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.json +msgid "POS Closing Entry Taxes" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js:18 +msgid "POS Closing Failed" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js:40 +msgid "POS Closing failed while running in a background process. You can resolve the {0} and retry the process again." +msgstr "" + +#. Label of the pos_configurations_tab (Tab Break) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "POS Configurations" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_customer_group/pos_customer_group.json +msgid "POS Customer Group" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_field/pos_field.json +msgid "POS Field" +msgstr "" + +#. Name of a DocType +#. Label of the pos_invoice (Link) field in DocType 'POS Invoice Reference' +#. Option for the 'Invoice Type Created via POS Screen' (Select) field in +#. DocType 'POS Settings' +#. Label of the pos_invoice (Link) field in DocType 'Sales Invoice Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/pos_register/pos_register.py:190 +#: erpnext/workspace_sidebar/selling.json +msgid "POS Invoice" +msgstr "" + +#. Name of a DocType +#. Label of the pos_invoice_item (Data) field in DocType 'POS Invoice Item' +#. Label of the pos_invoice_item (Data) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "POS Invoice Item" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/workspace_sidebar/selling.json +msgid "POS Invoice Merge Log" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +msgid "POS Invoice Reference" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:119 +msgid "POS Invoice is already consolidated" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:127 +msgid "POS Invoice is not submitted" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 +msgid "POS Invoice isn't created by user {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 +msgid "POS Invoice should have the field {0} checked." +msgstr "" + +#. Label of the pos_invoices (Table) field in DocType 'POS Invoice Merge Log' +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +msgid "POS Invoices" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:88 +msgid "POS Invoices can't be added when Sales Invoice is enabled" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:672 +msgid "POS Invoices will be consolidated in a background process" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:674 +msgid "POS Invoices will be unconsolidated in a background process" +msgstr "" + +#. Label of the pos_item_details_section (Section Break) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "POS Item Details" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_item_group/pos_item_group.json +msgid "POS Item Group" +msgstr "" + +#. Label of the pos_item_selector_section (Section Break) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "POS Item Selector" +msgstr "" + +#. Label of the pos_opening_entry (Link) field in DocType 'POS Closing Entry' +#. Name of a DocType +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "POS Opening Entry" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:261 +msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry." +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:121 +msgid "POS Opening Entry Cancellation Error" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +msgid "POS Opening Entry Cancelled" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.json +msgid "POS Opening Entry Detail" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:67 +msgid "POS Opening Entry Exists" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:246 +msgid "POS Opening Entry Missing" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:122 +msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +msgid "POS Opening Entry has been cancelled. Please refresh the page." +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_payment_method/pos_payment_method.json +msgid "POS Payment Method" +msgstr "" + +#. Label of the pos_profile (Link) field in DocType 'POS Closing Entry' +#. Label of the pos_profile (Link) field in DocType 'POS Invoice' +#. Label of the pos_profile (Link) field in DocType 'POS Opening Entry' +#. Name of a DocType +#. Label of the pos_profile (Link) field in DocType 'Sales Invoice' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/pos_register/pos_register.js:32 +#: erpnext/accounts/report/pos_register/pos_register.py:126 +#: erpnext/accounts/report/pos_register/pos_register.py:204 +#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/workspace_sidebar/selling.json +msgid "POS Profile" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:254 +msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:249 +msgid "POS Profile - {0} is currently open. Please close the POS or cancel the existing POS Opening Entry before cancelling this POS Closing Entry." +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pos_profile_user/pos_profile_user.json +msgid "POS Profile User" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 +msgid "POS Profile doesn't match {}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 +msgid "POS Profile is mandatory to mark this invoice as POS Transaction." +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:114 +msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." +msgstr "" + +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 +msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 +msgid "POS Profile {} does not belong to company {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 +msgid "POS Profile {} does not exist." +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 +msgid "POS Profile {} is disabled." +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/pos_register/pos_register.json +msgid "POS Register" +msgstr "" + +#. Name of a DocType +#. Label of the pos_search_fields (Table) field in DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_search_fields/pos_search_fields.json +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "POS Search Fields" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/selling.json +msgid "POS Settings" +msgstr "" + +#. Label of the pos_invoices (Table) field in DocType 'POS Closing Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "POS Transactions" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +msgid "POS has been closed at {0}. Please refresh the page." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +msgid "POS invoice {0} created successfully" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.json +msgid "PSOA Cost Center" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/psoa_project/psoa_project.json +msgid "PSOA Project" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "PZN" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +msgid "Package No(s) already in use. Try from Package No {0}" +msgstr "" + +#. Label of the package_weight_details (Section Break) field in DocType +#. 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "Package Weight Details" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:73 +msgid "Packaging Slip From Delivery Note" +msgstr "" + +#. Label of the packed_item (Data) field in DocType 'Material Request Item' +#. Name of a DocType +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Packed Item" +msgstr "" + +#. Label of the packed_items (Table) field in DocType 'POS Invoice' +#. Label of the packed_items (Table) field in DocType 'Sales Invoice' +#. Label of the packed_items (Table) field in DocType 'Sales Order' +#. Label of the packed_items (Table) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Packed Items" +msgstr "" + +#: erpnext/stock/services/internal_transfer.py:69 +msgid "Packed Items cannot be transferred internally" +msgstr "" + +#. Label of the packed_qty (Float) field in DocType 'Delivery Note Item' +#. Label of the packed_qty (Float) field in DocType 'Packed Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Packed Qty" +msgstr "" + +#. Label of the packing_list (Section Break) field in DocType 'POS Invoice' +#. Label of the packing_list (Section Break) field in DocType 'Sales Invoice' +#. Label of the packing_list (Section Break) field in DocType 'Sales Order' +#. Label of the packing_list (Section Break) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Packing List" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/delivery_note/delivery_note.js:296 +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Packing Slip" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +msgid "Packing Slip Item" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/services/packing.py:61 +msgid "Packing Slip(s) cancelled" +msgstr "" + +#. Label of the packing_unit (Int) field in DocType 'Item Price' +#: erpnext/stock/doctype/item_price/item_price.json +msgid "Packing Unit" +msgstr "" + +#. Label of the include_break (Check) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Page Break After Each SoA" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:302 +msgid "Page preview" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Payment Request' +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/services/status.py:86 +msgid "Paid" +msgstr "" + +#. Label of the paid_amount (Currency) field in DocType 'Overdue Payment' +#. Label of the paid_amount (Currency) field in DocType 'Payment Entry' +#. Label of the paid_amount (Currency) field in DocType 'Payment Schedule' +#. Label of the paid_amount (Currency) field in DocType 'POS Invoice' +#. Label of the paid_amount (Currency) field in DocType 'Purchase Invoice' +#. Label of the paid_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:311 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:173 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:167 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:201 +#: erpnext/accounts/report/pos_register/pos_register.py:225 +#: erpnext/selling/page/point_of_sale/pos_payment.js:697 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:58 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:313 +msgid "Paid Amount" +msgstr "" + +#. Label of the base_paid_amount (Currency) field in DocType 'Payment Entry' +#. Label of the base_paid_amount (Currency) field in DocType 'Payment Schedule' +#. Label of the base_paid_amount (Currency) field in DocType 'POS Invoice' +#. Label of the base_paid_amount (Currency) field in DocType 'Purchase Invoice' +#. Label of the base_paid_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Paid Amount (Company Currency)" +msgstr "" + +#. Label of the paid_amount_after_tax (Currency) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Paid Amount After Tax" +msgstr "" + +#. Label of the base_paid_amount_after_tax (Currency) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Paid Amount After Tax (Company Currency)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1682 +msgid "Paid Amount cannot be greater than total negative outstanding amount {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:315 +msgid "Paid From" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:620 +msgid "Paid From (GL Account)" +msgstr "" + +#. Label of the paid_from_account_type (Data) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Paid From Account Type" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:329 +msgid "Paid To" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:608 +msgid "Paid To (GL Account)" +msgstr "" + +#. Label of the paid_to_account_type (Data) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Paid To Account Type" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:331 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:205 +msgid "Paid amount + Write Off Amount can not be greater than Grand Total" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:404 +msgid "Paid to" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pair" +msgstr "" + +#. Label of the pallets (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pallets" +msgstr "" + +#. Label of the parameter_group (Link) field in DocType 'Item Quality +#. Inspection Parameter' +#. Label of the parameter_group (Link) field in DocType 'Quality Inspection +#. Parameter' +#. Label of the parameter_group (Link) field in DocType 'Quality Inspection +#. Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Parameter Group" +msgstr "" + +#. Label of the group_name (Data) field in DocType 'Quality Inspection +#. Parameter Group' +#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json +msgid "Parameter Group Name" +msgstr "" + +#. Label of the param_name (Data) field in DocType 'Supplier Scorecard Scoring +#. Variable' +#. Label of the param_name (Data) field in DocType 'Supplier Scorecard +#. Variable' +#: erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.json +#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.json +msgid "Parameter Name" +msgstr "" + +#. Label of the req_params (Table) field in DocType 'Currency Exchange +#. Settings' +#. Label of the parameters (Table) field in DocType 'Quality Feedback' +#. Label of the parameters (Table) field in DocType 'Quality Feedback Template' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json +#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json +msgid "Parameters" +msgstr "" + +#. Label of the parcel_template (Link) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Parcel Template" +msgstr "" + +#. Label of the parcel_template_name (Data) field in DocType 'Shipment Parcel +#. Template' +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Parcel Template Name" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.py:97 +msgid "Parcel weight cannot be 0" +msgstr "" + +#. Label of the parcels_section (Section Break) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Parcels" +msgstr "" + +#. Label of the parent_account (Link) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Parent Account" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:384 +msgid "Parent Account Missing" +msgstr "" + +#. Label of the parent_batch (Link) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Parent Batch" +msgstr "" + +#. Label of the parent_company (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Parent Company" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:611 +msgid "Parent Company must be a group company" +msgstr "" + +#. Label of the parent_cost_center (Link) field in DocType 'Cost Center' +#: erpnext/accounts/doctype/cost_center/cost_center.json +msgid "Parent Cost Center" +msgstr "" + +#. Label of the parent_customer_group (Link) field in DocType 'Customer Group' +#: erpnext/setup/doctype/customer_group/customer_group.json +msgid "Parent Customer Group" +msgstr "" + +#. Label of the parent_department (Link) field in DocType 'Department' +#: erpnext/setup/doctype/department/department.json +msgid "Parent Department" +msgstr "" + +#. Label of the parent_detail_docname (Data) field in DocType 'Packed Item' +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Parent Detail docname" +msgstr "" + +#. Label of the process_pr (Link) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Parent Document" +msgstr "" + +#. Label of the new_item_code (Link) field in DocType 'Product Bundle' +#. Label of the parent_item (Link) field in DocType 'Packed Item' +#: erpnext/selling/doctype/product_bundle/product_bundle.json +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Parent Item" +msgstr "" + +#. Label of the parent_item_group (Link) field in DocType 'Item Group' +#: erpnext/setup/doctype/item_group/item_group.json +msgid "Parent Item Group" +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.py:132 +msgid "Parent Item {0} must not be a Fixed Asset" +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.py:130 +msgid "Parent Item {0} must not be a Stock Item" +msgstr "" + +#. Label of the parent_location (Link) field in DocType 'Location' +#: erpnext/assets/doctype/location/location.json +msgid "Parent Location" +msgstr "" + +#. Label of the parent_quality_procedure (Link) field in DocType 'Quality +#. Procedure' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Parent Procedure" +msgstr "" + +#. Label of the parent_row_no (Data) field in DocType 'BOM Creator Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +msgid "Parent Row No" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:610 +msgid "Parent Row No not found for {0}" +msgstr "" + +#. Label of the parent_sales_person (Link) field in DocType 'Sales Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Parent Sales Person" +msgstr "" + +#. Label of the parent_supplier_group (Link) field in DocType 'Supplier Group' +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Parent Supplier Group" +msgstr "" + +#. Label of the parent_task (Link) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Parent Task" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:169 +msgid "Parent Task {0} is not a Template Task" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:192 +msgid "Parent Task {0} must be a Group Task" +msgstr "" + +#. Label of the parent_territory (Link) field in DocType 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "Parent Territory" +msgstr "" + +#. Label of the parent_warehouse (Link) field in DocType 'Master Production +#. Schedule' +#. Label of the parent_warehouse (Link) field in DocType 'Sales Forecast' +#. Label of the parent_warehouse (Link) field in DocType 'Warehouse' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:47 +msgid "Parent Warehouse" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:166 +msgid "Parsed file is not in valid MT940 format or contains no transactions." +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:44 +msgid "Parsing Error" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:917 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:948 +msgid "Partial Match" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Partial Material Transferred" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:231 +msgid "Partial Payment in POS Transactions are not allowed." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1746 +msgid "Partial Stock Reservation" +msgstr "" + +#. Description of the 'Allow partial reservation' (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Partial stock can be reserved. For example, If you have a Sales Order of 100 units and the Available Stock is 90 units then a Stock Reservation Entry will be created for 90 units. " +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Timesheet' +#. Option for the 'Status' (Select) field in DocType 'Delivery Note' +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/doctype/timesheet/timesheet_list.js:5 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:24 +msgid "Partially Billed" +msgstr "" + +#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance +#. Schedule Detail' +#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance +#. Visit' +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Partially Completed" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Partially Delivered" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:8 +msgid "Partially Depreciated" +msgstr "" + +#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Partially Fulfilled" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Quotation' +#. Option for the 'Status' (Select) field in DocType 'Material Request' +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/quotation/quotation_list.js:32 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:29 +msgid "Partially Ordered" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Payment Request' +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase +#. Order' +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales +#. Order' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Partially Paid" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Material Request' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Order' +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:16 +#: erpnext/stock/doctype/material_request/material_request_list.js:27 +#: erpnext/stock/doctype/material_request/material_request_list.js:36 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Partially Received" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Process Payment +#. Reconciliation' +#. Option for the 'Status' (Select) field in DocType 'Process Payment +#. Reconciliation Log' +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:133 +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:415 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Partially Reconciled" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Partially Reserved" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Partially Transferred" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Partially Used" +msgstr "" + +#. Option for the 'Billing Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt' +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:23 +msgid "Partly Billed" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Status' (Select) field in DocType 'Pick List' +#. Option for the 'Delivery Status' (Select) field in DocType 'Pick List' +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Partly Delivered" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Partly Paid" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Partly Paid and Discounted" +msgstr "" + +#. Label of the partner_type (Link) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Partner Type" +msgstr "" + +#. Label of the partner_website (Data) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Partner website" +msgstr "" + +#. Option for the 'Supplier Type' (Select) field in DocType 'Supplier' +#. Option for the 'Customer Type' (Select) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Partnership" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Parts Per Million" +msgstr "" + +#. Label of the party (Dynamic Link) field in DocType 'Bank Account' +#. Group in Bank Account's connections +#. Label of the party (Dynamic Link) field in DocType 'Bank Transaction' +#. Label of the party (Dynamic Link) field in DocType 'Bank Transaction Rule' +#. Label of the party (Dynamic Link) field in DocType 'Bank Transaction Rule +#. Accounts' +#. Label of the party (Dynamic Link) field in DocType 'Exchange Rate +#. Revaluation Account' +#. Label of the party (Dynamic Link) field in DocType 'GL Entry' +#. Label of the party (Dynamic Link) field in DocType 'Journal Entry Account' +#. Label of the party (Dynamic Link) field in DocType 'Journal Entry Template +#. Account' +#. Label of the party (Dynamic Link) field in DocType 'Payment Entry' +#. Label of the party (Dynamic Link) field in DocType 'Payment Ledger Entry' +#. Label of the party (Dynamic Link) field in DocType 'Payment Reconciliation' +#. Label of the party (Dynamic Link) field in DocType 'Payment Request' +#. Label of the party (Dynamic Link) field in DocType 'Process Payment +#. Reconciliation' +#. Label of the party (Dynamic Link) field in DocType 'Subscription' +#. Label of the party (Dynamic Link) field in DocType 'Tax Withholding Entry' +#. Label of the party (Data) field in DocType 'Unreconcile Payment Entries' +#. Label of the party (Dynamic Link) field in DocType 'Appointment' +#. Label of the party_name (Dynamic Link) field in DocType 'Opportunity' +#. Label of the party_name (Dynamic Link) field in DocType 'Quotation' +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:589 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:735 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:747 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:752 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:185 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:197 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:552 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:562 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:359 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:369 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:591 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:776 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:788 +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template_dashboard.py:16 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:167 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:196 +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:11 +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:105 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:82 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:65 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1148 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:82 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:147 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 +#: erpnext/accounts/report/general_ledger/general_ledger.js:74 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:89 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:25 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:26 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:57 +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:55 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:36 +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:50 +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:135 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/stock/doctype/item/item_prices.html:83 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:86 +msgid "Party" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/party_account/party_account.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1160 +msgid "Party Account" +msgstr "" + +#. Label of the party_account_currency (Link) field in DocType 'Payment +#. Request' +#. Label of the party_account_currency (Link) field in DocType 'POS Invoice' +#. Label of the party_account_currency (Link) field in DocType 'Purchase +#. Invoice' +#. Label of the party_account_currency (Link) field in DocType 'Sales Invoice' +#. Label of the party_account_currency (Link) field in DocType 'Purchase Order' +#. Label of the party_account_currency (Link) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Party Account Currency" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Party Account No." +msgstr "" + +#. Label of the bank_party_account_number (Data) field in DocType 'Bank +#. Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Party Account No. (Bank Statement)" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:126 +msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same" +msgstr "" + +#. Label of the party_bank_account (Link) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Party Bank Account" +msgstr "" + +#. Label of the section_break_11 (Section Break) field in DocType 'Bank +#. Account' +#. Label of the party_details (Section Break) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Party Details" +msgstr "" + +#. Label of the party_full_name (Data) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Party Full Name" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Party IBAN" +msgstr "" + +#. Label of the bank_party_iban (Data) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Party IBAN (Bank Statement)" +msgstr "" + +#. Label of the party (Dynamic Link) field in DocType 'Opening Invoice Creation +#. Tool Item' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +msgid "Party ID" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Pricing Rule' +#. Label of the section_break_8 (Section Break) field in DocType 'Promotional +#. Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Party Information" +msgstr "" + +#. Label of the party_item_code (Data) field in DocType 'Blanket Order Item' +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +msgid "Party Item Code" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/party_link/party_link.json +msgid "Party Link" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:49 +msgid "Party Mismatch" +msgstr "" + +#. Label of the party_name (Data) field in DocType 'Opening Invoice Creation +#. Tool Item' +#. Label of the party_name (Data) field in DocType 'Payment Entry' +#. Label of the party_name (Data) field in DocType 'Payment Request' +#. Label of the party_name (Dynamic Link) field in DocType 'Contract' +#. Label of the party (Dynamic Link) field in DocType 'Party Specific Item' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:111 +#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 +msgid "Party Name" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Party Name/Account Holder" +msgstr "" + +#. Label of the bank_party_name (Data) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Party Name/Account Holder (Bank Statement)" +msgstr "" + +#. Label of the party_not_required (Check) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Party Not Required" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +msgid "Party Specific Item" +msgstr "" + +#. Label of the party_type (Link) field in DocType 'Bank Account' +#. Label of the party_type (Link) field in DocType 'Bank Transaction' +#. Label of the party_type (Link) field in DocType 'Bank Transaction Rule' +#. Label of the party_type (Link) field in DocType 'Bank Transaction Rule +#. Accounts' +#. Label of the party_type (Link) field in DocType 'Exchange Rate Revaluation +#. Account' +#. Label of the party_type (Link) field in DocType 'GL Entry' +#. Label of the party_type (Link) field in DocType 'Journal Entry Account' +#. Label of the party_type (Link) field in DocType 'Journal Entry Template +#. Account' +#. Label of the party_type (Link) field in DocType 'Opening Invoice Creation +#. Tool Item' +#. Label of the party_type (Link) field in DocType 'Payment Entry' +#. Label of the party_type (Link) field in DocType 'Payment Ledger Entry' +#. Label of the party_type (Link) field in DocType 'Payment Reconciliation' +#. Label of the party_type (Link) field in DocType 'Payment Request' +#. Label of the party_type (Link) field in DocType 'Process Payment +#. Reconciliation' +#. Label of the party_type (Link) field in DocType 'Subscription' +#. Label of the party_type (Link) field in DocType 'Tax Withholding Entry' +#. Label of the party_type (Data) field in DocType 'Unreconcile Payment +#. Entries' +#. Label of the party_type (Select) field in DocType 'Contract' +#. Label of the party_type (Select) field in DocType 'Party Specific Item' +#. Name of a DocType +#. Label of the party_type (Link) field in DocType 'Party Type' +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:614 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:170 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:409 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:292 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:640 +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:92 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:69 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:52 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1142 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:69 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:141 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 +#: erpnext/accounts/report/general_ledger/general_ledger.js:65 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:86 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:15 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:15 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:49 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:45 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/report/address_and_contacts/address_and_contacts.js:9 +#: erpnext/setup/doctype/party_type/party_type.json +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:80 +msgid "Party Type" +msgstr "" + +#: erpnext/accounts/party.py:845 +msgid "Party Type and Party can only be set for Receivable / Payable account

            {0}" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +msgid "Party Type and Party is mandatory for {0} account" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:174 +msgid "Party Type and Party is required for Receivable / Payable account {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:535 +#: erpnext/accounts/party.py:434 +msgid "Party Type is mandatory" +msgstr "" + +#. Label of the party_user (Link) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Party User" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:72 +msgid "Party account is required to create a payment entry." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:475 +msgid "Party can only be one of {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:538 +msgid "Party is mandatory" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:189 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:199 +msgid "Party is required" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 +msgid "Party is required create a payment entry." +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 +msgid "Party type is required to create a payment entry." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pascal" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Quality Review' +#. Option for the 'Status' (Select) field in DocType 'Quality Review Objective' +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json +msgid "Passed" +msgstr "" + +#. Label of the passport_details_section (Section Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Passport Details" +msgstr "" + +#. Label of the passport_number (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Passport Number" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:941 +msgid "Password Required" +msgstr "" + +#. Description of the 'Statement PDF Password' (Password) field in DocType +#. 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Password used to open password-protected PDF statements for this account. Stored encrypted." +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription_list.js:10 +msgid "Past Due Date" +msgstr "" + +#: erpnext/public/js/templates/crm_activities.html:152 +msgid "Past Events" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Job Card Operation' +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:96 +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:25 +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:68 +msgid "Pause" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:662 +msgid "Pause Job" +msgstr "" + +#. Name of a DocType +#: erpnext/support/doctype/pause_sla_on_status/pause_sla_on_status.json +msgid "Pause SLA On Status" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Process Payment +#. Reconciliation' +#. Option for the 'Status' (Select) field in DocType 'Process Payment +#. Reconciliation Log' +#. Option for the 'Status' (Select) field in DocType 'Process Period Closing +#. Voucher' +#. Option for the 'Status' (Select) field in DocType 'Process Period Closing +#. Voucher Detail' +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +msgid "Paused" +msgstr "" + +#. Option for the 'Payment Type' (Select) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Pay" +msgstr "" + +#: erpnext/templates/pages/order.html:43 +msgctxt "Amount" +msgid "Pay" +msgstr "" + +#. Label of the pay_to_recd_from (Data) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Pay To / Recd From" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Option for the 'Account Type' (Select) field in DocType 'Payment Ledger +#. Entry' +#. Option for the 'Account Type' (Select) field in DocType 'Party Type' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/account_balance/account_balance.js:54 +#: erpnext/setup/doctype/party_type/party_type.json +msgid "Payable" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1158 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209 +#: erpnext/accounts/report/purchase_register/purchase_register.py:196 +#: erpnext/accounts/report/purchase_register/purchase_register.py:237 +msgid "Payable Account" +msgstr "" + +#. Label of the payables (Check) field in DocType 'Email Digest' +#. Label of a Workspace Sidebar Item +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/workspace_sidebar/invoicing.json +msgid "Payables" +msgstr "" + +#. Label of the payer_settings (Column Break) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Payer Settings" +msgstr "" + +#. Option for the 'Posting Date inheritance for exchange gain / loss' (Select) +#. field in DocType 'Accounts Settings' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:78 +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:300 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/dunning/dunning.js:51 +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_dashboard.py:10 +#: erpnext/accounts/doctype/payment_request/payment_request_dashboard.py:12 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:82 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:124 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py:20 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:395 +#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24 +#: erpnext/selling/doctype/sales_order/sales_order.js:1213 +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:31 +msgid "Payment" +msgstr "" + +#. Label of the payment_account (Link) field in DocType 'Payment Gateway +#. Account' +#. Label of the payment_account (Read Only) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Account" +msgstr "" + +#. Label of the payment_amount (Currency) field in DocType 'Overdue Payment' +#. Label of the payment_amount (Currency) field in DocType 'Payment Schedule' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:52 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:309 +msgid "Payment Amount" +msgstr "" + +#. Label of the base_payment_amount (Currency) field in DocType 'Payment +#. Schedule' +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +msgid "Payment Amount (Company Currency)" +msgstr "" + +#. Label of the payment_channel (Select) field in DocType 'Payment Gateway +#. Account' +#. Label of the payment_channel (Select) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Channel" +msgstr "" + +#. Label of the deductions (Table) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Payment Deductions or Loss" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:408 +msgid "Payment Details" +msgstr "" + +#. Label of the payment_document (Link) field in DocType 'Bank Clearance +#. Detail' +#. Label of the payment_document (Link) field in DocType 'Bank Transaction +#. Payments' +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:104 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:314 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:99 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:112 +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:74 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:134 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:81 +msgid "Payment Document" +msgstr "" + +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:26 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:68 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:128 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:75 +msgid "Payment Document Type" +msgstr "" + +#. Label of the due_date (Date) field in DocType 'POS Invoice' +#. Label of the due_date (Date) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:110 +msgid "Payment Due Date" +msgstr "" + +#. Label of the payment_entries (Table) field in DocType 'Bank Clearance' +#. Label of the payment_entries (Table) field in DocType 'Bank Transaction' +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +msgid "Payment Entries" +msgstr "" + +#: erpnext/accounts/utils.py:1160 +msgid "Payment Entries {0} are un-linked" +msgstr "" + +#. Label of the payment_entry (Dynamic Link) field in DocType 'Bank Clearance +#. Detail' +#. Label of the payment_entry (Dynamic Link) field in DocType 'Bank Transaction +#. Payments' +#. Option for the 'Classify As' (Select) field in DocType 'Bank Transaction +#. Rule' +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Name of a DocType +#. Option for the 'Payment Order Type' (Select) field in DocType 'Payment +#. Order' +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:270 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:59 +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.js:27 +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/print_format/bank_and_cash_payment_voucher/bank_and_cash_payment_voucher.html:12 +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:32 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:8 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Payment Entry" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:342 +msgid "Payment Entry Created" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json +msgid "Payment Entry Deduction" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Payment Entry Reference" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:636 +msgid "Payment Entry already exists" +msgstr "" + +#: erpnext/accounts/utils.py:657 +msgid "Payment Entry has been modified after you pulled it. Please pull it again." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:176 +#: erpnext/accounts/doctype/payment_request/payment_request.py:796 +msgid "Payment Entry is already created" +msgstr "" + +#: erpnext/accounts/services/advances.py:122 +msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:378 +msgid "Payment Failed" +msgstr "" + +#. Label of the party_section (Section Break) field in DocType 'Bank +#. Transaction' +#. Label of the party_section (Section Break) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Payment From / To" +msgstr "" + +#. Label of the payment_gateway (Link) field in DocType 'Payment Gateway +#. Account' +#. Label of the payment_gateway (Read Only) field in DocType 'Payment Request' +#. Label of the payment_gateway (Link) field in DocType 'Subscription Plan' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Payment Gateway" +msgstr "" + +#. Name of a DocType +#. Label of the payment_gateway_account (Link) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Gateway Account" +msgstr "" + +#: erpnext/accounts/utils.py:1527 +msgid "Payment Gateway Account not created, please create one manually." +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Gateway Details" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:283 +#: erpnext/accounts/doctype/payment_request/payment_request.py:290 +#: erpnext/accounts/doctype/payment_request/payment_request.py:295 +msgid "Payment Initialization Failed" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/payment_ledger/payment_ledger.json +msgid "Payment Ledger" +msgstr "" + +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:260 +msgid "Payment Ledger Balance" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +msgid "Payment Ledger Entry" +msgstr "" + +#. Label of the payment_limit (Int) field in DocType 'Payment Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Payment Limit" +msgstr "" + +#: erpnext/accounts/report/pos_register/pos_register.js:50 +#: erpnext/accounts/report/pos_register/pos_register.py:135 +#: erpnext/accounts/report/pos_register/pos_register.py:232 +#: erpnext/selling/page/point_of_sale/pos_payment.js:25 +msgid "Payment Method" +msgstr "" + +#. Label of the section_break_11 (Section Break) field in DocType 'POS Profile' +#. Label of the payments (Table) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Payment Methods" +msgstr "" + +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:25 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:41 +msgid "Payment Mode" +msgstr "" + +#. Label of the payment_options_section (Section Break) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Payment Options" +msgstr "" + +#. Label of the payment_order (Link) field in DocType 'Journal Entry' +#. Label of the payment_order (Link) field in DocType 'Payment Entry' +#. Name of a DocType +#. Label of the payment_order (Link) field in DocType 'Payment Request' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Payment Order" +msgstr "" + +#. Label of the references (Table) field in DocType 'Payment Order' +#. Name of a DocType +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +msgid "Payment Order Reference" +msgstr "" + +#. Label of the payment_order_status (Select) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Payment Order Status" +msgstr "" + +#. Label of the payment_order_type (Select) field in DocType 'Payment Order' +#: erpnext/accounts/doctype/payment_order/payment_order.json +msgid "Payment Order Type" +msgstr "" + +#. Option for the 'Payment Order Status' (Select) field in DocType 'Payment +#. Entry' +#. Option for the 'Status' (Select) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Ordered" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Payment Period Based On Invoice Date" +msgstr "" + +#. Label of the payment_plan_section (Section Break) field in DocType +#. 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Payment Plan" +msgstr "" + +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:4 +msgid "Payment Receipt Note" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:359 +msgid "Payment Received" +msgstr "" + +#. Name of a DocType +#. Label of the payment_reconciliation (Table) field in DocType 'POS Closing +#. Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Payment Reconciliation" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +msgid "Payment Reconciliation Allocation" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +msgid "Payment Reconciliation Invoice" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:139 +msgid "Payment Reconciliation Job: {0} is running for this party. Can't reconcile now." +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +msgid "Payment Reconciliation Payment" +msgstr "" + +#. Label of the section_break_jpd0 (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Payment Reconciliation Settings" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:117 +msgid "Payment Recorded" +msgstr "" + +#. Label of the payment_reference (Data) field in DocType 'Payment Order +#. Reference' +#. Name of a DocType +#. Label of the payment_reference (Table) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_reference/payment_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Reference" +msgstr "" + +#. Label of the references (Table) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Payment References" +msgstr "" + +#. Label of the payment_request_section (Section Break) field in DocType +#. 'Accounts Settings' +#. Label of the payment_request (Link) field in DocType 'Payment Entry +#. Reference' +#. Option for the 'Payment Order Type' (Select) field in DocType 'Payment +#. Order' +#. Label of the payment_request (Link) field in DocType 'Payment Order +#. Reference' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/payment_order/payment_order.js:19 +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:146 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:140 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:403 +#: erpnext/selling/doctype/sales_order/sales_order.js:1205 +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Payment Request" +msgstr "" + +#. Label of the payment_request_outstanding (Float) field in DocType 'Payment +#. Entry Reference' +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Payment Request Outstanding" +msgstr "" + +#. Label of the payment_request_type (Select) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment Request Type" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:869 +msgid "Payment Request for {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:810 +msgid "Payment Request is already created" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:454 +msgid "Payment Request took too long to respond. Please try requesting for payment again." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:727 +msgid "Payment Requests cannot be created against: {0}" +msgstr "" + +#. Description of the 'Create payment requests in Draft status' (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Payment Requests made from Sales / Purchase Invoice will be put in Draft explicitly" +msgstr "" + +#. Label of the payment_schedule (Data) field in DocType 'Overdue Payment' +#. Label of the payment_schedule (Link) field in DocType 'Payment Reference' +#. Name of a DocType +#. Label of the payment_schedule (Table) field in DocType 'POS Invoice' +#. Label of the payment_schedule (Table) field in DocType 'Purchase Invoice' +#. Label of the payment_schedule (Table) field in DocType 'Sales Invoice' +#. Label of the payment_schedule (Table) field in DocType 'Purchase Order' +#. Label of the payment_schedule (Table) field in DocType 'Quotation' +#. Label of the payment_schedule (Table) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_reference/payment_reference.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/services/payment_schedule.py:243 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Payment Schedule" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:749 +msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:503 +msgid "Payment Schedules" +msgstr "" + +#. Label of the payment_term (Link) field in DocType 'Overdue Payment' +#. Label of the payment_term (Link) field in DocType 'Payment Entry Reference' +#. Label of the payment_term (Link) field in DocType 'Payment Reference' +#. Label of the payment_term (Link) field in DocType 'Payment Schedule' +#. Name of a DocType +#. Label of the payment_term (Link) field in DocType 'Payment Terms Template +#. Detail' +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/payment_reference/payment_reference.json +#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json +#: erpnext/accounts/doctype/payment_term/payment_term.json +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 +#: erpnext/accounts/report/gross_profit/gross_profit.py:449 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Payment Term" +msgstr "" + +#. Label of the payment_term_name (Data) field in DocType 'Payment Term' +#: erpnext/accounts/doctype/payment_term/payment_term.json +msgid "Payment Term Name" +msgstr "" + +#. Label of the payment_term_outstanding (Float) field in DocType 'Payment +#. Entry Reference' +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Payment Term Outstanding" +msgstr "" + +#. Label of the terms (Table) field in DocType 'Payment Terms Template' +#. Label of the payment_schedule_section (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the payment_schedule_section (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the payment_schedule_section (Section Break) field in DocType +#. 'Sales Invoice' +#. Label of the payment_schedule_section (Section Break) field in DocType +#. 'Purchase Order' +#. Label of the payment_schedule_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the payment_terms_section (Section Break) field in DocType 'Sales +#. Order' +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Payment Terms" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.json +msgid "Payment Terms Status for Sales Order" +msgstr "" + +#. Name of a DocType +#. Label of the payment_terms_template (Link) field in DocType 'POS Invoice' +#. Label of the payment_terms_template (Link) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the payment_terms_template (Link) field in DocType 'Purchase +#. Invoice' +#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice' +#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order' +#. Label of the payment_terms (Link) field in DocType 'Supplier' +#. Label of the payment_terms (Link) field in DocType 'Customer' +#. Label of the payment_terms_template (Link) field in DocType 'Quotation' +#. Label of the payment_terms_template (Link) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:86 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:96 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:124 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:102 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Payment Terms Template" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json +msgid "Payment Terms Template Detail" +msgstr "" + +#. Description of the 'Automatically fetch Payment Terms from Order/Quotation' +#. (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Payment Terms from orders will be fetched into the invoices as is" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:45 +msgid "Payment Terms:" +msgstr "" + +#. Label of the payment_type (Select) field in DocType 'Payment Entry' +#. Label of the payment_type (Data) field in DocType 'Payment Entry Reference' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:28 +msgid "Payment Type" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 +msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgstr "" + +#. Label of the payment_url (Data) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Payment URL" +msgstr "" + +#: erpnext/accounts/utils.py:1148 +msgid "Payment Unlink Error" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:196 +msgid "Payment against {0} {1} cannot be greater than Outstanding Amount {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:808 +msgid "Payment amount cannot be less than or equal to 0" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:294 +msgid "Payment gateway {0} failed to create a payment session" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:183 +msgid "Payment methods are mandatory. Please add at least one payment method." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:372 +msgid "Payment methods refreshed. Please review before proceeding." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:466 +#: erpnext/selling/page/point_of_sale/pos_payment.js:366 +msgid "Payment of {0} received successfully." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:373 +msgid "Payment of {0} received successfully. Waiting for other requests to complete..." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:393 +msgid "Payment related to {0} is not completed" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:443 +msgid "Payment request failed" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:844 +msgid "Payment term {0} not used in {1}" +msgstr "" + +#. Label of the payments_tab (Tab Break) field in DocType 'Accounts Settings' +#. Label of the payments (Table) field in DocType 'Cashier Closing' +#. Label of the payments (Table) field in DocType 'Payment Reconciliation' +#. Label of the payments_section (Section Break) field in DocType 'POS Invoice' +#. Label of the payments_tab (Tab Break) field in DocType 'POS Invoice' +#. Label of the payments_section (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the payments_tab (Tab Break) field in DocType 'Purchase Invoice' +#. Label of the payments_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the payments_tab (Tab Break) field in DocType 'Sales Invoice' +#. Label of a Card Break in the Invoicing Workspace +#. Option for the 'Hold Type' (Select) field in DocType 'Supplier' +#. Label of a Desktop Icon +#. Label of a Workspace Sidebar Item +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:286 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:28 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:44 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier/supplier_dashboard.py:12 +#: erpnext/desktop_icon/payments.json +#: erpnext/selling/doctype/customer/customer_dashboard.py:21 +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:30 +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Payments" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:342 +msgid "Payments could not be updated." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:336 +msgid "Payments updated." +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Payroll Entry" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267 +msgid "Payroll Payable" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/doctype/timesheet/timesheet_list.js:13 +msgid "Payslip" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Peck (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Peck (US)" +msgstr "" + +#. Label of the pegged_against (Link) field in DocType 'Pegged Currency +#. Details' +#: erpnext/accounts/doctype/pegged_currency_details/pegged_currency_details.json +msgid "Pegged Against" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pegged_currencies/pegged_currencies.json +msgid "Pegged Currencies" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/pegged_currency_details/pegged_currency_details.json +msgid "Pegged Currency Details" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:93 +msgid "Pending Activities" +msgstr "" + +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:65 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:65 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:293 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:317 +msgid "Pending Amount" +msgstr "" + +#. Label of the pending_qty (Float) field in DocType 'Job Card' +#. Label of the pending_qty (Float) field in DocType 'Production Plan Item' +#. Label of the pending_qty (Float) field in DocType 'Work Order Operation' +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:256 +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:349 +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182 +#: erpnext/selling/doctype/sales_order/sales_order.js:1726 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:46 +msgid "Pending Qty" +msgstr "" + +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:54 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:44 +#: erpnext/manufacturing/doctype/job_card/job_card.js:272 +msgid "Pending Quantity" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:70 +msgid "Pending Quantity cannot be greater than {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:62 +msgid "Pending Quantity cannot be less than 0" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Task' +#. Option in a Select field in the tasks Web Form +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/web_form/tasks/tasks.json +msgid "Pending Review" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Pending SO Items For Purchase Request" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:123 +msgid "Pending Work Order" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:170 +msgid "Pending activities for today" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:277 +msgid "Pending processing" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +msgid "Pending quantity cannot be greater than the for quantity." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +msgid "Pending quantity cannot be negative." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:36 +msgid "Pension Funds" +msgstr "" + +#. Description of the 'Shift Time (In Hours)' (Int) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Per Day" +msgstr "" + +#. Description of the 'Total Workstation Time (In Hours)' (Int) field in +#. DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Per Day\n" +"Shift Time (In Hours) * No of Workstations * No of Shift" +msgstr "" + +#. Option for the 'Evaluation Period' (Select) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Per Month" +msgstr "" + +#. Label of the per_received (Percent) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Per Received" +msgstr "" + +#. Label of the per_transferred (Percent) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Per Transferred" +msgstr "" + +#. Description of the 'Manufacturing Time' (Int) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Per Unit Time in Mins" +msgstr "" + +#. Option for the 'Evaluation Period' (Select) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Per Week" +msgstr "" + +#. Option for the 'Evaluation Period' (Select) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Per Year" +msgstr "" + +#. Label of the accounts (Table) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Per-Company Accounts" +msgstr "" + +#. Description of the 'PDF Tables' (JSON) field in DocType 'Bank Statement +#. Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Per-table extraction data for PDF statements (rows, bbox, page image, column mapping). Edited via the banking app." +msgstr "" + +#. Label of the percentage (Percent) field in DocType 'Cost Center Allocation +#. Percentage' +#: erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.json +msgid "Percentage (%)" +msgstr "" + +#. Label of the percentage_allocation (Float) field in DocType 'Monthly +#. Distribution Percentage' +#: erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.json +msgid "Percentage Allocation" +msgstr "" + +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.py:57 +msgid "Percentage Allocation should be equal to 100%" +msgstr "" + +#. Description of the 'Over Billing Allowance (%)' (Float) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Percentage by which over-billing is allowed against a Sales/Purchase Order for this item. If not set, value from Accounts Settings will be used." +msgstr "" + +#. Description of the 'Over Delivery/Receipt Allowance (%)' (Float) field in +#. DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Percentage by which over-delivery or over-receipt is allowed against a Sales/Purchase Order for this item. If not set, value from Stock Settings will be used." +msgstr "" + +#. Description of the 'Blanket Order Allowance (%)' (Float) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Percentage you are allowed to order beyond the Blanket Order quantity." +msgstr "" + +#. Description of the 'Blanket Order Allowance (%)' (Float) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Percentage you are allowed to sell beyond the Blanket Order quantity." +msgstr "" + +#. Description of the 'Over Transfer Allowance (%)' (Float) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Percentage you are allowed to transfer more against the quantity ordered. For example: If you have ordered 100 units. and your Allowance is 10% then you are allowed to transfer 110 units." +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:6 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:442 +msgid "Perception Analysis" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.html:138 +#: erpnext/accounts/report/cash_flow/cash_flow.html:138 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:138 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:60 +msgid "Period Based On" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:146 +msgid "Period Closed" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:69 +#: erpnext/accounts/report/trial_balance/trial_balance.js:89 +msgid "Period Closing Entry For Current Period" +msgstr "" + +#. Label of the period_closing_voucher (Link) field in DocType 'Account Closing +#. Balance' +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Period Closing Voucher" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:504 +msgid "Period Closing Voucher {0} GL Entry Cancellation Failed" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:483 +msgid "Period Closing Voucher {0} GL Entry Processing Failed" +msgstr "" + +#. Label of the period_details_section (Section Break) field in DocType 'POS +#. Closing Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "Period Details" +msgstr "" + +#. Label of the period_end_date (Date) field in DocType 'Period Closing +#. Voucher' +#. Label of the period_end_date (Datetime) field in DocType 'POS Closing Entry' +#. Label of the period_end_date (Date) field in DocType 'POS Opening Entry' +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +msgid "Period End Date" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:68 +msgid "Period End Date cannot be greater than Fiscal Year End Date" +msgstr "" + +#. Option for the 'Balance Type' (Select) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Period Movement (Debits - Credits)" +msgstr "" + +#. Label of the period_name (Data) field in DocType 'Accounting Period' +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +msgid "Period Name" +msgstr "" + +#. Label of the total_score (Percent) field in DocType 'Supplier Scorecard +#. Period' +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Period Score" +msgstr "" + +#. Label of the section_break_23 (Section Break) field in DocType 'Pricing +#. Rule' +#. Label of the period_settings_section (Section Break) field in DocType +#. 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Period Settings" +msgstr "" + +#. Label of the period_start_date (Date) field in DocType 'Period Closing +#. Voucher' +#. Label of the period_start_date (Datetime) field in DocType 'POS Closing +#. Entry' +#. Label of the period_start_date (Datetime) field in DocType 'POS Opening +#. Entry' +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +msgid "Period Start Date" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:65 +msgid "Period Start Date cannot be greater than Period End Date" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:62 +msgid "Period Start Date must be {0}" +msgstr "" + +#. Label of the period_to_date (Datetime) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Period To Date" +msgstr "" + +#: erpnext/public/js/purchase_trends_filters.js:35 +msgid "Period based On" +msgstr "" + +#. Label of the period_from_date (Datetime) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Period_from_date" +msgstr "" + +#. Label of the section_break_tcvw (Section Break) field in DocType 'Journal +#. Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Periodic Accounting" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Periodic Accounting Entry" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:284 +msgid "Periodic Accounting Entry is not allowed for company {0} with perpetual inventory enabled" +msgstr "" + +#. Label of the periodic_entry_difference_account (Link) field in DocType +#. 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Periodic Entry Difference Account" +msgstr "" + +#. Label of the periodicity (Data) field in DocType 'Asset Maintenance Log' +#. Label of the periodicity (Select) field in DocType 'Asset Maintenance Task' +#. Label of the periodicity (Select) field in DocType 'Maintenance Schedule +#. Item' +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:72 +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:33 +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:54 +#: erpnext/public/js/financial_statements.js:451 +msgid "Periodicity" +msgstr "" + +#. Label of the permanent_address (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Permanent Address" +msgstr "" + +#. Label of the permanent_accommodation_type (Select) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Permanent Address Is" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:73 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:77 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:83 +msgid "Permission Denied" +msgstr "" + +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:19 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:18 +msgid "Perpetual inventory required for the company {0} to view this report." +msgstr "" + +#. Label of the personal_details (Tab Break) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Personal Details" +msgstr "" + +#. Option for the 'Preferred Contact Email' (Select) field in DocType +#. 'Employee' +#. Label of the personal_email (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Personal Email" +msgstr "" + +#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Petrol" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:113 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:110 +msgid "Phantom BOM cannot be created for stock item {0}." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom_item_preview.html:16 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:321 +msgid "Phantom Item" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:430 +msgid "Phantom Item is mandatory" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:234 +msgid "Pharmaceutical" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:37 +msgid "Pharmaceuticals" +msgstr "" + +#. Label of the phone_ext (Data) field in DocType 'Lead' +#. Label of the phone_ext (Data) field in DocType 'Opportunity' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Phone Ext." +msgstr "" + +#. Label of the phone_no (Data) field in DocType 'Company' +#. Label of the phone_no (Data) field in DocType 'Warehouse' +#: erpnext/public/js/print.js:82 erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Phone No" +msgstr "" + +#. Label of the phone_number (Data) field in DocType 'Payment Request' +#. Label of the customer_phone_number (Data) field in DocType 'Appointment' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:957 +msgid "Phone Number" +msgstr "" + +#. Name of a DocType +#. Label of the pick_list (Link) field in DocType 'Stock Entry' +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/sales_order/sales_order.js:1066 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:199 +#: erpnext/stock/doctype/material_request/material_request.js:156 +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:154 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Pick List" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:268 +msgid "Pick List Incomplete" +msgstr "" + +#. Label of the pick_list_item (Data) field in DocType 'Sales Invoice Item' +#. Label of the pick_list_item (Data) field in DocType 'Delivery Note Item' +#. Name of a DocType +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Pick List Item" +msgstr "" + +#. Label of the pick_manually (Check) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Pick Manually" +msgstr "" + +#. Label of the pick_serial_and_batch (Button) field in DocType 'Asset Repair +#. Consumed Item' +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +msgid "Pick Serial / Batch" +msgstr "" + +#. Label of the pick_serial_and_batch_based_on (Select) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Pick Serial / Batch Based On" +msgstr "" + +#. Label of the pick_serial_and_batch (Button) field in DocType 'Sales Invoice +#. Item' +#. Label of the pick_serial_and_batch (Button) field in DocType 'Delivery Note +#. Item' +#. Label of the pick_serial_and_batch (Button) field in DocType 'Packed Item' +#. Label of the pick_serial_and_batch (Button) field in DocType 'Pick List +#. Item' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Pick Serial / Batch No" +msgstr "" + +#. Label of the picked_qty (Float) field in DocType 'Material Request Item' +#. Label of the picked_qty (Float) field in DocType 'Packed Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Picked Qty" +msgstr "" + +#. Label of the picked_qty (Float) field in DocType 'Sales Order Item' +#. Label of the picked_qty (Float) field in DocType 'Pick List Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Picked Qty (in Stock UOM)" +msgstr "" + +#. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup" +msgstr "" + +#. Label of the pickup_contact_person (Link) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup Contact Person" +msgstr "" + +#. Label of the pickup_date (Date) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup Date" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:398 +msgid "Pickup Date cannot be before this day" +msgstr "" + +#. Label of the pickup (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup From" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.py:107 +msgid "Pickup To time should be greater than Pickup From time" +msgstr "" + +#. Label of the pickup_type (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup Type" +msgstr "" + +#. Label of the heading_pickup_from (Heading) field in DocType 'Shipment' +#. Label of the pickup_from_type (Select) field in DocType 'Shipment' +#. Label of the pickup_from (Time) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup from" +msgstr "" + +#. Label of the pickup_to (Time) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Pickup to" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pint (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pint (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pint, Dry (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pint, Liquid (US)" +msgstr "" + +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:8 +msgid "Pipeline By" +msgstr "" + +#. Label of the place_of_issue (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Place of Issue" +msgstr "" + +#. Label of the plaid_access_token (Data) field in DocType 'Bank' +#: erpnext/accounts/doctype/bank/bank.json +msgid "Plaid Access Token" +msgstr "" + +#. Label of the plaid_client_id (Data) field in DocType 'Plaid Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "Plaid Client ID" +msgstr "" + +#. Label of the plaid_env (Select) field in DocType 'Plaid Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "Plaid Environment" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +msgid "Plaid Link Failed" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +msgid "Plaid Link Refresh Required" +msgstr "" + +#: erpnext/accounts/doctype/bank/bank.js:128 +msgid "Plaid Link Updated" +msgstr "" + +#. Label of the plaid_secret (Password) field in DocType 'Plaid Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "Plaid Secret" +msgstr "" + +#. Label of a Link in the Invoicing Workspace +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +#: erpnext/workspace_sidebar/banking.json +msgid "Plaid Settings" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +msgid "Plaid transactions sync error" +msgstr "" + +#. Label of the plan (Link) field in DocType 'Subscription Plan Detail' +#: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json +msgid "Plan" +msgstr "" + +#. Label of the plan_name (Data) field in DocType 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Plan Name" +msgstr "" + +#. Description of the 'Use Multi-Level BOM' (Check) field in DocType 'Work +#. Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Plan material for sub-assemblies" +msgstr "" + +#. Description of the 'Capacity Planning For (Days)' (Int) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Plan operations X days in advance" +msgstr "" + +#. Description of the 'Allow Overtime' (Check) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Plan time logs outside Workstation working hours" +msgstr "" + +#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset +#. Maintenance Log' +#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset +#. Maintenance Task' +#. Option for the 'Status' (Select) field in DocType 'Sales Forecast' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast_list.js:6 +msgid "Planned" +msgstr "" + +#. Label of the planned_end_date (Datetime) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:236 +msgid "Planned End Date" +msgstr "" + +#. Label of the planned_end_time (Datetime) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Planned End Time" +msgstr "" + +#. Label of the planned_operating_cost (Currency) field in DocType 'Work Order' +#. Label of the planned_operating_cost (Currency) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Planned Operating Cost" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1043 +msgid "Planned Purchase Order" +msgstr "" + +#. Label of the planned_qty (Float) field in DocType 'Master Production +#. Schedule Item' +#. Label of the planned_qty (Float) field in DocType 'Production Plan Item' +#. Label of the planned_qty (Float) field in DocType 'Bin' +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1031 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:150 +msgid "Planned Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:199 +msgid "Planned Qty: Quantity, for which, Work Order has been raised, but is pending to be manufactured." +msgstr "" + +#. Label of the planned_qty (Float) field in DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:109 +msgid "Planned Quantity" +msgstr "" + +#. Label of the planned_start_date (Datetime) field in DocType 'Production Plan +#. Item' +#. Label of the planned_start_date (Datetime) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:230 +msgid "Planned Start Date" +msgstr "" + +#. Label of the planned_start_time (Datetime) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Planned Start Time" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1048 +msgid "Planned Work Order" +msgstr "" + +#. Label of the mps_tab (Tab Break) field in DocType 'Master Production +#. Schedule' +#. Label of the item_balance (Section Break) field in DocType 'Quotation Item' +#. Label of the planning_section (Section Break) field in DocType 'Sales Order +#. Item' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:262 +msgid "Planning" +msgstr "" + +#. Label of the sb_4 (Section Break) field in DocType 'Subscription' +#. Label of the plans (Table) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Plans" +msgstr "" + +#. Label of the plant_dashboard (HTML) field in DocType 'Plant Floor' +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +msgid "Plant Dashboard" +msgstr "" + +#. Name of a DocType +#. Label of the plant_floor (Link) field in DocType 'Workstation' +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/public/js/plant_floor_visual/visual_plant.js:53 +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Plant Floor" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102 +msgid "Plants and Machineries" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:630 +msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 +msgid "Please Select a Company" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 +msgid "Please Select a Company." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:162 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:204 +msgid "Please Select a Customer" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please Select a Supplier" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:161 +msgid "Please Set Priority" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +msgid "Please Set Supplier Group in Buying Settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +msgid "Please Specify Account" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.py:128 +msgid "Please add 'Supplier' role to user {0}." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +msgid "Please add Mode of payments and opening balance details." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:39 +msgid "Please add Operations first." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:210 +msgid "Please add Request for Quotation to the sidebar in Portal Settings." +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:421 +msgid "Please add Root Account for - {0}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +msgid "Please add a Temporary Opening account in Chart of Accounts" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:77 +msgid "Please add an account for the Bank Entry rule." +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:170 +msgid "Please add at least one naming series." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:914 +msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add atleast one Serial No / Batch No" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 +msgid "Please add the Bank Account column" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:239 +msgid "Please add the account to root level Company - {0}" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:237 +msgid "Please add the account to root level Company - {}" +msgstr "" + +#: erpnext/controllers/website_list_for_contact.py:305 +msgid "Please add {1} role to user {0}." +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +msgid "Please adjust the qty or edit {0} to proceed." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:128 +msgid "Please attach CSV file" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1257 +msgid "Please cancel and amend the Payment Entry" +msgstr "" + +#: erpnext/accounts/utils.py:1147 +msgid "Please cancel payment entry manually first" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:327 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:351 +msgid "Please cancel related transaction." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:86 +#: erpnext/assets/doctype/asset/asset.py:249 +msgid "Please capitalize this asset before submitting." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:702 +msgid "Please check Multi Currency option to allow accounts with other currency" +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:597 +msgid "Please check Process Deferred Accounting {0} and submit manually after resolving errors." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:120 +msgid "Please check either with operations or FG Based Operating Cost." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:149 +msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py:64 +msgid "Please check your Plaid client ID and secret values" +msgstr "" + +#: erpnext/crm/doctype/appointment/appointment.py:98 +#: erpnext/www/book_appointment/index.js:235 +msgid "Please check your email to confirm the appointment" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +msgid "Please click on 'Generate Schedule'" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:104 +msgid "Please click on 'Generate Schedule' to get schedule" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:58 +msgid "Please complete the job first before entering Pending Quantity" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80 +msgid "Please configure accounts for the Bank Entry rule." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:531 +msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users to {} this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:524 +msgid "Please contact your administrator to extend the credit limits for {0}." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:388 +msgid "Please convert the parent account in corresponding child company to a group account." +msgstr "" + +#: erpnext/selling/doctype/quotation/mapper.py:267 +msgid "Please create Customer from Lead {0}." +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75 +msgid "Please create a new Accounting Dimension if required." +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:89 +msgid "Please create purchase from internal sale or delivery document itself" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:463 +msgid "Please create purchase receipt or purchase invoice for the item {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:714 +msgid "Please delete Product Bundle {0}, before merging {1} into {2}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:564 +msgid "Please disable workflow temporarily for Journal Entry {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:567 +msgid "Please do not book expense of multiple assets against one single Asset." +msgstr "" + +#: erpnext/controllers/item_variant.py:301 +msgid "Please do not create more than 500 items at a time" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:185 +msgid "Please enable Applicable on Booking Actual Expenses" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:181 +msgid "Please enable Applicable on Purchase Order and Applicable on Booking Actual Expenses" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:319 +msgid "Please enable Use Old Serial / Batch Fields to make_bundle" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:24 +msgid "Please enable only if the understand the effects of enabling this." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:679 +msgid "Please enable {0} in the {1}." +msgstr "" + +#: erpnext/controllers/selling_controller.py:872 +msgid "Please enable {} in {} to allow same item in multiple rows" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 +msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:386 +msgid "Please ensure that the {0} account {1} is a Payable account. You can change the account type to Payable or select a different account." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 +msgid "Please ensure {} account is a Balance Sheet account." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 +msgid "Please ensure {} account {} is a Receivable account." +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 +msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:559 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:962 +msgid "Please enter Account for Change Amount" +msgstr "" + +#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:73 +msgid "Please enter Approving Role or Approving User" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +msgid "Please enter Batch No" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/services/gl_composer.py:19 +msgid "Please enter Cost Center" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:381 +msgid "Please enter Delivery Date" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person_tree.js:9 +msgid "Please enter Employee Id of this sales person" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +msgid "Please enter Expense Account" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.js:84 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:99 +msgid "Please enter Item Code to get Batch Number" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:3041 +msgid "Please enter Item Code to get batch no" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:85 +msgid "Please enter Item first" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:222 +msgid "Please enter Maintenance Details first" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:209 +msgid "Please enter Planned Qty for Item {0} at row {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:44 +msgid "Please enter Production Item first" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:50 +msgid "Please enter Purchase Receipt first" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:122 +msgid "Please enter Receipt Document" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:779 +msgid "Please enter Reference date" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:400 +msgid "Please enter Root Type for account- {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +msgid "Please enter Serial No" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:320 +msgid "Please enter Serial Nos" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.py:86 +msgid "Please enter Shipment Parcel information" +msgstr "" + +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js:30 +msgid "Please enter Warehouse and Date" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:501 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:958 +msgid "Please enter Write Off Account" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:511 +msgid "Please enter a valid Write Off Account" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:522 +msgid "Please enter a valid Write Off Cost Center" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:753 +msgid "Please enter a valid number of deliveries" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:696 +msgid "Please enter a valid quantity" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:690 +msgid "Please enter at least one delivery date and quantity" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.js:114 +msgid "Please enter company name first" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1383 +msgid "Please enter default currency in Company Master" +msgstr "" + +#: erpnext/selling/doctype/sms_center/sms_center.py:174 +msgid "Please enter message before sending" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:431 +msgid "Please enter mobile number first." +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:45 +msgid "Please enter parent cost center" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:186 +msgid "Please enter quantity for item {0}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:294 +msgid "Please enter relieving date." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:132 +msgid "Please enter serial nos" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:230 +msgid "Please enter the company name to confirm" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:750 +msgid "Please enter the first delivery date" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:811 +msgid "Please enter the phone number first" +msgstr "" + +#: erpnext/controllers/buying_controller.py:1193 +msgid "Please enter the {schedule_date}." +msgstr "" + +#: erpnext/public/js/setup_wizard.js:97 +msgid "Please enter valid Financial Year Start and End Dates" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:341 +msgid "Please enter {0}" +msgstr "" + +#: erpnext/public/js/utils/party.js:344 +msgid "Please enter {0} first" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sales_order_planning.py:196 +msgid "Please fill the Material Requests table" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sales_order_planning.py:147 +msgid "Please fill the Sales Orders table" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:277 +msgid "Please first set Full Name, Email and Phone for the user" +msgstr "" + +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js:94 +msgid "Please fix overlapping time slots for {0}" +msgstr "" + +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.py:72 +msgid "Please fix overlapping time slots for {0}." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:272 +msgid "Please generate To Delete list before submitting" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:70 +msgid "Please generate the To Delete list before submitting" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 +msgid "Please import accounts against parent company or enable {} in company master." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:291 +msgid "Please make sure the employees above report to another Active employee." +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:379 +msgid "Please make sure the file you are using has 'Parent Account' column present in the header." +msgstr "" + +#: erpnext/setup/doctype/company/company.js:234 +msgid "Please make sure you really want to delete all the transactions for {0}. Your master data will remain as it is. This action cannot be undone." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1025 +msgid "Please mention 'Weight UOM' along with Weight." +msgstr "" + +#: erpnext/accounts/general_ledger.py:592 +#: erpnext/accounts/general_ledger.py:599 +msgid "Please mention '{0}' in Company: {1}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:230 +msgid "Please mention no of visits required" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:73 +msgid "Please mention the Current and New BOM for replacement." +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.py:120 +msgid "Please pull items from Delivery Note" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:444 +msgid "Please rectify and try again." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +msgid "Please refresh or reset the Plaid linking of the Bank {}." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:125 +msgid "Please review the details below and click the 'Import' button to proceed." +msgstr "" + +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:43 +msgid "Please review the {0} configuration and complete any required financial setup activities." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:12 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:28 +msgid "Please save before proceeding." +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:49 +msgid "Please save first" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:903 +msgid "Please save the Sales Order before adding a delivery schedule." +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:79 +msgid "Please select Template Type to download template" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:859 +#: erpnext/public/js/controllers/taxes_and_totals.js:824 +msgid "Please select Apply Discount On" +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:846 +msgid "Please select BOM against item {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:204 +msgid "Please select BOM for Item in Row {0}" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:68 +msgid "Please select Bank Account" +msgstr "" + +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js:13 +msgid "Please select Category first" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 +#: erpnext/public/js/controllers/accounts.js:94 +#: erpnext/public/js/controllers/accounts.js:145 +msgid "Please select Charge Type first" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:148 +msgid "Please select Company" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 +msgid "Please select Company and Posting Date to getting entries" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 +msgid "Please select Company first" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:52 +msgid "Please select Completion Date for Completed Asset Maintenance Log" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:204 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:84 +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:125 +msgid "Please select Customer first" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:542 +msgid "Please select Existing Company for creating Chart of Accounts" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +msgid "Please select Finished Good Item for Service Item {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:754 +#: erpnext/assets/doctype/asset/asset.js:769 +msgid "Please select Item Code first" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 +msgid "Please select Maintenance Status as Completed or remove Completion Date" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:52 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:31 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:32 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:63 +#: erpnext/selling/report/address_and_contacts/address_and_contacts.js:27 +msgid "Please select Party Type first" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:290 +msgid "Please select Periodic Accounting Entry Difference Account" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:518 +msgid "Please select Posting Date before selecting Party" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:436 +msgid "Please select Posting Date first" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1071 +msgid "Please select Price List" +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:848 +msgid "Please select Qty against item {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:388 +msgid "Please select Sample Retention Warehouse in Stock Settings first" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:451 +msgid "Please select Serial/Batch Nos to reserve or change Reservation Based On to Qty." +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:228 +msgid "Please select Start Date and End Date for Item {0}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:309 +msgid "Please select Stock Asset Account" +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:47 +msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/mapper.py:42 +msgid "Please select a BOM" +msgstr "" + +#: erpnext/accounts/party.py:436 +#: erpnext/stock/doctype/pick_list/pick_list.py:1358 +msgid "Please select a Company" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 +#: erpnext/manufacturing/doctype/bom/bom.js:730 +#: erpnext/manufacturing/doctype/bom/bom.py:302 +#: erpnext/public/js/controllers/accounts.js:277 +#: erpnext/public/js/controllers/transaction.js:3340 +msgid "Please select a Company first." +msgstr "" + +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 +msgid "Please select a Customer" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.js:16 +msgid "Please select a Delivery Note" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +msgid "Please select a Subcontracting Purchase Order." +msgstr "" + +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:91 +msgid "Please select a Supplier" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:667 +msgid "Please select a Warehouse" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +msgid "Please select a Work Order first." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:35 +msgid "Please select a bank account to view the bank clearance summary." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:28 +msgid "Please select a bank account to view the bank reconciliation statement." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:32 +msgid "Please select a bank and set the date range" +msgstr "" + +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 +msgid "Please select a company." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.py:89 +msgid "Please select a country" +msgstr "" + +#: erpnext/accounts/report/sales_register/sales_register.py:36 +msgid "Please select a customer for fetching payments." +msgstr "" + +#: erpnext/www/book_appointment/index.js:67 +msgid "Please select a date" +msgstr "" + +#: erpnext/www/book_appointment/index.js:52 +msgid "Please select a date and time" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:187 +msgid "Please select a default mode of payment" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:827 +msgid "Please select a field to edit from numpad" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:747 +msgid "Please select a frequency for delivery schedule" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +msgid "Please select a row to create a Reposting Entry" +msgstr "" + +#: erpnext/accounts/report/purchase_register/purchase_register.py:37 +msgid "Please select a supplier for fetching payments." +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:165 +msgid "Please select a transaction." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 +msgid "Please select a valid Purchase Order that is configured for Subcontracting." +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.js:245 +msgid "Please select a value for {0} quotation_to {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.js:194 +msgid "Please select an item code before setting the warehouse." +msgstr "" + +#: erpnext/controllers/item_variant.py:295 +msgid "Please select at least one attribute value" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43 +msgid "Please select at least one filter: Item Code, Batch, or Serial No." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 +msgid "Please select at least one item to update delivered quantity." +msgstr "" + +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 +msgid "Please select at least one row to fix" +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:51 +msgid "Please select at least one row with difference value" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:546 +msgid "Please select at least one schedule." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select atleast one item to continue" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select atleast one operation to create Job Card" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 +msgid "Please select correct account" +msgstr "" + +#: erpnext/accounts/report/share_balance/share_balance.py:14 +#: erpnext/accounts/report/share_ledger/share_ledger.py:14 +msgid "Please select date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:39 +msgid "Please select dates to view the bank clearance summary." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:32 +msgid "Please select dates to view the bank reconciliation statement." +msgstr "" + +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:30 +msgid "Please select either the Item or Warehouse or Warehouse Type filter to generate the report." +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:226 +msgid "Please select item code" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:212 +#: erpnext/selling/doctype/sales_order/sales_order.js:430 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:300 +msgid "Please select items to reserve." +msgstr "" + +#: erpnext/public/js/stock_reservation.js:290 +#: erpnext/selling/doctype/sales_order/sales_order.js:561 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:398 +msgid "Please select items to unreserve." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +msgid "Please select only one row to create a Reposting Entry" +msgstr "" + +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +msgid "Please select rows to create Reposting Entries" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:98 +msgid "Please select the Company" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 +msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:433 +msgid "Please select the Warehouse first" +msgstr "" + +#: erpnext/accounts/doctype/coupon_code/coupon_code.py:48 +msgid "Please select the customer." +msgstr "" + +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:41 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:58 +msgid "Please select the document type first" +msgstr "" + +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:47 +msgid "Please select the document type first." +msgstr "" + +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:21 +msgid "Please select the required filters" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select valid document type." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.py:52 +msgid "Please select weekly off day" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +msgid "Please select {0} first" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:103 +msgid "Please set 'Apply Additional Discount On'" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:791 +msgid "Please set 'Asset Depreciation Cost Center' in Company {0}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:789 +msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}" +msgstr "" + +#: erpnext/accounts/general_ledger.py:486 +msgid "Please set '{0}' in Company: {1}" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:36 +msgid "Please set Account" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:531 +msgid "Please set Account for Change Amount" +msgstr "" + +#: erpnext/stock/__init__.py:89 +msgid "Please set Account in Warehouse {0} or Default Inventory Account in Company {1}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 +msgid "Please set Accounting Dimension {} in {}" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 +#: erpnext/accounts/doctype/pos_profile/pos_profile.js:25 +#: erpnext/accounts/doctype/pos_profile/pos_profile.js:48 +#: erpnext/accounts/doctype/pos_profile/pos_profile.js:62 +#: erpnext/accounts/doctype/pos_profile/pos_profile.js:76 +#: erpnext/accounts/doctype/pos_profile/pos_profile.js:89 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:58 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:68 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:78 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:905 +msgid "Please set Company" +msgstr "" + +#: erpnext/regional/united_arab_emirates/utils.py:26 +msgid "Please set Customer Address to determine if the transaction is an export." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:753 +msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:176 +msgid "Please set Email/Phone for the contact" +msgstr "" + +#: erpnext/regional/italy/utils.py:257 +#, python-format +msgid "Please set Fiscal Code for the customer '%s'" +msgstr "" + +#: erpnext/regional/italy/utils.py:265 +#, python-format +msgid "Please set Fiscal Code for the public administration '%s'" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:739 +msgid "Please set Fixed Asset Account in Asset Category {0}" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 +msgid "Please set Fixed Asset Account in {} against {}." +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 +msgid "Please set Parent Row No for item {0}" +msgstr "" + +#: erpnext/controllers/buying_controller.py:355 +msgid "Please set Purchase Expense Contra Account in Company {0}" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:24 +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:35 +msgid "Please set Root Type" +msgstr "" + +#: erpnext/regional/italy/utils.py:272 +#, python-format +msgid "Please set Tax ID for the customer '%s'" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 +msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" +msgstr "" + +#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:54 +msgid "Please set VAT Accounts in {0}" +msgstr "" + +#: erpnext/regional/united_arab_emirates/utils.py:83 +msgid "Please set Vat Accounts for Company: \"{0}\" in UAE VAT Settings" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:19 +msgid "Please set a Company" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:374 +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:339 +#: erpnext/stock/doctype/item/item.py:1621 +msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." +msgstr "" + +#: erpnext/projects/doctype/project/project.py:806 +msgid "Please set a default Holiday List for Company {0}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:392 +msgid "Please set a default Holiday List for Employee {0} or Company {1}" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:301 +msgid "Please set account in Warehouse {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:68 +msgid "Please set actual demand or sales forecast to generate Material Requirements Planning Report." +msgstr "" + +#: erpnext/regional/italy/utils.py:227 +#, python-format +msgid "Please set an Address on the Company '%s'" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:194 +msgid "Please set an Expense Account in the Items table" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:57 +msgid "Please set an email id for the Lead {0}" +msgstr "" + +#: erpnext/regional/italy/utils.py:283 +msgid "Please set at least one row in the Taxes and Charges Table" +msgstr "" + +#: erpnext/regional/italy/utils.py:247 +msgid "Please set both the Tax ID and Fiscal Code on Company {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 +msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 +msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgstr "" + +#: erpnext/accounts/utils.py:2568 +msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 +msgid "Please set default Expense Account in Company {0}" +msgstr "" + +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:40 +msgid "Please set default UOM in Stock Settings" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:107 +msgid "Please set default cost of goods sold account in company {0} for booking rounding gain and loss during stock transfer" +msgstr "" + +#: erpnext/controllers/stock_controller.py:153 +msgid "Please set default inventory account for item {0}, or their item group or brand." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:279 +#: erpnext/accounts/utils.py:1169 +msgid "Please set default {0} in Company {1}" +msgstr "" + +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:114 +msgid "Please set filter based on Item or Warehouse" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1296 +msgid "Please set one of the following:" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:648 +msgid "Please set opening number of booked depreciations" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2710 +msgid "Please set recurring after saving" +msgstr "" + +#: erpnext/regional/italy/utils.py:277 +msgid "Please set the Customer Address" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +msgid "Please set the Default Cost Center in {0} company." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:680 +msgid "Please set the Item Code first" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/mapper.py:101 +msgid "Please set the Target Warehouse in the Job Card" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/mapper.py:105 +msgid "Please set the WIP Warehouse in the Job Card" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:183 +msgid "Please set the cost center field in {0} or setup a default Cost Center for the Company." +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:48 +msgid "Please set up the Campaign Schedule in the Campaign {0}" +msgstr "" + +#: erpnext/public/js/queries.js:67 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:26 +msgid "Please set {0}" +msgstr "" + +#: erpnext/public/js/queries.js:34 erpnext/public/js/queries.js:49 +#: erpnext/public/js/queries.js:82 erpnext/public/js/queries.js:103 +#: erpnext/public/js/queries.js:134 +msgid "Please set {0} first." +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:214 +msgid "Please set {0} for Batched Item {1}, which is used to set {2} on Submit." +msgstr "" + +#: erpnext/regional/italy/utils.py:429 +msgid "Please set {0} for address {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:245 +msgid "Please set {0} in BOM Creator {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1145 +msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:499 +msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:360 +msgid "Please share this email with your support team so that they can find and fix the issue." +msgstr "" + +#: erpnext/stock/get_item_details.py:352 +msgid "Please specify Company" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:120 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:430 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:638 +msgid "Please specify Company to proceed" +msgstr "" + +#: erpnext/accounts/services/taxes.py:253 +#: erpnext/public/js/controllers/accounts.js:117 +msgid "Please specify a valid Row ID for row {0} in table {1}" +msgstr "" + +#: erpnext/public/js/queries.js:148 +msgid "Please specify a {0} first." +msgstr "" + +#: erpnext/controllers/item_variant.py:53 +msgid "Please specify at least one attribute in the Attributes table" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +msgid "Please specify either Quantity or Valuation Rate or both" +msgstr "" + +#: erpnext/stock/doctype/item_attribute/item_attribute.py:92 +msgid "Please specify from/to range" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 +msgid "Please try again in an hour." +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:139 +msgid "Please uncheck 'Show in Bucket View' to create Orders" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:237 +msgid "Please update Repair Status." +msgstr "" + +#. Label of a Card Break in the Selling Workspace +#: erpnext/selling/page/point_of_sale/point_of_sale.js:6 +#: erpnext/selling/workspace/selling/selling.json +msgid "Point of Sale" +msgstr "" + +#. Label of a Link in the Selling Workspace +#: erpnext/selling/workspace/selling/selling.json +msgid "Point-of-Sale Profile" +msgstr "" + +#. Label of the policy_no (Data) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Policy No" +msgstr "" + +#. Label of the policy_number (Data) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Policy number" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pond" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pood" +msgstr "" + +#. Name of a DocType +#: erpnext/utilities/doctype/portal_user/portal_user.json +msgid "Portal User" +msgstr "" + +#. Label of the portal_users_tab (Tab Break) field in DocType 'Supplier' +#. Label of the portal_users_tab (Tab Break) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Portal Users" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:407 +msgid "Possible Supplier" +msgstr "" + +#. Label of the post_description_key (Data) field in DocType 'Support Search +#. Source' +#. Label of the post_description_key (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_search_source/support_search_source.json +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Post Description Key" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Post Graduate" +msgstr "" + +#. Label of the post_route_key (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Post Route Key" +msgstr "" + +#. Label of the post_route_key_list (Data) field in DocType 'Support Search +#. Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Post Route Key List" +msgstr "" + +#. Label of the post_route (Data) field in DocType 'Support Search Source' +#. Label of the post_route_string (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_search_source/support_search_source.json +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Post Route String" +msgstr "" + +#. Label of the post_title_key (Data) field in DocType 'Support Search Source' +#. Label of the post_title_key (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_search_source/support_search_source.json +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Post Title Key" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206 +msgid "Postal Expenses" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:900 +msgid "Posted On" +msgstr "" + +#. Label of the posting_date (Date) field in DocType 'Bank Clearance Detail' +#. Label of the posting_date (Date) field in DocType 'Exchange Rate +#. Revaluation' +#. Label of the posting_date (Date) field in DocType 'GL Entry' +#. Label of the posting_date (Date) field in DocType 'Invoice Discounting' +#. Label of the posting_date (Date) field in DocType 'Journal Entry' +#. Label of the posting_date (Date) field in DocType 'Loyalty Point Entry' +#. Label of the posting_date (Date) field in DocType 'Opening Invoice Creation +#. Tool Item' +#. Label of the posting_date (Date) field in DocType 'Payment Entry' +#. Label of the posting_date (Date) field in DocType 'Payment Ledger Entry' +#. Label of the posting_date (Date) field in DocType 'Payment Order' +#. Label of the posting_date (Date) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the posting_date (Date) field in DocType 'POS Closing Entry' +#. Label of the posting_date (Date) field in DocType 'POS Invoice Merge Log' +#. Label of the posting_date (Date) field in DocType 'POS Opening Entry' +#. Label of the posting_date (Date) field in DocType 'Process Deferred +#. Accounting' +#. Option for the 'Ageing Based On' (Select) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the posting_date (Date) field in DocType 'Process Statement Of +#. Accounts' +#. Label of the posting_date (Date) field in DocType 'Process Subscription' +#. Label of the posting_date (Date) field in DocType 'Purchase Invoice' +#. Label of the posting_date (Date) field in DocType 'Repost Payment Ledger' +#. Label of the posting_date (Date) field in DocType 'Sales Invoice' +#. Label of the posting_date (Date) field in DocType 'Asset Capitalization' +#. Label of the posting_date (Date) field in DocType 'Job Card' +#. Label of the posting_date (Date) field in DocType 'Master Production +#. Schedule' +#. Label of the posting_date (Date) field in DocType 'Production Plan' +#. Label of the posting_date (Date) field in DocType 'Sales Forecast' +#. Label of the posting_date (Date) field in DocType 'Landed Cost Purchase +#. Receipt' +#. Label of the posting_date (Date) field in DocType 'Landed Cost Voucher' +#. Label of the posting_date (Date) field in DocType 'Repost Item Valuation' +#. Label of the posting_date (Date) field in DocType 'Serial No' +#. Label of the posting_date (Date) field in DocType 'Stock Closing Balance' +#. Label of the posting_date (Date) field in DocType 'Stock Entry' +#. Label of the posting_date (Date) field in DocType 'Stock Ledger Entry' +#. Label of the posting_date (Date) field in DocType 'Stock Reconciliation' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:398 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:125 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:319 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:390 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:86 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:147 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:459 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:290 +#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:306 +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/process_subscription/process_subscription.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:16 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:15 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:18 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1140 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:15 +#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:38 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:7 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 +#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 +#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/gross_profit/gross_profit.py:300 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:143 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:94 +#: erpnext/accounts/report/pos_register/pos_register.py:188 +#: erpnext/accounts/report/purchase_register/purchase_register.py:171 +#: erpnext/accounts/report/sales_register/sales_register.py:185 +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:134 +#: erpnext/public/js/purchase_trends_filters.js:38 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:27 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:68 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:65 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:94 +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:131 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:89 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:158 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:104 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:88 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:25 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:154 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:144 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:36 +#: erpnext/templates/form_grid/bank_reconciliation_grid.html:6 +msgid "Posting Date" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 +msgid "Posting Date cannot be future date" +msgstr "" + +#. Label of the exchange_gain_loss_posting_date (Select) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Posting Date inheritance for exchange gain / loss" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:1130 +msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" +msgstr "" + +#. Label of the posting_datetime (Datetime) field in DocType 'Serial and Batch +#. Bundle' +#. Label of the posting_datetime (Datetime) field in DocType 'Serial and Batch +#. Entry' +#. Label of the posting_datetime (Datetime) field in DocType 'Stock Closing +#. Balance' +#. Label of the posting_datetime (Datetime) field in DocType 'Stock Ledger +#. Entry' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:27 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:506 +msgid "Posting Datetime" +msgstr "" + +#. Label of the posting_time (Time) field in DocType 'Dunning' +#. Label of the posting_time (Time) field in DocType 'POS Closing Entry' +#. Label of the posting_time (Time) field in DocType 'POS Invoice' +#. Label of the posting_time (Time) field in DocType 'POS Invoice Merge Log' +#. Label of the posting_time (Time) field in DocType 'Purchase Invoice' +#. Label of the posting_time (Time) field in DocType 'Sales Invoice' +#. Label of the posting_time (Time) field in DocType 'Asset Capitalization' +#. Label of the posting_time (Time) field in DocType 'Delivery Note' +#. Label of the posting_time (Time) field in DocType 'Purchase Receipt' +#. Label of the posting_time (Time) field in DocType 'Repost Item Valuation' +#. Label of the posting_time (Time) field in DocType 'Stock Closing Balance' +#. Label of the posting_time (Time) field in DocType 'Stock Entry' +#. Label of the posting_time (Time) field in DocType 'Stock Ledger Entry' +#. Label of the posting_time (Time) field in DocType 'Stock Reconciliation' +#. Label of the posting_time (Time) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/gross_profit/gross_profit.py:306 +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:136 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:159 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:105 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:63 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:26 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:155 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:149 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:41 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Posting Time" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:901 +msgid "Posting date does not match the selected transaction" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:101 +msgid "Posting date is required" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:901 +msgid "Posting date matches the selected transaction" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:66 +msgid "Posting timestamp must be after {0}" +msgstr "" + +#. Option for the 'Generate Invoice At' (Select) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Postpaid (bill at period end)" +msgstr "" + +#. Description of a DocType +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Potential Sales Deal" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound-Force" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound/Cubic Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound/Cubic Inch" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound/Cubic Yard" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound/Gallon (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Pound/Gallon (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Poundal" +msgstr "" + +#: erpnext/templates/includes/footer/footer_powered.html:1 +msgid "Powered by {0}" +msgstr "" + +#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:8 +#: erpnext/accounts/doctype/shipping_rule/shipping_rule_dashboard.py:9 +#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:8 +#: erpnext/selling/doctype/customer/customer_dashboard.py:19 +#: erpnext/setup/doctype/company/company_dashboard.py:22 +msgid "Pre Sales" +msgstr "" + +#: erpnext/accounts/utils.py:2806 +msgid "Pre-Submit Warning" +msgstr "" + +#: erpnext/accounts/utils.py:2855 +msgid "Pre-Submit Warning: Credit Limit" +msgstr "" + +#: erpnext/accounts/utils.py:2867 +msgid "Pre-Submit Warning: Packed Qty" +msgstr "" + +#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Pre-filled on payment entries for this customer. Must be a company account." +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307 +msgid "Preference" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:43 +#: banking/src/components/features/Settings/SettingsDialogContent.tsx:27 +msgid "Preferences" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:33 +msgid "Preferences updated" +msgstr "" + +#. Label of the prefered_contact_email (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Preferred Contact Email" +msgstr "" + +#. Label of the prefered_email (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Preferred Email" +msgstr "" + +#. Option for the 'Generate Invoice At' (Select) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Prepaid (bill at period start)" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:34 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:51 +msgid "Prepaid Expenses" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:24 +msgid "President" +msgstr "" + +#. Label of the prevdoc_doctype (Data) field in DocType 'Packed Item' +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Prevdoc DocType" +msgstr "" + +#. Label of the prevent_pos (Check) field in DocType 'Supplier' +#. Label of the prevent_pos (Check) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Prevent POs" +msgstr "" + +#. Label of the prevent_pos (Check) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the prevent_pos (Check) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Prevent Purchase Orders" +msgstr "" + +#. Label of the prevent_rfqs (Check) field in DocType 'Supplier' +#. Label of the prevent_rfqs (Check) field in DocType 'Supplier Scorecard' +#. Label of the prevent_rfqs (Check) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the prevent_rfqs (Check) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Prevent RFQs" +msgstr "" + +#. Option for the 'Corrective/Preventive' (Select) field in DocType 'Quality +#. Action' +#: erpnext/quality_management/doctype/quality_action/quality_action.json +msgid "Preventive" +msgstr "" + +#. Label of the preventive_action (Text Editor) field in DocType 'Non +#. Conformance' +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +msgid "Preventive Action" +msgstr "" + +#. Option for the 'Maintenance Type' (Select) field in DocType 'Asset +#. Maintenance Task' +#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json +msgid "Preventive Maintenance" +msgstr "" + +#. Description of the 'Don't reserve Sales Order qty on sales return' (Check) +#. field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Prevents the automatic reservation of stock quantities from sales orders when processing sales returns." +msgstr "" + +#. Description of the 'Disable last purchase rate' (Check) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Prevents the system from automatically using the rate from the last purchase transaction when creating new purchase orders or transactions." +msgstr "" + +#. Label of the preview (Button) field in DocType 'Request for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:267 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Preview Email" +msgstr "" + +#. Label of the download_materials_request_plan_section_section (Section Break) +#. field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Preview Required Materials" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230 +msgid "Preview Transactions" +msgstr "" + +#. Label of the preview_mode (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Preview mode" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 +msgid "Previous Financial Year is not closed" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:242 +msgid "Previous Imports" +msgstr "" + +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:54 +msgid "Previous Qty" +msgstr "" + +#. Label of the previous_work_experience (Section Break) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Previous Work Experience" +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:102 +msgid "Previous Year is not closed, please close it first" +msgstr "" + +#. Option for the 'Price or Product Discount' (Select) field in DocType +#. 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:228 +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:116 +msgid "Price" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:242 +msgid "Price ({0})" +msgstr "" + +#. Label of the price_discount_scheme_section (Section Break) field in DocType +#. 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Price Discount Scheme" +msgstr "" + +#. Label of the section_break_14 (Section Break) field in DocType 'Promotional +#. Scheme' +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Price Discount Slabs" +msgstr "" + +#. Label of the selling_price_list (Link) field in DocType 'POS Invoice' +#. Label of the selling_price_list (Link) field in DocType 'POS Profile' +#. Label of the buying_price_list (Link) field in DocType 'Purchase Invoice' +#. Label of the selling_price_list (Link) field in DocType 'Sales Invoice' +#. Label of the price_list (Link) field in DocType 'Subscription Plan' +#. Label of the buying_price_list (Link) field in DocType 'Purchase Order' +#. Label of the default_price_list (Link) field in DocType 'Supplier' +#. Label of the buying_price_list (Link) field in DocType 'Supplier Quotation' +#. Label of a Link in the Buying Workspace +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM' +#. Label of the buying_price_list (Link) field in DocType 'BOM' +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM +#. Creator' +#. Label of the buying_price_list (Link) field in DocType 'BOM Creator' +#. Label of the default_price_list (Link) field in DocType 'Customer' +#. Label of the selling_price_list (Link) field in DocType 'Quotation' +#. Label of the selling_price_list (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Label of the selling_price_list (Link) field in DocType 'Delivery Note' +#. Label of the default_price_list (Link) field in DocType 'Item Default' +#. Label of the vf_default_price_list (Read Only) field in DocType 'Item +#. Default' +#. Label of the price_list_details (Section Break) field in DocType 'Item +#. Price' +#. Label of the price_list (Link) field in DocType 'Item Price' +#. Label of the buying_price_list (Link) field in DocType 'Material Request' +#. Name of a DocType +#. Label of the buying_price_list (Link) field in DocType 'Purchase Receipt' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/item/item_prices.html:81 +#: erpnext/stock/doctype/item_default/item_default.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/price_list/price_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/selling.json +msgid "Price List" +msgstr "" + +#. Label of the price_list_and_currency_section (Section Break) field in +#. DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Price List & Currency" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/price_list_country/price_list_country.json +msgid "Price List Country" +msgstr "" + +#. Label of the price_list_currency (Link) field in DocType 'POS Invoice' +#. Label of the price_list_currency (Link) field in DocType 'Purchase Invoice' +#. Label of the price_list_currency (Link) field in DocType 'Sales Invoice' +#. Label of the price_list_currency (Link) field in DocType 'Purchase Order' +#. Label of the price_list_currency (Link) field in DocType 'Supplier +#. Quotation' +#. Label of the price_list_currency (Link) field in DocType 'BOM' +#. Label of the price_list_currency (Link) field in DocType 'BOM Creator' +#. Label of the price_list_currency (Link) field in DocType 'Quotation' +#. Label of the price_list_currency (Link) field in DocType 'Sales Order' +#. Label of the price_list_currency (Link) field in DocType 'Delivery Note' +#. Label of the price_list_currency (Link) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Price List Currency" +msgstr "" + +#: erpnext/stock/get_item_details.py:1383 +msgid "Price List Currency not selected" +msgstr "" + +#. Label of the price_list_defaults_section (Section Break) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Price List Defaults" +msgstr "" + +#. Label of the plc_conversion_rate (Float) field in DocType 'POS Invoice' +#. Label of the plc_conversion_rate (Float) field in DocType 'Purchase Invoice' +#. Label of the plc_conversion_rate (Float) field in DocType 'Sales Invoice' +#. Label of the plc_conversion_rate (Float) field in DocType 'Purchase Order' +#. Label of the plc_conversion_rate (Float) field in DocType 'Supplier +#. Quotation' +#. Label of the plc_conversion_rate (Float) field in DocType 'BOM' +#. Label of the plc_conversion_rate (Float) field in DocType 'BOM Creator' +#. Label of the plc_conversion_rate (Float) field in DocType 'Quotation' +#. Label of the plc_conversion_rate (Float) field in DocType 'Sales Order' +#. Label of the plc_conversion_rate (Float) field in DocType 'Delivery Note' +#. Label of the plc_conversion_rate (Float) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Price List Exchange Rate" +msgstr "" + +#. Label of the price_list_name (Data) field in DocType 'Price List' +#: erpnext/stock/doctype/price_list/price_list.json +msgid "Price List Name" +msgstr "" + +#. Label of the price_list_rate (Currency) field in DocType 'POS Invoice Item' +#. Label of the price_list_rate (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Sales Invoice +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Supplier Quotation +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Quotation Item' +#. Label of the price_list_rate (Currency) field in DocType 'Sales Order Item' +#. Label of the price_list_rate (Currency) field in DocType 'Delivery Note +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Material Request +#. Item' +#. Label of the price_list_rate (Currency) field in DocType 'Purchase Receipt +#. Item' +#. Option for the 'Update Price List based on' (Select) field in DocType 'Stock +#. Settings' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Price List Rate" +msgstr "" + +#. Label of the base_price_list_rate (Currency) field in DocType 'POS Invoice +#. Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Purchase +#. Invoice Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Sales Invoice +#. Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Purchase +#. Order Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Supplier +#. Quotation Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Quotation +#. Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Sales Order +#. Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Delivery Note +#. Item' +#. Label of the base_price_list_rate (Currency) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Price List Rate (Company Currency)" +msgstr "" + +#: erpnext/stock/doctype/price_list/price_list.py:33 +msgid "Price List must be applicable for Buying or Selling" +msgstr "" + +#: erpnext/stock/doctype/price_list/price_list.py:88 +msgid "Price List {0} is disabled or does not exist" +msgstr "" + +#. Label of the price_not_uom_dependent (Check) field in DocType 'Price List' +#: erpnext/stock/doctype/price_list/price_list.json +msgid "Price Not UOM Dependent" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:249 +msgid "Price Per Unit ({0})" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +msgid "Price is not set for the item." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/costing.py:59 +msgid "Price not found for item {0} in price list {1}" +msgstr "" + +#. Label of the price_or_product_discount (Select) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Price or Product Discount" +msgstr "" + +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:149 +msgid "Price or product discount slabs are required" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:235 +msgid "Price per Unit (Stock UOM)" +msgstr "" + +#. Label of the prices_html (HTML) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Prices HTML" +msgstr "" + +#. Label of the pricing_tab (Tab Break) field in DocType 'Buying Settings' +#. Label of the item_price_tab (Tab Break) field in DocType 'Selling Settings' +#. Label of the pricing_tab (Tab Break) field in DocType 'Item' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/supplier/supplier_dashboard.py:13 +#: erpnext/selling/doctype/customer/customer_dashboard.py:27 +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_dashboard.py:19 +msgid "Pricing" +msgstr "" + +#. Label of the pricing_rule (Link) field in DocType 'Coupon Code' +#. Name of a DocType +#. Label of the pricing_rule (Link) field in DocType 'Pricing Rule Detail' +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json +msgid "Pricing Rule" +msgstr "" + +#. Name of a DocType +#. Label of the brands (Table) field in DocType 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Pricing Rule Brand" +msgstr "" + +#. Label of the pricing_rules (Table) field in DocType 'POS Invoice' +#. Name of a DocType +#. Label of the pricing_rules (Table) field in DocType 'Purchase Invoice' +#. Label of the pricing_rules (Table) field in DocType 'Sales Invoice' +#. Label of the pricing_rules (Table) field in DocType 'Supplier Quotation' +#. Label of the pricing_rules (Table) field in DocType 'Quotation' +#. Label of the pricing_rules (Table) field in DocType 'Sales Order' +#. Label of the pricing_rules (Table) field in DocType 'Delivery Note' +#. Label of the pricing_rules (Table) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Pricing Rule Detail" +msgstr "" + +#. Label of the pricing_rule_help (HTML) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Pricing Rule Help" +msgstr "" + +#. Name of a DocType +#. Label of the items (Table) field in DocType 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Pricing Rule Item Code" +msgstr "" + +#. Name of a DocType +#. Label of the item_groups (Table) field in DocType 'Promotional Scheme' +#: erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Pricing Rule Item Group" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:71 +msgid "Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:48 +msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." +msgstr "" + +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +msgid "Pricing Rule {0} is updated" +msgstr "" + +#. Label of the pricing_rule_details (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the pricing_rules (Small Text) field in DocType 'POS Invoice Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the pricing_rules (Small Text) field in DocType 'Purchase Invoice +#. Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the pricing_rules (Small Text) field in DocType 'Sales Invoice +#. Item' +#. Label of the section_break_48 (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the pricing_rules (Small Text) field in DocType 'Purchase Order +#. Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Supplier +#. Quotation' +#. Label of the pricing_rules (Small Text) field in DocType 'Supplier Quotation +#. Item' +#. Label of the pricing_rule_details (Section Break) field in DocType +#. 'Quotation' +#. Label of the pricing_rules (Small Text) field in DocType 'Quotation Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Sales +#. Order' +#. Label of the pricing_rules (Small Text) field in DocType 'Sales Order Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Delivery +#. Note' +#. Label of the pricing_rules (Small Text) field in DocType 'Delivery Note +#. Item' +#. Label of the pricing_rule_details (Section Break) field in DocType 'Purchase +#. Receipt' +#. Label of the pricing_rules (Small Text) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Pricing Rules" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:79 +msgid "Pricing Rules are further filtered based on quantity." +msgstr "" + +#: erpnext/public/js/utils/contact_address_quick_entry.js:73 +msgid "Primary Address Details" +msgstr "" + +#. Label of the primary_address (Text Editor) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Primary Address Preview" +msgstr "" + +#. Label of the primary_address_and_contact_detail_section (Section Break) +#. field in DocType 'Supplier' +#. Label of the primary_address_and_contact_detail (Section Break) field in +#. DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Primary Address and Contact" +msgstr "" + +#: erpnext/public/js/utils/contact_address_quick_entry.js:41 +msgid "Primary Contact Details" +msgstr "" + +#. Label of the primary_email (Read Only) field in DocType 'Process Statement +#. Of Accounts Customer' +#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json +msgid "Primary Contact Email" +msgstr "" + +#. Label of the primary_party (Dynamic Link) field in DocType 'Party Link' +#: erpnext/accounts/doctype/party_link/party_link.json +msgid "Primary Party" +msgstr "" + +#. Label of the primary_role (Link) field in DocType 'Party Link' +#: erpnext/accounts/doctype/party_link/party_link.json +msgid "Primary Role" +msgstr "" + +#. Label of the primary_settings (Section Break) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Primary Settings" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:125 +msgid "Print Format Type should be Jinja." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:129 +msgid "Print Format must be an enabled Report Print Format matching the selected Report." +msgstr "" + +#: erpnext/regional/report/irs_1099/irs_1099.js:36 +msgid "Print IRS 1099 Forms" +msgstr "" + +#. Label of the preferences (Section Break) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Print Preferences" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:63 +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:274 +msgid "Print Receipt" +msgstr "" + +#. Label of the print_receipt_on_order_complete (Check) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Print Receipt on Order Complete" +msgstr "" + +#: erpnext/setup/install.py:105 +msgid "Print UOM after Quantity" +msgstr "" + +#. Label of the print_without_amount (Check) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Print Without Amount" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207 +msgid "Print and Stationery" +msgstr "" + +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js:77 +msgid "Print settings updated in respective print format" +msgstr "" + +#: erpnext/setup/install.py:112 +msgid "Print taxes with zero amount" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:383 +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:46 +#: erpnext/accounts/report/financial_statements.html:85 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:127 +msgid "Printed on {0}" +msgstr "" + +#. Label of the printing_details (Section Break) field in DocType 'Material +#. Request' +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Printing Details" +msgstr "" + +#. Label of the printing_settings_section (Section Break) field in DocType +#. 'Dunning' +#. Label of the printing_settings (Section Break) field in DocType 'Journal +#. Entry' +#. Label of the edit_printing_settings (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the column_break5 (Section Break) field in DocType 'Purchase Order' +#. Label of the printing_settings (Section Break) field in DocType 'Request for +#. Quotation' +#. Label of the printing_settings (Section Break) field in DocType 'Supplier +#. Quotation' +#. Label of the printing_settings (Section Break) field in DocType 'Purchase +#. Receipt' +#. Label of the printing_settings (Section Break) field in DocType 'Stock +#. Entry' +#. Label of the printing_settings_section (Section Break) field in DocType +#. 'Subcontracting Order' +#. Label of the printing_settings (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Printing Settings" +msgstr "" + +#. Label of the priorities (Table) field in DocType 'Service Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Priorities" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 +msgid "Priority cannot be lesser than 1." +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 +msgid "Priority has been changed to {0}." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:161 +msgid "Priority is mandatory" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:109 +msgid "Priority {0} has been repeated." +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:38 +msgid "Private Equity" +msgstr "" + +#. Label of the probability (Percent) field in DocType 'Prospect Opportunity' +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +msgid "Probability" +msgstr "" + +#. Label of the probability (Percent) field in DocType 'Opportunity' +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "Probability (%)" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Workstation' +#. Label of the problem (Long Text) field in DocType 'Quality Action +#. Resolution' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json +msgid "Problem" +msgstr "" + +#. Label of the procedure (Link) field in DocType 'Non Conformance' +#. Label of the procedure (Link) field in DocType 'Quality Action' +#. Label of the procedure (Link) field in DocType 'Quality Goal' +#. Label of the procedure (Link) field in DocType 'Quality Review' +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +#: erpnext/quality_management/doctype/quality_action/quality_action.json +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +msgid "Procedure" +msgstr "" + +#. Label of the process_deferred_accounting (Link) field in DocType 'Journal +#. Entry' +#. Name of a DocType +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +msgid "Process Deferred Accounting" +msgstr "" + +#. Label of the process_description (Text Editor) field in DocType 'Quality +#. Procedure Process' +#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json +msgid "Process Description" +msgstr "" + +#. Label of the section_break_7qsm (Section Break) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Process Loss" +msgstr "" + +#. Label of the process_loss_per (Percent) field in DocType 'BOM Secondary +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +msgid "Process Loss %" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:967 +msgid "Process Loss Percentage cannot be greater than 100" +msgstr "" + +#. Label of the process_loss_qty (Float) field in DocType 'BOM' +#. Label of the process_loss_qty (Float) field in DocType 'BOM Secondary Item' +#. Label of the process_loss_qty (Float) field in DocType 'Job Card' +#. Label of the process_loss_qty (Float) field in DocType 'Work Order' +#. Label of the process_loss_qty (Float) field in DocType 'Work Order +#. Operation' +#. Label of the process_loss_qty (Float) field in DocType 'Stock Entry' +#. Label of the process_loss_qty (Float) field in DocType 'Subcontracting +#. Inward Order Item' +#. Label of the process_loss_qty (Float) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:96 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Process Loss Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:288 +msgid "Process Loss Quantity" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.json +msgid "Process Loss Report" +msgstr "" + +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:102 +msgid "Process Loss Value" +msgstr "" + +#. Label of the process_owner (Data) field in DocType 'Non Conformance' +#. Label of the process_owner (Link) field in DocType 'Quality Procedure' +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Process Owner" +msgstr "" + +#. Label of the process_owner_full_name (Data) field in DocType 'Quality +#. Procedure' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Process Owner Full Name" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +#: erpnext/workspace_sidebar/banking.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Process Payment Reconciliation" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Process Payment Reconciliation Log" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +msgid "Process Payment Reconciliation Log Allocations" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json +msgid "Process Period Closing Voucher" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +msgid "Process Period Closing Voucher Detail" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Process Statement Of Accounts" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_statement_of_accounts_cc/process_statement_of_accounts_cc.json +msgid "Process Statement Of Accounts CC" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json +msgid "Process Statement Of Accounts Customer" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/process_subscription/process_subscription.json +msgid "Process Subscription" +msgstr "" + +#. Label of the process_in_single_transaction (Check) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Process in Single Transaction" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +msgid "Process loss quantity cannot be negative." +msgstr "" + +#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log' +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +msgid "Processed BOMs" +msgstr "" + +#. Label of the processes (Table) field in DocType 'Quality Procedure' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Processes" +msgstr "" + +#. Label of the processing_date (Date) field in DocType 'Process Period Closing +#. Voucher Detail' +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +msgid "Processing Date" +msgstr "" + +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:52 +msgid "Processing XML Files" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:188 +msgid "Processing import..." +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier_dashboard.py:10 +msgid "Procurement" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/procurement_tracker/procurement_tracker.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Procurement Tracker" +msgstr "" + +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:214 +msgid "Produce Qty" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Produced" +msgstr "" + +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:177 +msgid "Produced / Received Qty" +msgstr "" + +#. Label of the produced_qty (Float) field in DocType 'Production Plan Item' +#. Label of the wo_produced_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the produced_qty (Float) field in DocType 'Batch' +#. Label of the produced_qty (Float) field in DocType 'Subcontracting Inward +#. Order Item' +#. Label of the produced_qty (Float) field in DocType 'Subcontracting Inward +#. Order Secondary Item' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:50 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:130 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:215 +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +msgid "Produced Qty" +msgstr "" + +#. Label of a chart in the Manufacturing Workspace +#. Label of the produced_qty (Float) field in DocType 'Sales Order Item' +#: erpnext/manufacturing/dashboard_fixtures.py:59 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Produced Quantity" +msgstr "" + +#. Option for the 'Price or Product Discount' (Select) field in DocType +#. 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Product" +msgstr "" + +#. Label of the product_bundle (Link) field in DocType 'POS Invoice Item' +#. Label of the product_bundle (Link) field in DocType 'Purchase Invoice Item' +#. Label of the product_bundle (Link) field in DocType 'Sales Invoice Item' +#. Label of the product_bundle (Link) field in DocType 'Purchase Order Item' +#. Label of a Link in the Buying Workspace +#. Name of a DocType +#. Label of the product_bundle (Link) field in DocType 'Quotation Item' +#. Label of the product_bundle (Link) field in DocType 'Sales Order Item' +#. Label of a Link in the Selling Workspace +#. Label of the product_bundle (Link) field in DocType 'Delivery Note Item' +#. Label of the product_bundle (Link) field in DocType 'Packed Item' +#. Label of the product_bundle (Link) field in DocType 'Purchase Receipt Item' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/public/js/controllers/buying.js:321 +#: erpnext/public/js/controllers/buying.js:606 +#: erpnext/selling/doctype/product_bundle/product_bundle.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json +msgid "Product Bundle" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.json +msgid "Product Bundle Balance" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:278 +msgid "Product Bundle Component" +msgstr "" + +#. Label of the product_bundle_help (HTML) field in DocType 'POS Invoice' +#. Label of the product_bundle_help (HTML) field in DocType 'Sales Invoice' +#. Label of the product_bundle_help (HTML) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Product Bundle Help" +msgstr "" + +#. Label of the product_bundle_item (Link) field in DocType 'Production Plan +#. Item' +#. Label of the product_bundle_item (Link) field in DocType 'Work Order' +#. Name of a DocType +#. Label of the product_bundle_item (Data) field in DocType 'Pick List Item' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Product Bundle Item" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:305 +msgid "Product Bundle Parent" +msgstr "" + +#. Description of the 'Product Bundle' (Link) field in DocType 'Purchase +#. Invoice Item' +#. Description of the 'Product Bundle' (Link) field in DocType 'Purchase Order +#. Item' +#. Description of the 'Product Bundle' (Link) field in DocType 'Packed Item' +#. Description of the 'Product Bundle' (Link) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Product Bundle version this row was packed from" +msgstr "" + +#: erpnext/stock/doctype/packed_item/packed_item.py:453 +msgid "Product Bundle {0} is disabled and cannot be used in transactions." +msgstr "" + +#: erpnext/stock/doctype/packed_item/packed_item.py:450 +msgid "Product Bundle {0} is not submitted" +msgstr "" + +#. Label of the product_discount_scheme_section (Section Break) field in +#. DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Product Discount Scheme" +msgstr "" + +#. Label of the section_break_15 (Section Break) field in DocType 'Promotional +#. Scheme' +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +msgid "Product Discount Slabs" +msgstr "" + +#. Option for the 'Request Type' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Product Enquiry" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:25 +msgid "Product Manager" +msgstr "" + +#. Label of the product_price_id (Data) field in DocType 'Subscription Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Product Price ID" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Workstation' +#. Label of a Card Break in the Manufacturing Workspace +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/setup/doctype/company/company.py:482 +msgid "Production" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/production_analytics/production_analytics.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Production Analytics" +msgstr "" + +#. Label of the production_capacity (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Production Capacity" +msgstr "" + +#. Label of the production_item_tab (Tab Break) field in DocType 'BOM' +#. Label of the item (Tab Break) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order/work_order_calendar.js:38 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:65 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:152 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:42 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:123 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:51 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:208 +msgid "Production Item" +msgstr "" + +#. Label of the production_item_info_section (Section Break) field in DocType +#. 'BOM' +#. Label of the production_item_info_section (Section Break) field in DocType +#. 'Work Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Production Item Info" +msgstr "" + +#. Label of the production_plan (Link) field in DocType 'Purchase Order Item' +#. Name of a DocType +#. Label of the production_plan (Link) field in DocType 'Work Order' +#. Label of a Link in the Manufacturing Workspace +#. Label of the production_plan (Link) field in DocType 'Material Request Item' +#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation +#. Entry' +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Label of the production_plan (Data) field in DocType 'Subcontracting Order' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.js:8 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1102 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Production Plan" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:169 +msgid "Production Plan Already Submitted" +msgstr "" + +#. Label of the production_plan_item (Data) field in DocType 'Purchase Order +#. Item' +#. Name of a DocType +#. Label of the production_plan_item (Data) field in DocType 'Production Plan +#. Sub Assembly Item' +#. Label of the production_plan_item (Data) field in DocType 'Work Order' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Production Plan Item" +msgstr "" + +#. Label of the prod_plan_references (Table) field in DocType 'Production Plan' +#. Name of a DocType +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json +msgid "Production Plan Item Reference" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json +msgid "Production Plan Material Request" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.json +msgid "Production Plan Material Request Warehouse" +msgstr "" + +#. Label of the production_plan_qty (Float) field in DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Production Plan Qty" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json +msgid "Production Plan Sales Order" +msgstr "" + +#. Label of the production_plan_sub_assembly_item (Data) field in DocType +#. 'Purchase Order Item' +#. Name of a DocType +#. Label of the production_plan_sub_assembly_item (Data) field in DocType 'Work +#. Order' +#. Label of the production_plan_sub_assembly_item (Data) field in DocType +#. 'Subcontracting Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Production Plan Sub Assembly Item" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:110 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.json +msgid "Production Plan Summary" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Production Planning Report" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:39 +msgid "Products" +msgstr "" + +#. Label of the accounts_module (Column Break) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Profit & Loss" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +msgid "Profit This Year" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Account' +#. Option for the 'Report Type' (Select) field in DocType 'Process Period +#. Closing Voucher Detail' +#. Label of a chart in the Financial Reports Workspace +#. Label of a chart in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/public/js/financial_statements.js:343 +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Profit and Loss" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Financial Report +#. Template' +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +msgid "Profit and Loss Statement" +msgstr "" + +#. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting +#. Statements' +#. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Profit and Loss Summary" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +msgid "Profit for the year" +msgstr "" + +#. Label of a Card Break in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Profitability" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Profitability Analysis" +msgstr "" + +#: erpnext/projects/doctype/task/task.py:155 +#, python-format +msgid "Progress % for a task cannot be more than 100." +msgstr "" + +#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:116 +msgid "Progress (%)" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:432 +msgid "Project Collaboration Invitation" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:39 +msgid "Project Id" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:26 +msgid "Project Manager" +msgstr "" + +#. Label of the project_name (Data) field in DocType 'Sales Invoice Timesheet' +#. Label of the project_name (Data) field in DocType 'Project' +#. Label of the project_name (Data) field in DocType 'Timesheet Detail' +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/projects/report/project_summary/project_summary.py:54 +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:43 +msgid "Project Name" +msgstr "" + +#: erpnext/templates/pages/projects.html:112 +msgid "Project Progress:" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:48 +msgid "Project Start Date" +msgstr "" + +#. Label of the project_status (Text) field in DocType 'Project User' +#: erpnext/projects/doctype/project_user/project_user.json +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:44 +msgid "Project Status" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/projects/report/project_summary/project_summary.json +#: erpnext/workspace_sidebar/projects.json +msgid "Project Summary" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:744 +msgid "Project Summary for {0}" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/doctype/project_template/project_template.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Project Template" +msgstr "" + +#. Name of a DocType +#: erpnext/projects/doctype/project_template_task/project_template_task.json +msgid "Project Template Task" +msgstr "" + +#. Label of the project_type (Link) field in DocType 'Project' +#. Label of the project_type (Link) field in DocType 'Project Template' +#. Name of a DocType +#. Label of the project_type (Data) field in DocType 'Project Type' +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project_template/project_template.json +#: erpnext/projects/doctype/project_type/project_type.json +#: erpnext/projects/report/project_summary/project_summary.js:30 +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Project Type" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/doctype/project_update/project_update.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Project Update" +msgstr "" + +#: erpnext/config/projects.py:44 +msgid "Project Update." +msgstr "" + +#. Name of a DocType +#: erpnext/projects/doctype/project_user/project_user.json +msgid "Project User" +msgstr "" + +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:47 +msgid "Project Value" +msgstr "" + +#: erpnext/config/projects.py:20 +msgid "Project activity / task." +msgstr "" + +#: erpnext/config/projects.py:13 +msgid "Project master." +msgstr "" + +#. Description of the 'Users' (Table) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Project will be accessible on the website to these users" +msgstr "" + +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Project wise Stock Tracking" +msgstr "" + +#. Name of a report +#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.json +msgid "Project wise Stock Tracking " +msgstr "" + +#: erpnext/controllers/trends.py:446 +msgid "Project-wise data is not available for Quotation" +msgstr "" + +#. Label of the projected_on_hand (Float) field in DocType 'Material Request +#. Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Projected On Hand" +msgstr "" + +#. Label of the projected_qty (Float) field in DocType 'Material Request Plan +#. Item' +#. Label of the projected_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the projected_qty (Float) field in DocType 'Quotation Item' +#. Label of the projected_qty (Float) field in DocType 'Sales Order Item' +#. Label of the projected_qty (Float) field in DocType 'Bin' +#. Label of the projected_qty (Float) field in DocType 'Material Request Item' +#. Label of the projected_qty (Float) field in DocType 'Packed Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:46 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/dashboard/item_dashboard_list.html:37 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:73 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:206 +#: erpnext/templates/emails/reorder_item.html:12 +msgid "Projected Qty" +msgstr "" + +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:130 +msgid "Projected Quantity" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:184 +msgid "Projected Quantity Formula" +msgstr "" + +#: erpnext/stock/page/stock_balance/stock_balance.js:51 +msgid "Projected qty" +msgstr "" + +#. Label of a Desktop Icon +#. Name of a Workspace +#. Label of a Card Break in the Projects Workspace +#. Title of a Workspace Sidebar +#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json +#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/selling/doctype/customer/customer_dashboard.py:26 +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 +#: erpnext/setup/doctype/company/company_dashboard.py:25 +#: erpnext/workspace_sidebar/projects.json +msgid "Projects" +msgstr "" + +#. Name of a role +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project_type/project_type.json +#: erpnext/projects/doctype/task_type/task_type.json +msgid "Projects Manager" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/doctype/projects_settings/projects_settings.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Projects Settings" +msgstr "" + +#. Title of the Module Onboarding 'Projects Onboarding' +#: erpnext/projects/module_onboarding/projects_onboarding/projects_onboarding.json +msgid "Projects Setup" +msgstr "" + +#. Name of a role +#: erpnext/projects/doctype/activity_cost/activity_cost.json +#: erpnext/projects/doctype/activity_type/activity_type.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project_type/project_type.json +#: erpnext/projects/doctype/project_update/project_update.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/doctype/task_type/task_type.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/setup/doctype/company/company.json +msgid "Projects User" +msgstr "" + +#. Option for the 'Coupon Type' (Select) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Promotional" +msgstr "" + +#. Label of the promotional_scheme (Link) field in DocType 'Pricing Rule' +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Promotional Scheme" +msgstr "" + +#. Label of the promotional_scheme_id (Data) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Promotional Scheme Id" +msgstr "" + +#. Label of the price_discount_slabs (Table) field in DocType 'Promotional +#. Scheme' +#. Name of a DocType +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "Promotional Scheme Price Discount" +msgstr "" + +#. Label of the product_discount_slabs (Table) field in DocType 'Promotional +#. Scheme' +#. Name of a DocType +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Promotional Scheme Product Discount" +msgstr "" + +#. Label of the prompt_qty (Check) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Prompt Qty" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:264 +msgid "Proposal Writing" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:7 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:443 +msgid "Proposal/Price Quote" +msgstr "" + +#. Label of the prorate (Check) field in DocType 'Subscription Settings' +#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json +msgid "Prorate" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the CRM Workspace +#. Label of the prospect_name (Link) field in DocType 'Customer' +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/lead/lead.js:36 erpnext/crm/doctype/lead/lead.js:62 +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/workspace_sidebar/crm.json +msgid "Prospect" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/prospect_lead/prospect_lead.json +msgid "Prospect Lead" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json +msgid "Prospect Opportunity" +msgstr "" + +#. Label of the prospect_owner (Link) field in DocType 'Prospect' +#: erpnext/crm/doctype/prospect/prospect.json +msgid "Prospect Owner" +msgstr "" + +#: erpnext/crm/doctype/lead/lead.py:308 +msgid "Prospect {0} already exists" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:1 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:437 +msgid "Prospecting" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Prospects Engaged But Not Converted" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +msgid "Protected DocType" +msgstr "" + +#. Description of the 'Company Email' (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Provide Email Address registered in company" +msgstr "" + +#. Option for the 'Bank Guarantee Type' (Select) field in DocType 'Bank +#. Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Providing" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:581 +msgid "Provisional Account" +msgstr "" + +#. Label of the default_provisional_account (Link) field in DocType 'Item +#. Default' +#. Label of the vf_default_provisional_account (Read Only) field in DocType +#. 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Provisional Account (Service)" +msgstr "" + +#. Label of the provisional_expense_account (Link) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Provisional Expense Account" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +msgid "Provisional Profit / Loss (Credit)" +msgstr "" + +#. Description of the 'Provisional Account (Service)' (Link) field in DocType +#. 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Provisional liability account used for service items before invoice is received" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Psi/1000 Feet" +msgstr "" + +#. Label of the publish_date (Date) field in DocType 'Video' +#: erpnext/utilities/doctype/video/video.json +msgid "Publish Date" +msgstr "" + +#: erpnext/utilities/report/youtube_interactions/youtube_interactions.py:22 +msgid "Published Date" +msgstr "" + +#. Label of the publisher (Data) field in DocType 'Code List' +#: erpnext/edi/doctype/code_list/code_list.json +msgid "Publisher" +msgstr "" + +#. Label of the publisher_id (Data) field in DocType 'Code List' +#: erpnext/edi/doctype/code_list/code_list.json +msgid "Publisher ID" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:39 +msgid "Publishing" +msgstr "" + +#. Option for the 'Invoice Type' (Select) field in DocType 'Opening Invoice +#. Creation Tool' +#. Option for the 'Transfer Type' (Select) field in DocType 'Share Transfer' +#. Option for the 'Tax Type' (Select) field in DocType 'Tax Rule' +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Option for the 'Default Material Request Type' (Select) field in DocType +#. 'Item' +#. Label of the section_break_fwyn (Section Break) field in DocType 'Item Lead +#. Time' +#. Option for the 'Material Request Type' (Select) field in DocType 'Item +#. Reorder' +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:10 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:9 +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template_dashboard.py:15 +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule_dashboard.py:11 +#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:10 +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/projects/doctype/project/project_dashboard.py:16 +#: erpnext/setup/doctype/company/company.py:470 erpnext/setup/install.py:402 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_list.js:30 +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/item_reorder/item_reorder.json +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Purchase" +msgstr "" + +#. Label of the purchase_amount (Currency) field in DocType 'Loyalty Point +#. Entry' +#. Label of the purchase_amount (Currency) field in DocType 'Asset' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:155 +#: erpnext/assets/doctype/asset/asset.json +msgid "Purchase Amount" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/purchase_analytics/purchase_analytics.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Purchase Analytics" +msgstr "" + +#. Label of the purchase_date (Date) field in DocType 'Asset' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:206 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:489 +msgid "Purchase Date" +msgstr "" + +#. Label of the purchase_defaults (Section Break) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Purchase Defaults" +msgstr "" + +#. Label of the purchase_details_section (Section Break) field in DocType +#. 'Asset' +#. Label of the section_break_6 (Section Break) field in DocType 'Asset +#. Capitalization Stock Item' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +msgid "Purchase Details" +msgstr "" + +#. Label of the purchase_expense_section (Section Break) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Purchase Expense" +msgstr "" + +#. Label of the purchase_expense_account (Link) field in DocType 'Company' +#. Label of the purchase_expense_account (Link) field in DocType 'Item Default' +#. Label of the vf_purchase_expense_account (Read Only) field in DocType 'Item +#. Default' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Purchase Expense Account" +msgstr "" + +#. Label of the purchase_expense_contra_account (Link) field in DocType +#. 'Company' +#. Label of the purchase_expense_contra_account (Link) field in DocType 'Item +#. Default' +#. Label of the vf_purchase_expense_contra_account (Read Only) field in DocType +#. 'Item Default' +#: erpnext/setup/doctype/company/company.json +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Purchase Expense Contra Account" +msgstr "" + +#: erpnext/controllers/buying_controller.py:365 +#: erpnext/controllers/buying_controller.py:379 +msgid "Purchase Expense for Item {0}" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Option for the 'Invoice Type' (Select) field in DocType 'Payment +#. Reconciliation Invoice' +#. Name of a DocType +#. Label of the purchase_invoice (Link) field in DocType 'Asset' +#. Label of the purchase_invoice (Link) field in DocType 'Asset Repair Purchase +#. Invoice' +#. Label of a Link in the Buying Workspace +#. Option for the 'Document Type' (Select) field in DocType 'Contract' +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Item' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Purchase Receipt' +#. Label of the purchase_invoice (Link) field in DocType 'Purchase Receipt +#. Item' +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:60 +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/print_format/purchase_auditing_voucher/purchase_auditing_voucher.html:5 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js:22 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:53 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json +#: erpnext/buying/doctype/buying_settings/buying_settings.js:48 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:382 +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:63 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:21 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:118 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:263 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:30 +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:441 +#: erpnext/workspace_sidebar/buying.json +#: erpnext/workspace_sidebar/invoicing.json +msgid "Purchase Invoice" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +msgid "Purchase Invoice Advance" +msgstr "" + +#. Name of a DocType +#. Label of the purchase_invoice_item (Data) field in DocType 'Purchase Invoice +#. Item' +#. Label of the purchase_invoice_item (Data) field in DocType 'Asset' +#. Label of the purchase_invoice_item (Data) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Purchase Invoice Item" +msgstr "" + +#. Label of the purchase_invoice_settings_section (Section Break) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Purchase Invoice Settings" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Purchase Invoice Trends" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:336 +msgid "Purchase Invoice cannot be made against an existing asset {0}" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +msgid "Purchase Invoice {0} is already submitted" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:918 +msgid "Purchase Invoices" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Label of the purchase_order (Link) field in DocType 'Purchase Invoice Item' +#. Label of the purchase_order (Link) field in DocType 'Sales Invoice Item' +#. Name of a DocType +#. Label of the purchase_order (Link) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of a Link in the Buying Workspace +#. Option for the 'Document Type' (Select) field in DocType 'Contract' +#. Label of the purchase_order (Link) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the purchase_order (Link) field in DocType 'Sales Order Item' +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Label of the purchase_order (Link) field in DocType 'Delivery Note Item' +#. Label of the purchase_order (Link) field in DocType 'Purchase Receipt Item' +#. Label of the purchase_order (Link) field in DocType 'Stock Entry' +#. Label of the purchase_order (Link) field in DocType 'Subcontracting Receipt +#. Item' +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:61 +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:156 +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:237 +#: erpnext/accounts/report/purchase_register/purchase_register.py:218 +#: erpnext/buying/doctype/buying_settings/buying_settings.js:47 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/controllers/buying_controller.py:929 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:54 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:179 +#: erpnext/selling/doctype/sales_order/sales_order.js:1149 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request/material_request.js:196 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:217 +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/buying.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Purchase Order" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +msgid "Purchase Order Amount" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +msgid "Purchase Order Amount(Company Currency)" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/buying.json +msgid "Purchase Order Analysis" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +msgid "Purchase Order Date" +msgstr "" + +#. Label of the po_detail (Data) field in DocType 'Purchase Invoice Item' +#. Label of the purchase_order_item (Data) field in DocType 'Sales Invoice +#. Item' +#. Name of a DocType +#. Label of the purchase_order_item (Data) field in DocType 'Sales Order Item' +#. Label of the purchase_order_item (Data) field in DocType 'Delivery Note +#. Item' +#. Label of the purchase_order_item (Data) field in DocType 'Purchase Receipt +#. Item' +#. Label of the purchase_order_item (Data) field in DocType 'Subcontracting +#. Order Item' +#. Label of the purchase_order_item (Data) field in DocType 'Subcontracting +#. Order Service Item' +#. Label of the purchase_order_item (Data) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Purchase Order Item" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:60 +msgid "Purchase Order Item reference is missing in Subcontracting Receipt {0}" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:186 +msgid "Purchase Order Items not received on time" +msgstr "" + +#. Label of the pricing_rules (Table) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Purchase Order Pricing Rule" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:471 +msgid "Purchase Order Required" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 +msgid "Purchase Order Required for item {}" +msgstr "" + +#. Name of a report +#. Label of a chart in the Buying Workspace +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Purchase Order Trends" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1670 +msgid "Purchase Order already created for all Sales Order items" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:319 +msgid "Purchase Order number required for Item {0}" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1362 +msgid "Purchase Order {0} created" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:529 +msgid "Purchase Order {0} is not submitted" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.py:582 +msgid "Purchase Orders" +msgstr "" + +#. Label of a number card in the Buying Workspace +#: erpnext/buying/workspace/buying/buying.json +msgid "Purchase Orders Count" +msgstr "" + +#. Label of the purchase_orders_items_overdue (Check) field in DocType 'Email +#. Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Purchase Orders Items Overdue" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.py:277 +msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}." +msgstr "" + +#. Label of the purchase_orders_to_bill (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Purchase Orders to Bill" +msgstr "" + +#. Label of the purchase_orders_to_receive (Check) field in DocType 'Email +#. Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Purchase Orders to Receive" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1236 +msgid "Purchase Orders {0} are un-linked" +msgstr "" + +#: erpnext/stock/report/item_prices/item_prices.py:59 +msgid "Purchase Price List" +msgstr "" + +#. Label of the purchase_receipt (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the purchase_receipt (Link) field in DocType 'Asset' +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Item' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Purchase Receipt' +#. Name of a DocType +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:62 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:181 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:647 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:657 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:49 +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:244 +#: erpnext/accounts/report/purchase_register/purchase_register.py:225 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js:22 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:21 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/buying/doctype/buying_settings/buying_settings.js:49 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:361 +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:69 +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:151 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:68 +#: erpnext/workspace_sidebar/stock.json +msgid "Purchase Receipt" +msgstr "" + +#. Description of the 'Auto create Purchase Receipt' (Check) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Purchase Receipt (Draft) will be auto-created on submission of Subcontracting Receipt." +msgstr "" + +#. Label of the pr_detail (Data) field in DocType 'Purchase Invoice Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +msgid "Purchase Receipt Detail" +msgstr "" + +#. Label of the purchase_receipt_item (Data) field in DocType 'Asset' +#. Label of the purchase_receipt_item (Data) field in DocType 'Asset +#. Capitalization Stock Item' +#. Label of the purchase_receipt_item (Data) field in DocType 'Landed Cost +#. Item' +#. Name of a DocType +#. Label of the purchase_receipt_item (Data) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Purchase Receipt Item" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +msgid "Purchase Receipt Item Supplied" +msgstr "" + +#. Label of the purchase_receipt_no (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Purchase Receipt No" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:493 +msgid "Purchase Receipt Required" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 +msgid "Purchase Receipt Required for item {}" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Purchase Receipt Trends" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/buying.json +msgid "Purchase Receipt Trends " +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 +msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 +msgid "Purchase Receipt {0} created." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:533 +msgid "Purchase Receipt {0} is not submitted" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/purchase_register/purchase_register.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Purchase Register" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:253 +msgid "Purchase Return" +msgstr "" + +#. Label of the purchase_tax_template (Link) field in DocType 'Tax Rule' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/setup/doctype/company/company.js:161 +#: erpnext/workspace_sidebar/taxes.json +msgid "Purchase Tax Template" +msgstr "" + +#. Label of the purchase_tax_withholding_category (Link) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Purchase Tax Withholding Category" +msgstr "" + +#. Label of the taxes (Table) field in DocType 'Purchase Invoice' +#. Name of a DocType +#. Label of the taxes (Table) field in DocType 'Purchase Taxes and Charges +#. Template' +#. Label of the taxes (Table) field in DocType 'Purchase Order' +#. Label of the taxes (Table) field in DocType 'Supplier Quotation' +#. Label of the taxes (Table) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Purchase Taxes and Charges" +msgstr "" + +#. Label of the purchase_taxes_and_charges_template (Link) field in DocType +#. 'Payment Entry' +#. Label of the taxes_and_charges (Link) field in DocType 'Purchase Invoice' +#. Name of a DocType +#. Label of the purchase_tax_template (Link) field in DocType 'Subscription' +#. Label of a Link in the Invoicing Workspace +#. Label of the taxes_and_charges (Link) field in DocType 'Purchase Order' +#. Label of the taxes_and_charges (Link) field in DocType 'Supplier Quotation' +#. Label of a Link in the Buying Workspace +#. Label of the taxes_and_charges (Link) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Purchase Taxes and Charges Template" +msgstr "" + +#. Label of the purchase_time (Int) field in DocType 'Item Lead Time' +#. Label of the purchase_lead_time_tab (Tab Break) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Purchase Time" +msgstr "" + +#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.py:57 +msgid "Purchase Value" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:35 +msgid "Purchase Voucher No" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:29 +msgid "Purchase Voucher Type" +msgstr "" + +#: erpnext/utilities/activation.py:107 +msgid "Purchase orders help you plan and follow up on your purchases" +msgstr "" + +#. Option for the 'Current State' (Select) field in DocType 'Share Balance' +#: erpnext/accounts/doctype/share_balance/share_balance.json +msgid "Purchased" +msgstr "" + +#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:143 +msgid "Purchases" +msgstr "" + +#. Option for the 'Order Type' (Select) field in DocType 'Blanket Order' +#. Label of the purchasing_tab (Tab Break) field in DocType 'Item' +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:27 +#: erpnext/stock/doctype/item/item.json +msgid "Purchasing" +msgstr "" + +#. Label of the purpose (Select) field in DocType 'Asset Movement' +#. Label of the material_request_type (Select) field in DocType 'Material +#. Request' +#. Label of the purpose (Select) field in DocType 'Pick List' +#. Label of the purpose (Select) field in DocType 'Stock Entry' +#. Label of the purpose (Select) field in DocType 'Stock Entry Type' +#. Label of the purpose (Select) field in DocType 'Stock Reconciliation' +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163 +#: erpnext/stock/doctype/item/item_list.js:41 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:476 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Purpose" +msgstr "" + +#. Label of the purposes (Table) field in DocType 'Maintenance Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Purposes" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:56 +msgid "Purposes Required" +msgstr "" + +#. Label of the putaway_rule (Link) field in DocType 'Purchase Receipt Item' +#. Name of a DocType +#. Label of the putaway_rule (Link) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Putaway Rule" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:53 +msgid "Putaway Rule already exists for Item {0} in Warehouse {1}." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:41 +msgid "Q1" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:49 +msgid "Q2" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:57 +msgid "Q3" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:65 +msgid "Q4" +msgstr "" + +#. Label of the free_qty (Float) field in DocType 'Pricing Rule' +#. Label of the free_qty (Float) field in DocType 'Promotional Scheme Product +#. Discount' +#. Label of the qty (Float) field in DocType 'Asset Capitalization Service +#. Item' +#. Label of the qty (Float) field in DocType 'Opportunity Item' +#. Label of the qty (Float) field in DocType 'BOM Creator Item' +#. Label of the qty (Float) field in DocType 'BOM Item' +#. Label of the qty (Float) field in DocType 'BOM Secondary Item' +#. Label of the qty (Float) field in DocType 'BOM Website Item' +#. Label of the qty_section (Section Break) field in DocType 'Job Card Item' +#. Label of the stock_qty (Float) field in DocType 'Job Card Secondary Item' +#. Label of the qty (Float) field in DocType 'Production Plan Item Reference' +#. Label of the qty (Float) field in DocType 'Work Order Additional Item' +#. Label of the qty_section (Section Break) field in DocType 'Work Order Item' +#. Label of the qty (Float) field in DocType 'Delivery Schedule Item' +#. Label of the qty (Float) field in DocType 'Product Bundle Item' +#. Label of the qty (Float) field in DocType 'Landed Cost Item' +#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges' +#. Option for the 'Distribute Charges Based On' (Select) field in DocType +#. 'Landed Cost Voucher' +#. Label of the qty (Float) field in DocType 'Packed Item' +#. Label of the qty (Float) field in DocType 'Pick List Item' +#. Label of the qty (Float) field in DocType 'Serial and Batch Entry' +#. Label of the qty (Float) field in DocType 'Stock Entry Detail' +#. Option for the 'Reservation Based On' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Option for the 'Distribute Additional Costs Based On ' (Select) field in +#. DocType 'Subcontracting Order' +#. Option for the 'Distribute Additional Costs Based On ' (Select) field in +#. DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +#: erpnext/accounts/report/gross_profit/gross_profit.py:345 +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:242 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:226 +#: erpnext/controllers/trends.py:287 erpnext/controllers/trends.py:299 +#: erpnext/controllers/trends.py:304 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/bom/bom.js:1108 +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:28 +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:69 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:235 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:333 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 +#: erpnext/public/js/stock_reservation.js:134 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:395 +#: erpnext/selling/doctype/sales_order/sales_order.js:532 +#: erpnext/selling/doctype/sales_order/sales_order.js:622 +#: erpnext/selling/doctype/sales_order/sales_order.js:669 +#: erpnext/selling/doctype/sales_order/sales_order.js:1344 +#: erpnext/selling/doctype/sales_order/sales_order.js:1506 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:266 +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/templates/form_grid/item_grid.html:7 +#: erpnext/templates/form_grid/material_request_grid.html:9 +#: erpnext/templates/form_grid/stock_entry_grid.html:10 +#: erpnext/templates/generators/bom.html:50 erpnext/templates/pages/rfq.html:40 +msgid "Qty" +msgstr "" + +#: erpnext/templates/pages/order.html:178 +msgid "Qty " +msgstr "" + +#. Label of the received_qty (Float) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Qty (As per BOM)" +msgstr "" + +#. Label of the company_total_stock (Float) field in DocType 'Sales Invoice +#. Item' +#. Label of the company_total_stock (Float) field in DocType 'Quotation Item' +#. Label of the company_total_stock (Float) field in DocType 'Sales Order Item' +#. Label of the company_total_stock (Float) field in DocType 'Delivery Note +#. Item' +#. Label of the company_total_stock (Float) field in DocType 'Pick List Item' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Qty (Company)" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Sales Invoice Item' +#. Label of the actual_qty (Float) field in DocType 'Quotation Item' +#. Label of the actual_qty (Float) field in DocType 'Sales Order Item' +#. Label of the actual_qty (Float) field in DocType 'Delivery Note Item' +#. Label of the actual_qty (Float) field in DocType 'Pick List Item' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Qty (Warehouse)" +msgstr "" + +#. Label of the stock_qty (Float) field in DocType 'Pick List Item' +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Qty (in Stock UOM)" +msgstr "" + +#. Label of the qty_after_transaction (Float) field in DocType 'Stock Ledger +#. Entry' +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:66 +msgid "Qty After Transaction" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' +#. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' +#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:188 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:91 +msgid "Qty Change" +msgstr "" + +#. Label of the qty_consumed_per_unit (Float) field in DocType 'BOM Explosion +#. Item' +#. Label of the qty_consumed_per_unit (Float) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Qty Consumed Per Unit" +msgstr "" + +#. Label of the actual_qty (Float) field in DocType 'Material Request Plan +#. Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "Qty In Stock" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:117 +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:174 +msgid "Qty Per Unit" +msgstr "" + +#. Label of the for_quantity (Float) field in DocType 'Job Card' +#. Label of the qty (Float) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/bom/bom.js:408 +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:84 +msgid "Qty To Manufacture" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:268 +msgid "Qty To Manufacture in the job card cannot be greater than Qty To Manufacture in the work order for the operation {0}.

            Solution: Either you can reduce the Qty To Manufacture in the job card or set the 'Overproduction Percentage For Work Order' in the {1}." +msgstr "" + +#. Label of the qty_to_produce (Float) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Qty To Produce" +msgstr "" + +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:56 +msgid "Qty Wise Chart" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Asset +#. Capitalization Service Item' +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +msgid "Qty and Rate" +msgstr "" + +#. Label of the tracking_section (Section Break) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Qty as Per Stock UOM" +msgstr "" + +#. Label of the stock_qty (Float) field in DocType 'POS Invoice Item' +#. Label of the stock_qty (Float) field in DocType 'Sales Invoice Item' +#. Label of the stock_qty (Float) field in DocType 'Request for Quotation Item' +#. Label of the stock_qty (Float) field in DocType 'Supplier Quotation Item' +#. Label of the stock_qty (Float) field in DocType 'Quotation Item' +#. Label of the stock_qty (Float) field in DocType 'Sales Order Item' +#. Label of the transfer_qty (Float) field in DocType 'Stock Entry Detail' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Qty as per Stock UOM" +msgstr "" + +#. Description of the 'Apply Recursion Over (As Per Transaction UOM)' (Float) +#. field in DocType 'Pricing Rule' +#. Description of the 'Apply Recursion Over (As Per Transaction UOM)' (Float) +#. field in DocType 'Promotional Scheme Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Qty for which recursion isn't applicable." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1057 +#: erpnext/manufacturing/doctype/work_order/work_order.js:1080 +msgid "Qty for {0}" +msgstr "" + +#. Label of the stock_qty (Float) field in DocType 'Purchase Order Item' +#. Label of the stock_qty (Float) field in DocType 'Delivery Note Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:233 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +msgid "Qty in Stock UOM" +msgstr "" + +#. Label of the for_qty (Float) field in DocType 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.js:206 +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Qty of Finished Goods Item" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:677 +msgid "Qty of Finished Goods Item should be greater than 0." +msgstr "" + +#. Description of the 'Qty of Finished Goods Item' (Float) field in DocType +#. 'Pick List' +#: erpnext/stock/doctype/pick_list/pick_list.json +msgid "Qty of raw materials will be decided based on the qty of the Finished Goods Item" +msgstr "" + +#. Label of the consumed_qty (Float) field in DocType 'Purchase Receipt Item +#. Supplied' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +msgid "Qty to Be Consumed" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:270 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:294 +msgid "Qty to Bill" +msgstr "" + +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +msgid "Qty to Build" +msgstr "" + +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:280 +msgid "Qty to Deliver" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:396 +msgid "Qty to Disassemble" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:385 +msgid "Qty to Fetch" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:246 +#: erpnext/manufacturing/doctype/job_card/job_card.py:962 +msgid "Qty to Manufacture" +msgstr "" + +#. Label of the qty (Float) field in DocType 'Production Plan Sub Assembly +#. Item' +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:170 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:261 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Qty to Order" +msgstr "" + +#. Label of the finished_good_qty (Float) field in DocType 'BOM Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:129 +msgid "Qty to Produce" +msgstr "" + +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:173 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:254 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:541 +msgid "Qty to Receive" +msgstr "" + +#. Label of the qualification_tab (Section Break) field in DocType 'Lead' +#. Label of the qualification (Data) field in DocType 'Employee Education' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/setup/doctype/employee_education/employee_education.json +#: erpnext/setup/setup_wizard/data/sales_stage.txt:2 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:438 +msgid "Qualification" +msgstr "" + +#. Label of the qualification_status (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Qualification Status" +msgstr "" + +#. Option for the 'Qualification Status' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Qualified" +msgstr "" + +#. Label of the qualified_by (Link) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Qualified By" +msgstr "" + +#. Label of the qualified_on (Date) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Qualified on" +msgstr "" + +#. Label of a Desktop Icon +#. Name of a Workspace +#. Label of the quality_tab (Tab Break) field in DocType 'Item' +#. Label of the quality_tab (Tab Break) field in DocType 'Stock Settings' +#. Title of a Workspace Sidebar +#: erpnext/desktop_icon/quality.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/stock/doctype/batch/batch_dashboard.py:11 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality" +msgstr "" + +#. Name of a DocType +#. Option for the 'Document Type' (Select) field in DocType 'Quality Meeting +#. Minutes' +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_action/quality_action.json +#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Action" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json +msgid "Quality Action Resolution" +msgstr "" + +#. Name of a DocType +#. Option for the 'Document Type' (Select) field in DocType 'Quality Meeting +#. Minutes' +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json +#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Feedback" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_feedback_parameter/quality_feedback_parameter.json +msgid "Quality Feedback Parameter" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Quality Workspace +#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json +#: erpnext/quality_management/workspace/quality/quality.json +msgid "Quality Feedback Template" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_feedback_template_parameter/quality_feedback_template_parameter.json +msgid "Quality Feedback Template Parameter" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Goal" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json +msgid "Quality Goal Objective" +msgstr "" + +#. Label of the quality_inspection (Link) field in DocType 'POS Invoice Item' +#. Label of the quality_inspection (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the quality_inspection (Link) field in DocType 'Sales Invoice Item' +#. Label of the quality_inspection_section_break (Section Break) field in +#. DocType 'BOM' +#. Label of the quality_inspection (Link) field in DocType 'Job Card' +#. Label of the quality_inspection_section (Section Break) field in DocType +#. 'Job Card' +#. Label of a Link in the Quality Workspace +#. Label of the quality_inspection (Link) field in DocType 'Delivery Note Item' +#. Label of the quality_inspection (Link) field in DocType 'Purchase Receipt +#. Item' +#. Name of a DocType +#. Group in Quality Inspection Template's connections +#. Label of the quality_inspection (Link) field in DocType 'Stock Entry Detail' +#. Label of a Link in the Stock Workspace +#. Label of the quality_inspection (Link) field in DocType 'Subcontracting +#. Receipt Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/manufacturing/doctype/bom/bom.js:277 +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/workspace_sidebar/quality.json erpnext/workspace_sidebar/stock.json +msgid "Quality Inspection" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:108 +msgid "Quality Inspection Analysis" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2973 +msgid "Quality Inspection Not Configured" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +msgid "Quality Inspection Parameter" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json +msgid "Quality Inspection Parameter Group" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Quality Inspection Reading" +msgstr "" + +#. Label of the inspection_required (Check) field in DocType 'BOM' +#. Label of the quality_inspection_required (Check) field in DocType 'BOM +#. Operation' +#. Label of the quality_inspection_required (Check) field in DocType 'Work +#. Order Operation' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Quality Inspection Required" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Quality Inspection Summary" +msgstr "" + +#. Label of the quality_inspection_template (Link) field in DocType 'BOM' +#. Label of the quality_inspection_template (Link) field in DocType 'Job Card' +#. Label of the quality_inspection_template (Link) field in DocType 'Operation' +#. Label of the quality_inspection_template (Link) field in DocType 'Item' +#. Label of the quality_inspection_template (Link) field in DocType 'Quality +#. Inspection' +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/operation/operation.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/quality.json erpnext/workspace_sidebar/stock.json +msgid "Quality Inspection Template" +msgstr "" + +#. Label of the quality_inspection_template_name (Data) field in DocType +#. 'Quality Inspection Template' +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +msgid "Quality Inspection Template Name" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:857 +msgid "Quality Inspection is required for the item {0} before completing the job card {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:876 +msgid "Quality Inspection {0} is not submitted for the item: {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:886 +msgid "Quality Inspection {0} is rejected for the item: {1}" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:208 +msgid "Quality Inspection(s)" +msgstr "" + +#. Label of a chart in the Quality Workspace +#: erpnext/quality_management/workspace/quality/quality.json +msgid "Quality Inspections" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:512 +msgid "Quality Management" +msgstr "" + +#. Name of a role +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_activity/asset_activity.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_category/asset_category.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +msgid "Quality Manager" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_meeting/quality_meeting.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Meeting" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.json +msgid "Quality Meeting Agenda" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json +msgid "Quality Meeting Minutes" +msgstr "" + +#. Name of a DocType +#. Label of the quality_procedure_name (Data) field in DocType 'Quality +#. Procedure' +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure_tree.js:10 +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Procedure" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json +msgid "Quality Procedure Process" +msgstr "" + +#. Option for the 'Document Type' (Select) field in DocType 'Quality Meeting +#. Minutes' +#. Name of a DocType +#. Label of a Link in the Quality Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/quality_management/workspace/quality/quality.json +#: erpnext/workspace_sidebar/quality.json +msgid "Quality Review" +msgstr "" + +#. Name of a DocType +#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json +msgid "Quality Review Objective" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +msgid "Quantities updated successfully." +msgstr "" + +#. Label of the qty (Data) field in DocType 'Opening Invoice Creation Tool +#. Item' +#. Label of the qty (Float) field in DocType 'POS Invoice Item' +#. Label of the qty (Float) field in DocType 'Sales Invoice Item' +#. Label of the qty (Int) field in DocType 'Subscription Plan Detail' +#. Label of the stock_qty (Float) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the qty (Float) field in DocType 'Purchase Order Item' +#. Label of the qty (Float) field in DocType 'Request for Quotation Item' +#. Label of the qty (Float) field in DocType 'Supplier Quotation Item' +#. Label of the qty (Float) field in DocType 'Blanket Order Item' +#. Label of the qty (Float) field in DocType 'BOM Creator' +#. Label of the section_break_4rxf (Section Break) field in DocType 'Production +#. Plan Sub Assembly Item' +#. Label of the qty (Float) field in DocType 'Quotation Item' +#. Label of the qty (Float) field in DocType 'Sales Order Item' +#. Label of the qty (Float) field in DocType 'Delivery Note Item' +#. Label of the qty (Float) field in DocType 'Material Request Item' +#. Label of the quantity_section (Section Break) field in DocType 'Packing Slip +#. Item' +#. Label of the qty (Float) field in DocType 'Packing Slip Item' +#. Label of the quantity_section (Section Break) field in DocType 'Pick List +#. Item' +#. Label of the quantity_section (Section Break) field in DocType 'Stock Entry +#. Detail' +#. Label of the qty (Float) field in DocType 'Stock Reconciliation Item' +#. Label of the qty (Float) field in DocType 'Subcontracting Inward Order Item' +#. Label of the quantity_section (Section Break) field in DocType +#. 'Subcontracting Inward Order Item' +#. Label of the qty (Float) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Label of the qty (Float) field in DocType 'Subcontracting Order Item' +#. Label of the qty (Float) field in DocType 'Subcontracting Order Service +#. Item' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/manufacturing/doctype/bom/bom.js:496 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:76 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194 +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/public/js/controllers/buying.js:616 +#: erpnext/public/js/stock_analytics.js:50 +#: erpnext/public/js/utils/serial_no_batch_selector.js:500 +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:51 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:43 +#: erpnext/selling/report/sales_analytics/sales_analytics.js:44 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:39 +#: erpnext/stock/dashboard/item_dashboard.js:248 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request/material_request.js:368 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:824 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:36 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:154 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:480 +#: erpnext/stock/report/stock_analytics/stock_analytics.js:27 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/templates/emails/reorder_item.html:10 +#: erpnext/templates/generators/bom.html:30 +#: erpnext/templates/pages/material_request_info.html:48 +#: erpnext/templates/pages/order.html:97 +msgid "Quantity" +msgstr "" + +#. Description of the 'Packing Unit' (Int) field in DocType 'Item Price' +#: erpnext/stock/doctype/item_price/item_price.json +msgid "Quantity that must be bought or sold per UOM" +msgstr "" + +#. Label of the quantity (Section Break) field in DocType 'Request for +#. Quotation Item' +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +msgid "Quantity & Stock" +msgstr "" + +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:53 +msgid "Quantity (A - B)" +msgstr "" + +#. Label of the quantity (Float) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Quantity (Output Qty)" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:118 +msgid "Quantity Available" +msgstr "" + +#. Label of the quantity_difference (Read Only) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Quantity Difference" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Quantity Tolerance" +msgstr "" + +#. Label of the section_break_19 (Section Break) field in DocType 'Pricing +#. Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Quantity and Amount" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Production +#. Plan Item' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +msgid "Quantity and Description" +msgstr "" + +#. Label of the quantity_and_rate (Section Break) field in DocType 'Purchase +#. Invoice Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Purchase +#. Order Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Supplier +#. Quotation Item' +#. Label of the quantity_and_rate_section (Section Break) field in DocType +#. 'Opportunity Item' +#. Label of the quantity_and_rate_section (Section Break) field in DocType 'BOM +#. Creator Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'BOM Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Job Card +#. Secondary Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Quotation +#. Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Sales Order +#. Item' +#. Label of the quantity_and_rate (Section Break) field in DocType 'Delivery +#. Note Item' +#. Label of the quantity_and_rate_section (Tab Break) field in DocType 'Serial +#. and Batch Bundle' +#. Label of the quantity_and_rate_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Quantity and Rate" +msgstr "" + +#. Label of the quantity_and_warehouse (Section Break) field in DocType +#. 'Material Request Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +msgid "Quantity and Warehouse" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:214 +msgid "Quantity cannot be greater than {0} for Item {1}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:563 +msgid "Quantity is mandatory for the selected items." +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:274 +msgid "Quantity is required" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:285 +msgid "Quantity must be greater than zero" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1601 +msgid "Quantity must be greater than zero." +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:290 +msgid "Quantity must be less than or equal to {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1110 +#: erpnext/stock/doctype/pick_list/pick_list.js:214 +msgid "Quantity must not be more than {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:729 +msgid "Quantity required for Item {0} in row {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:673 +#: erpnext/manufacturing/doctype/job_card/job_card.js:341 +#: erpnext/manufacturing/doctype/job_card/job_card.js:409 +#: erpnext/manufacturing/doctype/workstation/workstation.js:303 +msgid "Quantity should be greater than 0" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:354 +msgid "Quantity to Manufacture" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +msgid "Quantity to Manufacture can not be zero for the operation {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +msgid "Quantity to Manufacture must be greater than 0." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:257 +msgid "Quantity to Scan" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Quart (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Quart Dry (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Quart Liquid (US)" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.py:461 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:125 +msgid "Quarter {0} {1}" +msgstr "" + +#. Label of the query_route (Data) field in DocType 'Support Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Query Route String" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +msgid "Queue Size should be between 5 and 100" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:332 +msgid "Quick Journal Entry" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:154 +msgid "Quick Ratio" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Quick Stock Balance" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Quintal" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:23 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:28 +msgid "Quot Count" +msgstr "" + +#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:27 +#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:32 +msgid "Quot/Lead %" +msgstr "" + +#. Option for the 'Document Type' (Select) field in DocType 'Contract' +#. Label of the quotation_section (Section Break) field in DocType 'CRM +#. Settings' +#. Option for the 'Status' (Select) field in DocType 'Lead' +#. Option for the 'Status' (Select) field in DocType 'Opportunity' +#. Name of a DocType +#. Label of the prevdoc_docname (Link) field in DocType 'Sales Order Item' +#. Label of a Link in the Selling Workspace +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:402 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:51 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:20 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/crm_settings/crm_settings.json +#: erpnext/crm/doctype/lead/lead.js:34 erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.js:108 +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/report/lead_details/lead_details.js:37 +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:38 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1229 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/doctype/selling_settings/selling_settings.js:49 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/workspace_sidebar/selling.json +msgid "Quotation" +msgstr "" + +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:36 +msgid "Quotation Amount" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/quotation_item/quotation_item.json +msgid "Quotation Item" +msgstr "" + +#. Name of a DocType +#. Label of the order_lost_reason (Data) field in DocType 'Quotation Lost +#. Reason' +#. Label of the lost_reason (Link) field in DocType 'Quotation Lost Reason +#. Detail' +#: erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.json +#: erpnext/setup/doctype/quotation_lost_reason_detail/quotation_lost_reason_detail.json +msgid "Quotation Lost Reason" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/quotation_lost_reason_detail/quotation_lost_reason_detail.json +msgid "Quotation Lost Reason Detail" +msgstr "" + +#. Label of the quotation_number (Data) field in DocType 'Supplier Quotation' +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +msgid "Quotation Number" +msgstr "" + +#. Label of the quotation_to (Link) field in DocType 'Quotation' +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Quotation To" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/quotation_trends/quotation_trends.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Quotation Trends" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:440 +msgid "Quotation {0} is cancelled" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:359 +msgid "Quotation {0} not of type {1}" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.py:353 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:72 +msgid "Quotations" +msgstr "" + +#: erpnext/utilities/activation.py:89 +msgid "Quotations are proposals, bids you have sent to your customers" +msgstr "" + +#: erpnext/templates/pages/rfq.html:73 +msgid "Quotations: " +msgstr "" + +#. Label of the quote_status (Select) field in DocType 'Request for Quotation +#. Supplier' +#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json +msgid "Quote Status" +msgstr "" + +#: erpnext/selling/report/quotation_trends/quotation_trends.py:57 +msgid "Quoted Amount" +msgstr "" + +#. Label of the rfq_and_purchase_order_settings_section (Section Break) field +#. in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "RFQ and Purchase Order Settings" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:129 +msgid "RFQs are not allowed for {0} due to a scorecard standing of {1}" +msgstr "" + +#. Label of the auto_indent (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Raise Material Request when stock reaches re-order level" +msgstr "" + +#. Label of the complaint_raised_by (Data) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Raised By" +msgstr "" + +#. Label of the raised_by (Data) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Raised By (Email)" +msgstr "" + +#. Label of the rate (Currency) field in DocType 'POS Invoice Item' +#. Option for the 'Rate or Discount' (Select) field in DocType 'Pricing Rule' +#. Label of the rate (Currency) field in DocType 'Pricing Rule' +#. Option for the 'Discount Type' (Select) field in DocType 'Promotional Scheme +#. Price Discount' +#. Label of the rate (Currency) field in DocType 'Promotional Scheme Price +#. Discount' +#. Label of the free_item_rate (Currency) field in DocType 'Promotional Scheme +#. Product Discount' +#. Label of the rate (Currency) field in DocType 'Purchase Invoice Item' +#. Label of the rate (Currency) field in DocType 'Sales Invoice Item' +#. Label of the rate (Currency) field in DocType 'Share Balance' +#. Label of the rate (Currency) field in DocType 'Share Transfer' +#. Label of the rate (Currency) field in DocType 'Asset Capitalization Service +#. Item' +#. Label of the rate (Currency) field in DocType 'Purchase Order Item' +#. Label of the rate (Currency) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the rate (Currency) field in DocType 'Supplier Quotation Item' +#. Label of the rate (Currency) field in DocType 'Opportunity Item' +#. Label of the rate (Currency) field in DocType 'Blanket Order Item' +#. Label of the rate (Currency) field in DocType 'BOM Creator Item' +#. Label of the rate (Currency) field in DocType 'BOM Explosion Item' +#. Label of the rate (Currency) field in DocType 'BOM Item' +#. Label of the rate (Currency) field in DocType 'BOM Secondary Item' +#. Label of the rate (Currency) field in DocType 'Work Order Additional Item' +#. Label of the rate (Currency) field in DocType 'Work Order Item' +#. Label of the rate (Float) field in DocType 'Product Bundle Item' +#. Label of the rate (Currency) field in DocType 'Quotation Item' +#. Label of the rate (Currency) field in DocType 'Sales Order Item' +#. Label of the rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the price_list_rate (Currency) field in DocType 'Item Price' +#. Label of the rate (Currency) field in DocType 'Landed Cost Item' +#. Label of the rate (Currency) field in DocType 'Material Request Item' +#. Label of the rate (Currency) field in DocType 'Packed Item' +#. Label of the rate (Currency) field in DocType 'Purchase Receipt Item' +#. Option for the 'Update Price List based on' (Select) field in DocType 'Stock +#. Settings' +#. Label of the rate (Currency) field in DocType 'Subcontracting Inward Order +#. Received Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Inward Order +#. Service Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Order Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Order Service +#. Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Order Supplied +#. Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Receipt Item' +#. Label of the rate (Currency) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:78 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:266 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:320 +#: erpnext/accounts/report/share_ledger/share_ledger.py:56 +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:67 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/public/js/utils.js:875 +#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:46 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:41 +#: erpnext/stock/dashboard/item_dashboard.js:255 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item_prices.html:84 +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:155 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/templates/form_grid/item_grid.html:8 +#: erpnext/templates/pages/order.html:100 erpnext/templates/pages/rfq.html:43 +msgid "Rate" +msgstr "" + +#. Label of the rate_amount_section (Section Break) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Rate & Amount" +msgstr "" + +#. Label of the base_rate (Currency) field in DocType 'POS Invoice Item' +#. Label of the base_rate (Currency) field in DocType 'Purchase Invoice Item' +#. Label of the base_rate (Currency) field in DocType 'Sales Invoice Item' +#. Label of the base_rate (Currency) field in DocType 'Purchase Order Item' +#. Label of the base_rate (Currency) field in DocType 'Supplier Quotation Item' +#. Label of the base_rate (Currency) field in DocType 'Opportunity Item' +#. Label of the base_rate (Currency) field in DocType 'Quotation Item' +#. Label of the base_rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the base_rate (Currency) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Rate (Company Currency)" +msgstr "" + +#. Label of the rm_cost_as_per (Select) field in DocType 'BOM' +#. Label of the rm_cost_as_per (Select) field in DocType 'BOM Creator' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Rate Of Materials Based On" +msgstr "" + +#. Label of the rate (Percent) field in DocType 'Lower Deduction Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Rate Of TDS As Per Certificate" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Serial and +#. Batch Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +msgid "Rate Section" +msgstr "" + +#. Label of the rate_with_margin (Currency) field in DocType 'POS Invoice Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Sales Invoice +#. Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Supplier +#. Quotation Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Quotation Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Sales Order Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Delivery Note +#. Item' +#. Label of the rate_with_margin (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Rate With Margin" +msgstr "" + +#. Label of the base_rate_with_margin (Currency) field in DocType 'POS Invoice +#. Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Purchase +#. Invoice Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Sales +#. Invoice Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Purchase +#. Order Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Quotation +#. Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Sales Order +#. Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Delivery +#. Note Item' +#. Label of the base_rate_with_margin (Currency) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Rate With Margin (Company Currency)" +msgstr "" + +#. Label of the rate_and_amount (Section Break) field in DocType 'Purchase +#. Receipt Item' +#. Label of the rate_and_amount (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Rate and Amount" +msgstr "" + +#. Description of the 'Exchange Rate' (Float) field in DocType 'POS Invoice' +#. Description of the 'Exchange Rate' (Float) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Rate at which Customer Currency is converted to customer's base currency" +msgstr "" + +#. Description of the 'Price List Exchange Rate' (Float) field in DocType +#. 'Quotation' +#. Description of the 'Price List Exchange Rate' (Float) field in DocType +#. 'Sales Order' +#. Description of the 'Price List Exchange Rate' (Float) field in DocType +#. 'Delivery Note' +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Rate at which Price list currency is converted to company's base currency" +msgstr "" + +#. Description of the 'Price List Exchange Rate' (Float) field in DocType 'POS +#. Invoice' +#. Description of the 'Price List Exchange Rate' (Float) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Rate at which Price list currency is converted to customer's base currency" +msgstr "" + +#. Description of the 'Exchange Rate' (Float) field in DocType 'Quotation' +#. Description of the 'Exchange Rate' (Float) field in DocType 'Sales Order' +#. Description of the 'Exchange Rate' (Float) field in DocType 'Delivery Note' +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Rate at which customer's currency is converted to company's base currency" +msgstr "" + +#. Description of the 'Exchange Rate' (Float) field in DocType 'Purchase +#. Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Rate at which supplier's currency is converted to company's base currency" +msgstr "" + +#. Description of the 'Tax Rate' (Float) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Rate at which this tax is applied" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:515 +msgid "Rate of '{}' items cannot be changed" +msgstr "" + +#. Label of the rate_of_depreciation (Percent) field in DocType 'Asset +#. Depreciation Schedule' +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +msgid "Rate of Depreciation" +msgstr "" + +#. Label of the rate_of_depreciation (Percent) field in DocType 'Asset Finance +#. Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Rate of Depreciation (%)" +msgstr "" + +#. Label of the rate_of_interest (Float) field in DocType 'Dunning' +#. Label of the rate_of_interest (Float) field in DocType 'Dunning Type' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +msgid "Rate of Interest (%) Yearly" +msgstr "" + +#. Label of the stock_uom_rate (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Sales Invoice Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Purchase Order +#. Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Quotation Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Sales Order Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Delivery Note Item' +#. Label of the stock_uom_rate (Currency) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Rate of Stock UOM" +msgstr "" + +#. Label of the rate_or_discount (Select) field in DocType 'Pricing Rule' +#. Label of the rate_or_discount (Data) field in DocType 'Pricing Rule Detail' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +msgid "Rate or Discount" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:184 +msgid "Rate or Discount is required for the price discount." +msgstr "" + +#. Label of the rates (Table) field in DocType 'Tax Withholding Category' +#. Label of the rates_section (Section Break) field in DocType 'Stock Entry +#. Detail' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Rates" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:48 +msgid "Ratios" +msgstr "" + +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:52 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:46 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:216 +msgid "Raw Material" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:410 +msgid "Raw Material Code" +msgstr "" + +#. Label of the raw_material_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Raw Material Cost" +msgstr "" + +#. Label of the base_raw_material_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Raw Material Cost (Company Currency)" +msgstr "" + +#. Label of the rm_cost_per_qty (Currency) field in DocType 'Subcontracting +#. Order Item' +#. Label of the rm_cost_per_qty (Currency) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Raw Material Cost Per Qty" +msgstr "" + +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:132 +msgid "Raw Material Item" +msgstr "" + +#. Label of the rm_item_code (Link) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the rm_item_code (Link) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the rm_item_code (Link) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the rm_item_code (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Raw Material Item Code" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:417 +msgid "Raw Material Name" +msgstr "" + +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:114 +msgid "Raw Material Value" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.js:36 +msgid "Raw Material Voucher No" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.js:30 +msgid "Raw Material Voucher Type" +msgstr "" + +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:65 +msgid "Raw Material Warehouse" +msgstr "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Job Card' +#. Label of the mr_items (Table) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/bom/bom.js:449 +#: erpnext/manufacturing/doctype/bom/bom.js:1081 +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:462 +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:379 +msgid "Raw Materials" +msgstr "" + +#. Label of the raw_materials_consumed_section (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Raw Materials Actions" +msgstr "" + +#. Label of the raw_material_details (Section Break) field in DocType 'Purchase +#. Receipt' +#. Label of the raw_material_details (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Raw Materials Consumed" +msgstr "" + +#. Label of the raw_materials_consumption_section (Section Break) field in +#. DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Raw Materials Consumption" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:63 +msgid "Raw Materials Missing" +msgstr "" + +#. Label of the raw_materials_received_section (Section Break) field in DocType +#. 'Subcontracting Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Raw Materials Required" +msgstr "" + +#. Label of the raw_materials_supplied (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the raw_materials_supplied_section (Section Break) field in DocType +#. 'Subcontracting Order' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Raw Materials Supplied" +msgstr "" + +#. Label of the rm_supp_cost (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the rm_supp_cost (Currency) field in DocType 'Purchase Receipt +#. Item' +#. Label of the rm_supp_cost (Currency) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Raw Materials Supplied Cost" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:721 +msgid "Raw Materials cannot be blank." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:136 +msgid "Raw Materials to Customer" +msgstr "" + +#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field +#. in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Raw materials consumed qty will be validated based on FG BOM required qty" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:194 +msgid "Re-extracting" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:345 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124 +#: erpnext/manufacturing/doctype/work_order/work_order.js:779 +#: erpnext/selling/doctype/sales_order/sales_order.js:1012 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:70 +#: erpnext/stock/doctype/material_request/material_request.js:243 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:116 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:163 +msgid "Re-open" +msgstr "" + +#. Label of the warehouse_reorder_level (Float) field in DocType 'Item Reorder' +#: erpnext/stock/doctype/item_reorder/item_reorder.json +msgid "Re-order Level" +msgstr "" + +#. Label of the warehouse_reorder_qty (Float) field in DocType 'Item Reorder' +#: erpnext/stock/doctype/item_reorder/item_reorder.json +msgid "Re-order Qty" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:227 +msgid "Reached Root" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:127 +msgid "Read the docs" +msgstr "" + +#. Label of the reading_1 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 1" +msgstr "" + +#. Label of the reading_10 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 10" +msgstr "" + +#. Label of the reading_2 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 2" +msgstr "" + +#. Label of the reading_3 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 3" +msgstr "" + +#. Label of the reading_4 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 4" +msgstr "" + +#. Label of the reading_5 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 5" +msgstr "" + +#. Label of the reading_6 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 6" +msgstr "" + +#. Label of the reading_7 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 7" +msgstr "" + +#. Label of the reading_8 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 8" +msgstr "" + +#. Label of the reading_9 (Data) field in DocType 'Quality Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading 9" +msgstr "" + +#. Label of the reading_value (Data) field in DocType 'Quality Inspection +#. Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Reading Value" +msgstr "" + +#. Label of the readings (Table) field in DocType 'Quality Inspection' +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Readings" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:40 +msgid "Real Estate" +msgstr "" + +#. Label of the hold_comment (Small Text) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:285 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Reason For Putting On Hold" +msgstr "" + +#. Label of the failed_reason (Data) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Reason for Failure" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/selling/doctype/sales_order/sales_order.js:1841 +msgid "Reason for Hold" +msgstr "" + +#. Label of the reason_for_leaving (Small Text) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Reason for Leaving" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1856 +msgid "Reason for hold:" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:93 +msgid "Rebuilding BTree for period ..." +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:26 +msgid "Recalculate Batch Qty" +msgstr "" + +#: erpnext/stock/doctype/bin/bin.js:10 +msgid "Recalculate Bin Qty" +msgstr "" + +#. Label of the recalculate_rate (Check) field in DocType 'Stock Ledger Entry' +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "Recalculate Incoming/Outgoing Rate" +msgstr "" + +#. Label of the recalculate_valuation_rate (Check) field in DocType 'Repost +#. Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Recalculate Valuation Rate" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement' +#. Option for the 'Asset Status' (Select) field in DocType 'Serial No' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:24 +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Receipt" +msgstr "" + +#. Label of the receipt_document (Dynamic Link) field in DocType 'Landed Cost +#. Item' +#. Label of the receipt_document (Dynamic Link) field in DocType 'Landed Cost +#. Purchase Receipt' +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +msgid "Receipt Document" +msgstr "" + +#. Label of the receipt_document_type (Select) field in DocType 'Landed Cost +#. Item' +#. Label of the receipt_document_type (Select) field in DocType 'Landed Cost +#. Purchase Receipt' +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +msgid "Receipt Document Type" +msgstr "" + +#. Label of the items (Table) field in DocType 'Landed Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Receipt Items" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Option for the 'Account Type' (Select) field in DocType 'Payment Ledger +#. Entry' +#. Option for the 'Account Type' (Select) field in DocType 'Party Type' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/report/account_balance/account_balance.js:55 +#: erpnext/setup/doctype/party_type/party_type.json +msgid "Receivable" +msgstr "" + +#. Label of the receivable_payable_account (Link) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Receivable / Payable Account" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1156 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241 +#: erpnext/accounts/report/sales_register/sales_register.py:217 +#: erpnext/accounts/report/sales_register/sales_register.py:271 +msgid "Receivable Account" +msgstr "" + +#. Label of the receivable_payable_account (Link) field in DocType 'Process +#. Payment Reconciliation' +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "Receivable/Payable Account" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:51 +msgid "Receivable/Payable Account: {0} doesn't belong to company {1}" +msgstr "" + +#. Label of the invoiced_amount (Check) field in DocType 'Email Digest' +#. Label of a Workspace Sidebar Item +#: erpnext/setup/doctype/email_digest/email_digest.json +#: erpnext/workspace_sidebar/invoicing.json +msgid "Receivables" +msgstr "" + +#. Option for the 'Payment Type' (Select) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:153 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:171 +msgid "Receive" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:120 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Receive from Customer" +msgstr "" + +#. Label of the received_amount (Currency) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Received Amount" +msgstr "" + +#. Label of the base_received_amount (Currency) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Received Amount (Company Currency)" +msgstr "" + +#. Label of the received_amount_after_tax (Currency) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Received Amount After Tax" +msgstr "" + +#. Label of the base_received_amount_after_tax (Currency) field in DocType +#. 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Received Amount After Tax (Company Currency)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:965 +msgid "Received Amount cannot be greater than Paid Amount" +msgstr "" + +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:9 +msgid "Received From" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.json +msgid "Received Items To Be Billed" +msgstr "" + +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:8 +msgid "Received On" +msgstr "" + +#. Label of the received_qty (Float) field in DocType 'Purchase Invoice Item' +#. Label of the received_qty (Float) field in DocType 'Purchase Order Item' +#. Label of the received_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the received_qty (Float) field in DocType 'Delivery Note Item' +#. Label of the received_qty (Float) field in DocType 'Material Request Item' +#. Label of the received_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the received_qty (Float) field in DocType 'Subcontracting Order +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:77 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:249 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:172 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:247 +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:135 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Received Qty" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:301 +msgid "Received Qty Amount" +msgstr "" + +#. Label of the received_stock_qty (Float) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Received Qty in Stock UOM" +msgstr "" + +#. Label of the received_qty (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:121 +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:49 +#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:9 +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Received Quantity" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:372 +msgid "Received Stock Entries" +msgstr "" + +#. Label of the received_and_accepted (Section Break) field in DocType +#. 'Purchase Receipt Item' +#. Label of the received_and_accepted (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Received and Accepted" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:404 +msgid "Received from" +msgstr "" + +#. Label of the receiver_list (Code) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Receiver List" +msgstr "" + +#: erpnext/selling/doctype/sms_center/sms_center.py:166 +msgid "Receiver List is empty. Please create Receiver List" +msgstr "" + +#. Option for the 'Bank Guarantee Type' (Select) field in DocType 'Bank +#. Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Receiving" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:260 +#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 +msgid "Recent Orders" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:924 +msgid "Recent Transactions" +msgstr "" + +#. Label of the recipient_and_message (Section Break) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Recipient Message And Payment Details" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:734 +msgid "Recommended Action" +msgstr "" + +#. Label of the section_break_1 (Section Break) field in DocType 'Bank +#. Reconciliation Tool' +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:931 +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:105 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:106 +msgid "Reconcile" +msgstr "" + +#. Label of the reconcile_all_serial_batch (Check) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Reconcile All Serial Nos / Batches" +msgstr "" + +#. Label of the reconcile_effect_on (Date) field in DocType 'Payment Entry +#. Reference' +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +msgid "Reconcile Effect On" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:363 +msgid "Reconcile Entries" +msgstr "" + +#. Label of the reconcile_on_advance_payment_date (Check) field in DocType +#. 'Payment Entry' +#. Label of the reconcile_on_advance_payment_date (Check) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/setup/doctype/company/company.json +msgid "Reconcile on Advance Payment Date" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:221 +msgid "Reconcile the Bank Transaction" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Bank Transaction' +#. Label of the reconciled (Check) field in DocType 'Process Payment +#. Reconciliation Log' +#. Option for the 'Status' (Select) field in DocType 'Process Payment +#. Reconciliation Log' +#. Label of the reconciled (Check) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:140 +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:413 +#: banking/src/components/features/BankReconciliation/utils.ts:259 +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction_list.js:10 +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +msgid "Reconciled" +msgstr "" + +#. Label of the reconciled_entries (Int) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Reconciled Entries" +msgstr "" + +#. Option for the 'Posting Date inheritance for exchange gain / loss' (Select) +#. field in DocType 'Accounts Settings' +#. Option for the 'Reconciliation Takes Effect On' (Select) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/setup/doctype/company/company.json +msgid "Reconciliation Date" +msgstr "" + +#. Label of the error_log (Long Text) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Reconciliation Error Log" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLog.tsx:32 +#: banking/src/components/features/ActionLog/ActionLogDialog.tsx:19 +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:54 +msgid "Reconciliation History" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation_dashboard.py:9 +msgid "Reconciliation Logs" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.js:13 +msgid "Reconciliation Progress" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/banking.json +msgid "Reconciliation Statement" +msgstr "" + +#. Label of the reconciliation_takes_effect_on (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Reconciliation Takes Effect On" +msgstr "" + +#. Label of the reconciliation_type (Select) field in DocType 'Bank Transaction +#. Payments' +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx:58 +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +msgid "Reconciliation Type" +msgstr "" + +#. Label of the reconciliation_queue_size (Int) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Reconciliation queue size" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:931 +msgid "Reconciling" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:496 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:553 +#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:17 +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:22 +msgid "Record Payment" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:476 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:569 +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:15 +msgid "Record a bank journal entry for expenses, income or split transactions" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:482 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:575 +msgid "Record a journal entry for expenses, income or split transactions" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:19 +msgid "Record a journal entry for expenses, income or split transactions." +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:23 +msgid "Record a payment against a customer or supplier" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:494 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:500 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:551 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:557 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:685 +#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:19 +msgid "Record a payment entry against a customer or supplier" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:31 +msgid "Record a transfer between two bank accounts" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:593 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:687 +msgid "Record an internal transfer to another bank/credit card/cash account" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModal.tsx:19 +msgid "Record an internal transfer to another bank/credit card/cash account." +msgstr "" + +#. Label of the recording_html (HTML) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Recording HTML" +msgstr "" + +#. Label of the recording_url (Data) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Recording URL" +msgstr "" + +#. Group in Quality Feedback Template's connections +#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json +msgid "Records" +msgstr "" + +#: erpnext/regional/united_arab_emirates/utils.py:195 +msgid "Recoverable Standard Rated expenses should not be set when Reverse Charge Applicable is Y" +msgstr "" + +#. Label of the recreate_stock_ledgers (Check) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Recreate Stock Ledgers" +msgstr "" + +#. Label of the recurse_for (Float) field in DocType 'Pricing Rule' +#. Label of the recurse_for (Float) field in DocType 'Promotional Scheme +#. Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Recurse Every (As Per Transaction UOM)" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:240 +msgid "Recurse Over Qty cannot be less than 0" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +msgid "Recursive Discounts with Mixed condition is not supported by the system" +msgstr "" + +#. Label of the redeem_against (Link) field in DocType 'Loyalty Point Entry' +#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json +msgid "Redeem Against" +msgstr "" + +#. Label of the redeem_loyalty_points (Check) field in DocType 'POS Invoice' +#. Label of the redeem_loyalty_points (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/page/point_of_sale/pos_payment.js:614 +msgid "Redeem Loyalty Points" +msgstr "" + +#. Label of the redeemed_points (Int) field in DocType 'Loyalty Point Entry +#. Redemption' +#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json +msgid "Redeemed Points" +msgstr "" + +#. Label of the redemption (Section Break) field in DocType 'Loyalty Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Redemption" +msgstr "" + +#. Label of the loyalty_redemption_account (Link) field in DocType 'POS +#. Invoice' +#. Label of the loyalty_redemption_account (Link) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Redemption Account" +msgstr "" + +#. Label of the loyalty_redemption_cost_center (Link) field in DocType 'POS +#. Invoice' +#. Label of the loyalty_redemption_cost_center (Link) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Redemption Cost Center" +msgstr "" + +#. Label of the redemption_date (Date) field in DocType 'Loyalty Point Entry +#. Redemption' +#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json +msgid "Redemption Date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:364 +#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:63 +msgid "Ref" +msgstr "" + +#. Label of the ref_code (Data) field in DocType 'Item Customer Detail' +#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json +msgid "Ref Code" +msgstr "" + +#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:101 +msgid "Ref Date" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:245 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:312 +msgid "Ref." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:155 +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:82 +msgid "Reference #" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:780 +msgid "Reference #{0} dated {1}" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2823 +msgid "Reference Date for Early Payment Discount" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:400 +msgid "Reference Date is required" +msgstr "" + +#. Label of the reference_detail_no (Data) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Reference Detail No" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:674 +msgid "Reference Doctype must be one of {0}" +msgstr "" + +#. Label of the reference_due_date (Date) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "Reference Due Date" +msgstr "" + +#. Label of the ref_exchange_rate (Float) field in DocType 'Purchase Invoice +#. Advance' +#. Label of the ref_exchange_rate (Float) field in DocType 'Sales Invoice +#. Advance' +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Reference Exchange Rate" +msgstr "" + +#. Label of the reference_no (Data) field in DocType 'Sales Invoice Payment' +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +msgid "Reference No" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:524 +msgid "Reference No & Reference Date is required for {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1222 +msgid "Reference No and Reference Date is mandatory for Bank transaction" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:529 +msgid "Reference No is mandatory if you entered Reference Date" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:265 +msgid "Reference No." +msgstr "" + +#. Label of the reference_number (Small Text) field in DocType 'Bank +#. Transaction' +#. Label of the cheque_no (Data) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:83 +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:130 +msgid "Reference Number" +msgstr "" + +#. Label of the reference_purchase_receipt (Link) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Reference Purchase Receipt" +msgstr "" + +#. Label of the reference_row (Data) field in DocType 'Payment Reconciliation +#. Allocation' +#. Label of the reference_row (Data) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the reference_row (Data) field in DocType 'Process Payment +#. Reconciliation Log Allocations' +#. Label of the reference_row (Data) field in DocType 'Purchase Invoice +#. Advance' +#. Label of the reference_row (Data) field in DocType 'Sales Invoice Advance' +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Reference Row" +msgstr "" + +#. Label of the row_id (Data) field in DocType 'Advance Taxes and Charges' +#. Label of the row_id (Data) field in DocType 'Purchase Taxes and Charges' +#. Label of the row_id (Data) field in DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Reference Row #" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:906 +msgid "Reference date does not match the selected transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:906 +msgid "Reference date matches the selected transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:920 +msgid "Reference does not match the selected transaction" +msgstr "" + +#. Label of the reference_for_reservation (Data) field in DocType 'Serial and +#. Batch Entry' +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +msgid "Reference for Reservation" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:406 +msgid "Reference is required" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:920 +msgid "Reference matches the selected transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:920 +msgid "Reference matches the selected transaction partially" +msgstr "" + +#. Description of the 'Invoice Number' (Data) field in DocType 'Opening Invoice +#. Creation Tool Item' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +msgid "Reference number of the invoice from the previous system" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:142 +msgid "Reference: {0}, Item Code: {1} and Customer: {2}" +msgstr "" + +#. Label of the edit_references (Section Break) field in DocType 'POS Invoice +#. Item' +#. Label of the references_section (Section Break) field in DocType 'POS +#. Invoice Merge Log' +#. Label of the edit_references (Section Break) field in DocType 'Sales Invoice +#. Item' +#. Label of the references_section (Section Break) field in DocType 'Purchase +#. Order Item' +#. Label of the sb_references (Section Break) field in DocType 'Contract' +#. Label of the references_section (Section Break) field in DocType 'Customer' +#. Label of the references_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:10 +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template_dashboard.py:15 +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template_dashboard.py:14 +#: erpnext/accounts/doctype/share_type/share_type_dashboard.py:7 +#: erpnext/accounts/doctype/subscription_plan/subscription_plan_dashboard.py:8 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/projects/doctype/timesheet/timesheet_dashboard.py:7 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "References" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:361 +msgid "References to Sales Invoices are Incomplete" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:353 +msgid "References to Sales Orders are Incomplete" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:754 +msgid "References {0} of type {1} had no outstanding amount left before submitting the Payment Entry. Now they have a negative outstanding amount." +msgstr "" + +#. Label of the referral_code (Data) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Referral Code" +msgstr "" + +#. Label of the referral_sales_partner (Link) field in DocType 'Quotation' +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Referral Sales Partner" +msgstr "" + +#: erpnext/accounts/doctype/bank/bank.js:18 +msgid "Refresh Plaid Link" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Refunded" +msgstr "" + +#: erpnext/stock/reorder_item.py:381 +msgid "Regards," +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.js:27 +msgid "Regenerate Stock Closing Entry" +msgstr "" + +#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule +#. Description Conditions' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:203 +#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json +msgid "Regex" +msgstr "" + +#. Label of a Card Break in the Buying Workspace +#: erpnext/buying/workspace/buying/buying.json +msgid "Regional" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Registers" +msgstr "" + +#. Label of the registration_details (Code) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Registration Details" +msgstr "" + +#. Option for the 'Cheque Size' (Select) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Regular" +msgstr "" + +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.py:214 +msgid "Rejected " +msgstr "" + +#. Label of the rejected_qty (Float) field in DocType 'Purchase Invoice Item' +#. Label of the rejected_qty (Float) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Rejected Qty" +msgstr "" + +#. Label of the rejected_qty (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Rejected Quantity" +msgstr "" + +#. Label of the rejected_serial_no (Text) field in DocType 'Purchase Invoice +#. Item' +#. Label of the rejected_serial_no (Text) field in DocType 'Purchase Receipt +#. Item' +#. Label of the rejected_serial_no (Small Text) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Rejected Serial No" +msgstr "" + +#. Label of the rejected_serial_and_batch_bundle (Link) field in DocType +#. 'Purchase Invoice Item' +#. Label of the rejected_serial_and_batch_bundle (Link) field in DocType +#. 'Purchase Receipt Item' +#. Label of the rejected_serial_and_batch_bundle (Link) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Rejected Serial and Batch Bundle" +msgstr "" + +#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Invoice' +#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Receipt' +#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Receipt +#. Item' +#. Label of the rejected_warehouse (Link) field in DocType 'Subcontracting +#. Receipt' +#. Label of the rejected_warehouse (Link) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Rejected Warehouse" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:671 +msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 +#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:22 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:26 +msgid "Related" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:50 +msgid "Related Item" +msgstr "" + +#. Label of the relation (Data) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Relation" +msgstr "" + +#. Label of the release_date (Date) field in DocType 'Purchase Invoice' +#. Label of the release_date (Date) field in DocType 'Supplier' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:277 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:321 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1078 +msgid "Release Date" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:322 +msgid "Release date must be in the future" +msgstr "" + +#. Label of the relieving_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Relieving Date" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:125 +msgid "Remaining" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:684 +msgid "Remaining Amount" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:189 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180 +msgid "Remaining Balance" +msgstr "" + +#. Label of the remark (Small Text) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:358 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/selling/page/point_of_sale/pos_payment.js:489 +msgid "Remark" +msgstr "" + +#. Label of the remarks (Text) field in DocType 'GL Entry' +#. Label of the remarks (Small Text) field in DocType 'Payment Entry' +#. Label of the remarks (Text) field in DocType 'Payment Ledger Entry' +#. Label of the remarks (Small Text) field in DocType 'Payment Reconciliation +#. Payment' +#. Label of the remarks (Small Text) field in DocType 'Period Closing Voucher' +#. Label of the remarks (Small Text) field in DocType 'POS Invoice' +#. Label of the remarks (Small Text) field in DocType 'Purchase Invoice' +#. Label of the remarks (Text) field in DocType 'Purchase Invoice Advance' +#. Label of the remarks (Small Text) field in DocType 'Sales Invoice' +#. Label of the remarks (Text) field in DocType 'Sales Invoice Advance' +#. Label of the remarks (Long Text) field in DocType 'Share Transfer' +#. Label of the remarks (Text Editor) field in DocType 'BOM Creator' +#. Label of the remarks_tab (Tab Break) field in DocType 'BOM Creator' +#. Label of the remarks (Text) field in DocType 'Downtime Entry' +#. Label of the remarks (Small Text) field in DocType 'Job Card' +#. Label of the remarks (Small Text) field in DocType 'Installation Note' +#. Label of the remarks (Small Text) field in DocType 'Purchase Receipt' +#. Label of the remarks (Text) field in DocType 'Quality Inspection' +#. Label of the remarks (Text) field in DocType 'Stock Entry' +#. Label of the remarks (Small Text) field in DocType 'Subcontracting Receipt' +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:418 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:592 +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:660 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1231 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:594 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:683 +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:42 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:165 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:194 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:243 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:314 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:11 +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:135 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 +#: erpnext/accounts/report/general_ledger/general_ledger.html:163 +#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 +#: erpnext/accounts/report/purchase_register/purchase_register.py:298 +#: erpnext/accounts/report/sales_register/sales_register.py:335 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:95 +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Remarks" +msgstr "" + +#. Label of the remarks_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Remarks Column Length" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:71 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:92 +msgid "Remarks:" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:130 +msgid "Remove Parent Row No in Items Table" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:140 +msgid "Remove Zero Counts" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:21 +msgid "Remove item if charges is not applicable to that item" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +msgid "Removed items with no change in quantity or value." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:161 +msgid "Removed {0} rows with zero document count. Please save to persist changes." +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:88 +msgid "Removing rows without exchange gain or loss" +msgstr "" + +#. Description of the 'Allow Rename Attribute Value' (Check) field in DocType +#. 'Item Variant Settings' +#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json +msgid "Rename Attribute Value in Item Attribute." +msgstr "" + +#. Label of the rename_log (HTML) field in DocType 'Rename Tool' +#: erpnext/utilities/doctype/rename_tool/rename_tool.json +msgid "Rename Log" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:569 +msgid "Rename Not Allowed" +msgstr "" + +#. Name of a DocType +#: erpnext/utilities/doctype/rename_tool/rename_tool.json +msgid "Rename Tool" +msgstr "" + +#: erpnext/utilities/doctype/rename_tool/rename_tool.js:26 +msgid "Rename jobs for doctype {0} have been enqueued." +msgstr "" + +#: erpnext/utilities/doctype/rename_tool/rename_tool.js:39 +msgid "Rename jobs for doctype {0} have not been enqueued." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:561 +msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch." +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/test_workstation.py:90 +#: erpnext/manufacturing/doctype/workstation/test_workstation.py:101 +#: erpnext/manufacturing/doctype/workstation/test_workstation.py:138 +#: erpnext/patches/v16_0/make_workstation_operating_components.py:49 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:316 +msgid "Rent" +msgstr "" + +#. Option for the 'Permanent Address Is' (Select) field in DocType 'Employee' +#. Option for the 'Current Address Is' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Rented" +msgstr "" + +#. Label of the reorder_level (Float) field in DocType 'Material Request Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:64 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:213 +msgid "Reorder Level" +msgstr "" + +#. Label of the reorder_qty (Float) field in DocType 'Material Request Item' +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:220 +msgid "Reorder Qty" +msgstr "" + +#. Label of the reorder_levels (Table) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Reorder level based on Warehouse" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:95 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Repack" +msgstr "" + +#. Group in Asset's connections +#: erpnext/assets/doctype/asset/asset.json +msgid "Repair" +msgstr "" + +#. Label of the repair_cost (Currency) field in DocType 'Asset Repair' +#. Label of the repair_cost (Currency) field in DocType 'Asset Repair Purchase +#. Invoice' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json +msgid "Repair Cost" +msgstr "" + +#. Label of the invoices (Table) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Repair Purchase Invoices" +msgstr "" + +#. Label of the repair_status (Select) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Repair Status" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:37 +msgid "Repeat Customer Revenue" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:22 +msgid "Repeat Customers" +msgstr "" + +#. Label of the replace (Button) field in DocType 'BOM Update Tool' +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "Replace" +msgstr "" + +#. Option for the 'Update Type' (Select) field in DocType 'BOM Update Log' +#. Label of the replace_bom_section (Section Break) field in DocType 'BOM +#. Update Tool' +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "Replace BOM" +msgstr "" + +#. Description of a DocType +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "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.\n" +"It also updates latest price in all the BOMs." +msgstr "" + +#. Label of the report_date (Date) field in DocType 'Quality Inspection' +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:120 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:121 +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:75 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Report Date" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:225 +msgid "Report Error" +msgstr "" + +#. Label of the rows (Table) field in DocType 'Financial Report Template' +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +msgid "Report Line Items" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 +#: erpnext/accounts/report/cash_flow/cash_flow.js:22 +#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:13 +msgid "Report Template" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:462 +msgid "Report Type is mandatory" +msgstr "" + +#: erpnext/setup/install.py:238 +msgid "Report an Issue" +msgstr "" + +#. Label of the reporting_currency (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Reporting Currency" +msgstr "" + +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.py:164 +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:312 +msgid "Reporting Currency Exchange Not Found" +msgstr "" + +#. Label of the reporting_currency_exchange_rate (Float) field in DocType +#. 'Account Closing Balance' +#. Label of the reporting_currency_exchange_rate (Float) field in DocType 'GL +#. Entry' +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Reporting Currency Exchange Rate" +msgstr "" + +#. Label of the reports_to (Link) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Reports to" +msgstr "" + +#. Label of the repost_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Repost" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Repost Accounting Ledger" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json +msgid "Repost Accounting Ledger Items" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/accounts_setup.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Repost Accounting Ledger Settings" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/repost_allowed_types/repost_allowed_types.json +msgid "Repost Allowed Types" +msgstr "" + +#. Label of the repost_error_log (Long Text) field in DocType 'Repost Payment +#. Ledger' +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +msgid "Repost Error Log" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/workspace_sidebar/stock.json +msgid "Repost Item Valuation" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +msgid "Repost Item Valuation restarted for selected failed records." +msgstr "" + +#. Label of the repost_only_accounting_ledgers (Check) field in DocType 'Repost +#. Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Repost Only Accounting Ledgers" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Repost Payment Ledger" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json +msgid "Repost Payment Ledger Items" +msgstr "" + +#. Label of the repost_status (Select) field in DocType 'Repost Payment Ledger' +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +msgid "Repost Status" +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:149 +msgid "Repost has started in the background" +msgstr "" + +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.js:40 +msgid "Repost in background" +msgstr "" + +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.py:118 +msgid "Repost started in the background" +msgstr "" + +#. Label of the reposting_data_file (Attach) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Reposting Data File" +msgstr "" + +#. Label of the reposting_info_section (Section Break) field in DocType 'Repost +#. Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Reposting Item and Warehouse" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:140 +msgid "Reposting Progress" +msgstr "" + +#. Label of the reposting_reference (Data) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Reposting Reference" +msgstr "" + +#. Label of the vouchers_based_on_item_and_warehouse_section (Section Break) +#. field in DocType 'Repost Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Reposting Vouchers" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:158 +msgid "Reposting Vouchers Progress" +msgstr "" + +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:220 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:327 +msgid "Reposting entries created: {0}" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:132 +msgid "Reposting for Item-Wh Completed {0}%" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:150 +msgid "Reposting for Vouchers Completed {0}%" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:118 +msgid "Reposting has been started in the background." +msgstr "" + +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.js:49 +msgid "Reposting in the background." +msgstr "" + +#. Label of the represents_company (Link) field in DocType 'Purchase Invoice' +#. Label of the represents_company (Link) field in DocType 'Sales Invoice' +#. Label of the represents_company (Link) field in DocType 'Purchase Order' +#. Label of the represents_company (Link) field in DocType 'Supplier' +#. Label of the represents_company (Link) field in DocType 'Customer' +#. Label of the represents_company (Link) field in DocType 'Sales Order' +#. Label of the represents_company (Link) field in DocType 'Delivery Note' +#. Label of the represents_company (Link) field in DocType 'Purchase Receipt' +#. Label of the represents_company (Link) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Represents Company" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "Represents a Financial Year. All accounting entries and other major transactions are tracked against the Fiscal Year." +msgstr "" + +#: erpnext/templates/form_grid/material_request_grid.html:25 +msgid "Reqd By Date" +msgstr "" + +#. Label of the required_bom_qty (Float) field in DocType 'Material Request +#. Plan Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "Reqd Qty (BOM)" +msgstr "" + +#: erpnext/public/js/utils.js:891 +msgid "Reqd by date" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:489 +msgid "Reqired Qty" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity.js:89 +msgid "Request For Quotation" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'Currency +#. Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "Request Parameters" +msgstr "" + +#. Label of the request_type (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Request Type" +msgstr "" + +#. Label of the warehouse (Link) field in DocType 'Item Reorder' +#: erpnext/stock/doctype/item_reorder/item_reorder.json +msgid "Request for" +msgstr "" + +#. Option for the 'Request Type' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Request for Information" +msgstr "" + +#. Label of the request_for_quotation_tab (Tab Break) field in DocType 'Buying +#. Settings' +#. Name of a DocType +#. Label of the request_for_quotation (Link) field in DocType 'Supplier +#. Quotation Item' +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/buying_settings/buying_settings.js:46 +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:332 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:438 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88 +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:270 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/stock/doctype/material_request/material_request.js:202 +#: erpnext/workspace_sidebar/buying.json +msgid "Request for Quotation" +msgstr "" + +#. Name of a DocType +#. Label of the request_for_quotation_item (Data) field in DocType 'Supplier +#. Quotation Item' +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +msgid "Request for Quotation Item" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json +msgid "Request for Quotation Supplier" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1136 +msgid "Request for Raw Materials" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Payment Request' +#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales +#. Order' +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Requested" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/requested_items_to_be_transferred/requested_items_to_be_transferred.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Requested Items To Be Transferred" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.json +#: erpnext/workspace_sidebar/buying.json +msgid "Requested Items to Order and Receive" +msgstr "" + +#. Label of the requested_qty (Float) field in DocType 'Job Card' +#. Label of the requested_qty (Float) field in DocType 'Material Request Plan +#. Item' +#. Label of the requested_qty (Float) field in DocType 'Sales Order Item' +#. Label of the indented_qty (Float) field in DocType 'Bin' +#. Label of the requested_qty (Float) field in DocType 'Packed Item' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:157 +msgid "Requested Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:202 +msgid "Requested Qty: Quantity requested for purchase, but not ordered." +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +msgid "Requesting Site" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +msgid "Requestor" +msgstr "" + +#. Label of the schedule_date (Date) field in DocType 'Purchase Order' +#. Label of the schedule_date (Date) field in DocType 'Purchase Order Item' +#. Label of the schedule_date (Date) field in DocType 'Material Request Plan +#. Item' +#. Label of the schedule_date (Date) field in DocType 'Material Request' +#. Label of the schedule_date (Date) field in DocType 'Material Request Item' +#. Label of the schedule_date (Date) field in DocType 'Purchase Receipt Item' +#. Label of the schedule_date (Date) field in DocType 'Subcontracting Order' +#. Label of the schedule_date (Date) field in DocType 'Subcontracting Order +#. Item' +#. Label of the schedule_date (Date) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:203 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:193 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:532 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Required By" +msgstr "" + +#. Label of the schedule_date (Date) field in DocType 'Request for Quotation' +#. Label of the schedule_date (Date) field in DocType 'Request for Quotation +#. Item' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +msgid "Required Date" +msgstr "" + +#. Label of the section_break_ndpq (Section Break) field in DocType 'Work +#. Order' +#. Label of the received_items (Table) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Required Items" +msgstr "" + +#: erpnext/templates/form_grid/material_request_grid.html:7 +msgid "Required On" +msgstr "" + +#. Label of the required_qty (Float) field in DocType 'Job Card Item' +#. Label of the quantity (Float) field in DocType 'Material Request Plan Item' +#. Label of the required_qty (Float) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the required_qty (Float) field in DocType 'Work Order Item' +#. Label of the required_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the required_qty (Float) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the required_qty (Float) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:143 +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:119 +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:58 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1058 +#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:429 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:139 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Required Qty" +msgstr "" + +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:43 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:36 +msgid "Required Quantity" +msgstr "" + +#. Label of the requirement (Data) field in DocType 'Contract Fulfilment +#. Checklist' +#. Label of the requirement (Data) field in DocType 'Contract Template +#. Fulfilment Terms' +#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json +#: erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.json +msgid "Requirement" +msgstr "" + +#. Label of the requires_fulfilment (Check) field in DocType 'Contract' +#. Label of the requires_fulfilment (Check) field in DocType 'Contract +#. Template' +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/crm/doctype/contract_template/contract_template.json +msgid "Requires Fulfilment" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:263 +msgid "Research" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:518 +msgid "Research & Development" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:27 +msgid "Researcher" +msgstr "" + +#. Description of the 'Primary Address' (Link) field in DocType 'Supplier' +#. Description of the 'Customer Primary Address' (Link) field in DocType +#. 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Reselect, if the chosen address is edited after save" +msgstr "" + +#. Description of the 'Primary Contact' (Link) field in DocType 'Supplier' +#. Description of the 'Customer Primary Contact' (Link) field in DocType +#. 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Reselect, if the chosen contact is edited after save" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:7 +msgid "Reseller" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.js:47 +msgid "Resend Payment Email" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:13 +msgid "Reservation" +msgstr "" + +#. Label of the reservation_based_on (Select) field in DocType 'Stock +#. Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.js:118 +msgid "Reservation Based On" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:937 +#: erpnext/selling/doctype/sales_order/sales_order.js:107 +#: erpnext/stock/doctype/pick_list/pick_list.js:158 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179 +msgid "Reserve" +msgstr "" + +#. Label of the reserve_stock (Check) field in DocType 'Production Plan' +#. Label of the reserve_stock (Check) field in DocType 'Work Order' +#. Label of the reserve_stock (Check) field in DocType 'Sales Order' +#. Label of the reserve_stock (Check) field in DocType 'Sales Order Item' +#. Label of the reserve_stock (Check) field in DocType 'Packed Item' +#. Label of the reserve_stock (Check) field in DocType 'Subcontracting Order' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/public/js/stock_reservation.js:15 +#: erpnext/selling/doctype/sales_order/sales_order.js:408 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Reserve Stock" +msgstr "" + +#. Label of the reserve_warehouse (Link) field in DocType 'Subcontracting Order +#. Supplied Item' +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +msgid "Reserve Warehouse" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 +msgid "Reserve for Raw Materials" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:261 +msgid "Reserve for Sub-assembly" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Reserved" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:661 +msgid "Reserved Batch Conflict" +msgstr "" + +#. Label of the reserved_inventory_section (Section Break) field in DocType +#. 'Bin' +#: erpnext/stock/doctype/bin/bin.json +msgid "Reserved Inventory" +msgstr "" + +#. Label of the reserved_qty (Float) field in DocType 'Bin' +#. Label of the reserved_qty (Float) field in DocType 'Stock Reservation Entry' +#. Label of the stock_reserved_qty (Float) field in DocType 'Subcontracting +#. Order Supplied Item' +#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:29 +#: erpnext/stock/dashboard/item_dashboard_list.html:20 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.py:124 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:171 +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +msgid "Reserved Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgstr "" + +#. Label of the reserved_qty_for_production (Float) field in DocType 'Material +#. Request Plan Item' +#. Label of the reserved_qty_for_production (Float) field in DocType 'Bin' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/stock/doctype/bin/bin.json +msgid "Reserved Qty for Production" +msgstr "" + +#. Label of the reserved_qty_for_production_plan (Float) field in DocType 'Bin' +#: erpnext/stock/doctype/bin/bin.json +msgid "Reserved Qty for Production Plan" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:211 +msgid "Reserved Qty for Production: Raw materials quantity to make manufacturing items." +msgstr "" + +#. Label of the reserved_qty_for_sub_contract (Float) field in DocType 'Bin' +#: erpnext/stock/doctype/bin/bin.json +msgid "Reserved Qty for Subcontract" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:214 +msgid "Reserved Qty for Subcontract: Raw materials quantity to make subcontracted items." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:655 +msgid "Reserved Qty should be greater than Delivered Qty." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:208 +msgid "Reserved Qty: Quantity ordered for sale, but not delivered." +msgstr "" + +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:116 +msgid "Reserved Quantity" +msgstr "" + +#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:123 +msgid "Reserved Quantity for Production" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2327 +msgid "Reserved Serial No." +msgstr "" + +#. Label of the reserved_stock (Float) field in DocType 'Bin' +#. Name of a report +#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:24 +#: erpnext/manufacturing/doctype/work_order/work_order.js:953 +#: erpnext/public/js/stock_reservation.js:236 +#: erpnext/selling/doctype/sales_order/sales_order.js:128 +#: erpnext/selling/doctype/sales_order/sales_order.js:495 +#: erpnext/stock/dashboard/item_dashboard_list.html:15 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/pick_list/pick_list.js:178 +#: erpnext/stock/report/reserved_stock/reserved_stock.json +#: erpnext/stock/report/stock_balance/stock_balance.py:573 +#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 +msgid "Reserved Stock" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2356 +msgid "Reserved Stock for Batch" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:301 +msgid "Reserved Stock for Raw Materials" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:275 +msgid "Reserved Stock for Sub-assembly" +msgstr "" + +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:199 +msgid "Reserved for POS Transactions" +msgstr "" + +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:178 +msgid "Reserved for Production" +msgstr "" + +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:185 +msgid "Reserved for Production Plan" +msgstr "" + +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:192 +msgid "Reserved for Sub Contracting" +msgstr "" + +#: erpnext/stock/page/stock_balance/stock_balance.js:53 +msgid "Reserved for manufacturing" +msgstr "" + +#: erpnext/stock/page/stock_balance/stock_balance.js:52 +msgid "Reserved for sale" +msgstr "" + +#: erpnext/stock/page/stock_balance/stock_balance.js:54 +msgid "Reserved for sub contracting" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:203 +#: erpnext/selling/doctype/sales_order/sales_order.js:421 +#: erpnext/stock/doctype/pick_list/pick_list.js:306 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:292 +msgid "Reserving Stock..." +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:172 +msgid "Reset Clearing Date" +msgstr "" + +#. Label of the reset_company_default_values_status (Select) field in DocType +#. 'Transaction Deletion Record' +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Reset Company Default Values" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:19 +msgid "Reset Plaid Link" +msgstr "" + +#. Label of the reset_raw_materials_table (Button) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Reset Raw Materials Table" +msgstr "" + +#. Label of the reset_service_level_agreement (Button) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.js:48 +#: erpnext/support/doctype/issue/issue.json +msgid "Reset Service Level Agreement" +msgstr "" + +#: erpnext/support/doctype/issue/issue.js:65 +msgid "Resetting Service Level Agreement." +msgstr "" + +#. Label of the resignation_letter_date (Date) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Resignation Letter Date" +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Quality Action' +#. Label of the resolution (Text Editor) field in DocType 'Quality Action +#. Resolution' +#. Label of the resolution_section (Section Break) field in DocType 'Warranty +#. Claim' +#: erpnext/quality_management/doctype/quality_action/quality_action.json +#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Resolution" +msgstr "" + +#. Label of the sla_resolution_by (Datetime) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Resolution By" +msgstr "" + +#. Label of the sla_resolution_date (Datetime) field in DocType 'Issue' +#. Label of the resolution_date (Datetime) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Resolution Date" +msgstr "" + +#. Label of the section_break_19 (Section Break) field in DocType 'Issue' +#. Label of the resolution_details (Text Editor) field in DocType 'Issue' +#. Label of the resolution_details (Text) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Resolution Details" +msgstr "" + +#. Option for the 'Service Level Agreement Status' (Select) field in DocType +#. 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Resolution Due" +msgstr "" + +#. Label of the resolution_time (Duration) field in DocType 'Issue' +#. Label of the resolution_time (Duration) field in DocType 'Service Level +#. Priority' +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/service_level_priority/service_level_priority.json +msgid "Resolution Time" +msgstr "" + +#. Label of the resolutions (Table) field in DocType 'Quality Action' +#: erpnext/quality_management/doctype/quality_action/quality_action.json +msgid "Resolutions" +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.js:45 +msgid "Resolve" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Dunning' +#. Option for the 'Status' (Select) field in DocType 'Non Conformance' +#. Option for the 'Status' (Select) field in DocType 'Issue' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning/dunning_list.js:4 +#: erpnext/quality_management/doctype/non_conformance/non_conformance.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/report/issue_analytics/issue_analytics.js:57 +#: erpnext/support/report/issue_summary/issue_summary.js:45 +#: erpnext/support/report/issue_summary/issue_summary.py:378 +msgid "Resolved" +msgstr "" + +#. Label of the resolved_by (Link) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Resolved By" +msgstr "" + +#. Label of the response_by (Datetime) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Response By" +msgstr "" + +#. Label of the response (Section Break) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Response Details" +msgstr "" + +#. Label of the response_key_list (Data) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Response Key List" +msgstr "" + +#. Label of the response_options_sb (Section Break) field in DocType 'Support +#. Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Response Options" +msgstr "" + +#. Label of the response_result_key_path (Data) field in DocType 'Support +#. Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Response Result Key Path" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:99 +msgid "Response Time for {0} priority in row {1} can't be greater than Resolution Time." +msgstr "" + +#. Label of the response_and_resolution_time_section (Section Break) field in +#. DocType 'Service Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Response and Resolution" +msgstr "" + +#. Label of the responsible (Link) field in DocType 'Quality Action Resolution' +#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json +msgid "Responsible" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/defaults_setup.py:108 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:158 +msgid "Rest Of The World" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:90 +msgid "Restart" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation_list.js:23 +msgid "Restart Failed Entries" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:60 +msgid "Restart Subscription" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:178 +msgid "Restore Asset" +msgstr "" + +#. Option for the 'Allow Or Restrict Dimension' (Select) field in DocType +#. 'Accounting Dimension Filter' +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json +msgid "Restrict" +msgstr "" + +#. Label of the restrict_based_on (Select) field in DocType 'Party Specific +#. Item' +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +msgid "Restrict Items Based On" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Shipping +#. Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Restrict to Countries" +msgstr "" + +#. Label of the result_key (Table) field in DocType 'Currency Exchange +#. Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "Result Key" +msgstr "" + +#. Label of the result_preview_field (Data) field in DocType 'Support Search +#. Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Result Preview Field" +msgstr "" + +#. Label of the result_route_field (Data) field in DocType 'Support Search +#. Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Result Route Field" +msgstr "" + +#. Label of the result_title_field (Data) field in DocType 'Support Search +#. Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Result Title Field" +msgstr "" + +#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:43 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:320 +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:63 +#: erpnext/selling/doctype/sales_order/sales_order.js:998 +msgid "Resume" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:661 +msgid "Resume Job" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.js:65 +msgid "Resume Timer" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:41 +msgid "Retail & Wholesale" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:5 +msgid "Retailer" +msgstr "" + +#. Label of the retain_sample (Check) field in DocType 'Item' +#. Label of the retain_sample (Check) field in DocType 'Purchase Receipt Item' +#. Label of the retain_sample (Check) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Retain Sample" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353 +msgid "Retained Earnings" +msgstr "" + +#. Label of the retried (Int) field in DocType 'Bulk Transaction Log Detail' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "Retried" +msgstr "" + +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js:27 +msgid "Retry Failed Transactions" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#. Option for the 'Status' (Select) field in DocType 'Delivery Note' +#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:79 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/services/status.py:82 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:16 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:15 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:138 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:167 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:175 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Return" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:111 +msgid "Return / Credit Note" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:131 +msgid "Return / Debit Note" +msgstr "" + +#. Label of the return_against (Link) field in DocType 'POS Invoice' +#. Label of the return_against (Link) field in DocType 'POS Invoice Reference' +#. Label of the return_against (Link) field in DocType 'Sales Invoice' +#. Label of the return_against (Link) field in DocType 'Sales Invoice +#. Reference' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +msgid "Return Against" +msgstr "" + +#. Label of the return_against (Link) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Return Against Delivery Note" +msgstr "" + +#. Label of the return_against (Link) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Return Against Purchase Invoice" +msgstr "" + +#. Label of the return_against (Link) field in DocType 'Purchase Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Return Against Purchase Receipt" +msgstr "" + +#. Label of the return_against (Link) field in DocType 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Return Against Subcontracting Receipt" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:295 +msgid "Return Components" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Delivery Note' +#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Receipt' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:20 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:19 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Return Issued" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:327 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:127 +msgid "Return Qty" +msgstr "" + +#. Label of the return_qty_from_rejected_warehouse (Check) field in DocType +#. 'Purchase Receipt Item' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:303 +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:103 +msgid "Return Qty from Rejected Warehouse" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:126 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Return Raw Material to Customer" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:124 +msgid "Return invoice of asset cancelled" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:82 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:592 +msgid "Return of Components" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:175 +msgid "Return on Asset Ratio" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:176 +msgid "Return on Equity Ratio" +msgstr "" + +#. Option for the 'Tracking Status' (Select) field in DocType 'Shipment' +#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:143 +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Returned" +msgstr "" + +#. Label of the returned_against (Data) field in DocType 'Serial and Batch +#. Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Returned Against" +msgstr "" + +#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:58 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:58 +msgid "Returned Amount" +msgstr "" + +#. Label of the returned_qty (Float) field in DocType 'Purchase Order Item' +#. Label of the returned_qty (Float) field in DocType 'Sales Order Item' +#. Label of the returned_qty (Float) field in DocType 'Subcontracting Inward +#. Order Item' +#. Label of the returned_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#. Label of the returned_qty (Float) field in DocType 'Subcontracting Order +#. Item' +#. Label of the returned_qty (Float) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the returned_qty (Float) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:146 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:154 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Returned Qty" +msgstr "" + +#. Label of the returned_qty (Float) field in DocType 'Work Order Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Returned Qty " +msgstr "" + +#. Label of the returned_qty (Float) field in DocType 'Delivery Note Item' +#. Label of the returned_qty (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Returned Qty in Stock UOM" +msgstr "" + +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:43 +msgid "Returned Quantity" +msgstr "" + +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:109 +msgid "Returned exchange rate is neither integer not float." +msgstr "" + +#. Label of the returns (Float) field in DocType 'Cashier Closing' +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py:25 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:35 +#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:24 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:33 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt_dashboard.py:27 +msgid "Returns" +msgstr "" + +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:141 +msgid "Revaluation Journals" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358 +msgid "Revaluation Surplus" +msgstr "" + +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:88 +msgid "Revenue" +msgstr "" + +#. Label of the deferred_revenue_account (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Revenue Account" +msgstr "" + +#. Label of the reversal_of (Link) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Reversal Of" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:246 +msgid "Reverse Journal Entry" +msgstr "" + +#. Label of the reverse_sign (Check) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Reverse Sign" +msgstr "" + +#. Label of the review (Link) field in DocType 'Quality Action' +#. Group in Quality Goal's connections +#. Label of the sb_00 (Section Break) field in DocType 'Quality Review' +#. Group in Quality Review's connections +#. Label of the review (Text Editor) field in DocType 'Quality Review +#. Objective' +#. Label of the sb_00 (Section Break) field in DocType 'Quality Review +#. Objective' +#. Name of a report +#: erpnext/quality_management/doctype/quality_action/quality_action.json +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json +#: erpnext/quality_management/report/review/review.json +msgid "Review" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review Accounts Settings' +#: erpnext/accounts/onboarding_step/review_accounts_settings/review_accounts_settings.json +msgid "Review Accounts Settings" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review Buying Settings' +#: erpnext/buying/onboarding_step/review_buying_settings/review_buying_settings.json +msgid "Review Buying Settings" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/accounts/onboarding_step/chart_of_accounts/chart_of_accounts.json +msgid "Review Chart of Accounts" +msgstr "" + +#. Label of the review_date (Date) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Review Date" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review Manufacturing Settings' +#: erpnext/manufacturing/onboarding_step/review_manufacturing_settings/review_manufacturing_settings.json +msgid "Review Manufacturing Settings" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review Selling Settings' +#: erpnext/selling/onboarding_step/review_selling_settings/review_selling_settings.json +msgid "Review Selling Settings" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review Stock Settings' +#: erpnext/stock/onboarding_step/review_stock_settings/review_stock_settings.json +msgid "Review Stock Settings" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Review System Settings' +#: erpnext/setup/onboarding_step/review_system_settings/review_system_settings.json +msgid "Review System Settings" +msgstr "" + +#. Label of a Card Break in the Quality Workspace +#: erpnext/quality_management/workspace/quality/quality.json +msgid "Review and Action" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:176 +msgid "Review each page. In the Table view, map each column, click a row number to set/clear the header row, and exclude anything that is not transactions (ads, summaries)." +msgstr "" + +#. Group in Quality Procedure's connections +#. Label of the reviews (Table) field in DocType 'Quality Review' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +#: erpnext/quality_management/doctype/quality_review/quality_review.json +msgid "Reviews" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.js:38 +msgid "Revise Budget" +msgstr "" + +#. Label of the revision_of (Data) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +msgid "Revision Of" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.js:99 +msgid "Revision cancelled" +msgstr "" + +#. Label of the rgt (Int) field in DocType 'Account' +#. Label of the rgt (Int) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/setup/doctype/company/company.json +msgid "Rgt" +msgstr "" + +#. Label of the right_child (Link) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Right Child" +msgstr "" + +#. Label of the rgt (Int) field in DocType 'Quality Procedure' +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json +msgid "Right Index" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Ringing" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Rod" +msgstr "" + +#. Label of the role_allowed_to_over_deliver_receive (Link) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Role Allowed to Over Deliver/Receive" +msgstr "" + +#. Label of the role_allowed_to_over_bill (Link) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Role Allowed to over bill " +msgstr "" + +#. Label of the credit_controller (Link) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Role allowed to bypass credit limit" +msgstr "" + +#. Description of the 'Exempted Role' (Link) field in DocType 'Accounting +#. Period' +#: erpnext/accounts/doctype/accounting_period/accounting_period.json +msgid "Role allowed to bypass period restrictions." +msgstr "" + +#. Label of the role_allowed_to_create_edit_back_dated_transactions (Link) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Role allowed to create/edit back-dated transactions" +msgstr "" + +#. Label of the stock_auth_role (Link) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Role allowed to edit frozen stock" +msgstr "" + +#. Label of the role_to_override_stop_action (Link) field in DocType 'Accounts +#. Settings' +#. Label of the role_to_override_stop_action (Link) field in DocType 'Buying +#. Settings' +#. Label of the role_to_override_stop_action (Link) field in DocType 'Selling +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Role allowed to override stop action" +msgstr "" + +#. Label of the role_to_notify_on_depreciation_failure (Link) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Role to Notify on Depreciation Failure" +msgstr "" + +#. Label of the role_allowed_for_frozen_entries (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Roles Allowed to Set and Edit Frozen Account Entries" +msgstr "" + +#. Label of the root (Link) field in DocType 'Bisect Nodes' +#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json +msgid "Root" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:48 +msgid "Root Company" +msgstr "" + +#. Label of the root_type (Select) field in DocType 'Account' +#. Label of the root_type (Select) field in DocType 'Account Category' +#. Label of the root_type (Select) field in DocType 'Ledger Merge' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account_tree.js:147 +#: erpnext/accounts/doctype/account_category/account_category.json +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json +#: erpnext/accounts/report/account_balance/account_balance.js:22 +msgid "Root Type" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:404 +msgid "Root Type for {0} must be one of the Asset, Liability, Income, Expense and Equity" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:459 +msgid "Root Type is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:219 +msgid "Root cannot be edited." +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:47 +msgid "Root cannot have a parent cost center" +msgstr "" + +#. Label of the round_free_qty (Check) field in DocType 'Pricing Rule' +#. Label of the round_free_qty (Check) field in DocType 'Promotional Scheme +#. Product Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Round Free Qty" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the round_off_section (Section Break) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211 +#: erpnext/accounts/report/account_balance/account_balance.js:56 +#: erpnext/setup/doctype/company/company.json +msgid "Round Off" +msgstr "" + +#. Label of the round_off_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Round Off Account" +msgstr "" + +#. Label of the round_off_cost_center (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Round Off Cost Center" +msgstr "" + +#. Label of the round_off_tax_amount (Check) field in DocType 'Tax Withholding +#. Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Round Off Tax Amount" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the round_off_for_opening (Link) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/setup/doctype/company/company.json +msgid "Round Off for Opening" +msgstr "" + +#. Label of the round_row_wise_tax (Check) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Round tax amount row-wise" +msgstr "" + +#. Label of the rounded_total (Currency) field in DocType 'POS Invoice' +#. Label of the base_rounded_total (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the rounded_total (Currency) field in DocType 'Purchase Invoice' +#. Label of the base_rounded_total (Currency) field in DocType 'Sales Invoice' +#. Label of the rounded_total (Currency) field in DocType 'Sales Invoice' +#. Label of the base_rounded_total (Currency) field in DocType 'Purchase Order' +#. Label of the rounded_total (Currency) field in DocType 'Purchase Order' +#. Label of the rounded_total (Currency) field in DocType 'Supplier Quotation' +#. Label of the base_rounded_total (Currency) field in DocType 'Quotation' +#. Label of the rounded_total (Currency) field in DocType 'Quotation' +#. Label of the base_rounded_total (Currency) field in DocType 'Sales Order' +#. Label of the rounded_total (Currency) field in DocType 'Sales Order' +#. Label of the base_rounded_total (Currency) field in DocType 'Delivery Note' +#. Label of the rounded_total (Currency) field in DocType 'Delivery Note' +#. Label of the base_rounded_total (Currency) field in DocType 'Purchase +#. Receipt' +#. Label of the rounded_total (Currency) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/purchase_register/purchase_register.py:284 +#: erpnext/accounts/report/sales_register/sales_register.py:312 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Rounded Total" +msgstr "" + +#. Label of the base_rounded_total (Currency) field in DocType 'POS Invoice' +#. Label of the base_rounded_total (Currency) field in DocType 'Supplier +#. Quotation' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +msgid "Rounded Total (Company Currency)" +msgstr "" + +#. Label of the rounding_adjustment (Currency) field in DocType 'POS Invoice' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the rounding_adjustment (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Sales +#. Invoice' +#. Label of the rounding_adjustment (Currency) field in DocType 'Sales Invoice' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Purchase +#. Order' +#. Label of the rounding_adjustment (Currency) field in DocType 'Purchase +#. Order' +#. Label of the rounding_adjustment (Currency) field in DocType 'Supplier +#. Quotation' +#. Label of the base_rounding_adjustment (Currency) field in DocType +#. 'Quotation' +#. Label of the rounding_adjustment (Currency) field in DocType 'Quotation' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Sales +#. Order' +#. Label of the rounding_adjustment (Currency) field in DocType 'Sales Order' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Delivery +#. Note' +#. Label of the rounding_adjustment (Currency) field in DocType 'Delivery Note' +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Purchase +#. Receipt' +#. Label of the rounding_adjustment (Currency) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Rounding Adjustment" +msgstr "" + +#. Label of the base_rounding_adjustment (Currency) field in DocType 'Supplier +#. Quotation' +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +msgid "Rounding Adjustment (Company Currency" +msgstr "" + +#. Label of the base_rounding_adjustment (Currency) field in DocType 'POS +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +msgid "Rounding Adjustment (Company Currency)" +msgstr "" + +#. Label of the rounding_loss_allowance (Float) field in DocType 'Exchange Rate +#. Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Rounding Loss Allowance" +msgstr "" + +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:45 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:49 +msgid "Rounding Loss Allowance should be between 0 and 1" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:119 +#: erpnext/stock/services/base_stock_gl_composer.py:134 +msgid "Rounding gain/loss Entry for Stock Transfer" +msgstr "" + +#. Label of the routing (Link) field in DocType 'BOM' +#. Label of the routing (Link) field in DocType 'BOM Creator' +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:101 +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/routing/routing.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Routing" +msgstr "" + +#. Label of the routing_name (Data) field in DocType 'Routing' +#: erpnext/manufacturing/doctype/routing/routing.json +msgid "Routing Name" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:226 +msgid "Row # {0}: Cannot return more than {1} for Item {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:151 +msgid "Row # {0}: Rate cannot be greater than the rate used in {1} {2}" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:135 +msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:342 +msgid "Row #1: Sequence ID must be 1 for Operation {0}." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:568 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:320 +msgid "Row #{0} (Payment Table): Amount must be negative" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:566 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:315 +msgid "Row #{0} (Payment Table): Amount must be positive" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:583 +msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}." +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:330 +msgid "Row #{0}: Acceptance Criteria Formula is incorrect." +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:310 +msgid "Row #{0}: Acceptance Criteria Formula is required." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:116 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:600 +msgid "Row #{0}: Accepted Warehouse and Rejected Warehouse cannot be same" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:593 +msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}" +msgstr "" + +#: erpnext/accounts/services/taxes.py:125 +msgid "Row #{0}: Account {1} does not belong to company {2}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:399 +msgid "Row #{0}: Allocated Amount cannot be greater than Outstanding Amount of Payment Request {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:375 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:480 +msgid "Row #{0}: Allocated Amount cannot be greater than outstanding amount." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:492 +msgid "Row #{0}: Allocated amount:{1} is greater than outstanding amount:{2} for Payment Term {3}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:273 +msgid "Row #{0}: Amount must be a positive number" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:51 +msgid "Row #{0}: Asset {1} cannot be sold, it is already {2}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:56 +msgid "Row #{0}: Asset {1} is already sold" +msgstr "" + +#: erpnext/selling/doctype/sales_order/services/subcontracting.py:37 +msgid "Row #{0}: BOM not found for FG Item {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:441 +msgid "Row #{0}: Batch No {1} is already selected." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:435 +msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 +msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:638 +msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:617 +msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:483 +msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:78 +msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:397 +msgid "Row #{0}: Cannot delete item {1} which has already been billed." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:371 +msgid "Row #{0}: Cannot delete item {1} which has already been delivered" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:390 +msgid "Row #{0}: Cannot delete item {1} which has already been received" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:377 +msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:383 +msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:525 +msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1231 +msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:233 +msgid "Row #{0}: Cannot transfer {1} {2} of Item {3}. Maximum transferable quantity is {4} {2}." +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.py:138 +msgid "Row #{0}: Child Item should not be a Product Bundle. Please remove Item {1} and Save" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:248 +msgid "Row #{0}: Consumed Asset {1} cannot be Draft" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:251 +msgid "Row #{0}: Consumed Asset {1} cannot be cancelled" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:233 +msgid "Row #{0}: Consumed Asset {1} cannot be the same as the Target Asset" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:242 +msgid "Row #{0}: Consumed Asset {1} cannot be {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:256 +msgid "Row #{0}: Consumed Asset {1} does not belong to company {2}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.py:112 +msgid "Row #{0}: Cost Center {1} does not belong to company {2}" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:212 +msgid "Row #{0}: Could not find enough {1} entries to match. Remaining amount: {2}" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:88 +msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:90 +msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:178 +#: erpnext/controllers/subcontracting_inward_controller.py:304 +#: erpnext/controllers/subcontracting_inward_controller.py:352 +msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:419 +msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:444 +msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:288 +msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:432 +msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:315 +msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:220 +#: erpnext/controllers/subcontracting_inward_controller.py:363 +msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:61 +msgid "Row #{0}: Dates overlapping with other row in group {1}" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:34 +msgid "Row #{0}: Default BOM not found for FG Item {1}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:684 +msgid "Row #{0}: Depreciation Start Date is required" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:336 +msgid "Row #{0}: Duplicate entry in References {1} {2}" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:270 +msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:196 +msgid "Row #{0}: Expense Account not set for the Item {1}. {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:145 +msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 +msgid "Row #{0}: Finished Good Item Qty can not be zero" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 +#: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 +msgid "Row #{0}: Finished Good Item is not specified for service item {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:371 +msgid "Row #{0}: Finished Good Item {1} cannot be added in the Secondary Items table." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:28 +#: erpnext/selling/doctype/sales_order/services/subcontracting.py:27 +msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:394 +msgid "Row #{0}: Finished Good must be {1}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:581 +msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:170 +#: erpnext/controllers/subcontracting_inward_controller.py:294 +msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:603 +msgid "Row #{0}: For {1}, you can select reference document only if account gets credited" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:609 +msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:667 +msgid "Row #{0}: Frequency of Depreciation must be greater than zero" +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:50 +msgid "Row #{0}: From Date cannot be before To Date" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:943 +msgid "Row #{0}: From Time and To Time fields are required" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:427 +msgid "Row #{0}: Item added" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:78 +msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}" +msgstr "" + +#: erpnext/buying/utils.py:98 +msgid "Row #{0}: Item {1} does not exist" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1650 +msgid "Row #{0}: Item {1} has been picked, please reserve stock from the Pick List." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:452 +msgid "Row #{0}: Item {1} has no stock in warehouse {2}." +msgstr "" + +#: erpnext/controllers/stock_controller.py:103 +msgid "Row #{0}: Item {1} has zero rate but '{2}' is not enabled." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:459 +msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:65 +msgid "Row #{0}: Item {1} is not a Customer Provided Item." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:115 +#: erpnext/controllers/subcontracting_inward_controller.py:496 +msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:267 +msgid "Row #{0}: Item {1} is not a service item" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:221 +msgid "Row #{0}: Item {1} is not a stock item" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:106 +msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:79 +msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:128 +msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 +msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:786 +msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:149 +msgid "Row #{0}: Missing {1} for company {2}." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:678 +msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:673 +msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:567 +msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1733 +msgid "Row #{0}: Only {1} available to reserve for the Item {2}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:641 +msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:208 +#: erpnext/controllers/subcontracting_inward_controller.py:342 +msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 +msgid "Row #{0}: Please select Item Code in Assembly Items" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 +msgid "Row #{0}: Please select the BOM No in Assembly Items" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:106 +msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:78 +msgid "Row #{0}: Please select the Sub Assembly Warehouse" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:590 +msgid "Row #{0}: Please set reorder quantity" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:522 +msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:378 +#, python-format +msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" +msgstr "" + +#: erpnext/stock/doctype/packed_item/packed_item.py:213 +msgid "Row #{0}: Product Bundle {1} is disabled and cannot be used in transactions." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:425 +msgid "Row #{0}: Qty increased by {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:224 +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:270 +msgid "Row #{0}: Qty must be a positive number" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgstr "" + +#: erpnext/stock/services/quality_inspection_service.py:77 +msgid "Row #{0}: Quality Inspection is required for Item {1}" +msgstr "" + +#: erpnext/stock/services/quality_inspection_service.py:92 +msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}" +msgstr "" + +#: erpnext/stock/services/quality_inspection_service.py:107 +msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}" +msgstr "" + +#: erpnext/selling/doctype/product_bundle/product_bundle.py:147 +msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:997 +msgid "Row #{0}: Quantity for Item {1} cannot be zero." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:538 +msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1718 +msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." +msgstr "" + +#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/utilities/transaction_base.py:172 +#: erpnext/utilities/transaction_base.py:178 +msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:574 +msgid "Row #{0}: Rejected Qty cannot be set for Secondary Item {1}." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:109 +msgid "Row #{0}: Rejected Warehouse is mandatory for the rejected Item {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:163 +msgid "Row #{0}: Repair cost {1} exceeds available amount {2} for Purchase Invoice {3} and Account {4}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:42 +msgid "Row #{0}: Return Against is required for returning asset" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:142 +msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:155 +msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:569 +msgid "Row #{0}: Secondary Item Qty cannot be zero" +msgstr "" + +#: erpnext/controllers/selling_controller.py:298 +msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" +"\t\t\t\t\tSelling {3} should be atleast {4}.

            Alternatively,\n" +"\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" +"\t\t\t\t\tthis validation." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:348 +msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:123 +msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:378 +msgid "Row #{0}: Serial No {1} for Item {2} is not available in {3} {4} or might be reserved in another {5}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:394 +msgid "Row #{0}: Serial No {1} is already selected." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:424 +msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:550 +msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:544 +msgid "Row #{0}: Service Start Date cannot be greater than Service End Date" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:538 +msgid "Row #{0}: Service Start and End Date is required for deferred accounting" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:448 +msgid "Row #{0}: Set Supplier for item {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:70 +msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:403 +msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:453 +msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:408 +msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:40 +msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:62 +msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:108 +msgid "Row #{0}: Start Time must be before End Time" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:211 +msgid "Row #{0}: Status is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:443 +msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:441 +msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403 +msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1663 +msgid "Row #{0}: Stock cannot be reserved for a non-stock Item {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1676 +msgid "Row #{0}: Stock cannot be reserved in group warehouse {1}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1690 +msgid "Row #{0}: Stock is already reserved for the Item {1}." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:554 +msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:413 +msgid "Row #{0}: Stock not available to reserve for Item {1} against Batch {2} in Warehouse {3}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1254 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1704 +msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:944 +msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:397 +msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:141 +msgid "Row #{0}: The batch {1} has already expired." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:599 +msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:190 +msgid "Row #{0}: Timings conflicts with row {1}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:654 +msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:663 +msgid "Row #{0}: Total Number of Depreciations must be greater than zero" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:57 +msgid "Row #{0}: Warehouse {1} does not match with the warehouse {2} in Serial and Batch Bundle {3}." +msgstr "" + +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:94 +msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:578 +msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:36 +msgid "Row #{0}: You must select an Asset for Item {1}." +msgstr "" + +#: erpnext/public/js/controllers/buying.js:261 +msgid "Row #{0}: {1} can not be negative for item {2}" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:323 +msgid "Row #{0}: {1} is not a valid reading field. Please refer to the field description." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:131 +msgid "Row #{0}: {1} is required to create the Opening {2} Invoices" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:89 +msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:251 +msgid "Row #{0}:Quantity for Item {1} cannot be zero." +msgstr "" + +#: erpnext/buying/utils.py:106 +msgid "Row #{1}: Warehouse is mandatory for stock Item {0}" +msgstr "" + +#: erpnext/controllers/buying_controller.py:314 +msgid "Row #{idx}: Cannot select Supplier Warehouse while suppling raw materials to subcontractor." +msgstr "" + +#: erpnext/controllers/buying_controller.py:633 +msgid "Row #{idx}: Item rate has been updated as per valuation rate since its an internal stock transfer." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1069 +msgid "Row #{idx}: Please enter a location for the asset item {item_code}." +msgstr "" + +#: erpnext/controllers/buying_controller.py:726 +msgid "Row #{idx}: Received Qty must be equal to Accepted + Rejected Qty for Item {item_code}." +msgstr "" + +#: erpnext/controllers/buying_controller.py:739 +msgid "Row #{idx}: {field_label} can not be negative for item {item_code}." +msgstr "" + +#: erpnext/controllers/buying_controller.py:692 +msgid "Row #{idx}: {field_label} is mandatory." +msgstr "" + +#: erpnext/controllers/buying_controller.py:305 +msgid "Row #{idx}: {from_warehouse_field} and {to_warehouse_field} cannot be same." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1185 +msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{}: Currency of {} - {} doesn't matches company currency." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{}: Either Party ID or Party Name is required" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{}: Finance Book should not be empty since you're using multiple." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{}: POS Invoice {} has been {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{}: POS Invoice {} is not against customer {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{}: POS Invoice {} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{}: Party ID is required" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 +msgid "Row #{}: Please assign task to a member." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{}: Please use a different Finance Book." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{}: item {} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{}: {}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{}: {} {} does not exist." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 +msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:806 +msgid "Row {0} : Operation is required against the raw material item {1}" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:265 +msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 +msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:487 +msgid "Row {0}: Account {1} and Party Type {2} have different account types" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.py:164 +msgid "Row {0}: Activity Type is mandatory." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:553 +msgid "Row {0}: Advance against Customer must be credit" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:555 +msgid "Row {0}: Advance against Supplier must be debit" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:557 +msgid "Row {0}: Bill of Materials not found for the Item {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:660 +msgid "Row {0}: Both Debit and Credit values cannot be zero" +msgstr "" + +#: erpnext/controllers/selling_controller.py:924 +msgid "Row {0}: Cannot sell item {1} from Sample Retention Warehouse {2}" +msgstr "" + +#: erpnext/controllers/selling_controller.py:290 +msgid "Row {0}: Conversion Factor is mandatory" +msgstr "" + +#: erpnext/accounts/services/taxes.py:291 +msgid "Row {0}: Cost Center {1} does not belong to Company {2}" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +msgid "Row {0}: Cost center is required for an item {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:75 +msgid "Row {0}: Credit entry can not be linked with a {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/costing.py:25 +msgid "Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:71 +msgid "Row {0}: Debit entry can not be linked with a {1}" +msgstr "" + +#: erpnext/controllers/selling_controller.py:894 +msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:149 +msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}." +msgstr "" + +#: erpnext/accounts/services/payment_schedule.py:230 +msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 +#: erpnext/controllers/taxes_and_totals.py:1388 +msgid "Row {0}: Exchange Rate is mandatory" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:612 +msgid "Row {0}: Expected Value After Useful Life cannot be negative" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:615 +msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:91 +msgid "Row {0}: Expense Head changed to {1} as no Purchase Receipt is created against Item {2}." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:73 +msgid "Row {0}: Expense Head changed to {1} because expense is booked against this account in Purchase Receipt {2}" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:152 +msgid "Row {0}: For Supplier {1}, Email Address is Required to send an email" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.py:161 +msgid "Row {0}: From Time and To Time is mandatory." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:355 +#: erpnext/projects/doctype/timesheet/timesheet.py:225 +msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" +msgstr "" + +#: erpnext/stock/services/internal_transfer.py:60 +msgid "Row {0}: From Warehouse is mandatory for internal transfers" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:336 +msgid "Row {0}: From time must be less than to time" +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.py:167 +msgid "Row {0}: Hours value must be greater than zero." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:94 +msgid "Row {0}: Invalid reference {1}" +msgstr "" + +#: erpnext/controllers/taxes_and_totals.py:134 +msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgstr "" + +#: erpnext/controllers/selling_controller.py:659 +msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:142 +msgid "Row {0}: Item {1} must be a stock item." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:157 +msgid "Row {0}: Item {1} must be a subcontracted item." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:174 +msgid "Row {0}: Item {1} must be linked to a {2}." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:195 +msgid "Row {0}: Item {1}'s quantity cannot be higher than the available quantity." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:940 +msgid "Row {0}: Operation time should be greater than 0 for operation {1}" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/services/packing.py:28 +msgid "Row {0}: Packed Qty must be equal to {1} Qty." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +msgid "Row {0}: Packing Slip is already created for Item {1}." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:107 +msgid "Row {0}: Party / Account does not match with {1} / {2} in {3} {4}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:476 +msgid "Row {0}: Party Type and Party is required for Receivable / Payable account {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py:45 +msgid "Row {0}: Payment Term is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:546 +msgid "Row {0}: Payment against Sales/Purchase Order should always be marked as advance" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:539 +msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:220 +msgid "Row {0}: Please select a BOM for Item {1}." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." +msgstr "" + +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select an valid BOM for Item {1}." +msgstr "" + +#: erpnext/regional/italy/utils.py:290 +msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" +msgstr "" + +#: erpnext/regional/italy/utils.py:317 +msgid "Row {0}: Please set the Mode of Payment in Payment Schedule" +msgstr "" + +#: erpnext/regional/italy/utils.py:322 +msgid "Row {0}: Please set the correct code on Mode of Payment {1}" +msgstr "" + +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:114 +msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +msgid "Row {0}: Purchase Invoice {1} has no stock impact." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:190 +msgid "Row {0}: Qty in Stock UOM can not be zero." +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +msgid "Row {0}: Qty must be greater than 0." +msgstr "" + +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:124 +msgid "Row {0}: Quantity cannot be negative." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/timesheet_billing.py:24 +msgid "Row {0}: Sales Invoice {1} is already created for {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." +msgstr "" + +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:57 +msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:105 +msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}" +msgstr "" + +#: erpnext/stock/services/internal_transfer.py:51 +msgid "Row {0}: Target Warehouse is mandatory for internal transfers" +msgstr "" + +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:125 +msgid "Row {0}: Task {1} does not belong to Project {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.js:178 +msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated." +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 +msgid "Row {0}: The item {1}, quantity must be positive number" +msgstr "" + +#: erpnext/accounts/services/taxes.py:268 +msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:215 +msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:99 +msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity." +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:184 +msgid "Row {0}: UOM Conversion Factor is mandatory" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:389 +msgid "Row {0}: Update Stock must be checked for item {1} because it is against Pick List {2}." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:171 +msgid "Row {0}: Warehouse is required" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:180 +msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehouse belonging to company {3}." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:934 +#: erpnext/manufacturing/doctype/work_order/work_order.py:482 +msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:939 +msgid "Row {0}: user has not applied the rule {1} on the item {2}" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.py:64 +msgid "Row {0}: {1} account already applied for Accounting Dimension {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:41 +msgid "Row {0}: {1} must be greater than 0" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:73 +msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:132 +msgid "Row {0}: {1} {2} does not match with {3}" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 +msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" +msgstr "" + +#: erpnext/utilities/transaction_base.py:625 +msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1051 +msgid "Row {idx}: Asset Naming Series is mandatory for the auto creation of assets for item {item_code}." +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py:84 +msgid "Row({0}): Outstanding Amount cannot be greater than actual Outstanding Amount {1} in {2}" +msgstr "" + +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py:74 +msgid "Row({0}): {1} is already discounted in {2}" +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:206 +msgid "Rows Added in {0}" +msgstr "" + +#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:207 +msgid "Rows Removed in {0}" +msgstr "" + +#. Description of the 'Merge similar Account Heads' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Rows with Same Account heads will be merged on Ledger" +msgstr "" + +#: erpnext/accounts/services/payment_schedule.py:240 +msgid "Rows with duplicate due dates in other rows were found: {0}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:57 +msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:276 +msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" + +#. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' +#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json +msgid "Rule Applied" +msgstr "" + +#. Label of the rule_description (Small Text) field in DocType 'Bank +#. Transaction Rule' +#. Label of the rule_description (Small Text) field in DocType 'Pricing Rule' +#. Label of the rule_description (Small Text) field in DocType 'Promotional +#. Scheme Price Discount' +#. Label of the rule_description (Small Text) field in DocType 'Promotional +#. Scheme Product Discount' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:47 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Rule Description" +msgstr "" + +#. Label of the rule_name (Data) field in DocType 'Bank Transaction Rule' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:28 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Rule Name" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:41 +msgid "Rule created successfully" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:149 +msgid "Rule deleted." +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:718 +msgid "Rule matched based on transaction description and other criteria." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:39 +msgid "Rule name is required" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:174 +msgid "Rule priorities updated" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/EditRule.tsx:30 +msgid "Rule updated." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:56 +msgid "Rules evaluation completed" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:56 +msgid "Rules evaluation started" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:54 +msgid "Rules for configuring series" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 +msgid "Rules to match against the transaction description" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:75 +msgid "Run Rules" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:81 +msgid "Run on new transactions" +msgstr "" + +#. Description of the 'Job Capacity' (Int) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Run parallel job cards in a workstation" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:125 +msgid "Run rules automatically" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:79 +msgid "Run rules on unreconciled transactions that haven't been evaluated yet" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:75 +msgid "Running..." +msgstr "" + +#. Description of the 'Preview mode' (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Runs a preview check on save before submission without making any actual changes." +msgstr "" + +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:29 +msgid "S.O. No." +msgstr "" + +#. Label of the scio_detail (Data) field in DocType 'Sales Invoice Item' +#. Label of the scio_detail (Data) field in DocType 'Stock Entry Detail' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "SCIO Detail" +msgstr "" + +#. Label of the sco_rm_detail (Data) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "SCO Supplied Item" +msgstr "" + +#. Label of the sla_fulfilled_on (Table) field in DocType 'Service Level +#. Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "SLA Fulfilled On" +msgstr "" + +#. Name of a DocType +#: erpnext/support/doctype/sla_fulfilled_on_status/sla_fulfilled_on_status.json +msgid "SLA Fulfilled On Status" +msgstr "" + +#. Label of the pause_sla_on (Table) field in DocType 'Service Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "SLA Paused On" +msgstr "" + +#: erpnext/public/js/utils.js:1251 +msgid "SLA is on hold since {0}" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:52 +msgid "SLA will be applied if {1} is set as {2}{3}" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:32 +msgid "SLA will be applied on every {0}" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/sms_center/sms_center.json +#: erpnext/workspace_sidebar/crm.json +msgid "SMS Center" +msgstr "" + +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:44 +msgid "SO Qty" +msgstr "" + +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:116 +msgid "SO Total Qty" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:26 +msgid "STATEMENT OF ACCOUNTS" +msgstr "" + +#. Label of the swift_number (Read Only) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "SWIFT Number" +msgstr "" + +#. Label of the swift_number (Data) field in DocType 'Bank' +#. Label of the swift_number (Data) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank/bank.json +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "SWIFT number" +msgstr "" + +#. Label of the safety_stock (Float) field in DocType 'Material Request Plan +#. Item' +#. Label of the safety_stock (Float) field in DocType 'Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1053 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:58 +msgid "Safety Stock" +msgstr "" + +#. Label of the salary_information (Tab Break) field in DocType 'Employee' +#. Label of the salary (Currency) field in DocType 'Employee External Work +#. History' +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216 +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json +msgid "Salary" +msgstr "" + +#. Label of the salary_currency (Link) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Salary Currency" +msgstr "" + +#. Label of the salary_mode (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Salary Mode" +msgstr "" + +#. Option for the 'Invoice Type' (Select) field in DocType 'Opening Invoice +#. Creation Tool' +#. Option for the 'Tax Type' (Select) field in DocType 'Tax Rule' +#. Option for the 'Order Type' (Select) field in DocType 'Quotation' +#. Option for the 'Order Type' (Select) field in DocType 'Sales Order' +#. Label of the sales_details (Tab Break) field in DocType 'Item' +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243 +#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json +#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8 +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template_dashboard.py:14 +#: erpnext/accounts/doctype/shipping_rule/shipping_rule_dashboard.py:10 +#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:9 +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/crm/doctype/opportunity/opportunity.js:288 +#: erpnext/crm/doctype/opportunity/opportunity.py:157 +#: erpnext/projects/doctype/project/project_dashboard.py:15 +#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:143 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/company/company.py:464 +#: erpnext/setup/doctype/company/company.py:657 +#: erpnext/setup/doctype/company/company_dashboard.py:9 +#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12 +#: erpnext/setup/install.py:397 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_list.js:29 +#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:17 +msgid "Sales" +msgstr "" + +#: erpnext/stock/doctype/item/item_list.js:28 +msgid "Sales & Purchase" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:657 +msgid "Sales Account" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/sales_analytics/sales_analytics.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json +msgid "Sales Analytics" +msgstr "" + +#. Label of the sales_team (Table) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Sales Contributions and Incentives" +msgstr "" + +#. Label of the selling_defaults (Section Break) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Sales Defaults" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217 +msgid "Sales Expenses" +msgstr "" + +#. Label of the sales_forecast (Link) field in DocType 'Master Production +#. Schedule' +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Sales Forecast" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +msgid "Sales Forecast Item" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/selling/page/sales_funnel/sales_funnel.js:7 +#: erpnext/selling/page/sales_funnel/sales_funnel.js:49 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json +msgid "Sales Funnel" +msgstr "" + +#. Label of the sales_incoming_rate (Currency) field in DocType 'Purchase +#. Invoice Item' +#. Label of the sales_incoming_rate (Currency) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Sales Incoming Rate" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Label of the sales_invoice (Data) field in DocType 'Loyalty Point Entry +#. Redemption' +#. Label of the sales_invoice (Link) field in DocType 'Overdue Payment' +#. Option for the 'Invoice Type' (Select) field in DocType 'Payment +#. Reconciliation Invoice' +#. Option for the 'Invoice Type Created via POS Screen' (Select) field in +#. DocType 'POS Settings' +#. Name of a DocType +#. Label of the sales_invoice (Link) field in DocType 'Sales Invoice Reference' +#. Option for the 'Document Type' (Select) field in DocType 'Contract' +#. Label of the sales_invoice (Link) field in DocType 'Timesheet' +#. Label of the sales_invoice (Link) field in DocType 'Timesheet Detail' +#. Label of a Link in the Selling Workspace +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Label of a shortcut in the Home Workspace +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:63 +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json +#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json +#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +#: erpnext/accounts/print_format/sales_auditing_voucher/sales_auditing_voucher.html:5 +#: erpnext/accounts/report/gross_profit/gross_profit.js:30 +#: erpnext/accounts/report/gross_profit/gross_profit.py:287 +#: erpnext/accounts/report/gross_profit/gross_profit.py:294 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/selling/doctype/quotation/quotation_list.js:22 +#: erpnext/selling/doctype/sales_order/sales_order.js:1115 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:75 +#: erpnext/selling/doctype/selling_settings/selling_settings.js:51 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/delivery_note/delivery_note.js:347 +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:67 +#: erpnext/stock/doctype/pick_list/pick_list.js:142 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/workspace_sidebar/home.json erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Invoice" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json +msgid "Sales Invoice Advance" +msgstr "" + +#. Label of the sales_invoice_item (Data) field in DocType 'Purchase Invoice +#. Item' +#. Name of a DocType +#. Label of the sales_invoice_item (Data) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Sales Invoice Item" +msgstr "" + +#. Label of the sales_invoice_no (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Sales Invoice No" +msgstr "" + +#. Label of the payments (Table) field in DocType 'POS Invoice' +#. Label of the payments (Table) field in DocType 'Sales Invoice' +#. Name of a DocType +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json +msgid "Sales Invoice Payment" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json +msgid "Sales Invoice Reference" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +msgid "Sales Invoice Timesheet" +msgstr "" + +#. Label of the sales_invoices (Table) field in DocType 'POS Closing Entry' +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +msgid "Sales Invoice Transactions" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Invoice Trends" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:184 +msgid "Sales Invoice does not have Payments" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:180 +msgid "Sales Invoice is already consolidated" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:186 +msgid "Sales Invoice is not created using POS" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:192 +msgid "Sales Invoice is not submitted" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 +msgid "Sales Invoice isn't created by user {}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 +msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:611 +msgid "Sales Invoice {0} has already been submitted" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:536 +msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order" +msgstr "" + +#. Label of the sales_monthly_history (Small Text) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Sales Monthly History" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:153 +msgid "Sales Opportunities by Campaign" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:155 +msgid "Sales Opportunities by Medium" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:151 +msgid "Sales Opportunities by Source" +msgstr "" + +#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry +#. Account' +#. Label of the sales_order (Link) field in DocType 'POS Invoice Item' +#. Label of the sales_order (Link) field in DocType 'Sales Invoice Item' +#. Label of the sales_order (Link) field in DocType 'Purchase Order Item' +#. Label of the sales_order (Link) field in DocType 'Supplier Quotation Item' +#. Option for the 'Document Type' (Select) field in DocType 'Contract' +#. Label of the sales_order (Link) field in DocType 'Maintenance Schedule Item' +#. Label of the sales_order (Link) field in DocType 'Material Request Plan +#. Item' +#. Option for the 'Get Items From' (Select) field in DocType 'Production Plan' +#. Label of the sales_order (Link) field in DocType 'Production Plan Item' +#. Label of the sales_order (Link) field in DocType 'Production Plan Sales +#. Order' +#. Label of the sales_order (Link) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the sales_order (Link) field in DocType 'Work Order' +#. Label of the sales_order (Link) field in DocType 'Project' +#. Label of the sales_order (Link) field in DocType 'Delivery Schedule Item' +#. Name of a DocType +#. Label of a Link in the Selling Workspace +#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule' +#. Label of the sales_order (Link) field in DocType 'Material Request Item' +#. Label of the sales_order (Link) field in DocType 'Pick List Item' +#. Label of the sales_order (Link) field in DocType 'Purchase Receipt Item' +#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation +#. Entry' +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:380 +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:284 +#: erpnext/accounts/report/sales_register/sales_register.py:238 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/controllers/selling_controller.py:509 +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:65 +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:122 +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:24 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order/work_order_calendar.js:32 +#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:155 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:217 +#: erpnext/projects/doctype/project/project.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/quotation/quotation.js:134 +#: erpnext/selling/doctype/quotation/quotation_dashboard.py:11 +#: erpnext/selling/doctype/quotation/quotation_list.js:16 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/selling_settings/selling_settings.js:50 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:60 +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:15 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.js:41 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:233 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/delivery_note/delivery_note.js:157 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:223 +#: erpnext/stock/doctype/material_request/material_request.js:236 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:30 +#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:159 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:30 +#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:74 +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/selling.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Sales Order" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Order Analysis" +msgstr "" + +#. Label of the sales_order_date (Date) field in DocType 'Production Plan Sales +#. Order' +#. Label of the transaction_date (Date) field in DocType 'Sales Order Item' +#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Sales Order Date" +msgstr "" + +#. Label of the so_detail (Data) field in DocType 'POS Invoice Item' +#. Label of the so_detail (Data) field in DocType 'Sales Invoice Item' +#. Label of the sales_order_item (Data) field in DocType 'Purchase Order Item' +#. Label of the sales_order_item (Data) field in DocType 'Production Plan Item' +#. Label of the sales_order_item (Data) field in DocType 'Production Plan Item +#. Reference' +#. Label of the sales_order_item (Data) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the sales_order_item (Data) field in DocType 'Work Order' +#. Label of the sales_order_item (Data) field in DocType 'Delivery Schedule +#. Item' +#. Name of a DocType +#. Label of the sales_order_item (Data) field in DocType 'Material Request +#. Item' +#. Label of the sales_order_item (Data) field in DocType 'Pick List Item' +#. Label of the sales_order_item (Data) field in DocType 'Purchase Receipt +#. Item' +#. Label of the sales_order_item (Data) field in DocType 'Subcontracting Inward +#. Order Item' +#. Label of the sales_order_item (Data) field in DocType 'Subcontracting Inward +#. Order Service Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1351 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +msgid "Sales Order Item" +msgstr "" + +#. Label of the sales_order_packed_item (Data) field in DocType 'Purchase Order +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "Sales Order Packed Item" +msgstr "" + +#. Label of the sales_order (Link) field in DocType 'Production Plan Item +#. Reference' +#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json +msgid "Sales Order Reference" +msgstr "" + +#. Label of the sales_order_schedule_section (Section Break) field in DocType +#. 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Sales Order Schedule" +msgstr "" + +#. Label of the sales_order_status (Select) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Sales Order Status" +msgstr "" + +#. Name of a report +#. Label of a chart in the Selling Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/sales_order_trends/sales_order_trends.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Order Trends" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:274 +msgid "Sales Order required for Item {0}" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:298 +msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:256 +msgid "Sales Order {0} is already linked to Project {1}, skipping the link." +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:883 +#: erpnext/selling/doctype/sales_order/mapper.py:896 +msgid "Sales Order {0} is not available for production" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016 +msgid "Sales Order {0} is not submitted" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:558 +msgid "Sales Order {0} is not valid" +msgstr "" + +#. Label of the sales_orders (Table) field in DocType 'Master Production +#. Schedule' +#. Label of the sales_orders_detail (Section Break) field in DocType +#. 'Production Plan' +#. Label of the sales_orders (Table) field in DocType 'Production Plan' +#. Label of a number card in the Selling Workspace +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:42 +#: erpnext/selling/workspace/selling/selling.json +msgid "Sales Orders" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sales_order_planning.py:147 +msgid "Sales Orders Required" +msgstr "" + +#. Label of the sales_orders_to_bill (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Sales Orders to Bill" +msgstr "" + +#. Label of the sales_orders_to_deliver (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Sales Orders to Deliver" +msgstr "" + +#. Label of the sales_partner (Link) field in DocType 'POS Invoice' +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the sales_partner (Link) field in DocType 'Pricing Rule' +#. Option for the 'Select Customers By' (Select) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the sales_partner (Link) field in DocType 'Process Statement Of +#. Accounts' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the sales_partner (Table MultiSelect) field in DocType 'Promotional +#. Scheme' +#. Label of the sales_partner (Link) field in DocType 'Sales Invoice' +#. Label of the default_sales_partner (Link) field in DocType 'Customer' +#. Label of the sales_team_section (Section Break) field in DocType 'Customer' +#. Label of the sales_partner (Link) field in DocType 'Sales Order' +#. Label of the sales_partner (Link) field in DocType 'SMS Center' +#. Label of a Link in the Selling Workspace +#. Name of a DocType +#. Label of the sales_partner (Link) field in DocType 'Delivery Note' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:130 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1254 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:114 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:196 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:74 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sms_center/sms_center.json +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:16 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:166 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:16 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:45 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Partner" +msgstr "" + +#. Label of the sales_partner (Link) field in DocType 'Sales Partner Item' +#: erpnext/accounts/doctype/sales_partner_item/sales_partner_item.json +msgid "Sales Partner " +msgstr "" + +#. Name of a report +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.json +msgid "Sales Partner Commission Summary" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/sales_partner_item/sales_partner_item.json +msgid "Sales Partner Item" +msgstr "" + +#. Label of the partner_name (Data) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Sales Partner Name" +msgstr "" + +#. Label of the partner_target_details_section_break (Section Break) field in +#. DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Sales Partner Target" +msgstr "" + +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Partner Target Variance Based On Item Group" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.json +msgid "Sales Partner Target Variance based on Item Group" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.json +msgid "Sales Partner Transaction Summary" +msgstr "" + +#. Name of a DocType +#. Label of the sales_partner_type (Data) field in DocType 'Sales Partner Type' +#: erpnext/selling/doctype/sales_partner_type/sales_partner_type.json +msgid "Sales Partner Type" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/sales_partners_commission/sales_partners_commission.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Partners Commission" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Sales Payment Summary" +msgstr "" + +#. Option for the 'Select Customers By' (Select) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the sales_person (Link) field in DocType 'Process Statement Of +#. Accounts' +#. Label of a Link in the CRM Workspace +#. Label of the sales_person (Link) field in DocType 'Maintenance Schedule +#. Detail' +#. Label of the sales_person (Link) field in DocType 'Maintenance Schedule +#. Item' +#. Label of the service_person (Link) field in DocType 'Maintenance Visit +#. Purpose' +#. Label of the sales_person (Link) field in DocType 'Sales Team' +#. Label of a Link in the Selling Workspace +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:158 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:136 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1251 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:120 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:193 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:80 +#: erpnext/accounts/report/gross_profit/gross_profit.js:50 +#: erpnext/accounts/report/gross_profit/gross_profit.py:402 +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +#: erpnext/selling/doctype/sales_team/sales_team.json +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:8 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:68 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:8 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:125 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/sales_person/sales_person.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json +msgid "Sales Person" +msgstr "" + +#: erpnext/controllers/selling_controller.py:272 +msgid "Sales Person {0} is disabled." +msgstr "" + +#. Name of a report +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.json +msgid "Sales Person Commission Summary" +msgstr "" + +#. Label of the sales_person_name (Data) field in DocType 'Sales Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Sales Person Name" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Person Target Variance Based On Item Group" +msgstr "" + +#. Label of the target_details_section_break (Section Break) field in DocType +#. 'Sales Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Sales Person Targets" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Person-wise Transaction Summary" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/selling/page/sales_funnel/sales_funnel.js:50 +#: erpnext/workspace_sidebar/crm.json +msgid "Sales Pipeline" +msgstr "" + +#. Name of a report +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.json +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Sales Pipeline Analytics" +msgstr "" + +#: erpnext/selling/page/sales_funnel/sales_funnel.js:157 +msgid "Sales Pipeline by Stage" +msgstr "" + +#: erpnext/stock/report/item_prices/item_prices.py:58 +msgid "Sales Price List" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/sales_register/sales_register.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/selling.json +msgid "Sales Register" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:28 +msgid "Sales Representative" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:994 +#: erpnext/stock/doctype/delivery_note/delivery_note.js:270 +msgid "Sales Return" +msgstr "" + +#. Label of the sales_stage (Link) field in DocType 'Opportunity' +#. Name of a DocType +#. Label of a Link in the CRM Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/sales_stage/sales_stage.json +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:56 +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:69 +#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json +msgid "Sales Stage" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:8 +msgid "Sales Summary" +msgstr "" + +#. Label of the sales_tax_template (Link) field in DocType 'Tax Rule' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/setup/doctype/company/company.js:149 +#: erpnext/workspace_sidebar/taxes.json +msgid "Sales Tax Template" +msgstr "" + +#. Label of the sales_tax_withholding_category (Link) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Sales Tax Withholding Category" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Sales Taxes" +msgstr "" + +#. Label of the taxes (Table) field in DocType 'POS Invoice' +#. Label of the taxes (Table) field in DocType 'Sales Invoice' +#. Name of a DocType +#. Label of the taxes (Table) field in DocType 'Sales Taxes and Charges +#. Template' +#. Label of the taxes (Table) field in DocType 'Quotation' +#. Label of the taxes (Table) field in DocType 'Sales Order' +#. Label of the taxes (Table) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Sales Taxes and Charges" +msgstr "" + +#. Label of the sales_taxes_and_charges_template (Link) field in DocType +#. 'Payment Entry' +#. Label of the taxes_and_charges (Link) field in DocType 'POS Invoice' +#. Label of the taxes_and_charges (Link) field in DocType 'Sales Invoice' +#. Name of a DocType +#. Label of the sales_tax_template (Link) field in DocType 'Subscription' +#. Label of a Link in the Invoicing Workspace +#. Label of the taxes_and_charges (Link) field in DocType 'Quotation' +#. Label of the taxes_and_charges (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Label of the taxes_and_charges (Link) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Sales Taxes and Charges Template" +msgstr "" + +#. Label of the section_break2 (Section Break) field in DocType 'POS Invoice' +#. Label of the sales_team (Table) field in DocType 'POS Invoice' +#. Label of the sales_team_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the sales_team (Table) field in DocType 'Customer' +#. Label of the sales_team_tab (Tab Break) field in DocType 'Customer' +#. Label of the section_break1 (Section Break) field in DocType 'Sales Order' +#. Label of the sales_team (Table) field in DocType 'Sales Order' +#. Name of a DocType +#. Label of the section_break1 (Section Break) field in DocType 'Delivery Note' +#. Label of the sales_team (Table) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_team/sales_team.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:247 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Sales Team" +msgstr "" + +#: erpnext/selling/report/sales_order_trends/sales_order_trends.py:56 +msgid "Sales Value" +msgstr "" + +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:26 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:42 +msgid "Sales and Returns" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/sales_order_planning.py:27 +msgid "Sales orders are not available for production" +msgstr "" + +#. Label of the expected_value_after_useful_life (Currency) field in DocType +#. 'Asset Finance Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Salvage Value" +msgstr "" + +#. Label of the salvage_value_percentage (Percent) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Salvage Value Percentage" +msgstr "" + +#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:41 +msgid "Same Company is entered more than once" +msgstr "" + +#. Label of the same_item (Check) field in DocType 'Pricing Rule' +#. Label of the same_item (Check) field in DocType 'Promotional Scheme Product +#. Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Same Item" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:69 +msgid "Same day" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +msgid "Same item and warehouse combination already entered." +msgstr "" + +#: erpnext/buying/utils.py:64 +msgid "Same item cannot be entered multiple times." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:121 +msgid "Same supplier has been entered multiple times" +msgstr "" + +#. Label of the sample_quantity (Int) field in DocType 'Purchase Receipt Item' +#. Label of the sample_quantity (Int) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Sample Quantity" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:269 +#: erpnext/stock/doctype/stock_entry/stock_entry.js:552 +msgid "Sample Retention Stock Entry" +msgstr "" + +#. Label of the sample_retention_warehouse (Link) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Sample Retention Warehouse" +msgstr "" + +#. Label of the sample_size (Float) field in DocType 'Quality Inspection' +#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 +#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Sample Size" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:1143 +msgid "Sample quantity {0} cannot be more than received quantity {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js:7 +msgid "Sanctioned" +msgstr "" + +#. Option for the 'Action on New Invoice' (Select) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Save Changes and Load New Invoice" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:47 +msgid "Save the currently opened form" +msgstr "" + +#: erpnext/templates/includes/order/order_taxes.html:34 +#: erpnext/templates/includes/order/order_taxes.html:85 +msgid "Savings" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Sazhen" +msgstr "" + +#. Label of the scan_barcode (Data) field in DocType 'POS Invoice' +#. Label of the scan_barcode (Data) field in DocType 'Purchase Invoice' +#. Label of the scan_barcode (Data) field in DocType 'Sales Invoice' +#. Label of the scan_barcode (Data) field in DocType 'Purchase Order' +#. Label of the scan_barcode (Data) field in DocType 'Quotation' +#. Label of the scan_barcode (Data) field in DocType 'Sales Order' +#. Label of the scan_barcode (Data) field in DocType 'Delivery Note' +#. Label of the scan_barcode (Data) field in DocType 'Material Request' +#. Label of the scan_barcode (Data) field in DocType 'Pick List' +#. Label of the scan_barcode (Data) field in DocType 'Purchase Receipt' +#. Label of the scan_barcode (Data) field in DocType 'Stock Entry' +#. Label of the scan_barcode (Data) field in DocType 'Stock Reconciliation' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/public/js/utils/barcode_scanner.js:236 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Scan Barcode" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:171 +msgid "Scan Batch No" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:127 +#: erpnext/manufacturing/doctype/workstation/workstation.js:154 +msgid "Scan Job Card Qrcode" +msgstr "" + +#. Label of the scan_mode (Check) field in DocType 'Pick List' +#. Label of the scan_mode (Check) field in DocType 'Stock Reconciliation' +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "Scan Mode" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:156 +msgid "Scan Serial No" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:200 +msgid "Scan barcode for item {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:111 +msgid "Scan mode enabled, existing quantity will not be fetched." +msgstr "" + +#. Label of the scanned_cheque (Attach) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Scanned Cheque" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:268 +msgid "Scanned Quantity" +msgstr "" + +#. Label of the schedule_date (Date) field in DocType 'Depreciation Schedule' +#. Label of the schedule_date (Datetime) field in DocType 'Production Plan Sub +#. Assembly Item' +#: erpnext/assets/doctype/asset/asset.js:378 +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Schedule Date" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:512 +msgid "Schedule Name" +msgstr "" + +#. Label of the scheduled_date (Date) field in DocType 'Maintenance Schedule +#. Detail' +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:118 +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +msgid "Scheduled Date" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +msgid "Scheduled Date is required." +msgstr "" + +#. Label of the scheduled_time (Datetime) field in DocType 'Appointment' +#. Label of the scheduled_time_section (Section Break) field in DocType 'Job +#. Card' +#. Label of the scheduled_time_tab (Tab Break) field in DocType 'Job Card' +#: erpnext/crm/doctype/appointment/appointment.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Scheduled Time" +msgstr "" + +#. Label of the scheduled_time_logs (Table) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Scheduled Time Logs" +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:115 +msgid "Scheduled job disabled. Transactions will not be auto classified." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:115 +msgid "Scheduled job enabled. Transactions will be auto classified." +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:191 +msgid "Scheduler is Inactive. Can't trigger job now." +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:240 +msgid "Scheduler is Inactive. Can't trigger jobs now." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:681 +msgid "Scheduler is inactive. Cannot enqueue job." +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.py:39 +msgid "Scheduler is inactive. Cannot merge accounts." +msgstr "" + +#. Label of the schedules (Table) field in DocType 'Maintenance Schedule' +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +msgid "Schedules" +msgstr "" + +#. Label of the scheduling_section (Section Break) field in DocType 'Stock +#. Reposting Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Scheduling" +msgstr "" + +#: erpnext/utilities/doctype/rename_tool/rename_tool.js:23 +msgid "Scheduling..." +msgstr "" + +#. Label of the school_univ (Small Text) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "School/University" +msgstr "" + +#. Label of the score (Percent) field in DocType 'Supplier Scorecard Scoring +#. Criteria' +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Score" +msgstr "" + +#. Label of the scorecard_actions (Section Break) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Scorecard Actions" +msgstr "" + +#. Description of the 'Weighting Function' (Small Text) field in DocType +#. 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Scorecard variables can be used, as well as:\n" +"{total_score} (the total score from that period),\n" +"{period_number} (the number of periods to present day)\n" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_dashboard.py:10 +msgid "Scorecards" +msgstr "" + +#. Label of the criteria (Table) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Scoring Criteria" +msgstr "" + +#. Label of the scoring_setup (Section Break) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Scoring Setup" +msgstr "" + +#. Label of the standings (Table) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Scoring Standings" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt +#. Item' +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Scrap" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:163 +msgid "Scrap Asset" +msgstr "" + +#. Label of the scrap_warehouse (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Scrap Warehouse" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:391 +msgid "Scrap date cannot be before purchase date" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:16 +msgid "Scrapped" +msgstr "" + +#. Label of the search_apis_sb (Section Break) field in DocType 'Support +#. Settings' +#. Label of the search_apis (Table) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Search APIs" +msgstr "" + +#: erpnext/stock/report/bom_search/bom_search.js:38 +msgid "Search Sub Assemblies" +msgstr "" + +#. Label of the search_term_param_name (Data) field in DocType 'Support Search +#. Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Search Term Param Name" +msgstr "" + +#: banking/src/components/common/AccountsDropdown.tsx:155 +msgid "Search account..." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:323 +msgid "Search by customer name, phone, email." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:60 +msgid "Search by invoice id or customer name" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:229 +msgid "Search by item code, serial number or barcode" +msgstr "" + +#: banking/src/components/features/BankReconciliation/CompanySelector.tsx:64 +msgid "Search company..." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:338 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:200 +msgid "Search transactions" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Second" +msgstr "" + +#. Label of the second_email (Time) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Second Email" +msgstr "" + +#. Label of the item_code (Link) field in DocType 'Job Card Secondary Item' +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +msgid "Secondary Item Code" +msgstr "" + +#. Label of the item_name (Data) field in DocType 'Job Card Secondary Item' +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +msgid "Secondary Item Name" +msgstr "" + +#. Label of the secondary_items (Table) field in DocType 'BOM' +#. Label of the secondary_items (Table) field in DocType 'Job Card' +#. Label of the secondary_items_section (Tab Break) field in DocType 'Job Card' +#. Label of the secondary_items (Table) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Secondary Items" +msgstr "" + +#. Label of the secondary_items (Table) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.js:136 +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Secondary Items (as per BOM)" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:135 +msgid "Secondary Items (as per Manufacture Entries)" +msgstr "" + +#. Label of the secondary_items_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Secondary Items Cost" +msgstr "" + +#. Label of the base_secondary_items_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Secondary Items Cost (Company Currency)" +msgstr "" + +#. Label of the secondary_items_cost_per_qty (Currency) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Secondary Items Cost Per Qty" +msgstr "" + +#. Label of the scrap_items_generated_section (Section Break) field in DocType +#. 'Subcontracting Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Secondary Items Generated" +msgstr "" + +#. Label of the secondary_party (Dynamic Link) field in DocType 'Party Link' +#: erpnext/accounts/doctype/party_link/party_link.json +msgid "Secondary Party" +msgstr "" + +#. Label of the secondary_role (Link) field in DocType 'Party Link' +#: erpnext/accounts/doctype/party_link/party_link.json +msgid "Secondary Role" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:29 +msgid "Secretary" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306 +msgid "Secured Loans" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:42 +msgid "Securities & Commodity Exchanges" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:31 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:44 +msgid "Securities and Deposits" +msgstr "" + +#: erpnext/templates/pages/help.html:29 +msgid "See All Articles" +msgstr "" + +#: erpnext/templates/pages/help.html:56 +msgid "See all open tickets" +msgstr "" + +#: banking/src/components/common/AccountsDropdown.tsx:132 +#: banking/src/components/common/AccountsDropdown.tsx:148 +msgid "Select Account" +msgstr "" + +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:23 +msgid "Select Accounting Dimension." +msgstr "" + +#: erpnext/public/js/utils.js:555 +msgid "Select Alternate Item" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.js:341 +msgid "Select Alternative Items for Sales Order" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1135 +msgid "Select Attribute Values" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1334 +msgid "Select BOM" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1311 +msgid "Select BOM and Qty for Production" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.js:234 +#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/stock/doctype/pick_list/pick_list.js:398 +msgid "Select Batch No" +msgstr "" + +#. Label of the billing_address (Link) field in DocType 'Purchase Invoice' +#. Label of the billing_address (Link) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Select Billing Address" +msgstr "" + +#: erpnext/public/js/stock_analytics.js:61 +msgid "Select Brand..." +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:110 +msgid "Select Columns and Filters" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:284 +msgid "Select Company" +msgstr "" + +#: erpnext/public/js/print.js:118 +msgid "Select Company Address" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:476 +msgid "Select Corrective Operation" +msgstr "" + +#. Label of the customer_collection (Select) field in DocType 'Process +#. Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Select Customers By" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:244 +msgid "Select Date of Birth. This will validate Employees age and prevent hiring of under-age staff." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:251 +msgid "Select Date of joining. It will have impact on the first salary calculation, Leave allocation on pro-rata bases." +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:116 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:147 +msgid "Select Default Supplier" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:276 +msgid "Select Difference Account" +msgstr "" + +#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:57 +msgid "Select Dimension" +msgstr "" + +#. Label of the dispatch_address (Link) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Select Dispatch Address " +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +msgid "Select Employees" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:174 +#: erpnext/selling/doctype/sales_order/sales_order.js:862 +msgid "Select Finished Good" +msgstr "" + +#. Label of the select_items (Table MultiSelect) field in DocType 'Master +#. Production Schedule' +#. Label of the selected_items (Table MultiSelect) field in DocType 'Sales +#. Forecast' +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1677 +#: erpnext/selling/doctype/sales_order/sales_order.js:1705 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:492 +msgid "Select Items" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1563 +msgid "Select Items based on Delivery Date" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:2921 +msgid "Select Items for Quality Inspection" +msgstr "" + +#. Label of the select_items_to_manufacture_section (Section Break) field in +#. DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1363 +msgid "Select Items to Manufacture" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:499 +msgid "Select Items to Receive" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order_list.js:87 +msgid "Select Items up to Delivery Date" +msgstr "" + +#. Label of the supplier_address (Link) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Select Job Worker Address" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1231 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:966 +msgid "Select Loyalty Program" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:498 +msgid "Select Payment Schedule" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:411 +msgid "Select Possible Supplier" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1116 +#: erpnext/stock/doctype/pick_list/pick_list.js:224 +msgid "Select Quantity" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.js:234 +#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/stock/doctype/pick_list/pick_list.js:398 +msgid "Select Serial No" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.js:237 +#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/stock/doctype/pick_list/pick_list.js:401 +msgid "Select Serial and Batch" +msgstr "" + +#. Label of the shipping_address (Link) field in DocType 'Purchase Invoice' +#. Label of the shipping_address (Link) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Select Shipping Address" +msgstr "" + +#. Label of the supplier_address (Link) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Select Supplier Address" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:150 +msgid "Select Target Warehouse" +msgstr "" + +#: erpnext/www/book_appointment/index.js:73 +msgid "Select Time" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:28 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:28 +msgid "Select View" +msgstr "" + +#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:251 +msgid "Select Vouchers to Match" +msgstr "" + +#: erpnext/public/js/stock_analytics.js:72 +msgid "Select Warehouse..." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:551 +msgid "Select Warehouses to get Stock for Materials Planning" +msgstr "" + +#: erpnext/public/js/communication.js:80 +msgid "Select a Company" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:239 +msgid "Select a Company this Employee belongs to." +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:221 +msgid "Select a Customer" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:115 +msgid "Select a Default Priority." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:146 +msgid "Select a Payment Method." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.js:253 +msgid "Select a Supplier" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:49 +msgid "Select a bank account to reconcile" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:161 +msgid "Select a company" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:396 +msgid "Select a transaction to match and reconcile with vouchers" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:586 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:679 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1175 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:588 +msgid "Select all" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1477 +msgid "Select an Item Group." +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:36 +msgid "Select an account to print in account currency" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:21 +msgid "Select an invoice to load summary data" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.js:356 +msgid "Select an item from each set to be used in the Sales Order." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1149 +msgid "Select at least one attribute value." +msgstr "" + +#: erpnext/public/js/utils/party.js:379 +msgid "Select company first" +msgstr "" + +#. Description of the 'Parent Sales Person' (Link) field in DocType 'Sales +#. Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Select company name first." +msgstr "" + +#: banking/src/components/ui/form-elements.tsx:159 +msgid "Select date" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1404 +msgid "Select finance book for the item {0} at row {1}" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:239 +msgid "Select item group" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:66 +msgid "Select number of days" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:605 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:699 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1192 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:632 +msgid "Select row {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:476 +msgid "Select template item" +msgstr "" + +#. Description of the 'Bank Account' (Link) field in DocType 'Bank Clearance' +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json +msgid "Select the Bank Account to reconcile." +msgstr "" + +#: erpnext/manufacturing/doctype/operation/operation.js:25 +msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1222 +msgid "Select the Item to be manufactured." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:988 +msgid "Select the Item to be manufactured. The Item name, UoM, Company, and Currency will be fetched automatically." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:432 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:445 +msgid "Select the Warehouse" +msgstr "" + +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:47 +msgid "Select the customer or supplier." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:931 +msgid "Select the date" +msgstr "" + +#: erpnext/www/book_appointment/index.html:16 +msgid "Select the date and your timezone" +msgstr "" + +#. Description of the 'Tax Withholding Group' (Link) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Select the group first to filter the applicable withholding categories below." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1007 +msgid "Select the raw materials (Items) required to manufacture the Item" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:531 +msgid "Select variant item code for the template item {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:708 +msgid "Select whether to get items from a Sales Order or a Material Request. For now select Sales Order.\n" +" A Production Plan can also be created manually where you can select the Items to manufacture." +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.js:65 +msgid "Select your weekly off day" +msgstr "" + +#. Description of the 'Primary Address and Contact' (Section Break) field in +#. DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Select, to make the customer searchable with these fields" +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79 +msgid "Selected POS Opening Entry should be open." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/mapper.py:158 +msgid "Selected Price List should have buying and selling fields checked." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:123 +msgid "Selected Print Format does not exist." +msgstr "" + +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:166 +msgid "Selected Serial and Batch Bundle entries have been fixed." +msgstr "" + +#. Label of the repost_vouchers (Table) field in DocType 'Repost Payment +#. Ledger' +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +msgid "Selected Vouchers" +msgstr "" + +#: erpnext/www/book_appointment/index.html:43 +msgid "Selected date is" +msgstr "" + +#: erpnext/public/js/bulk_transaction_processing.js:34 +msgid "Selected document must be in submitted state" +msgstr "" + +#. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Self delivery" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:642 +#: erpnext/stock/doctype/batch/batch_dashboard.py:9 +#: erpnext/stock/doctype/item/item_dashboard.py:20 +msgid "Sell" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:171 +#: erpnext/assets/doctype/asset/asset.js:631 +msgid "Sell Asset" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:636 +msgid "Sell Qty" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:652 +msgid "Sell quantity cannot exceed the asset quantity" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:79 +msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:648 +msgid "Sell quantity must be greater than zero" +msgstr "" + +#. Label of the selling (Check) field in DocType 'Pricing Rule' +#. Label of the selling (Check) field in DocType 'Promotional Scheme' +#. Option for the 'Shipping Rule Type' (Select) field in DocType 'Shipping +#. Rule' +#. Group in Subscription's connections +#. Label of a Desktop Icon +#. Option for the 'Order Type' (Select) field in DocType 'Blanket Order' +#. Name of a Workspace +#. Label of a Card Break in the Selling Workspace +#. Group in Incoterm's connections +#. Label of the selling (Check) field in DocType 'Terms and Conditions' +#. Label of the selling (Check) field in DocType 'Item Price' +#. Label of the selling (Check) field in DocType 'Price List' +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/desktop_icon/selling.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/stock/doctype/item/item_prices.html:100 +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/price_list/price_list.json +#: erpnext/workspace_sidebar/selling.json +msgid "Selling" +msgstr "" + +#: erpnext/accounts/report/gross_profit/gross_profit.py:361 +msgid "Selling Amount" +msgstr "" + +#. Label of the selling_cost_center (Link) field in DocType 'Item Default' +#. Label of the vf_selling_cost_center (Read Only) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Selling Cost Center" +msgstr "" + +#: erpnext/stock/report/item_price_stock/item_price_stock.py:48 +msgid "Selling Price List" +msgstr "" + +#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:36 +#: erpnext/stock/report/item_price_stock/item_price_stock.py:54 +msgid "Selling Rate" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Selling Workspace +#. Label of a shortcut in the ERPNext Settings Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.py:268 +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Selling Settings" +msgstr "" + +#. Title of the Module Onboarding 'Selling Onboarding' +#: erpnext/selling/module_onboarding/selling_onboarding/selling_onboarding.json +msgid "Selling Setup" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:214 +msgid "Selling must be checked, if Applicable For is selected as {0}" +msgstr "" + +#. Label of the semi_finished_good__finished_good_section (Section Break) field +#. in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Semi Finished Good / Finished Good" +msgstr "" + +#. Label of the finished_good (Link) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Semi Finished Goods / Finished Goods" +msgstr "" + +#. Label of the send_after_days (Int) field in DocType 'Campaign Email +#. Schedule' +#: erpnext/crm/doctype/campaign_email_schedule/campaign_email_schedule.json +msgid "Send After (days)" +msgstr "" + +#. Label of the send_attached_files (Check) field in DocType 'Request for +#. Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Send Attached Files" +msgstr "" + +#. Label of the send_document_print (Check) field in DocType 'Request for +#. Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Send Document Print" +msgstr "" + +#. Label of the send_email (Check) field in DocType 'Request for Quotation +#. Supplier' +#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json +msgid "Send Email" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:11 +msgid "Send Emails" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:48 +msgid "Send Emails to Suppliers" +msgstr "" + +#. Label of the send_sms (Button) field in DocType 'SMS Center' +#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Send SMS" +msgstr "" + +#. Label of the send_to (Select) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Send To" +msgstr "" + +#. Label of the primary_mandatory (Check) field in DocType 'Process Statement +#. Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +msgid "Send To Primary Contact" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Send regular summary reports via Email." +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:102 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Send to Subcontractor" +msgstr "" + +#. Label of the send_with_attachment (Check) field in DocType 'Delivery +#. Settings' +#: erpnext/stock/doctype/delivery_settings/delivery_settings.json +msgid "Send with Attachment" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Separate columns for withdrawal and deposit" +msgstr "" + +#. Label of the sequence_id (Int) field in DocType 'BOM Operation' +#. Label of the sequence_id (Int) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Sequence ID" +msgstr "" + +#. Option for the 'Call Routing' (Select) field in DocType 'Incoming Call +#. Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +msgid "Sequential" +msgstr "" + +#. Label of the serial_and_batch_item_settings_tab (Tab Break) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Serial & Batch Item" +msgstr "" + +#. Label of the section_break_jcmx (Section Break) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Serial / Batch" +msgstr "" + +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Stock +#. Reconciliation Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Subcontracting +#. Receipt Supplied Item' +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Serial / Batch Bundle" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:491 +msgid "Serial / Batch Bundle Missing" +msgstr "" + +#. Label of the serial_no_and_batch_no_tab (Section Break) field in DocType +#. 'Serial and Batch Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +msgid "Serial / Batch No" +msgstr "" + +#: erpnext/public/js/utils.js:217 +msgid "Serial / Batch Nos" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Serial Item settings" +msgstr "" + +#. Label of the serial_no (Text) field in DocType 'POS Invoice Item' +#. Label of the serial_no (Text) field in DocType 'Purchase Invoice Item' +#. Label of the serial_no (Text) field in DocType 'Sales Invoice Item' +#. Label of the serial_no (Text) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the serial_no (Small Text) field in DocType 'Asset Repair Consumed +#. Item' +#. Label of the serial_no (Text) field in DocType 'Purchase Receipt Item +#. Supplied' +#. Label of the serial_no (Small Text) field in DocType 'Maintenance Schedule +#. Detail' +#. Label of the serial_no (Small Text) field in DocType 'Maintenance Schedule +#. Item' +#. Label of the serial_no (Link) field in DocType 'Maintenance Visit Purpose' +#. Label of the serial_no (Small Text) field in DocType 'Job Card' +#. Label of the serial_no (Small Text) field in DocType 'Installation Note +#. Item' +#. Label of the serial_no (Text) field in DocType 'Delivery Note Item' +#. Label of the serial_no (Text) field in DocType 'Packed Item' +#. Label of the serial_no (Small Text) field in DocType 'Pick List Item' +#. Label of the serial_no (Text) field in DocType 'Purchase Receipt Item' +#. Label of the serial_no (Link) field in DocType 'Serial and Batch Entry' +#. Name of a DocType +#. Label of the serial_no (Data) field in DocType 'Serial No' +#. Label of the serial_no (Text) field in DocType 'Stock Entry Detail' +#. Label of the serial_no (Long Text) field in DocType 'Stock Ledger Entry' +#. Label of the serial_no (Long Text) field in DocType 'Stock Reconciliation +#. Item' +#. Label of a Link in the Stock Workspace +#. Label of the serial_no (Small Text) field in DocType 'Subcontracting Receipt +#. Item' +#. Label of the serial_no (Text) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#. Label of the serial_no (Link) field in DocType 'Warranty Claim' +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 +#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/public/js/utils/serial_no_batch_selector.js:433 +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:189 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:65 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:151 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:37 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:426 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial No" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.py:140 +msgid "Serial No (In/Out)" +msgstr "" + +#. Label of the serial_no_batch (Section Break) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Serial No / Batch" +msgstr "" + +#: erpnext/controllers/selling_controller.py:108 +msgid "Serial No Already Assigned" +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 +msgid "Serial No Count" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial No Ledger" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:271 +msgid "Serial No Range" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +msgid "Serial No Reserved" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:494 +msgid "Serial No Series Overlap" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#: erpnext/stock/report/serial_no_service_contract_expiry/serial_no_service_contract_expiry.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Serial No Service Contract Expiry" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/serial_no_status/serial_no_status.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial No Status" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/serial_no_warranty_expiry/serial_no_warranty_expiry.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial No Warranty Expiry" +msgstr "" + +#. Label of the serial_no_and_batch_section (Section Break) field in DocType +#. 'Pick List Item' +#. Label of the serial_no_and_batch_section (Section Break) field in DocType +#. 'Stock Reconciliation Item' +#. Label of a Card Break in the Stock Workspace +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/workspace/stock/stock.json +msgid "Serial No and Batch" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:93 +msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial No and Batch Traceability" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +msgid "Serial No is mandatory" +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.py:77 +msgid "Serial No is mandatory for Item {0}" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:604 +msgid "Serial No {0} already exists" +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:342 +msgid "Serial No {0} already scanned" +msgstr "" + +#: erpnext/selling/doctype/installation_note/installation_note.py:94 +msgid "Serial No {0} does not belong to Delivery Note {1}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +msgid "Serial No {0} does not belong to Item {1}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 +#: erpnext/selling/doctype/installation_note/installation_note.py:84 +msgid "Serial No {0} does not exist" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 +msgid "Serial No {0} does not exists" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 +msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:435 +msgid "Serial No {0} is already added" +msgstr "" + +#: erpnext/controllers/selling_controller.py:105 +msgid "Serial No {0} is already assigned to customer {1}. Can only be returned against the customer {1}" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:483 +msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 +msgid "Serial No {0} is under maintenance contract upto {1}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 +msgid "Serial No {0} is under warranty upto {1}" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +msgid "Serial No {0} not found" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +msgid "Serial No: {0} has already been transacted into another POS Invoice." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:292 +#: erpnext/public/js/utils/serial_no_batch_selector.js:16 +#: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 +msgid "Serial Nos" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:20 +#: erpnext/public/js/utils/serial_no_batch_selector.js:205 +msgid "Serial Nos / Batch Nos" +msgstr "" + +#. Label of the serial_nos_and_batches (Section Break) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Serial Nos / Batches" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1958 +msgid "Serial Nos are created successfully" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2317 +msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:384 +msgid "Serial Nos {0} are already Delivered. You cannot use them again in Manufacture / Repack entry." +msgstr "" + +#. Label of the serial_no_series (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Serial Number Series" +msgstr "" + +#. Label of the item_details_tab (Tab Break) field in DocType 'Serial and Batch +#. Bundle' +#. Option for the 'Reservation Based On' (Select) field in DocType 'Stock +#. Reservation Entry' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Serial and Batch" +msgstr "" + +#. Label of the serial_and_batch_bundle (Link) field in DocType 'POS Invoice +#. Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Purchase +#. Invoice Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Sales Invoice +#. Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Asset +#. Capitalization Stock Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Asset Repair +#. Consumed Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Maintenance +#. Schedule Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Job Card' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Installation +#. Note Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Delivery Note +#. Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Packed Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Pick List +#. Item' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Purchase +#. Receipt Item' +#. Name of a DocType +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Stock Entry +#. Detail' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Stock Ledger +#. Entry' +#. Label of the auto_bundle_section (Section Break) field in DocType 'Stock +#. Settings' +#. Label of the serial_and_batch_bundle (Link) field in DocType 'Subcontracting +#. Receipt Item' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:156 +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/report/available_serial_no/available_serial_no.py:188 +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:410 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177 +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/workspace_sidebar/stock.json +msgid "Serial and Batch Bundle" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2194 +msgid "Serial and Batch Bundle created" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2288 +msgid "Serial and Batch Bundle updated" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:99 +msgid "Serial and Batch Bundle {0} is already used in {1} {2}." +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:394 +msgid "Serial and Batch Bundle {0} is not submitted" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2264 +msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." +msgstr "" + +#. Label of the section_break_45 (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Serial and Batch Details" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +msgid "Serial and Batch Entry" +msgstr "" + +#. Label of the section_break_40 (Section Break) field in DocType 'Delivery +#. Note Item' +#. Label of the section_break_45 (Section Break) field in DocType 'Purchase +#. Receipt Item' +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Serial and Batch No" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:152 +msgid "Serial and Batch No for Item Disabled" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:53 +msgid "Serial and Batch Nos" +msgstr "" + +#. Description of the 'Auto reserve Serial and Batch Nos' (Check) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Serial and Batch Nos will be auto-reserved based on Pick Serial / Batch Based On" +msgstr "" + +#. Label of the serial_and_batch_reservation_section (Tab Break) field in +#. DocType 'Stock Reservation Entry' +#. Label of the serial_and_batch_reservation_section (Section Break) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Serial and Batch Reservation" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.json +msgid "Serial and Batch Summary" +msgstr "" + +#: erpnext/stock/utils.py:397 +msgid "Serial number {0} entered more than once" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_details.js:453 +msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." +msgstr "" + +#. Label of the naming_series (Select) field in DocType 'Bank Transaction' +#. Label of the naming_series (Select) field in DocType 'Budget' +#. Label of the naming_series (Select) field in DocType 'Cashier Closing' +#. Label of the naming_series (Select) field in DocType 'Dunning' +#. Label of the naming_series (Select) field in DocType 'Journal Entry' +#. Label of the naming_series (Select) field in DocType 'Journal Entry +#. Template' +#. Label of the naming_series (Select) field in DocType 'Payment Entry' +#. Label of the naming_series (Select) field in DocType 'Payment Order' +#. Label of the naming_series (Select) field in DocType 'Payment Request' +#. Label of the naming_series (Select) field in DocType 'POS Invoice' +#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' +#. Label of the naming_series (Select) field in DocType 'Sales Invoice' +#. Label of the naming_series (Select) field in DocType 'Asset' +#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' +#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' +#. Label of the naming_series (Select) field in DocType 'Asset Repair' +#. Label of the naming_series (Select) field in DocType 'Purchase Order' +#. Label of the naming_series (Select) field in DocType 'Request for Quotation' +#. Label of the naming_series (Select) field in DocType 'Supplier' +#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' +#. Label of the naming_series (Select) field in DocType 'Lead' +#. Label of the naming_series (Select) field in DocType 'Opportunity' +#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' +#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' +#. Label of the naming_series (Select) field in DocType 'Blanket Order' +#. Label of the naming_series (Select) field in DocType 'Work Order' +#. Label of the naming_series (Select) field in DocType 'Project' +#. Label of the naming_series (Data) field in DocType 'Project Update' +#. Label of the naming_series (Select) field in DocType 'Timesheet' +#. Label of the naming_series (Select) field in DocType 'Customer' +#. Label of the naming_series (Select) field in DocType 'Installation Note' +#. Label of the naming_series (Select) field in DocType 'Quotation' +#. Label of the naming_series (Select) field in DocType 'Sales Order' +#. Label of the naming_series (Select) field in DocType 'Driver' +#. Label of the naming_series (Select) field in DocType 'Employee' +#. Label of the naming_series (Select) field in DocType 'Delivery Note' +#. Label of the naming_series (Select) field in DocType 'Delivery Trip' +#. Label of the naming_series (Select) field in DocType 'Item' +#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' +#. Label of the naming_series (Select) field in DocType 'Material Request' +#. Label of the naming_series (Select) field in DocType 'Packing Slip' +#. Label of the naming_series (Select) field in DocType 'Pick List' +#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' +#. Label of the naming_series (Select) field in DocType 'Quality Inspection' +#. Label of the naming_series (Select) field in DocType 'Stock Entry' +#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' +#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward +#. Order' +#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' +#. Label of the naming_series (Select) field in DocType 'Subcontracting +#. Receipt' +#. Label of the naming_series (Select) field in DocType 'Issue' +#. Label of the naming_series (Select) field in DocType 'Warranty Claim' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/project_update/project_update.json +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/public/js/utils/naming_series.js:34 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Series" +msgstr "" + +#. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Series for Asset Depreciation Entry (Journal Entry)" +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.py:142 +msgid "Series is mandatory" +msgstr "" + +#. Label of the service_address (Small Text) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Service Address" +msgstr "" + +#. Label of the service_cost_per_qty (Currency) field in DocType +#. 'Subcontracting Order Item' +#. Label of the service_cost_per_qty (Currency) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Service Cost Per Qty" +msgstr "" + +#. Name of a DocType +#: erpnext/support/doctype/service_day/service_day.json +msgid "Service Day" +msgstr "" + +#. Label of the service_end_date (Date) field in DocType 'POS Invoice Item' +#. Label of the end_date (Date) field in DocType 'Process Deferred Accounting' +#. Label of the service_end_date (Date) field in DocType 'Purchase Invoice +#. Item' +#. Label of the service_end_date (Date) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:410 +msgid "Service End Date" +msgstr "" + +#. Label of the service_expense_account (Link) field in DocType 'Company' +#. Label of the service_expense_account (Link) field in DocType 'Subcontracting +#. Receipt Item' +#: erpnext/setup/doctype/company/company.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Service Expense Account" +msgstr "" + +#. Label of the service_items_total (Currency) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Service Expense Total Amount" +msgstr "" + +#. Label of the service_expenses_section (Section Break) field in DocType +#. 'Asset Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Service Expenses" +msgstr "" + +#. Label of the service_item (Link) field in DocType 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Service Item" +msgstr "" + +#. Label of the service_item_qty (Float) field in DocType 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Service Item Qty" +msgstr "" + +#. Description of the 'Conversion Factor' (Float) field in DocType +#. 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Service Item Qty / Finished Good Qty" +msgstr "" + +#. Label of the service_item_uom (Link) field in DocType 'Subcontracting BOM' +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +msgid "Service Item UOM" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:64 +msgid "Service Item {0} is disabled." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +msgid "Service Item {0} must be a non-stock item." +msgstr "" + +#. Label of the service_items_section (Section Break) field in DocType +#. 'Subcontracting Inward Order' +#. Label of the service_items (Table) field in DocType 'Subcontracting Inward +#. Order' +#. Label of the service_items_section (Section Break) field in DocType +#. 'Subcontracting Order' +#. Label of the service_items (Table) field in DocType 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Service Items" +msgstr "" + +#. Label of the service_level_agreement (Link) field in DocType 'Issue' +#. Name of a DocType +#. Label of a Card Break in the Support Workspace +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "Service Level Agreement" +msgstr "" + +#. Label of the service_level_agreement_creation (Datetime) field in DocType +#. 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Service Level Agreement Creation" +msgstr "" + +#. Label of the service_level_section (Section Break) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Service Level Agreement Details" +msgstr "" + +#. Label of the agreement_status (Select) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Service Level Agreement Status" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:176 +msgid "Service Level Agreement for {0} {1} already exists." +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:771 +msgid "Service Level Agreement has been changed to {0}." +msgstr "" + +#: erpnext/support/doctype/issue/issue.js:79 +msgid "Service Level Agreement was reset." +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Service Level Agreements" +msgstr "" + +#. Label of the service_level (Data) field in DocType 'Service Level Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Service Level Name" +msgstr "" + +#. Name of a DocType +#: erpnext/support/doctype/service_level_priority/service_level_priority.json +msgid "Service Level Priority" +msgstr "" + +#. Label of the service_provider (Select) field in DocType 'Currency Exchange +#. Settings' +#. Label of the service_provider (Data) field in DocType 'Shipment' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Service Provider" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Service Received But Not Billed" +msgstr "" + +#. Label of the service_start_date (Date) field in DocType 'POS Invoice Item' +#. Label of the start_date (Date) field in DocType 'Process Deferred +#. Accounting' +#. Label of the service_start_date (Date) field in DocType 'Purchase Invoice +#. Item' +#. Label of the service_start_date (Date) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:402 +msgid "Service Start Date" +msgstr "" + +#. Label of the service_stop_date (Date) field in DocType 'POS Invoice Item' +#. Label of the service_stop_date (Date) field in DocType 'Purchase Invoice +#. Item' +#. Label of the service_stop_date (Date) field in DocType 'Sales Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Service Stop Date" +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:45 +#: erpnext/public/js/controllers/transaction.js:1807 +msgid "Service Stop Date cannot be after Service End Date" +msgstr "" + +#: erpnext/accounts/deferred_revenue.py:42 +#: erpnext/public/js/controllers/transaction.js:1804 +msgid "Service Stop Date cannot be before Service Start Date" +msgstr "" + +#. Label of the service_items (Table) field in DocType 'Asset Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:52 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:204 +msgid "Services" +msgstr "" + +#. Label of the set_warehouse (Link) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Set Accepted Warehouse" +msgstr "" + +#. Label of the allocate_advances_automatically (Check) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Set Advances and Allocate (FIFO)" +msgstr "" + +#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry +#. Detail' +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Set Basic Rate Manually" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:180 +msgid "Set Default Supplier" +msgstr "" + +#. Label of the set_delivery_warehouse (Link) field in DocType 'Subcontracting +#. Inward Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Set Delivery Warehouse" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +msgid "Set Dropship Items Delivered Quantity" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:362 +#: erpnext/manufacturing/doctype/job_card/job_card.js:424 +msgid "Set Finished Good Quantity" +msgstr "" + +#. Label of the set_from_warehouse (Link) field in DocType 'Purchase Invoice' +#. Label of the set_from_warehouse (Link) field in DocType 'Purchase Order' +#. Label of the set_from_warehouse (Link) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Set From Warehouse" +msgstr "" + +#. Label of the set_grand_total_to_default_mop (Check) field in DocType 'POS +#. Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Set Grand Total to Default Payment Method" +msgstr "" + +#. Description of the 'Territory Targets' (Section Break) field in DocType +#. 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution." +msgstr "" + +#. Label of the set_landed_cost_based_on_purchase_invoice_rate (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Set Landed Cost Based on Purchase Invoice Rate" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1243 +msgid "Set Loyalty Program" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:315 +msgid "Set New Release Date" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:203 +msgid "Set Opening Stock" +msgstr "" + +#. Label of the set_op_cost_and_secondary_items_from_sub_assemblies (Check) +#. field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Set Operating Cost / Secondary Items From Sub-assemblies" +msgstr "" + +#. Label of the set_cost_based_on_bom_qty (Check) field in DocType 'BOM +#. Operation' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +msgid "Set Operating Cost Based On BOM Quantity" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:124 +msgid "Set Parent Row No in Items Table" +msgstr "" + +#. Label of the set_posting_date (Check) field in DocType 'POS Opening Entry' +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json +msgid "Set Posting Date" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1034 +msgid "Set Process Loss Item Quantity" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:149 +#: erpnext/projects/doctype/project/project.js:157 +#: erpnext/projects/doctype/project/project.js:171 +msgid "Set Project Status" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:194 +msgid "Set Project and all Tasks to status {0}?" +msgstr "" + +#. Label of the set_reserve_warehouse (Link) field in DocType 'Purchase Order' +#. Label of the set_reserve_warehouse (Link) field in DocType 'Subcontracting +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Set Reserve Warehouse" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:82 +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:90 +msgid "Set Response Time for Priority {0} in row {1}." +msgstr "" + +#. Label of the set_serial_and_batch_bundle_naming_based_on_naming_series +#. (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Set Serial and Batch Bundle Naming Based on Naming Series" +msgstr "" + +#. Label of the set_warehouse (Link) field in DocType 'Sales Order' +#. Label of the set_warehouse (Link) field in DocType 'Delivery Note' +#. Label of the set_from_warehouse (Link) field in DocType 'Material Request' +#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Set Source Warehouse" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1683 +msgid "Set Supplier" +msgstr "" + +#. Label of the set_target_warehouse (Link) field in DocType 'Sales Invoice' +#. Label of the set_warehouse (Link) field in DocType 'Purchase Order' +#. Label of the set_target_warehouse (Link) field in DocType 'Delivery Note' +#. Label of the set_warehouse (Link) field in DocType 'Material Request' +#. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Set Target Warehouse" +msgstr "" + +#. Label of the set_rate_based_on_warehouse (Check) field in DocType 'BOM +#. Creator' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Set Valuation Rate Based on Source Warehouse" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:254 +msgid "Set Warehouse" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity_list.js:17 +#: erpnext/support/doctype/issue/issue_list.js:12 +msgid "Set as Closed" +msgstr "" + +#: erpnext/projects/doctype/task/task_list.js:20 +msgid "Set as Completed" +msgstr "" + +#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/selling/doctype/quotation/quotation.js:146 +msgid "Set as Lost" +msgstr "" + +#: erpnext/crm/doctype/opportunity/opportunity_list.js:13 +#: erpnext/projects/doctype/task/task_list.js:16 +#: erpnext/support/doctype/issue/issue_list.js:8 +msgid "Set as Open" +msgstr "" + +#. Label of the set_by_item_tax_template (Check) field in DocType 'Advance +#. Taxes and Charges' +#. Label of the set_by_item_tax_template (Check) field in DocType 'Purchase +#. Taxes and Charges' +#. Label of the set_by_item_tax_template (Check) field in DocType 'Sales Taxes +#. and Charges' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Set by Item Tax Template" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:248 +msgid "Set closing balance as per bank statement" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:554 +msgid "Set default inventory account for perpetual inventory" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:580 +msgid "Set default {0} account for non stock items" +msgstr "" + +#. Description of the 'Fetch Value From' (Select) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Set fieldname from which you want to fetch the data from the parent form." +msgstr "" + +#. Label of the set_zero_rate_for_expired_batch (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Set incoming rate as zero for expired Batch" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1024 +msgid "Set quantity of process loss item:" +msgstr "" + +#. Label of the set_rate_of_sub_assembly_item_based_on_bom (Check) field in +#. DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Set rate of sub-assembly item based on BOM" +msgstr "" + +#. Description of the 'Sales Person Targets' (Section Break) field in DocType +#. 'Sales Person' +#: erpnext/setup/doctype/sales_person/sales_person.json +msgid "Set targets Item Group-wise for this Sales Person." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1279 +msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:261 +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:306 +msgid "Set the clearance date for this voucher without reconciling with a bank transaction." +msgstr "" + +#. Description of the 'Manual Inspection' (Check) field in DocType 'Quality +#. Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Set the status manually." +msgstr "" + +#: erpnext/regional/italy/setup.py:231 +msgid "Set this if the customer is a Public Administration company." +msgstr "" + +#. Description of the 'Close Issue After Days' (Int) field in DocType 'Support +#. Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Set this value to 0 to disable the feature." +msgstr "" + +#: banking/src/components/features/Settings/MatchingRules.tsx:37 +msgid "Set up rules to automatically classify transactions. Drag and drop rules to reorder their priority." +msgstr "" + +#. Label of the set_valuation_rate_for_rejected_materials (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Set valuation rate for rejected Materials" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:908 +msgid "Set {0} in asset category {1} for company {2}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:1152 +msgid "Set {0} in asset category {1} or company {2}" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:1149 +msgid "Set {0} in company {1}" +msgstr "" + +#. Description of the 'Accepted Warehouse' (Link) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Sets 'Accepted Warehouse' in each row of the Items table." +msgstr "" + +#. Description of the 'Rejected Warehouse' (Link) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Sets 'Rejected Warehouse' in each row of the Items table." +msgstr "" + +#. Description of the 'Set Reserve Warehouse' (Link) field in DocType +#. 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Sets 'Reserve Warehouse' in each row of the Supplied Items table." +msgstr "" + +#. Description of the 'Default Source Warehouse' (Link) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Sets 'Source Warehouse' in each row of the items table." +msgstr "" + +#. Description of the 'Default Target Warehouse' (Link) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Sets 'Target Warehouse' in each row of the items table." +msgstr "" + +#. Description of the 'Set Target Warehouse' (Link) field in DocType +#. 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Sets 'Warehouse' in each row of the Items table." +msgstr "" + +#. Description of the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Setting Account Type helps in selecting this Account in transactions." +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:129 +msgid "Setting Events to {0}, since the Employee attached to the below Sales Persons does not have a User ID{1}" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.js:98 +msgid "Setting Item Locations..." +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:25 +msgid "Setting defaults" +msgstr "" + +#. Description of the 'Is Company Account' (Check) field in DocType 'Bank +#. Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Setting the account as a Company Account is necessary for Bank Reconciliation" +msgstr "" + +#: erpnext/setup/setup_wizard/setup_wizard.py:20 +msgid "Setting up company" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:910 +#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +msgid "Setting {0} is required" +msgstr "" + +#. Description of a DocType +#: erpnext/crm/doctype/crm_settings/crm_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Settings for Selling Module" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Bank Transaction' +#. Option for the 'Status' (Select) field in DocType 'Invoice Discounting' +#. Option for the 'Status' (Select) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js:11 +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Settled" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33 +msgid "Settled with Credit Note" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Setup Company' +#: erpnext/setup/onboarding_step/setup_company/setup_company.json +msgid "Setup Company" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Setup Email Account' +#: erpnext/setup/onboarding_step/setup_email_account/setup_email_account.json +msgid "Setup Email Account" +msgstr "" + +#. Title of the Module Onboarding 'Organization Onboarding' +#: erpnext/setup/module_onboarding/organization_onboarding/organization_onboarding.json +msgid "Setup Organization" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'Setup Role Permissions' +#: erpnext/setup/onboarding_step/setup_role_permissions/setup_role_permissions.json +msgid "Setup Role Permissions" +msgstr "" + +#. Label of an action in the Onboarding Step 'Setup Sales taxes' +#: erpnext/accounts/onboarding_step/setup_sales_taxes/setup_sales_taxes.json +msgid "Setup Sales Taxes" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/accounts/onboarding_step/setup_sales_taxes/setup_sales_taxes.json +msgid "Setup Sales taxes" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/stock/onboarding_step/setup_warehouse/setup_warehouse.json +msgid "Setup Warehouse" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:25 +msgid "Setup your organization" +msgstr "" + +#. Name of a DocType +#. Label of the section_break_3 (Section Break) field in DocType 'Shareholder' +#. Label of the share_balance (Table) field in DocType 'Shareholder' +#. Name of a report +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/shareholder/shareholder.js:21 +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/accounts/report/share_balance/share_balance.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/share_management.json +msgid "Share Balance" +msgstr "" + +#. Name of a report +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/shareholder/shareholder.js:27 +#: erpnext/accounts/report/share_ledger/share_ledger.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/share_management.json +msgid "Share Ledger" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/desktop_icon/share_management.json +#: erpnext/workspace_sidebar/share_management.json +msgid "Share Management" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/report/share_ledger/share_ledger.py:59 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/share_management.json +msgid "Share Transfer" +msgstr "" + +#. Label of the share_type (Link) field in DocType 'Share Balance' +#. Label of the share_type (Link) field in DocType 'Share Transfer' +#. Name of a DocType +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/doctype/share_type/share_type.json +#: erpnext/accounts/report/share_balance/share_balance.py:58 +#: erpnext/accounts/report/share_ledger/share_ledger.py:54 +msgid "Share Type" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/shareholder/shareholder.json +#: erpnext/accounts/report/share_balance/share_balance.js:16 +#: erpnext/accounts/report/share_balance/share_balance.py:57 +#: erpnext/accounts/report/share_ledger/share_ledger.js:16 +#: erpnext/accounts/report/share_ledger/share_ledger.py:51 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/share_management.json +msgid "Shareholder" +msgstr "" + +#. Label of the shelf_life_in_days (Int) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Shelf Life In Days" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:215 +msgid "Shelf Life in Days" +msgstr "" + +#. Label of the shift (Link) field in DocType 'Depreciation Schedule' +#: erpnext/assets/doctype/asset/asset.js:391 +#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json +msgid "Shift" +msgstr "" + +#. Label of the shift_factor (Float) field in DocType 'Asset Shift Factor' +#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.json +msgid "Shift Factor" +msgstr "" + +#. Label of the shift_name (Data) field in DocType 'Asset Shift Factor' +#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.json +msgid "Shift Name" +msgstr "" + +#. Label of the shift_time_in_hours (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Shift Time (In Hours)" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/delivery_note/delivery_note.js:246 +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment" +msgstr "" + +#. Label of the shipment_amount (Currency) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment Amount" +msgstr "" + +#. Label of the shipment_delivery_note (Table) field in DocType 'Shipment' +#. Name of a DocType +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.json +msgid "Shipment Delivery Note" +msgstr "" + +#. Label of the shipment_id (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment ID" +msgstr "" + +#. Label of the shipment_information_section (Section Break) field in DocType +#. 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment Information" +msgstr "" + +#. Label of the shipment_parcel (Table) field in DocType 'Shipment' +#. Name of a DocType +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json +msgid "Shipment Parcel" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Shipment Parcel Template" +msgstr "" + +#. Label of the shipment_type (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment Type" +msgstr "" + +#. Label of the shipment_details_section (Section Break) field in DocType +#. 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Shipment details" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:641 +msgid "Shipments" +msgstr "" + +#. Label of the account (Link) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Shipping Account" +msgstr "" + +#. Label of the shipping_address_display (Text Editor) field in DocType +#. 'Purchase Order' +#. Label of the shipping_address_display (Text Editor) field in DocType +#. 'Request for Quotation' +#. Label of the shipping_address_display (Text Editor) field in DocType +#. 'Supplier Quotation' +#. Label of the shipping_address_display (Text Editor) field in DocType +#. 'Subcontracting Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Shipping Address Details" +msgstr "" + +#. Label of the shipping_address_name (Link) field in DocType 'POS Invoice' +#. Label of the shipping_address_name (Link) field in DocType 'Sales Invoice' +#. Label of the shipping_address_name (Link) field in DocType 'Sales Order' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Shipping Address Name" +msgstr "" + +#. Label of the shipping_address (Link) field in DocType 'Purchase Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Shipping Address Template" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:208 +msgid "Shipping Address does not belong to the {0}" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:134 +msgid "Shipping Address does not have country, which is required for this Shipping Rule" +msgstr "" + +#. Label of the shipping_amount (Currency) field in DocType 'Shipping Rule' +#. Label of the shipping_amount (Currency) field in DocType 'Shipping Rule +#. Condition' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json +msgid "Shipping Amount" +msgstr "" + +#. Label of the shipping_city (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Shipping City" +msgstr "" + +#. Label of the shipping_country (Link) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Shipping Country" +msgstr "" + +#. Label of the shipping_county (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Shipping County" +msgstr "" + +#. Label of the shipping_rule (Link) field in DocType 'POS Invoice' +#. Label of the shipping_rule (Link) field in DocType 'Purchase Invoice' +#. Label of the shipping_rule (Link) field in DocType 'Sales Invoice' +#. Name of a DocType +#. Label of the shipping_rule (Link) field in DocType 'Purchase Order' +#. Label of the shipping_rule (Link) field in DocType 'Supplier Quotation' +#. Label of the shipping_rule (Link) field in DocType 'Quotation' +#. Label of the shipping_rule (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Label of the shipping_rule (Link) field in DocType 'Delivery Note' +#. Label of the shipping_rule (Link) field in DocType 'Purchase Receipt' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json +msgid "Shipping Rule" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json +msgid "Shipping Rule Condition" +msgstr "" + +#. Label of the rule_conditions_section (Section Break) field in DocType +#. 'Shipping Rule' +#. Label of the conditions (Table) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Shipping Rule Conditions" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/shipping_rule_country/shipping_rule_country.json +msgid "Shipping Rule Country" +msgstr "" + +#. Label of the label (Data) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Shipping Rule Label" +msgstr "" + +#. Label of the shipping_rule_type (Select) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Shipping Rule Type" +msgstr "" + +#. Label of the shipping_state (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Shipping State" +msgstr "" + +#. Label of the shipping_zipcode (Data) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Shipping Zipcode" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:138 +msgid "Shipping rule not applicable for country {0} in Shipping Address" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:157 +msgid "Shipping rule only applicable for Buying" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:152 +msgid "Shipping rule only applicable for Selling" +msgstr "" + +#. Option for the 'Order Type' (Select) field in DocType 'Quotation' +#. Label of the shopping_cart_section (Section Break) field in DocType +#. 'Quotation Item' +#. Option for the 'Order Type' (Select) field in DocType 'Sales Order' +#. Label of the shopping_cart_section (Section Break) field in DocType 'Sales +#. Order Item' +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Shopping Cart" +msgstr "" + +#. Label of the short_name (Data) field in DocType 'Manufacturer' +#: erpnext/stock/doctype/manufacturer/manufacturer.json +msgid "Short Name" +msgstr "" + +#. Label of the short_term_loan (Link) field in DocType 'Invoice Discounting' +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +msgid "Short Term Loan Account" +msgstr "" + +#. Description of the 'Bio / Cover Letter' (Text Editor) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Short biography for website and other publications." +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:35 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:55 +msgid "Short-term Investments" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301 +msgid "Short-term Provisions" +msgstr "" + +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:227 +msgid "Shortage Qty" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:85 +msgid "Shortcut" +msgstr "" + +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:70 +#: erpnext/selling/report/sales_analytics/sales_analytics.js:103 +msgid "Show Aggregate Value from Subsidiary Companies" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:115 +msgid "Show Alternate UOM Balance" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:199 +msgid "Show Cancelled Entries" +msgstr "" + +#: erpnext/templates/pages/projects.js:61 +msgid "Show Completed" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.js:209 +msgid "Show Credit / Debit in Company Currency" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:109 +msgid "Show Cumulative Amount" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:143 +msgid "Show Dimension Wise Stock" +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:29 +msgid "Show Disabled Items" +msgstr "" + +#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.js:16 +msgid "Show Disabled Warehouses" +msgstr "" + +#. Label of the show_failed_logs (Check) field in DocType 'Bank Statement +#. Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Show Failed Logs" +msgstr "" + +#. Label of the show_future_payments (Check) field in DocType 'Process +#. Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:141 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:158 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:131 +msgid "Show Future Payments" +msgstr "" + +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:118 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:136 +msgid "Show GL Balance" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:97 +#: erpnext/accounts/report/trial_balance/trial_balance.js:117 +msgid "Show Group Accounts" +msgstr "" + +#. Label of the show_in_website (Check) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "Show In Website" +msgstr "" + +#: erpnext/stock/report/available_batch_report/available_batch_report.js:86 +msgid "Show Item Name" +msgstr "" + +#. Label of the show_items (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Show Items" +msgstr "" + +#. Label of the show_latest_forum_posts (Check) field in DocType 'Support +#. Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Show Latest Forum Posts" +msgstr "" + +#: erpnext/accounts/report/purchase_register/purchase_register.js:64 +#: erpnext/accounts/report/sales_register/sales_register.js:76 +msgid "Show Ledger View" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:163 +msgid "Show Linked Delivery Notes" +msgstr "" + +#. Label of the show_net_values_in_party_account (Check) field in DocType +#. 'Process Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:204 +msgid "Show Net Values in Party Account" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:32 +msgid "Show Only Exact Amount" +msgstr "" + +#: erpnext/templates/pages/projects.js:63 +msgid "Show Open" +msgstr "" + +#. Label of the show_opening_entries (Check) field in DocType 'Process +#. Statement Of Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/general_ledger/general_ledger.js:187 +msgid "Show Opening Entries" +msgstr "" + +#: erpnext/accounts/report/cash_flow/cash_flow.js:43 +msgid "Show Opening and Closing Balance" +msgstr "" + +#. Label of the show_operations (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Show Operations" +msgstr "" + +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:40 +msgid "Show Payment Details" +msgstr "" + +#. Label of the show_payment_schedule_in_print (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Show Payment Schedule in print" +msgstr "" + +#. Label of the show_remarks (Check) field in DocType 'Process Statement Of +#. Accounts' +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:136 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:173 +#: erpnext/accounts/report/general_ledger/general_ledger.js:219 +msgid "Show Remarks" +msgstr "" + +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:65 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:65 +msgid "Show Return Entries" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:168 +msgid "Show Sales Person" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:126 +msgid "Show Stock Ageing Data" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:121 +msgid "Show Variant Attributes" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:227 +msgid "Show Variants" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.js:64 +msgid "Show Warehouse-wise Stock" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:26 +msgid "Show availability of exploded items" +msgstr "" + +#. Label of the show_balance_in_coa (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Show balances in Chart of Accounts" +msgstr "" + +#. Label of the show_barcode_field (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Show barcode field in stock transactions" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:88 +msgid "Show in Bucket View" +msgstr "" + +#. Label of the show_in_website (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Show in Website" +msgstr "" + +#. Label of the show_inclusive_tax_in_print (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Show inclusive tax in print" +msgstr "" + +#. Description of the 'Reverse Sign' (Check) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Show negative values as positive (for expenses in P&L)" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:91 +#: erpnext/accounts/report/trial_balance/trial_balance.js:111 +msgid "Show net values in opening and closing columns" +msgstr "" + +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:35 +msgid "Show only POS" +msgstr "" + +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:107 +msgid "Show only the Immediate Upcoming Term" +msgstr "" + +#. Label of the show_pay_button (Check) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Show pay button in Purchase Order portal" +msgstr "" + +#: erpnext/stock/utils.py:565 +msgid "Show pending entries" +msgstr "" + +#. Label of the show_taxes_as_table_in_print (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Show taxes as table in print" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:80 +#: erpnext/accounts/report/trial_balance/trial_balance.js:100 +msgid "Show unclosed fiscal year's P&L balances" +msgstr "" + +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:96 +msgid "Show with upcoming revenue/expense" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.js:51 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:137 +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:75 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:52 +#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:71 +#: erpnext/accounts/report/trial_balance/trial_balance.js:95 +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:81 +msgid "Show zero values" +msgstr "" + +#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.js:35 +msgid "Show {0}" +msgstr "" + +#. Label of the signatory_position (Column Break) field in DocType 'Cheque +#. Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Signatory Position" +msgstr "" + +#. Label of the is_signed (Check) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signed" +msgstr "" + +#. Label of the signed_by_company (Link) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signed By (Company)" +msgstr "" + +#. Label of the signed_on (Datetime) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signed On" +msgstr "" + +#. Label of the signee (Data) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signee" +msgstr "" + +#. Label of the signee_company (Signature) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signee (Company)" +msgstr "" + +#. Label of the sb_signee (Section Break) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Signee Details" +msgstr "" + +#. Description of the 'No of Workstations' (Int) field in DocType 'Item Lead +#. Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Similar types of workstations where the same operations run in parallel." +msgstr "" + +#. Description of the 'Condition' (Code) field in DocType 'Service Level +#. Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Condition' (Code) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Simple Python Expression, Example: territory != 'All Territories'" +msgstr "" + +#. Description of the 'Acceptance Criteria Formula' (Code) field in DocType +#. 'Item Quality Inspection Parameter' +#. Description of the 'Acceptance Criteria Formula' (Code) field in DocType +#. 'Quality Inspection Reading' +#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Simple Python formula applied on Reading fields.
            Numeric eg. 1: reading_1 > 0.2 and reading_1 < 0.5
            \n" +"Numeric eg. 2: mean > 3.5 (mean of populated fields)
            \n" +"Value based eg.: reading_value in (\"A\", \"B\", \"C\")" +msgstr "" + +#. Option for the 'Call Routing' (Select) field in DocType 'Incoming Call +#. Settings' +#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json +msgid "Simultaneous" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:183 +msgid "Since there are active depreciable assets under this category, the following accounts are required.

            " +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:355 +msgid "Since you have enabled 'Track Semi Finished Goods', at least one operation must have 'Is Final Finished Good' checked. For that set the FG / Semi FG Item as {0} against an operation." +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:134 +msgid "Since {0} are Serial No/Batch No items, you cannot enable 'Recreate Stock Ledgers' in Repost Item Valuation." +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:114 +msgid "Since {0} has 'Update Stock' disabled, you cannot create repost item valuation against it" +msgstr "" + +#. Option for the 'Marital Status' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Single" +msgstr "" + +#. Option for the 'Bank Entry Type' (Select) field in DocType 'Bank Transaction +#. Rule' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:282 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +msgid "Single Account" +msgstr "" + +#. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty +#. Program' +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json +msgid "Single Tier Program" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:252 +msgid "Single Variant" +msgstr "" + +#. Label of the skip_delivery_note (Check) field in DocType 'Sales Order' +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Skip Delivery Note" +msgstr "" + +#. Label of the skip_material_transfer (Check) field in DocType 'Work Order +#. Operation' +#: erpnext/manufacturing/doctype/work_order/work_order.js:373 +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:454 +msgid "Skip Material Transfer" +msgstr "" + +#. Label of the skip_material_transfer (Check) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Skip Material Transfer to WIP" +msgstr "" + +#. Label of the skip_transfer (Check) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Skip Material Transfer to WIP Warehouse" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +msgid "Skipped {0} DocType(s):
            {1}" +msgstr "" + +#. Label of the customer_skype (Data) field in DocType 'Appointment' +#: erpnext/crm/doctype/appointment/appointment.json +msgid "Skype ID" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Slug/Cubic Foot" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:272 +msgid "Small" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:67 +msgid "Smoothing Constant" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:44 +msgid "Soap & Detergent" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112 +#: erpnext/setup/setup_wizard/data/industry_type.txt:45 +msgid "Software" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:30 +msgid "Software Developer" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:10 +msgid "Sold" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:93 +msgid "Sold by" +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:170 +msgid "Solvency Ratios" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1685 +msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager." +msgstr "" + +#: erpnext/www/book_appointment/index.js:248 +msgid "Something went wrong please try again" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:754 +msgid "Sorry, this coupon code is no longer valid" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:752 +msgid "Sorry, this coupon code's validity has expired" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:750 +msgid "Sorry, this coupon code's validity has not started" +msgstr "" + +#. Label of the source_doctype (Link) field in DocType 'Support Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Source DocType" +msgstr "" + +#. Label of the source_document_section (Section Break) field in DocType +#. 'Serial No' +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Source Document" +msgstr "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'Batch' +#. Label of the reference_name (Dynamic Link) field in DocType 'Serial No' +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Source Document Name" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:492 +msgid "Source Document No" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Batch' +#. Label of the reference_doctype (Link) field in DocType 'Serial No' +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Source Document Type" +msgstr "" + +#. Label of the source_exchange_rate (Float) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Source Exchange Rate" +msgstr "" + +#. Label of the source_fieldname (Data) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Source Fieldname" +msgstr "" + +#. Label of the source_location (Link) field in DocType 'Asset Movement Item' +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +msgid "Source Location" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1026 +msgid "Source Manufacture Entry" +msgstr "" + +#. Label of the source_stock_entry (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Source Stock Entry (Manufacture)" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:178 +msgid "Source Stock Entry {0} has no finished goods quantity" +msgstr "" + +#. Label of the source_type (Select) field in DocType 'Support Search Source' +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Source Type" +msgstr "" + +#. Label of the set_warehouse (Link) field in DocType 'POS Invoice' +#. Label of the set_warehouse (Link) field in DocType 'Sales Invoice' +#. Label of the source_warehouse (Link) field in DocType 'BOM Explosion Item' +#. Label of the source_warehouse (Link) field in DocType 'BOM Item' +#. Label of the source_warehouse (Link) field in DocType 'BOM Operation' +#. Label of the source_warehouse (Link) field in DocType 'Job Card' +#. Label of the source_warehouse (Link) field in DocType 'Job Card Item' +#. Label of the source_warehouse (Link) field in DocType 'Work Order' +#. Label of the source_warehouse (Link) field in DocType 'Work Order Item' +#. Label of the source_warehouse (Link) field in DocType 'Work Order Operation' +#. Label of the warehouse (Link) field in DocType 'Sales Order Item' +#. Label of the from_warehouse (Link) field in DocType 'Material Request Item' +#. Label of the s_warehouse (Link) field in DocType 'Stock Entry Detail' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/manufacturing/doctype/bom/bom.js:503 +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 +#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/dashboard/item_dashboard.js:227 +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:815 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Source Warehouse" +msgstr "" + +#. Label of the source_address_display (Text Editor) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Source Warehouse Address" +msgstr "" + +#. Label of the source_warehouse_address (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Source Warehouse Address Link" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1184 +msgid "Source Warehouse is mandatory for the Item {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_receipt_issue.py:38 +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:23 +msgid "Source Warehouse is required for item {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:367 +msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order." +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:85 +msgid "Source and Target Location cannot be same" +msgstr "" + +#: erpnext/stock/dashboard/item_dashboard.js:295 +msgid "Source and target warehouse must be different" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259 +msgid "Source of Funds (Liabilities)" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:34 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:47 +msgid "Source or Target Warehouse is required for item {0}" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:411 +msgid "Source warehouse required for stock item {0}" +msgstr "" + +#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item' +#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion +#. Item' +#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Item' +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +msgid "Sourced by Supplier" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/south_africa_vat_account/south_africa_vat_account.json +msgid "South Africa VAT Account" +msgstr "" + +#. Name of a DocType +#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json +msgid "South Africa VAT Settings" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +msgid "Specify Exchange Rate to convert one currency into another" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Specify conditions to calculate shipping amount" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:220 +msgid "Spending for Account {0} ({1}) between {2} and {3} has already exceeded the new allocated budget. Spent: {4}, Budget: {5}" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:142 +#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:55 +msgid "Spent" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:692 +#: erpnext/stock/doctype/batch/batch.js:104 +#: erpnext/stock/doctype/batch/batch.js:185 +#: erpnext/support/doctype/issue/issue.js:114 +msgid "Split" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:147 +#: erpnext/assets/doctype/asset/asset.js:676 +msgid "Split Asset" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:184 +msgid "Split Batch" +msgstr "" + +#. Description of the 'Book tax loss on early payment discount' (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Split Early Payment Discount Loss into Income and Tax Loss" +msgstr "" + +#. Label of the split_from (Link) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Split From" +msgstr "" + +#: erpnext/support/doctype/issue/issue.js:91 +#: erpnext/support/doctype/issue/issue.js:102 +msgid "Split Issue" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:682 +msgid "Split Qty" +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:206 +msgid "Split Quantity must be less than Asset Quantity" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:191 +msgid "Split across {} accounts" +msgstr "" + +#. Description of the 'Sales Team' (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Split commission credit across multiple sales persons." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +msgid "Splitting {0} {1} into {2} rows as per Payment Terms" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:46 +msgid "Sports" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Centimeter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Foot" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Inch" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Kilometer" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Meter" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Mile" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Square Yard" +msgstr "" + +#. Label of the stage_name (Data) field in DocType 'Sales Stage' +#: erpnext/crm/doctype/sales_stage/sales_stage.json +msgid "Stage Name" +msgstr "" + +#. Label of the stale_days (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Stale Days" +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +msgid "Stale Days should start from 1." +msgstr "" + +#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:485 +#: erpnext/tests/utils.py:275 +msgid "Standard Buying" +msgstr "" + +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:73 +msgid "Standard Description" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:128 +msgid "Standard Rated Expenses" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493 +#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283 +#: erpnext/tests/utils.py:2522 +msgid "Standard Selling" +msgstr "" + +#. Label of the standard_rate (Currency) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Standard Selling Rate" +msgstr "" + +#. Option for the 'Create Chart Of Accounts Based On' (Select) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Standard Template" +msgstr "" + +#. Description of a DocType +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc." +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:109 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115 +msgid "Standard rated supplies in {0}" +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json +msgid "Standard tax template that can be applied to all Purchase Transactions. This template can contain a list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\", etc." +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +msgid "Standard tax template that can be applied to all Sales Transactions. This template can contain a list of tax heads and also other expense/income heads like \"Shipping\", \"Insurance\", \"Handling\" etc." +msgstr "" + +#. Label of the standing_name (Link) field in DocType 'Supplier Scorecard +#. Scoring Standing' +#. Label of the standing_name (Data) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Standing Name" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 +msgid "Start / Resume" +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:40 +msgid "Start Date cannot be before the current date" +msgstr "" + +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:80 +msgid "Start Date should be lower than End Date" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.js:660 +#: erpnext/manufacturing/doctype/workstation/workstation.js:124 +msgid "Start Job" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:72 +msgid "Start Merge" +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:114 +msgid "Start Reposting" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:129 +msgid "Start Time can't be greater than or equal to End Time for {0}." +msgstr "" + +#: erpnext/projects/doctype/timesheet/timesheet.js:62 +msgid "Start Timer" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 +#: erpnext/accounts/report/cash_flow/cash_flow.html:144 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 +#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:56 +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:17 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:144 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:81 +#: erpnext/public/js/financial_statements.js:435 +msgid "Start Year" +msgstr "" + +#: erpnext/accounts/report/financial_statements.py:130 +msgid "Start Year and End Year are mandatory" +msgstr "" + +#. Description of the 'From Date' (Date) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Start date of current invoice's period" +msgstr "" + +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:233 +msgid "Start date should be less than end date for Item {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:39 +msgid "Start date should be less than end date for task {0}" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:46 +msgid "Started a background job to create {1} {0}. {2}" +msgstr "" + +#. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print +#. Template' +#. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the amt_in_words_from_left_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the amt_in_figures_from_left_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the acc_no_dist_from_left_edge (Float) field in DocType 'Cheque +#. Print Template' +#. Label of the signatory_from_left_edge (Float) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Starting location from left edge" +msgstr "" + +#. Label of the starting_position_from_top_edge (Float) field in DocType +#. 'Cheque Print Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Starting position from top edge" +msgstr "" + +#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule +#. Description Conditions' +#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json +msgid "Starts With" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:201 +msgid "Starts with" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:120 +msgid "Statement Details" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:156 +msgid "Statement File" +msgstr "" + +#. Label of the statement_format_section (Section Break) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Statement Format" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:168 +msgid "Statement Import Instructions" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.html:124 +msgid "Statement Of Accounts" +msgstr "" + +#. Label of the statement_password (Password) field in DocType 'Bank Account' +#: erpnext/accounts/doctype/bank_account/bank_account.json +msgid "Statement PDF Password" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.html:145 +msgid "Statement Period" +msgstr "" + +#. Label of the status_details (Section Break) field in DocType 'Service Level +#. Agreement' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Status Details" +msgstr "" + +#. Label of the illustration_section (Section Break) field in DocType +#. 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Status Illustration" +msgstr "" + +#. Label of the section_break_dfoc (Section Break) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Status and Reference" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:787 +msgid "Status must be Cancelled or Completed" +msgstr "" + +#: erpnext/controllers/status_updater.py:18 +msgid "Status must be one of {0}" +msgstr "" + +#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:276 +msgid "Status set to rejected as there are one or more rejected readings." +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of a Desktop Icon +#. Group in Incoterm's connections +#. Label of a Card Break in the Home Workspace +#. Name of a Workspace +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:11 +#: erpnext/accounts/report/account_balance/account_balance.js:57 +#: erpnext/desktop_icon/stock.json +#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:12 +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/item/item_list.js:21 +#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:549 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:575 +#: erpnext/accounts/report/account_balance/account_balance.js:58 +msgid "Stock Adjustment" +msgstr "" + +#. Label of the stock_adjustment_account (Link) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Stock Adjustment Account" +msgstr "" + +#. Label of the stock_ageing_section (Section Break) field in DocType 'Stock +#. Closing Balance' +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/report/stock_ageing/stock_ageing.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Ageing" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/public/js/stock_analytics.js:7 +#: erpnext/stock/report/stock_analytics/stock_analytics.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Analytics" +msgstr "" + +#. Label of the stock_asset_account (Link) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Stock Asset Account" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:36 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:59 +msgid "Stock Assets" +msgstr "" + +#: erpnext/stock/report/item_price_stock/item_price_stock.py:34 +msgid "Stock Available" +msgstr "" + +#. Label of the stock_balance (Button) field in DocType 'Quotation Item' +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/stock/doctype/item/item.js:166 +#: erpnext/stock/doctype/warehouse/warehouse.js:62 +#: erpnext/stock/report/stock_balance/stock_balance.json +#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.py:107 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Balance" +msgstr "" + +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js:15 +msgid "Stock Balance Report" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:10 +msgid "Stock Capacity" +msgstr "" + +#. Label of the stock_closing_tab (Tab Break) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock Closing" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +msgid "Stock Closing Balance" +msgstr "" + +#. Label of the stock_closing_entry (Link) field in DocType 'Stock Closing +#. Balance' +#. Name of a DocType +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json +msgid "Stock Closing Entry" +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:79 +msgid "Stock Closing Entry {0} already exists for the selected date range" +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 +msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgstr "" + +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 +msgid "Stock Closing Log" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the stock_delivered_but_not_billed (Link) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65 +#: erpnext/setup/doctype/company/company.json +msgid "Stock Delivered But Not Billed" +msgstr "" + +#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS +#. Invoice Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales +#. Invoice Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +msgid "Stock Details" +msgstr "" + +#. Label of the stock_entry (Link) field in DocType 'Journal Entry' +#. Label of a Link in the Manufacturing Workspace +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Item' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Purchase Receipt' +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Name of a DocType +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/pick_list/pick_list.js:148 +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:150 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/manufacturing.json +#: erpnext/workspace_sidebar/stock.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Stock Entry" +msgstr "" + +#. Label of the outgoing_stock_entry (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Stock Entry (Outward GIT)" +msgstr "" + +#. Label of the ste_detail (Data) field in DocType 'Stock Entry Detail' +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Stock Entry Child" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Stock Entry Detail" +msgstr "" + +#. Label of the stock_entry_item (Data) field in DocType 'Landed Cost Item' +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +msgid "Stock Entry Item" +msgstr "" + +#. Label of the stock_entry_type (Link) field in DocType 'Stock Entry' +#. Name of a DocType +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Stock Entry Type" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:290 +msgid "Stock Entry has been already created against this Pick List" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.js:138 +msgid "Stock Entry {0} created" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 +msgid "Stock Entry {0} has created" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 +msgid "Stock Entry {0} is not submitted" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147 +msgid "Stock Expenses" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:37 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:60 +msgid "Stock In Hand" +msgstr "" + +#. Label of the stock_items (Table) field in DocType 'Asset Capitalization' +#. Label of the stock_items (Table) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Stock Items" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/public/js/controllers/stock_controller.js:67 +#: erpnext/public/js/utils/ledger_preview.js:37 +#: erpnext/stock/doctype/item/item.js:176 +#: erpnext/stock/doctype/item/item_dashboard.py:8 +#: erpnext/stock/report/stock_ledger/stock_ledger.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:36 +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Ledger" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:30 +msgid "Stock Ledger Entries and GL Entries are reposted for the selected Purchase Receipts" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:113 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:138 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:30 +msgid "Stock Ledger Entry" +msgstr "" + +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:98 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:143 +msgid "Stock Ledger ID" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.json +msgid "Stock Ledger Invariant Check" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.json +msgid "Stock Ledger Variance" +msgstr "" + +#. Description of the 'Repost Only Accounting Ledgers' (Check) field in DocType +#. 'Repost Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Stock Ledgers won’t be reposted." +msgstr "" + +#. Label of the stock_levels_section (Section Break) field in DocType 'Item' +#: erpnext/stock/doctype/batch/batch.js:81 erpnext/stock/doctype/item/item.json +msgid "Stock Levels" +msgstr "" + +#. Label of the stock_levels_html (HTML) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Stock Levels HTML" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278 +msgid "Stock Liabilities" +msgstr "" + +#. Name of a role +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/assets/doctype/location/location.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/product_bundle/product_bundle.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/doctype/uom_category/uom_category.json +#: erpnext/stock/doctype/warehouse_type/warehouse_type.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Stock Manager" +msgstr "" + +#: erpnext/stock/doctype/item/item_dashboard.py:34 +msgid "Stock Movement" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Stock Partially Reserved" +msgstr "" + +#. Label of the stock_planning_tab (Tab Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock Planning" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/item/item.js:186 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Projected Qty" +msgstr "" + +#. Label of the stock_qty (Float) field in DocType 'BOM Creator Item' +#. Label of the stock_qty (Float) field in DocType 'BOM Explosion Item' +#. Label of the stock_qty (Float) field in DocType 'BOM Item' +#. Label of the stock_qty (Float) field in DocType 'BOM Secondary Item' +#. Label of the stock_qty (Float) field in DocType 'Delivery Schedule Item' +#. Label of the stock_qty (Float) field in DocType 'Material Request Item' +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:257 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:311 +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 +msgid "Stock Qty" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.json +msgid "Stock Qty vs Batch Qty" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.json +msgid "Stock Qty vs Serial No Count" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279 +#: erpnext/accounts/report/account_balance/account_balance.js:59 +#: erpnext/setup/doctype/company/company.json +msgid "Stock Received But Not Billed" +msgstr "" + +#. Label of a Link in the Home Workspace +#. Name of a DocType +#. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/item/item.py:675 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +#: erpnext/stock/doctype/stock_settings/stock_settings.js:155 +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Reconciliation" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +msgid "Stock Reconciliation Item" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:675 +msgid "Stock Reconciliations" +msgstr "" + +#. Label of a Card Break in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Stock Reports" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Reposting Settings" +msgstr "" + +#. Label of the stock_reservation_tab (Tab Break) field in DocType 'Stock +#. Settings' +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:263 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:271 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:277 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:289 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:297 +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:303 +#: erpnext/manufacturing/doctype/work_order/work_order.js:939 +#: erpnext/manufacturing/doctype/work_order/work_order.js:948 +#: erpnext/manufacturing/doctype/work_order/work_order.js:955 +#: erpnext/manufacturing/doctype/work_order/work_order_dashboard.py:14 +#: erpnext/public/js/stock_reservation.js:12 +#: erpnext/selling/doctype/sales_order/sales_order.js:109 +#: erpnext/selling/doctype/sales_order/sales_order.js:124 +#: erpnext/selling/doctype/sales_order/sales_order.js:130 +#: erpnext/selling/doctype/sales_order/sales_order.js:248 +#: erpnext/stock/doctype/pick_list/pick_list.js:160 +#: erpnext/stock/doctype/pick_list/pick_list.js:175 +#: erpnext/stock/doctype/pick_list/pick_list.js:180 +#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1679 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1693 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1707 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1721 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1738 +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.py:225 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:237 +#: erpnext/stock/doctype/stock_settings/stock_settings.py:251 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:181 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:194 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:206 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:219 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order_dashboard.py:14 +msgid "Stock Reservation" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1849 +msgid "Stock Reservation Entries Cancelled" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 +#: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 +#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 +msgid "Stock Reservation Entries Created" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +msgid "Stock Reservation Entries created" +msgstr "" + +#. Name of a DocType +#: erpnext/public/js/stock_reservation.js:309 +#: erpnext/selling/doctype/sales_order/sales_order.js:505 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:388 +#: erpnext/stock/report/reserved_stock/reserved_stock.js:53 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:171 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:342 +msgid "Stock Reservation Entry" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:571 +msgid "Stock Reservation Entry cannot be updated as it has been delivered." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:565 +msgid "Stock Reservation Entry created against a Pick List cannot be updated. If you need to make changes, we recommend canceling the existing entry and creating a new one." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:564 +msgid "Stock Reservation Warehouse Mismatch" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:689 +msgid "Stock Reservation can only be created against {0}." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Stock Reserved" +msgstr "" + +#. Label of the stock_reserved_qty (Float) field in DocType 'Material Request +#. Plan Item' +#. Label of the stock_reserved_qty (Float) field in DocType 'Production Plan +#. Sub Assembly Item' +#. Label of the stock_reserved_qty (Float) field in DocType 'Work Order Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Stock Reserved Qty" +msgstr "" + +#. Label of the stock_reserved_qty (Float) field in DocType 'Sales Order Item' +#. Label of the stock_reserved_qty (Float) field in DocType 'Pick List Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "Stock Reserved Qty (in Stock UOM)" +msgstr "" + +#. Label of the auto_accounting_for_stock_settings (Section Break) field in +#. DocType 'Company' +#. Label of a shortcut in the ERPNext Settings Workspace +#. Name of a DocType +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/doctype/selling_settings/selling_settings.py:115 +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json +#: erpnext/stock/doctype/item/item.js:482 +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:681 +#: erpnext/stock/doctype/stock_settings/stock_settings.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/stock.json +msgid "Stock Settings" +msgstr "" + +#. Title of the Module Onboarding 'Stock Onboarding' +#: erpnext/stock/module_onboarding/stock_onboarding/stock_onboarding.json +msgid "Stock Setup" +msgstr "" + +#. Label of the stock_summary_tab (Tab Break) field in DocType 'Plant Floor' +#. Label of the stock_summary (HTML) field in DocType 'Plant Floor' +#. Label of a Link in the Stock Workspace +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +#: erpnext/stock/page/stock_balance/stock_balance.js:4 +#: erpnext/stock/workspace/stock/stock.json +msgid "Stock Summary" +msgstr "" + +#. Label of a Card Break in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Stock Transactions" +msgstr "" + +#. Label of the stock_uom (Link) field in DocType 'POS Invoice Item' +#. Label of the stock_uom (Link) field in DocType 'Purchase Invoice Item' +#. Label of the stock_uom (Link) field in DocType 'Sales Invoice Item' +#. Label of the stock_uom (Link) field in DocType 'Asset Capitalization Stock +#. Item' +#. Label of the stock_uom (Link) field in DocType 'Purchase Order Item' +#. Label of the stock_uom (Link) field in DocType 'Request for Quotation Item' +#. Label of the stock_uom (Link) field in DocType 'Supplier Quotation Item' +#. Label of the stock_uom (Link) field in DocType 'BOM Creator Item' +#. Label of the stock_uom (Link) field in DocType 'BOM Explosion Item' +#. Label of the stock_uom (Link) field in DocType 'BOM Item' +#. Label of the stock_uom (Link) field in DocType 'BOM Secondary Item' +#. Label of the stock_uom (Link) field in DocType 'Job Card Item' +#. Label of the stock_uom (Link) field in DocType 'Job Card Secondary Item' +#. Label of the stock_uom (Link) field in DocType 'Production Plan Sub Assembly +#. Item' +#. Label of the stock_uom (Link) field in DocType 'Work Order' +#. Label of the stock_uom (Link) field in DocType 'Work Order Item' +#. Label of the stock_uom (Link) field in DocType 'Delivery Schedule Item' +#. Label of the stock_uom (Link) field in DocType 'Quotation Item' +#. Label of the stock_uom (Link) field in DocType 'Sales Order Item' +#. Label of the stock_uom (Link) field in DocType 'Delivery Note Item' +#. Label of the stock_uom (Link) field in DocType 'Item Lead Time' +#. Label of the stock_uom (Link) field in DocType 'Material Request Item' +#. Label of the stock_uom (Link) field in DocType 'Pick List Item' +#. Label of the stock_uom (Link) field in DocType 'Purchase Receipt Item' +#. Label of the stock_uom (Link) field in DocType 'Putaway Rule' +#. Label of the stock_uom (Link) field in DocType 'Stock Closing Balance' +#. Label of the stock_uom (Link) field in DocType 'Stock Entry Detail' +#. Label of the stock_uom (Link) field in DocType 'Stock Ledger Entry' +#. Label of the stock_uom (Link) field in DocType 'Stock Reconciliation Item' +#. Label of the stock_uom (Link) field in DocType 'Stock Reservation Entry' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Inward Order +#. Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Inward Order +#. Received Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Inward Order +#. Secondary Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Order Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Order +#. Supplied Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Receipt Item' +#. Label of the stock_uom (Link) field in DocType 'Subcontracting Receipt +#. Supplied Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:259 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:313 +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:215 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:214 +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 +#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:110 +#: erpnext/stock/report/stock_balance/stock_balance.py:510 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:295 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Stock UOM" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:230 +#: erpnext/selling/doctype/sales_order/sales_order.js:489 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:326 +msgid "Stock Unreservation" +msgstr "" + +#. Label of the stock_uom (Link) field in DocType 'Purchase Receipt Item +#. Supplied' +#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json +msgid "Stock Uom" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594 +msgid "Stock Update Not Allowed" +msgstr "" + +#. Name of a role +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/assets/doctype/location/location.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/product_bundle/product_bundle.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/brand/brand.json +#: erpnext/setup/doctype/company/company.json +#: erpnext/setup/doctype/incoterm/incoterm.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/setup/doctype/territory/territory.json +#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_alternative/item_alternative.json +#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json +#: erpnext/stock/doctype/manufacturer/manufacturer.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/packing_slip/packing_slip.json +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json +#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json +#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/doctype/uom_category/uom_category.json +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/doctype/warehouse_type/warehouse_type.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Stock User" +msgstr "" + +#. Label of the stock_validations_tab (Tab Break) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock Validations" +msgstr "" + +#. Label of the stock_value (Float) field in DocType 'Bin' +#. Label of the value (Currency) field in DocType 'Quick Stock Balance' +#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.py:37 +#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.py:52 +#: erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:134 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:164 +msgid "Stock Value" +msgstr "" + +#. Label of a chart in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Stock Value by Item Group" +msgstr "" + +#. Description of the 'Inventory Account' (Link) field in DocType 'Item +#. Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Stock account where inventory value for this item will be tracked" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.json +msgid "Stock and Account Value Comparison" +msgstr "" + +#. Label of the stock_tab (Tab Break) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Stock and Manufacturing" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:255 +msgid "Stock cannot be reserved in group warehouse {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1611 +msgid "Stock cannot be reserved in the group warehouse {0}." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:906 +msgid "Stock cannot be updated against the following Delivery Notes: {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:982 +msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:591 +msgid "Stock cannot be updated for Purchase Invoice {0} because a Purchase Receipt {1} has already been created for this transaction. Please disable the 'Update Stock' checkbox in the Purchase Invoice and save the invoice." +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:125 +msgid "Stock entries exist with the old account. Changing the account may lead to a mismatch between the warehouse closing balance and the account closing balance. The overall closing balance will still match, but not for the specific account." +msgstr "" + +#. Label of the stock_frozen_upto (Date) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock frozen up to" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1151 +msgid "Stock has been unreserved for work order {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:359 +msgid "Stock not available for Item {0} in Warehouse {1}." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:835 +msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 +msgid "Stock transactions before {0} are frozen" +msgstr "" + +#. Description of the 'Freeze stocks older than (days)' (Int) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock transactions that are older than the mentioned days cannot be modified." +msgstr "" + +#. Description of the 'Auto reserve Stock for Sales Order on Purchase' (Check) +#. field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." +msgstr "" + +#: erpnext/stock/utils.py:556 +msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Stone" +msgstr "" + +#. Label of the stop_reason (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:94 +msgid "Stop Reason" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:391 +#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 +#: erpnext/stock/doctype/item/item.py:327 +#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +msgid "Stores" +msgstr "" + +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Depreciation Schedule' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Straight Line" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:58 +msgid "Sub Assemblies" +msgstr "" + +#. Label of the raw_materials_tab (Tab Break) field in DocType 'BOM Creator' +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Sub Assemblies & Raw Materials" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:321 +msgid "Sub Assembly Item" +msgstr "" + +#. Label of the production_item (Link) field in DocType 'Production Plan Sub +#. Assembly Item' +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Sub Assembly Item Code" +msgstr "" + +#. Label of the sub_assembly_item_reference (Data) field in DocType 'Material +#. Request Plan Item' +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +msgid "Sub Assembly Item Reference" +msgstr "" + +#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:430 +msgid "Sub Assembly Item is mandatory" +msgstr "" + +#. Label of the section_break_24 (Section Break) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Sub Assembly Items" +msgstr "" + +#. Label of the sub_assembly_warehouse (Link) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Sub Assembly Warehouse" +msgstr "" + +#. Label of the operation (Link) field in DocType 'Job Card Time Log' +#. Name of a DocType +#: erpnext/manufacturing/doctype/job_card/job_card.js:309 +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json +msgid "Sub Operation" +msgstr "" + +#. Label of the sub_operations (Table) field in DocType 'Job Card' +#. Label of the section_break_21 (Tab Break) field in DocType 'Job Card' +#. Label of the sub_operations_section (Section Break) field in DocType +#. 'Operation' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Sub Operations" +msgstr "" + +#. Label of the procedure (Link) field in DocType 'Quality Procedure Process' +#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json +msgid "Sub Procedure" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.py:278 +msgid "Sub assembly item references are missing. Please fetch the sub assemblies and raw materials again." +msgstr "" + +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:127 +msgid "Sub-assembly BOM Count" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:34 +msgid "Sub-contracting" +msgstr "" + +#. Option for the 'Manufacturing Type' (Select) field in DocType 'Production +#. Plan Sub Assembly Item' +#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:15 +#: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:12 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "Subcontract" +msgstr "" + +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.js:29 +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:120 +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:22 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:22 +msgid "Subcontract Order" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontract Order Summary" +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:84 +msgid "Subcontract Return" +msgstr "" + +#. Label of the subcontracted_item (Link) field in DocType 'Stock Entry Detail' +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:128 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Subcontracted Item" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Manufacturing Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Link in the Subcontracting Workspace +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracted Item To Be Received" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:224 +msgid "Subcontracted Purchase Order" +msgstr "" + +#. Label of the subcontracted_qty (Float) field in DocType 'Purchase Order +#. Item' +#. Label of the subcontracted_qty (Float) field in DocType 'Sales Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Subcontracted Quantity" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Manufacturing Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Link in the Subcontracting Workspace +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracted Raw Materials To Be Transferred" +msgstr "" + +#. Label of a Desktop Icon +#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item' +#. Label of the subcontracting_section (Section Break) field in DocType +#. 'Production Plan Sub Assembly Item' +#. Label of a Card Break in the Manufacturing Workspace +#. Option for the 'Purpose' (Select) field in DocType 'Material Request' +#. Name of a Workspace +#. Title of a Workspace Sidebar +#: erpnext/desktop_icon/subcontracting.json +#: erpnext/manufacturing/doctype/job_card/job_card_dashboard.py:10 +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting BOM" +msgstr "" + +#. Label of the subcontracting_conversion_factor (Float) field in DocType +#. 'Subcontracting Inward Order Item' +#. Label of the subcontracting_conversion_factor (Float) field in DocType +#. 'Subcontracting Order Item' +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Subcontracting Conversion Factor" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:132 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:158 +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting Delivery" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:362 +msgid "Subcontracting Finished Good" +msgstr "" + +#. Label of the subcontracting_inward_tab (Tab Break) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:33 +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Subcontracting Inward" +msgstr "" + +#. Label of the subcontracting_inward_order (Link) field in DocType 'Work +#. Order' +#. Label of the subcontracting_inward_order (Link) field in DocType 'Stock +#. Entry' +#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation +#. Entry' +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Name of a DocType +#. Label of a Card Break in the Subcontracting Workspace +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1049 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting Inward Order" +msgstr "" + +#. Label of a number card in the Subcontracting Workspace +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracting Inward Order Count" +msgstr "" + +#. Label of the subcontracting_inward_order_item (Data) field in DocType 'Work +#. Order' +#. Name of a DocType +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json +msgid "Subcontracting Inward Order Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +msgid "Subcontracting Inward Order Received Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json +msgid "Subcontracting Inward Order Secondary Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +msgid "Subcontracting Inward Order Service Item" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Label of the subcontracting_order (Link) field in DocType 'Stock Entry' +#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation +#. Entry' +#. Name of a DocType +#. Label of the subcontracting_order (Link) field in DocType 'Subcontracting +#. Receipt Item' +#. Label of the subcontracting_order (Link) field in DocType 'Subcontracting +#. Receipt Supplied Item' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order/purchase_order.js:370 +#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:141 +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting Order" +msgstr "" + +#. Description of the 'Auto create Subcontracting Order' (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Subcontracting Order (Draft) will be auto-created on submission of Purchase Order." +msgstr "" + +#. Name of a DocType +#. Label of the subcontracting_order_item (Data) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:548 +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Subcontracting Order Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json +msgid "Subcontracting Order Service Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:234 +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +msgid "Subcontracting Order Supplied Item" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:244 +msgid "Subcontracting Order {0} created." +msgstr "" + +#. Label of a chart in the Subcontracting Workspace +#. Label of a Card Break in the Subcontracting Workspace +#. Label of a Link in the Subcontracting Workspace +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracting Outward Order" +msgstr "" + +#. Label of a number card in the Subcontracting Workspace +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +msgid "Subcontracting Outward Order Count" +msgstr "" + +#. Label of the purchase_order (Link) field in DocType 'Subcontracting Order' +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Subcontracting Purchase Order" +msgstr "" + +#. Label of a Link in the Manufacturing Workspace +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Item' +#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed +#. Cost Purchase Receipt' +#. Label of the subcontracting_receipt (Link) field in DocType 'Purchase +#. Receipt' +#. Option for the 'Reference Type' (Select) field in DocType 'Quality +#. Inspection' +#. Name of a DocType +#. Label of a Link in the Subcontracting Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:637 +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json +#: erpnext/workspace_sidebar/subcontracting.json +msgid "Subcontracting Receipt" +msgstr "" + +#. Label of the subcontracting_receipt_item (Data) field in DocType 'Purchase +#. Receipt Item' +#. Name of a DocType +#. Label of the subcontracting_receipt_item (Data) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Subcontracting Receipt Item" +msgstr "" + +#. Name of a DocType +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Subcontracting Receipt Supplied Item" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry' +#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:138 +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json +msgid "Subcontracting Return" +msgstr "" + +#. Label of the sales_order (Link) field in DocType 'Subcontracting Inward +#. Order' +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json +msgid "Subcontracting Sales Order" +msgstr "" + +#: erpnext/stock/report/item_where_used/item_where_used.py:336 +msgid "Subcontracting Service Item" +msgstr "" + +#. Label of the subcontract (Tab Break) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Subcontracting Settings" +msgstr "" + +#. Title of the Module Onboarding 'Subcontracting Onboarding' +#: erpnext/subcontracting/module_onboarding/subcontracting_onboarding/subcontracting_onboarding.json +msgid "Subcontracting Setup" +msgstr "" + +#. Label of the subdivision (Autocomplete) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Subdivision" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 +msgid "Submit Action Failed" +msgstr "" + +#. Label of the submit_err_jv (Check) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Submit ERR Journals?" +msgstr "" + +#. Label of the submit_invoice (Check) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Submit Generated Invoices" +msgstr "" + +#. Label of the submit_journal_entries (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Submit Journal entries" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:185 +msgid "Submit this Work Order for further processing." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:314 +msgid "Submit your Quotation" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +msgid "Submitted Job Card cannot be processed." +msgstr "" + +#. Label of the subscription_section (Section Break) field in DocType 'Payment +#. Request' +#. Label of the subscription_section (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the subscription (Link) field in DocType 'Process Subscription' +#. Label of the subscription_section (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the subscription (Link) field in DocType 'Purchase Invoice' +#. Label of the subscription_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the subscription (Link) field in DocType 'Sales Invoice' +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Desktop Icon +#. Title of a Workspace Sidebar +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/process_subscription/process_subscription.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py:26 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:36 +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:16 +#: erpnext/desktop_icon/subscription.json +#: erpnext/selling/doctype/quotation/quotation_dashboard.py:12 +#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:25 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:34 +#: erpnext/workspace_sidebar/subscription.json +msgid "Subscription" +msgstr "" + +#. Label of the end_date (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Subscription End Date" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:442 +msgid "Subscription End Date is mandatory to follow calendar months" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:432 +msgid "Subscription End Date must be after {0} as per the subscription plan" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/subscription_invoice/subscription_invoice.json +msgid "Subscription Invoice" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Subscription Management" +msgstr "" + +#. Label of the subscription_period (Section Break) field in DocType +#. 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Subscription Period" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/subscription.json +msgid "Subscription Plan" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json +msgid "Subscription Plan Detail" +msgstr "" + +#. Label of the subscription_plans (Table) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Subscription Plans" +msgstr "" + +#. Label of the price_determination (Select) field in DocType 'Subscription +#. Plan' +#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json +msgid "Subscription Price Based On" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/erpnext_settings.json +#: erpnext/workspace_sidebar/subscription.json +msgid "Subscription Settings" +msgstr "" + +#. Label of the start_date (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Subscription Start Date" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:848 +msgid "Subscription for Future dates cannot be processed." +msgstr "" + +#: erpnext/selling/doctype/customer/customer_dashboard.py:28 +msgid "Subscriptions" +msgstr "" + +#. Label of the succeeded (Int) field in DocType 'Bulk Transaction Log' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.json +msgid "Succeeded" +msgstr "" + +#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js:7 +msgid "Succeeded Entries" +msgstr "" + +#. Label of the success_redirect_url (Data) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Success Redirect URL" +msgstr "" + +#. Label of the success_details (Section Break) field in DocType 'Appointment +#. Booking Settings' +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json +msgid "Success Settings" +msgstr "" + +#. Option for the 'Depreciation Entry Posting Status' (Select) field in DocType +#. 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Successful" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +msgid "Successfully Reconciled" +msgstr "" + +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:194 +msgid "Successfully Set Supplier" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:407 +msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:173 +msgid "Successfully imported {0} record out of {1}. Click on Export Errored Rows, fix the errors and import again." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:157 +msgid "Successfully imported {0} record." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:169 +msgid "Successfully imported {0} records out of {1}. Click on Export Errored Rows, fix the errors and import again." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:156 +msgid "Successfully imported {0} records." +msgstr "" + +#: erpnext/buying/doctype/supplier/supplier.js:243 +msgid "Successfully linked to Customer" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.js:275 +msgid "Successfully linked to Supplier" +msgstr "" + +#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:99 +msgid "Successfully merged {0} out of {1}." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:184 +msgid "Successfully updated {0} record out of {1}. Click on Export Errored Rows, fix the errors and import again." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:162 +msgid "Successfully updated {0} record." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:180 +msgid "Successfully updated {0} records out of {1}. Click on Export Errored Rows, fix the errors and import again." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:161 +msgid "Successfully updated {0} records." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:263 +msgid "Suggest creating a" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:936 +msgid "Suggested" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:481 +msgid "Suggested Transfer to {0}" +msgstr "" + +#. Option for the 'Request Type' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Suggestions" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:176 +msgid "Summary for this month and pending activities" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:173 +msgid "Summary for this week and pending activities" +msgstr "" + +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:137 +msgid "Supplied Item" +msgstr "" + +#. Label of the supplied_items (Table) field in DocType 'Purchase Invoice' +#. Label of the supplied_items (Table) field in DocType 'Subcontracting Order' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +msgid "Supplied Items" +msgstr "" + +#. Label of the supplied_qty (Float) field in DocType 'Subcontracting Order +#. Supplied Item' +#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:144 +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +msgid "Supplied Qty" +msgstr "" + +#. Label of the supplier (Link) field in DocType 'Bank Guarantee' +#. Label of the party (Link) field in DocType 'Payment Order' +#. Label of the supplier (Link) field in DocType 'Payment Order Reference' +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the supplier (Link) field in DocType 'Pricing Rule' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the supplier (Table MultiSelect) field in DocType 'Promotional +#. Scheme' +#. Label of the supplier (Link) field in DocType 'Purchase Invoice' +#. Label of the supplier (Link) field in DocType 'Supplier Item' +#. Label of the supplier (Link) field in DocType 'Tax Rule' +#. Option for the 'Asset Owner' (Select) field in DocType 'Asset' +#. Label of the supplier (Link) field in DocType 'Asset' +#. Label of the supplier (Link) field in DocType 'Purchase Order' +#. Label of the vendor (Link) field in DocType 'Request for Quotation' +#. Label of the supplier (Link) field in DocType 'Request for Quotation +#. Supplier' +#. Name of a DocType +#. Label of the supplier (Link) field in DocType 'Supplier Quotation' +#. Label of the supplier (Link) field in DocType 'Supplier Scorecard' +#. Label of the supplier (Link) field in DocType 'Supplier Scorecard Period' +#. Label of a Card Break in the Buying Workspace +#. Label of a Link in the Buying Workspace +#. Option for the 'Party Type' (Select) field in DocType 'Contract' +#. Label of the supplier (Link) field in DocType 'Blanket Order' +#. Label of the supplier (Link) field in DocType 'Production Plan Sub Assembly +#. Item' +#. Label of the supplier (Link) field in DocType 'Lower Deduction Certificate' +#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item' +#. Label of the supplier (Link) field in DocType 'Sales Order Item' +#. Label of the supplier (Link) field in DocType 'SMS Center' +#. Label of a Link in the Home Workspace +#. Label of a shortcut in the Home Workspace +#. Label of the supplier (Link) field in DocType 'Batch' +#. Label of the default_supplier (Link) field in DocType 'Item Default' +#. Label of the vf_default_supplier (Read Only) field in DocType 'Item Default' +#. Label of the supplier (Link) field in DocType 'Item Price' +#. Label of the supplier (Link) field in DocType 'Item Supplier' +#. Label of the supplier (Link) field in DocType 'Landed Cost Purchase Receipt' +#. Label of the supplier (Link) field in DocType 'Purchase Receipt' +#. Option for the 'Pickup from' (Select) field in DocType 'Shipment' +#. Label of the pickup_supplier (Link) field in DocType 'Shipment' +#. Option for the 'Delivery to' (Select) field in DocType 'Shipment' +#. Label of the delivery_supplier (Link) field in DocType 'Shipment' +#. Label of the supplier (Link) field in DocType 'Stock Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +#: erpnext/accounts/doctype/payment_order/payment_order.js:112 +#: erpnext/accounts/doctype/payment_order/payment_order.json +#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/supplier_item/supplier_item.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:113 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:112 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:134 +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:60 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:34 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:189 +#: erpnext/accounts/report/purchase_register/purchase_register.js:21 +#: erpnext/accounts/report/purchase_register/purchase_register.py:173 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:29 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:37 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/buying/doctype/buying_settings/buying_settings.js:44 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:185 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:270 +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.js:8 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:29 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:51 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:195 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/crm/doctype/contract/contract.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/public/js/purchase_trends_filters.js:50 +#: erpnext/public/js/purchase_trends_filters.js:63 +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/regional/report/irs_1099/irs_1099.py:76 +#: erpnext/selling/doctype/customer/customer.js:257 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:187 +#: erpnext/selling/doctype/sales_order/sales_order.js:1741 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/doctype/sms_center/sms_center.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/batch/batch.json +#: erpnext/stock/doctype/item_default/item_default.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/item_supplier/item_supplier.json +#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/shipment/shipment.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.js:8 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:524 +#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/subscription.json +msgid "Supplier" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:98 +msgid "Supplier > Supplier Type" +msgstr "" + +#. Label of the section_addresses (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the section_addresses (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the supplier_address (Link) field in DocType 'Purchase Order' +#. Label of the supplier_address (Link) field in DocType 'Supplier Quotation' +#. Label of the supplier_address_section (Section Break) field in DocType +#. 'Supplier Quotation' +#. Label of the section_addresses (Section Break) field in DocType 'Purchase +#. Receipt' +#. Label of the supplier_address (Link) field in DocType 'Purchase Receipt' +#. Label of the supplier_address (Link) field in DocType 'Stock Entry' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Supplier Address" +msgstr "" + +#. Label of the address_display (Text Editor) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Supplier Address Details" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Addresses And Contacts" +msgstr "" + +#. Label of the contact_person (Link) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +msgid "Supplier Contact" +msgstr "" + +#. Label of the supplier_defaults_section (Section Break) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Supplier Defaults" +msgstr "" + +#. Label of the supplier_delivery_note (Data) field in DocType 'Purchase +#. Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Supplier Delivery Note" +msgstr "" + +#. Label of the supplier_details (Text) field in DocType 'Supplier' +#. Label of the supplier_details (Section Break) field in DocType 'Item' +#. Label of the contact_section (Section Break) field in DocType 'Stock Entry' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Supplier Details" +msgstr "" + +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the supplier_group (Link) field in DocType 'Pricing Rule' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the supplier_group (Table MultiSelect) field in DocType +#. 'Promotional Scheme' +#. Label of the supplier_group (Link) field in DocType 'Purchase Invoice' +#. Label of the supplier_group (Link) field in DocType 'Supplier Group Item' +#. Label of the supplier_group (Link) field in DocType 'Tax Rule' +#. Label of the supplier_group (Link) field in DocType 'Purchase Order' +#. Label of the supplier_group (Link) field in DocType 'Supplier' +#. Label of a Link in the Buying Workspace +#. Label of the supplier_group (Link) field in DocType 'Import Supplier +#. Invoice' +#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item' +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/supplier_group_item/supplier_group_item.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/report/accounts_payable/accounts_payable.js:119 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:102 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1258 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:200 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:178 +#: erpnext/accounts/report/purchase_register/purchase_register.js:27 +#: erpnext/accounts/report/purchase_register/purchase_register.py:188 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:55 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:503 +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:107 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/public/js/purchase_trends_filters.js:51 +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +#: erpnext/regional/report/irs_1099/irs_1099.js:26 +#: erpnext/regional/report/irs_1099/irs_1099.py:69 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Group" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/supplier_group_item/supplier_group_item.json +msgid "Supplier Group Item" +msgstr "" + +#. Label of the supplier_group_name (Data) field in DocType 'Supplier Group' +#: erpnext/setup/doctype/supplier_group/supplier_group.json +msgid "Supplier Group Name" +msgstr "" + +#. Label of the supplier_info_tab (Tab Break) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Supplier Info" +msgstr "" + +#. Label of the supplier_invoice_details (Section Break) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Supplier Invoice" +msgstr "" + +#. Label of the supplier_invoice_date (Date) field in DocType 'Opening Invoice +#. Creation Tool Item' +#. Label of the bill_date (Date) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:232 +msgid "Supplier Invoice Date" +msgstr "" + +#. Label of the bill_no (Data) field in DocType 'Payment Entry Reference' +#. Label of the bill_no (Data) field in DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/report/general_ledger/general_ledger.html:202 +#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 +msgid "Supplier Invoice No" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:815 +msgid "Supplier Invoice No exists in Purchase Invoice {0}" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/supplier_item/supplier_item.json +msgid "Supplier Item" +msgstr "" + +#. Label of the lead_time_days (Int) field in DocType 'Supplier Quotation Item' +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +msgid "Supplier Lead Time (days)" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Supplier Ledger" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +msgid "Supplier Ledger Summary" +msgstr "" + +#. Label of the supplier_name (Data) field in DocType 'Purchase Invoice' +#. Option for the 'Supplier Naming By' (Select) field in DocType 'Buying +#. Settings' +#. Label of the supplier_name (Data) field in DocType 'Purchase Order' +#. Label of the supplier_name (Read Only) field in DocType 'Request for +#. Quotation Supplier' +#. Label of the supplier_name (Data) field in DocType 'Supplier' +#. Label of the supplier_name (Data) field in DocType 'Supplier Quotation' +#. Label of the supplier_name (Data) field in DocType 'Blanket Order' +#. Label of the supplier_name (Data) field in DocType 'Purchase Receipt' +#. Label of the supplier_name (Data) field in DocType 'Stock Entry' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1173 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:157 +#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:196 +#: erpnext/accounts/report/purchase_register/purchase_register.py:179 +#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:35 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:73 +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:101 +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Supplier Name" +msgstr "" + +#. Label of the supp_master_name (Select) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Supplier Naming By" +msgstr "" + +#. Label of the supplier_number (Data) field in DocType 'Supplier Number At +#. Customer' +#: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json +msgid "Supplier Number" +msgstr "" + +#. Name of a DocType +#: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json +msgid "Supplier Number At Customer" +msgstr "" + +#. Label of the supplier_numbers (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Supplier Numbers" +msgstr "" + +#. Label of the supplier_part_no (Data) field in DocType 'Request for Quotation +#. Item' +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/templates/includes/rfq/rfq_macros.html:20 +msgid "Supplier Part No" +msgstr "" + +#. Label of the supplier_part_no (Data) field in DocType 'Purchase Order Item' +#. Label of the supplier_part_no (Data) field in DocType 'Supplier Quotation +#. Item' +#. Label of the supplier_part_no (Data) field in DocType 'Item Supplier' +#. Label of the supplier_part_no (Data) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/stock/doctype/item_supplier/item_supplier.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Supplier Part Number" +msgstr "" + +#. Label of the portal_users (Table) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Supplier Portal Users" +msgstr "" + +#. Label of the ref_sq (Link) field in DocType 'Purchase Order' +#. Label of the supplier_quotation (Link) field in DocType 'Purchase Order +#. Item' +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of the supplier_quotation (Link) field in DocType 'Quotation' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/purchase_order/purchase_order.js:518 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:237 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256 +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/crm/doctype/opportunity/opportunity.js:81 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/stock/doctype/material_request/material_request.js:208 +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Quotation" +msgstr "" + +#. Name of a report +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:155 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Quotation Comparison" +msgstr "" + +#. Label of the supplier_quotation_item (Link) field in DocType 'Purchase Order +#. Item' +#. Name of a DocType +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +msgid "Supplier Quotation Item" +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +msgid "Supplier Quotation {0} Created" +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:6 +msgid "Supplier Reference" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1765 +msgid "Supplier Required" +msgstr "" + +#. Label of the supplier_score (Data) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Supplier Score" +msgstr "" + +#. Name of a DocType +#. Label of a Card Break in the Buying Workspace +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Scorecard" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Scorecard Criteria" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Supplier Scorecard Period" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json +msgid "Supplier Scorecard Scoring Criteria" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +msgid "Supplier Scorecard Scoring Standing" +msgstr "" + +#. Name of a DocType +#: erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.json +msgid "Supplier Scorecard Scoring Variable" +msgstr "" + +#. Label of the scorecard (Link) field in DocType 'Supplier Scorecard Period' +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Supplier Scorecard Setup" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Scorecard Standing" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Buying Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.json +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/workspace_sidebar/buying.json +msgid "Supplier Scorecard Variable" +msgstr "" + +#. Label of the supplier_type (Select) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Supplier Type" +msgstr "" + +#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Invoice' +#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Order' +#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/manufacturing/doctype/job_card/job_card.js:91 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Supplier Warehouse" +msgstr "" + +#. Label of the delivered_by_supplier (Check) field in DocType 'Sales Order +#. Item' +#. Label of the delivered_by_supplier (Check) field in DocType 'Packed Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "Supplier delivers to Customer" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1764 +msgid "Supplier is required for all selected Items" +msgstr "" + +#. Description of a DocType +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Supplier of Goods or Services." +msgstr "" + +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:187 +msgid "Supplier {0} not found in {1}" +msgstr "" + +#. Description of the 'Tax ID' (Data) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Supplier's tax identification number (e.g. PAN, VAT, GST)" +msgstr "" + +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:67 +msgid "Supplier(s)" +msgstr "" + +#. Label of the suppliers (Table) field in DocType 'Request for Quotation' +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +msgid "Suppliers" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:73 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:135 +msgid "Supplies subject to the reverse charge provision" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:316 +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:381 +msgid "Supply" +msgstr "" + +#. Label of a Desktop Icon +#. Name of a Workspace +#. Title of a Workspace Sidebar +#: erpnext/desktop_icon/support.json +#: erpnext/selling/doctype/customer/customer_dashboard.py:23 +#: erpnext/setup/doctype/company/company_dashboard.py:24 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:298 +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/support.json +msgid "Support" +msgstr "" + +#. Name of a report +#: erpnext/support/report/support_hour_distribution/support_hour_distribution.json +msgid "Support Hour Distribution" +msgstr "" + +#. Label of the portal_sb (Section Break) field in DocType 'Support Settings' +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Support Portal" +msgstr "" + +#. Name of a DocType +#: erpnext/support/doctype/support_search_source/support_search_source.json +msgid "Support Search Source" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/support/doctype/support_settings/support_settings.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/erpnext_settings.json +msgid "Support Settings" +msgstr "" + +#. Name of a role +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/doctype/issue_type/issue_type.json +msgid "Support Team" +msgstr "" + +#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:69 +msgid "Support Tickets" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:89 +msgid "Supported Variables:" +msgstr "" + +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 +msgid "Suspected Discount Amount" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Driver' +#. Option for the 'Status' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/setup/doctype/employee/employee.json +msgid "Suspended" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:442 +msgid "Switch Between Payment Modes" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:186 +msgid "Switch between light, dark, or system theme" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:23 +msgid "Sync Now" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:36 +msgid "Sync Started" +msgstr "" + +#. Label of the automatic_sync (Check) field in DocType 'Plaid Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "Synchronize all accounts every hour" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:676 +msgid "System In Use" +msgstr "" + +#. Description of the 'User ID' (Link) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "System User (login) ID. If set, it will become default for all HR forms." +msgstr "" + +#. Description of the 'Make Serial No / Batch from Work Order' (Check) field in +#. DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "System will automatically create the serial numbers / batch for the Finished Good on submission of work order" +msgstr "" + +#. Description of the 'Allow Implicit Pegged Currency Conversion' (Check) field +#. in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "System will do an implicit conversion using the pegged currency.
            \n" +"Ex: Instead of AED -> INR, system will do AED -> USD -> INR using the pegged exchange rate of AED against USD." +msgstr "" + +#. Description of the 'Invoice Limit' (Int) field in DocType 'Payment +#. Reconciliation' +#. Description of the 'Payment Limit' (Int) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "System will fetch all the entries if limit value is zero." +msgstr "" + +#: erpnext/accounts/services/billing_validation.py:85 +msgid "System will not check over billing since amount for Item {0} in {1} is zero" +msgstr "" + +#. Description of the 'Threshold for Suggestion (In Percentage)' (Percent) +#. field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "System will notify to increase or decrease quantity or amount " +msgstr "" + +#. Description of the 'Tax Withholding Category' (Link) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "TDS / withholding tax category applied when paying this supplier" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.json +#: erpnext/workspace_sidebar/taxes.json +msgid "TDS Computation Summary" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +msgid "TDS Deducted" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292 +msgid "TDS Payable" +msgstr "" + +#. Description of the 'Tax Withholding Category' (Link) field in DocType +#. 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer." +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/item_website_specification/item_website_specification.json +msgid "Table for Item that will be shown in Web Site" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:237 +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:312 +#: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:329 +msgid "Table {0}" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Tablespoon (US)" +msgstr "" + +#. Label of the target_amount (Float) field in DocType 'Target Detail' +#: erpnext/setup/doctype/target_detail/target_detail.json +msgid "Target Amount" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:104 +msgid "Target ({})" +msgstr "" + +#. Label of the target_asset (Link) field in DocType 'Asset Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Target Asset" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:206 +msgid "Target Asset {0} cannot be cancelled" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:204 +msgid "Target Asset {0} cannot be submitted" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:200 +msgid "Target Asset {0} cannot be {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:210 +msgid "Target Asset {0} does not belong to company {1}" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 +msgid "Target Asset {0} needs to be composite asset" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/target_detail/target_detail.json +msgid "Target Detail" +msgstr "" + +#: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:12 +#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution_dashboard.py:13 +msgid "Target Details" +msgstr "" + +#. Label of the distribution_id (Link) field in DocType 'Target Detail' +#: erpnext/setup/doctype/target_detail/target_detail.json +msgid "Target Distribution" +msgstr "" + +#. Label of the target_exchange_rate (Float) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Target Exchange Rate" +msgstr "" + +#. Label of the target_fieldname (Data) field in DocType 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Target Fieldname (Stock Ledger Entry)" +msgstr "" + +#. Label of the target_fixed_asset_account (Link) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Target Fixed Asset Account" +msgstr "" + +#. Label of the target_incoming_rate (Currency) field in DocType 'Asset +#. Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Target Incoming Rate" +msgstr "" + +#. Label of the target_item_code (Link) field in DocType 'Asset Capitalization' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +msgid "Target Item Code" +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:180 +msgid "Target Item {0} must be a Fixed Asset item" +msgstr "" + +#. Label of the target_location (Link) field in DocType 'Asset Movement Item' +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +msgid "Target Location" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:83 +msgid "Target Location is required for transferring Asset {0}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:89 +msgid "Target Location is required while receiving Asset {0}" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:41 +#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:41 +#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:41 +msgid "Target On" +msgstr "" + +#. Label of the target_qty (Float) field in DocType 'Target Detail' +#: erpnext/setup/doctype/target_detail/target_detail.json +msgid "Target Qty" +msgstr "" + +#. Label of the target_warehouse (Link) field in DocType 'Sales Invoice Item' +#. Label of the warehouse (Link) field in DocType 'Purchase Order Item' +#. Label of the target_warehouse (Link) field in DocType 'Job Card' +#. Label of the fg_warehouse (Link) field in DocType 'Production Plan Sub +#. Assembly Item' +#. Label of the fg_warehouse (Link) field in DocType 'Work Order' +#. Label of the target_warehouse (Link) field in DocType 'Delivery Note Item' +#. Label of the warehouse (Link) field in DocType 'Material Request Item' +#. Label of the t_warehouse (Link) field in DocType 'Stock Entry Detail' +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/dashboard/item_dashboard.js:234 +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/stock_entry/stock_entry.js:821 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +msgid "Target Warehouse" +msgstr "" + +#. Label of the target_address_display (Text Editor) field in DocType 'Stock +#. Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Target Warehouse Address" +msgstr "" + +#. Label of the target_warehouse_address (Link) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Target Warehouse Address Link" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/reservation.py:80 +msgid "Target Warehouse Reservation Error" +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:232 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +msgid "Target Warehouse is required before Submit" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/material_receipt_issue.py:25 +#: erpnext/stock/doctype/stock_entry/services/material_transfer.py:21 +msgid "Target Warehouse is required for item {0}" +msgstr "" + +#: erpnext/controllers/selling_controller.py:900 +msgid "Target Warehouse is set for some items but the customer is not an internal customer." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:383 +msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item." +msgstr "" + +#. Label of the targets (Table) field in DocType 'Sales Partner' +#. Label of the targets (Table) field in DocType 'Sales Person' +#. Label of the targets (Table) field in DocType 'Territory' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/setup/doctype/sales_person/sales_person.json +#: erpnext/setup/doctype/territory/territory.json +msgid "Targets" +msgstr "" + +#. Label of the tariff_number (Data) field in DocType 'Customs Tariff Number' +#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json +msgid "Tariff Number" +msgstr "" + +#. Label of the task_assignee_email (Data) field in DocType 'Asset Maintenance +#. Log' +#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json +msgid "Task Assignee Email" +msgstr "" + +#. Option for the '% Complete Method' (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Task Completion" +msgstr "" + +#. Name of a DocType +#: erpnext/projects/doctype/task_depends_on/task_depends_on.json +msgid "Task Depends On" +msgstr "" + +#. Label of the description (Text Editor) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Task Description" +msgstr "" + +#. Name of a DocType +#: erpnext/projects/doctype/task_type/task_type.json +msgid "Task Type" +msgstr "" + +#. Option for the '% Complete Method' (Select) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Task Weight" +msgstr "" + +#: erpnext/projects/doctype/project_template/project_template.py:41 +msgid "Task {0} depends on Task {1}. Please add Task {1} to the Tasks list." +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:68 +msgid "Tasks Completed" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:72 +msgid "Tasks Overdue" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#. Label of the tax_type (Link) field in DocType 'Item Tax Template Detail' +#. Label of the tax_tab (Tab Break) field in DocType 'Supplier' +#. Label of the tax_tab (Tab Break) field in DocType 'Customer' +#. Label of the item_tax_section_break (Tab Break) field in DocType 'Item' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json +#: erpnext/accounts/report/account_balance/account_balance.js:60 +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/stock/doctype/item/item.json +msgid "Tax" +msgstr "" + +#. Label of the tax_account (Link) field in DocType 'Import Supplier Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Tax Account" +msgstr "" + +#. Label of the amount (Currency) field in DocType 'Item Wise Tax Detail' +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:244 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:91 +msgid "Tax Amount" +msgstr "" + +#. Label of the tax_amount_after_discount_amount (Currency) field in DocType +#. 'Purchase Taxes and Charges' +#. Label of the base_tax_amount_after_discount_amount (Currency) field in +#. DocType 'Purchase Taxes and Charges' +#. Label of the tax_amount_after_discount_amount (Currency) field in DocType +#. 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Tax Amount After Discount Amount" +msgstr "" + +#. Label of the base_tax_amount_after_discount_amount (Currency) field in +#. DocType 'Sales Taxes and Charges' +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +msgid "Tax Amount After Discount Amount (Company Currency)" +msgstr "" + +#. Description of the 'Round tax amount row-wise' (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Tax Amount will be rounded on a row(items) level" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74 +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256 +msgid "Tax Assets" +msgstr "" + +#. Label of the sec_tax_breakup (Section Break) field in DocType 'POS Invoice' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the tax_breakup (Section Break) field in DocType 'Supplier +#. Quotation' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Quotation' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Sales Order' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Delivery +#. Note' +#. Label of the sec_tax_breakup (Section Break) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Tax Breakup" +msgstr "" + +#. Label of the tax_category (Link) field in DocType 'POS Invoice' +#. Label of the tax_category (Link) field in DocType 'POS Profile' +#. Label of the tax_category (Link) field in DocType 'Purchase Invoice' +#. Label of the tax_category (Link) field in DocType 'Purchase Taxes and +#. Charges Template' +#. Label of the tax_category (Link) field in DocType 'Sales Invoice' +#. Label of the tax_category (Link) field in DocType 'Sales Taxes and Charges +#. Template' +#. Name of a DocType +#. Label of the tax_category (Link) field in DocType 'Tax Rule' +#. Label of a Link in the Invoicing Workspace +#. Label of the tax_category (Link) field in DocType 'Purchase Order' +#. Label of the tax_category (Link) field in DocType 'Supplier' +#. Label of the tax_category (Link) field in DocType 'Supplier Quotation' +#. Label of the tax_category (Link) field in DocType 'Customer' +#. Label of the tax_category (Link) field in DocType 'Quotation' +#. Label of the tax_category (Link) field in DocType 'Sales Order' +#. Label of the tax_category (Link) field in DocType 'Delivery Note' +#. Label of the tax_category (Link) field in DocType 'Item Tax' +#. Label of the tax_category (Link) field in DocType 'Purchase Receipt' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json +#: erpnext/accounts/doctype/tax_category/tax_category.json +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/install.py:144 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/item_tax/item_tax.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Tax Category" +msgstr "" + +#: erpnext/controllers/buying_controller.py:261 +msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235 +msgid "Tax Expense" +msgstr "" + +#. Label of the tax_id (Data) field in DocType 'Tax Withholding Entry' +#. Label of the tax_id (Data) field in DocType 'Supplier' +#. Label of the tax_id (Data) field in DocType 'Customer' +#. Label of the tax_id (Data) field in DocType 'Company' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/regional/report/irs_1099/irs_1099.py:81 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/setup/doctype/company/company.json +msgid "Tax ID" +msgstr "" + +#. Label of the tax_id (Data) field in DocType 'POS Invoice' +#. Label of the tax_id (Read Only) field in DocType 'Purchase Invoice' +#. Label of the tax_id (Data) field in DocType 'Sales Invoice' +#. Label of the tax_id (Data) field in DocType 'Sales Order' +#. Label of the tax_id (Data) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:86 +#: erpnext/accounts/report/general_ledger/general_ledger.js:142 +#: erpnext/accounts/report/purchase_register/purchase_register.py:194 +#: erpnext/accounts/report/sales_register/sales_register.py:215 +#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:67 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:205 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:57 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Tax Id" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:32 +msgid "Tax Id: {0}" +msgstr "" + +#. Label of the taxation_section (Section Break) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Tax Identification" +msgstr "" + +#. Label of a Card Break in the Invoicing Workspace +#: erpnext/accounts/workspace/invoicing/invoicing.json +msgid "Tax Masters" +msgstr "" + +#. Label of the tax_rate (Float) field in DocType 'Account' +#. Label of the rate (Float) field in DocType 'Advance Taxes and Charges' +#. Label of the tax_rate (Float) field in DocType 'Item Tax Template Detail' +#. Label of the rate (Float) field in DocType 'Item Wise Tax Detail' +#. Label of the rate (Float) field in DocType 'Purchase Taxes and Charges' +#. Label of the rate (Float) field in DocType 'Sales Taxes and Charges' +#. Label of the tax_rate (Percent) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/doctype/account/account_tree.js:170 +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:66 +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Tax Rate" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:237 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:84 +msgid "Tax Rate %" +msgstr "" + +#. Label of the taxes (Table) field in DocType 'Item Tax Template' +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.json +msgid "Tax Rates" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65 +msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme" +msgstr "" + +#. Label of the tax_row (Data) field in DocType 'Item Wise Tax Detail' +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +msgid "Tax Row" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Invoicing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Tax Rule" +msgstr "" + +#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138 +msgid "Tax Rule Conflicts with {0}" +msgstr "" + +#. Label of the tax_settings_section (Section Break) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Tax Settings" +msgstr "" + +#. Label of a Workspace Sidebar Item +#: erpnext/workspace_sidebar/selling.json +msgid "Tax Template" +msgstr "" + +#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86 +msgid "Tax Template is mandatory." +msgstr "" + +#: erpnext/accounts/report/sales_register/sales_register.py:295 +msgid "Tax Total" +msgstr "" + +#. Label of the tax_type (Select) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Tax Type" +msgstr "" + +#. Label of the tax_withholding_tab (Tab Break) field in DocType 'Journal +#. Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Tax Withholding" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/tax_withholding_account/tax_withholding_account.json +msgid "Tax Withholding Account" +msgstr "" + +#. Label of the tax_withholding_category (Link) field in DocType 'Journal +#. Entry' +#. Label of the tax_withholding_category (Link) field in DocType 'Payment +#. Entry' +#. Label of the tax_withholding_category (Link) field in DocType 'Purchase +#. Invoice Item' +#. Label of the tax_withholding_category (Link) field in DocType 'Sales Invoice +#. Item' +#. Name of a DocType +#. Label of the tax_withholding_category (Link) field in DocType 'Tax +#. Withholding Entry' +#. Label of a Link in the Invoicing Workspace +#. Label of the tax_withholding_category (Link) field in DocType 'Supplier' +#. Label of the tax_withholding_category (Link) field in DocType 'Lower +#. Deduction Certificate' +#. Label of the tax_withholding_category (Link) field in DocType 'Customer' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:199 +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:72 +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Tax Withholding Category" +msgstr "" + +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Tax Withholding Details" +msgstr "" + +#. Label of the tax_withholding_entries (Table) field in DocType 'Journal +#. Entry' +#. Label of the tax_withholding_entries (Table) field in DocType 'Payment +#. Entry' +#. Label of the tax_withholding_entries (Table) field in DocType 'Purchase +#. Invoice' +#. Label of the tax_withholding_entries (Table) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Tax Withholding Entries" +msgstr "" + +#. Label of the section_tax_withholding_entry (Section Break) field in DocType +#. 'Payment Entry' +#. Label of the section_tax_withholding_entry (Section Break) field in DocType +#. 'Purchase Invoice' +#. Label of the section_tax_withholding_entry (Section Break) field in DocType +#. 'Sales Invoice' +#. Name of a DocType +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Tax Withholding Entry" +msgstr "" + +#. Label of the tax_withholding_group (Link) field in DocType 'Journal Entry' +#. Label of the tax_withholding_group (Link) field in DocType 'Payment Entry' +#. Label of the tax_withholding_group (Link) field in DocType 'Purchase +#. Invoice' +#. Label of the tax_withholding_group (Link) field in DocType 'Sales Invoice' +#. Label of the tax_withholding_group (Link) field in DocType 'Tax Withholding +#. Entry' +#. Name of a DocType +#. Label of the tax_withholding_group (Link) field in DocType 'Tax Withholding +#. Rate' +#. Label of the tax_withholding_group (Link) field in DocType 'Supplier' +#. Label of the tax_withholding_group (Link) field in DocType 'Customer' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +#: erpnext/accounts/doctype/tax_withholding_group/tax_withholding_group.json +#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/workspace_sidebar/taxes.json +msgid "Tax Withholding Group" +msgstr "" + +#. Name of a DocType +#. Label of the tax_withholding_rate (Float) field in DocType 'Tax Withholding +#. Rate' +#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json +msgid "Tax Withholding Rate" +msgstr "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Tax +#. Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Tax Withholding Rates" +msgstr "" + +#. Description of the 'Item Tax Rate' (Code) field in DocType 'Purchase Invoice +#. Item' +#. Description of the 'Item Tax Rate' (Code) field in DocType 'Purchase Order +#. Item' +#. Description of the 'Item Tax Rate' (Code) field in DocType 'Supplier +#. Quotation Item' +#. Description of the 'Item Tax Rate' (Code) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Tax detail table fetched from item master as a string and stored in this field.\n" +"Used for Taxes and Charges" +msgstr "" + +#. Description of the 'Only Deduct Tax On Excess Amount ' (Check) field in +#. DocType 'Tax Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "Tax withheld only for amount exceeding cumulative threshold" +msgstr "" + +#. Label of the taxable_amount (Currency) field in DocType 'Item Wise Tax +#. Detail' +#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 +#: erpnext/controllers/taxes_and_totals.py:1264 +msgid "Taxable Amount" +msgstr "" + +#. Label of the taxable_date (Date) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Taxable Date" +msgstr "" + +#. Label of the taxable_name (Dynamic Link) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Taxable Document Name" +msgstr "" + +#. Label of the taxable_doctype (Link) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Taxable Document Type" +msgstr "" + +#. Label of the taxes (Table) field in DocType 'POS Closing Entry' +#. Label of the taxes_section (Section Break) field in DocType 'POS Profile' +#. Label of the sb_1 (Section Break) field in DocType 'Subscription' +#. Label of a Desktop Icon +#. Label of the taxes_section (Section Break) field in DocType 'Sales Order' +#. Label of the taxes (Table) field in DocType 'Item Group' +#. Label of the taxes (Table) field in DocType 'Item' +#. Title of a Workspace Sidebar +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:60 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:12 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:27 +#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:43 +#: erpnext/desktop_icon/taxes.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/stock/doctype/item/item.json erpnext/workspace_sidebar/taxes.json +msgid "Taxes" +msgstr "" + +#. Label of the taxes_and_charges_section (Section Break) field in DocType +#. 'Payment Entry' +#. Label of the taxes_and_charges_section (Section Break) field in DocType 'POS +#. Closing Entry' +#. Label of the taxes_and_charges (Link) field in DocType 'POS Profile' +#. Label of the taxes_section (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the taxes_section (Section Break) field in DocType 'Sales Invoice' +#. Label of the taxes_section (Section Break) field in DocType 'Purchase Order' +#. Label of the taxes_section (Section Break) field in DocType 'Supplier +#. Quotation' +#. Label of the taxes_section (Section Break) field in DocType 'Quotation' +#. Label of the taxes_section (Section Break) field in DocType 'Delivery Note' +#. Label of the taxes_charges_section (Section Break) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:75 +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges" +msgstr "" + +#. Label of the taxes_and_charges_added (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the taxes_and_charges_added (Currency) field in DocType 'Purchase +#. Order' +#. Label of the taxes_and_charges_added (Currency) field in DocType 'Supplier +#. Quotation' +#. Label of the taxes_and_charges_added (Currency) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges Added" +msgstr "" + +#. Label of the base_taxes_and_charges_added (Currency) field in DocType +#. 'Purchase Invoice' +#. Label of the base_taxes_and_charges_added (Currency) field in DocType +#. 'Purchase Order' +#. Label of the base_taxes_and_charges_added (Currency) field in DocType +#. 'Supplier Quotation' +#. Label of the base_taxes_and_charges_added (Currency) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges Added (Company Currency)" +msgstr "" + +#. Label of the other_charges_calculation (Text Editor) field in DocType 'POS +#. Invoice' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Purchase Invoice' +#. Label of the other_charges_calculation (Text Editor) field in DocType 'Sales +#. Invoice' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Purchase Order' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Supplier Quotation' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Quotation' +#. Label of the other_charges_calculation (Text Editor) field in DocType 'Sales +#. Order' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Delivery Note' +#. Label of the other_charges_calculation (Text Editor) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges Calculation" +msgstr "" + +#. Label of the taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Invoice' +#. Label of the taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Order' +#. Label of the taxes_and_charges_deducted (Currency) field in DocType +#. 'Supplier Quotation' +#. Label of the taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges Deducted" +msgstr "" + +#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Invoice' +#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Order' +#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType +#. 'Supplier Quotation' +#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Taxes and Charges Deducted (Company Currency)" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:420 +msgid "Taxes row #{0}: {1} cannot be smaller than {2}" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'Asset +#. Maintenance Team' +#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json +msgid "Team" +msgstr "" + +#. Label of the team_member (Link) field in DocType 'Maintenance Team Member' +#: erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.json +msgid "Team Member" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Teaspoon" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Technical Atmosphere" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:47 +msgid "Technology" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:48 +msgid "Telecommunications" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218 +msgid "Telephone Expenses" +msgstr "" + +#. Name of a DocType +#: erpnext/telephony/doctype/telephony_call_type/telephony_call_type.json +msgid "Telephony Call Type" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:49 +msgid "Television" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:455 +msgid "Template Item" +msgstr "" + +#: erpnext/stock/get_item_details.py:361 +msgid "Template Item Selected" +msgstr "" + +#. Label of the template_task (Data) field in DocType 'Task' +#: erpnext/projects/doctype/task/task.json +msgid "Template Task" +msgstr "" + +#. Label of the template_title (Data) field in DocType 'Journal Entry Template' +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Template Title" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:29 +msgid "Temporarily on Hold" +msgstr "" + +#. Option for the 'Account Type' (Select) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +#: erpnext/accounts/report/account_balance/account_balance.js:61 +msgid "Temporary" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134 +msgid "Temporary Accounts" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135 +msgid "Temporary Opening" +msgstr "" + +#. Label of the temporary_opening_account (Link) field in DocType 'Opening +#. Invoice Creation Tool Item' +#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json +msgid "Temporary Opening Account" +msgstr "" + +#. Label of the terms (Text Editor) field in DocType 'Quotation' +#: erpnext/selling/doctype/quotation/quotation.json +msgid "Term Details" +msgstr "" + +#. Label of the tc_name (Link) field in DocType 'POS Invoice' +#. Label of the terms_tab (Tab Break) field in DocType 'POS Invoice' +#. Label of the tc_name (Link) field in DocType 'Purchase Invoice' +#. Label of the terms_tab (Tab Break) field in DocType 'Purchase Invoice' +#. Label of the tc_name (Link) field in DocType 'Sales Invoice' +#. Label of the terms_tab (Tab Break) field in DocType 'Sales Invoice' +#. Label of the tc_name (Link) field in DocType 'Purchase Order' +#. Label of the terms_tab (Tab Break) field in DocType 'Purchase Order' +#. Label of the tc_name (Link) field in DocType 'Request for Quotation' +#. Label of the terms_tab (Tab Break) field in DocType 'Supplier Quotation' +#. Label of the tc_name (Link) field in DocType 'Blanket Order' +#. Label of the tc_name (Link) field in DocType 'Quotation' +#. Label of the terms_tab (Tab Break) field in DocType 'Quotation' +#. Label of the payment_schedule_section (Tab Break) field in DocType 'Sales +#. Order' +#. Label of the tc_name (Link) field in DocType 'Sales Order' +#. Label of the tc_name (Link) field in DocType 'Delivery Note' +#. Label of the terms_tab (Tab Break) field in DocType 'Delivery Note' +#. Label of the tc_name (Link) field in DocType 'Material Request' +#. Label of the terms_tab (Tab Break) field in DocType 'Material Request' +#. Label of the tc_name (Link) field in DocType 'Purchase Receipt' +#. Label of the terms_tab (Tab Break) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Terms" +msgstr "" + +#. Label of the terms_section_break (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the terms_section_break (Section Break) field in DocType 'Sales +#. Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Terms & Conditions" +msgstr "" + +#. Label of the tc_name (Link) field in DocType 'Supplier Quotation' +#. Label of a Workspace Sidebar Item +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/workspace_sidebar/selling.json +msgid "Terms Template" +msgstr "" + +#. Label of the terms_section_break (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the tc_name (Link) field in DocType 'POS Profile' +#. Label of the terms_and_conditions (Link) field in DocType 'Process Statement +#. Of Accounts' +#. Label of the terms_section_break (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the terms (Text Editor) field in DocType 'Purchase Invoice' +#. Label of the terms_section_break (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of a Link in the Invoicing Workspace +#. Label of the terms (Text Editor) field in DocType 'Purchase Order' +#. Label of the terms_section_break (Section Break) field in DocType 'Request +#. for Quotation' +#. Label of the terms (Text Editor) field in DocType 'Request for Quotation' +#. Label of the terms (Text Editor) field in DocType 'Supplier Quotation' +#. Label of the terms_and_conditions_section (Section Break) field in DocType +#. 'Blanket Order' +#. Label of the terms_and_conditions (Text) field in DocType 'Blanket Order +#. Item' +#. Label of the terms_section_break (Section Break) field in DocType +#. 'Quotation' +#. Name of a DocType +#. Label of the terms (Text Editor) field in DocType 'Terms and Conditions' +#. Label of the terms (Text Editor) field in DocType 'Purchase Receipt' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/workspace/invoicing/invoicing.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/workspace_sidebar/accounts_setup.json +msgid "Terms and Conditions" +msgstr "" + +#. Label of the terms (Text Editor) field in DocType 'Material Request' +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Terms and Conditions Content" +msgstr "" + +#. Label of the terms (Text Editor) field in DocType 'POS Invoice' +#. Label of the terms (Text Editor) field in DocType 'Sales Invoice' +#. Label of the terms (Text Editor) field in DocType 'Blanket Order' +#. Label of the terms (Text Editor) field in DocType 'Sales Order' +#. Label of the terms (Text Editor) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Terms and Conditions Details" +msgstr "" + +#. Label of the terms_and_conditions_help (HTML) field in DocType 'Terms and +#. Conditions' +#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json +msgid "Terms and Conditions Help" +msgstr "" + +#. Label of a Link in the Buying Workspace +#. Label of a Link in the Selling Workspace +#: erpnext/buying/workspace/buying/buying.json +#: erpnext/selling/workspace/selling/selling.json +msgid "Terms and Conditions Template" +msgstr "" + +#. Label of the territory (Link) field in DocType 'POS Invoice' +#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule' +#. Label of the territory (Link) field in DocType 'Pricing Rule' +#. Option for the 'Select Customers By' (Select) field in DocType 'Process +#. Statement Of Accounts' +#. Label of the territory (Link) field in DocType 'Process Statement Of +#. Accounts' +#. Option for the 'Applicable For' (Select) field in DocType 'Promotional +#. Scheme' +#. Label of the territory (Table MultiSelect) field in DocType 'Promotional +#. Scheme' +#. Label of the territory (Link) field in DocType 'Sales Invoice' +#. Label of the territory (Link) field in DocType 'Territory Item' +#. Label of the territory (Link) field in DocType 'Lead' +#. Label of the territory (Link) field in DocType 'Opportunity' +#. Label of the territory (Link) field in DocType 'Prospect' +#. Label of a Link in the CRM Workspace +#. Label of the territory (Link) field in DocType 'Maintenance Schedule' +#. Label of the territory (Link) field in DocType 'Maintenance Visit' +#. Label of the territory (Link) field in DocType 'Customer' +#. Label of the territory (Link) field in DocType 'Installation Note' +#. Label of the territory (Link) field in DocType 'Quotation' +#. Label of the territory (Link) field in DocType 'Sales Order' +#. Label of a Link in the Selling Workspace +#. Label of the territory (Link) field in DocType 'Sales Partner' +#. Name of a DocType +#. Label of a Link in the Home Workspace +#. Label of the territory (Link) field in DocType 'Delivery Note' +#. Option for the 'Entity Type' (Select) field in DocType 'Service Level +#. Agreement' +#. Label of the territory (Link) field in DocType 'Warranty Claim' +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/territory_item/territory_item.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:142 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1242 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:108 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:184 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:68 +#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:169 +#: erpnext/accounts/report/gross_profit/gross_profit.py:436 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:8 +#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:22 +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:259 +#: erpnext/accounts/report/sales_register/sales_register.py:209 +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/crm/doctype/prospect/prospect.json +#: erpnext/crm/report/lead_details/lead_details.js:46 +#: erpnext/crm/report/lead_details/lead_details.py:34 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:36 +#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:63 +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +#: erpnext/public/js/sales_trends_filters.js:27 +#: erpnext/selling/doctype/customer/customer.json +#: erpnext/selling/doctype/installation_note/installation_note.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:103 +#: erpnext/selling/report/inactive_customers/inactive_customers.py:99 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:88 +#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:43 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:47 +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:160 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:59 +#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:29 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:46 +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:59 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:59 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:81 +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:22 +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/setup/doctype/sales_partner/sales_partner.json +#: erpnext/setup/doctype/territory/territory.json +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json +msgid "Territory" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/territory_item/territory_item.json +msgid "Territory Item" +msgstr "" + +#. Label of the territory_manager (Link) field in DocType 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "Territory Manager" +msgstr "" + +#. Label of the territory_name (Data) field in DocType 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "Territory Name" +msgstr "" + +#. Name of a report +#. Label of a Link in the Selling Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.json +#: erpnext/selling/workspace/selling/selling.json +#: erpnext/workspace_sidebar/selling.json +msgid "Territory Target Variance Based On Item Group" +msgstr "" + +#. Label of the target_details_section_break (Section Break) field in DocType +#. 'Territory' +#: erpnext/setup/doctype/territory/territory.json +msgid "Territory Targets" +msgstr "" + +#. Name of a report +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.json +msgid "Territory-wise Sales" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Tesla" +msgstr "" + +#. Description of the 'Display Name' (Data) field in DocType 'Financial Report +#. Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" +msgstr "" + +#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 +msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +msgstr "" + +#. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "The BOM which will be replaced" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1555 +msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." +msgstr "" + +#: erpnext/crm/doctype/email_campaign/email_campaign.py:71 +msgid "The Campaign '{0}' already exists for the {1} '{2}'" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.py:71 +msgid "The Company {0} of Sales Forecast {1} does not match with the Company {2} of Master Production Schedule {3}." +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:206 +msgid "The Document Type {0} must have a Status field to configure Service Level Agreement" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:347 +msgid "The Excluded Fee is bigger than the Deposit it is deducted from." +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:180 +msgid "The GL Entries and closing balances will be processed in the background, it can take a few minutes." +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:456 +msgid "The GL Entries will be cancelled in the background, it can take a few minutes." +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 +msgid "The Loyalty Program isn't valid for the selected company" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:1269 +msgid "The Payment Request {0} is already paid, cannot process payment twice" +msgstr "" + +#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py:50 +msgid "The Payment Term at row {0} is possibly a duplicate." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:343 +msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 +msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.py:102 +msgid "The Sales Person is linked with {0}" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:209 +msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:17 +msgid "The Stock Entry of type 'Manufacture' is known as backflush. Raw materials being consumed to manufacture finished goods is known as backflushing.

            When creating Manufacture Entry, raw-material items are backflushed based on BOM of production item. If you want raw-material items to be backflushed based on Material Transfer entry made against that Work Order instead, then you can set it under this field." +msgstr "" + +#. Description of the 'Closing Account Head' (Link) field in DocType 'Period +#. Closing Voucher' +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +msgid "The account head under Liability or Equity, in which Profit/Loss will be booked" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:1163 +msgid "The allocated amount is greater than the outstanding amount of Payment Request {0}" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:194 +msgid "The amount format detected in the statement file. This is used to parse the deposit and withdrawal values from each row." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:220 +msgid "The amount of {0} set in this payment request is different from the calculated amount of all payment plans: {1}. Make sure this is correct before submitting the document." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:97 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:505 +msgid "The bank account is disabled. Please enable it" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:91 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:499 +msgid "The bank account is not a company account. Please select a company account" +msgstr "" + +#: erpnext/stock/services/serial_batch_bundle_service.py:650 +msgid "The batch {0} is already reserved in {1} {2}. So, cannot proceed with the {3} {4}, which is created against the {5} {6}." +msgstr "" + +#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:41 +msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa." +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22 +msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." +msgstr "" + +#: erpnext/accounts/doctype/dunning/dunning.py:87 +msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +msgid "The current POS opening entry is outdated. Please close it and create a new one." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:208 +msgid "The date format detected in the statement file. This is used to parse the date values." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:185 +msgid "The date of the transaction" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1227 +msgid "The default BOM for that item will be fetched by the system. You can also change the BOM." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:200 +msgid "The description of the transaction" +msgstr "" + +#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py:67 +msgid "The difference between from time and To Time must be a multiple of Appointment" +msgstr "" + +#: banking/src/components/common/FileUploadBanner.tsx:11 +msgid "The document has been created and reconciled. Uploading attachments..." +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:177 +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:185 +msgid "The field Asset Account cannot be blank" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:192 +msgid "The field Equity/Liability Account cannot be blank" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:173 +msgid "The field From Shareholder cannot be blank" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:181 +msgid "The field To Shareholder cannot be blank" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.py:375 +msgid "The field {0} in row {1} is not set" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 +msgid "The fields From Shareholder and To Shareholder cannot be blank" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:171 +msgid "The file should contain the following columns with a distinct header row. You can upload most bank statements as is without changing the columns." +msgstr "" + +#. Description of the 'Item to Manufacture' (Link) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "The final item that will be produced using this BOM." +msgstr "" + +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:40 +msgid "The fiscal year has been automatically created in a Disabled state to maintain consistency with the previous fiscal year's status." +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:240 +msgid "The folio numbers are not matching" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 +msgid "The following Items, having Putaway Rules, could not be accomodated:" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:137 +msgid "The following Purchase Invoices are not submitted:" +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:350 +msgid "The following assets have failed to automatically post depreciation entries: {0}" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:307 +msgid "The following batches are expired, please restock them:
            {0}" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:372 +msgid "The following cancelled repost entries exist for {0}:

            {1}

            Kindly delete these entries before continuing." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:951 +msgid "The following deleted attributes exist in Variants but not in the Template. You can either delete the Variants or keep the attribute(s) in template." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:286 +msgid "The following employees are currently still reporting to {0}:" +msgstr "" + +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 +msgid "The following invalid Pricing Rules are deleted:" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:782 +msgid "The following payment schedule(s) already exist:\n" +"{0}" +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:111 +msgid "The following rows are duplicates:" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:567 +msgid "The following {0} were created: {1}" +msgstr "" + +#. Description of the 'How often should sales data be updated in +#. Company/Project?' (Select) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "The frequency at which project progress and company transaction details will be updated. Set it to daily or monthly if you post a lot of transactions." +msgstr "" + +#. Description of the 'Gross Weight' (Float) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "The gross weight of the package. Usually net weight + packaging material weight. (for print)" +msgstr "" + +#: erpnext/setup/doctype/holiday_list/holiday_list.py:126 +msgid "The holiday on {0} is not between From Date and To Date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:788 +msgid "The invoice is not fully allocated as there is a difference of {0}." +msgstr "" + +#: erpnext/controllers/buying_controller.py:1244 +msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:677 +msgid "The items {0} and {1} are present in the following {2} :" +msgstr "" + +#: erpnext/controllers/buying_controller.py:1237 +msgid "The items {items} are not marked as {type_of} item. You can enable them as {type_of} item from their Item masters." +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:595 +msgid "The job card {0} is in {1} state and you cannot complete." +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:589 +msgid "The job card {0} is in {1} state and you cannot start it again." +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:87 +msgid "The last account row must not have any debit or credit amounts set." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:533 +msgid "The last scanned warehouse has been cleared and won't be set in the subsequently scanned items" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:48 +msgid "The lowest tier must have a minimum spent amount of 0. Customers need to be part of a tier as soon as they are enrolled in the program." +msgstr "" + +#. Description of the 'Net Weight' (Float) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "The net weight of this package. (calculated automatically as sum of net weight of items)" +msgstr "" + +#. Description of the 'New BOM' (Link) field in DocType 'BOM Update Tool' +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "The new BOM after replacement" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:196 +msgid "The number of shares and the share numbers are inconsistent" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:987 +msgid "The opening balance might not match your bank statement. Would you like to reconcile them?" +msgstr "" + +#: erpnext/manufacturing/doctype/operation/operation.py:43 +msgid "The operation {0} can not add multiple times" +msgstr "" + +#: erpnext/manufacturing/doctype/operation/operation.py:48 +msgid "The operation {0} can not be the sub operation" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 +msgid "The original invoice should be consolidated before or along with the return invoice." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:199 +msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice." +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:234 +msgid "The parent account {0} does not exists in the uploaded template" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:209 +msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request" +msgstr "" + +#. Description of the 'Over Order Allowance (%)' (Float) field in DocType +#. 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units" +msgstr "" + +#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "The percentage you are allowed to bill more against the amount ordered. For example, if the order value is $100 for an item and tolerance is set as 10%, then you are allowed to bill up to $110 " +msgstr "" + +#. Description of the 'Over Picking Allowance (%)' (Percent) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "The percentage you are allowed to pick more items in the pick list than the ordered quantity." +msgstr "" + +#. Description of the 'Over Delivery/Receipt Allowance (%)' (Float) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "The 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." +msgstr "" + +#. Description of the 'Over Transfer Allowance (%)' (Float) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." +msgstr "" + +#. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:205 +msgid "The reference number of the transaction" +msgstr "" + +#: erpnext/public/js/utils.js:959 +msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.js:169 +msgid "The reserved stock will be released. Are you certain you wish to proceed?" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:222 +msgid "The root account {0} must be a group" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:87 +msgid "The selected BOMs are not for the same item" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 +msgid "The selected change account {} doesn't belongs to Company {}." +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:157 +msgid "The selected item cannot have Batch" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:657 +msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone.

            Do you want to continue?" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:194 +msgid "The seller and the buyer cannot be the same" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 +msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:386 +msgid "The serial no {0} does not belong to item {1}" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:230 +msgid "The shareholder does not belong to this company" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:160 +msgid "The shares already exist" +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:166 +msgid "The shares don't exist with the {0}" +msgstr "" + +#: erpnext/stock/stock_ledger.py:833 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

            {1}" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:37 +msgid "The sync has started in the background, please check the {0} list for new records." +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:484 +msgid "The system found a mirror transaction ({0}) in another account with the same amount and date." +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:106 +msgid "The system will attempt to automatically match a party to a bank transaction based on account number or IBAN." +msgstr "" + +#. Description of the 'Invoice Type Created via POS Screen' (Select) field in +#. DocType 'POS Settings' +#: erpnext/accounts/doctype/pos_settings/pos_settings.json +msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:352 +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:359 +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:43 +msgid "The uploaded file could not be parsed as a genericode XML document." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:153 +msgid "The uploaded file does not appear to be in valid MT940 format." +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.py:40 +msgid "The uploaded file does not match the selected Code List." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:10 +msgid "The user cannot submit the Serial and Batch Bundle manually" +msgstr "" + +#. Description of the 'Transfer Extra Raw Materials to WIP (%)' (Percent) field +#. in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "The user will be able to transfer additional materials from the store to the Work in Progress (WIP) warehouse." +msgstr "" + +#. Description of the 'Role allowed to edit frozen stock' (Link) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "The users with this Role are allowed to create/modify a stock transaction, even though the transaction is frozen." +msgstr "" + +#: erpnext/stock/doctype/item_alternative/item_alternative.py:58 +msgid "The value of {0} differs between Items {1} and {2}" +msgstr "" + +#: erpnext/controllers/item_variant.py:206 +msgid "The value {0} is already assigned to an existing Item {1}." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1255 +msgid "The warehouse where you store finished Items before they are shipped." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1248 +msgid "The warehouse where you store your raw materials. Each required item can have a separate source warehouse. Group warehouse also can be selected as source warehouse. On submission of the Work Order, the raw materials will be reserved in these warehouses for production usage." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1260 +msgid "The warehouse where your Items will be transferred when you begin production. Group Warehouse can also be selected as a Work in Progress warehouse." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:195 +msgid "The withdrawal or deposit amounts - only required if there's no amount column." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:959 +msgid "The {0} ({1}) must be equal to {2} ({3})" +msgstr "" + +#: erpnext/public/js/controllers/transaction.js:3380 +msgid "The {0} contains Unit Price Items." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:491 +msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:573 +msgid "The {0} {1} created successfully" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:42 +msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1075 +msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:74 +msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:730 +msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." +msgstr "" + +#: erpnext/accounts/doctype/share_transfer/share_transfer.py:201 +msgid "There are inconsistencies between the rate, no of shares and the amount calculated" +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:207 +msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:69 +msgid "There are no Failed transactions" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:236 +#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:226 +msgid "There are no accounting entries in the system for the selected account and dates." +msgstr "" + +#: erpnext/setup/demo.py:130 +msgid "There are no active Fiscal Years for which Demo Data can be generated." +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:220 +msgid "There are no entries in the system where the clearance date is before the posting date." +msgstr "" + +#: erpnext/www/book_appointment/index.js:95 +msgid "There are no slots available on this date" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:289 +msgid "There are no transactions in the system for the selected bank account and dates that match the filters." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1501 +msgid "There are two options to maintain valuation of stock. FIFO (first in - first out) and Moving Average. To understand this topic in detail please visit
            Item Valuation, FIFO and Moving Average." +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:982 +msgid "There are {0} unreconciled transactions before {1}." +msgstr "" + +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There aren't any item variants for the selected item" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 +msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." +msgstr "" + +#: erpnext/accounts/party.py:597 +msgid "There can only be 1 Account per Company in {0} {1}" +msgstr "" + +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:86 +msgid "There can only be one Shipping Rule Condition with 0 or blank value for \"To Value\"" +msgstr "" + +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:65 +msgid "There is already a valid Lower Deduction Certificate {0} for Supplier {1} against category {2} for this time period." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:77 +msgid "There is already an active Subcontracting BOM {0} for the Finished Good {1}." +msgstr "" + +#: erpnext/stock/doctype/batch/batch.py:394 +msgid "There is no batch found against the {0}: {1}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:984 +msgid "There is one unreconciled transaction before {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 +msgid "There must be atleast 1 Finished Good in this Stock Entry" +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +msgid "There was an error creating Bank Account while linking with Plaid." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +msgid "There was an error syncing transactions." +msgstr "" + +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 +msgid "There was an error updating Bank Account {} while linking with Plaid." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 +msgid "There was an error while importing the bank statement." +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:351 +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:88 +msgid "There was an error while performing the action." +msgstr "" + +#: banking/src/components/ui/error-banner.tsx:21 +msgid "There was an error." +msgstr "" + +#: erpnext/accounts/doctype/bank/bank.js:112 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:119 +msgid "There was an issue connecting to Plaid's authentication server. Check browser console for more information" +msgstr "" + +#: erpnext/accounts/utils.py:1145 +msgid "There were issues unlinking payment entry {0}." +msgstr "" + +#. Description of the 'Zero Balance' (Check) field in DocType 'Exchange Rate +#. Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "This Account has '0' balance in either Base Currency or Account Currency" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:73 +msgid "This Fiscal Year" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:220 +msgid "This Item is a Template and cannot be used in transactions.
            All fields present in the 'Copy Fields to Variant' table in Item Variant Settings will be copied to its variant items." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:277 +msgid "This Item is a Variant of {0} (Template)." +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:175 +msgid "This Month's Summary" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:937 +msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:253 +msgid "This Purchase Order has been fully subcontracted." +msgstr "" + +#: erpnext/selling/doctype/sales_order/mapper.py:1054 +msgid "This Sales Order has been fully subcontracted." +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:172 +msgid "This Week's Summary" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.js:69 +msgid "This action will stop future billing. Are you sure you want to cancel this subscription?" +msgstr "" + +#: erpnext/accounts/doctype/bank_account/bank_account.js:35 +msgid "This action will unlink this account from any external service integrating ERPNext with your bank accounts. It cannot be undone. Are you certain ?" +msgstr "" + +#. Description of the 'Allow Sales Order creation for expired Quotation' +#. (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:432 +msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." +msgstr "" + +#. Description of the 'Allow negative stock' (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "This can be enabled at specific Item level as well" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:190 +msgid "This can contain \"CR\"/\"DR\" values or positive/negative values. You could also have a separate column for CR/DR." +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_dashboard.py:7 +msgid "This covers all scorecards tied to this Setup" +msgstr "" + +#: erpnext/controllers/status_updater.py:490 +msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.js:496 +msgid "This field is used to set the 'Customer'." +msgstr "" + +#. Description of the 'Bank / Cash Account' (Link) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "This filter will be applied to Journal Entry." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:872 +msgid "This invoice has already been paid." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:310 +msgid "This is a Template BOM and will be used to make the work order for {0} of the item {1}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:466 +msgid "This is a formula based value." +msgstr "" + +#. Description of the 'Target Warehouse' (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "This is a location where final product stored." +msgstr "" + +#. Description of the 'Work-in-Progress Warehouse' (Link) field in DocType +#. 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "This is a location where operations are executed." +msgstr "" + +#. Description of the 'Source Warehouse' (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "This is a location where raw materials are available." +msgstr "" + +#. Description of the 'Scrap Warehouse' (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "This is a location where scraped materials are stored." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:319 +msgid "This is a preview of the email to be sent. A PDF of the document will automatically be attached with the email." +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:45 +msgid "This is a root account and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/customer_group/customer_group.js:44 +msgid "This is a root customer group and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/department/department.js:14 +msgid "This is a root department and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.js:98 +msgid "This is a root item group and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.js:46 +msgid "This is a root sales person and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/supplier_group/supplier_group.js:43 +msgid "This is a root supplier group and cannot be edited." +msgstr "" + +#: erpnext/setup/doctype/territory/territory.js:22 +msgid "This is a root territory and cannot be edited." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:424 +msgid "This is auto computed to balance the journal entry." +msgstr "" + +#: erpnext/stock/doctype/item/item_dashboard.py:7 +msgid "This is based on stock movement. See {0} for details" +msgstr "" + +#: erpnext/projects/doctype/project/project_dashboard.py:7 +msgid "This is based on the Time Sheets created against this project" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:7 +msgid "This is based on transactions against this Sales Person. See timeline below for details" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:107 +msgid "This is considered dangerous from accounting point of view." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:97 +msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1241 +msgid "This is enabled by default. If you want to plan materials for sub-assemblies of the Item you're manufacturing leave this enabled. If you plan and manufacture the sub-assemblies separately, you can disable this checkbox." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1489 +msgid "This is for raw material Items that'll be used to create finished goods. If the Item is an additional service like 'washing' that'll be used in the BOM, keep this unchecked." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:466 +msgid "This is not a valid formula. Check the variable used in the formula." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:198 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:266 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:279 +msgid "This is required" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:599 +msgid "This is the bank account entry. You cannot edit it." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/RawTableGrid.tsx:136 +msgid "This is the header row. Click to mark the table as having no header." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:693 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:708 +msgid "This is the last row. It will be auto populated based on the bank transaction." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:600 +msgid "This is the row for the bank account. It will be auto populated based on the bank transaction." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:77 +msgid "This is what the system expects the closing balance to be in your bank statement." +msgstr "" + +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +msgid "This item filter has already been applied for the {0}" +msgstr "" + +#: erpnext/www/banking.py:35 +msgid "This method is only meant for developer mode" +msgstr "" + +#. Header text in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "This module is scheduled for deprecation and will be completely removed in version 17, please use Frappe CRM instead." +msgstr "" + +#. Header text in the Support Workspace +#: erpnext/support/workspace/support/support.json +msgid "This module is scheduled for deprecation and will be completely removed in version 17, please use Frappe Helpdesk instead." +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.js:509 +msgid "This option can be checked to edit the 'Posting Date' and 'Posting Time' fields." +msgstr "" + +#. Description of the 'Raise Material Request when stock reaches re-order +#. level' (Check) field in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "This option is useful if you want to ensure a constant supply of raw materials/products and avoid shortage. A Material Request will be raised automatically when stock reached the re-order level defined in the Item form." +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:185 +msgid "This report shows all entries in the system where the clearance date is before the posting date which is incorrect." +msgstr "" + +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:212 +msgid "This schedule was created when Asset {0} was adjusted through Asset Value Adjustment {1}." +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:91 +msgid "This schedule was created when Asset {0} was consumed through Asset Capitalization {1}." +msgstr "" + +#: erpnext/assets/doctype/asset_repair/asset_repair.py:328 +msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:176 +msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation." +msgstr "" + +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:459 +msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:466 +msgid "This schedule was created when Asset {0} was restored." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:173 +msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}." +msgstr "" + +#: erpnext/assets/doctype/asset/depreciation.py:424 +msgid "This schedule was created when Asset {0} was scrapped." +msgstr "" + +#: erpnext/assets/doctype/asset/mapper.py:338 +msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:162 +msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}." +msgstr "" + +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:219 +msgid "This schedule was created when Asset {0}'s Asset Value Adjustment {1} was cancelled." +msgstr "" + +#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:206 +msgid "This schedule was created when Asset {0}'s shifts were adjusted through Asset Shift Allocation {1}." +msgstr "" + +#: banking/src/pages/BankReconciliation.tsx:90 +msgid "This screen is not supported on mobile devices." +msgstr "" + +#. Description of the 'Dunning Letter' (Section Break) field in DocType +#. 'Dunning Type' +#: erpnext/accounts/doctype/dunning_type/dunning_type.json +msgid "This section allows the user to set the Body and Closing text of the Dunning Letter for the Dunning Type based on language, which can be used in Print." +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +msgid "This statement has already been imported." +msgstr "" + +#. Description of the 'Supplier' (Link) field in DocType 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "This supplier will be auto-selected in new purchase transactions" +msgstr "" + +#: erpnext/stock/doctype/delivery_note/delivery_note.js:502 +msgid "This table is used to set details about the 'Item', 'Qty', 'Basic Rate', etc." +msgstr "" + +#. Description of a DocType +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json +msgid "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." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx:52 +msgid "This transaction has been reconciled with the following document(s):" +msgstr "" + +#. Description of the 'Default Common Code' (Link) field in DocType 'Code List' +#: erpnext/edi/doctype/code_list/code_list.json +msgid "This value shall be used when no matching Common Code for a record is found." +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:86 +msgid "This will automatically run transaction matching rules on unreconciled transactions every hour." +msgstr "" + +#. Description of the 'Abbreviation' (Data) field in DocType 'Item Attribute +#. Value' +#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json +msgid "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\"" +msgstr "" + +#. Description of the 'Have default Naming Series for Batch ID?' (Check) field +#. in DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "This will be applied if no naming series is configured in Item master" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:346 +msgid "This will be auto-populated if not set." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:264 +msgid "This will just suggest creating a new entry, and will not automatically create it." +msgstr "" + +#. Description of the 'Create User Permission' (Check) field in DocType +#. 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "This will restrict user access to other employee records" +msgstr "" + +#: erpnext/controllers/selling_controller.py:901 +msgid "This {} will be treated as material transfer." +msgstr "" + +#. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Threshold Exemption" +msgstr "" + +#. Label of the threshold_percentage (Percent) field in DocType 'Promotional +#. Scheme Price Discount' +#. Label of the threshold_percentage (Percent) field in DocType 'Promotional +#. Scheme Product Discount' +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +msgid "Threshold for Suggestion" +msgstr "" + +#. Label of the threshold_percentage (Percent) field in DocType 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Threshold for Suggestion (In Percentage)" +msgstr "" + +#. Label of the thumbnail (Data) field in DocType 'BOM' +#. Label of the thumbnail (Data) field in DocType 'BOM Website Operation' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json +msgid "Thumbnail" +msgstr "" + +#. Label of the tier_name (Data) field in DocType 'Loyalty Program Collection' +#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json +msgid "Tier Name" +msgstr "" + +#. Label of the time_in_mins (Float) field in DocType 'Job Card Scheduled Time' +#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:125 +msgid "Time (In Mins)" +msgstr "" + +#. Label of the mins_between_operations (Int) field in DocType 'Manufacturing +#. Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Time Between Operations (Mins)" +msgstr "" + +#. Label of the time_in_mins (Float) field in DocType 'Job Card Time Log' +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +msgid "Time In Mins" +msgstr "" + +#. Label of the time_logs (Table) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Time Logs" +msgstr "" + +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:182 +msgid "Time Required (In Mins)" +msgstr "" + +#. Label of the time_sheet (Link) field in DocType 'Sales Invoice Timesheet' +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +msgid "Time Sheet" +msgstr "" + +#. Label of the time_sheet_list (Section Break) field in DocType 'POS Invoice' +#. Label of the time_sheet_list (Section Break) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Time Sheet List" +msgstr "" + +#. Label of the timesheets (Table) field in DocType 'POS Invoice' +#. Label of the timesheets (Table) field in DocType 'Sales Invoice' +#. Label of the time_logs (Table) field in DocType 'Timesheet' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Time Sheets" +msgstr "" + +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:335 +msgid "Time Taken to Deliver" +msgstr "" + +#. Label of a Card Break in the Projects Workspace +#: erpnext/config/projects.py:50 +#: erpnext/projects/workspace/projects/projects.json +msgid "Time Tracking" +msgstr "" + +#. Description of the 'Posting Time' (Time) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Time at which materials were received" +msgstr "" + +#. Description of the 'Operation Time' (Float) field in DocType 'Sub Operation' +#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json +msgid "Time in mins" +msgstr "" + +#. Description of the 'Total Operation Time' (Float) field in DocType +#. 'Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Time in mins." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:935 +msgid "Time logs are required for {0} {1}" +msgstr "" + +#: erpnext/crm/doctype/appointment/appointment.py:60 +msgid "Time slot is not available" +msgstr "" + +#: erpnext/templates/generators/bom.html:71 +msgid "Time(in mins)" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'Project' +#. Label of the sb_timeline (Section Break) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Timeline" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 +#: erpnext/public/js/projects/timer.js:5 +msgid "Timer" +msgstr "" + +#: erpnext/public/js/projects/timer.js:151 +msgid "Timer exceeded the given hours." +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:302 +#: erpnext/projects/doctype/timesheet/timesheet.json +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:23 +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:59 +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/templates/pages/projects.html:65 +#: erpnext/workspace_sidebar/projects.json +msgid "Timesheet" +msgstr "" + +#. Name of a report +#. Label of a Link in the Projects Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.json +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/workspace_sidebar/projects.json +msgid "Timesheet Billing Summary" +msgstr "" + +#. Label of the timesheet_detail (Data) field in DocType 'Sales Invoice +#. Timesheet' +#. Name of a DocType +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +msgid "Timesheet Detail" +msgstr "" + +#: erpnext/config/projects.py:55 +msgid "Timesheet for tasks." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/timesheet_billing.py:33 +msgid "Timesheet {0} cannot be invoiced in its current state" +msgstr "" + +#. Label of the timesheet_sb (Section Break) field in DocType 'Projects +#. Settings' +#: erpnext/projects/doctype/projects_settings/projects_settings.json +#: erpnext/projects/doctype/timesheet/timesheet.py:594 +#: erpnext/templates/pages/projects.html:60 +msgid "Timesheets" +msgstr "" + +#: erpnext/utilities/activation.py:127 +msgid "Timesheets help keep track of time, cost and billing for activities done by your team" +msgstr "" + +#. Label of the timeslots_section (Section Break) field in DocType +#. 'Communication Medium' +#. Label of the timeslots (Table) field in DocType 'Communication Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Timeslots" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Purchase Order' +#. Option for the 'Sales Order Status' (Select) field in DocType 'Production +#. Plan' +#. Option for the 'Status' (Select) field in DocType 'Sales Order' +#. Option for the 'Status' (Select) field in DocType 'Delivery Note' +#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:39 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_list.js:58 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:60 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:22 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:21 +msgid "To Bill" +msgstr "" + +#. Label of the to_currency (Link) field in DocType 'Currency Exchange' +#: erpnext/setup/doctype/currency_exchange/currency_exchange.json +msgid "To Currency" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:531 +#: erpnext/setup/doctype/holiday_list/holiday_list.py:121 +msgid "To Date cannot be before From Date" +msgstr "" + +#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:38 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:34 +#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:38 +msgid "To Date cannot be before From Date." +msgstr "" + +#: erpnext/accounts/report/financial_statements.py:141 +msgid "To Date cannot be less than From Date" +msgstr "" + +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:29 +msgid "To Date is mandatory" +msgstr "" + +#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:11 +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:11 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:16 +msgid "To Date must be greater than From Date" +msgstr "" + +#: erpnext/accounts/report/trial_balance/trial_balance.py:77 +msgid "To Date should be within the Fiscal Year. Assuming To Date = {0}" +msgstr "" + +#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:27 +msgid "To Datetime" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:118 +msgid "To Delete list generated with {0} DocTypes" +msgstr "" + +#. Option for the 'Sales Order Status' (Select) field in DocType 'Production +#. Plan' +#. Option for the 'Status' (Select) field in DocType 'Sales Order' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_list.js:37 +#: erpnext/selling/doctype/sales_order/sales_order_list.js:50 +msgid "To Deliver" +msgstr "" + +#. Option for the 'Sales Order Status' (Select) field in DocType 'Production +#. Plan' +#. Option for the 'Status' (Select) field in DocType 'Sales Order' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_list.js:44 +msgid "To Deliver and Bill" +msgstr "" + +#. Label of the to_delivery_date (Date) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "To Delivery Date" +msgstr "" + +#. Label of the to_doctype (Link) field in DocType 'Bulk Transaction Log +#. Detail' +#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json +msgid "To Doctype" +msgstr "" + +#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:83 +msgid "To Due Date" +msgstr "" + +#. Label of the to_employee (Link) field in DocType 'Asset Movement Item' +#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json +msgid "To Employee" +msgstr "" + +#. Label of the to_fiscal_year (Link) field in DocType 'Budget' +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:59 +msgid "To Fiscal Year" +msgstr "" + +#. Label of the to_folio_no (Data) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "To Folio No" +msgstr "" + +#. Label of the to_invoice_date (Date) field in DocType 'Payment +#. Reconciliation' +#. Label of the to_invoice_date (Date) field in DocType 'Process Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "To Invoice Date" +msgstr "" + +#. Label of the to_no (Int) field in DocType 'Share Balance' +#. Label of the to_no (Int) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_balance/share_balance.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "To No" +msgstr "" + +#. Label of the to_case_no (Int) field in DocType 'Packing Slip' +#: erpnext/stock/doctype/packing_slip/packing_slip.json +msgid "To Package No." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Sales Order' +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:22 +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/doctype/sales_order/sales_order_list.js:25 +msgid "To Pay" +msgstr "" + +#. Label of the to_payment_date (Date) field in DocType 'Payment +#. Reconciliation' +#. Label of the to_payment_date (Date) field in DocType 'Process Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json +msgid "To Payment Date" +msgstr "" + +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:43 +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:29 +msgid "To Posting Date" +msgstr "" + +#. Label of the to_range (Float) field in DocType 'Item Attribute' +#. Label of the to_range (Float) field in DocType 'Item Variant Attribute' +#: erpnext/stock/doctype/item_attribute/item_attribute.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "To Range" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:32 +msgid "To Receive" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Purchase Order' +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:26 +msgid "To Receive and Bill" +msgstr "" + +#. Label of the to_reference_date (Date) field in DocType 'Bank Reconciliation +#. Tool' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json +msgid "To Reference Date" +msgstr "" + +#. Label of the to_rename (Check) field in DocType 'GL Entry' +#. Label of the to_rename (Check) field in DocType 'Stock Ledger Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +msgid "To Rename" +msgstr "" + +#. Label of the to_shareholder (Link) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +msgid "To Shareholder" +msgstr "" + +#. Label of the time (Time) field in DocType 'Cashier Closing' +#. Label of the to_time (Datetime) field in DocType 'Sales Invoice Timesheet' +#. Label of the to_time (Time) field in DocType 'Communication Medium Timeslot' +#. Label of the to_time (Time) field in DocType 'Appointment Booking Slots' +#. Label of the to_time (Time) field in DocType 'Availability Of Slots' +#. Label of the to_time (Datetime) field in DocType 'Downtime Entry' +#. Label of the to_time (Datetime) field in DocType 'Job Card Scheduled Time' +#. Label of the to_time (Datetime) field in DocType 'Job Card Time Log' +#. Label of the to_time (Time) field in DocType 'Project' +#. Label of the to_time (Datetime) field in DocType 'Timesheet Detail' +#. Label of the to_time (Time) field in DocType 'Incoming Call Handling +#. Schedule' +#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json +#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json +#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json +#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json +#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json +#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json +#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:92 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:180 +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json +#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json +#: erpnext/templates/pages/timelog_info.html:34 +msgid "To Time" +msgstr "" + +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 +msgid "To Time cannot be before from date" +msgstr "" + +#. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' +#: erpnext/setup/doctype/sales_partner/sales_partner.json +msgid "To Track inbound purchase" +msgstr "" + +#. Label of the to_value (Float) field in DocType 'Shipping Rule Condition' +#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json +msgid "To Value" +msgstr "" + +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:224 +#: erpnext/stock/doctype/batch/batch.js:116 +msgid "To Warehouse" +msgstr "" + +#. Label of the target_warehouse (Link) field in DocType 'Packed Item' +#: erpnext/stock/doctype/packed_item/packed_item.json +msgid "To Warehouse (Optional)" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1002 +msgid "To add Operations tick the 'With Operations' checkbox." +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:741 +msgid "To add subcontracted Item's raw materials if include exploded items is disabled." +msgstr "" + +#: erpnext/controllers/status_updater.py:483 +msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." +msgstr "" + +#: erpnext/controllers/status_updater.py:477 +msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." +msgstr "" + +#: erpnext/controllers/status_updater.py:479 +msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." +msgstr "" + +#. Description of the 'Mandatory Depends On' (Small Text) field in DocType +#. 'Inventory Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "To apply condition on parent field use parent.field_name and to apply condition on child table use doc.field_name. Here field_name could be based on the actual column name of the respective field." +msgstr "" + +#. Label of the delivered_by_supplier (Check) field in DocType 'Purchase Order +#. Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "To be Delivered to Customer" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 +msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 +msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:161 +msgid "To create a Payment Request reference document is required" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:120 +msgid "To enable Capital Work in Progress Accounting," +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 +msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." +msgstr "" + +#. Description of the 'Set Operating Cost / Secondary Items From +#. Sub-assemblies' (Check) field in DocType 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 +#: erpnext/accounts/services/taxes.py:301 +msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:699 +msgid "To merge, following properties must be same for both items" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:59 +msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:565 +msgid "To overrule this, enable '{0}' in company {1}" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:80 +msgid "To select more than one transaction at a time, press and hold the shift key." +msgstr "" + +#: erpnext/controllers/item_variant.py:209 +msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:468 +msgid "To submit the invoice without purchase order please set {0} as {1} in {2}" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:490 +msgid "To submit the invoice without purchase receipt please set {0} as {1} in {2}" +msgstr "" + +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:43 +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:233 +msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/report/financial_statements.py:648 +#: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/trial_balance/trial_balance.py:320 +msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ton (Long)/Cubic Yard" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ton (Short)/Cubic Yard" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ton-Force (UK)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Ton-Force (US)" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Tonne" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Tonne-Force(Metric)" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.html:8 +#: erpnext/accounts/report/cash_flow/cash_flow.html:8 +#: erpnext/accounts/report/financial_statements.html:6 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:8 +#: erpnext/accounts/report/trial_balance/trial_balance.html:8 +msgid "Too many columns. Export the report and print it using a spreadsheet application." +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Torr" +msgstr "" + +#. Label of the base_total (Currency) field in DocType 'Advance Taxes and +#. Charges' +#. Label of the base_total (Currency) field in DocType 'POS Invoice' +#. Label of the base_total (Currency) field in DocType 'Purchase Invoice' +#. Label of the base_total (Currency) field in DocType 'Purchase Taxes and +#. Charges' +#. Label of the base_total (Currency) field in DocType 'Sales Invoice' +#. Label of the base_total (Currency) field in DocType 'Sales Taxes and +#. Charges' +#. Label of the base_total (Currency) field in DocType 'Purchase Order' +#. Label of the base_total (Currency) field in DocType 'Supplier Quotation' +#. Label of the base_total (Currency) field in DocType 'Opportunity' +#. Label of the base_total (Currency) field in DocType 'Quotation' +#. Label of the base_total (Currency) field in DocType 'Sales Order' +#. Label of the base_total (Currency) field in DocType 'Delivery Note' +#. Label of the base_total (Currency) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/crm/doctype/opportunity/opportunity.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Total (Company Currency)" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +msgid "Total (Credit)" +msgstr "" + +#: erpnext/templates/print_formats/includes/total.html:4 +msgid "Total (Without Tax)" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:137 +msgid "Total Achieved" +msgstr "" + +#. Label of a number card in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Total Active Items" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:347 +msgid "Total Actual" +msgstr "" + +#. Label of the total_additional_costs (Currency) field in DocType 'Stock +#. Entry' +#. Label of the total_additional_costs (Currency) field in DocType +#. 'Subcontracting Order' +#. Label of the total_additional_costs (Currency) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Total Additional Costs" +msgstr "" + +#. Label of the total_advance (Currency) field in DocType 'POS Invoice' +#. Label of the total_advance (Currency) field in DocType 'Purchase Invoice' +#. Label of the total_advance (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Total Advance" +msgstr "" + +#. Label of the total_allocated_amount (Currency) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Total Allocated Amount" +msgstr "" + +#. Label of the base_total_allocated_amount (Currency) field in DocType +#. 'Payment Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Total Allocated Amount (Company Currency)" +msgstr "" + +#. Label of the total_allocations (Int) field in DocType 'Process Payment +#. Reconciliation Log' +#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json +msgid "Total Allocations" +msgstr "" + +#. Label of the total_amount (Currency) field in DocType 'Invoice Discounting' +#. Label of the total_amount (Currency) field in DocType 'Journal Entry' +#. Label of the total_amount (Float) field in DocType 'Serial and Batch Bundle' +#. Label of the total_amount (Currency) field in DocType 'Stock Entry' +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:846 +#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/selling/page/sales_funnel/sales_funnel.py:183 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66 +#: erpnext/templates/includes/order/order_taxes.html:54 +msgid "Total Amount" +msgstr "" + +#. Label of the total_amount_currency (Link) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Total Amount Currency" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:176 +msgid "Total Amount Due" +msgstr "" + +#. Label of the total_amount_in_words (Data) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Total Amount in Words" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +msgid "Total Asset" +msgstr "" + +#. Label of the total_asset_cost (Currency) field in DocType 'Asset' +#: erpnext/assets/doctype/asset/asset.json +msgid "Total Asset Cost" +msgstr "" + +#: erpnext/assets/dashboard_fixtures.py:158 +msgid "Total Assets" +msgstr "" + +#. Label of the total_billable_amount (Currency) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Billable Amount" +msgstr "" + +#. Label of the total_billable_amount (Currency) field in DocType 'Project' +#. Label of the total_billing_amount (Currency) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Total Billable Amount (via Timesheet)" +msgstr "" + +#. Label of the total_billable_hours (Float) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Billable Hours" +msgstr "" + +#. Label of the total_billed_amount (Currency) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Billed Amount" +msgstr "" + +#. Label of the total_billed_amount (Currency) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Total Billed Amount (via Sales Invoice)" +msgstr "" + +#. Label of the total_billed_hours (Float) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Billed Hours" +msgstr "" + +#. Label of the total_billing_amount (Currency) field in DocType 'POS Invoice' +#. Label of the total_billing_amount (Currency) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Total Billing Amount" +msgstr "" + +#. Label of the total_billing_hours (Float) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Total Billing Hours" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:347 +msgid "Total Budget" +msgstr "" + +#. Label of the total_characters (Int) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Total Characters" +msgstr "" + +#. Label of the total_commission (Currency) field in DocType 'POS Invoice' +#. Label of the total_commission (Currency) field in DocType 'Sales Invoice' +#. Label of the total_commission (Currency) field in DocType 'Sales Order' +#. Label of the total_commission (Currency) field in DocType 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:170 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Total Commission" +msgstr "" + +#. Label of the total_completed_qty (Float) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card/job_card.py:960 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174 +msgid "Total Completed Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:196 +msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission" +msgstr "" + +#. Label of the total_consumed_material_cost (Currency) field in DocType +#. 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Total Consumed Material Cost (via Stock Entry)" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.js:17 +msgid "Total Contribution Amount Against Invoices: {0}" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.js:10 +msgid "Total Contribution Amount Against Orders: {0}" +msgstr "" + +#. Label of the total_cost (Currency) field in DocType 'BOM' +#. Label of the raw_material_cost (Currency) field in DocType 'BOM Creator' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +msgid "Total Cost" +msgstr "" + +#. Label of the base_total_cost (Currency) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Total Cost (Company Currency)" +msgstr "" + +#. Label of the total_costing_amount (Currency) field in DocType 'Timesheet' +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Costing Amount" +msgstr "" + +#. Label of the total_costing_amount (Currency) field in DocType 'Project' +#. Label of the total_costing_amount (Currency) field in DocType 'Task' +#: erpnext/projects/doctype/project/project.json +#: erpnext/projects/doctype/task/task.json +msgid "Total Costing Amount (via Timesheet)" +msgstr "" + +#. Label of the total_credit (Currency) field in DocType 'Journal Entry' +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:788 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Total Credit" +msgstr "" + +#. Label of the total_credit_transactions (Int) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Total Credit Transactions" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:378 +msgid "Total Credit/ Debit Amount should be same as linked Journal Entry" +msgstr "" + +#. Label of the total_credits (Currency) field in DocType 'Bank Statement +#. Import Log' +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:181 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Total Credits" +msgstr "" + +#. Label of the total_debit (Currency) field in DocType 'Journal Entry' +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:784 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Total Debit" +msgstr "" + +#. Label of the total_debit_transactions (Int) field in DocType 'Bank Statement +#. Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Total Debit Transactions" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:666 +msgid "Total Debit must be equal to Total Credit. The difference is {0}" +msgstr "" + +#. Label of the total_debits (Currency) field in DocType 'Bank Statement Import +#. Log' +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:177 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Total Debits" +msgstr "" + +#: erpnext/stock/report/delivery_note_trends/delivery_note_trends.py:51 +msgid "Total Delivered Amount" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:247 +msgid "Total Demand (Past Data)" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +msgid "Total Equity" +msgstr "" + +#. Label of the total_distance (Float) field in DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Total Estimated Distance" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +msgid "Total Expense" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +msgid "Total Expense This Year" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:588 +msgid "Total Expenses booked through" +msgstr "" + +#. Label of the total_experience (Data) field in DocType 'Employee External +#. Work History' +#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json +msgid "Total Experience" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:260 +msgid "Total Forecast (Future Data)" +msgstr "" + +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:253 +msgid "Total Forecast (Past Data)" +msgstr "" + +#. Label of the total_gain_loss (Currency) field in DocType 'Exchange Rate +#. Revaluation' +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json +msgid "Total Gain/Loss" +msgstr "" + +#. Label of the total_hold_time (Duration) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "Total Hold Time" +msgstr "" + +#. Label of the total_holidays (Int) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Total Holidays" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +msgid "Total Income" +msgstr "" + +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +msgid "Total Income This Year" +msgstr "" + +#. Label of the total_incoming_value (Currency) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Total Incoming Value (Receipt)" +msgstr "" + +#. Label of the total_interest (Currency) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +msgid "Total Interest" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:199 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:135 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:135 +msgid "Total Invoiced Amount" +msgstr "" + +#: erpnext/support/report/issue_summary/issue_summary.py:83 +msgid "Total Issues" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:96 +msgid "Total Items" +msgstr "" + +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:24 +msgid "Total Landed Cost" +msgstr "" + +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Landed +#. Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Total Landed Cost (Company Currency)" +msgstr "" + +#. Label of the total_vouchers (Int) field in DocType 'Repost Item Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Total Ledgers" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +msgid "Total Liability" +msgstr "" + +#. Label of the total_messages (Int) field in DocType 'SMS Center' +#: erpnext/selling/doctype/sms_center/sms_center.json +msgid "Total Message(s)" +msgstr "" + +#. Label of the total_monthly_sales (Currency) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Total Monthly Sales" +msgstr "" + +#. Label of the total_net_weight (Float) field in DocType 'POS Invoice' +#. Label of the total_net_weight (Float) field in DocType 'Purchase Invoice' +#. Label of the total_net_weight (Float) field in DocType 'Sales Invoice' +#. Label of the total_net_weight (Float) field in DocType 'Purchase Order' +#. Label of the total_net_weight (Float) field in DocType 'Supplier Quotation' +#. Label of the total_net_weight (Float) field in DocType 'Quotation' +#. Label of the total_net_weight (Float) field in DocType 'Sales Order' +#. Label of the total_net_weight (Float) field in DocType 'Delivery Note' +#. Label of the total_net_weight (Float) field in DocType 'Purchase Receipt' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Total Net Weight" +msgstr "" + +#. Label of the total_number_of_booked_depreciations (Int) field in DocType +#. 'Asset Finance Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Total Number of Booked Depreciations " +msgstr "" + +#. Label of the total_number_of_depreciations (Int) field in DocType 'Asset' +#. Label of the total_number_of_depreciations (Int) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the total_number_of_depreciations (Int) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Total Number of Depreciations" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.js:96 +msgid "Total Only" +msgstr "" + +#. Label of the total_operating_cost (Currency) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Total Operating Cost" +msgstr "" + +#. Label of the total_operation_time (Float) field in DocType 'Operation' +#: erpnext/manufacturing/doctype/operation/operation.json +msgid "Total Operation Time" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:103 +msgid "Total Order Considered" +msgstr "" + +#: erpnext/selling/report/inactive_customers/inactive_customers.py:102 +msgid "Total Order Value" +msgstr "" + +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:628 +msgid "Total Other Charges" +msgstr "" + +#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:62 +msgid "Total Outgoing" +msgstr "" + +#. Label of the total_outgoing_value (Currency) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Total Outgoing Value (Consumption)" +msgstr "" + +#. Label of the total_outstanding (Currency) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html:9 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:100 +#: erpnext/accounts/report/accounts_payable/accounts_payable.html:206 +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:204 +msgid "Total Outstanding" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:208 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:138 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:138 +msgid "Total Outstanding Amount" +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:200 +#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:136 +#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:136 +msgid "Total Paid Amount" +msgstr "" + +#: erpnext/accounts/services/payment_schedule.py:293 +msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:188 +msgid "Total Payment Request amount cannot be greater than {0} amount" +msgstr "" + +#: erpnext/regional/report/irs_1099/irs_1099.py:82 +msgid "Total Payments" +msgstr "" + +#: erpnext/selling/doctype/sales_order/services/status.py:90 +msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings." +msgstr "" + +#. Label of the total_planned_qty (Float) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Total Planned Qty" +msgstr "" + +#. Label of the total_produced_qty (Float) field in DocType 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "Total Produced Qty" +msgstr "" + +#. Label of the total_projected_qty (Float) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Total Projected Qty" +msgstr "" + +#. Label of a number card in the Buying Workspace +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:274 +#: erpnext/buying/workspace/buying/buying.json +msgid "Total Purchase Amount" +msgstr "" + +#. Label of the total_purchase_cost (Currency) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Total Purchase Cost (via Purchase Invoice)" +msgstr "" + +#. Label of the total_qty (Float) field in DocType 'Serial and Batch Bundle' +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:65 +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:139 +msgid "Total Qty" +msgstr "" + +#. Label of the total_quantity (Float) field in DocType 'POS Closing Entry' +#. Label of the total_qty (Float) field in DocType 'POS Invoice' +#. Label of the total_qty (Float) field in DocType 'Purchase Invoice' +#. Label of the total_qty (Float) field in DocType 'Sales Invoice' +#. Label of the total_qty (Float) field in DocType 'Purchase Order' +#. Label of the total_qty (Float) field in DocType 'Supplier Quotation' +#. Label of the total_qty (Float) field in DocType 'Quotation' +#. Label of the total_qty (Float) field in DocType 'Sales Order' +#. Label of the total_qty (Float) field in DocType 'Delivery Note' +#. Label of the total_qty (Float) field in DocType 'Purchase Receipt' +#. Label of the total_qty (Float) field in DocType 'Subcontracting Order' +#. Label of the total_qty (Float) field in DocType 'Subcontracting Receipt' +#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:23 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:147 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:543 +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:547 +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Total Quantity" +msgstr "" + +#: erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.py:51 +msgid "Total Received Amount" +msgstr "" + +#. Label of the total_repair_cost (Currency) field in DocType 'Asset Repair' +#: erpnext/assets/doctype/asset_repair/asset_repair.json +msgid "Total Repair Cost" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:44 +msgid "Total Revenue" +msgstr "" + +#. Label of a number card in the Selling Workspace +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:257 +#: erpnext/selling/workspace/selling/selling.json +msgid "Total Sales Amount" +msgstr "" + +#. Label of the total_sales_amount (Currency) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Total Sales Amount (via Sales Order)" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/total_stock_summary/total_stock_summary.json +msgid "Total Stock Summary" +msgstr "" + +#. Label of a number card in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Total Stock Value" +msgstr "" + +#. Label of the total_supplied_qty (Float) field in DocType 'Subcontracting +#. Order Supplied Item' +#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json +msgid "Total Supplied Qty" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:130 +msgid "Total Target" +msgstr "" + +#: erpnext/projects/report/project_summary/project_summary.py:65 +#: erpnext/projects/report/project_summary/project_summary.py:102 +#: erpnext/projects/report/project_summary/project_summary.py:130 +msgid "Total Tasks" +msgstr "" + +#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:621 +#: erpnext/accounts/report/purchase_register/purchase_register.py:265 +msgid "Total Tax" +msgstr "" + +#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:86 +msgid "Total Taxable Amount" +msgstr "" + +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Payment +#. Entry' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'POS +#. Closing Entry' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'POS +#. Invoice' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Sales +#. Invoice' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Purchase +#. Order' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Supplier +#. Quotation' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Quotation' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Sales +#. Order' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Delivery +#. Note' +#. Label of the total_taxes_and_charges (Currency) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Total Taxes and Charges" +msgstr "" + +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Payment Entry' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType 'POS +#. Invoice' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Purchase Invoice' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType 'Sales +#. Invoice' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Purchase Order' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Supplier Quotation' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Quotation' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType 'Sales +#. Order' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Delivery Note' +#. Label of the base_total_taxes_and_charges (Currency) field in DocType +#. 'Purchase Receipt' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Total Taxes and Charges (Company Currency)" +msgstr "" + +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +msgid "Total Time (in Mins)" +msgstr "" + +#. Label of the total_time_in_mins (Float) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Total Time in Mins" +msgstr "" + +#: erpnext/public/js/utils.js:193 +msgid "Total Unpaid: {0}" +msgstr "" + +#. Label of the total_value (Currency) field in DocType 'Asset Capitalization' +#. Label of the total_value (Currency) field in DocType 'Asset Repair Consumed +#. Item' +#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +msgid "Total Value" +msgstr "" + +#. Label of the value_difference (Currency) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Total Value Difference (Incoming - Outgoing)" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:347 +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:144 +msgid "Total Variance" +msgstr "" + +#. Label of the total_vendor_invoices_cost (Currency) field in DocType 'Landed +#. Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Total Vendor Invoices Cost (Company Currency)" +msgstr "" + +#: erpnext/utilities/report/youtube_interactions/youtube_interactions.py:75 +msgid "Total Views" +msgstr "" + +#. Label of a number card in the Stock Workspace +#: erpnext/stock/workspace/stock/stock.json +msgid "Total Warehouses" +msgstr "" + +#. Label of the total_weight (Float) field in DocType 'POS Invoice Item' +#. Label of the total_weight (Float) field in DocType 'Purchase Invoice Item' +#. Label of the total_weight (Float) field in DocType 'Sales Invoice Item' +#. Label of the total_weight (Float) field in DocType 'Purchase Order Item' +#. Label of the total_weight (Float) field in DocType 'Supplier Quotation Item' +#. Label of the total_weight (Float) field in DocType 'Quotation Item' +#. Label of the total_weight (Float) field in DocType 'Sales Order Item' +#. Label of the total_weight (Float) field in DocType 'Delivery Note Item' +#. Label of the total_weight (Float) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Total Weight" +msgstr "" + +#. Label of the total_weight (Float) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Total Weight (kg)" +msgstr "" + +#. Label of the total_working_hours (Float) field in DocType 'Workstation' +#. Label of the total_hours (Float) field in DocType 'Timesheet' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/projects/doctype/timesheet/timesheet.json +msgid "Total Working Hours" +msgstr "" + +#. Label of the total_workstation_time (Int) field in DocType 'Item Lead Time' +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +msgid "Total Workstation Time (In Hours)" +msgstr "" + +#: erpnext/controllers/selling_controller.py:258 +msgid "Total allocated percentage for sales team should be 100" +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:194 +msgid "Total contribution percentage should be equal to 100" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:366 +msgid "Total distributed amount {0} must be equal to Budget Amount {1}" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:373 +msgid "Total distribution percent must equal 100 (currently {0})" +msgstr "" + +#: erpnext/projects/doctype/project/project_dashboard.html:2 +msgid "Total hours: {0}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 +msgid "Total payments amount can't be greater than {}" +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 +msgid "Total percentage against cost centers should be 100" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:703 +msgid "Total quantity in delivery schedule cannot be greater than the item quantity" +msgstr "" + +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:757 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:758 +#: erpnext/accounts/report/financial_statements.py:351 +#: erpnext/accounts/report/financial_statements.py:352 +msgid "Total {0} ({1})" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 +msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +msgstr "" + +#: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 +msgid "Total(Amt)" +msgstr "" + +#: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 +msgid "Total(Qty)" +msgstr "" + +#. Label of the base_totals_section (Section Break) field in DocType 'Purchase +#. Invoice' +#. Label of the base_totals_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the base_totals_section (Section Break) field in DocType 'Purchase +#. Order' +#. Label of the base_totals_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the base_totals_section (Section Break) field in DocType 'Sales +#. Order' +#. Label of the base_totals_section (Section Break) field in DocType 'Delivery +#. Note' +#. Label of the base_totals_section (Section Break) field in DocType 'Purchase +#. Receipt' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Totals (Company Currency)" +msgstr "" + +#: erpnext/stock/doctype/item/item_dashboard.py:33 +msgid "Traceability" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:53 +msgid "Tracebility Direction" +msgstr "" + +#. Label of the track_semi_finished_goods (Check) field in DocType 'BOM' +#. Label of the track_semi_finished_goods (Check) field in DocType 'Job Card' +#. Label of the track_semi_finished_goods (Check) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Track Semi Finished Goods" +msgstr "" + +#. Label of the track_service_level_agreement (Check) field in DocType 'Support +#. Settings' +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:147 +#: erpnext/support/doctype/support_settings/support_settings.json +msgid "Track Service Level Agreement" +msgstr "" + +#. Description of the 'Has Serial No' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Track each unit with a unique serial number for warranty and return tracking. Cannot be changed after a stock transaction exists." +msgstr "" + +#. Description of a DocType +#: erpnext/accounts/doctype/cost_center/cost_center.json +msgid "Track separate Income and Expense for product verticals or divisions." +msgstr "" + +#. Description of the 'Has Batch No' (Check) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Track this item in batches. Cannot be changed after a stock transaction exists." +msgstr "" + +#. Label of the tracking_status (Select) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Tracking Status" +msgstr "" + +#. Label of the tracking_status_info (Data) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Tracking Status Info" +msgstr "" + +#. Label of the tracking_url (Small Text) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Tracking URL" +msgstr "" + +#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' +#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' +#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' +#. Label of the transaction (Select) field in DocType 'Authorization Rule' +#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 +#: erpnext/public/js/utils/naming_series.js:219 +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/setup/doctype/authorization_rule/authorization_rule.json +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Transaction" +msgstr "" + +#. Label of the transaction_currency (Link) field in DocType 'GL Entry' +#. Label of the currency (Link) field in DocType 'Payment Request' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +msgid "Transaction Currency" +msgstr "" + +#. Label of the transaction_date (Date) field in DocType 'GL Entry' +#. Label of the transaction_date (Date) field in DocType 'Payment Request' +#. Label of the transaction_date (Date) field in DocType 'Period Closing +#. Voucher' +#. Label of the transaction_date (Datetime) field in DocType 'Asset Movement' +#. Label of the transaction_date (Date) field in DocType 'Maintenance Schedule' +#. Label of the transaction_date (Date) field in DocType 'Material Request' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:136 +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:88 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:67 +#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.js:9 +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Transaction Date" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:165 +#: banking/src/pages/BankStatementImporter.tsx:253 +msgid "Transaction Dates" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:1078 +msgid "Transaction Deletion Document {0} has been triggered for company {1}" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json +msgid "Transaction Deletion Record" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/transaction_deletion_record_details/transaction_deletion_record_details.json +msgid "Transaction Deletion Record Details" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/transaction_deletion_record_item/transaction_deletion_record_item.json +msgid "Transaction Deletion Record Item" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json +msgid "Transaction Deletion Record To Delete" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +msgid "Transaction Deletion Record {0} is already running. {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." +msgstr "" + +#. Label of the transaction_details_section (Section Break) field in DocType +#. 'GL Entry' +#. Label of the transaction_details (Section Break) field in DocType 'Payment +#. Request' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_request/payment_request.json +msgid "Transaction Details" +msgstr "" + +#. Label of the transaction_exchange_rate (Float) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +msgid "Transaction Exchange Rate" +msgstr "" + +#. Label of the transaction_id (Data) field in DocType 'Bank Transaction' +#. Label of the transaction_references (Section Break) field in DocType +#. 'Payment Entry' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Transaction ID" +msgstr "" + +#. Label of the section_break_xt4m (Section Break) field in DocType 'Stock +#. Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Transaction Information" +msgstr "" + +#: banking/src/components/features/Settings/MatchingRules.tsx:34 +msgid "Transaction Matching Rules" +msgstr "" + +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:45 +msgid "Transaction Name" +msgstr "" + +#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:60 +msgid "Transaction Qty" +msgstr "" + +#. Label of the transaction_settings_section (Tab Break) field in DocType +#. 'Buying Settings' +#. Label of the sales_transactions_settings_section (Section Break) field in +#. DocType 'Selling Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Transaction Settings" +msgstr "" + +#. Label of the single_threshold (Float) field in DocType 'Tax Withholding +#. Rate' +#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json +msgid "Transaction Threshold" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the transaction_type (Data) field in DocType 'Bank Transaction' +#. Label of the transaction_type (Select) field in DocType 'Bank Transaction +#. Rule' +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:106 +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:38 +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:259 +msgid "Transaction Type" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx:35 +msgid "Transaction Unreconciled" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:78 +msgid "Transaction actions work when one or more unreconciled transactions are selected." +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:198 +msgid "Transaction currency must be same as Payment Gateway currency" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:75 +msgid "Transaction currency: {0} cannot be different from Bank Account({1}) currency: {2}" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:65 +msgid "Transaction date can't be earlier than previous movement date" +msgstr "" + +#. Description of the 'Applicable For' (Section Break) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Transaction for which tax is withheld" +msgstr "" + +#. Description of the 'Deducted From' (Section Break) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Transaction from which tax is withheld" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:911 +#: erpnext/stock/doctype/stock_entry/services/stock_entry_base.py:38 +msgid "Transaction not allowed against stopped Work Order {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1248 +msgid "Transaction reference no {0} dated {1}" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Transaction type column has \"C\"/\"D\" values" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Transaction type column has \"CR\"/\"DR\" values" +msgstr "" + +#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank +#. Statement Import Log' +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json +msgid "Transaction type column has \"Deposit\"/\"Withdrawal\" values" +msgstr "" + +#. Group in Bank Account's connections +#: erpnext/accounts/doctype/bank_account/bank_account.json +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 +#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template_dashboard.py:12 +#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template_dashboard.py:13 +#: erpnext/manufacturing/doctype/job_card/job_card_dashboard.py:9 +#: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:11 +#: erpnext/manufacturing/doctype/work_order/work_order_dashboard.py:12 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order_dashboard.py:9 +msgid "Transactions" +msgstr "" + +#. Label of the transactions_annual_history (Code) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Transactions Annual History" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:117 +msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions." +msgstr "" + +#. Description of the 'Credit Limit' (Table) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Transactions are blocked or warned when outstanding balance exceeds this amount." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:239 +msgid "Transactions to be imported into the system" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:214 +msgid "Transactions using Sales Invoice in POS are disabled." +msgstr "" + +#. Option for the 'Classify As' (Select) field in DocType 'Bank Transaction +#. Rule' +#. Option for the 'Transfer Type' (Select) field in DocType 'Share Transfer' +#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement' +#. Option for the 'Material Request Type' (Select) field in DocType 'Item +#. Reorder' +#. Option for the 'Asset Status' (Select) field in DocType 'Serial No' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:84 +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:301 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:515 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:589 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:271 +#: banking/src/components/features/BankReconciliation/TransferModal.tsx:17 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:124 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:361 +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:30 +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/assets/doctype/asset_movement/asset_movement.json +#: erpnext/stock/doctype/item_reorder/item_reorder.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:645 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:650 +msgid "Transfer" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:402 +msgid "Transfer Account" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.js:155 +msgid "Transfer Asset" +msgstr "" + +#. Label of the transfer_extra_materials_percentage (Percent) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Transfer Extra Raw Materials to WIP (%)" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:458 +msgid "Transfer From Warehouses" +msgstr "" + +#. Label of the transfer_material_against (Select) field in DocType 'BOM' +#. Label of the transfer_material_against (Select) field in DocType 'Work +#. Order' +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Transfer Material Against" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:92 +msgid "Transfer Materials" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:453 +msgid "Transfer Materials For Warehouse {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:90 +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:207 +msgid "Transfer Recorded" +msgstr "" + +#. Label of the transfer_status (Select) field in DocType 'Material Request' +#: erpnext/stock/doctype/material_request/material_request.json +msgid "Transfer Status" +msgstr "" + +#. Label of the transfer_type (Select) field in DocType 'Share Transfer' +#: erpnext/accounts/doctype/share_transfer/share_transfer.json +#: erpnext/accounts/report/share_ledger/share_ledger.py:53 +msgid "Transfer Type" +msgstr "" + +#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement' +#: erpnext/assets/doctype/asset_movement/asset_movement.json +msgid "Transfer and Issue" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Material Request' +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request_list.js:42 +msgid "Transferred" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:506 +msgid "Transferred Out" +msgstr "" + +#. Label of the transferred_qty (Float) field in DocType 'Job Card Item' +#. Label of the transferred_qty (Float) field in DocType 'Work Order Item' +#. Label of the transferred_qty (Float) field in DocType 'Stock Entry Detail' +#. Label of the transferred_qty (Float) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:497 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:141 +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +msgid "Transferred Qty" +msgstr "" + +#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:38 +msgid "Transferred Quantity" +msgstr "" + +#. Label of the transferred_qty (Float) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/job_card/job_card.json +msgid "Transferred Raw Materials" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:306 +msgid "Transferred from" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:306 +msgid "Transferred to" +msgstr "" + +#. Label of the transit_section (Section Break) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Transit" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.js:606 +msgid "Transit Entry" +msgstr "" + +#. Label of the lr_date (Date) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Transport Receipt Date" +msgstr "" + +#. Label of the lr_no (Data) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Transport Receipt No" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:50 +msgid "Transportation" +msgstr "" + +#. Label of the transporter (Link) field in DocType 'Driver' +#. Label of the transporter (Link) field in DocType 'Delivery Note' +#. Label of the transporter_info (Section Break) field in DocType 'Purchase +#. Receipt' +#: erpnext/setup/doctype/driver/driver.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +msgid "Transporter" +msgstr "" + +#. Label of the transporter_info (Section Break) field in DocType +#. 'Subcontracting Receipt' +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Transporter Details" +msgstr "" + +#. Label of the transporter_info (Section Break) field in DocType 'Delivery +#. Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Transporter Info" +msgstr "" + +#. Label of the transporter_name (Data) field in DocType 'Delivery Note' +#. Label of the transporter_name (Data) field in DocType 'Purchase Receipt' +#. Label of the transporter_name (Data) field in DocType 'Subcontracting +#. Receipt' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Transporter Name" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219 +msgid "Travel Expenses" +msgstr "" + +#. Label of the tree_details (Section Break) field in DocType 'Location' +#. Label of the tree_details (Section Break) field in DocType 'Warehouse' +#: erpnext/assets/doctype/location/location.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Tree Details" +msgstr "" + +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:8 +#: erpnext/selling/report/sales_analytics/sales_analytics.js:8 +msgid "Tree Type" +msgstr "" + +#. Label of a Link in the Quality Workspace +#: erpnext/quality_management/workspace/quality/quality.json +msgid "Tree of Procedures" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/trial_balance/trial_balance.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Trial Balance" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/trial_balance_simple/trial_balance_simple.json +msgid "Trial Balance (Simple)" +msgstr "" + +#. Name of a report +#. Label of a Link in the Financial Reports Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.json +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "Trial Balance for Party" +msgstr "" + +#. Label of the trial_period_end (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Trial Period End Date" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:412 +msgid "Trial Period End Date Cannot be before Trial Period Start Date" +msgstr "" + +#. Label of the trial_period_start (Date) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +msgid "Trial Period Start Date" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:418 +msgid "Trial Period Start date cannot be after Subscription Start Date" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Subscription' +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/subscription/subscription_list.js:4 +msgid "Trialing" +msgstr "" + +#. Description of the 'General Ledger remarks length' (Int) field in DocType +#. 'Accounts Settings' +#. Description of the 'Accounts Receivable / Payable remarks length' (Int) +#. field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Truncates 'Remarks' column to set character length" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:277 +msgid "Try adjusting your search or filter criteria." +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:90 +msgid "Try the {0} for a better experience." +msgstr "" + +#: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 +#: erpnext/accounts/report/financial_ratios/financial_ratios.py:200 +msgid "Turnover Ratios" +msgstr "" + +#. Option for the 'Frequency To Collect Progress' (Select) field in DocType +#. 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Twice Daily" +msgstr "" + +#. Label of the two_way (Check) field in DocType 'Item Alternative' +#: erpnext/stock/doctype/item_alternative/item_alternative.json +msgid "Two-way" +msgstr "" + +#. Label of the type_of_call (Link) field in DocType 'Call Log' +#: erpnext/telephony/doctype/call_log/call_log.json +msgid "Type Of Call" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:75 +msgid "Type of Material" +msgstr "" + +#. Label of the type_of_payment (Section Break) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Type of Payment" +msgstr "" + +#. Label of the type_of_transaction (Select) field in DocType 'Inventory +#. Dimension' +#. Label of the type_of_transaction (Select) field in DocType 'Serial and Batch +#. Bundle' +#. Label of the type_of_transaction (Data) field in DocType 'Serial and Batch +#. Entry' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +msgid "Type of Transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:194 +msgid "Type of check" +msgstr "" + +#. Description of the 'Select DocType' (Link) field in DocType 'Rename Tool' +#: erpnext/utilities/doctype/rename_tool/rename_tool.json +msgid "Type of document to rename." +msgstr "" + +#. Description of the 'Report Type' (Select) field in DocType 'Financial Report +#. Template' +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json +msgid "Type of financial statement this template generates" +msgstr "" + +#: erpnext/config/projects.py:61 +msgid "Types of activities for Time Logs" +msgstr "" + +#. Label of a Link in the Financial Reports Workspace +#. Name of a report +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/workspace/financial_reports/financial_reports.json +#: erpnext/regional/report/uae_vat_201/uae_vat_201.json +#: erpnext/workspace_sidebar/financial_reports.json +msgid "UAE VAT 201" +msgstr "" + +#. Name of a DocType +#: erpnext/regional/doctype/uae_vat_account/uae_vat_account.json +msgid "UAE VAT Account" +msgstr "" + +#. Label of the uae_vat_accounts (Table) field in DocType 'UAE VAT Settings' +#: erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.json +msgid "UAE VAT Accounts" +msgstr "" + +#. Name of a DocType +#: erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.json +msgid "UAE VAT Settings" +msgstr "" + +#. Label of the uom (Link) field in DocType 'POS Invoice Item' +#. Label of the free_item_uom (Link) field in DocType 'Pricing Rule' +#. Label of the uom (Link) field in DocType 'Pricing Rule Brand' +#. Label of the uom (Link) field in DocType 'Pricing Rule Item Code' +#. Label of the uom (Link) field in DocType 'Pricing Rule Item Group' +#. Label of the free_item_uom (Link) field in DocType 'Promotional Scheme +#. Product Discount' +#. Label of the uom (Link) field in DocType 'Purchase Invoice Item' +#. Label of the uom (Link) field in DocType 'Sales Invoice Item' +#. Label of the uom (Link) field in DocType 'Asset Capitalization Service Item' +#. Label of the uom (Link) field in DocType 'Purchase Order Item' +#. Label of the uom (Link) field in DocType 'Request for Quotation Item' +#. Label of the uom (Link) field in DocType 'Supplier Quotation Item' +#. Label of the uom (Link) field in DocType 'Opportunity Item' +#. Label of the uom (Link) field in DocType 'BOM Creator' +#. Label of the uom (Link) field in DocType 'BOM Creator Item' +#. Label of the uom (Link) field in DocType 'BOM Item' +#. Label of the uom (Link) field in DocType 'BOM Secondary Item' +#. Label of the uom (Link) field in DocType 'Job Card Item' +#. Label of the uom (Link) field in DocType 'Master Production Schedule Item' +#. Label of the uom (Link) field in DocType 'Material Request Plan Item' +#. Label of the stock_uom (Link) field in DocType 'Production Plan Item' +#. Label of the uom (Link) field in DocType 'Production Plan Sub Assembly Item' +#. Label of the uom (Link) field in DocType 'Sales Forecast Item' +#. Label of the uom (Link) field in DocType 'Work Order Additional Item' +#. Label of the uom (Link) field in DocType 'Quality Goal Objective' +#. Label of the uom (Link) field in DocType 'Quality Review Objective' +#. Label of the uom (Link) field in DocType 'Delivery Schedule Item' +#. Label of the uom (Link) field in DocType 'Product Bundle Item' +#. Label of the uom (Link) field in DocType 'Quotation Item' +#. Label of the uom (Link) field in DocType 'Sales Order Item' +#. Name of a DocType +#. Label of the stock_uom (Link) field in DocType 'Bin' +#. Label of the uom (Link) field in DocType 'Delivery Note Item' +#. Label of the uom (Link) field in DocType 'Delivery Stop' +#. Label of the uom_tab (Tab Break) field in DocType 'Item' +#. Label of the uom (Link) field in DocType 'Item Barcode' +#. Label of the uom (Link) field in DocType 'Item Price' +#. Label of the uom (Link) field in DocType 'Material Request Item' +#. Label of the uom (Link) field in DocType 'Packed Item' +#. Label of the stock_uom (Link) field in DocType 'Packing Slip Item' +#. Label of the uom (Link) field in DocType 'Pick List Item' +#. Label of the uom (Link) field in DocType 'Purchase Receipt Item' +#. Label of the uom (Link) field in DocType 'Putaway Rule' +#. Label of the uom (Link) field in DocType 'Stock Entry Detail' +#. Label of the uom (Link) field in DocType 'UOM Conversion Detail' +#. Label of the uom (Link) field in DocType 'Subcontracting Inward Order +#. Service Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.json +#: erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.json +#: erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.json +#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 +#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json +#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:60 +#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:209 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:210 +#: erpnext/crm/doctype/opportunity_item/opportunity_item.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json +#: erpnext/manufacturing/doctype/bom_item/bom_item.json +#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json +#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json +#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json +#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +#: erpnext/manufacturing/doctype/workstation/workstation.js:480 +#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json +#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json +#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json +#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1734 +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/selling/page/point_of_sale/pos_item_selector.js:117 +#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:44 +#: erpnext/selling/report/sales_analytics/sales_analytics.py:138 +#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/bin/bin.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item/item_list.js:42 +#: erpnext/stock/doctype/item/item_prices.html:85 +#: erpnext/stock/doctype/item_barcode/item_barcode.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/putaway_rule/putaway_rule.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json +#: erpnext/stock/report/available_serial_no/available_serial_no.py:101 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 +#: erpnext/stock/report/item_prices/item_prices.py:55 +#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 +#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 +#: erpnext/stock/report/stock_ageing/stock_ageing.py:225 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:59 +#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136 +#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json +#: erpnext/templates/emails/reorder_item.html:11 +#: erpnext/templates/includes/rfq/rfq_items.html:17 +msgid "UOM" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/uom_category/uom_category.json +msgid "UOM Category" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json +msgid "UOM Conversion Detail" +msgstr "" + +#. Label of the uom_conversion_details_column (Column Break) field in DocType +#. 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "UOM Conversion Details" +msgstr "" + +#. Label of the conversion_factor (Float) field in DocType 'POS Invoice Item' +#. Label of the conversion_factor (Float) field in DocType 'Purchase Invoice +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Sales Invoice Item' +#. Label of the conversion_factor (Float) field in DocType 'Purchase Order +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Request for +#. Quotation Item' +#. Label of the conversion_factor (Float) field in DocType 'Supplier Quotation +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Quotation Item' +#. Label of the conversion_factor (Float) field in DocType 'Sales Order Item' +#. Name of a DocType +#. Label of the conversion_factor (Float) field in DocType 'Delivery Note Item' +#. Label of the conversion_factor (Float) field in DocType 'Material Request +#. Item' +#. Label of the conversion_factor (Float) field in DocType 'Pick List Item' +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "UOM Conversion Factor" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" +msgstr "" + +#: erpnext/buying/utils.py:43 +msgid "UOM Conversion factor is required in row {0}" +msgstr "" + +#. Label of the conversion_factor_section (Section Break) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "UOM Defaults" +msgstr "" + +#. Label of the uom_name (Data) field in DocType 'UOM' +#: erpnext/setup/doctype/uom/uom.json +msgid "UOM Name" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1674 +msgid "UOM conversion factor required for UOM: {0} in Item: {1}" +msgstr "" + +#: erpnext/stock/doctype/item_price/item_price.py:61 +msgid "UOM {0} not found in Item {1}" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "UPC" +msgstr "" + +#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode' +#: erpnext/stock/doctype/item_barcode/item_barcode.json +msgid "UPC-A" +msgstr "" + +#: erpnext/utilities/doctype/video/video.py:114 +msgid "URL can only be a string" +msgstr "" + +#. Label of the utm_analytics_section (Section Break) field in DocType 'POS +#. Invoice' +#. Label of the utm_analytics_section (Section Break) field in DocType 'Sales +#. Invoice' +#. Label of the utm_analytics_section (Section Break) field in DocType +#. 'Quotation' +#. Label of the utm_analytics_section (Section Break) field in DocType 'Sales +#. Order' +#. Label of the utm_analytics_section (Section Break) field in DocType +#. 'Delivery Note' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "UTM Analytics" +msgstr "" + +#. Option for the 'Data fetch method' (Select) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "UnBuffered Cursor" +msgstr "" + +#: erpnext/public/js/utils/unreconcile.js:25 +#: erpnext/public/js/utils/unreconcile.js:133 +msgid "UnReconcile" +msgstr "" + +#: erpnext/public/js/utils/unreconcile.js:130 +msgid "UnReconcile Allocations" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +msgid "Unable to fetch DocType details. Please contact system administrator." +msgstr "" + +#: erpnext/setup/utils.py:154 +msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually" +msgstr "" + +#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.py:165 +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:313 +msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 +msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/operations.py:125 +msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85 +msgid "Unable to find variable: {0}" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102 +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:376 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:855 +#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:58 +msgid "Unallocated" +msgstr "" + +#. Label of the unallocated_amount (Currency) field in DocType 'Bank +#. Transaction' +#. Label of the unallocated_amount (Currency) field in DocType 'Payment Entry' +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:74 +msgid "Unallocated Amount" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +msgid "Unassigned Qty" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:661 +msgid "Unbilled Orders" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:101 +msgid "Unblock Invoice" +msgstr "" + +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 +#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 +msgid "Unclosed Fiscal Years Profit / Loss (Credit)" +msgstr "" + +#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No' +#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty +#. Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Under AMC" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Under Graduate" +msgstr "" + +#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No' +#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty +#. Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Under Warranty" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Tax Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Under Withheld" +msgstr "" + +#. Label of the under_withheld_reason (Select) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Under Withheld Reason" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:78 +msgid "Under Working Hours table, you can add start and end times for a Workstation. For example, a Workstation may be active from 9 am to 1 pm, then 2 pm to 5 pm. You can also specify the working hours based on shifts. While scheduling a Work Order, the system will check for the availability of the Workstation based on the working hours specified." +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:39 +msgid "Undo Transaction Reconciliation" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:378 +msgid "Undo {}?" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +msgid "Unexpected Naming Series Pattern" +msgstr "" + +#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Unfulfilled" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Unit" +msgstr "" + +#. Label of the uom (Link) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Unit Of Measure" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:515 +msgid "Unit Price" +msgstr "" + +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +msgid "Unit of Measure" +msgstr "" + +#. Label of a Link in the Home Workspace +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/setup/workspace/home/home.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Unit of Measure (UOM)" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:452 +msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:110 +msgid "Unknown Caller" +msgstr "" + +#. Label of the unlink_advance_payment_on_cancelation_of_order (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Unlink Advance Payment on cancellation of order" +msgstr "" + +#. Label of the unlink_payment_on_cancellation_of_invoice (Check) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Unlink Payment on cancellation of invoice" +msgstr "" + +#: erpnext/accounts/doctype/bank_account/bank_account.js:33 +msgid "Unlink external integrations" +msgstr "" + +#. Label of the unlinked (Check) field in DocType 'Unreconcile Payment Entries' +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +msgid "Unlinked" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:378 +msgid "Unmatch Transaction?" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:322 +msgid "Unmatched" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#. Option for the 'Status' (Select) field in DocType 'Subscription' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/accounts/doctype/sales_invoice/services/status.py:77 +#: erpnext/accounts/doctype/subscription/subscription.json +#: erpnext/accounts/doctype/subscription/subscription_list.js:12 +msgid "Unpaid" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'POS Invoice' +#. Option for the 'Status' (Select) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Unpaid and Discounted" +msgstr "" + +#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Unplanned machine maintenance" +msgstr "" + +#. Option for the 'Qualification Status' (Select) field in DocType 'Lead' +#: erpnext/crm/doctype/lead/lead.json +msgid "Unqualified" +msgstr "" + +#. Label of the unrealized_exchange_gain_loss_account (Link) field in DocType +#. 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Unrealized Exchange Gain/Loss Account" +msgstr "" + +#. Label of the unrealized_profit_loss_account (Link) field in DocType +#. 'Purchase Invoice' +#. Label of the unrealized_profit_loss_account (Link) field in DocType 'Sales +#. Invoice' +#. Label of the unrealized_profit_loss_account (Link) field in DocType +#. 'Company' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/setup/doctype/company/company.json +msgid "Unrealized Profit / Loss Account" +msgstr "" + +#. Description of the 'Unrealized Profit / Loss Account' (Link) field in +#. DocType 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Unrealized Profit / Loss account for intra-company transfers" +msgstr "" + +#. Description of the 'Unrealized Profit / Loss Account' (Link) field in +#. DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Unrealized Profit/Loss account for intra-company transfers" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx:102 +msgid "Unreconcile" +msgstr "" + +#. Name of a DocType +#. Label of a Workspace Sidebar Item +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +#: erpnext/workspace_sidebar/banking.json +#: erpnext/workspace_sidebar/invoicing.json +#: erpnext/workspace_sidebar/payments.json +msgid "Unreconcile Payment" +msgstr "" + +#. Name of a DocType +#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json +msgid "Unreconcile Payment Entries" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.js:40 +msgid "Unreconcile Transaction" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Bank Transaction' +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:414 +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction_list.js:12 +msgid "Unreconciled" +msgstr "" + +#. Label of the unreconciled_amount (Currency) field in DocType 'Payment +#. Reconciliation Allocation' +#. Label of the unreconciled_amount (Currency) field in DocType 'Process +#. Payment Reconciliation Log Allocations' +#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json +#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json +msgid "Unreconciled Amount" +msgstr "" + +#. Label of the sec_break1 (Section Break) field in DocType 'Payment +#. Reconciliation' +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json +msgid "Unreconciled Entries" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:57 +msgid "Unreconciled Transactions" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:946 +#: erpnext/selling/doctype/sales_order/sales_order.js:122 +#: erpnext/stock/doctype/pick_list/pick_list.js:166 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192 +msgid "Unreserve" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:245 +#: erpnext/selling/doctype/sales_order/sales_order.js:540 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:377 +msgid "Unreserve Stock" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:295 +msgid "Unreserve for Raw Materials" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:269 +msgid "Unreserve for Sub-assembly" +msgstr "" + +#: erpnext/public/js/stock_reservation.js:281 +#: erpnext/selling/doctype/sales_order/sales_order.js:552 +#: erpnext/stock/doctype/pick_list/pick_list.js:321 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:389 +msgid "Unreserving Stock..." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Dunning' +#: erpnext/accounts/doctype/dunning/dunning.json +#: erpnext/accounts/doctype/dunning/dunning_list.js:6 +msgid "Unresolved" +msgstr "" + +#. Option for the 'Maintenance Type' (Select) field in DocType 'Maintenance +#. Visit' +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json +msgid "Unscheduled" +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310 +msgid "Unsecured Loans" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +msgid "Unset Matched Payment Request" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contract' +#: erpnext/crm/doctype/contract/contract.json +msgid "Unsigned" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:121 +msgid "Unsubscribe from this Email Digest" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +msgid "Unsupported Feature" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Appointment' +#: erpnext/crm/doctype/appointment/appointment.json +msgid "Unverified" +msgstr "" + +#: erpnext/erpnext_integrations/utils.py:22 +msgid "Unverified Webhook Data" +msgstr "" + +#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:17 +msgid "Up" +msgstr "" + +#. Label of the calendar_events (Check) field in DocType 'Email Digest' +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Upcoming Calendar Events" +msgstr "" + +#: erpnext/setup/doctype/email_digest/templates/default.html:97 +msgid "Upcoming Calendar Events " +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:62 +msgid "Update Account Name / Number" +msgstr "" + +#: erpnext/accounts/doctype/account/account.js:176 +msgid "Update Account Number / Name" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:32 +msgid "Update Additional Information" +msgstr "" + +#. Label of the update_auto_repeat_reference (Button) field in DocType 'POS +#. Invoice' +#. Label of the update_auto_repeat_reference (Button) field in DocType +#. 'Purchase Invoice' +#. Label of the update_auto_repeat_reference (Button) field in DocType 'Sales +#. Invoice' +#. Label of the update_auto_repeat_reference (Button) field in DocType +#. 'Purchase Order' +#. Label of the update_auto_repeat_reference (Button) field in DocType +#. 'Supplier Quotation' +#. Label of the update_auto_repeat_reference (Button) field in DocType +#. 'Quotation' +#. Label of the update_auto_repeat_reference (Button) field in DocType 'Sales +#. Order' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/buying/doctype/purchase_order/purchase_order.json +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/selling/doctype/sales_order/sales_order.json +msgid "Update Auto Repeat Reference" +msgstr "" + +#. Label of the update_bom_costs_automatically (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:23 +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Update BOM Cost Automatically" +msgstr "" + +#. Description of the 'Update BOM Cost Automatically' (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Update BOM cost automatically via scheduler, based on the latest Valuation Rate/Price List Rate/Last Purchase Rate of raw materials" +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:32 +msgid "Update Batch Qty" +msgstr "" + +#. Label of the update_billed_amount_in_delivery_note (Check) field in DocType +#. 'POS Invoice' +#. Label of the update_billed_amount_in_delivery_note (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Update Billed Amount in Delivery Note" +msgstr "" + +#. Label of the update_billed_amount_in_purchase_order (Check) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Update Billed Amount in Purchase Order" +msgstr "" + +#. Label of the update_billed_amount_in_purchase_receipt (Check) field in +#. DocType 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Update Billed Amount in Purchase Receipt" +msgstr "" + +#. Label of the update_billed_amount_in_sales_order (Check) field in DocType +#. 'POS Invoice' +#. Label of the update_billed_amount_in_sales_order (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Update Billed Amount in Sales Order" +msgstr "" + +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:42 +#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:44 +msgid "Update Clearance Date" +msgstr "" + +#. Label of the update_consumed_material_cost_in_project (Check) field in +#. DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Update Consumed Material Cost In Project" +msgstr "" + +#. Option for the 'Update Type' (Select) field in DocType 'BOM Update Log' +#. Label of the update_cost_section (Section Break) field in DocType 'BOM +#. Update Tool' +#: erpnext/manufacturing/doctype/bom/bom.js:226 +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "Update Cost" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.js:19 +#: erpnext/accounts/doctype/cost_center/cost_center.js:52 +msgid "Update Cost Center Name / Number" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:91 +msgid "Update Costing and Billing" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.js:131 +msgid "Update Current Stock" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:300 +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 +#: erpnext/public/js/utils.js:938 +#: erpnext/selling/doctype/quotation/quotation.js:136 +#: erpnext/selling/doctype/sales_order/sales_order.js:90 +#: erpnext/selling/doctype/sales_order/sales_order.js:984 +msgid "Update Items" +msgstr "" + +#. Label of the update_outstanding_for_self (Check) field in DocType 'Purchase +#. Invoice' +#. Label of the update_outstanding_for_self (Check) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/controllers/accounts_controller.py:192 +msgid "Update Outstanding for Self" +msgstr "" + +#. Label of the update_price_list_based_on (Select) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Update Price List based on" +msgstr "" + +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js:11 +msgid "Update Print Format" +msgstr "" + +#. Label of the get_stock_and_rate (Button) field in DocType 'Stock Entry' +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Update Rate and Availability" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.js:541 +msgid "Update Rate as per Last Purchase" +msgstr "" + +#. Label of the update_stock (Check) field in DocType 'POS Invoice' +#. Label of the update_stock (Check) field in DocType 'POS Profile' +#. Label of the update_stock (Check) field in DocType 'Purchase Invoice' +#. Label of the update_stock (Check) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Update Stock" +msgstr "" + +#. Label of the update_type (Select) field in DocType 'BOM Update Log' +#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json +msgid "Update Type" +msgstr "" + +#. Label of the update_existing_price_list_rate (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Update existing Price List Rate" +msgstr "" + +#. Label of the update_latest_price_in_all_boms (Button) field in DocType 'BOM +#. Update Tool' +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json +msgid "Update latest price in all BOMs" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:474 +msgid "Update stock must be enabled for the purchase invoice {0}" +msgstr "" + +#. Description of the 'Update timestamp on new communication' (Check) field in +#. DocType 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Update the modified timestamp on new communications received in Lead & Opportunity." +msgstr "" + +#. Label of the update_timestamp_on_new_communication (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Update timestamp on new communication" +msgstr "" + +#. Description of the 'Actual Start Time' (Datetime) field in DocType 'Work +#. Order Operation' +#. Description of the 'Actual End Time' (Datetime) field in DocType 'Work Order +#. Operation' +#. Description of the 'Actual Operation Time' (Float) field in DocType 'Work +#. Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Updated via 'Time Log' (In Minutes)" +msgstr "" + +#: erpnext/accounts/doctype/account_category/account_category.py:55 +msgid "Updated {0} Financial Report Row(s) with new category name" +msgstr "" + +#: erpnext/projects/doctype/project/project.js:137 +msgid "Updating Costing and Billing fields against this Project..." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1495 +msgid "Updating Variants..." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:1203 +msgid "Updating Work Order status" +msgstr "" + +#: erpnext/public/js/print.js:156 +msgid "Updating details." +msgstr "" + +#: banking/src/components/features/Settings/Rules/RuleList.tsx:114 +msgid "Updating..." +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:48 +msgid "Upload Bank Statement" +msgstr "" + +#. Label of the upload_xml_invoices_section (Section Break) field in DocType +#. 'Import Supplier Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Upload XML Invoices" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:104 +msgid "Upload your bank statement file to start the import process. We support CSV, XLSX and PDF files." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:148 +msgid "Uploading..." +msgstr "" + +#. Description of the 'Submit ERR Journals?' (Check) field in DocType 'Company' +#: erpnext/setup/doctype/company/company.json +msgid "Upon enabling this, the JV will be submitted for a different exchange rate." +msgstr "" + +#. Description of the 'Auto reserve stock' (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Upon submission of the Sales Order, Work Order, or Production Plan, the system will automatically reserve the stock." +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:311 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:428 +msgid "Upper Income" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'Task' +#. Option in a Select field in the tasks Web Form +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/web_form/tasks/tasks.json +msgid "Urgent" +msgstr "" + +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.js:36 +msgid "Use 'Repost in background' button to trigger background job. Job can only be triggered when document is in Queued or Failed status." +msgstr "" + +#. Description of the 'Advanced Filtering' (Check) field in DocType 'Financial +#. Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Use Python filters to get Accounts" +msgstr "" + +#. Label of the use_batchwise_valuation (Check) field in DocType 'Batch' +#: erpnext/stock/doctype/batch/batch.json +msgid "Use Batch-wise Valuation" +msgstr "" + +#. Label of the use_csv_sniffer (Check) field in DocType 'Bank Statement +#. Import' +#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json +msgid "Use CSV Sniffer" +msgstr "" + +#. Label of the use_company_roundoff_cost_center (Check) field in DocType +#. 'Purchase Invoice' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +msgid "Use Company Default Round Off Cost Center" +msgstr "" + +#. Label of the use_company_roundoff_cost_center (Check) field in DocType +#. 'Sales Invoice' +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Use Company default Cost Center for Round off" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:146 +msgid "Use Default Warehouse" +msgstr "" + +#. Description of the 'Calculate Estimated Arrival Times' (Button) field in +#. DocType 'Delivery Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Use Google Maps Direction API to calculate estimated arrival times" +msgstr "" + +#. Description of the 'Optimize Route' (Button) field in DocType 'Delivery +#. Trip' +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Use Google Maps Direction API to optimize route" +msgstr "" + +#. Label of the use_http (Check) field in DocType 'Currency Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "Use HTTP Protocol" +msgstr "" + +#. Label of the item_based_reposting (Check) field in DocType 'Stock Reposting +#. Settings' +#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json +msgid "Use Item based reposting" +msgstr "" + +#. Label of the use_legacy_js_reactivity (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Use Legacy (Client side) Reactivity" +msgstr "" + +#. Label of the use_multi_level_bom (Check) field in DocType 'Work Order' +#. Label of the use_multi_level_bom (Check) field in DocType 'Stock Entry' +#: erpnext/manufacturing/doctype/bom/bom.js:437 +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +msgid "Use Multi-Level BOM" +msgstr "" + +#. Label of the use_posting_datetime_for_naming_documents (Check) field in +#. DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "Use Posting Datetime for Naming Documents" +msgstr "" + +#. Label of the use_serial_batch_fields (Check) field in DocType 'Stock +#. Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Use Serial / Batch fields" +msgstr "" + +#. Label of the use_serial_batch_fields (Check) field in DocType 'POS Invoice +#. Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Purchase +#. Invoice Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Sales Invoice +#. Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Asset +#. Capitalization Stock Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Delivery Note +#. Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Packed Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Pick List +#. Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Purchase +#. Receipt Item' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Stock Entry +#. Detail' +#. Label of the use_serial_batch_fields (Check) field in DocType 'Stock +#. Reconciliation Item' +#. Label of the use_serial_batch_fields (Check) field in DocType +#. 'Subcontracting Receipt Item' +#. Label of the use_serial_batch_fields (Check) field in DocType +#. 'Subcontracting Receipt Supplied Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/packed_item/packed_item.json +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json +msgid "Use Serial No / Batch Fields" +msgstr "" + +#: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:518 +msgid "Use Suggestion" +msgstr "" + +#. Label of the use_transaction_date_exchange_rate (Check) field in DocType +#. 'Purchase Invoice' +#. Label of the use_transaction_date_exchange_rate (Check) field in DocType +#. 'Buying Settings' +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Use Transaction Date Exchange Rate" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:638 +msgid "Use a name that is different from previous project name" +msgstr "" + +#. Label of the use_for_shopping_cart (Check) field in DocType 'Tax Rule' +#: erpnext/accounts/doctype/tax_rule/tax_rule.json +msgid "Use for Shopping Cart" +msgstr "" + +#. Label of the use_legacy_budget_controller (Check) field in DocType 'Accounts +#. Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Use legacy Budget Controller" +msgstr "" + +#. Label of the use_legacy_controller_for_pcv (Check) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Use legacy controller for Period Closing Voucher" +msgstr "" + +#. Label of the fallback_to_default_price_list (Check) field in DocType +#. 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Use prices from Default Price List as fallback" +msgstr "" + +#. Label of the used (Int) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Used" +msgstr "" + +#. Description of the 'Sales Order Date' (Date) field in DocType 'Sales Order +#. Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "Used for Production Plan" +msgstr "" + +#. Description of the 'Is Internal Supplier' (Check) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Used for inter-company transactions" +msgstr "" + +#. Description of the 'Purchase Expense Contra Account' (Link) field in DocType +#. 'Item Default' +#: erpnext/stock/doctype/item_default/item_default.json +msgid "Used to balance the books when recording extra purchase costs" +msgstr "" + +#. Description of the 'Tax Withholding Group' (Link) field in DocType +#. 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Used to pick the correct rate row inside the Tax Withholding Category for this supplier (e.g. Company vs Individual rates)" +msgstr "" + +#. Description of the 'Account Category' (Link) field in DocType 'Account' +#: erpnext/accounts/doctype/account/account.json +msgid "Used with Financial Report Template" +msgstr "" + +#: erpnext/setup/install.py:226 +msgid "User Forum" +msgstr "" + +#: erpnext/setup/doctype/sales_person/sales_person.py:113 +msgid "User ID not set for Employee {0}" +msgstr "" + +#. Label of the user_remark (Small Text) field in DocType 'Bank Transaction +#. Rule Accounts' +#. Label of the user_remark (Small Text) field in DocType 'Journal Entry' +#. Label of the user_remark (Small Text) field in DocType 'Journal Entry +#. Account' +#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json +msgid "User Remark" +msgstr "" + +#. Label of the user_resolution_time (Duration) field in DocType 'Issue' +#: erpnext/support/doctype/issue/issue.json +msgid "User Resolution Time" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:593 +msgid "User has not applied rule on the invoice {0}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:298 +msgid "User {0} does not exist" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:147 +msgid "User {0} doesn't have any default POS Profile. Check Default at Row {1} for this User." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:327 +msgid "User {0} is already assigned to Employee {1}" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:365 +msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." +msgstr "" + +#: erpnext/setup/doctype/employee/employee.py:360 +msgid "User {0}: Removed Employee role as there is no mapped employee." +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {} is disabled. Please select valid user/cashier" +msgstr "" + +#. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) +#. field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Users can enable the checkbox If they want to adjust the incoming rate (set using purchase receipt) based on the purchase invoice rate." +msgstr "" + +#. Description of the 'Track Semi Finished Goods' (Check) field in DocType +#. 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Users can make manufacture entry against Job Cards" +msgstr "" + +#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer' +#: erpnext/selling/doctype/customer/customer.json +msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries." +msgstr "" + +#. Description of the 'Role Allowed to over bill ' (Link) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Users with this role are allowed to over bill above the allowance percentage" +msgstr "" + +#. Description of the 'Role Allowed to Over Deliver/Receive' (Link) field in +#. DocType 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Users with this role are allowed to over deliver/receive against orders above the allowance percentage" +msgstr "" + +#. Description of the 'Role to Notify on Depreciation Failure' (Link) field in +#. DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Users with this role will be notified if the asset depreciation gets failed" +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.js:103 +msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative." +msgstr "" + +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220 +msgid "Utility Expenses" +msgstr "" + +#. Label of the vat_accounts (Table) field in DocType 'South Africa VAT +#. Settings' +#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json +msgid "VAT Accounts" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:41 +msgid "VAT Amount (AED)" +msgstr "" + +#. Name of a report +#: erpnext/regional/report/vat_audit_report/vat_audit_report.json +msgid "VAT Audit Report" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:124 +msgid "VAT on Expenses and All Other Inputs" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15 +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:58 +msgid "VAT on Sales and All Other Outputs" +msgstr "" + +#. Label of the valid_from (Date) field in DocType 'Cost Center Allocation' +#. Label of the valid_from (Date) field in DocType 'Coupon Code' +#. Label of the valid_from (Date) field in DocType 'Pricing Rule' +#. Label of the valid_from (Date) field in DocType 'Promotional Scheme' +#. Label of the valid_from (Date) field in DocType 'Lower Deduction +#. Certificate' +#. Label of the valid_from (Date) field in DocType 'Item Price' +#. Label of the valid_from (Date) field in DocType 'Item Tax' +#. Label of the agreement_details_section (Section Break) field in DocType +#. 'Service Level Agreement' +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/stock/doctype/item_price/item_price.json +#: erpnext/stock/doctype/item_tax/item_tax.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Valid From" +msgstr "" + +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:45 +msgid "Valid From date not in Fiscal Year {0}" +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:82 +msgid "Valid From must be after {0} as last GL Entry against the cost center {1} posted on this date" +msgstr "" + +#. Label of the valid_till (Date) field in DocType 'Supplier Quotation' +#. Label of the valid_till (Date) field in DocType 'Quotation' +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:261 +#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:286 +#: erpnext/selling/doctype/quotation/quotation.json +#: erpnext/templates/pages/order.html:59 +msgid "Valid Till" +msgstr "" + +#. Label of the valid_upto (Date) field in DocType 'Coupon Code' +#. Label of the valid_upto (Date) field in DocType 'Pricing Rule' +#. Label of the valid_upto (Date) field in DocType 'Promotional Scheme' +#. Label of the valid_upto (Date) field in DocType 'Lower Deduction +#. Certificate' +#. Label of the valid_upto (Date) field in DocType 'Employee' +#. Label of the valid_upto (Date) field in DocType 'Item Price' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/stock/doctype/item_price/item_price.json +msgid "Valid Up To" +msgstr "" + +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:40 +msgid "Valid Up To date cannot be before Valid From date" +msgstr "" + +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:48 +msgid "Valid Up To date not in Fiscal Year {0}" +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:86 +msgid "Valid Upto" +msgstr "" + +#. Label of the countries (Table) field in DocType 'Shipping Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "Valid for Countries" +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:302 +msgid "Valid from and valid upto fields are mandatory for the cumulative" +msgstr "" + +#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:167 +msgid "Valid till Date cannot be before Transaction Date" +msgstr "" + +#: erpnext/selling/doctype/quotation/quotation.py:162 +msgid "Valid till date cannot be before transaction date" +msgstr "" + +#. Label of the validate_applied_rule (Check) field in DocType 'Pricing Rule' +#. Label of the validate_applied_rule (Check) field in DocType 'Promotional +#. Scheme Price Discount' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json +msgid "Validate Applied Rule" +msgstr "" + +#. Label of the validate_components_quantities_per_bom (Check) field in DocType +#. 'Manufacturing Settings' +#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json +msgid "Validate Components and Quantities Per BOM" +msgstr "" + +#. Label of the validate_material_transfer_warehouses (Check) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Validate Material Transfer warehouses" +msgstr "" + +#. Label of the validate_negative_stock (Check) field in DocType 'Inventory +#. Dimension' +#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json +msgid "Validate Negative Stock" +msgstr "" + +#. Label of the validate_pricing_rule_section (Section Break) field in DocType +#. 'Pricing Rule' +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json +msgid "Validate Pricing Rule" +msgstr "" + +#. Label of the validate_stock_on_save (Check) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Validate Stock on Save" +msgstr "" + +#. Label of the validate_consumed_qty (Check) field in DocType 'Buying +#. Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Validate consumed quantity (as per BOM)" +msgstr "" + +#. Label of the validate_selling_price (Check) field in DocType 'Selling +#. Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Validate selling price for Item against purchase or valuation rate" +msgstr "" + +#. Label of the validity_details_section (Section Break) field in DocType +#. 'Lower Deduction Certificate' +#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json +msgid "Validity Details" +msgstr "" + +#. Label of the uses (Section Break) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "Validity and Usage" +msgstr "" + +#. Label of the validity (Int) field in DocType 'Bank Guarantee' +#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json +msgid "Validity in Days" +msgstr "" + +#: erpnext/selling/doctype/quotation/mapper.py:26 +msgid "Validity period of this quotation has ended." +msgstr "" + +#. Option for the 'Consider Tax or Charge for' (Select) field in DocType +#. 'Purchase Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Valuation" +msgstr "" + +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:63 +msgid "Valuation (I - K)" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.js:61 +#: erpnext/stock/report/stock_balance/stock_balance.js:101 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:114 +msgid "Valuation Field Type" +msgstr "" + +#. Label of the valuation_method (Select) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:63 +msgid "Valuation Method" +msgstr "" + +#. Label of the valuation_rate (Currency) field in DocType 'Purchase Invoice +#. Item' +#. Label of the valuation_rate (Currency) field in DocType 'Asset +#. Capitalization Stock Item' +#. Label of the valuation_rate (Currency) field in DocType 'Asset Repair +#. Consumed Item' +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM' +#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM +#. Creator' +#. Label of the valuation_rate (Currency) field in DocType 'Quotation Item' +#. Label of the valuation_rate (Currency) field in DocType 'Sales Order Item' +#. Label of the valuation_rate (Float) field in DocType 'Bin' +#. Label of the valuation_rate (Currency) field in DocType 'Item' +#. Label of the valuation_rate (Currency) field in DocType 'Purchase Receipt +#. Item' +#. Label of the incoming_rate (Float) field in DocType 'Serial and Batch Entry' +#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing +#. Balance' +#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail' +#. Label of the valuation_rate (Currency) field in DocType 'Stock +#. Reconciliation Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/report/gross_profit/gross_profit.py:354 +#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json +#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/bin/bin.json erpnext/stock/doctype/item/item.js:965 +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +#: erpnext/stock/report/available_serial_no/available_serial_no.py:164 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85 +#: erpnext/stock/report/item_prices/item_prices.py:57 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68 +#: erpnext/stock/report/stock_balance/stock_balance.py:563 +msgid "Valuation Rate" +msgstr "" + +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:197 +msgid "Valuation Rate (In / Out)" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2059 +msgid "Valuation Rate Missing" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1604 +msgid "Valuation Rate cannot be negative." +msgstr "" + +#: erpnext/stock/stock_ledger.py:2037 +msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:314 +msgid "Valuation Rate is mandatory if Opening Stock entered" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +msgid "Valuation Rate required for Item {0} at row {1}" +msgstr "" + +#. Option for the 'Consider Tax or Charge for' (Select) field in DocType +#. 'Purchase Taxes and Charges' +#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json +msgid "Valuation and Total" +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +msgid "Valuation rate for customer provided items has been set to zero." +msgstr "" + +#. Description of the 'Sales Incoming Rate' (Currency) field in DocType +#. 'Purchase Invoice Item' +#. Description of the 'Sales Incoming Rate' (Currency) field in DocType +#. 'Purchase Receipt Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 +#: erpnext/accounts/services/taxes.py:322 +msgid "Valuation type charges can not be marked as Inclusive" +msgstr "" + +#: erpnext/public/js/controllers/accounts.js:231 +msgid "Valuation type charges can not marked as Inclusive" +msgstr "" + +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 +msgid "Value (G - D)" +msgstr "" + +#: erpnext/stock/report/stock_ageing/stock_ageing.py:268 +msgid "Value ({0})" +msgstr "" + +#. Label of the value_after_depreciation (Currency) field in DocType 'Asset' +#. Label of the value_after_depreciation (Currency) field in DocType 'Asset +#. Depreciation Schedule' +#. Label of the value_after_depreciation (Currency) field in DocType 'Asset +#. Finance Book' +#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:179 +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Value After Depreciation" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Quality +#. Inspection Reading' +#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json +msgid "Value Based Inspection" +msgstr "" + +#. Label of the value_details_section (Section Break) field in DocType 'Asset +#. Value Adjustment' +#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json +msgid "Value Details" +msgstr "" + +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:24 +#: erpnext/selling/report/sales_analytics/sales_analytics.js:40 +#: erpnext/stock/report/stock_analytics/stock_analytics.js:23 +msgid "Value Or Qty" +msgstr "" + +#: erpnext/setup/setup_wizard/data/sales_stage.txt:4 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:440 +msgid "Value Proposition" +msgstr "" + +#. Label of the fieldtype (Select) field in DocType 'Financial Report Row' +#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json +msgid "Value Type" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +msgid "Value as on" +msgstr "" + +#: erpnext/controllers/item_variant.py:131 +msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" +msgstr "" + +#. Label of the value_of_goods (Currency) field in DocType 'Shipment' +#: erpnext/stock/doctype/shipment/shipment.json +msgid "Value of Goods" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +msgid "Value of New Capitalized Asset" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +msgid "Value of New Purchase" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +msgid "Value of Scrapped Asset" +msgstr "" + +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +msgid "Value of Sold Asset" +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.py:88 +msgid "Value of goods cannot be 0" +msgstr "" + +#: erpnext/public/js/stock_analytics.js:46 +msgid "Value or Qty" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Vara" +msgstr "" + +#. Label of the variable (Data) field in DocType 'Bank Statement Import Log +#. Column Map' +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +msgid "Variable" +msgstr "" + +#. Label of the variable_label (Link) field in DocType 'Supplier Scorecard +#. Scoring Variable' +#. Label of the variable_label (Data) field in DocType 'Supplier Scorecard +#. Variable' +#: erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.json +#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.json +msgid "Variable Name" +msgstr "" + +#. Label of the variables (Table) field in DocType 'Supplier Scorecard Period' +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json +msgid "Variables" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:235 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:239 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:321 +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:331 +msgid "Variance" +msgstr "" + +#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:118 +msgid "Variance ({})" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:267 +#: erpnext/stock/doctype/item/item_list.js:61 +#: erpnext/stock/report/item_variant_details/item_variant_details.py:74 +msgid "Variant" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:966 +msgid "Variant Attribute Error" +msgstr "" + +#. Label of the attributes (Table) field in DocType 'Item' +#: erpnext/public/js/templates/item_quick_entry.html:1 +#: erpnext/stock/doctype/item/item.json +msgid "Variant Attributes" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:267 +msgid "Variant BOM" +msgstr "" + +#. Label of the variant_based_on (Select) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Variant Based On" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:994 +msgid "Variant Based On cannot be changed" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:243 +msgid "Variant Details Report" +msgstr "" + +#. Name of a DocType +#: erpnext/stock/doctype/variant_field/variant_field.json +msgid "Variant Field" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:390 +#: erpnext/manufacturing/doctype/bom/bom.js:470 +msgid "Variant Item" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:964 +msgid "Variant Items" +msgstr "" + +#. Label of the variant_of (Link) field in DocType 'Item' +#. Label of the variant_of (Link) field in DocType 'Item Variant Attribute' +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json +msgid "Variant Of" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1172 +msgid "Variant creation has been queued." +msgstr "" + +#. Label of the variants_section (Tab Break) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Variants" +msgstr "" + +#. Name of a DocType +#. Label of the vehicle (Link) field in DocType 'Delivery Trip' +#: erpnext/setup/doctype/vehicle/vehicle.json +#: erpnext/stock/doctype/delivery_trip/delivery_trip.json +msgid "Vehicle" +msgstr "" + +#. Label of the lr_date (Date) field in DocType 'Purchase Receipt' +#. Label of the lr_date (Date) field in DocType 'Subcontracting Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Vehicle Date" +msgstr "" + +#. Label of the vehicle_no (Data) field in DocType 'Delivery Note' +#: erpnext/stock/doctype/delivery_note/delivery_note.json +msgid "Vehicle No" +msgstr "" + +#. Label of the lr_no (Data) field in DocType 'Purchase Receipt' +#. Label of the lr_no (Data) field in DocType 'Subcontracting Receipt' +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json +msgid "Vehicle Number" +msgstr "" + +#. Label of the vehicle_value (Currency) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Vehicle Value" +msgstr "" + +#. Label of the vendor_invoice (Link) field in DocType 'Landed Cost Vendor +#. Invoice' +#: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json +#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:42 +msgid "Vendor Invoice" +msgstr "" + +#. Label of the vendor_invoices (Table) field in DocType 'Landed Cost Voucher' +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Vendor Invoices" +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:538 +msgid "Vendor Name" +msgstr "" + +#: erpnext/setup/setup_wizard/data/industry_type.txt:51 +msgid "Venture Capital" +msgstr "" + +#: erpnext/www/book_appointment/verify/index.html:15 +msgid "Verification failed please check the link" +msgstr "" + +#. Label of the verified_by (Data) field in DocType 'Quality Inspection' +#: erpnext/stock/doctype/quality_inspection/quality_inspection.json +msgid "Verified By" +msgstr "" + +#: erpnext/templates/emails/confirm_appointment.html:6 +#: erpnext/www/book_appointment/verify/index.html:4 +msgid "Verify Email" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Versta" +msgstr "" + +#. Label of the via_customer_portal (Check) field in DocType 'Issue' +#. Label of a field in the issues Web Form +#: erpnext/support/doctype/issue/issue.json +#: erpnext/support/web_form/issues/issues.json +msgid "Via Customer Portal" +msgstr "" + +#. Label of the via_landed_cost_voucher (Check) field in DocType 'Repost Item +#. Valuation' +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +msgid "Via Landed Cost Voucher" +msgstr "" + +#: erpnext/setup/setup_wizard/data/designation.txt:31 +msgid "Vice President" +msgstr "" + +#. Name of a DocType +#: erpnext/utilities/doctype/video/video.json +msgid "Video" +msgstr "" + +#. Name of a DocType +#: erpnext/utilities/doctype/video/video_list.js:3 +#: erpnext/utilities/doctype/video_settings/video_settings.json +msgid "Video Settings" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:9 +msgid "View Account Coverage" +msgstr "" + +#: erpnext/stock/doctype/item/item_prices.html:123 +msgid "View All Prices" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:25 +msgid "View BOM Update Log" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'View Balance Sheet' +#. Description of a report in the Onboarding Step 'View Balance Sheet' +#: erpnext/accounts/onboarding_step/view_balance_sheet/view_balance_sheet.json +#: erpnext/assets/onboarding_step/view_balance_sheet/view_balance_sheet.json +msgid "View Balance Sheet" +msgstr "" + +#: erpnext/public/js/setup_wizard.js:47 +msgid "View Chart of Accounts" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:93 +msgid "View Data Based on" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:248 +msgid "View Exchange Gain/Loss Journals" +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:164 +msgid "View Instructions" +msgstr "" + +#: erpnext/crm/doctype/campaign/campaign.js:15 +msgid "View Leads" +msgstr "" + +#: erpnext/accounts/doctype/account/account_tree.js:274 +#: erpnext/stock/doctype/batch/batch.js:18 +msgid "View Ledger" +msgstr "" + +#: erpnext/stock/doctype/serial_no/serial_no.js:32 +msgid "View Ledgers" +msgstr "" + +#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:65 +msgid "View MRP" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.js:7 +msgid "View Now" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'View Project Summary' +#. Description of a report in the Onboarding Step 'View Project Summary' +#: erpnext/projects/onboarding_step/view_project_summary/view_project_summary.json +msgid "View Project Summary" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'View Purchase Order Analysis' +#. Description of a report in the Onboarding Step 'View Purchase Order +#. Analysis' +#: erpnext/buying/onboarding_step/view_purchase_order_analysis/view_purchase_order_analysis.json +msgid "View Purchase Order Analysis" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'View Sales Order Analysis' +#. Description of a report in the Onboarding Step 'View Sales Order Analysis' +#: erpnext/selling/onboarding_step/view_sales_order_analysis/view_sales_order_analysis.json +msgid "View Sales Order Analysis" +msgstr "" + +#. Label of an action in the Onboarding Step 'View Stock Balance Report' +#: erpnext/stock/onboarding_step/view_stock_balance_report/view_stock_balance_report.json +#: erpnext/stock/report/stock_ledger/stock_ledger.js:139 +msgid "View Stock Balance" +msgstr "" + +#. Title of an Onboarding Step +#. Label of an action in the Onboarding Step 'View Stock Balance Report' +#. Description of a report in the Onboarding Step 'View Stock Balance Report' +#: erpnext/selling/onboarding_step/view_stock_balance_report/view_stock_balance_report.json +#: erpnext/stock/onboarding_step/view_stock_balance_report/view_stock_balance_report.json +msgid "View Stock Balance Report" +msgstr "" + +#: erpnext/stock/report/stock_balance/stock_balance.js:162 +msgid "View Stock Ledger" +msgstr "" + +#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:8 +msgid "View Type" +msgstr "" + +#. Label of an action in the Onboarding Step 'View Work Order Summary Report' +#: erpnext/manufacturing/onboarding_step/view_work_order_summary_report/view_work_order_summary_report.json +msgid "View Work Order Summary" +msgstr "" + +#. Title of an Onboarding Step +#: erpnext/manufacturing/onboarding_step/view_work_order_summary_report/view_work_order_summary_report.json +msgid "View Work Order Summary Report" +msgstr "" + +#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:55 +msgid "View all reconciliation actions taken in this session" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialog.tsx:20 +msgid "View all reconciliation actions taken in this session." +msgstr "" + +#. Label of the view_attachments (Check) field in DocType 'Project User' +#: erpnext/projects/doctype/project_user/project_user.json +msgid "View attachments" +msgstr "" + +#: erpnext/public/js/call_popup/call_popup.js:192 +msgid "View call log" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:997 +msgid "View older transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:997 +msgid "View older transactions" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:293 +msgid "View transaction" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:293 +msgid "View transactions" +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Video' +#: erpnext/utilities/doctype/video/video.json +msgid "Vimeo" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:216 +msgid "Virtual DocType" +msgstr "" + +#: erpnext/templates/pages/help.html:46 +msgid "Visit the forums" +msgstr "" + +#. Label of the visited (Check) field in DocType 'Delivery Stop' +#: erpnext/stock/doctype/delivery_stop/delivery_stop.json +msgid "Visited" +msgstr "" + +#. Group in Maintenance Schedule's connections +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json +msgid "Visits" +msgstr "" + +#. Option for the 'Communication Medium Type' (Select) field in DocType +#. 'Communication Medium' +#: erpnext/communication/doctype/communication_medium/communication_medium.json +msgid "Voice" +msgstr "" + +#. Name of a DocType +#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json +msgid "Voice Call Settings" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Volt-Ampere" +msgstr "" + +#: erpnext/accounts/report/purchase_register/purchase_register.py:165 +#: erpnext/accounts/report/sales_register/sales_register.py:179 +msgid "Voucher" +msgstr "" + +#: erpnext/stock/report/available_serial_no/available_serial_no.js:56 +#: erpnext/stock/report/available_serial_no/available_serial_no.py:196 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:97 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:403 +msgid "Voucher #" +msgstr "" + +#. Option for the 'Reconciliation Type' (Select) field in DocType 'Bank +#. Transaction Payments' +#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json +msgid "Voucher Created" +msgstr "" + +#. Label of the voucher_detail_no (Data) field in DocType 'GL Entry' +#. Label of the voucher_detail_no (Data) field in DocType 'Payment Ledger +#. Entry' +#. Label of the voucher_detail_no (Data) field in DocType 'Serial and Batch +#. Bundle' +#. Label of the voucher_detail_no (Data) field in DocType 'Serial and Batch +#. Entry' +#. Label of the voucher_detail_no (Data) field in DocType 'Stock Ledger Entry' +#. Label of the voucher_detail_no (Data) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:51 +msgid "Voucher Detail No" +msgstr "" + +#. Label of the voucher_detail_reference (Data) field in DocType 'Work Order +#. Item' +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Voucher Detail Reference" +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.html:160 +msgid "Voucher Details" +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:394 +msgid "Voucher Name" +msgstr "" + +#. Label of the voucher_no (Dynamic Link) field in DocType 'Advance Payment +#. Ledger Entry' +#. Label of the voucher_no (Dynamic Link) field in DocType 'GL Entry' +#. Label of the voucher_no (Data) field in DocType 'Ledger Health' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Payment Ledger +#. Entry' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Repost Accounting +#. Ledger Items' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Repost Payment +#. Ledger Items' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Unreconcile +#. Payment' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Repost Item +#. Valuation' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Serial and Batch +#. Bundle' +#. Label of the voucher_no (Data) field in DocType 'Serial and Batch Entry' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Stock Ledger Entry' +#. Label of the voucher_no (Dynamic Link) field in DocType 'Stock Reservation +#. Entry' +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:299 +#: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json +#: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1197 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 +#: erpnext/accounts/report/general_ledger/general_ledger.js:49 +#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 +#: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:174 +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:19 +#: erpnext/public/js/utils/unreconcile.js:79 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:152 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:98 +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:44 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:168 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:108 +#: erpnext/stock/report/reserved_stock/reserved_stock.js:77 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:151 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:51 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:114 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:34 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:158 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:165 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:74 +msgid "Voucher No" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +msgid "Voucher No is mandatory" +msgstr "" + +#. Label of the voucher_qty (Float) field in DocType 'Stock Reservation Entry' +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/reserved_stock/reserved_stock.py:117 +msgid "Voucher Qty" +msgstr "" + +#. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +msgid "Voucher Subtype" +msgstr "" + +#. Label of the voucher_type (Link) field in DocType 'Advance Payment Ledger +#. Entry' +#. Label of the voucher_type (Link) field in DocType 'GL Entry' +#. Label of the voucher_type (Data) field in DocType 'Ledger Health' +#. Label of the voucher_type (Link) field in DocType 'Payment Ledger Entry' +#. Label of the voucher_type (Link) field in DocType 'Repost Accounting Ledger +#. Items' +#. Label of the voucher_type (Link) field in DocType 'Repost Payment Ledger' +#. Label of the voucher_type (Link) field in DocType 'Repost Payment Ledger +#. Items' +#. Label of the voucher_type (Link) field in DocType 'Unreconcile Payment' +#. Label of the voucher_type (Link) field in DocType 'Repost Item Valuation' +#. Label of the voucher_type (Link) field in DocType 'Serial and Batch Bundle' +#. Label of the voucher_type (Data) field in DocType 'Serial and Batch Entry' +#. Label of the voucher_type (Link) field in DocType 'Stock Ledger Entry' +#. Label of the voucher_type (Select) field in DocType 'Stock Reservation +#. Entry' +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:390 +#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json +#: erpnext/accounts/doctype/gl_entry/gl_entry.json +#: erpnext/accounts/doctype/ledger_health/ledger_health.json +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json +#: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +#: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json +#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 +#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 +#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 +#: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 +#: erpnext/accounts/report/purchase_register/purchase_register.py:160 +#: erpnext/accounts/report/sales_register/sales_register.py:174 +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:17 +#: erpnext/public/js/utils/unreconcile.js:71 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json +#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/available_serial_no/available_serial_no.py:194 +#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:146 +#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:91 +#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:38 +#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:161 +#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:106 +#: erpnext/stock/report/reserved_stock/reserved_stock.js:65 +#: erpnext/stock/report/reserved_stock/reserved_stock.py:145 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:40 +#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:109 +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486 +#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:156 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:401 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68 +msgid "Voucher Type" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:210 +msgid "Voucher {0} is over-allocated by {1}" +msgstr "" + +#. Name of a report +#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.json +msgid "Voucher-wise Balance" +msgstr "" + +#. Label of the vouchers (Table) field in DocType 'Repost Accounting Ledger' +#. Label of the selected_vouchers_section (Section Break) field in DocType +#. 'Repost Payment Ledger' +#. Label of the purchase_receipts (Table) field in DocType 'Landed Cost +#. Voucher' +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json +#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json +msgid "Vouchers" +msgstr "" + +#: erpnext/patches/v15_0/remove_exotel_integration.py:32 +msgid "WARNING: Exotel app has been separated from ERPNext, please install the app to continue using Exotel integration." +msgstr "" + +#. Label of the wip_composite_asset (Link) field in DocType 'Purchase Invoice +#. Item' +#. Label of the wip_composite_asset (Link) field in DocType 'Purchase Order +#. Item' +#. Label of the wip_composite_asset (Link) field in DocType 'Material Request +#. Item' +#. Label of the wip_composite_asset (Link) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/stock/doctype/material_request_item/material_request_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "WIP Composite Asset" +msgstr "" + +#. Label of the wip_warehouse (Link) field in DocType 'Work Order Operation' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "WIP WH" +msgstr "" + +#. Label of the wip_warehouse (Link) field in DocType 'BOM Operation' +#. Label of the wip_warehouse (Link) field in DocType 'Job Card' +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order_calendar.js:44 +msgid "WIP Warehouse" +msgstr "" + +#. Label of a number card in the Manufacturing Workspace +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +msgid "WIP Work Orders" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/test_workstation.py:147 +#: erpnext/patches/v16_0/make_workstation_operating_components.py:50 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:317 +msgid "Wages" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:435 +msgid "Waiting for payment..." +msgstr "" + +#: erpnext/setup/setup_wizard/data/marketing_source.txt:10 +msgid "Walk In" +msgstr "" + +#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:4 +msgid "Warehouse Capacity Summary" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:79 +msgid "Warehouse Capacity for Item '{0}' must be greater than the existing stock level of {1} {2}." +msgstr "" + +#. Label of the warehouse_contact_info (Section Break) field in DocType +#. 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Warehouse Contact Info" +msgstr "" + +#. Label of the warehouse_defaults_section (Section Break) field in DocType +#. 'Stock Settings' +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Warehouse Defaults" +msgstr "" + +#. Label of the warehouse_detail (Section Break) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Warehouse Detail" +msgstr "" + +#. Label of the warehouse_section (Section Break) field in DocType +#. 'Subcontracting Order Item' +#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json +msgid "Warehouse Details" +msgstr "" + +#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.py:113 +msgid "Warehouse Disabled?" +msgstr "" + +#. Label of the warehouse_name (Data) field in DocType 'Warehouse' +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "Warehouse Name" +msgstr "" + +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Purchase Order Item' +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +msgid "Warehouse Settings" +msgstr "" + +#. Label of the warehouse_type (Link) field in DocType 'Warehouse' +#. Name of a DocType +#: erpnext/stock/doctype/warehouse/warehouse.json +#: erpnext/stock/doctype/warehouse_type/warehouse_type.json +#: erpnext/stock/report/available_batch_report/available_batch_report.js:57 +#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:45 +#: erpnext/stock/report/stock_ageing/stock_ageing.js:23 +#: erpnext/stock/report/stock_balance/stock_balance.js:94 +msgid "Warehouse Type" +msgstr "" + +#. Name of a report +#. Label of a Link in the Stock Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.json +#: erpnext/stock/workspace/stock/stock.json +#: erpnext/workspace_sidebar/stock.json +msgid "Warehouse Wise Stock Balance" +msgstr "" + +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Request for Quotation Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Supplier Quotation Item' +#. Label of the reference (Section Break) field in DocType 'Quotation Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales +#. Order Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Delivery Note Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Purchase Receipt Item' +#. Label of the warehouse_and_reference (Section Break) field in DocType +#. 'Subcontracting Receipt Item' +#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json +msgid "Warehouse and Reference" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:101 +msgid "Warehouse can not be deleted as stock ledger entry exists for this warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_no/serial_no.py:85 +msgid "Warehouse cannot be changed for Serial No." +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:161 +msgid "Warehouse is mandatory" +msgstr "" + +#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:309 +msgid "Warehouse is required to get producible FG Items" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:240 +msgid "Warehouse not found against the account {0}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:896 +#: erpnext/stock/doctype/delivery_note/delivery_note.py:401 +msgid "Warehouse required for stock Item {0}" +msgstr "" + +#. Name of a report +#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.json +msgid "Warehouse wise Item Balance Age and Value" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:95 +msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 +msgid "Warehouse {0} does not belong to Company {1}." +msgstr "" + +#: erpnext/stock/utils.py:411 +msgid "Warehouse {0} does not belong to company {1}" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:289 +msgid "Warehouse {0} does not exist" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/reservation.py:77 +msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:147 +msgid "Warehouse {0} is not linked to any account, please mention the account in the warehouse record or set default inventory account in company {1}." +msgstr "" + +#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:20 +msgid "Warehouse: {0} does not belong to {1}" +msgstr "" + +#. Label of the warehouses (Table MultiSelect) field in DocType 'Production +#. Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:526 +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +#: erpnext/stock/report/stock_balance/stock_balance.js:76 +#: erpnext/stock/report/stock_ledger/stock_ledger.js:30 +msgid "Warehouses" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:148 +msgid "Warehouses with child nodes cannot be converted to ledger" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:158 +msgid "Warehouses with existing transaction can not be converted to group." +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:150 +msgid "Warehouses with existing transaction can not be converted to ledger." +msgstr "" + +#. Option for the 'Action if same rate is not maintained throughout internal +#. transaction' (Select) field in DocType 'Accounts Settings' +#. Option for the 'Action if Annual Budget Exceeded on MR' (Select) field in +#. DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on MR' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Annual Budget Exceeded on PO' (Select) field in +#. DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on PO' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Annual Budget Exceeded on Actual' (Select) field +#. in DocType 'Budget' +#. Option for the 'Action if Accumulated Monthly Budget Exceeded on Actual' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Anual Budget Exceeded on Cumulative Expense' +#. (Select) field in DocType 'Budget' +#. Option for the 'Action if Accumulative Monthly Budget Exceeded on Cumulative +#. Expense' (Select) field in DocType 'Budget' +#. Option for the 'Action if same rate is not maintained' (Select) field in +#. DocType 'Buying Settings' +#. Option for the 'Action if same rate is not maintained throughout sales +#. cycle' (Select) field in DocType 'Selling Settings' +#. Option for the 'Action if Quality Inspection is not submitted' (Select) +#. field in DocType 'Stock Settings' +#. Option for the 'Action if Quality Inspection is rejected' (Select) field in +#. DocType 'Stock Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +#: erpnext/accounts/doctype/budget/budget.json +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +#: erpnext/stock/doctype/stock_settings/stock_settings.json +msgid "Warn" +msgstr "" + +#. Label of the warn_pos (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "Warn POs" +msgstr "" + +#. Label of the warn_pos (Check) field in DocType 'Supplier Scorecard Scoring +#. Standing' +#. Label of the warn_pos (Check) field in DocType 'Supplier Scorecard Standing' +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Warn Purchase Orders" +msgstr "" + +#. Label of the warn_rfqs (Check) field in DocType 'Supplier' +#. Label of the warn_rfqs (Check) field in DocType 'Supplier Scorecard Scoring +#. Standing' +#. Label of the warn_rfqs (Check) field in DocType 'Supplier Scorecard +#. Standing' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json +#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json +msgid "Warn RFQs" +msgstr "" + +#. Label of the warn_pos (Check) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Warn for new Purchase Orders" +msgstr "" + +#. Label of the warn_rfqs (Check) field in DocType 'Supplier Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Warn for new Request for Quotations" +msgstr "" + +#. Description of the 'Maintain same rate throughout sales cycle' (Check) field +#. in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Warn or stop if Item rate is changed in Delivery Notes and Sales Invoices generated from a Sales Order." +msgstr "" + +#. Description of the 'Maintain same rate throughout the purchase cycle' +#. (Check) field in DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "Warn or stop if Item rate is changed in Purchase Invoice or Purchase Receipt generated from a Purchase Order." +msgstr "" + +#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:134 +msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" +msgstr "" + +#: erpnext/stock/stock_ledger.py:843 +msgid "Warning on Negative Stock" +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:114 +msgid "Warning!" +msgstr "" + +#: erpnext/stock/doctype/warehouse/warehouse.py:123 +msgid "Warning: Account changed for warehouse" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1003 +msgid "Warning: Another {0} # {1} exists against stock entry {2}" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.js:534 +msgid "Warning: Material Requested Qty is less than Minimum Order Qty" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.py:291 +msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:75 +msgid "Warning: This action cannot be undone!" +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_validation.py:74 +msgid "Warnings" +msgstr "" + +#. Label of a Card Break in the Support Workspace +#: erpnext/support/workspace/support/support.json +msgid "Warranty" +msgstr "" + +#. Label of the warranty_amc_details (Section Break) field in DocType 'Serial +#. No' +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Warranty / AMC Details" +msgstr "" + +#. Label of the warranty_amc_status (Select) field in DocType 'Warranty Claim' +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Warranty / AMC Status" +msgstr "" + +#. Label of a Link in the CRM Workspace +#. Name of a DocType +#. Label of a Link in the Support Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/crm/workspace/crm/crm.json +#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:103 +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +#: erpnext/support/workspace/support/support.json +#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/support.json +msgid "Warranty Claim" +msgstr "" + +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:546 +msgid "Warranty Expiry (Serial)" +msgstr "" + +#. Label of the warranty_expiry_date (Date) field in DocType 'Serial No' +#. Label of the warranty_expiry_date (Date) field in DocType 'Warranty Claim' +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Warranty Expiry Date" +msgstr "" + +#. Label of the warranty_period (Int) field in DocType 'Serial No' +#: erpnext/stock/doctype/serial_no/serial_no.json +msgid "Warranty Period (Days)" +msgstr "" + +#. Label of the warranty_period (Data) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Warranty Period (in days)" +msgstr "" + +#: erpnext/utilities/doctype/video/video.js:7 +msgid "Watch Video" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Watt" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Watt-Hour" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Wavelength In Gigametres" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Wavelength In Kilometres" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Wavelength In Megametres" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:187 +msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox." +msgstr "" + +#: banking/src/pages/BankStatementImporter.tsx:169 +msgid "We support uploading CSV, XLSX, XLS and PDF files. Please make sure the file contains the correct columns." +msgstr "" + +#: erpnext/www/support/index.html:7 +msgid "We're here to help!" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:122 +msgid "We've auto-detected the details of the statement file." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:282 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:300 +msgid "We've found 1 existing transaction in the system that conflicts with the transactions in the statement file. Are you sure you want to proceed with the import?" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:232 +msgid "We've found 1 transaction in the statement file that will be imported into the system. Please review the details below and click the 'Import' button to proceed." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:283 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:301 +msgid "We've found {0} existing transactions in the system that conflict with the transactions in the statement file. Are you sure you want to proceed with the import?" +msgstr "" + +#. Name of a DocType +#: erpnext/portal/doctype/website_attribute/website_attribute.json +msgid "Website Attribute" +msgstr "" + +#. Label of the web_long_description (Text Editor) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Website Description" +msgstr "" + +#. Name of a DocType +#: erpnext/portal/doctype/website_filter_field/website_filter_field.json +msgid "Website Filter Field" +msgstr "" + +#. Label of the website_image (Attach Image) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Website Image" +msgstr "" + +#. Name of a DocType +#: erpnext/setup/doctype/website_item_group/website_item_group.json +msgid "Website Item Group" +msgstr "" + +#. Label of the sb_web_spec (Section Break) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "Website Specifications" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:95 +msgid "Week of the year" +msgstr "" + +#: erpnext/selling/report/sales_analytics/sales_analytics.py:457 +#: erpnext/stock/report/stock_analytics/stock_analytics.py:121 +msgid "Week {0} {1}" +msgstr "" + +#. Label of the weekday (Select) field in DocType 'Quality Goal' +#: erpnext/quality_management/doctype/quality_goal/quality_goal.json +msgid "Weekday" +msgstr "" + +#. Label of the weekly_off (Check) field in DocType 'Holiday' +#. Label of the weekly_off (Select) field in DocType 'Holiday List' +#: erpnext/setup/doctype/holiday/holiday.json +#: erpnext/setup/doctype/holiday_list/holiday_list.json +msgid "Weekly Off" +msgstr "" + +#. Label of the weekly_time_to_send (Time) field in DocType 'Project' +#: erpnext/projects/doctype/project/project.json +msgid "Weekly Time to send" +msgstr "" + +#. Label of the weight (Float) field in DocType 'Shipment Parcel' +#. Label of the weight (Float) field in DocType 'Shipment Parcel Template' +#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Weight (kg)" +msgstr "" + +#. Label of the weight_per_unit (Float) field in DocType 'POS Invoice Item' +#. Label of the weight_per_unit (Float) field in DocType 'Purchase Invoice +#. Item' +#. Label of the weight_per_unit (Float) field in DocType 'Sales Invoice Item' +#. Label of the weight_per_unit (Float) field in DocType 'Purchase Order Item' +#. Label of the weight_per_unit (Float) field in DocType 'Supplier Quotation +#. Item' +#. Label of the weight_per_unit (Float) field in DocType 'Quotation Item' +#. Label of the weight_per_unit (Float) field in DocType 'Sales Order Item' +#. Label of the weight_per_unit (Float) field in DocType 'Delivery Note Item' +#. Label of the weight_per_unit (Float) field in DocType 'Item' +#. Label of the weight_per_unit (Float) field in DocType 'Purchase Receipt +#. Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Weight Per Unit" +msgstr "" + +#. Label of the weight_uom (Link) field in DocType 'POS Invoice Item' +#. Label of the weight_uom (Link) field in DocType 'Purchase Invoice Item' +#. Label of the weight_uom (Link) field in DocType 'Sales Invoice Item' +#. Label of the weight_uom (Link) field in DocType 'Purchase Order Item' +#. Label of the weight_uom (Link) field in DocType 'Supplier Quotation Item' +#. Label of the weight_uom (Link) field in DocType 'Quotation Item' +#. Label of the weight_uom (Link) field in DocType 'Sales Order Item' +#. Label of the weight_uom (Link) field in DocType 'Delivery Note Item' +#. Label of the weight_uom (Link) field in DocType 'Item' +#. Label of the weight_uom (Link) field in DocType 'Packing Slip Item' +#. Label of the weight_uom (Link) field in DocType 'Purchase Receipt Item' +#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json +#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json +#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json +#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json +#: erpnext/selling/doctype/quotation_item/quotation_item.json +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +#: erpnext/stock/doctype/item/item.json +#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json +#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json +msgid "Weight UOM" +msgstr "" + +#. Label of the weighting_function (Small Text) field in DocType 'Supplier +#. Scorecard' +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json +msgid "Weighting Function" +msgstr "" + +#: erpnext/templates/pages/help.html:12 +msgid "What do you need help with?" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:82 +msgid "What will be deleted:" +msgstr "" + +#. Label of the whatsapp_no (Data) field in DocType 'Lead' +#. Label of the whatsapp (Data) field in DocType 'Opportunity' +#: erpnext/crm/doctype/lead/lead.json +#: erpnext/crm/doctype/opportunity/opportunity.json +msgid "WhatsApp" +msgstr "" + +#. Label of the wheels (Int) field in DocType 'Vehicle' +#: erpnext/setup/doctype/vehicle/vehicle.json +msgid "Wheels" +msgstr "" + +#. Description of the 'Sub Assembly Warehouse' (Link) field in DocType +#. 'Production Plan' +#: erpnext/manufacturing/doctype/production_plan/production_plan.json +msgid "When a parent warehouse is chosen, the system conducts Project Qty checks against the associated child warehouses" +msgstr "" + +#. Description of the 'Disable Transaction Threshold' (Check) field in DocType +#. 'Tax Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "When checked, only cumulative threshold will be applied" +msgstr "" + +#. Description of the 'Disable Cumulative Threshold' (Check) field in DocType +#. 'Tax Withholding Category' +#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json +msgid "When checked, only transaction threshold will be applied for transaction individually" +msgstr "" + +#. Description of the 'Use Posting Datetime for Naming Documents' (Check) field +#. in DocType 'Global Defaults' +#: erpnext/setup/doctype/global_defaults/global_defaults.json +msgid "When checked, the system will use the posting datetime of the document for naming the document instead of the creation datetime of the document." +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1508 +msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend." +msgstr "" + +#. Description of the 'Enable cut-off date on creating bulk Delivery Notes' +#. (Check) field in DocType 'Selling Settings' +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "When enabled, it adds a cutoff date filter to Delivery Notes created in bulk from Sales Orders. This allows you to process orders only with a transaction date up to the specified cutoff date, which is useful for period-end processing and batch fulfillment." +msgstr "" + +#. Description of the 'Block Supplier' (Check) field in DocType 'Supplier' +#: erpnext/buying/doctype/supplier/supplier.json +msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:384 +msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:374 +msgid "While creating account for Child Company {0}, parent account {1} not found. Please create the parent account in corresponding COA" +msgstr "" + +#. Description of the 'Use Transaction Date Exchange Rate' (Check) field in +#. DocType 'Buying Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +msgid "While making Purchase Invoice from Purchase Order, use Exchange Rate on Invoice's transaction date rather than inheriting it from Purchase Order. Only applies for Purchase Invoice." +msgstr "" + +#. Option for the 'Marital Status' (Select) field in DocType 'Employee' +#: erpnext/setup/doctype/employee/employee.json +msgid "Widowed" +msgstr "" + +#. Label of the width (Float) field in DocType 'Shipment Parcel' +#. Label of the width (Float) field in DocType 'Shipment Parcel Template' +#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json +#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json +msgid "Width (cm)" +msgstr "" + +#. Label of the amt_in_word_width (Float) field in DocType 'Cheque Print +#. Template' +#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json +msgid "Width of amount in word" +msgstr "" + +#. Description of the 'Taxes' (Table) field in DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Will also apply for variants" +msgstr "" + +#. Description of the 'Reorder level based on Warehouse' (Table) field in +#. DocType 'Item' +#: erpnext/stock/doctype/item/item.json +msgid "Will also apply for variants unless overridden" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:616 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:621 +msgid "Will be auto-populated" +msgstr "" + +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:259 +msgid "Wire Transfer" +msgstr "" + +#. Label of the with_operations (Check) field in DocType 'BOM' +#: erpnext/manufacturing/doctype/bom/bom.json +msgid "With Operations" +msgstr "" + +#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:63 +#: erpnext/accounts/report/trial_balance/trial_balance.js:83 +msgid "With Period Closing Entry For Opening Balances" +msgstr "" + +#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import +#. Log Column Map' +#. Label of the withdrawal (Currency) field in DocType 'Bank Transaction' +#. Option for the 'Transaction Type' (Select) field in DocType 'Bank +#. Transaction Rule' +#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:88 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:145 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:246 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:313 +#: banking/src/pages/BankStatementImporter.tsx:194 +#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json +#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json +#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:67 +msgid "Withdrawal" +msgstr "" + +#. Label of the withholding_date (Date) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Withholding Date" +msgstr "" + +#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:278 +msgid "Withholding Document" +msgstr "" + +#. Label of the withholding_name (Dynamic Link) field in DocType 'Tax +#. Withholding Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Withholding Document Name" +msgstr "" + +#. Label of the withholding_doctype (Link) field in DocType 'Tax Withholding +#. Entry' +#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json +msgid "Withholding Document Type" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:70 +msgid "Within 1 day" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:71 +msgid "Within 2 days" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:72 +msgid "Within 3 days" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:73 +msgid "Within 4 days" +msgstr "" + +#: banking/src/components/features/Settings/Preferences.tsx:74 +msgid "Within 5 days" +msgstr "" + +#. Label of a chart in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "Won Opportunities" +msgstr "" + +#. Label of a number card in the CRM Workspace +#: erpnext/crm/workspace/crm/crm.json +msgid "Won Opportunity (Last 1 Month)" +msgstr "" + +#. Label of the work_done (Small Text) field in DocType 'Maintenance Visit +#. Purpose' +#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json +msgid "Work Done" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Asset' +#. Option for the 'Status' (Select) field in DocType 'Job Card' +#. Option for the 'Status' (Select) field in DocType 'Job Card Operation' +#. Option for the 'Status' (Select) field in DocType 'Warranty Claim' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset/asset_list.js:12 +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json +#: erpnext/setup/doctype/company/company.py:392 +#: erpnext/support/doctype/warranty_claim/warranty_claim.json +msgid "Work In Progress" +msgstr "" + +#. Option for the 'Transfer Material Against' (Select) field in DocType 'BOM' +#. Label of the work_order (Link) field in DocType 'Job Card' +#. Name of a DocType +#. Option for the 'Transfer Material Against' (Select) field in DocType 'Work +#. Order' +#. Label of a Link in the Manufacturing Workspace +#. Label of the work_order (Link) field in DocType 'Material Request' +#. Label of the work_order (Link) field in DocType 'Pick List' +#. Label of the work_order (Link) field in DocType 'Serial No' +#. Label of the work_order (Link) field in DocType 'Stock Entry' +#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation +#. Entry' +#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock +#. Reservation Entry' +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom/bom.js:258 +#: erpnext/manufacturing/doctype/bom/bom.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.json +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 +#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 +#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/selling/doctype/sales_order/sales_order.js:1094 +#: erpnext/stock/doctype/material_request/material_request.js:216 +#: erpnext/stock/doctype/material_request/material_request.json +#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/pick_list/pick_list.json +#: erpnext/stock/doctype/serial_no/serial_no.json +#: erpnext/stock/doctype/stock_entry/stock_entry.json +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json +#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:512 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:142 +#: erpnext/templates/pages/material_request_info.html:45 +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Work Order" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/production_plan.js:144 +msgid "Work Order / Subcontract PO" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json +msgid "Work Order Additional Item" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:93 +msgid "Work Order Analysis" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Work Order Consumed Materials" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json +msgid "Work Order Item" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +msgid "Work Order Mismatch" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +msgid "Work Order Operation" +msgstr "" + +#. Label of the work_order_qty (Float) field in DocType 'Sales Order Item' +#. Label of the work_order_qty (Float) field in DocType 'Subcontracting Inward +#. Order Received Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json +msgid "Work Order Qty" +msgstr "" + +#: erpnext/manufacturing/dashboard_fixtures.py:152 +msgid "Work Order Qty Analysis" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.json +msgid "Work Order Stock Report" +msgstr "" + +#. Name of a report +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/report/work_order_summary/work_order_summary.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Work Order Summary" +msgstr "" + +#. Description of a report in the Onboarding Step 'View Work Order Summary +#. Report' +#: erpnext/manufacturing/onboarding_step/view_work_order_summary_report/view_work_order_summary_report.json +msgid "Work Order Summary Report" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:580 +msgid "Work Order cannot be created for following reason:
            {0}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:861 +msgid "Work Order cannot be raised against a Item Template" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +msgid "Work Order has been {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +msgid "Work Order is mandatory" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1297 +msgid "Work Order not created" +msgstr "" + +#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1391 +msgid "Work Order {0} created" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/disassemble.py:194 +msgid "Work Order {0} has no produced qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/stock_entry_base.py:35 +msgid "Work Order {0} must be submitted" +msgstr "" + +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 +#: erpnext/stock/doctype/material_request/material_request.py:568 +msgid "Work Orders" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:1390 +msgid "Work Orders Created: {0}" +msgstr "" + +#. Name of a report +#: erpnext/manufacturing/report/work_orders_in_progress/work_orders_in_progress.json +msgid "Work Orders in Progress" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Work Order Operation' +#. Label of the work_in_progress (Column Break) field in DocType 'Email Digest' +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/setup/doctype/email_digest/email_digest.json +msgid "Work in Progress" +msgstr "" + +#. Label of the wip_warehouse (Link) field in DocType 'Work Order' +#: erpnext/manufacturing/doctype/work_order/work_order.json +msgid "Work-in-Progress Warehouse" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +msgid "Work-in-Progress Warehouse is required before Submit" +msgstr "" + +#. Label of the workday (Select) field in DocType 'Service Day' +#: erpnext/support/doctype/service_day/service_day.json +msgid "Workday" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:137 +msgid "Workday {0} has been repeated." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Task' +#. Option in a Select field in the tasks Web Form +#: erpnext/projects/doctype/task/task.json +#: erpnext/projects/web_form/tasks/tasks.json +msgid "Working" +msgstr "" + +#. Label of the working_hours_section (Tab Break) field in DocType +#. 'Workstation' +#. Label of the working_hours (Table) field in DocType 'Workstation' +#. Label of a number card in the Projects Workspace +#. Label of the support_and_resolution_section_break (Section Break) field in +#. DocType 'Service Level Agreement' +#. Label of the support_and_resolution (Table) field in DocType 'Service Level +#. Agreement' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:65 +#: erpnext/projects/workspace/projects/projects.json +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json +msgid "Working Hours" +msgstr "" + +#. Label of the workstation (Link) field in DocType 'BOM Operation' +#. Label of the workstation (Link) field in DocType 'BOM Website Operation' +#. Label of the workstation (Link) field in DocType 'Job Card' +#. Label of the workstation (Link) field in DocType 'Work Order Operation' +#. Name of a DocType +#. Label of a Link in the Manufacturing Workspace +#. Label of the manufacturing_section (Section Break) field in DocType 'Item +#. Lead Time' +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order/work_order.js:337 +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 +#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 +#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/stock/doctype/item_lead_time/item_lead_time.json +#: erpnext/templates/generators/bom.html:70 +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Workstation" +msgstr "" + +#. Label of the workstation (Link) field in DocType 'Downtime Entry' +#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json +msgid "Workstation / Machine" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json +msgid "Workstation Cost" +msgstr "" + +#. Label of the workstation_dashboard (HTML) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Workstation Dashboard" +msgstr "" + +#. Label of the workstation_name (Data) field in DocType 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Workstation Name" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json +msgid "Workstation Operating Component" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/workstation_operating_component_account/workstation_operating_component_account.json +msgid "Workstation Operating Component Account" +msgstr "" + +#. Label of the workstation_status_tab (Tab Break) field in DocType +#. 'Workstation' +#: erpnext/manufacturing/doctype/workstation/workstation.json +msgid "Workstation Status" +msgstr "" + +#. Label of the workstation_type (Link) field in DocType 'BOM Operation' +#. Label of the workstation_type (Link) field in DocType 'Job Card' +#. Label of the workstation_type (Link) field in DocType 'Work Order Operation' +#. Label of the workstation_type (Link) field in DocType 'Workstation' +#. Name of a DocType +#. Label of the workstation_type (Data) field in DocType 'Workstation Type' +#. Label of a Link in the Manufacturing Workspace +#. Label of a Workspace Sidebar Item +#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json +#: erpnext/manufacturing/doctype/job_card/job_card.json +#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json +#: erpnext/workspace_sidebar/manufacturing.json +msgid "Workstation Type" +msgstr "" + +#. Name of a DocType +#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json +msgid "Workstation Working Hour" +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.py:476 +msgid "Workstation is closed on the following dates as per Holiday List: {0}" +msgstr "" + +#. Label of the workstations_tab (Tab Break) field in DocType 'Plant Floor' +#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json +msgid "Workstations" +msgstr "" + +#. Label of the write_off (Section Break) field in DocType 'Journal Entry' +#. Label of the column_break4 (Section Break) field in DocType 'POS Invoice' +#. Label of the write_off_section (Section Break) field in DocType 'POS +#. Profile' +#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice' +#. Label of the write_off_section (Section Break) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134 +#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221 +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/setup/doctype/company/company.py:675 +msgid "Write Off" +msgstr "" + +#. Label of the write_off_account (Link) field in DocType 'POS Invoice' +#. Label of the write_off_account (Link) field in DocType 'POS Profile' +#. Label of the write_off_account (Link) field in DocType 'Purchase Invoice' +#. Label of the write_off_account (Link) field in DocType 'Sales Invoice' +#. Label of the write_off_account (Link) field in DocType 'Company' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +#: erpnext/setup/doctype/company/company.json +msgid "Write Off Account" +msgstr "" + +#. Label of the write_off_amount (Currency) field in DocType 'Journal Entry' +#. Label of the write_off_amount (Currency) field in DocType 'POS Invoice' +#. Label of the write_off_amount (Currency) field in DocType 'Purchase Invoice' +#. Label of the write_off_amount (Currency) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Write Off Amount" +msgstr "" + +#. Label of the base_write_off_amount (Currency) field in DocType 'POS Invoice' +#. Label of the base_write_off_amount (Currency) field in DocType 'Purchase +#. Invoice' +#. Label of the base_write_off_amount (Currency) field in DocType 'Sales +#. Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Write Off Amount (Company Currency)" +msgstr "" + +#. Label of the write_off_based_on (Select) field in DocType 'Journal Entry' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +msgid "Write Off Based On" +msgstr "" + +#. Label of the write_off_cost_center (Link) field in DocType 'POS Invoice' +#. Label of the write_off_cost_center (Link) field in DocType 'POS Profile' +#. Label of the write_off_cost_center (Link) field in DocType 'Purchase +#. Invoice' +#. Label of the write_off_cost_center (Link) field in DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Write Off Cost Center" +msgstr "" + +#. Label of the write_off_difference_amount (Button) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Write Off Difference Amount" +msgstr "" + +#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry' +#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry +#. Template' +#: erpnext/accounts/doctype/journal_entry/journal_entry.json +#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json +msgid "Write Off Entry" +msgstr "" + +#. Label of the write_off_limit (Currency) field in DocType 'POS Profile' +#: erpnext/accounts/doctype/pos_profile/pos_profile.json +msgid "Write Off Limit" +msgstr "" + +#. Label of the write_off_outstanding_amount_automatically (Check) field in +#. DocType 'POS Invoice' +#. Label of the write_off_outstanding_amount_automatically (Check) field in +#. DocType 'Sales Invoice' +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json +msgid "Write Off Outstanding Amount" +msgstr "" + +#. Label of the section_break_34 (Section Break) field in DocType 'Payment +#. Entry' +#: erpnext/accounts/doctype/payment_entry/payment_entry.json +msgid "Writeoff" +msgstr "" + +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Depreciation Schedule' +#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset +#. Finance Book' +#: erpnext/assets/doctype/asset/asset.json +#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "Written Down Value" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:70 +msgid "Wrong Company" +msgstr "" + +#: erpnext/setup/doctype/company/company.js:250 +msgid "Wrong Password" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:55 +msgid "Wrong Template" +msgstr "" + +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:66 +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:69 +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:72 +msgid "XML Files Processed" +msgstr "" + +#. Name of a UOM +#: erpnext/setup/setup_wizard/data/uom_data.json +msgid "Yard" +msgstr "" + +#. Label of the year_end_date (Date) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "Year End Date" +msgstr "" + +#. Label of the year (Data) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:9 +msgid "Year Name" +msgstr "" + +#. Label of the year_start_date (Date) field in DocType 'Fiscal Year' +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json +msgid "Year Start Date" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:92 +msgid "Year in 2 digits" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:91 +msgid "Year in 4 digits" +msgstr "" + +#. Label of the year_of_passing (Int) field in DocType 'Employee Education' +#: erpnext/setup/doctype/employee_education/employee_education.json +msgid "Year of Passing" +msgstr "" + +#: erpnext/accounts/doctype/fiscal_year/fiscal_year.py:89 +msgid "Year start date or end date is overlapping with {0}. To avoid please set company" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:30 +msgid "You are importing data for the code list:" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:232 +msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:114 +msgid "You are not authorized to add or update entries before {0}" +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:341 +msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time." +msgstr "" + +#: erpnext/accounts/doctype/account/account.py:316 +msgid "You are not authorized to set Frozen value" +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:514 +msgid "You are picking more than required quantity for the item {0}. Check if there is any other pick list created for the sales order {1}." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 +msgid "You can add the original invoice {} manually to proceed." +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 +msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." +msgstr "" + +#: erpnext/templates/emails/confirm_appointment.html:10 +msgid "You can also copy-paste this link in your browser" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:123 +msgid "You can also set default CWIP account in Company {}" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:87 +msgid "You can also use variables in the series name by putting them between (.) dots" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 +msgid "You can change the parent account to a Balance Sheet account or select a different account." +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:186 +msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

            " +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:574 +msgid "You can not enter current voucher in 'Against Journal Entry' column" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:230 +msgid "You can only have Plans with the same billing cycle in a Subscription" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:423 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1044 +msgid "You can only redeem max {0} points in this order." +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:190 +msgid "You can only select one mode of payment as default" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:595 +msgid "You can redeem upto {0}." +msgstr "" + +#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 +msgid "You can reset the clearing dates of these entries here." +msgstr "" + +#: erpnext/manufacturing/doctype/workstation/workstation.js:59 +msgid "You can set it as a machine name or operation type. For example, stiching machine 12" +msgstr "" + +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:742 +msgid "You can set up the rule to split the transaction across multiple accounts." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:208 +msgid "You can use {0} to reconcile against {1} later." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 +msgid "You can't make any changes to Job Card since Work Order is closed." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 +msgid "You can't redeem Loyalty Points having more value than the Total Amount." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:776 +msgid "You cannot change the rate if BOM is mentioned against any Item." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +msgid "You cannot create a {0} within the closed Accounting Period {1}" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:64 +msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgstr "" + +#: erpnext/accounts/services/gl_validator.py:145 +msgid "You cannot create/amend any accounting entries till this date." +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 +msgid "You cannot credit and debit same account at the same time" +msgstr "" + +#: erpnext/projects/doctype/project_type/project_type.py:25 +msgid "You cannot delete Project Type 'External'" +msgstr "" + +#: erpnext/setup/doctype/department/department.js:19 +msgid "You cannot edit root node." +msgstr "" + +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +msgid "You cannot enable both the settings '{0}' and '{1}'." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 +msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:625 +msgid "You cannot redeem more than {0}." +msgstr "" + +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 +msgid "You cannot repost item valuation before {}" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:832 +msgid "You cannot restart a Subscription that is not cancelled." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:281 +msgid "You cannot submit empty order." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:280 +msgid "You cannot submit the order without payment." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:968 +msgid "You cannot update stock for a Debit Note. A Debit Note is a financial document that should not affect inventory. Please disable 'Update Stock'." +msgstr "" + +#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:109 +msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 +msgid "You do not have permission to import and submit bank transactions" +msgstr "" + +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:73 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:77 +msgid "You do not have permission to import bank transactions" +msgstr "" + +#: erpnext/accounts/services/child_item_update.py:210 +msgid "You do not have permissions to {} items in a {}." +msgstr "" + +#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 +msgid "You don't have enough Loyalty Points to redeem" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_payment.js:588 +msgid "You don't have enough points to redeem." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1760 +msgid "You don't have permission to create a Company Address. Please contact your System Manager." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1740 +msgid "You don't have permission to update Company details. Please contact your System Manager." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:36 +msgid "You don't have permission to update Received Qty DocField for item {0}" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1734 +msgid "You don't have permission to update this document. Please contact your System Manager." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 +msgid "You had {} errors while creating opening invoices. Check {} for more details" +msgstr "" + +#: erpnext/public/js/utils.js:1038 +msgid "You have already selected items from {0} {1}" +msgstr "" + +#: erpnext/projects/doctype/project/project.py:420 +msgid "You have been invited to collaborate on the project {0}." +msgstr "" + +#: erpnext/stock/doctype/stock_settings/stock_settings.py:263 +msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the default price list being inserted in the transaction price list." +msgstr "" + +#: erpnext/selling/doctype/selling_settings/selling_settings.py:110 +msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the default price list being inserted into the transaction price list." +msgstr "" + +#: erpnext/stock/doctype/shipment/shipment.js:442 +msgid "You have entered a duplicate Delivery Note on Row" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 +msgid "You have not added any bank accounts to your company." +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:60 +msgid "You have not performed any reconciliations in this session yet." +msgstr "" + +#: erpnext/stock/doctype/item/item.py:1170 +msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +msgid "You have unsaved changes. Do you want to save the invoice?" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +msgid "You must select a customer before adding an item." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 +msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgstr "" + +#: erpnext/accounts/services/taxes.py:276 +msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Video' +#: erpnext/utilities/doctype/video/video.json +msgid "YouTube" +msgstr "" + +#. Name of a report +#: erpnext/utilities/report/youtube_interactions/youtube_interactions.json +msgid "YouTube Interactions" +msgstr "" + +#: erpnext/www/book_appointment/index.html:49 +msgid "Your Name (required)" +msgstr "" + +#: erpnext/www/book_appointment/verify/index.html:11 +msgid "Your email has been verified and your appointment has been scheduled" +msgstr "" + +#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:22 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:342 +msgid "Your order is out for delivery!" +msgstr "" + +#: erpnext/templates/pages/help.html:52 +msgid "Your tickets" +msgstr "" + +#. Label of the youtube_video_id (Data) field in DocType 'Video' +#: erpnext/utilities/doctype/video/video.json +msgid "Youtube ID" +msgstr "" + +#. Label of the youtube_tracking_section (Section Break) field in DocType +#. 'Video' +#: erpnext/utilities/doctype/video/video.json +msgid "Youtube Statistics" +msgstr "" + +#: erpnext/public/js/utils/contact_address_quick_entry.js:88 +msgid "ZIP Code" +msgstr "" + +#. Label of the zero_balance (Check) field in DocType 'Exchange Rate +#. Revaluation Account' +#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json +msgid "Zero Balance" +msgstr "" + +#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 +msgid "Zero Rated" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:190 +msgid "Zero quantity" +msgstr "" + +#. Label of the zero_quantity_line_items_section (Section Break) field in +#. DocType 'Buying Settings' +#. Label of the section_break_zero_qty (Section Break) field in DocType +#. 'Selling Settings' +#: erpnext/buying/doctype/buying_settings/buying_settings.json +#: erpnext/selling/doctype/selling_settings/selling_settings.json +msgid "Zero-Quantity Line Items" +msgstr "" + +#. Label of the zip_file (Attach) field in DocType 'Import Supplier Invoice' +#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json +msgid "Zip File" +msgstr "" + +#: erpnext/stock/reorder_item.py:364 +msgid "[Important] [ERPNext] Auto Reorder Errors" +msgstr "" + +#: erpnext/controllers/status_updater.py:306 +msgid "`Allow Negative rates for Items`" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2051 +msgid "after" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:58 +msgid "as Code" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:74 +msgid "as Description" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:49 +msgid "as Title" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.js:1026 +msgid "as a percentage of finished item quantity" +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +msgid "as of {0}" +msgstr "" + +#: erpnext/www/book_appointment/index.html:43 +msgid "at" +msgstr "" + +#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:16 +msgid "based_on" +msgstr "" + +#: erpnext/edi/doctype/code_list/code_list_import.js:91 +msgid "by {}" +msgstr "" + +#: erpnext/public/js/utils/sales_common.js:336 +msgid "cannot be greater than 100" +msgstr "" + +#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 +msgid "dated {0}" +msgstr "" + +#. Label of the description (Small Text) field in DocType 'Production Plan Sub +#. Assembly Item' +#: erpnext/edi/doctype/code_list/code_list_import.js:81 +#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json +msgid "description" +msgstr "" + +#. Option for the 'Plaid Environment' (Select) field in DocType 'Plaid +#. Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "development" +msgstr "" + +#: erpnext/selling/page/point_of_sale/pos_item_cart.js:451 +msgid "discount applied" +msgstr "" + +#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:45 +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:67 +msgid "doc_type" +msgstr "" + +#. Description of the 'Coupon Name' (Data) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "e.g. \"Summer Holiday 2019 Offer 20\"" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:663 +#: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1233 +#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:685 +msgid "e.g. Bank Charges" +msgstr "" + +#. Description of the 'Shipping Rule Label' (Data) field in DocType 'Shipping +#. Rule' +#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json +msgid "example: Next Day Shipping" +msgstr "" + +#. Option for the 'Service Provider' (Select) field in DocType 'Currency +#. Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "exchangerate.host" +msgstr "" + +#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:193 +msgid "fieldname" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:97 +msgid "fieldname on the document e.g." +msgstr "" + +#. Option for the 'Service Provider' (Select) field in DocType 'Currency +#. Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "frankfurter.dev" +msgstr "" + +#. Option for the 'Service Provider' (Select) field in DocType 'Currency +#. Exchange Settings' +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json +msgid "frankfurter.dev - v2" +msgstr "" + +#: erpnext/templates/form_grid/item_grid.html:66 +#: erpnext/templates/form_grid/item_grid.html:80 +msgid "hidden" +msgstr "" + +#: erpnext/projects/doctype/project/project_dashboard.html:13 +msgid "hours" +msgstr "" + +#. Label of the lft (Int) field in DocType 'Cost Center' +#. Label of the lft (Int) field in DocType 'Location' +#. Label of the lft (Int) field in DocType 'Task' +#. Label of the lft (Int) field in DocType 'Customer Group' +#. Label of the lft (Int) field in DocType 'Department' +#. Label of the lft (Int) field in DocType 'Employee' +#. Label of the lft (Int) field in DocType 'Item Group' +#. Label of the lft (Int) field in DocType 'Sales Person' +#. Label of the lft (Int) field in DocType 'Supplier Group' +#. Label of the lft (Int) field in DocType 'Territory' +#. Label of the lft (Int) field in DocType 'Warehouse' +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/assets/doctype/location/location.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/sales_person/sales_person.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/setup/doctype/territory/territory.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "lft" +msgstr "" + +#. Label of the material_request_item (Data) field in DocType 'Production Plan +#. Item' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +msgid "material_request_item" +msgstr "" + +#: erpnext/controllers/selling_controller.py:219 +msgid "must be between 0 and 100" +msgstr "" + +#: erpnext/selling/doctype/sales_order/sales_order.js:676 +msgid "name" +msgstr "" + +#: erpnext/templates/pages/task_info.html:75 +msgid "on" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:50 +msgid "or its descendants" +msgstr "" + +#: erpnext/templates/includes/macros.html:207 +#: erpnext/templates/includes/macros.html:211 +msgid "out of 5" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1241 +msgid "paid to" +msgstr "" + +#: erpnext/public/js/utils.js:463 +msgid "payments app is not installed. Please install it from {0} or {1}" +msgstr "" + +#: erpnext/utilities/__init__.py:51 +msgid "payments app is not installed. Please install it from {} or {}" +msgstr "" + +#. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' +#. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation +#. Type' +#. Description of the 'Billing Rate' (Currency) field in DocType 'Activity +#. Cost' +#. Description of the 'Costing Rate' (Currency) field in DocType 'Activity +#. Cost' +#: erpnext/manufacturing/doctype/workstation/workstation.json +#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json +#: erpnext/projects/doctype/activity_cost/activity_cost.json +msgid "per hour" +msgstr "" + +#: erpnext/stock/stock_ledger.py:2052 +msgid "performing either one below:" +msgstr "" + +#. Description of the 'Product Bundle Item' (Data) field in DocType 'Pick List +#. Item' +#: erpnext/stock/doctype/pick_list_item/pick_list_item.json +msgid "product bundle item row's name in sales order. Also indicates that picked item is to be used for a product bundle" +msgstr "" + +#. Option for the 'Plaid Environment' (Select) field in DocType 'Plaid +#. Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "production" +msgstr "" + +#. Label of the quotation_item (Data) field in DocType 'Sales Order Item' +#: erpnext/selling/doctype/sales_order_item/sales_order_item.json +msgid "quotation_item" +msgstr "" + +#: erpnext/templates/includes/macros.html:202 +msgid "ratings" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1241 +msgid "received from" +msgstr "" + +#: banking/src/components/features/BankReconciliation/BankBalance.tsx:143 +msgid "reconciled" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:164 +msgid "returned" +msgstr "" + +#. Label of the rgt (Int) field in DocType 'Cost Center' +#. Label of the rgt (Int) field in DocType 'Location' +#. Label of the rgt (Int) field in DocType 'Task' +#. Label of the rgt (Int) field in DocType 'Customer Group' +#. Label of the rgt (Int) field in DocType 'Department' +#. Label of the rgt (Int) field in DocType 'Employee' +#. Label of the rgt (Int) field in DocType 'Item Group' +#. Label of the rgt (Int) field in DocType 'Sales Person' +#. Label of the rgt (Int) field in DocType 'Supplier Group' +#. Label of the rgt (Int) field in DocType 'Territory' +#. Label of the rgt (Int) field in DocType 'Warehouse' +#: erpnext/accounts/doctype/cost_center/cost_center.json +#: erpnext/assets/doctype/location/location.json +#: erpnext/projects/doctype/task/task.json +#: erpnext/setup/doctype/customer_group/customer_group.json +#: erpnext/setup/doctype/department/department.json +#: erpnext/setup/doctype/employee/employee.json +#: erpnext/setup/doctype/item_group/item_group.json +#: erpnext/setup/doctype/sales_person/sales_person.json +#: erpnext/setup/doctype/supplier_group/supplier_group.json +#: erpnext/setup/doctype/territory/territory.json +#: erpnext/stock/doctype/warehouse/warehouse.json +msgid "rgt" +msgstr "" + +#. Option for the 'Plaid Environment' (Select) field in DocType 'Plaid +#. Settings' +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json +msgid "sandbox" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:164 +msgid "sold" +msgstr "" + +#: erpnext/accounts/doctype/subscription/subscription.py:809 +msgid "subscription is already cancelled." +msgstr "" + +#: erpnext/controllers/status_updater.py:493 +#: erpnext/controllers/status_updater.py:512 +msgid "target_ref_field" +msgstr "" + +#. Label of the temporary_name (Data) field in DocType 'Production Plan Item' +#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json +msgid "temporary name" +msgstr "" + +#. Label of the title (Data) field in DocType 'Activity Cost' +#: erpnext/projects/doctype/activity_cost/activity_cost.json +msgid "title" +msgstr "" + +#: erpnext/www/book_appointment/index.js:134 +msgid "to" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1259 +msgid "to unallocate the amount of this Return Invoice before cancelling it." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:178 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:182 +msgid "transaction" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:458 +msgid "transaction selected" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:178 +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:182 +msgid "transactions" +msgstr "" + +#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:458 +msgid "transactions selected" +msgstr "" + +#. Description of the 'Coupon Code' (Data) field in DocType 'Coupon Code' +#: erpnext/accounts/doctype/coupon_code/coupon_code.json +msgid "unique e.g. SAVE20 To be used to get discount" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/drop_ship.py:66 +msgid "updated delivered quantity for item {0} to {1}" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:9 +msgid "variance" +msgstr "" + +#. Description of the 'Increase In Asset Life (Months)' (Int) field in DocType +#. 'Asset Finance Book' +#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json +msgid "via Asset Repair" +msgstr "" + +#: erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py:41 +msgid "via BOM Update Tool" +msgstr "" + +#: erpnext/assets/doctype/asset_category/asset_category.py:121 +msgid "you must select Capital Work in Progress Account in accounts table" +msgstr "" + +#: erpnext/accounts/services/taxes.py:116 +msgid "{0} '{1}' is disabled" +msgstr "" + +#: erpnext/accounts/utils.py:200 +msgid "{0} '{1}' not in Fiscal Year {2}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/services/status.py:181 +msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" +msgstr "" + +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." +msgstr "" + +#: erpnext/controllers/accounts_controller.py:1295 +msgid "{0} Account not found against Customer {1}." +msgstr "" + +#: erpnext/utilities/transaction_base.py:257 +msgid "{0} Account: {1} ({2}) must be in either customer billing currency: {3} or Company default currency: {4}" +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:559 +msgid "{0} Budget for Account {1} against {2} {3} is {4}. It is already exceeded by {5}." +msgstr "" + +#: erpnext/accounts/doctype/budget/budget.py:562 +msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" +msgstr "" + +#: erpnext/setup/doctype/email_digest/email_digest.py:117 +msgid "{0} Digest" +msgstr "" + +#: erpnext/public/js/utils/naming_series.js:263 +#: erpnext/public/js/utils/naming_series.js:403 +msgid "{0} Naming Series" +msgstr "" + +#: erpnext/accounts/utils.py:1590 +msgid "{0} Number {1} is already used in {2} {3}" +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/operations_cost.py:134 +msgid "{0} Operating Cost for operation {1}" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:572 +msgid "{0} Operations: {1}" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:232 +msgid "{0} Request for {1}" +msgstr "" + +#: erpnext/stock/doctype/item/item.py:391 +msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1048 +msgid "{0} Transaction(s) Reconciled" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:164 +msgid "{0} Year Work Anniversary" +msgstr "" + +#: erpnext/setup/doctype/employee/employee.js:165 +msgid "{0} Years Work Anniversary" +msgstr "" + +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:60 +msgid "{0} account is not of company {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:63 +msgid "{0} account is not of type {1}" +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:55 +msgid "{0} account not found while submitting purchase receipt" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:807 +msgid "{0} against Bill {1} dated {2}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:795 +msgid "{0} against Purchase Order {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:785 +msgid "{0} against Sales Invoice {1}" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/journal_entry.py:789 +msgid "{0} against Sales Order {1}" +msgstr "" + +#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.py:66 +msgid "{0} already has a Parent Procedure {1}." +msgstr "" + +#: erpnext/accounts/report/general_ledger/general_ledger.py:63 +#: erpnext/accounts/report/pos_register/pos_register.py:120 +msgid "{0} and {1} are mandatory" +msgstr "" + +#: erpnext/assets/doctype/asset_movement/asset_movement.py:42 +msgid "{0} asset cannot be transferred" +msgstr "" + +#: erpnext/controllers/trends.py:66 +msgid "{0} can be either {1} or {2}." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:279 +msgid "{0} can not be negative" +msgstr "" + +#: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 +msgid "{0} cannot be changed with opened Opening Entries." +msgstr "" + +#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 +msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_request/payment_request.py:168 +msgid "{0} cannot be zero" +msgstr "" + +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:130 +#: erpnext/manufacturing/doctype/production_plan/services/work_order_planning.py:199 +#: erpnext/stock/doctype/pick_list/mapper.py:79 +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:323 +msgid "{0} created" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:33 +msgid "{0} creation for the following records will be skipped." +msgstr "" + +#: erpnext/setup/doctype/company/company.py:303 +msgid "{0} currency must be same as company's default currency. Please select another account." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/purchase_order.py:286 +msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution." +msgstr "" + +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:137 +msgid "{0} currently has a {1} Supplier Scorecard standing, and RFQs to this supplier should be issued with caution." +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:164 +msgid "{0} does not belong to Company {1}" +msgstr "" + +#: erpnext/accounts/services/party_validation.py:185 +msgid "{0} does not belong to the Company {1}." +msgstr "" + +#: erpnext/accounts/doctype/item_tax_template/item_tax_template.py:74 +msgid "{0} entered twice in Item Tax" +msgstr "" + +#: erpnext/setup/doctype/item_group/item_group.py:47 +#: erpnext/stock/doctype/item/item.py:522 +msgid "{0} entered twice {1} in Item Taxes" +msgstr "" + +#: erpnext/accounts/utils.py:137 +#: erpnext/projects/doctype/activity_cost/activity_cost.py:40 +msgid "{0} for {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:455 +msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +msgid "{0} has been modified after you pulled it. Please pull it again." +msgstr "" + +#: erpnext/setup/default_success_action.py:15 +msgid "{0} has been submitted successfully" +msgstr "" + +#: erpnext/projects/doctype/project/project_dashboard.html:15 +msgid "{0} hours" +msgstr "" + +#: erpnext/accounts/services/payment_schedule.py:235 +msgid "{0} in row {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +msgid "{0} is a child table and will be deleted automatically with its parent" +msgstr "" + +#: erpnext/accounts/doctype/pos_profile/pos_profile.py:95 +msgid "{0} is a mandatory Accounting Dimension.
            Please set a value for {0} in Accounting Dimensions section." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:102 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:155 +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:60 +msgid "{0} is added multiple times on rows: {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +msgid "{0} is already running for {1}" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:169 +msgid "{0} is blocked so this transaction cannot proceed" +msgstr "" + +#: erpnext/assets/doctype/asset/asset.py:508 +msgid "{0} is in Draft. Submit it before creating the Asset." +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:865 +msgid "{0} is mandatory for Item {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100 +#: erpnext/accounts/services/gl_validator.py:157 +msgid "{0} is mandatory for account {1}" +msgstr "" + +#: erpnext/public/js/controllers/taxes_and_totals.js:131 +msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" +msgstr "" + +#: erpnext/accounts/services/taxes.py:233 +msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1813 +msgid "{0} is not a CSV file." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:236 +msgid "{0} is not a company bank account" +msgstr "" + +#: erpnext/accounts/doctype/cost_center/cost_center.py:53 +msgid "{0} is not a group node. Please select a group node as parent cost center" +msgstr "" + +#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:109 +msgid "{0} is not a stock Item" +msgstr "" + +#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:407 +msgid "{0} is not a valid Accounting Dimension." +msgstr "" + +#: erpnext/controllers/item_variant.py:199 +msgid "{0} is not a valid Value for Attribute {1} of Item {2}." +msgstr "" + +#: erpnext/stock/utils.py:136 +msgid "{0} is not a valid {1} fieldname." +msgstr "" + +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:168 +msgid "{0} is not added in the table" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:146 +msgid "{0} is not enabled in {1}" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 +msgid "{0} is not running. Cannot trigger events for this Document" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:478 +msgid "{0} is not the default supplier for any items." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 +msgid "{0} is on hold till {1}" +msgstr "" + +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 +msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:537 +msgid "{0} items disassembled" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:501 +msgid "{0} items in progress" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:525 +msgid "{0} items lost during process." +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:482 +msgid "{0} items produced" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:505 +msgid "{0} items returned" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.js:508 +msgid "{0} items to return" +msgstr "" + +#: erpnext/controllers/sales_and_purchase_return.py:219 +msgid "{0} must be negative in return document" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/inter_company.py:60 +msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/services/costing.py:63 +msgid "{0} not found for item {1}" +msgstr "" + +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:706 +msgid "{0} parameter is invalid" +msgstr "" + +#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:65 +msgid "{0} payment entries can not be filtered by {1}" +msgstr "" + +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:167 +msgctxt "Do MMMM YYYY" +msgid "{0} to {1}" +msgstr "" + +#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:234 +msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:1085 +msgid "{0} units of Item {1} is not available in any of the warehouses." +msgstr "" + +#: erpnext/stock/doctype/pick_list/pick_list.py:1078 +msgid "{0} units of Item {1} is not available in any of the warehouses. Other Pick Lists exist for this item." +msgstr "" + +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:144 +msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." +msgstr "" + +#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 +#: erpnext/stock/stock_ledger.py:2214 +msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." +msgstr "" + +#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." +msgstr "" + +#: erpnext/stock/stock_ledger.py:1692 +msgid "{0} units of {1} needed in {2} to complete this transaction." +msgstr "" + +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:36 +msgid "{0} until {1}" +msgstr "" + +#: erpnext/stock/utils.py:402 +msgid "{0} valid serial nos for Item {1}" +msgstr "" + +#: erpnext/stock/doctype/item/item.js:1177 +msgid "{0} variants created." +msgstr "" + +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +msgid "{0} view is currently unsupported in Custom Financial Report." +msgstr "" + +#: erpnext/accounts/doctype/payment_term/payment_term.js:19 +msgid "{0} will be given as discount." +msgstr "" + +#: erpnext/public/js/utils/barcode_scanner.js:523 +msgid "{0} will be set as the {1} in subsequently scanned items" +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1084 +msgid "{0} {1}" +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:266 +msgid "{0} {1} Manually" +msgstr "" + +#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1052 +msgid "{0} {1} Partially Reconciled" +msgstr "" + +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:559 +msgid "{0} {1} cannot be updated. If you need to make changes, we recommend canceling the existing entry and creating a new one." +msgstr "" + +#: erpnext/accounts/doctype/payment_order/payment_order.py:130 +msgid "{0} {1} created" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +msgid "{0} {1} does not exist" +msgstr "" + +#: erpnext/accounts/party.py:577 +msgid "{0} {1} has accounting entries in currency {2} for company {3}. Please select a receivable or payable account with currency {2}." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:465 +msgid "{0} {1} has already been fully paid." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:475 +msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts." +msgstr "" + +#: erpnext/buying/doctype/purchase_order/services/status.py:35 +#: erpnext/selling/doctype/sales_order/services/status.py:45 +#: erpnext/stock/doctype/material_request/material_request.py:258 +msgid "{0} {1} has been modified. Please refresh." +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:285 +msgid "{0} {1} has not been submitted so the action cannot be completed" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:103 +msgid "{0} {1} is allocated twice in this Bank Transaction" +msgstr "" + +#: erpnext/edi/doctype/common_code/common_code.py:54 +msgid "{0} {1} is already linked to Common Code {2}." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 +msgid "{0} {1} is associated with {2}, but Party Account is {3}" +msgstr "" + +#: erpnext/controllers/selling_controller.py:509 +#: erpnext/controllers/subcontracting_controller.py:1152 +msgid "{0} {1} is cancelled or closed" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:437 +msgid "{0} {1} is cancelled or stopped" +msgstr "" + +#: erpnext/stock/doctype/material_request/material_request.py:275 +msgid "{0} {1} is cancelled so the action cannot be completed" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:155 +msgid "{0} {1} is closed" +msgstr "" + +#: erpnext/accounts/party.py:824 +msgid "{0} {1} is disabled" +msgstr "" + +#: erpnext/accounts/party.py:830 +msgid "{0} {1} is frozen" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:153 +msgid "{0} {1} is fully billed" +msgstr "" + +#: erpnext/accounts/party.py:834 +msgid "{0} {1} is not active" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 +msgid "{0} {1} is not associated with {2} {3}" +msgstr "" + +#: erpnext/accounts/utils.py:133 +msgid "{0} {1} is not in any active Fiscal Year" +msgstr "" + +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:151 +#: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:191 +msgid "{0} {1} is not submitted" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:721 +msgid "{0} {1} is on hold" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:727 +msgid "{0} {1} must be submitted" +msgstr "" + +#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:275 +msgid "{0} {1} not allowed to be reposted. You can enable it by adding it '{2}' table in {3}." +msgstr "" + +#: erpnext/buying/utils.py:117 +msgid "{0} {1} status is {2}." +msgstr "" + +#: erpnext/public/js/utils/serial_no_batch_selector.js:242 +msgid "{0} {1} via CSV File" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:226 +msgid "{0} {1}: 'Profit and Loss' type account {2} not allowed in Opening Entry" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:252 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:86 +msgid "{0} {1}: Account {2} does not belong to Company {3}" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:240 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:74 +msgid "{0} {1}: Account {2} is a Group Account and group accounts cannot be used in transactions" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:247 +#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:81 +msgid "{0} {1}: Account {2} is inactive" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:293 +msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}" +msgstr "" + +#: erpnext/stock/services/base_stock_gl_composer.py:226 +msgid "{0} {1}: Cost Center is mandatory for Item {2}" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:179 +msgid "{0} {1}: Cost Center is required for 'Profit and Loss' account {2}." +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:265 +msgid "{0} {1}: Cost Center {2} does not belong to Company {3}" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:272 +msgid "{0} {1}: Cost Center {2} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:145 +msgid "{0} {1}: Customer is required against Receivable account {2}" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:167 +msgid "{0} {1}: Either debit or credit amount is required for {2}" +msgstr "" + +#: erpnext/accounts/doctype/gl_entry/gl_entry.py:151 +msgid "{0} {1}: Supplier is required against Payable account {2}" +msgstr "" + +#: erpnext/projects/doctype/project/project_list.js:6 +msgid "{0}%" +msgstr "" + +#: erpnext/controllers/website_list_for_contact.py:210 +msgid "{0}% Billed" +msgstr "" + +#: erpnext/controllers/website_list_for_contact.py:218 +msgid "{0}% Delivered" +msgstr "" + +#: erpnext/accounts/doctype/payment_term/payment_term.js:15 +#, python-format +msgid "{0}% of total invoice value will be given as discount." +msgstr "" + +#: erpnext/projects/doctype/task/task.py:129 +msgid "{0}'s {1} cannot be after {2}'s Expected End Date." +msgstr "" + +#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 +msgid "{0}, complete the operation {1} before the operation {2}." +msgstr "" + +#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 +msgid "{0}, {1} or {2} are the only allowed options." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +msgid "{0}: Child table (auto-deleted with parent)" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +msgid "{0}: Not found" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +msgid "{0}: Protected DocType" +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +msgid "{0}: Virtual DocType (no database table)" +msgstr "" + +#: erpnext/controllers/accounts_controller.py:488 +msgid "{0}: {1} does not belong to the Company: {2}" +msgstr "" + +#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1354 +msgid "{0}: {1} does not exist" +msgstr "" + +#: erpnext/setup/doctype/company/company.py:290 +msgid "{0}: {1} is a group account." +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +msgid "{0}: {1} must be less than {2}" +msgstr "" + +#: erpnext/controllers/buying_controller.py:1028 +msgid "{count} Assets created for {item_code}" +msgstr "" + +#: erpnext/controllers/buying_controller.py:928 +msgid "{doctype} {name} is cancelled or closed." +msgstr "" + +#: erpnext/controllers/stock_controller.py:668 +msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" +msgstr "" + +#: erpnext/controllers/stock_controller.py:551 +msgid "{ref_doctype} {ref_name} status is {status}." +msgstr "" + +#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:429 +msgid "{}" +msgstr "" + +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" +msgstr "" + +#: erpnext/controllers/buying_controller.py:289 +msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + +#: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 +msgid "{} invoices" +msgstr "" + +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{} is a child company." +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{} {} is already linked with another {}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{} {} is already linked with {} {}" +msgstr "" + +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{} {} is not affecting bank account {}" +msgstr "" + From d18177665bd2072bc13851ca9d62974b581dfbd4 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 09:11:45 +0530 Subject: [PATCH 020/161] test: add coverage for Trial Balance for Party report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_trial_balance_for_party.py | 133 ++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 erpnext/accounts/report/trial_balance_for_party/test_trial_balance_for_party.py diff --git a/erpnext/accounts/report/trial_balance_for_party/test_trial_balance_for_party.py b/erpnext/accounts/report/trial_balance_for_party/test_trial_balance_for_party.py new file mode 100644 index 00000000000..23e65872851 --- /dev/null +++ b/erpnext/accounts/report/trial_balance_for_party/test_trial_balance_for_party.py @@ -0,0 +1,133 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.accounts.doctype.payment_entry.test_payment_entry import create_payment_entry +from erpnext.accounts.doctype.purchase_invoice.test_purchase_invoice import make_purchase_invoice +from erpnext.accounts.doctype.sales_invoice.test_sales_invoice import create_sales_invoice +from erpnext.accounts.report.trial_balance_for_party.trial_balance_for_party import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestTrialBalanceForParty(ERPNextTestSuite): + def run_report(self, **extra): + filters = frappe._dict( + { + "company": "_Test Company", + "party_type": "Customer", + "fiscal_year": "_Test Fiscal Year 2026", + "from_date": "2026-01-01", + "to_date": "2026-12-31", + **extra, + } + ) + return execute(filters)[1] + + def party_row(self, party, **extra): + return next(row for row in self.run_report(party=party, **extra) if row.get("party") == party) + + def make_customer(self, name="_Test TB Customer"): + if not frappe.db.exists("Customer", name): + frappe.get_doc( + { + "doctype": "Customer", + "customer_name": name, + "customer_group": "_Test Customer Group", + "territory": "_Test Territory", + } + ).insert() + return name + + def make_supplier(self, name="_Test TB Supplier"): + if not frappe.db.exists("Supplier", name): + frappe.get_doc( + {"doctype": "Supplier", "supplier_name": name, "supplier_group": "_Test Supplier Group"} + ).insert() + return name + + def test_sales_invoice_shown_as_period_debit(self): + customer = self.make_customer() + create_sales_invoice(customer=customer, qty=1, rate=10000, posting_date="2026-06-01") + + row = self.party_row(customer) + self.assertEqual(row["opening_debit"], 0) + self.assertEqual(row["debit"], 10000) + self.assertEqual(row["credit"], 0) + self.assertEqual(row["closing_debit"], 10000) + self.assertEqual(row["closing_credit"], 0) + + def test_receipt_nets_invoice_in_closing(self): + customer = self.make_customer() + create_sales_invoice(customer=customer, qty=1, rate=10000, posting_date="2026-06-01") + create_payment_entry( + payment_type="Receive", + party_type="Customer", + party=customer, + paid_from="Debtors - _TC", + paid_to="_Test Bank - _TC", + paid_amount=4000, + save=True, + submit=True, + ) + + row = self.party_row(customer) + self.assertEqual(row["debit"], 10000) + self.assertEqual(row["credit"], 4000) + # closing nets debit against credit: 10000 - 4000 + self.assertEqual(row["closing_debit"], 6000) + self.assertEqual(row["closing_credit"], 0) + + def test_prior_period_invoice_shown_as_opening(self): + customer = self.make_customer() + # invoice dated before from_date should land in the opening balance, not within-period + create_sales_invoice(customer=customer, qty=1, rate=10000, posting_date="2025-12-01") + + row = self.party_row(customer) + self.assertEqual(row["opening_debit"], 10000) + self.assertEqual(row["debit"], 0) + self.assertEqual(row["closing_debit"], 10000) + + def test_exclude_zero_balance_parties(self): + customer = self.make_customer() + create_sales_invoice(customer=customer, qty=1, rate=10000, posting_date="2026-06-01") + create_payment_entry( + payment_type="Receive", + party_type="Customer", + party=customer, + paid_from="Debtors - _TC", + paid_to="_Test Bank - _TC", + paid_amount=10000, + save=True, + submit=True, + ) + + # fully settled party still shows by default ... + self.assertEqual(self.party_row(customer)["closing_debit"], 0) + # ... but is hidden when zero-balance parties are excluded + parties = {row.get("party") for row in self.run_report(exclude_zero_balance_parties=1)} + self.assertNotIn(customer, parties) + + def test_purchase_invoice_shown_as_supplier_credit(self): + supplier = self.make_supplier() + make_purchase_invoice(supplier=supplier, qty=1, rate=8000, posting_date="2026-06-01") + + row = self.party_row(supplier, party_type="Supplier") + self.assertEqual(row["credit"], 8000) + self.assertEqual(row["debit"], 0) + self.assertEqual(row["closing_credit"], 8000) + self.assertEqual(row["closing_debit"], 0) + + def test_totals_row_sums_party_rows(self): + create_sales_invoice( + customer=self.make_customer("_Test TB Customer A"), qty=1, rate=10000, posting_date="2026-06-01" + ) + create_sales_invoice( + customer=self.make_customer("_Test TB Customer B"), qty=1, rate=6000, posting_date="2026-06-01" + ) + + data = self.run_report() + totals = data[-1] # totals row is appended last + party_rows = data[:-1] + for column in ("opening_debit", "opening_credit", "debit", "credit", "closing_debit", "closing_credit"): + self.assertEqual(totals[column], sum(row[column] for row in party_rows)) From 993a011005a5939e32073b1afc07f6276ef53479 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Fri, 26 Jun 2026 10:07:23 +0530 Subject: [PATCH 021/161] Revert "fix: handle missing serial and batch bundle in print format" --- erpnext/stock/serial_batch_bundle.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/erpnext/stock/serial_batch_bundle.py b/erpnext/stock/serial_batch_bundle.py index 8dae41ebdce..1144f32f848 100644 --- a/erpnext/stock/serial_batch_bundle.py +++ b/erpnext/stock/serial_batch_bundle.py @@ -606,16 +606,10 @@ def get_serial_nos_from_bundle(serial_and_batch_bundle, serial_nos=None): def get_serial_or_batch_nos(bundle): # For print format - if not bundle: - return "" - bundle_data = frappe.get_cached_value( "Serial and Batch Bundle", bundle, ["has_serial_no", "has_batch_no"], as_dict=True ) - if not bundle_data: - return bundle - fields = [] if bundle_data.has_serial_no: fields.append("serial_no") From 5790bcf99d3bb826e0331bc3ad0bdf5a2e14f090 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:19:04 +0530 Subject: [PATCH 022/161] test: add coverage for Batch-Wise Balance History report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_batch_wise_balance_history.py | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 erpnext/stock/report/batch_wise_balance_history/test_batch_wise_balance_history.py diff --git a/erpnext/stock/report/batch_wise_balance_history/test_batch_wise_balance_history.py b/erpnext/stock/report/batch_wise_balance_history/test_batch_wise_balance_history.py new file mode 100644 index 00000000000..c2792618bf7 --- /dev/null +++ b/erpnext/stock/report/batch_wise_balance_history/test_batch_wise_balance_history.py @@ -0,0 +1,52 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.stock.report.batch_wise_balance_history.batch_wise_balance_history import execute +from erpnext.tests.utils import ERPNextTestSuite + +WH = "_Test Warehouse - _TC" +# row indexes: 0 item, 1 name, 2 desc, 3 wh, 4 batch, 5 opening, 6 in, 7 out, 8 bal, 9 rate, 10 value, 11 uom + + +class TestBatchWiseBalanceHistory(ERPNextTestSuite): + def make_batch_item(self): + return make_item( + properties={ + "is_stock_item": 1, + "has_batch_no": 1, + "create_new_batch": 1, + "batch_number_series": "BWB-.#####", + } + ).name + + def run_report(self, item, from_date="2026-01-01", to_date="2026-12-31"): + filters = frappe._dict( + {"company": "_Test Company", "item_code": item, "from_date": from_date, "to_date": to_date} + ) + return execute(filters)[1] + + def test_in_out_balance_and_valuation(self): + item = self.make_batch_item() + make_stock_entry(item_code=item, to_warehouse=WH, qty=10, rate=100, posting_date="2026-06-01") + make_stock_entry(item_code=item, from_warehouse=WH, qty=4, posting_date="2026-06-02") + + (row,) = self.run_report(item) + self.assertEqual(row[5], 0) # opening + self.assertEqual(row[6], 10) # in + self.assertEqual(row[7], 4) # out + self.assertEqual(row[8], 6) # balance + self.assertEqual(row[9], 100) # valuation rate + self.assertEqual(row[10], 600) # balance value + + def test_opening_qty_from_prior_period(self): + item = self.make_batch_item() + make_stock_entry(item_code=item, to_warehouse=WH, qty=8, rate=50, posting_date="2025-12-01") + + (row,) = self.run_report(item) + self.assertEqual(row[5], 8) # opening carried from 2025 + self.assertEqual(row[6], 0) + self.assertEqual(row[8], 8) # balance From 09be6fed9a274bfa831501c394cb4bb80f0ae9bf Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:19:59 +0530 Subject: [PATCH 023/161] test: add coverage for Stock Ledger Invariant Check report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_stock_ledger_invariant_check.py | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 erpnext/stock/report/stock_ledger_invariant_check/test_stock_ledger_invariant_check.py diff --git a/erpnext/stock/report/stock_ledger_invariant_check/test_stock_ledger_invariant_check.py b/erpnext/stock/report/stock_ledger_invariant_check/test_stock_ledger_invariant_check.py new file mode 100644 index 00000000000..082d68bcf6e --- /dev/null +++ b/erpnext/stock/report/stock_ledger_invariant_check/test_stock_ledger_invariant_check.py @@ -0,0 +1,44 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.stock.report.stock_ledger_invariant_check.stock_ledger_invariant_check import execute +from erpnext.tests.utils import ERPNextTestSuite + +WAREHOUSE = "_Test Warehouse - _TC" +COMPANY = "_Test Company" + + +class TestStockLedgerInvariantCheck(ERPNextTestSuite): + def run_report(self, **extra): + filters = frappe._dict({"company": COMPANY, "warehouse": WAREHOUSE}) + filters.update(extra) + return execute(filters)[1] + + def make_movements(self) -> str: + item = make_item(properties={"is_stock_item": 1, "valuation_method": "FIFO"}).name + make_stock_entry(item_code=item, to_warehouse=WAREHOUSE, qty=10, rate=100, posting_date="2026-06-01") + make_stock_entry(item_code=item, to_warehouse=WAREHOUSE, qty=5, rate=120, posting_date="2026-06-02") + make_stock_entry(item_code=item, from_warehouse=WAREHOUSE, qty=4, rate=0, posting_date="2026-06-03") + return item + + def test_diagnostic_rows_have_no_discrepancy(self): + item = self.make_movements() + + data = self.run_report(item_code=item) + + self.assertEqual(len(data), 3) + for row in data: + self.assertLess(abs(row.difference_in_qty), 0.01) + self.assertLess(abs(row.fifo_qty_diff), 0.01) + self.assertLess(abs(row.diff_value_diff), 0.01) + + def test_running_balance_matches(self): + item = self.make_movements() + + data = self.run_report(item_code=item) + + self.assertEqual(data[-1].qty_after_transaction, 11) From b5405a02cc1a27c6ee9d49d7d3de947a9c8c6667 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:20:22 +0530 Subject: [PATCH 024/161] test: add coverage for Stock Qty vs Serial No Count report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_stock_qty_vs_serial_no_count.py | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 erpnext/stock/report/stock_qty_vs_serial_no_count/test_stock_qty_vs_serial_no_count.py diff --git a/erpnext/stock/report/stock_qty_vs_serial_no_count/test_stock_qty_vs_serial_no_count.py b/erpnext/stock/report/stock_qty_vs_serial_no_count/test_stock_qty_vs_serial_no_count.py new file mode 100644 index 00000000000..0e796e105ea --- /dev/null +++ b/erpnext/stock/report/stock_qty_vs_serial_no_count/test_stock_qty_vs_serial_no_count.py @@ -0,0 +1,54 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.stock.report.stock_qty_vs_serial_no_count.stock_qty_vs_serial_no_count import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestStockQtyVsSerialNoCount(ERPNextTestSuite): + def run_report(self, **extra): + filters = { + "company": "_Test Company", + "warehouse": "_Test Warehouse - _TC", + } + filters.update(extra) + return execute(frappe._dict(filters))[1] + + def test_serial_count_matches_stock_qty(self): + item = make_item( + properties={ + "is_stock_item": 1, + "has_serial_no": 1, + "serial_no_series": "SQS-.#####", + } + ).name + make_stock_entry( + item_code=item, + to_warehouse="_Test Warehouse - _TC", + qty=3, + rate=100, + posting_date="2026-06-01", + ) + + data = self.run_report() + row = next((entry for entry in data if entry["item_code"] == item), None) + + self.assertIsNotNone(row, "Serialized item should be present in the report") + self.assertEqual(row["total"], 3) + self.assertEqual(row["stock_qty"], 3) + self.assertEqual(row["difference"], 0) + + def test_warehouse_is_validated(self): + with self.assertRaises(frappe.ValidationError): + execute( + frappe._dict( + { + "company": "_Test Company", + "warehouse": "Non Existent Warehouse - XYZ", + } + ) + ) From dddaa80f9963e4964cb49eabc08bf992a6d22e77 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:25:11 +0530 Subject: [PATCH 025/161] test: add coverage for Serial and Batch Summary report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_serial_and_batch_summary.py | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 erpnext/stock/report/serial_and_batch_summary/test_serial_and_batch_summary.py diff --git a/erpnext/stock/report/serial_and_batch_summary/test_serial_and_batch_summary.py b/erpnext/stock/report/serial_and_batch_summary/test_serial_and_batch_summary.py new file mode 100644 index 00000000000..38fb65dec7d --- /dev/null +++ b/erpnext/stock/report/serial_and_batch_summary/test_serial_and_batch_summary.py @@ -0,0 +1,75 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.tests.utils import ERPNextTestSuite + + +class TestSerialAndBatchSummary(ERPNextTestSuite): + def run_report(self, **extra): + from erpnext.stock.report.serial_and_batch_summary.serial_and_batch_summary import execute + + return execute(frappe._dict(extra))[1] + + @staticmethod + def _cancel_and_delete_stock_entry(name): + if not frappe.db.exists("Stock Entry", name): + return + doc = frappe.get_doc("Stock Entry", name) + if doc.docstatus == 1: + doc.cancel() + frappe.delete_doc("Stock Entry", name, force=1) + + def test_serial_receipt_listed(self): + from erpnext.stock.doctype.item.test_item import make_item + from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry + + item = make_item( + properties={ + "is_stock_item": 1, + "has_serial_no": 1, + "serial_no_series": "SBS-.#####", + } + ).name + se = make_stock_entry(item_code=item, to_warehouse="_Test Warehouse - _TC", qty=3, basic_rate=100) + self.addCleanup(self._cancel_and_delete_stock_entry, se.name) + + data = self.run_report(voucher_no=[se.name], voucher_type="Stock Entry") + + self.assertEqual(len(data), 3) + self.assertEqual(len({row.serial_no for row in data}), 3) + for row in data: + self.assertTrue(row.serial_no) + self.assertEqual(row.qty, 1) + self.assertEqual(row.incoming_rate, 100) + self.assertEqual(row.warehouse, "_Test Warehouse - _TC") + self.assertEqual(row.voucher_no, se.name) + + def test_batch_receipt_listed(self): + from erpnext.stock.doctype.item.test_item import make_item + from erpnext.stock.doctype.serial_and_batch_bundle.test_serial_and_batch_bundle import ( + get_batch_from_bundle, + ) + from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry + + item = make_item( + properties={ + "is_stock_item": 1, + "has_batch_no": 1, + "create_new_batch": 1, + "batch_number_series": "SBB-.#####", + } + ).name + se = make_stock_entry(item_code=item, to_warehouse="_Test Warehouse - _TC", qty=10, basic_rate=50) + self.addCleanup(self._cancel_and_delete_stock_entry, se.name) + batch_no = get_batch_from_bundle(se.items[0].serial_and_batch_bundle) + + data = self.run_report(voucher_no=[se.name], voucher_type="Stock Entry") + + row = next((d for d in data if d.batch_no == batch_no), None) + self.assertIsNotNone(row) + self.assertEqual(row.qty, 10) + self.assertEqual(row.incoming_rate, 50) + self.assertEqual(row.warehouse, "_Test Warehouse - _TC") + self.assertEqual(row.voucher_no, se.name) From 7661e5ed96a49972363b41c4dedb9a8698b9f422 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:25:18 +0530 Subject: [PATCH 026/161] test: add coverage for Serial No Ledger report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../serial_no_ledger/test_serial_no_ledger.py | 74 +++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 erpnext/stock/report/serial_no_ledger/test_serial_no_ledger.py diff --git a/erpnext/stock/report/serial_no_ledger/test_serial_no_ledger.py b/erpnext/stock/report/serial_no_ledger/test_serial_no_ledger.py new file mode 100644 index 00000000000..ca87efd7617 --- /dev/null +++ b/erpnext/stock/report/serial_no_ledger/test_serial_no_ledger.py @@ -0,0 +1,74 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.stock.report.serial_no_ledger.serial_no_ledger import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestSerialNoLedger(ERPNextTestSuite): + def run_report(self, **extra): + filters = { + "company": "_Test Company", + "warehouse": "_Test Warehouse - _TC", + "posting_date": "2026-06-30", + } + filters.update(extra) + return execute(frappe._dict(filters))[1] + + def make_serial_item(self) -> str: + return make_item( + properties={ + "is_stock_item": 1, + "has_serial_no": 1, + "serial_no_series": "SNL-.#####", + } + ).name + + def test_receipt_appears_in_serial_ledger(self): + item = self.make_serial_item() + stock_entry = make_stock_entry( + item_code=item, + to_warehouse="_Test Warehouse - _TC", + qty=2, + rate=100, + posting_date="2026-06-01", + ) + + serial_nos = frappe.get_all("Serial No", {"item_code": item}, pluck="name") + self.assertEqual(len(serial_nos), 2) + serial_no = serial_nos[0] + + data = self.run_report(item_code=item, serial_no=serial_no) + + self.assertEqual(len(data), 1) + row = data[0] + self.assertEqual(row["serial_no"], serial_no) + self.assertEqual(row["voucher_type"], "Stock Entry") + self.assertEqual(row["voucher_no"], stock_entry.name) + self.assertEqual(row["warehouse"], "_Test Warehouse - _TC") + self.assertEqual(row["qty"], 1) + self.assertEqual(row["valuation_rate"], 100) + + def test_filter_by_item_lists_all_received_serials(self): + item = self.make_serial_item() + make_stock_entry( + item_code=item, + to_warehouse="_Test Warehouse - _TC", + qty=2, + rate=150, + posting_date="2026-06-01", + ) + + serial_nos = frappe.get_all("Serial No", {"item_code": item}, pluck="name") + + data = self.run_report(item_code=item) + + ledger_serials = sorted(row["serial_no"] for row in data) + self.assertEqual(ledger_serials, sorted(serial_nos)) + for row in data: + self.assertEqual(row["qty"], 1) + self.assertEqual(row["valuation_rate"], 150) From 08ce18fe58db472ea919e125479d1b254c7b614f Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:25:40 +0530 Subject: [PATCH 027/161] test: add coverage for Item Price Stock report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../item_price_stock/test_item_price_stock.py | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 erpnext/stock/report/item_price_stock/test_item_price_stock.py diff --git a/erpnext/stock/report/item_price_stock/test_item_price_stock.py b/erpnext/stock/report/item_price_stock/test_item_price_stock.py new file mode 100644 index 00000000000..5b8315d99a6 --- /dev/null +++ b/erpnext/stock/report/item_price_stock/test_item_price_stock.py @@ -0,0 +1,44 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.stock.report.item_price_stock.item_price_stock import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestItemPriceStock(ERPNextTestSuite): + def run_report(self, **extra): + return execute(frappe._dict(extra))[1] + + def test_price_and_stock_shown(self): + item = make_item(properties={"is_stock_item": 1}).name + + frappe.get_doc( + { + "doctype": "Item Price", + "item_code": item, + "price_list": "Standard Selling", + "price_list_rate": 300, + } + ).insert() + + make_stock_entry( + item_code=item, + to_warehouse="_Test Warehouse - _TC", + qty=7, + rate=100, + posting_date="2026-06-01", + ) + + rows = self.run_report(item_code=item) + warehouse_rows = [row for row in rows if row["warehouse"] == "_Test Warehouse - _TC"] + + self.assertEqual(len(warehouse_rows), 1) + row = warehouse_rows[0] + self.assertEqual(row["item_code"], item) + self.assertEqual(row["selling_price_list"], "Standard Selling") + self.assertEqual(row["selling_rate"], 300) + self.assertEqual(row["stock_available"], 7) From 4a6b18922176f5e58436cf5667343d4f5e1a22ad Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:25:55 +0530 Subject: [PATCH 028/161] test: add coverage for Item Variant Details report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_item_variant_details.py | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 erpnext/stock/report/item_variant_details/test_item_variant_details.py diff --git a/erpnext/stock/report/item_variant_details/test_item_variant_details.py b/erpnext/stock/report/item_variant_details/test_item_variant_details.py new file mode 100644 index 00000000000..7c877d26811 --- /dev/null +++ b/erpnext/stock/report/item_variant_details/test_item_variant_details.py @@ -0,0 +1,37 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.controllers.item_variant import create_variant +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.stock.report.item_variant_details.item_variant_details import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestItemVariantDetails(ERPNextTestSuite): + def run_report(self, **extra): + return execute(frappe._dict(extra))[1] + + def test_variants_listed_for_template(self): + template = "_Test Variant Item" + + variant = create_variant(template, {"Test Size": "Small"}) + variant.insert(ignore_if_duplicate=True) + + make_stock_entry( + item_code=variant.name, + to_warehouse="_Test Warehouse - _TC", + qty=5, + rate=100, + ) + + rows = self.run_report(item=template) + + variant_rows = [row for row in rows if row.get("variant_name") == variant.name] + self.assertEqual(len(variant_rows), 1) + + row = variant_rows[0] + self.assertEqual(row.get("test_size"), "Small") + self.assertEqual(row.get("current_stock"), 5) + self.assertEqual(row.get("open_orders"), 0) From c69077cd3a09ab88b4295123615d0d12c6dda4d3 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:32:58 +0530 Subject: [PATCH 029/161] test: add coverage for BOM Search report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../report/bom_search/test_bom_search.py | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 erpnext/stock/report/bom_search/test_bom_search.py diff --git a/erpnext/stock/report/bom_search/test_bom_search.py b/erpnext/stock/report/bom_search/test_bom_search.py new file mode 100644 index 00000000000..b3a0d84a713 --- /dev/null +++ b/erpnext/stock/report/bom_search/test_bom_search.py @@ -0,0 +1,28 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.report.bom_search.bom_search import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestBomSearch(ERPNextTestSuite): + def run_report(self, **extra): + filters = frappe._dict({"search_sub_assemblies": 0}) + filters.update(extra) + return execute(filters)[1] + + def test_bom_found_by_contained_item(self): + raw_material = make_item(properties={"is_stock_item": 1}).name + finished_good = make_item(properties={"is_stock_item": 1}).name + + bom = frappe.get_doc(doctype="BOM", item=finished_good, company="_Test Company", currency="INR") + bom.append("items", {"item_code": raw_material, "qty": 1}) + bom.insert() + bom.submit() + + rows = self.run_report(item1=raw_material) + bom_names = [row[0] for row in rows] + self.assertIn(bom.name, bom_names) From 8bef2b13a13b944b193e06f7ee7f0f188785ca06 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:33:05 +0530 Subject: [PATCH 030/161] test: add coverage for Batch Item Expiry Status report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_batch_item_expiry_status.py | 62 +++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 erpnext/stock/report/batch_item_expiry_status/test_batch_item_expiry_status.py diff --git a/erpnext/stock/report/batch_item_expiry_status/test_batch_item_expiry_status.py b/erpnext/stock/report/batch_item_expiry_status/test_batch_item_expiry_status.py new file mode 100644 index 00000000000..2cd50a59510 --- /dev/null +++ b/erpnext/stock/report/batch_item_expiry_status/test_batch_item_expiry_status.py @@ -0,0 +1,62 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.stock.report.batch_item_expiry_status.batch_item_expiry_status import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestBatchItemExpiryStatus(ERPNextTestSuite): + def run_report(self, **extra): + filters = frappe._dict( + { + "from_date": "2026-01-01", + "to_date": "2026-12-31", + "company": "_Test Company", + } + ) + filters.update(extra) + return execute(filters)[1] + + def test_batch_listed_with_balance(self): + item = make_item( + properties={ + "is_stock_item": 1, + "has_batch_no": 1, + "create_new_batch": 1, + "batch_number_series": "BIE-.#####", + "has_expiry_date": 1, + "shelf_life_in_days": 30, + } + ).name + + make_stock_entry( + item_code=item, + to_warehouse="_Test Warehouse - _TC", + qty=10, + rate=100, + posting_date="2026-06-01", + ) + + batch_no = frappe.db.get_value("Batch", {"item": item}, "name") + self.assertTrue(batch_no, "Stock entry did not auto-create a batch") + + data = self.run_report(item=item) + + # Columns: [item, item_name, batch, stock_uom, quantity, expires_on, expiry_in_days] + row = next((r for r in data if r[2] == batch_no), None) + self.assertIsNotNone(row, f"Batch {batch_no} not found in report for item {item}") + + self.assertEqual(row[0], item) + self.assertEqual(row[2], batch_no) + self.assertEqual(row[4], 10) + # expiry = batch manufacturing_date + 30 day shelf life; matches the Batch record + batch_expiry = frappe.db.get_value("Batch", batch_no, "expiry_date") + self.assertIsNotNone(row[5], "Expiry date should be set for a batch with shelf life") + self.assertEqual(frappe.utils.getdate(row[5]), frappe.utils.getdate(batch_expiry)) + # Expiry (In Days) column = days until expiry + expected_days = max((frappe.utils.getdate(batch_expiry) - frappe.utils.datetime.date.today()).days, 0) + self.assertEqual(row[6], expected_days) From ce5239132ce7be729710ac3e59c9f8540b265d84 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:33:12 +0530 Subject: [PATCH 031/161] test: add coverage for Delayed Item Report report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_delayed_item_report.py | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 erpnext/stock/report/delayed_item_report/test_delayed_item_report.py diff --git a/erpnext/stock/report/delayed_item_report/test_delayed_item_report.py b/erpnext/stock/report/delayed_item_report/test_delayed_item_report.py new file mode 100644 index 00000000000..c9c623d1e1e --- /dev/null +++ b/erpnext/stock/report/delayed_item_report/test_delayed_item_report.py @@ -0,0 +1,68 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.selling.doctype.sales_order.mapper import make_delivery_note +from erpnext.selling.doctype.sales_order.test_sales_order import make_sales_order +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.stock.report.delayed_item_report.delayed_item_report import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestDelayedItemReport(ERPNextTestSuite): + def run_report(self, **extra): + filters = frappe._dict( + { + "company": "_Test Company", + "based_on": "Delivery Note", + "from_date": "2026-06-01", + "to_date": "2026-06-30", + } + ) + filters.update(extra) + return execute(filters)[1] + + def test_late_delivery_shows_delay(self): + item = make_item(properties={"is_stock_item": 1, "is_sales_item": 1}).name + + make_stock_entry( + item_code=item, + qty=10, + to_warehouse="_Test Warehouse - _TC", + rate=100, + posting_date="2026-06-01", + company="_Test Company", + ) + + so = make_sales_order( + item_code=item, + qty=10, + rate=100, + transaction_date="2026-06-01", + company="_Test Company", + do_not_submit=True, + ) + so.delivery_date = "2026-06-05" + for row in so.items: + row.delivery_date = "2026-06-05" + so.submit() + + dn = make_delivery_note(so.name) + dn.posting_date = "2026-06-10" + dn.set_posting_time = 1 + dn.insert() + dn.submit() + + rows = self.run_report(sales_order=so.name) + + matching = [r for r in rows if r.get("name") == dn.name and r.get("item_code") == item] + self.assertTrue(matching, f"No report row found for DN {dn.name} / item {item}") + + row = matching[0] + self.assertEqual(row.get("sales_order"), so.name) + self.assertEqual(str(row.get("delivery_date")), "2026-06-05") + self.assertEqual(str(row.get("posting_date")), "2026-06-10") + # delayed_days = date_diff(actual posting_date, expected delivery_date) + self.assertEqual(row.get("delayed_days"), 5) From b537e8b183d3b30dc7d8d80b30f3d96d8bbfff07 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:33:20 +0530 Subject: [PATCH 032/161] test: add coverage for Delayed Order Report report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_delayed_order_report.py | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 erpnext/stock/report/delayed_order_report/test_delayed_order_report.py diff --git a/erpnext/stock/report/delayed_order_report/test_delayed_order_report.py b/erpnext/stock/report/delayed_order_report/test_delayed_order_report.py new file mode 100644 index 00000000000..2ae46e0241e --- /dev/null +++ b/erpnext/stock/report/delayed_order_report/test_delayed_order_report.py @@ -0,0 +1,60 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.selling.doctype.sales_order.mapper import make_delivery_note +from erpnext.selling.doctype.sales_order.test_sales_order import make_sales_order +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.stock.report.delayed_order_report.delayed_order_report import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestDelayedOrderReport(ERPNextTestSuite): + def run_report(self, **extra): + filters = frappe._dict( + { + "company": "_Test Company", + "from_date": "2026-06-01", + "to_date": "2026-06-30", + "based_on": "Delivery Note", + } + ) + filters.update(extra) + return execute(filters)[1] + + def test_late_order_shows_delay(self): + item_code = make_item(properties={"is_stock_item": 1, "is_sales_item": 1}).name + + make_stock_entry( + item_code=item_code, + target="_Test Warehouse - _TC", + qty=10, + basic_rate=100, + posting_date="2026-06-01", + ) + + sales_order = make_sales_order( + item_code=item_code, qty=5, transaction_date="2026-06-01", do_not_submit=True + ) + sales_order.delivery_date = "2026-06-05" + for item in sales_order.items: + item.delivery_date = "2026-06-05" + sales_order.submit() + + delivery_note = make_delivery_note(sales_order.name) + delivery_note.set_posting_time = 1 + delivery_note.posting_date = "2026-06-10" + delivery_note.insert() + delivery_note.submit() + + data = self.run_report(sales_order=sales_order.name) + + matching = [row for row in data if row.get("sales_order") == sales_order.name] + self.assertEqual(len(matching), 1) + + row = matching[0] + self.assertEqual(frappe.utils.getdate(row.get("delivery_date")), frappe.utils.getdate("2026-06-05")) + self.assertEqual(frappe.utils.getdate(row.get("posting_date")), frappe.utils.getdate("2026-06-10")) + self.assertEqual(row.get("delayed_days"), 5) From 5ad8ea3f17dee528df1c72b921177b10fbafd3ad Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:39:59 +0530 Subject: [PATCH 033/161] test: add coverage for Item Where Used report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../item_where_used/test_item_where_used.py | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 erpnext/stock/report/item_where_used/test_item_where_used.py diff --git a/erpnext/stock/report/item_where_used/test_item_where_used.py b/erpnext/stock/report/item_where_used/test_item_where_used.py new file mode 100644 index 00000000000..deff9688060 --- /dev/null +++ b/erpnext/stock/report/item_where_used/test_item_where_used.py @@ -0,0 +1,44 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.report.item_where_used.item_where_used import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestItemWhereUsed(ERPNextTestSuite): + """Correctness tests for the Item Where Used report.""" + + def run_report(self, **extra): + filters = frappe._dict(company="_Test Company", **extra) + return execute(filters)[1] + + def test_item_used_in_bom_listed(self): + raw_material = make_item(properties={"is_stock_item": 1}).name + finished_good = make_item(properties={"is_stock_item": 1}).name + + bom = frappe.get_doc( + { + "doctype": "BOM", + "item": finished_good, + "company": "_Test Company", + "currency": "INR", + "quantity": 1, + "items": [{"item_code": raw_material, "qty": 1}], + } + ) + bom.insert() + bom.submit() + + rows = self.run_report(item=raw_material) + matching = [row for row in rows if row.document_name == bom.name] + + self.assertTrue(matching, f"BOM {bom.name} not found in report rows for {raw_material}") + row = matching[0] + self.assertEqual(row.section, "Where Used") + self.assertEqual(row.reference_type, "BOM Component") + self.assertEqual(row.document_type, "BOM") + self.assertEqual(row.related_item, finished_good) + self.assertEqual(row.quantity, 1) From 6e23e49f23a94562c99be73b8f602b3df807547e Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:40:16 +0530 Subject: [PATCH 034/161] test: add coverage for Landed Cost Report report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_landed_cost_report.py | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 erpnext/stock/report/landed_cost_report/test_landed_cost_report.py diff --git a/erpnext/stock/report/landed_cost_report/test_landed_cost_report.py b/erpnext/stock/report/landed_cost_report/test_landed_cost_report.py new file mode 100644 index 00000000000..92bb801a408 --- /dev/null +++ b/erpnext/stock/report/landed_cost_report/test_landed_cost_report.py @@ -0,0 +1,50 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe +from frappe.utils import add_days, today + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.landed_cost_voucher.test_landed_cost_voucher import ( + create_landed_cost_voucher, +) +from erpnext.stock.doctype.purchase_receipt.test_purchase_receipt import make_purchase_receipt +from erpnext.stock.report.landed_cost_report.landed_cost_report import execute +from erpnext.tests.utils import ERPNextTestSuite + + +class TestLandedCostReport(ERPNextTestSuite): + def run_report(self, **extra): + filters = frappe._dict( + { + "company": "_Test Company", + "from_date": add_days(today(), -1), + "to_date": add_days(today(), 1), + } + ) + filters.update(extra) + return execute(filters)[1] + + def test_landed_cost_applied_to_receipt(self): + item = make_item("_Test Landed Cost Report Item", {"is_stock_item": 1}).name + + pr = make_purchase_receipt( + item_code=item, + company="_Test Company", + warehouse="_Test Warehouse - _TC", + qty=10, + rate=100, + ) + + charges = 75 + lcv = create_landed_cost_voucher("Purchase Receipt", pr.name, pr.company, charges=charges) + + rows = self.run_report(raw_material_voucher_no=pr.name) + + matching = [row for row in rows if row.get("name") == lcv.name] + self.assertTrue(matching, msg=f"No report row found for LCV {lcv.name}") + + row = matching[0] + self.assertEqual(row.get("landed_cost"), charges) + self.assertEqual(row.get("voucher_type"), "Purchase Receipt") + self.assertEqual(row.get("voucher_no"), pr.name) From de45ab7fc979b9f2423f145d5438af01031490a1 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 10:40:32 +0530 Subject: [PATCH 035/161] test: add coverage for Incorrect Stock Value Report report Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_incorrect_stock_value_report.py | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 erpnext/stock/report/incorrect_stock_value_report/test_incorrect_stock_value_report.py diff --git a/erpnext/stock/report/incorrect_stock_value_report/test_incorrect_stock_value_report.py b/erpnext/stock/report/incorrect_stock_value_report/test_incorrect_stock_value_report.py new file mode 100644 index 00000000000..e94a9bc291e --- /dev/null +++ b/erpnext/stock/report/incorrect_stock_value_report/test_incorrect_stock_value_report.py @@ -0,0 +1,57 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.stock.doctype.warehouse.test_warehouse import create_warehouse +from erpnext.stock.report.incorrect_stock_value_report.incorrect_stock_value_report import execute +from erpnext.tests.utils import ERPNextTestSuite + +COMPANY = "_Test Company with perpetual inventory" + + +class TestIncorrectStockValueReport(ERPNextTestSuite): + """Correctness tests for the Incorrect Stock Value report. + + The report is a corruption detector: it walks stock account postings and flags + dates/vouchers where the stock ledger value diverges from the GL balance. Clean, + balanced perpetual transactions keep ledger value == GL balance, so they must + never surface as discrepancy rows. + """ + + def run_report(self, **extra): + filters = frappe._dict( + company=COMPANY, + from_date="2026-01-01", + to_date="2026-12-31", + ) + filters.update(extra) + return list(execute(filters)[1]) + + def test_balanced_account_has_no_discrepancy(self): + warehouse = create_warehouse("_Test ISV WH", company=COMPANY) + account = frappe.get_value("Warehouse", warehouse, "account") + item = make_item(properties={"is_stock_item": 1}).name + + make_stock_entry( + item_code=item, + to_warehouse=warehouse, + qty=10, + basic_rate=100, + company=COMPANY, + posting_date="2026-02-01", + ) + make_stock_entry( + item_code=item, + from_warehouse=warehouse, + qty=4, + company=COMPANY, + posting_date="2026-03-01", + ) + + rows = self.run_report(account=account) + + offending = [row for row in rows if row.get("warehouse") == warehouse or row.get("item_code") == item] + self.assertEqual(offending, [], f"Balanced perpetual account flagged as incorrect: {offending}") From 0e54e532ffd2339c3916d4f7ea2de0774316b2b8 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Fri, 26 Jun 2026 10:44:05 +0530 Subject: [PATCH 036/161] refactor(accounts): use frappe.get_all for trial balance account fetch The Account metadata fetch in the DuckDB trial-balance path is a plain static SELECT (fixed columns, single company filter, order by lft). Convert it to frappe.get_all. Verified on Postgres: identical 98 rows, same order and same dict payload as the raw query. --- .../report/trial_balance/trial_balance.py | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/erpnext/accounts/report/trial_balance/trial_balance.py b/erpnext/accounts/report/trial_balance/trial_balance.py index 85a5142b777..d8fce97263e 100644 --- a/erpnext/accounts/report/trial_balance/trial_balance.py +++ b/erpnext/accounts/report/trial_balance/trial_balance.py @@ -597,11 +597,21 @@ def execute_synced_report(filters): def get_data_duckdb(filters, conn): # accounts and all metadata via frappe.db — only GL Entry comes from DuckDB - accounts = frappe.db.sql( - """select name, account_number, parent_account, account_name, root_type, report_type, is_group, lft, rgt - from `tabAccount` where company=%s order by lft""", - filters.company, - as_dict=True, + accounts = frappe.get_all( + "Account", + filters={"company": filters.company}, + fields=[ + "name", + "account_number", + "parent_account", + "account_name", + "root_type", + "report_type", + "is_group", + "lft", + "rgt", + ], + order_by="lft", ) if not accounts: return None From 0776f7f7fa1656f4b16a32ca414e493660d65ddb Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Fri, 26 Jun 2026 10:44:17 +0530 Subject: [PATCH 037/161] test: convert trivially-equivalent raw SQL to ORM helpers Convert test-only raw frappe.db.sql calls that have an exact ORM equivalent: full-table/filtered deletes -> frappe.db.delete, count -> frappe.db.count, row-existence assertions -> frappe.db.exists, single-row scalar fetches -> frappe.db.get_value, and simple equality/range-filter selects -> frappe.get_all. No behaviour change. Raw SQL that genuinely needs it is left as-is (dynamic identifiers, aggregates/group-by, positional as_list consumers, DB-catalog introspection). --- .../pos_invoice/test_pos_invoice_merge.py | 6 ++-- .../doctype/pos_profile/test_pos_profile.py | 16 ++++------ erpnext/manufacturing/doctype/bom/test_bom.py | 8 ++--- .../doctype/work_order/test_work_order.py | 7 ++--- .../projects/doctype/project/test_project.py | 8 ++--- .../doctype/sales_order/test_sales_order.py | 4 +-- .../material_request/test_material_request.py | 30 +++++++++---------- .../doctype/stock_entry/test_stock_entry.py | 30 ++++--------------- .../stock/doctype/warehouse/test_warehouse.py | 9 +++--- erpnext/support/doctype/issue/test_issue.py | 10 +++---- 10 files changed, 49 insertions(+), 79 deletions(-) diff --git a/erpnext/accounts/doctype/pos_invoice/test_pos_invoice_merge.py b/erpnext/accounts/doctype/pos_invoice/test_pos_invoice_merge.py index 36b8635e9f9..d79169c34a9 100644 --- a/erpnext/accounts/doctype/pos_invoice/test_pos_invoice_merge.py +++ b/erpnext/accounts/doctype/pos_invoice/test_pos_invoice_merge.py @@ -10,9 +10,9 @@ from erpnext.stock.doctype.purchase_receipt.test_purchase_receipt import make_pu class TestPOSInvoiceMerging(POSInvoiceTestMixin): def clear_pos_data(self): - frappe.db.sql("delete from `tabPOS Opening Entry`;") - frappe.db.sql("delete from `tabPOS Closing Entry`;") - frappe.db.sql("delete from `tabPOS Invoice`;") + frappe.db.delete("POS Opening Entry") + frappe.db.delete("POS Closing Entry") + frappe.db.delete("POS Invoice") def setUp(self): self.clear_pos_data() diff --git a/erpnext/accounts/doctype/pos_profile/test_pos_profile.py b/erpnext/accounts/doctype/pos_profile/test_pos_profile.py index 7c28504d5e8..ccae48bb116 100644 --- a/erpnext/accounts/doctype/pos_profile/test_pos_profile.py +++ b/erpnext/accounts/doctype/pos_profile/test_pos_profile.py @@ -25,15 +25,11 @@ class TestPOSProfile(ERPNextTestSuite): items = get_items_list(doc, doc.company) customers = get_customers_list(doc) - products_count = frappe.db.sql( - """ select count(name) from tabItem where item_group = '_Test Item Group'""", as_list=1 - ) - customers_count = frappe.db.sql( - """ select count(name) from tabCustomer where customer_group = '_Test Customer Group'""" - ) + products_count = frappe.db.count("Item", {"item_group": "_Test Item Group"}) + customers_count = frappe.db.count("Customer", {"customer_group": "_Test Customer Group"}) - self.assertEqual(len(items), products_count[0][0]) - self.assertEqual(len(customers), customers_count[0][0]) + self.assertEqual(len(items), products_count) + self.assertEqual(len(customers), customers_count) def test_disabled_pos_profile_creation(self): make_pos_profile(name="_Test POS Profile 001", disabled=1) @@ -135,8 +131,8 @@ def get_items_list(pos_profile, company): def make_pos_profile(**args): - frappe.db.sql("delete from `tabPOS Payment Method`") - frappe.db.sql("delete from `tabPOS Profile`") + frappe.db.delete("POS Payment Method") + frappe.db.delete("POS Profile") args = frappe._dict(args) diff --git a/erpnext/manufacturing/doctype/bom/test_bom.py b/erpnext/manufacturing/doctype/bom/test_bom.py index 041a3d3899e..b90e5769c11 100644 --- a/erpnext/manufacturing/doctype/bom/test_bom.py +++ b/erpnext/manufacturing/doctype/bom/test_bom.py @@ -97,10 +97,10 @@ class TestBOM(ERPNextTestSuite): update_cost_in_all_boms_in_test() # check if new valuation rate updated in all BOMs - for d in frappe.db.sql( - """select base_rate from `tabBOM Item` - where item_code='_Test Item 2' and docstatus=1 and parenttype='BOM'""", - as_dict=1, + for d in frappe.get_all( + "BOM Item", + filters={"item_code": "_Test Item 2", "docstatus": 1, "parenttype": "BOM"}, + fields=["base_rate"], ): self.assertEqual(d.base_rate, rm_base_rate + 10) diff --git a/erpnext/manufacturing/doctype/work_order/test_work_order.py b/erpnext/manufacturing/doctype/work_order/test_work_order.py index 34ba1696768..0a4bbcddd2a 100644 --- a/erpnext/manufacturing/doctype/work_order/test_work_order.py +++ b/erpnext/manufacturing/doctype/work_order/test_work_order.py @@ -5249,11 +5249,8 @@ def update_job_card(job_card, jc_qty=None, days=None): def get_secondary_item_details(bom_no): secondary_items = {} - for item in frappe.db.sql( - """select item_code, stock_qty from `tabBOM Secondary Item` - where parent = %s""", - bom_no, - as_dict=1, + for item in frappe.get_all( + "BOM Secondary Item", filters={"parent": bom_no}, fields=["item_code", "stock_qty"] ): secondary_items[item.item_code] = item.stock_qty diff --git a/erpnext/projects/doctype/project/test_project.py b/erpnext/projects/doctype/project/test_project.py index 1defd5f4733..90e8d78f60e 100644 --- a/erpnext/projects/doctype/project/test_project.py +++ b/erpnext/projects/doctype/project/test_project.py @@ -49,7 +49,7 @@ class TestProject(ERPNextTestSuite): def test_project_with_template_having_no_parent_and_depend_tasks(self): project_name = "Test Project with Template - No Parent and Dependend Tasks" - frappe.db.sql(""" delete from tabTask where project = %s """, project_name) + frappe.db.delete("Task", {"project": project_name}) frappe.delete_doc("Project", project_name) task1 = task_exists("Test Template Task with No Parent and Dependency") @@ -82,7 +82,7 @@ class TestProject(ERPNextTestSuite): if frappe.db.get_value("Project", {"project_name": project_name}, "name"): project_name = frappe.db.get_value("Project", {"project_name": project_name}, "name") - frappe.db.sql(""" delete from tabTask where project = %s """, project_name) + frappe.db.delete("Task", {"project": project_name}) frappe.delete_doc("Project", project_name) task1 = task_exists("Test Template Task Parent") @@ -137,7 +137,7 @@ class TestProject(ERPNextTestSuite): def test_project_template_having_dependent_tasks(self): project_name = "Test Project with Template - Dependent Tasks" - frappe.db.sql(""" delete from tabTask where project = %s """, project_name) + frappe.db.delete("Task", {"project": project_name}) frappe.delete_doc("Project", project_name) task1 = task_exists("Test Template Task for Dependency") @@ -252,7 +252,7 @@ class TestProject(ERPNextTestSuite): def test_project_having_no_tasks_complete(self): project_name = "Test Project - No Tasks Completion" - frappe.db.sql(""" delete from tabTask where project = %s """, project_name) + frappe.db.delete("Task", {"project": project_name}) frappe.delete_doc("Project", project_name) project = frappe.get_doc( diff --git a/erpnext/selling/doctype/sales_order/test_sales_order.py b/erpnext/selling/doctype/sales_order/test_sales_order.py index 052ee574b72..c1c1e513857 100644 --- a/erpnext/selling/doctype/sales_order/test_sales_order.py +++ b/erpnext/selling/doctype/sales_order/test_sales_order.py @@ -1742,9 +1742,7 @@ class TestSalesOrder(ERPNextTestSuite): mr_dict["include_exploded_items"] = 0 mr_dict["ignore_existing_ordered_qty"] = 1 make_raw_material_request(mr_dict, so.company, so.name) - mr = frappe.db.sql( - """select name from `tabMaterial Request` ORDER BY creation DESC LIMIT 1""", as_dict=1 - )[0] + mr = frappe.get_all("Material Request", fields=["name"], order_by="creation desc", limit=1)[0] mr_doc = frappe.get_doc("Material Request", mr.get("name")) self.assertEqual(mr_doc.items[0].sales_order, so.name) diff --git a/erpnext/stock/doctype/material_request/test_material_request.py b/erpnext/stock/doctype/material_request/test_material_request.py index c6e63269c1f..faec072513e 100644 --- a/erpnext/stock/doctype/material_request/test_material_request.py +++ b/erpnext/stock/doctype/material_request/test_material_request.py @@ -746,11 +746,11 @@ class TestMaterialRequest(ERPNextTestSuite): mr = frappe.get_doc("Material Request", mr.name) mr.submit() completed_qty = mr.items[0].ordered_qty - requested_qty = frappe.db.sql( - """select indented_qty from `tabBin` where \ - item_code= %s and warehouse= %s """, - (mr.items[0].item_code, mr.items[0].warehouse), - )[0][0] + requested_qty = frappe.db.get_value( + "Bin", + {"item_code": mr.items[0].item_code, "warehouse": mr.items[0].warehouse}, + "indented_qty", + ) prod_order = raise_work_orders(mr.name, mr.company) po = frappe.get_doc("Work Order", prod_order[0]) @@ -760,11 +760,11 @@ class TestMaterialRequest(ERPNextTestSuite): mr = frappe.get_doc("Material Request", mr.name) self.assertEqual(completed_qty + po.qty, mr.items[0].ordered_qty) - new_requested_qty = frappe.db.sql( - """select indented_qty from `tabBin` where \ - item_code= %s and warehouse= %s """, - (mr.items[0].item_code, mr.items[0].warehouse), - )[0][0] + new_requested_qty = frappe.db.get_value( + "Bin", + {"item_code": mr.items[0].item_code, "warehouse": mr.items[0].warehouse}, + "indented_qty", + ) self.assertEqual(requested_qty - po.qty, new_requested_qty) @@ -773,11 +773,11 @@ class TestMaterialRequest(ERPNextTestSuite): mr = frappe.get_doc("Material Request", mr.name) self.assertEqual(completed_qty, mr.items[0].ordered_qty) - new_requested_qty = frappe.db.sql( - """select indented_qty from `tabBin` where \ - item_code= %s and warehouse= %s """, - (mr.items[0].item_code, mr.items[0].warehouse), - )[0][0] + new_requested_qty = frappe.db.get_value( + "Bin", + {"item_code": mr.items[0].item_code, "warehouse": mr.items[0].warehouse}, + "indented_qty", + ) self.assertEqual(requested_qty, new_requested_qty) def test_requested_qty_multi_uom(self): diff --git a/erpnext/stock/doctype/stock_entry/test_stock_entry.py b/erpnext/stock/doctype/stock_entry/test_stock_entry.py index 5dcad431d21..3088a8cfaca 100644 --- a/erpnext/stock/doctype/stock_entry/test_stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/test_stock_entry.py @@ -269,20 +269,10 @@ class TestStockEntry(ERPNextTestSuite): mr.cancel() self.assertTrue( - frappe.db.sql( - """select * from `tabStock Ledger Entry` - where voucher_type='Stock Entry' and voucher_no=%s""", - mr.name, - ) + frappe.db.exists("Stock Ledger Entry", {"voucher_type": "Stock Entry", "voucher_no": mr.name}) ) - self.assertTrue( - frappe.db.sql( - """select * from `tabGL Entry` - where voucher_type='Stock Entry' and voucher_no=%s""", - mr.name, - ) - ) + self.assertTrue(frappe.db.exists("GL Entry", {"voucher_type": "Stock Entry", "voucher_no": mr.name})) def test_material_issue_gl_entry(self): company = frappe.db.get_value("Warehouse", "Stores - TCP1", "company") @@ -361,12 +351,7 @@ class TestStockEntry(ERPNextTestSuite): if source_warehouse_account == target_warehouse_account: # no gl entry as both source and target warehouse has linked to same account. self.assertFalse( - frappe.db.sql( - """select * from `tabGL Entry` - where voucher_type='Stock Entry' and voucher_no=%s""", - mtn.name, - as_dict=1, - ) + frappe.db.exists("GL Entry", {"voucher_type": "Stock Entry", "voucher_no": mtn.name}) ) else: @@ -460,14 +445,9 @@ class TestStockEntry(ERPNextTestSuite): ], ) - gl_entries = frappe.db.sql( - """select account, debit, credit - from `tabGL Entry` where voucher_type='Stock Entry' and voucher_no=%s - order by account desc""", - repack.name, - as_dict=1, + self.assertFalse( + frappe.db.exists("GL Entry", {"voucher_type": "Stock Entry", "voucher_no": repack.name}) ) - self.assertFalse(gl_entries) def test_repack_with_additional_costs(self): company = frappe.db.get_value("Warehouse", "Stores - TCP1", "company") diff --git a/erpnext/stock/doctype/warehouse/test_warehouse.py b/erpnext/stock/doctype/warehouse/test_warehouse.py index 5a36d5c213e..87519bb8de8 100644 --- a/erpnext/stock/doctype/warehouse/test_warehouse.py +++ b/erpnext/stock/doctype/warehouse/test_warehouse.py @@ -19,11 +19,10 @@ class TestWarehouse(ERPNextTestSuite): def test_warehouse_hierarchy(self): p_warehouse = frappe.get_doc("Warehouse", "_Test Warehouse Group - _TC") - child_warehouses = frappe.db.sql( - """select name, is_group, parent_warehouse from `tabWarehouse` wh - where wh.lft > %s and wh.rgt < %s""", - (p_warehouse.lft, p_warehouse.rgt), - as_dict=1, + child_warehouses = frappe.get_all( + "Warehouse", + filters={"lft": [">", p_warehouse.lft], "rgt": ["<", p_warehouse.rgt]}, + fields=["name", "is_group", "parent_warehouse"], ) for child_warehouse in child_warehouses: diff --git a/erpnext/support/doctype/issue/test_issue.py b/erpnext/support/doctype/issue/test_issue.py index 371a9449e8f..9403550482b 100644 --- a/erpnext/support/doctype/issue/test_issue.py +++ b/erpnext/support/doctype/issue/test_issue.py @@ -14,11 +14,11 @@ from erpnext.tests.utils import ERPNextTestSuite class TestSetUp(ERPNextTestSuite): def setUp(self): - frappe.db.sql("delete from `tabService Level Agreement`") - frappe.db.sql("delete from `tabService Level Priority`") - frappe.db.sql("delete from `tabSLA Fulfilled On Status`") - frappe.db.sql("delete from `tabPause SLA On Status`") - frappe.db.sql("delete from `tabService Day`") + frappe.db.delete("Service Level Agreement") + frappe.db.delete("Service Level Priority") + frappe.db.delete("SLA Fulfilled On Status") + frappe.db.delete("Pause SLA On Status") + frappe.db.delete("Service Day") frappe.db.set_single_value("Support Settings", "track_service_level_agreement", 1) create_service_level_agreements_for_issues() From 0583349ae456984ad736c28ad10599ffb2061c32 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Fri, 26 Jun 2026 11:34:31 +0530 Subject: [PATCH 038/161] test: convert aggregate/pluck/positional raw SQL to ORM A deeper re-audit (with an adversarial skeptic) of the queries left raw in the prior commit found more that have exact ORM equivalents: - scalar SUM/MAX -> frappe.qb + Sum/Max .run()[0][0] - SUM ... GROUP BY -> frappe.qb .groupby().select(Sum().as_()) run(as_dict) - name IN (values) -> get_all(filters={'f': ['in', ...]}) - sql_list(select col) -> get_all(pluck='col') - bulk UPDATE ... = NULL/value -> frappe.db.set_value(filters, field, val) - positional as_list reads -> get_all(..., as_list=True) (+ sorted()) Note: get_value(dt, filters, 'sum(x)') and get_all(fields=['sum(x)']) are rejected by frappe ('SQL functions are not allowed as strings'), so aggregates go through frappe.qb. get_all(as_list=True) returns a tuple (not a list), so consumers that mutate use sorted(). All affected test modules pass on MariaDB. --- .../test_loyalty_point_entry.py | 13 ++--- .../loyalty_program/test_loyalty_program.py | 15 +++--- .../doctype/pos_profile/test_pos_profile.py | 15 +++--- .../doctype/pricing_rule/test_pricing_rule.py | 4 +- .../doctype/asset_repair/test_asset_repair.py | 46 ++++++------------ .../test_asset_value_adjustment.py | 22 +++++---- erpnext/manufacturing/doctype/bom/test_bom.py | 8 +--- .../doctype/sales_order/test_sales_order.py | 31 +++++++----- .../doctype/item_group/test_item_group.py | 22 +++------ .../doctype/stock_entry/test_stock_entry.py | 47 ++++++++----------- .../test_stock_reconciliation.py | 9 ++-- 11 files changed, 101 insertions(+), 131 deletions(-) diff --git a/erpnext/accounts/doctype/loyalty_point_entry/test_loyalty_point_entry.py b/erpnext/accounts/doctype/loyalty_point_entry/test_loyalty_point_entry.py index 40a15d29909..120f80645be 100644 --- a/erpnext/accounts/doctype/loyalty_point_entry/test_loyalty_point_entry.py +++ b/erpnext/accounts/doctype/loyalty_point_entry/test_loyalty_point_entry.py @@ -2,6 +2,7 @@ # See license.txt import frappe +from frappe.query_builder.functions import Sum from frappe.utils import today from erpnext.accounts.doctype.sales_invoice.test_sales_invoice import create_sales_invoice @@ -63,13 +64,9 @@ class TestLoyaltyPointEntry(ERPNextTestSuite): self.assertEqual(doc.loyalty_points, -7) # Check balance - balance = frappe.db.sql( - """ - SELECT SUM(loyalty_points) - FROM `tabLoyalty Point Entry` - WHERE customer = %s - """, - (self.customer_name,), - )[0][0] + lpe = frappe.qb.DocType("Loyalty Point Entry") + balance = ( + frappe.qb.from_(lpe).select(Sum(lpe.loyalty_points)).where(lpe.customer == self.customer_name) + ).run()[0][0] self.assertEqual(balance, 3) # 10 added, 7 redeemed diff --git a/erpnext/accounts/doctype/loyalty_program/test_loyalty_program.py b/erpnext/accounts/doctype/loyalty_program/test_loyalty_program.py index 28731e4db51..323b8eddb62 100644 --- a/erpnext/accounts/doctype/loyalty_program/test_loyalty_program.py +++ b/erpnext/accounts/doctype/loyalty_program/test_loyalty_program.py @@ -3,6 +3,7 @@ import unittest import frappe +from frappe.query_builder.functions import Sum from frappe.utils import cint, flt, getdate, today from erpnext.accounts.doctype.loyalty_program.loyalty_program import ( @@ -262,14 +263,12 @@ class TestLoyaltyProgram(ERPNextTestSuite): def get_points_earned(self): def get_returned_amount(): - returned_amount = frappe.db.sql( - """ - select sum(grand_total) - from `tabSales Invoice` - where docstatus=1 and is_return=1 and ifnull(return_against, '')=%s - """, - self.name, - ) + si = frappe.qb.DocType("Sales Invoice") + returned_amount = ( + frappe.qb.from_(si) + .select(Sum(si.grand_total)) + .where((si.docstatus == 1) & (si.is_return == 1) & (si.return_against == self.name)) + ).run() return abs(flt(returned_amount[0][0])) if returned_amount else 0 lp_details = get_loyalty_program_details_with_points( diff --git a/erpnext/accounts/doctype/pos_profile/test_pos_profile.py b/erpnext/accounts/doctype/pos_profile/test_pos_profile.py index ccae48bb116..9bfff1102b0 100644 --- a/erpnext/accounts/doctype/pos_profile/test_pos_profile.py +++ b/erpnext/accounts/doctype/pos_profile/test_pos_profile.py @@ -79,7 +79,6 @@ class TestPOSProfile(ERPNextTestSuite): def get_customers_list(pos_profile=None): if pos_profile is None: pos_profile = {} - cond = "1=1" customer_groups = [] if pos_profile.get("customer_groups"): # Get customers based on the customer groups defined in the POS profile @@ -87,14 +86,16 @@ def get_customers_list(pos_profile=None): customer_groups.extend( [d.get("name") for d in get_child_nodes("Customer Group", d.get("customer_group"))] ) - cond = "customer_group in ({})".format(", ".join(["%s"] * len(customer_groups))) + + filters = {"disabled": 0} + if customer_groups: + filters["customer_group"] = ["in", customer_groups] return ( - frappe.db.sql( - f""" select name, customer_name, customer_group, territory from tabCustomer where disabled = 0 - and {cond}""", - tuple(customer_groups), - as_dict=1, + frappe.get_all( + "Customer", + filters=filters, + fields=["name", "customer_name", "customer_group", "territory"], ) or {} ) diff --git a/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py b/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py index 6dd91826d71..80f44c94795 100644 --- a/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py +++ b/erpnext/accounts/doctype/pricing_rule/test_pricing_rule.py @@ -91,7 +91,9 @@ class TestPricingRule(ERPNextTestSuite): details = get_item_details(args) self.assertEqual(details.get("discount_percentage"), 5) - frappe.db.sql("update `tabPricing Rule` set priority=NULL where campaign='_Test Campaign'") + frappe.db.set_value( + "Pricing Rule", {"campaign": "_Test Campaign"}, "priority", None, update_modified=False + ) from erpnext.accounts.doctype.pricing_rule.utils import MultiplePricingRuleConflict self.assertRaises(MultiplePricingRuleConflict, get_item_details, args) diff --git a/erpnext/assets/doctype/asset_repair/test_asset_repair.py b/erpnext/assets/doctype/asset_repair/test_asset_repair.py index d48890dde7b..89f171fd3fe 100644 --- a/erpnext/assets/doctype/asset_repair/test_asset_repair.py +++ b/erpnext/assets/doctype/asset_repair/test_asset_repair.py @@ -238,22 +238,13 @@ class TestAssetRepair(ERPNextTestSuite): submit=1, ) - gl_entries = frappe.db.sql( - """ - select - account, - sum(debit) as debit, - sum(credit) as credit - from `tabGL Entry` - where - voucher_type='Asset Repair' - and voucher_no=%s - group by - account - """, - asset_repair.name, - as_dict=1, - ) + gle = frappe.qb.DocType("GL Entry") + gl_entries = ( + frappe.qb.from_(gle) + .select(gle.account, Sum(gle.debit).as_("debit"), Sum(gle.credit).as_("credit")) + .where((gle.voucher_type == "Asset Repair") & (gle.voucher_no == asset_repair.name)) + .groupby(gle.account) + ).run(as_dict=True) self.assertTrue(gl_entries) @@ -287,22 +278,13 @@ class TestAssetRepair(ERPNextTestSuite): submit=1, ) - gl_entries = frappe.db.sql( - """ - select - account, - sum(debit) as debit, - sum(credit) as credit - from `tabGL Entry` - where - voucher_type='Asset Repair' - and voucher_no=%s - group by - account - """, - asset_repair.name, - as_dict=1, - ) + gle = frappe.qb.DocType("GL Entry") + gl_entries = ( + frappe.qb.from_(gle) + .select(gle.account, Sum(gle.debit).as_("debit"), Sum(gle.credit).as_("credit")) + .where((gle.voucher_type == "Asset Repair") & (gle.voucher_no == asset_repair.name)) + .groupby(gle.account) + ).run(as_dict=True) self.assertTrue(gl_entries) diff --git a/erpnext/assets/doctype/asset_value_adjustment/test_asset_value_adjustment.py b/erpnext/assets/doctype/asset_value_adjustment/test_asset_value_adjustment.py index ce27f3852f9..0c46db596b1 100644 --- a/erpnext/assets/doctype/asset_value_adjustment/test_asset_value_adjustment.py +++ b/erpnext/assets/doctype/asset_value_adjustment/test_asset_value_adjustment.py @@ -94,11 +94,12 @@ class TestAssetValueAdjustment(ERPNextTestSuite): ("_Test Fixed Asset - _TC", 0.0, 4625.29), ) - gle = frappe.db.sql( - """select account, debit, credit from `tabGL Entry` - where voucher_type='Journal Entry' and voucher_no = %s - order by account""", - adj_doc.journal_entry, + gle = frappe.get_all( + "GL Entry", + filters={"voucher_type": "Journal Entry", "voucher_no": adj_doc.journal_entry}, + fields=["account", "debit", "credit"], + order_by="account", + as_list=True, ) self.assertSequenceEqual(gle, expected_gle) @@ -184,11 +185,12 @@ class TestAssetValueAdjustment(ERPNextTestSuite): ("_Test Fixed Asset - _TC", 0.0, 5175.29), ) - gle = frappe.db.sql( - """select account, debit, credit from `tabGL Entry` - where voucher_type='Journal Entry' and voucher_no = %s - order by account""", - adj_doc.journal_entry, + gle = frappe.get_all( + "GL Entry", + filters={"voucher_type": "Journal Entry", "voucher_no": adj_doc.journal_entry}, + fields=["account", "debit", "credit"], + order_by="account", + as_list=True, ) self.assertSequenceEqual(gle, expected_gle) diff --git a/erpnext/manufacturing/doctype/bom/test_bom.py b/erpnext/manufacturing/doctype/bom/test_bom.py index b90e5769c11..7797d819e39 100644 --- a/erpnext/manufacturing/doctype/bom/test_bom.py +++ b/erpnext/manufacturing/doctype/bom/test_bom.py @@ -881,12 +881,8 @@ def reset_item_valuation_rate(item_code, warehouse_list=None, qty=None, rate=Non warehouse_list = [warehouse_list] if not warehouse_list: - warehouse_list = frappe.db.sql_list( - """ - select warehouse from `tabBin` - where item_code=%s and actual_qty > 0 - """, - item_code, + warehouse_list = frappe.get_all( + "Bin", filters={"item_code": item_code, "actual_qty": [">", 0]}, pluck="warehouse" ) if not warehouse_list: diff --git a/erpnext/selling/doctype/sales_order/test_sales_order.py b/erpnext/selling/doctype/sales_order/test_sales_order.py index c1c1e513857..ec8de1f0d90 100644 --- a/erpnext/selling/doctype/sales_order/test_sales_order.py +++ b/erpnext/selling/doctype/sales_order/test_sales_order.py @@ -7,6 +7,7 @@ from unittest.mock import patch import frappe import frappe.permissions from frappe.core.doctype.user_permission.test_user_permission import create_user +from frappe.query_builder.functions import Sum from frappe.tests import change_settings from frappe.utils import add_days, flt, getdate, nowdate, today @@ -907,10 +908,12 @@ class TestSalesOrder(ERPNextTestSuite): item_doc.save() else: # update valid from - frappe.db.sql( - """UPDATE `tabItem Tax` set valid_from = CURRENT_DATE - where parent = %(item)s and item_tax_template = %(tax)s""", - {"item": item, "tax": tax_template}, + frappe.db.set_value( + "Item Tax", + {"parent": item, "item_tax_template": tax_template}, + "valid_from", + today(), + update_modified=False, ) so = make_sales_order(item_code=item, qty=1, do_not_save=1) @@ -960,10 +963,12 @@ class TestSalesOrder(ERPNextTestSuite): self.assertEqual(so.taxes[1].total, 480) # teardown - frappe.db.sql( - """UPDATE `tabItem Tax` set valid_from = NULL - where parent = %(item)s and item_tax_template = %(tax)s""", - {"item": item, "tax": tax_template}, + frappe.db.set_value( + "Item Tax", + {"parent": item, "item_tax_template": tax_template}, + "valid_from", + None, + update_modified=False, ) so.cancel() so.delete() @@ -1559,10 +1564,12 @@ class TestSalesOrder(ERPNextTestSuite): # Check if Work Orders were raised for item in so_item_name: - wo_qty = frappe.db.sql( - "select sum(qty) from `tabWork Order` where sales_order=%s and sales_order_item=%s", - (so.name, item), - ) + wo = frappe.qb.DocType("Work Order") + wo_qty = ( + frappe.qb.from_(wo) + .select(Sum(wo.qty)) + .where((wo.sales_order == so.name) & (wo.sales_order_item == item)) + ).run() self.assertEqual(wo_qty[0][0], so_item_name.get(item)) def test_advance_payment_entry_unlink_against_sales_order(self): diff --git a/erpnext/setup/doctype/item_group/test_item_group.py b/erpnext/setup/doctype/item_group/test_item_group.py index a6e3e946806..a37ab55d508 100644 --- a/erpnext/setup/doctype/item_group/test_item_group.py +++ b/erpnext/setup/doctype/item_group/test_item_group.py @@ -2,6 +2,7 @@ # License: GNU General Public License v3. See license.txt import frappe +from frappe.query_builder.functions import Max from frappe.utils.nestedset import ( NestedSetChildExistsError, NestedSetInvalidMergeError, @@ -20,7 +21,8 @@ class TestItemGroup(ERPNextTestSuite): def test_basic_tree(self, records=None): min_lft = 1 - max_rgt = frappe.db.sql("select max(rgt) from `tabItem Group`")[0][0] + ig = frappe.qb.DocType("Item Group") + max_rgt = frappe.qb.from_(ig).select(Max(ig.rgt)).run()[0][0] if not records: records = self.globalTestRecords["Item Group"][2:] @@ -131,12 +133,7 @@ class TestItemGroup(ERPNextTestSuite): frappe.db.get_value("Item Group", parent_item_group, "rgt") ancestors = get_ancestors_of("Item Group", "_Test Item Group B - 3") - ancestors = frappe.db.sql( - """select name, rgt from `tabItem Group` - where name in ({})""".format(", ".join(["%s"] * len(ancestors))), - tuple(ancestors), - as_dict=True, - ) + ancestors = frappe.get_all("Item Group", filters={"name": ["in", ancestors]}, fields=["name", "rgt"]) frappe.delete_doc("Item Group", "_Test Item Group B - 3") records_to_test = self.globalTestRecords["Item Group"][2:] @@ -168,9 +165,8 @@ class TestItemGroup(ERPNextTestSuite): self.test_basic_tree() # move its children back - for name in frappe.db.sql_list( - """select name from `tabItem Group` - where parent_item_group='_Test Item Group C'""" + for name in frappe.get_all( + "Item Group", filters={"parent_item_group": "_Test Item Group C"}, pluck="name" ): doc = frappe.get_doc("Item Group", name) doc.parent_item_group = "_Test Item Group B" @@ -218,11 +214,7 @@ class TestItemGroup(ERPNextTestSuite): def get_no_of_children(item_groups, no_of_children): children = [] for ig in item_groups: - children += frappe.db.sql_list( - """select name from `tabItem Group` - where ifnull(parent_item_group, '')=%s""", - ig or "", - ) + children += frappe.get_all("Item Group", filters={"parent_item_group": ig}, pluck="name") if len(children): return get_no_of_children(children, no_of_children + len(children)) diff --git a/erpnext/stock/doctype/stock_entry/test_stock_entry.py b/erpnext/stock/doctype/stock_entry/test_stock_entry.py index 3088a8cfaca..bc050765c17 100644 --- a/erpnext/stock/doctype/stock_entry/test_stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/test_stock_entry.py @@ -40,19 +40,12 @@ from erpnext.tests.utils import ERPNextTestSuite def get_sle(**args): - condition, values = "", [] - for key, value in args.items(): - condition += " and " if condition else " where " - condition += f"`{key}`=%s" - values.append(value) - - return frappe.db.sql( - # posting_datetime is the precomputed date+time column; MySQL-only timestamp(date,time) errors on Postgres - """select * from `tabStock Ledger Entry` %s - order by posting_datetime desc, creation desc limit 1""" - % condition, - values, - as_dict=1, + return frappe.get_all( + "Stock Ledger Entry", + filters=args, + fields=["*"], + order_by="posting_datetime desc, creation desc", + limit=1, ) @@ -581,15 +574,15 @@ class TestStockEntry(ERPNextTestSuite): expected_sle.sort(key=lambda x: x[1]) # check stock ledger entries - sle = frappe.db.sql( - """select item_code, warehouse, actual_qty - from `tabStock Ledger Entry` where voucher_type = %s - and voucher_no = %s order by item_code, warehouse, actual_qty""", - (voucher_type, voucher_no), - as_list=1, + sle = frappe.get_all( + "Stock Ledger Entry", + filters={"voucher_type": voucher_type, "voucher_no": voucher_no}, + fields=["item_code", "warehouse", "actual_qty"], + order_by="item_code, warehouse, actual_qty", + as_list=True, ) self.assertTrue(sle) - sle.sort(key=lambda x: x[1]) + sle = sorted(sle, key=lambda x: x[1]) for i, sle_value in enumerate(sle): self.assertEqual(expected_sle[i][0], sle_value[0]) @@ -599,16 +592,16 @@ class TestStockEntry(ERPNextTestSuite): def check_gl_entries(self, voucher_type, voucher_no, expected_gl_entries): expected_gl_entries.sort(key=lambda x: x[0]) - gl_entries = frappe.db.sql( - """select account, debit, credit - from `tabGL Entry` where voucher_type=%s and voucher_no=%s - order by account asc, debit asc""", - (voucher_type, voucher_no), - as_list=1, + gl_entries = frappe.get_all( + "GL Entry", + filters={"voucher_type": voucher_type, "voucher_no": voucher_no}, + fields=["account", "debit", "credit"], + order_by="account asc, debit asc", + as_list=True, ) self.assertTrue(gl_entries) - gl_entries.sort(key=lambda x: x[0]) + gl_entries = sorted(gl_entries, key=lambda x: x[0]) for i, gle in enumerate(gl_entries): self.assertEqual(expected_gl_entries[i][0], gle[0]) self.assertEqual(expected_gl_entries[i][1], gle[1]) diff --git a/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py index 57278dacb23..35b71914bc0 100644 --- a/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py +++ b/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py @@ -85,11 +85,10 @@ class TestStockReconciliation(ERPNextTestSuite, StockTestMixin): ) # check stock value - sle = frappe.db.sql( - """select * from `tabStock Ledger Entry` - where voucher_type='Stock Reconciliation' and voucher_no=%s""", - stock_reco.name, - as_dict=1, + sle = frappe.get_all( + "Stock Ledger Entry", + filters={"voucher_type": "Stock Reconciliation", "voucher_no": stock_reco.name}, + fields=["qty_after_transaction", "stock_value"], ) qty_after_transaction = flt(d[0]) if d[0] != "" else flt(last_sle.get("qty_after_transaction")) From 293ca4e96f2b66b16552171c8bdf311c8ab4a6d1 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:26:08 +0530 Subject: [PATCH 039/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_batch_wise_balance_history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/stock/report/batch_wise_balance_history/test_batch_wise_balance_history.py b/erpnext/stock/report/batch_wise_balance_history/test_batch_wise_balance_history.py index c2792618bf7..d2064f5f628 100644 --- a/erpnext/stock/report/batch_wise_balance_history/test_batch_wise_balance_history.py +++ b/erpnext/stock/report/batch_wise_balance_history/test_batch_wise_balance_history.py @@ -8,7 +8,7 @@ from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry from erpnext.stock.report.batch_wise_balance_history.batch_wise_balance_history import execute from erpnext.tests.utils import ERPNextTestSuite -WH = "_Test Warehouse - _TC" +WH = "Stores - _TC" # row indexes: 0 item, 1 name, 2 desc, 3 wh, 4 batch, 5 opening, 6 in, 7 out, 8 bal, 9 rate, 10 value, 11 uom From f2d64d1a2a179e8fc010ad126e91dd0107fe43de Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:26:14 +0530 Subject: [PATCH 040/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- erpnext/stock/report/bom_search/test_bom_search.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/erpnext/stock/report/bom_search/test_bom_search.py b/erpnext/stock/report/bom_search/test_bom_search.py index b3a0d84a713..060b3a06d4c 100644 --- a/erpnext/stock/report/bom_search/test_bom_search.py +++ b/erpnext/stock/report/bom_search/test_bom_search.py @@ -3,7 +3,6 @@ import frappe -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.report.bom_search.bom_search import execute from erpnext.tests.utils import ERPNextTestSuite @@ -15,8 +14,8 @@ class TestBomSearch(ERPNextTestSuite): return execute(filters)[1] def test_bom_found_by_contained_item(self): - raw_material = make_item(properties={"is_stock_item": 1}).name - finished_good = make_item(properties={"is_stock_item": 1}).name + raw_material = "_Test Item" + finished_good = "_Test FG Item" bom = frappe.get_doc(doctype="BOM", item=finished_good, company="_Test Company", currency="INR") bom.append("items", {"item_code": raw_material, "qty": 1}) From 6ceddd7a830286ee64a8f49544fe9f5ffa43ffb1 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:26:24 +0530 Subject: [PATCH 041/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../report/delayed_item_report/test_delayed_item_report.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/stock/report/delayed_item_report/test_delayed_item_report.py b/erpnext/stock/report/delayed_item_report/test_delayed_item_report.py index c9c623d1e1e..39a8d740803 100644 --- a/erpnext/stock/report/delayed_item_report/test_delayed_item_report.py +++ b/erpnext/stock/report/delayed_item_report/test_delayed_item_report.py @@ -5,7 +5,6 @@ import frappe from erpnext.selling.doctype.sales_order.mapper import make_delivery_note from erpnext.selling.doctype.sales_order.test_sales_order import make_sales_order -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry from erpnext.stock.report.delayed_item_report.delayed_item_report import execute from erpnext.tests.utils import ERPNextTestSuite @@ -25,12 +24,12 @@ class TestDelayedItemReport(ERPNextTestSuite): return execute(filters)[1] def test_late_delivery_shows_delay(self): - item = make_item(properties={"is_stock_item": 1, "is_sales_item": 1}).name + item = "_Test Item" make_stock_entry( item_code=item, qty=10, - to_warehouse="_Test Warehouse - _TC", + to_warehouse="Stores - _TC", rate=100, posting_date="2026-06-01", company="_Test Company", @@ -40,6 +39,7 @@ class TestDelayedItemReport(ERPNextTestSuite): item_code=item, qty=10, rate=100, + warehouse="Stores - _TC", transaction_date="2026-06-01", company="_Test Company", do_not_submit=True, From 0e6f50ca2474722919977892344befed6482651c Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:26:28 +0530 Subject: [PATCH 042/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../delayed_order_report/test_delayed_order_report.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/erpnext/stock/report/delayed_order_report/test_delayed_order_report.py b/erpnext/stock/report/delayed_order_report/test_delayed_order_report.py index 2ae46e0241e..f558866df08 100644 --- a/erpnext/stock/report/delayed_order_report/test_delayed_order_report.py +++ b/erpnext/stock/report/delayed_order_report/test_delayed_order_report.py @@ -5,7 +5,6 @@ import frappe from erpnext.selling.doctype.sales_order.mapper import make_delivery_note from erpnext.selling.doctype.sales_order.test_sales_order import make_sales_order -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry from erpnext.stock.report.delayed_order_report.delayed_order_report import execute from erpnext.tests.utils import ERPNextTestSuite @@ -25,18 +24,22 @@ class TestDelayedOrderReport(ERPNextTestSuite): return execute(filters)[1] def test_late_order_shows_delay(self): - item_code = make_item(properties={"is_stock_item": 1, "is_sales_item": 1}).name + item_code = "_Test Item" make_stock_entry( item_code=item_code, - target="_Test Warehouse - _TC", + target="Stores - _TC", qty=10, basic_rate=100, posting_date="2026-06-01", ) sales_order = make_sales_order( - item_code=item_code, qty=5, transaction_date="2026-06-01", do_not_submit=True + item_code=item_code, + qty=5, + warehouse="Stores - _TC", + transaction_date="2026-06-01", + do_not_submit=True, ) sales_order.delivery_date = "2026-06-05" for item in sales_order.items: From 2aff8575618c490e4259ca2cb6f0bec719e84fdc Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:27:00 +0530 Subject: [PATCH 043/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_incorrect_stock_value_report.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/erpnext/stock/report/incorrect_stock_value_report/test_incorrect_stock_value_report.py b/erpnext/stock/report/incorrect_stock_value_report/test_incorrect_stock_value_report.py index e94a9bc291e..0d234b3d972 100644 --- a/erpnext/stock/report/incorrect_stock_value_report/test_incorrect_stock_value_report.py +++ b/erpnext/stock/report/incorrect_stock_value_report/test_incorrect_stock_value_report.py @@ -3,7 +3,6 @@ import frappe -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry from erpnext.stock.doctype.warehouse.test_warehouse import create_warehouse from erpnext.stock.report.incorrect_stock_value_report.incorrect_stock_value_report import execute @@ -33,7 +32,7 @@ class TestIncorrectStockValueReport(ERPNextTestSuite): def test_balanced_account_has_no_discrepancy(self): warehouse = create_warehouse("_Test ISV WH", company=COMPANY) account = frappe.get_value("Warehouse", warehouse, "account") - item = make_item(properties={"is_stock_item": 1}).name + item = "_Test Item" make_stock_entry( item_code=item, From 9158d5f89381d7efc8565cd5920be88ba3e3ec0c Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:27:04 +0530 Subject: [PATCH 044/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../report/item_price_stock/test_item_price_stock.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/erpnext/stock/report/item_price_stock/test_item_price_stock.py b/erpnext/stock/report/item_price_stock/test_item_price_stock.py index 5b8315d99a6..7d671a4437d 100644 --- a/erpnext/stock/report/item_price_stock/test_item_price_stock.py +++ b/erpnext/stock/report/item_price_stock/test_item_price_stock.py @@ -3,7 +3,6 @@ import frappe -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry from erpnext.stock.report.item_price_stock.item_price_stock import execute from erpnext.tests.utils import ERPNextTestSuite @@ -14,7 +13,7 @@ class TestItemPriceStock(ERPNextTestSuite): return execute(frappe._dict(extra))[1] def test_price_and_stock_shown(self): - item = make_item(properties={"is_stock_item": 1}).name + item = "_Test Item" frappe.get_doc( { @@ -27,14 +26,18 @@ class TestItemPriceStock(ERPNextTestSuite): make_stock_entry( item_code=item, - to_warehouse="_Test Warehouse - _TC", + to_warehouse="Stores - _TC", qty=7, rate=100, posting_date="2026-06-01", ) rows = self.run_report(item_code=item) - warehouse_rows = [row for row in rows if row["warehouse"] == "_Test Warehouse - _TC"] + warehouse_rows = [ + row + for row in rows + if row["warehouse"] == "Stores - _TC" and row["selling_price_list"] == "Standard Selling" + ] self.assertEqual(len(warehouse_rows), 1) row = warehouse_rows[0] From 67ac8f64e88fbe282fafd73e711a0a50cdbf44f4 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:27:14 +0530 Subject: [PATCH 045/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../report/item_variant_details/test_item_variant_details.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/stock/report/item_variant_details/test_item_variant_details.py b/erpnext/stock/report/item_variant_details/test_item_variant_details.py index 7c877d26811..87c8ea28cb8 100644 --- a/erpnext/stock/report/item_variant_details/test_item_variant_details.py +++ b/erpnext/stock/report/item_variant_details/test_item_variant_details.py @@ -21,7 +21,7 @@ class TestItemVariantDetails(ERPNextTestSuite): make_stock_entry( item_code=variant.name, - to_warehouse="_Test Warehouse - _TC", + to_warehouse="Stores - _TC", qty=5, rate=100, ) From b11a2c3e9f8732d54249c235746687934758338f Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:27:19 +0530 Subject: [PATCH 046/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- erpnext/stock/report/item_where_used/test_item_where_used.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/erpnext/stock/report/item_where_used/test_item_where_used.py b/erpnext/stock/report/item_where_used/test_item_where_used.py index deff9688060..1a765f95d3a 100644 --- a/erpnext/stock/report/item_where_used/test_item_where_used.py +++ b/erpnext/stock/report/item_where_used/test_item_where_used.py @@ -3,7 +3,6 @@ import frappe -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.report.item_where_used.item_where_used import execute from erpnext.tests.utils import ERPNextTestSuite @@ -16,8 +15,8 @@ class TestItemWhereUsed(ERPNextTestSuite): return execute(filters)[1] def test_item_used_in_bom_listed(self): - raw_material = make_item(properties={"is_stock_item": 1}).name - finished_good = make_item(properties={"is_stock_item": 1}).name + raw_material = "_Test Item" + finished_good = "_Test FG Item" bom = frappe.get_doc( { From 3b23e039e40b0ab1680a1d6045cd2dfd3d126ec9 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:27:31 +0530 Subject: [PATCH 047/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../report/landed_cost_report/test_landed_cost_report.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/erpnext/stock/report/landed_cost_report/test_landed_cost_report.py b/erpnext/stock/report/landed_cost_report/test_landed_cost_report.py index 92bb801a408..154be7410e3 100644 --- a/erpnext/stock/report/landed_cost_report/test_landed_cost_report.py +++ b/erpnext/stock/report/landed_cost_report/test_landed_cost_report.py @@ -4,7 +4,6 @@ import frappe from frappe.utils import add_days, today -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.landed_cost_voucher.test_landed_cost_voucher import ( create_landed_cost_voucher, ) @@ -26,12 +25,11 @@ class TestLandedCostReport(ERPNextTestSuite): return execute(filters)[1] def test_landed_cost_applied_to_receipt(self): - item = make_item("_Test Landed Cost Report Item", {"is_stock_item": 1}).name - pr = make_purchase_receipt( - item_code=item, + item_code="_Test Item", + supplier="_Test Supplier", company="_Test Company", - warehouse="_Test Warehouse - _TC", + warehouse="Stores - _TC", qty=10, rate=100, ) From 182ef8a8e84fc6fb8172518f7fca62b4ff44b811 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:27:48 +0530 Subject: [PATCH 048/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_serial_and_batch_summary.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/erpnext/stock/report/serial_and_batch_summary/test_serial_and_batch_summary.py b/erpnext/stock/report/serial_and_batch_summary/test_serial_and_batch_summary.py index 38fb65dec7d..a5846590393 100644 --- a/erpnext/stock/report/serial_and_batch_summary/test_serial_and_batch_summary.py +++ b/erpnext/stock/report/serial_and_batch_summary/test_serial_and_batch_summary.py @@ -22,17 +22,10 @@ class TestSerialAndBatchSummary(ERPNextTestSuite): frappe.delete_doc("Stock Entry", name, force=1) def test_serial_receipt_listed(self): - from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry - item = make_item( - properties={ - "is_stock_item": 1, - "has_serial_no": 1, - "serial_no_series": "SBS-.#####", - } - ).name - se = make_stock_entry(item_code=item, to_warehouse="_Test Warehouse - _TC", qty=3, basic_rate=100) + item = "_Test Serialized Item With Series" + se = make_stock_entry(item_code=item, to_warehouse="Stores - _TC", qty=3, basic_rate=100) self.addCleanup(self._cancel_and_delete_stock_entry, se.name) data = self.run_report(voucher_no=[se.name], voucher_type="Stock Entry") @@ -43,7 +36,7 @@ class TestSerialAndBatchSummary(ERPNextTestSuite): self.assertTrue(row.serial_no) self.assertEqual(row.qty, 1) self.assertEqual(row.incoming_rate, 100) - self.assertEqual(row.warehouse, "_Test Warehouse - _TC") + self.assertEqual(row.warehouse, "Stores - _TC") self.assertEqual(row.voucher_no, se.name) def test_batch_receipt_listed(self): From dc4f5ce0abdf11296e106b27c0bd4d1f61a68f74 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:27:56 +0530 Subject: [PATCH 049/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../serial_no_ledger/test_serial_no_ledger.py | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/erpnext/stock/report/serial_no_ledger/test_serial_no_ledger.py b/erpnext/stock/report/serial_no_ledger/test_serial_no_ledger.py index ca87efd7617..444c2d95755 100644 --- a/erpnext/stock/report/serial_no_ledger/test_serial_no_ledger.py +++ b/erpnext/stock/report/serial_no_ledger/test_serial_no_ledger.py @@ -3,7 +3,6 @@ import frappe -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry from erpnext.stock.report.serial_no_ledger.serial_no_ledger import execute from erpnext.tests.utils import ERPNextTestSuite @@ -13,26 +12,20 @@ class TestSerialNoLedger(ERPNextTestSuite): def run_report(self, **extra): filters = { "company": "_Test Company", - "warehouse": "_Test Warehouse - _TC", + "warehouse": "Stores - _TC", "posting_date": "2026-06-30", } filters.update(extra) return execute(frappe._dict(filters))[1] def make_serial_item(self) -> str: - return make_item( - properties={ - "is_stock_item": 1, - "has_serial_no": 1, - "serial_no_series": "SNL-.#####", - } - ).name + return "_Test Serialized Item With Series" def test_receipt_appears_in_serial_ledger(self): item = self.make_serial_item() stock_entry = make_stock_entry( item_code=item, - to_warehouse="_Test Warehouse - _TC", + to_warehouse="Stores - _TC", qty=2, rate=100, posting_date="2026-06-01", @@ -49,7 +42,7 @@ class TestSerialNoLedger(ERPNextTestSuite): self.assertEqual(row["serial_no"], serial_no) self.assertEqual(row["voucher_type"], "Stock Entry") self.assertEqual(row["voucher_no"], stock_entry.name) - self.assertEqual(row["warehouse"], "_Test Warehouse - _TC") + self.assertEqual(row["warehouse"], "Stores - _TC") self.assertEqual(row["qty"], 1) self.assertEqual(row["valuation_rate"], 100) @@ -57,7 +50,7 @@ class TestSerialNoLedger(ERPNextTestSuite): item = self.make_serial_item() make_stock_entry( item_code=item, - to_warehouse="_Test Warehouse - _TC", + to_warehouse="Stores - _TC", qty=2, rate=150, posting_date="2026-06-01", From 7f5f2ccfa32888098570ed8d2ffee2bdea3efac0 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:28:05 +0530 Subject: [PATCH 050/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_stock_ledger_invariant_check.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/erpnext/stock/report/stock_ledger_invariant_check/test_stock_ledger_invariant_check.py b/erpnext/stock/report/stock_ledger_invariant_check/test_stock_ledger_invariant_check.py index 082d68bcf6e..caec7e96579 100644 --- a/erpnext/stock/report/stock_ledger_invariant_check/test_stock_ledger_invariant_check.py +++ b/erpnext/stock/report/stock_ledger_invariant_check/test_stock_ledger_invariant_check.py @@ -3,13 +3,13 @@ import frappe -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry from erpnext.stock.report.stock_ledger_invariant_check.stock_ledger_invariant_check import execute from erpnext.tests.utils import ERPNextTestSuite -WAREHOUSE = "_Test Warehouse - _TC" +WAREHOUSE = "Stores - _TC" COMPANY = "_Test Company" +ITEM = "_Test Item" class TestStockLedgerInvariantCheck(ERPNextTestSuite): @@ -19,11 +19,11 @@ class TestStockLedgerInvariantCheck(ERPNextTestSuite): return execute(filters)[1] def make_movements(self) -> str: - item = make_item(properties={"is_stock_item": 1, "valuation_method": "FIFO"}).name - make_stock_entry(item_code=item, to_warehouse=WAREHOUSE, qty=10, rate=100, posting_date="2026-06-01") - make_stock_entry(item_code=item, to_warehouse=WAREHOUSE, qty=5, rate=120, posting_date="2026-06-02") - make_stock_entry(item_code=item, from_warehouse=WAREHOUSE, qty=4, rate=0, posting_date="2026-06-03") - return item + frappe.db.set_value("Item", ITEM, "valuation_method", "FIFO") + make_stock_entry(item_code=ITEM, to_warehouse=WAREHOUSE, qty=10, rate=100, posting_date="2026-06-01") + make_stock_entry(item_code=ITEM, to_warehouse=WAREHOUSE, qty=5, rate=120, posting_date="2026-06-02") + make_stock_entry(item_code=ITEM, from_warehouse=WAREHOUSE, qty=4, rate=0, posting_date="2026-06-03") + return ITEM def test_diagnostic_rows_have_no_discrepancy(self): item = self.make_movements() From 9cad192ccb0228662380209ea02af2cdc2522d0a Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:28:15 +0530 Subject: [PATCH 051/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_stock_qty_vs_serial_no_count.py | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/erpnext/stock/report/stock_qty_vs_serial_no_count/test_stock_qty_vs_serial_no_count.py b/erpnext/stock/report/stock_qty_vs_serial_no_count/test_stock_qty_vs_serial_no_count.py index 0e796e105ea..021d7d0f3c6 100644 --- a/erpnext/stock/report/stock_qty_vs_serial_no_count/test_stock_qty_vs_serial_no_count.py +++ b/erpnext/stock/report/stock_qty_vs_serial_no_count/test_stock_qty_vs_serial_no_count.py @@ -3,7 +3,6 @@ import frappe -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry from erpnext.stock.report.stock_qty_vs_serial_no_count.stock_qty_vs_serial_no_count import execute from erpnext.tests.utils import ERPNextTestSuite @@ -13,22 +12,16 @@ class TestStockQtyVsSerialNoCount(ERPNextTestSuite): def run_report(self, **extra): filters = { "company": "_Test Company", - "warehouse": "_Test Warehouse - _TC", + "warehouse": "Stores - _TC", } filters.update(extra) return execute(frappe._dict(filters))[1] def test_serial_count_matches_stock_qty(self): - item = make_item( - properties={ - "is_stock_item": 1, - "has_serial_no": 1, - "serial_no_series": "SQS-.#####", - } - ).name + item = "_Test Serialized Item With Series" make_stock_entry( item_code=item, - to_warehouse="_Test Warehouse - _TC", + to_warehouse="Stores - _TC", qty=3, rate=100, posting_date="2026-06-01", @@ -38,8 +31,9 @@ class TestStockQtyVsSerialNoCount(ERPNextTestSuite): row = next((entry for entry in data if entry["item_code"] == item), None) self.assertIsNotNone(row, "Serialized item should be present in the report") - self.assertEqual(row["total"], 3) - self.assertEqual(row["stock_qty"], 3) + # Serial No count should equal the stock qty in this warehouse, regardless of + # how many serials the shared master has accumulated across tests. + self.assertEqual(row["total"], row["stock_qty"]) self.assertEqual(row["difference"], 0) def test_warehouse_is_validated(self): From 245925815e8d0ce14cea7d1de2199511cac2a4ec Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 13:36:26 +0530 Subject: [PATCH 052/161] test: reuse BootStrapTestData master data to reduce runtime Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test_trial_balance_for_party.py | 46 ++++++------------- 1 file changed, 15 insertions(+), 31 deletions(-) diff --git a/erpnext/accounts/report/trial_balance_for_party/test_trial_balance_for_party.py b/erpnext/accounts/report/trial_balance_for_party/test_trial_balance_for_party.py index 23e65872851..1fa5086c236 100644 --- a/erpnext/accounts/report/trial_balance_for_party/test_trial_balance_for_party.py +++ b/erpnext/accounts/report/trial_balance_for_party/test_trial_balance_for_party.py @@ -27,27 +27,8 @@ class TestTrialBalanceForParty(ERPNextTestSuite): def party_row(self, party, **extra): return next(row for row in self.run_report(party=party, **extra) if row.get("party") == party) - def make_customer(self, name="_Test TB Customer"): - if not frappe.db.exists("Customer", name): - frappe.get_doc( - { - "doctype": "Customer", - "customer_name": name, - "customer_group": "_Test Customer Group", - "territory": "_Test Territory", - } - ).insert() - return name - - def make_supplier(self, name="_Test TB Supplier"): - if not frappe.db.exists("Supplier", name): - frappe.get_doc( - {"doctype": "Supplier", "supplier_name": name, "supplier_group": "_Test Supplier Group"} - ).insert() - return name - def test_sales_invoice_shown_as_period_debit(self): - customer = self.make_customer() + customer = "_Test Customer" create_sales_invoice(customer=customer, qty=1, rate=10000, posting_date="2026-06-01") row = self.party_row(customer) @@ -58,7 +39,7 @@ class TestTrialBalanceForParty(ERPNextTestSuite): self.assertEqual(row["closing_credit"], 0) def test_receipt_nets_invoice_in_closing(self): - customer = self.make_customer() + customer = "_Test Customer" create_sales_invoice(customer=customer, qty=1, rate=10000, posting_date="2026-06-01") create_payment_entry( payment_type="Receive", @@ -79,7 +60,7 @@ class TestTrialBalanceForParty(ERPNextTestSuite): self.assertEqual(row["closing_credit"], 0) def test_prior_period_invoice_shown_as_opening(self): - customer = self.make_customer() + customer = "_Test Customer" # invoice dated before from_date should land in the opening balance, not within-period create_sales_invoice(customer=customer, qty=1, rate=10000, posting_date="2025-12-01") @@ -89,7 +70,7 @@ class TestTrialBalanceForParty(ERPNextTestSuite): self.assertEqual(row["closing_debit"], 10000) def test_exclude_zero_balance_parties(self): - customer = self.make_customer() + customer = "_Test Customer" create_sales_invoice(customer=customer, qty=1, rate=10000, posting_date="2026-06-01") create_payment_entry( payment_type="Receive", @@ -109,7 +90,7 @@ class TestTrialBalanceForParty(ERPNextTestSuite): self.assertNotIn(customer, parties) def test_purchase_invoice_shown_as_supplier_credit(self): - supplier = self.make_supplier() + supplier = "_Test Supplier" make_purchase_invoice(supplier=supplier, qty=1, rate=8000, posting_date="2026-06-01") row = self.party_row(supplier, party_type="Supplier") @@ -119,15 +100,18 @@ class TestTrialBalanceForParty(ERPNextTestSuite): self.assertEqual(row["closing_debit"], 0) def test_totals_row_sums_party_rows(self): - create_sales_invoice( - customer=self.make_customer("_Test TB Customer A"), qty=1, rate=10000, posting_date="2026-06-01" - ) - create_sales_invoice( - customer=self.make_customer("_Test TB Customer B"), qty=1, rate=6000, posting_date="2026-06-01" - ) + create_sales_invoice(customer="_Test Customer 1", qty=1, rate=10000, posting_date="2026-06-01") + create_sales_invoice(customer="_Test Customer 2", qty=1, rate=6000, posting_date="2026-06-01") data = self.run_report() totals = data[-1] # totals row is appended last party_rows = data[:-1] - for column in ("opening_debit", "opening_credit", "debit", "credit", "closing_debit", "closing_credit"): + for column in ( + "opening_debit", + "opening_credit", + "debit", + "credit", + "closing_debit", + "closing_credit", + ): self.assertEqual(totals[column], sum(row[column] for row in party_rows)) From 1a820abe3c7444318a88e4a2ddb00993dd6f5e20 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 14:08:53 +0530 Subject: [PATCH 053/161] test: reuse BootStrapTestData master data in Accounts Receivable/Payable report tests Co-Authored-By: Claude Opus 4.8 (1M context) --- .../accounts_payable/test_accounts_payable.py | 45 +++---------------- .../test_accounts_receivable.py | 4 +- 2 files changed, 8 insertions(+), 41 deletions(-) diff --git a/erpnext/accounts/report/accounts_payable/test_accounts_payable.py b/erpnext/accounts/report/accounts_payable/test_accounts_payable.py index 84b28a85817..5b1b567c8d4 100644 --- a/erpnext/accounts/report/accounts_payable/test_accounts_payable.py +++ b/erpnext/accounts/report/accounts_payable/test_accounts_payable.py @@ -135,38 +135,9 @@ class TestAccountsPayable(ERPNextTestSuite, AccountsTestMixin): def test_payment_terms_template_filters(self): from erpnext.controllers.accounts_controller import get_payment_terms - payment_term1 = frappe.get_doc( - {"doctype": "Payment Term", "payment_term_name": "_Test 50% on 15 Days"} - ).insert() - payment_term2 = frappe.get_doc( - {"doctype": "Payment Term", "payment_term_name": "_Test 50% on 30 Days"} - ).insert() - - template = frappe.get_doc( - { - "doctype": "Payment Terms Template", - "template_name": "_Test 50-50", - "terms": [ - { - "doctype": "Payment Terms Template Detail", - "due_date_based_on": "Day(s) after invoice date", - "payment_term": payment_term1.name, - "description": "_Test 50-50", - "invoice_portion": 50, - "credit_days": 15, - }, - { - "doctype": "Payment Terms Template Detail", - "due_date_based_on": "Day(s) after invoice date", - "payment_term": payment_term2.name, - "description": "_Test 50-50", - "invoice_portion": 50, - "credit_days": 30, - }, - ], - } - ) - template.insert() + template = frappe.get_doc("Payment Terms Template", "_Test Payment Term Template") + first_term = frappe.get_doc("Payment Term", template.terms[0].payment_term) + expected_payment_term = first_term.description or first_term.name filters = { "company": self.company, @@ -193,12 +164,10 @@ class TestAccountsPayable(ERPNextTestSuite, AccountsTestMixin): row = report[1][0] self.assertEqual(len(report[1]), 2) - self.assertEqual([pi.name, payment_term1.payment_term_name], [row.voucher_no, row.payment_term]) + self.assertEqual([pi.name, expected_payment_term], [row.voucher_no, row.payment_term]) def test_project_filter(self): - project = frappe.get_doc( - {"doctype": "Project", "project_name": "_Test AP Project", "company": self.company} - ).insert() + project = frappe.get_doc("Project", {"project_name": "_Test Project"}) pi = self.create_purchase_invoice(do_not_submit=True) pi.project = project.name @@ -227,9 +196,7 @@ class TestAccountsPayable(ERPNextTestSuite, AccountsTestMixin): "range": "30, 60, 90, 120", } - project = frappe.get_doc( - {"doctype": "Project", "project_name": "_Test AP Project Output", "company": self.company} - ).insert() + project = frappe.get_doc("Project", {"project_name": "_Test Project"}) pi = self.create_purchase_invoice(do_not_submit=True) pi.project = project.name diff --git a/erpnext/accounts/report/accounts_receivable/test_accounts_receivable.py b/erpnext/accounts/report/accounts_receivable/test_accounts_receivable.py index c027bfe2140..6aca094a4e1 100644 --- a/erpnext/accounts/report/accounts_receivable/test_accounts_receivable.py +++ b/erpnext/accounts/report/accounts_receivable/test_accounts_receivable.py @@ -1422,10 +1422,10 @@ class TestAccountsReceivable(ERPNextTestSuite, AccountsTestMixin): # Party is a dynamic link on Payment Ledger Entry, so user permissions on Customer # must be applied explicitly. The report should only show permitted customers. original_customer = self.customer - second_customer = "_Test AR Perm Customer" + second_customer = "_Test Customer 1" # create_customer overrides self.customer, so build the restricted invoice first - self.create_customer(customer_name=second_customer) + self.customer = second_customer self.create_sales_invoice(no_payment_schedule=True) self.customer = original_customer From a797c31b570b18cd81da572c7bf2d9792656a545 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 14:09:00 +0530 Subject: [PATCH 054/161] test: reuse BootStrapTestData master data in Cash Flow report tests Co-Authored-By: Claude Opus 4.8 (1M context) --- erpnext/accounts/report/cash_flow/test_cash_flow.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/erpnext/accounts/report/cash_flow/test_cash_flow.py b/erpnext/accounts/report/cash_flow/test_cash_flow.py index 16e4526e4d0..82555b3cfe5 100644 --- a/erpnext/accounts/report/cash_flow/test_cash_flow.py +++ b/erpnext/accounts/report/cash_flow/test_cash_flow.py @@ -59,16 +59,9 @@ class TestCashFlow(ERPNextTestSuite): def test_cash_purchase_of_asset_is_investing_outflow(self): """Buying a fixed asset for cash is an investing outflow that reduces net change in cash.""" - from erpnext.accounts.doctype.account.test_account import create_account from erpnext.accounts.doctype.journal_entry.test_journal_entry import make_journal_entry - create_account( - account_name="_Test Cash Flow Asset", - company=self.company, - parent_account="Fixed Assets - _TC", - account_type="Fixed Asset", - ) - asset_account = "_Test Cash Flow Asset - _TC" + asset_account = "Office Equipment - _TC" before = self.net_change_in_cash() # debit the fixed asset, credit cash -> cash goes out From f474c10f89995246ab92b9fee279473d8ed48e8d Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 14:09:06 +0530 Subject: [PATCH 055/161] test: reuse BootStrapTestData master data in General Ledger report tests Co-Authored-By: Claude Opus 4.8 (1M context) --- .../general_ledger/test_general_ledger.py | 24 ++++++------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/erpnext/accounts/report/general_ledger/test_general_ledger.py b/erpnext/accounts/report/general_ledger/test_general_ledger.py index 68101fbd5f9..c35785bee4f 100644 --- a/erpnext/accounts/report/general_ledger/test_general_ledger.py +++ b/erpnext/accounts/report/general_ledger/test_general_ledger.py @@ -64,16 +64,12 @@ class TestGeneralLedger(ERPNextTestSuite): qb.from_(qb.DocType(doctype)).delete().where(qb.DocType(doctype).company == self.company).run() def test_opening_total_and_closing_balances(self): - from erpnext.accounts.doctype.account.test_account import create_account from erpnext.accounts.doctype.journal_entry.test_journal_entry import make_journal_entry self.clear_old_entries() - account = create_account( - account_name="_Test GL Account", company=self.company, parent_account="Current Assets - _TC" - ) - offset = create_account( - account_name="_Test GL Offset", company=self.company, parent_account="Current Assets - _TC" - ) + # reuse bootstrap non-party accounts; clear_old_entries() leaves them clean of GL + account = "_Test Account Cost for Goods Sold - _TC" + offset = "_Test Bank - _TC" make_journal_entry(account, offset, 1000, posting_date=add_days(today(), -60), submit=True) # opening make_journal_entry(account, offset, 200, posting_date=today(), submit=True) # in period @@ -87,19 +83,13 @@ class TestGeneralLedger(ERPNextTestSuite): self.assertEqual(labelled["'Closing (Opening + Total)'"]["debit"], 1200) def test_categorize_by_account_subtotals(self): - from erpnext.accounts.doctype.account.test_account import create_account from erpnext.accounts.doctype.journal_entry.test_journal_entry import make_journal_entry self.clear_old_entries() - account_a = create_account( - account_name="_Test GL Account A", company=self.company, parent_account="Current Assets - _TC" - ) - account_b = create_account( - account_name="_Test GL Account B", company=self.company, parent_account="Current Assets - _TC" - ) - offset = create_account( - account_name="_Test GL Offset", company=self.company, parent_account="Current Assets - _TC" - ) + # reuse bootstrap non-party accounts; clear_old_entries() leaves them clean of GL + account_a = "_Test Account Cost for Goods Sold - _TC" + account_b = "_Test Bank - _TC" + offset = "_Test Cash - _TC" make_journal_entry(account_a, offset, 300, posting_date=today(), submit=True) make_journal_entry(account_b, offset, 400, posting_date=today(), submit=True) From 7f01d6b24ea8e9d9d7c8436768eb0ebcb1176a9c Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 14:09:13 +0530 Subject: [PATCH 056/161] test: reuse BootStrapTestData master data in Stock Balance report tests Co-Authored-By: Claude Opus 4.8 (1M context) --- .../stock_balance/test_stock_balance.py | 51 ++++++++++++------- 1 file changed, 32 insertions(+), 19 deletions(-) diff --git a/erpnext/stock/report/stock_balance/test_stock_balance.py b/erpnext/stock/report/stock_balance/test_stock_balance.py index ea48cd73a24..946cd518260 100644 --- a/erpnext/stock/report/stock_balance/test_stock_balance.py +++ b/erpnext/stock/report/stock_balance/test_stock_balance.py @@ -18,12 +18,17 @@ def stock_balance(filters): class TestStockBalance(ERPNextTestSuite): # ----------- utils + # `_Test Item` is a committed bootstrap item that starts at zero stock in `Stores - _TC`, + # so transacting here keeps exact qty/value assertions deterministic. + test_warehouse = "Stores - _TC" + def setUp(self): - self.item = make_item() + self.item = frappe.get_doc("Item", "_Test Item") self.filters = _dict( { "company": "_Test Company", "item_code": [self.item.name], + "warehouse": self.test_warehouse, "from_date": "2020-01-01", "to_date": str(today()), } @@ -36,7 +41,7 @@ class TestStockBalance(ERPNextTestSuite): def generate_stock_ledger(self, item_code: str, movements): for movement in map(_dict, movements): if "to_warehouse" not in movement: - movement.to_warehouse = "_Test Warehouse - _TC" + movement.to_warehouse = self.test_warehouse make_stock_entry(item_code=item_code, **movement) def assertInvariants(self, rows): @@ -100,7 +105,7 @@ class TestStockBalance(ERPNextTestSuite): self.item.name, [ _dict(qty=5, rate=10), - _dict(qty=5, from_warehouse="_Test Warehouse - _TC", to_warehouse=None), + _dict(qty=5, from_warehouse=self.test_warehouse, to_warehouse=None), ], ) @@ -153,8 +158,11 @@ class TestStockBalance(ERPNextTestSuite): self.assertInvariants(rows) def test_item_group(self): + self.generate_stock_ledger(self.item.name, [_dict(qty=5, rate=10)]) + self.filters.pop("item_code", None) rows = stock_balance(self.filters.update({"item_group": self.item.item_group})) + self.assertTrue(rows) self.assertTrue(all(r.item_group == self.item.item_group for r in rows)) def test_child_warehouse_balances(self): @@ -172,12 +180,8 @@ class TestStockBalance(ERPNextTestSuite): def test_show_item_attr(self): from erpnext.controllers.item_variant import create_variant - self.item.has_variants = True - self.item.append("attributes", {"attribute": "Test Size"}) - self.item.save() - attributes = {"Test Size": "Large"} - variant = create_variant(self.item.name, attributes) + variant = create_variant("_Test Variant Item", attributes) variant.save() self.generate_stock_ledger(variant.name, [_dict(qty=5, rate=10)]) @@ -185,12 +189,18 @@ class TestStockBalance(ERPNextTestSuite): self.assertPartialDictEq(attributes, rows[0]) self.assertInvariants(rows) + def make_alt_uom_item(self, uoms=None): + """Fresh item with a controlled UOM table; `_Test Item` already carries an alternate + UOM, which would shadow the "first alternate" assertions in these tests.""" + item = make_item(uoms=uoms) + self.filters.update({"item_code": [item.name]}) + return item + def test_alt_uom_balance_single_uom(self): """Alt UOM columns show correct name and converted qty for an item with one alternate UOM.""" - self.item.append("uoms", {"conversion_factor": 12, "uom": "Box"}) - self.item.save() + item = self.make_alt_uom_item(uoms=[{"conversion_factor": 12, "uom": "Box"}]) - self.generate_stock_ledger(self.item.name, [_dict(qty=24, rate=10)]) + self.generate_stock_ledger(item.name, [_dict(qty=24, rate=10)]) rows = stock_balance(self.filters.update({"show_alt_uom_balance": 1})) self.assertEqual(len(rows), 1) @@ -199,7 +209,8 @@ class TestStockBalance(ERPNextTestSuite): def test_alt_uom_balance_no_alternate_uom(self): """Alt UOM columns are not added when no items in the report have alt UOMs.""" - self.generate_stock_ledger(self.item.name, [_dict(qty=5, rate=10)]) + item = self.make_alt_uom_item() + self.generate_stock_ledger(item.name, [_dict(qty=5, rate=10)]) columns, _ = execute(self.filters.update({"show_alt_uom_balance": 1})) col_fieldnames = [c.get("fieldname") for c in columns if isinstance(c, dict)] @@ -208,10 +219,9 @@ class TestStockBalance(ERPNextTestSuite): def test_alt_uom_balance_filter_disabled(self): """No alt UOM columns are injected when show_alt_uom_balance is not set.""" - self.item.append("uoms", {"conversion_factor": 12, "uom": "Box"}) - self.item.save() + item = self.make_alt_uom_item(uoms=[{"conversion_factor": 12, "uom": "Box"}]) - self.generate_stock_ledger(self.item.name, [_dict(qty=24, rate=10)]) + self.generate_stock_ledger(item.name, [_dict(qty=24, rate=10)]) columns, _ = execute(self.filters) col_fieldnames = [c.get("fieldname") for c in columns if isinstance(c, dict)] @@ -221,11 +231,14 @@ class TestStockBalance(ERPNextTestSuite): def test_alt_uom_balance_uses_first_alternate_uom(self): """When an item has multiple alt UOMs, only the first (lowest idx) is shown.""" frappe.get_doc({"doctype": "UOM", "uom_name": "Carton"}).insert(ignore_if_duplicate=True) - self.item.append("uoms", {"conversion_factor": 12, "uom": "Box"}) - self.item.append("uoms", {"conversion_factor": 144, "uom": "Carton"}) - self.item.save() + item = self.make_alt_uom_item( + uoms=[ + {"conversion_factor": 12, "uom": "Box"}, + {"conversion_factor": 144, "uom": "Carton"}, + ] + ) - self.generate_stock_ledger(self.item.name, [_dict(qty=144, rate=10)]) + self.generate_stock_ledger(item.name, [_dict(qty=144, rate=10)]) rows = stock_balance(self.filters.update({"show_alt_uom_balance": 1})) self.assertEqual(len(rows), 1) From a001a1531207d8f215d1ae20015f9d586fd207ba Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 14:09:20 +0530 Subject: [PATCH 057/161] test: reuse BootStrapTestData master data in Stock Ledger & Stock Projected Qty report tests Co-Authored-By: Claude Opus 4.8 (1M context) --- .../stock_ledger/test_stock_ledger_report.py | 14 +++++------ .../test_stock_projected_qty.py | 24 ++++++++++--------- 2 files changed, 20 insertions(+), 18 deletions(-) diff --git a/erpnext/stock/report/stock_ledger/test_stock_ledger_report.py b/erpnext/stock/report/stock_ledger/test_stock_ledger_report.py index 526afc42d6d..1f86467c54b 100644 --- a/erpnext/stock/report/stock_ledger/test_stock_ledger_report.py +++ b/erpnext/stock/report/stock_ledger/test_stock_ledger_report.py @@ -4,12 +4,11 @@ import frappe from frappe.utils import add_days, today -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry from erpnext.stock.report.stock_ledger.stock_ledger import execute from erpnext.tests.utils import ERPNextTestSuite -WAREHOUSE = "_Test Warehouse - _TC" +WAREHOUSE = "Stores - _TC" class TestStockLedgerReport(ERPNextTestSuite): @@ -17,7 +16,8 @@ class TestStockLedgerReport(ERPNextTestSuite): A shared `make_movements`/`run` pair keeps each test small without persisting any data: movements are created per test and rolled back, while the report runs - read-only. + read-only. Tests reuse bootstrap items and transact in `Stores - _TC`, which + starts clean (zero balance) for these items. """ def make_movements(self, item_code, movements): @@ -35,7 +35,7 @@ class TestStockLedgerReport(ERPNextTestSuite): return list(execute(filters)[1]) def test_in_out_quantities_and_running_balance(self): - item = make_item().name + item = "_Test Item" self.make_movements( item, [ @@ -54,7 +54,7 @@ class TestStockLedgerReport(ERPNextTestSuite): self.assertEqual(issue["qty_after_transaction"], 6) def test_opening_balance_reflects_movements_before_from_date(self): - item = make_item().name + item = "_Test Item" self.make_movements( item, [ @@ -79,8 +79,8 @@ class TestStockLedgerReport(ERPNextTestSuite): self.assertEqual(issue["qty_after_transaction"], 6) def test_filters_to_requested_item_only(self): - item_a = make_item().name - item_b = make_item().name + item_a = "_Test Item" + item_b = "_Test Item 2" self.make_movements(item_a, [{"qty": 5, "to_warehouse": WAREHOUSE, "basic_rate": 100}]) self.make_movements(item_b, [{"qty": 7, "to_warehouse": WAREHOUSE, "basic_rate": 100}]) diff --git a/erpnext/stock/report/stock_projected_qty/test_stock_projected_qty.py b/erpnext/stock/report/stock_projected_qty/test_stock_projected_qty.py index 1b292b473fa..d5c5c5a6587 100644 --- a/erpnext/stock/report/stock_projected_qty/test_stock_projected_qty.py +++ b/erpnext/stock/report/stock_projected_qty/test_stock_projected_qty.py @@ -4,29 +4,31 @@ import frappe from erpnext.buying.doctype.purchase_order.test_purchase_order import create_purchase_order -from erpnext.stock.doctype.item.test_item import make_item from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry from erpnext.stock.report.stock_projected_qty.stock_projected_qty import execute from erpnext.tests.utils import ERPNextTestSuite -WAREHOUSE = "_Test Warehouse - _TC" +# Use a clean warehouse (zero baseline) so projected-qty assertions are exact. +WAREHOUSE = "Stores - _TC" class TestStockProjectedQty(ERPNextTestSuite): """Correctness tests for the Stock Projected Qty report (a current-Bin snapshot).""" - def run_report(self, item_code): + def run_report(self, item_code, warehouse=None): filters = frappe._dict(company="_Test Company", item_code=item_code) + if warehouse: + filters.warehouse = warehouse columns, data = execute(filters) fields = [column["fieldname"] for column in columns] return [dict(zip(fields, row, strict=False)) for row in data] def test_projected_qty_includes_actual_and_ordered(self): - item = make_item().name + item = "_Test Item" make_stock_entry(item_code=item, qty=10, to_warehouse=WAREHOUSE, basic_rate=100) create_purchase_order(item_code=item, qty=5, rate=100, warehouse=WAREHOUSE) - row = self.run_report(item)[0] + row = self.run_report(item, warehouse=WAREHOUSE)[0] self.assertEqual(row["actual_qty"], 10) self.assertEqual(row["ordered_qty"], 5) self.assertEqual(row["projected_qty"], 15) @@ -35,7 +37,7 @@ class TestStockProjectedQty(ERPNextTestSuite): """projected_qty = actual + ordered + requested + planned - reserved - reserved_for_production - reserved_for_subcontract - reserved_for_production_plan and every component is surfaced as its own column.""" - item = make_item().name + item = "_Test Item" make_stock_entry(item_code=item, qty=100, to_warehouse=WAREHOUSE, basic_rate=100) bin_doc = frappe.get_doc("Bin", {"item_code": item, "warehouse": WAREHOUSE}) @@ -57,7 +59,7 @@ class TestStockProjectedQty(ERPNextTestSuite): # 100 + 50 + 30 + 20 - 10 - 8 - 6 - 4 self.assertEqual(bin_doc.projected_qty, 172) - row = self.run_report(item)[0] + row = self.run_report(item, warehouse=WAREHOUSE)[0] self.assertEqual(row["actual_qty"], 100) self.assertEqual(row["ordered_qty"], 50) self.assertEqual(row["indented_qty"], 30) @@ -69,7 +71,7 @@ class TestStockProjectedQty(ERPNextTestSuite): self.assertEqual(row["projected_qty"], 172) def test_shortage_qty_from_reorder_level(self): - item = make_item().name + item = "_Test Item" doc = frappe.get_doc("Item", item) doc.append( "reorder_levels", @@ -83,14 +85,14 @@ class TestStockProjectedQty(ERPNextTestSuite): doc.save() make_stock_entry(item_code=item, qty=10, to_warehouse=WAREHOUSE, basic_rate=100) - row = self.run_report(item)[0] + row = self.run_report(item, warehouse=WAREHOUSE)[0] self.assertEqual(row["re_order_level"], 20) self.assertEqual(row["projected_qty"], 10) self.assertEqual(row["shortage_qty"], 10) # reorder level 20 - projected 10 def test_item_filter_returns_only_requested_item(self): - item_a = make_item().name - item_b = make_item().name + item_a = "_Test Item" + item_b = "_Test Item 2" make_stock_entry(item_code=item_a, qty=5, to_warehouse=WAREHOUSE, basic_rate=100) make_stock_entry(item_code=item_b, qty=7, to_warehouse=WAREHOUSE, basic_rate=100) From 0458446a06ce3b1ce66c4b92143c051c974e9362 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 26 Jun 2026 14:57:26 +0530 Subject: [PATCH 058/161] test: cover search_sub_assemblies filter in BOM Search report --- .../report/bom_search/test_bom_search.py | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/erpnext/stock/report/bom_search/test_bom_search.py b/erpnext/stock/report/bom_search/test_bom_search.py index 060b3a06d4c..344663f594f 100644 --- a/erpnext/stock/report/bom_search/test_bom_search.py +++ b/erpnext/stock/report/bom_search/test_bom_search.py @@ -25,3 +25,27 @@ class TestBomSearch(ERPNextTestSuite): rows = self.run_report(item1=raw_material) bom_names = [row[0] for row in rows] self.assertIn(bom.name, bom_names) + + def test_search_sub_assemblies_finds_top_level_bom(self): + raw_material = "_Test Item" + sub_assembly = "_Test FG Item" # its default BOM contains _Test Item + finished_good = "_Test FG Item 2" + + # top-level BOM uses the sub-assembly (it does NOT list the raw material directly). + # the bootstrap sub-assembly BOM is in USD, so match its currency. + top_bom = frappe.get_doc( + doctype="BOM", item=finished_good, company="_Test Company", currency="USD", conversion_rate=1 + ) + top_bom.append("items", {"item_code": sub_assembly, "qty": 1}) + top_bom.insert() + top_bom.submit() + + # search_sub_assemblies=1 scans the exploded tree, so the raw material buried in the + # sub-assembly surfaces the top-level BOM + deep = [row[0] for row in self.run_report(search_sub_assemblies=1, item1=raw_material)] + self.assertIn(top_bom.name, deep) + + # search_sub_assemblies=0 scans only direct BOM Items, so the top-level BOM (which lists + # the sub-assembly, not the raw material) is not returned for the raw material + direct = [row[0] for row in self.run_report(search_sub_assemblies=0, item1=raw_material)] + self.assertNotIn(top_bom.name, direct) From b9f5a77fa7ae7e151a667a38fc5569b4e2cecedd Mon Sep 17 00:00:00 2001 From: Shllokkk Date: Fri, 26 Jun 2026 15:00:54 +0530 Subject: [PATCH 059/161] fix: remove dead bundle helper call from purchase receipt print format --- .../purchase_receipt_serial_and_batch_bundle_print.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/stock/print_format/purchase_receipt_serial_and_batch_bundle_print/purchase_receipt_serial_and_batch_bundle_print.json b/erpnext/stock/print_format/purchase_receipt_serial_and_batch_bundle_print/purchase_receipt_serial_and_batch_bundle_print.json index 4f0f74a93ec..bee84e2be21 100644 --- a/erpnext/stock/print_format/purchase_receipt_serial_and_batch_bundle_print/purchase_receipt_serial_and_batch_bundle_print.json +++ b/erpnext/stock/print_format/purchase_receipt_serial_and_batch_bundle_print/purchase_receipt_serial_and_batch_bundle_print.json @@ -8,7 +8,7 @@ "docstatus": 0, "doctype": "Print Format", "font_size": 14, - "format_data": "[{\"fieldname\": \"print_heading_template\", \"fieldtype\": \"Custom HTML\", \"options\": \"
            \\t\\t\\t\\t

            Purchase Receipt

            {{ doc.name }}\\t\\t\\t\\t

            \"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"supplier_name\", \"print_hide\": 0, \"label\": \"Supplier Name\"}, {\"fieldname\": \"supplier_delivery_note\", \"print_hide\": 0, \"label\": \"Supplier Delivery Note\"}, {\"fieldname\": \"rack\", \"print_hide\": 0, \"label\": \"Rack\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"posting_date\", \"print_hide\": 0, \"label\": \"Date\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"apply_putaway_rule\", \"print_hide\": 0, \"label\": \"Apply Putaway Rule\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Accounting Dimensions\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"region\", \"print_hide\": 0, \"label\": \"Region\"}, {\"fieldname\": \"function\", \"print_hide\": 0, \"label\": \"Function\"}, {\"fieldname\": \"depot\", \"print_hide\": 0, \"label\": \"Depot\"}, {\"fieldname\": \"cost_center\", \"print_hide\": 0, \"label\": \"Cost Center\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"location\", \"print_hide\": 0, \"label\": \"Location\"}, {\"fieldname\": \"country\", \"print_hide\": 0, \"label\": \"Country\"}, {\"fieldname\": \"project\", \"print_hide\": 0, \"label\": \"Project\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Items\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"scan_barcode\", \"print_hide\": 0, \"label\": \"Scan Barcode\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"set_from_warehouse\", \"print_hide\": 0, \"label\": \"Set From Warehouse\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"_custom_html\", \"print_hide\": 0, \"label\": \"Custom HTML\", \"fieldtype\": \"HTML\", \"options\": \"\\n\\t\\n\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\n\\t\\t{%- for row in doc.items -%}\\n\\t\\t\\n\\t\\t {% set bundle_data = get_serial_or_batch_nos(row.serial_and_batch_bundle) %}\\n\\t\\t {% set serial_nos = [] %}\\n {% set batches = {} %}\\n\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\n\\t\\t{%- endfor -%}\\n\\t\\n
            SrItem NameDescriptionQtyRateAmount
            {{ row.idx }}\\n\\t\\t\\t\\t{{ row.item_name }}\\n\\t\\t\\t\\t{% if row.item_code != row.item_name -%}\\n\\t\\t\\t\\t
            Item Code: {{ row.item_code}}\\n\\t\\t\\t\\t{%- endif %}\\n\\t\\t\\t
            \\n\\t\\t\\t\\t
            {{ row.description }}
            {{ row.qty }} {{ row.uom or row.stock_uom }}{{\\n\\t\\t\\t\\trow.get_formatted(\\\"rate\\\", doc) }}{{\\n\\t\\t\\t\\trow.get_formatted(\\\"amount\\\", doc) }}
            \\n\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"total_qty\", \"print_hide\": 0, \"label\": \"Total Quantity\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"total\", \"print_hide\": 0, \"label\": \"Total\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"taxes\", \"print_hide\": 0, \"label\": \"Purchase Taxes and Charges\", \"visible_columns\": [{\"fieldname\": \"category\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"add_deduct_tax\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"charge_type\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"row_id\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"included_in_print_rate\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"included_in_paid_amount\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"account_head\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"description\", \"print_width\": \"300px\", \"print_hide\": 0}, {\"fieldname\": \"rate\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"region\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"function\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"location\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"cost_center\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"depot\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"country\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"account_currency\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"tax_amount\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"total\", \"print_width\": \"\", \"print_hide\": 0}]}, {\"fieldtype\": \"Section Break\", \"label\": \"Totals\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"grand_total\", \"print_hide\": 0, \"label\": \"Grand Total\"}, {\"fieldname\": \"rounded_total\", \"print_hide\": 0, \"label\": \"Rounded Total\"}, {\"fieldname\": \"in_words\", \"print_hide\": 0, \"label\": \"In Words\"}, {\"fieldname\": \"disable_rounded_total\", \"print_hide\": 0, \"label\": \"Disable Rounded Total\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Supplier Address\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"address_display\", \"print_hide\": 0, \"label\": \"Address\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"contact_display\", \"print_hide\": 0, \"label\": \"Contact\"}, {\"fieldname\": \"contact_mobile\", \"print_hide\": 0, \"label\": \"Mobile No\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Company Billing Address\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"billing_address\", \"print_hide\": 0, \"label\": \"Billing Address\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"billing_address_display\", \"print_hide\": 0, \"label\": \"Billing Address\"}, {\"fieldname\": \"terms\", \"nolabel\": 1, \"print_hide\": 0, \"label\": \"Terms and Conditions\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"_custom_html\", \"print_hide\": 0, \"label\": \"Custom HTML\", \"fieldtype\": \"HTML\", \"options\": \"\\n\\t\\n\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\n\\t\\t{%- for row in doc.items -%}\\n\\t\\t\\n\\t\\t {% set bundle_data = frappe.get_all(\\\"Serial and Batch Entry\\\", \\n\\t\\t fields=[\\\"serial_no\\\", \\\"batch_no\\\", \\\"qty\\\"], \\n\\t\\t filters={\\\"parent\\\": row.serial_and_batch_bundle}) %}\\n\\t\\t {% set serial_nos = [] %}\\n {% set batches = {} %}\\n \\n {% if bundle_data %}\\n\\t\\t\\t {% for data in bundle_data %}\\n\\t\\t\\t {% if data.serial_no %}\\n\\t\\t\\t {{ serial_nos.append(data.serial_no) or \\\"\\\" }}\\n\\t\\t\\t {% endif %}\\n\\t\\t\\t \\n\\t\\t\\t {% if data.batch_no %}\\n\\t\\t\\t {{ batches.update({data.batch_no: data.qty}) or \\\"\\\" }}\\n\\t\\t\\t {% endif %}\\n\\t\\t\\t {% endfor %}\\n\\t\\t\\t{% endif %}\\n\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\n\\t\\t{%- endfor -%}\\n\\t\\n
            SrItem NameQtySerial NosBatch Nos (Qty)
            {{ row.idx }}\\n\\t\\t\\t\\t{{ row.item_name }}\\n\\t\\t\\t\\t{% if row.item_code != row.item_name -%}\\n\\t\\t\\t\\t
            Item Code: {{ row.item_code}}\\n\\t\\t\\t\\t{%- endif %}\\n\\t\\t\\t
            {{ row.qty }} {{ row.uom or row.stock_uom }}{{ serial_nos|join(',') }}\\n\\t\\t\\t {% if batches %}\\n {% for batch_no, qty in batches.items() %}\\n

            {{batch_no}} : {{qty}} {{ row.uom or row.stock_uom }}

            \\n {% endfor %}\\n {% endif %}\\n\\t\\t\\t
            \\n\"}]", + "format_data": "[{\"fieldname\": \"print_heading_template\", \"fieldtype\": \"Custom HTML\", \"options\": \"
            \\t\\t\\t\\t

            Purchase Receipt

            {{ doc.name }}\\t\\t\\t\\t

            \"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"supplier_name\", \"print_hide\": 0, \"label\": \"Supplier Name\"}, {\"fieldname\": \"supplier_delivery_note\", \"print_hide\": 0, \"label\": \"Supplier Delivery Note\"}, {\"fieldname\": \"rack\", \"print_hide\": 0, \"label\": \"Rack\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"posting_date\", \"print_hide\": 0, \"label\": \"Date\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"apply_putaway_rule\", \"print_hide\": 0, \"label\": \"Apply Putaway Rule\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Accounting Dimensions\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"region\", \"print_hide\": 0, \"label\": \"Region\"}, {\"fieldname\": \"function\", \"print_hide\": 0, \"label\": \"Function\"}, {\"fieldname\": \"depot\", \"print_hide\": 0, \"label\": \"Depot\"}, {\"fieldname\": \"cost_center\", \"print_hide\": 0, \"label\": \"Cost Center\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"location\", \"print_hide\": 0, \"label\": \"Location\"}, {\"fieldname\": \"country\", \"print_hide\": 0, \"label\": \"Country\"}, {\"fieldname\": \"project\", \"print_hide\": 0, \"label\": \"Project\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Items\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"scan_barcode\", \"print_hide\": 0, \"label\": \"Scan Barcode\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"set_from_warehouse\", \"print_hide\": 0, \"label\": \"Set From Warehouse\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"_custom_html\", \"print_hide\": 0, \"label\": \"Custom HTML\", \"fieldtype\": \"HTML\", \"options\": \"\\n\\t\\n\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\n\\t\\t{%- for row in doc.items -%}\\n\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\n\\t\\t{%- endfor -%}\\n\\t\\n
            SrItem NameDescriptionQtyRateAmount
            {{ row.idx }}\\n\\t\\t\\t\\t{{ row.item_name }}\\n\\t\\t\\t\\t{% if row.item_code != row.item_name -%}\\n\\t\\t\\t\\t
            Item Code: {{ row.item_code}}\\n\\t\\t\\t\\t{%- endif %}\\n\\t\\t\\t
            \\n\\t\\t\\t\\t
            {{ row.description }}
            {{ row.qty }} {{ row.uom or row.stock_uom }}{{\\n\\t\\t\\t\\trow.get_formatted(\\\"rate\\\", doc) }}{{\\n\\t\\t\\t\\trow.get_formatted(\\\"amount\\\", doc) }}
            \\n\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"total_qty\", \"print_hide\": 0, \"label\": \"Total Quantity\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"total\", \"print_hide\": 0, \"label\": \"Total\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"taxes\", \"print_hide\": 0, \"label\": \"Purchase Taxes and Charges\", \"visible_columns\": [{\"fieldname\": \"category\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"add_deduct_tax\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"charge_type\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"row_id\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"included_in_print_rate\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"included_in_paid_amount\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"account_head\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"description\", \"print_width\": \"300px\", \"print_hide\": 0}, {\"fieldname\": \"rate\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"region\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"function\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"location\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"cost_center\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"depot\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"country\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"account_currency\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"tax_amount\", \"print_width\": \"\", \"print_hide\": 0}, {\"fieldname\": \"total\", \"print_width\": \"\", \"print_hide\": 0}]}, {\"fieldtype\": \"Section Break\", \"label\": \"Totals\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"grand_total\", \"print_hide\": 0, \"label\": \"Grand Total\"}, {\"fieldname\": \"rounded_total\", \"print_hide\": 0, \"label\": \"Rounded Total\"}, {\"fieldname\": \"in_words\", \"print_hide\": 0, \"label\": \"In Words\"}, {\"fieldname\": \"disable_rounded_total\", \"print_hide\": 0, \"label\": \"Disable Rounded Total\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Supplier Address\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"address_display\", \"print_hide\": 0, \"label\": \"Address\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"contact_display\", \"print_hide\": 0, \"label\": \"Contact\"}, {\"fieldname\": \"contact_mobile\", \"print_hide\": 0, \"label\": \"Mobile No\"}, {\"fieldtype\": \"Section Break\", \"label\": \"Company Billing Address\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"billing_address\", \"print_hide\": 0, \"label\": \"Billing Address\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"billing_address_display\", \"print_hide\": 0, \"label\": \"Billing Address\"}, {\"fieldname\": \"terms\", \"nolabel\": 1, \"print_hide\": 0, \"label\": \"Terms and Conditions\"}, {\"fieldtype\": \"Section Break\", \"label\": \"\"}, {\"fieldtype\": \"Column Break\"}, {\"fieldname\": \"_custom_html\", \"print_hide\": 0, \"label\": \"Custom HTML\", \"fieldtype\": \"HTML\", \"options\": \"\\n\\t\\n\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\n\\t\\t{%- for row in doc.items -%}\\n\\t\\t\\n\\t\\t {% set bundle_data = frappe.get_all(\\\"Serial and Batch Entry\\\", \\n\\t\\t fields=[\\\"serial_no\\\", \\\"batch_no\\\", \\\"qty\\\"], \\n\\t\\t filters={\\\"parent\\\": row.serial_and_batch_bundle}) %}\\n\\t\\t {% set serial_nos = [] %}\\n {% set batches = {} %}\\n \\n {% if bundle_data %}\\n\\t\\t\\t {% for data in bundle_data %}\\n\\t\\t\\t {% if data.serial_no %}\\n\\t\\t\\t {{ serial_nos.append(data.serial_no) or \\\"\\\" }}\\n\\t\\t\\t {% endif %}\\n\\t\\t\\t \\n\\t\\t\\t {% if data.batch_no %}\\n\\t\\t\\t {{ batches.update({data.batch_no: data.qty}) or \\\"\\\" }}\\n\\t\\t\\t {% endif %}\\n\\t\\t\\t {% endfor %}\\n\\t\\t\\t{% endif %}\\n\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\t\\n\\t\\t\\n\\t\\t{%- endfor -%}\\n\\t\\n
            SrItem NameQtySerial NosBatch Nos (Qty)
            {{ row.idx }}\\n\\t\\t\\t\\t{{ row.item_name }}\\n\\t\\t\\t\\t{% if row.item_code != row.item_name -%}\\n\\t\\t\\t\\t
            Item Code: {{ row.item_code}}\\n\\t\\t\\t\\t{%- endif %}\\n\\t\\t\\t
            {{ row.qty }} {{ row.uom or row.stock_uom }}{{ serial_nos|join(',') }}\\n\\t\\t\\t {% if batches %}\\n {% for batch_no, qty in batches.items() %}\\n

            {{batch_no}} : {{qty}} {{ row.uom or row.stock_uom }}

            \\n {% endfor %}\\n {% endif %}\\n\\t\\t\\t
            \\n\"}]", "idx": 0, "line_breaks": 0, "margin_bottom": 15.0, From 1e2adc0706937d641b7462bea4edc393f0783de4 Mon Sep 17 00:00:00 2001 From: Diptanil Saha Date: Fri, 26 Jun 2026 16:44:57 +0530 Subject: [PATCH 060/161] ci: bump pre-commit actions to v3.0.1 (#56562) --- .github/workflows/linters.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 37d8363beaa..0d2cd148251 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -21,7 +21,7 @@ jobs: cache: pip - name: Install and Run Pre-commit - uses: pre-commit/action@v3.0.0 + uses: pre-commit/action@v3.0.1 semgrep: name: semgrep From a7c1ebacbe722e2a2c6acfd90369501373ef4db9 Mon Sep 17 00:00:00 2001 From: Mohd Haris Date: Fri, 26 Jun 2026 17:34:49 +0530 Subject: [PATCH 061/161] fix(asset): conditionally show Is Fully Depreciated field The "Is Fully Depreciated" field was hidden on the Asset form (hidden: 1), so it could never be set for manually entered existing assets. Make it visible based on context: - Existing Asset with Calculate Depreciation off -> visible and editable - Calculate Depreciation on -> visible but read-only and forced unchecked (it is only meaningful for manually entered assets) The unchecked value is enforced in the form script (immediate feedback on toggle and on load) and in server-side validate() so it can never be saved as checked while depreciation is being calculated. Co-Authored-By: Claude Opus 4.8 --- erpnext/assets/doctype/asset/asset.js | 9 +++++++++ erpnext/assets/doctype/asset/asset.json | 5 +++-- erpnext/assets/doctype/asset/asset.py | 4 ++++ 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/erpnext/assets/doctype/asset/asset.js b/erpnext/assets/doctype/asset/asset.js index e269f289307..8e8f133b109 100644 --- a/erpnext/assets/doctype/asset/asset.js +++ b/erpnext/assets/doctype/asset/asset.js @@ -93,6 +93,11 @@ frappe.ui.form.on("Asset", { frappe.ui.form.trigger("Asset", "asset_type"); frm.toggle_display("next_depreciation_date", frm.doc.docstatus < 1); + if (frm.doc.docstatus < 1 && frm.doc.calculate_depreciation && frm.doc.is_fully_depreciated) { + // Is Fully Depreciated is read-only while depreciation is calculated, so keep it unchecked + frm.set_value("is_fully_depreciated", 0); + } + let has_create_buttons = false; if (frm.doc.docstatus == 1) { if (["Submitted", "Partially Depreciated"].includes(frm.doc.status)) { @@ -727,6 +732,10 @@ frappe.ui.form.on("Asset", { calculate_depreciation: function (frm) { frm.toggle_reqd("finance_books", frm.doc.calculate_depreciation); + if (frm.doc.calculate_depreciation && frm.doc.is_fully_depreciated) { + // Is Fully Depreciated is read-only while depreciation is calculated, so keep it unchecked + frm.set_value("is_fully_depreciated", 0); + } if (frm.doc.item_code && frm.doc.calculate_depreciation && frm.doc.net_purchase_amount) { frm.trigger("set_finance_book"); } else { diff --git a/erpnext/assets/doctype/asset/asset.json b/erpnext/assets/doctype/asset/asset.json index c048e972882..8618f8a9c15 100644 --- a/erpnext/assets/doctype/asset/asset.json +++ b/erpnext/assets/doctype/asset/asset.json @@ -450,10 +450,11 @@ }, { "default": "0", + "depends_on": "eval:(doc.asset_type == \"Existing Asset\" && !doc.calculate_depreciation) || doc.calculate_depreciation", "fieldname": "is_fully_depreciated", "fieldtype": "Check", - "hidden": 1, - "label": "Is Fully Depreciated" + "label": "Is Fully Depreciated", + "read_only_depends_on": "eval:doc.calculate_depreciation" }, { "depends_on": "eval:doc.docstatus > 0", diff --git a/erpnext/assets/doctype/asset/asset.py b/erpnext/assets/doctype/asset/asset.py index c00ea2b1b3f..5df9f368c2a 100644 --- a/erpnext/assets/doctype/asset/asset.py +++ b/erpnext/assets/doctype/asset/asset.py @@ -132,6 +132,10 @@ class Asset(AccountsController): self.validate_gross_and_purchase_amount() self.validate_finance_books() + if self.calculate_depreciation: + # Is Fully Depreciated is only applicable to manually entered existing assets + self.is_fully_depreciated = 0 + def before_save(self): self.total_asset_cost = self.net_purchase_amount + self.additional_asset_cost self.status = self.get_status() From 31f89b72b48110a2245791b85994b491c6fda2e5 Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Fri, 26 Jun 2026 19:19:16 +0530 Subject: [PATCH 062/161] fix: ignored posting time 00:00:00 in RIV (#56571) --- .../doctype/repost_item_valuation/repost_item_valuation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py index 9b316198000..4be57de747a 100644 --- a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py +++ b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py @@ -94,7 +94,7 @@ class RepostItemValuation(Document): self.validate_recreate_stock_ledgers() def set_default_posting_time(self): - if not self.posting_time: + if self.posting_time is None: self.posting_time = nowtime() if not self.posting_date: From 5e60e4faa7a7a2e5238746275995fc1bb7625a48 Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Fri, 26 Jun 2026 22:58:20 +0530 Subject: [PATCH 063/161] fix: do not allow closing the accounting period for future dates (#56551) --- .../doctype/accounting_period/accounting_period.py | 13 +++++++++++++ .../accounting_period/test_accounting_period.py | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/erpnext/accounts/doctype/accounting_period/accounting_period.py b/erpnext/accounts/doctype/accounting_period/accounting_period.py index f1ea837f934..79695f501a3 100644 --- a/erpnext/accounts/doctype/accounting_period/accounting_period.py +++ b/erpnext/accounts/doctype/accounting_period/accounting_period.py @@ -5,6 +5,7 @@ import frappe from frappe import _ from frappe.model.document import Document +from frappe.utils import getdate, nowdate class OverlapError(frappe.ValidationError): @@ -36,8 +37,20 @@ class AccountingPeriod(Document): # end: auto-generated types def validate(self): + self.validate_dates() self.validate_overlap() + def validate_dates(self): + if getdate(self.start_date) > getdate(self.end_date): + frappe.throw(_("Start Date cannot be after End Date")) + + if getdate(self.end_date) > getdate(nowdate()): + frappe.throw( + _( + "Accounting Period cannot be created for a future date. End Date {0} is after today." + ).format(frappe.bold(frappe.format(self.end_date, "Date"))) + ) + def before_insert(self): self.bootstrap_doctypes_for_closing() diff --git a/erpnext/accounts/doctype/accounting_period/test_accounting_period.py b/erpnext/accounts/doctype/accounting_period/test_accounting_period.py index dccc5f8e0f7..d01aec02e8a 100644 --- a/erpnext/accounts/doctype/accounting_period/test_accounting_period.py +++ b/erpnext/accounts/doctype/accounting_period/test_accounting_period.py @@ -2,7 +2,7 @@ # See license.txt import frappe -from frappe.utils import add_months, nowdate +from frappe.utils import nowdate from erpnext.accounts.doctype.accounting_period.accounting_period import ( ClosedAccountingPeriod, @@ -93,7 +93,7 @@ def create_accounting_period(**args): accounting_period = frappe.new_doc("Accounting Period") accounting_period.start_date = args.start_date or nowdate() - accounting_period.end_date = args.end_date or add_months(nowdate(), 1) + accounting_period.end_date = args.end_date or nowdate() accounting_period.company = args.company or "_Test Company" accounting_period.period_name = args.period_name or "_Test_Period_Name_1" accounting_period.append("closed_documents", {"document_type": "Sales Invoice", "closed": 1}) From 485e9041de44cb95380afdb54aceda1a349852de Mon Sep 17 00:00:00 2001 From: Diptanil Saha Date: Sat, 27 Jun 2026 00:42:34 +0530 Subject: [PATCH 064/161] chore: removing `controllers` from pre-commit eslint hooks exclude list (#56575) * chore: removed `controllers` from exclude list on `.pre-commit-config.yaml` * chore: fix `transactions.js` eslint issues * chore: fix `taxes_and_totals.js` eslint issue * chore: fix `accounts.js` eslint issue --- .pre-commit-config.yaml | 1 - erpnext/public/js/controllers/accounts.js | 11 ++++------- .../public/js/controllers/taxes_and_totals.js | 10 ++++++---- erpnext/public/js/controllers/transaction.js | 17 ++++++----------- 4 files changed, 16 insertions(+), 23 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6e478347b8a..f6993ca1570 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -48,7 +48,6 @@ repos: cypress/.*| .*node_modules.*| .*boilerplate.*| - erpnext/public/js/controllers/.*| erpnext/templates/pages/order.js| erpnext/templates/includes/.* )$ diff --git a/erpnext/public/js/controllers/accounts.js b/erpnext/public/js/controllers/accounts.js index 0e93d9566b0..93ceb70ff35 100644 --- a/erpnext/public/js/controllers/accounts.js +++ b/erpnext/public/js/controllers/accounts.js @@ -23,15 +23,12 @@ erpnext.accounts.taxes = { onload: function (frm) { if (frm.get_field("taxes")) { frm.set_query("account_head", "taxes", function (doc) { + let account_type = ["Tax", "Chargeable"]; + if (frm.cscript.tax_table == "Sales Taxes and Charges") { - var account_type = ["Tax", "Chargeable", "Expense Account"]; + account_type.push("Expense Account"); } else { - var account_type = [ - "Tax", - "Chargeable", - "Income Account", - "Expenses Included In Valuation", - ]; + account_type.push("Income Account", "Expenses Included In Valuation"); } return { diff --git a/erpnext/public/js/controllers/taxes_and_totals.js b/erpnext/public/js/controllers/taxes_and_totals.js index acbffa95d7d..8a0719c6d3f 100644 --- a/erpnext/public/js/controllers/taxes_and_totals.js +++ b/erpnext/public/js/controllers/taxes_and_totals.js @@ -952,14 +952,15 @@ erpnext.taxes_and_totals = class TaxesAndTotals extends erpnext.payments { if (["Sales Invoice", "POS Invoice", "Purchase Invoice"].includes(this.frm.doc.doctype)) { let grand_total = this.frm.doc.rounded_total || this.frm.doc.grand_total; let base_grand_total = this.frm.doc.base_rounded_total || this.frm.doc.base_grand_total; + let total_amount_to_pay; if (this.frm.doc.party_account_currency == this.frm.doc.currency) { - var total_amount_to_pay = flt( + total_amount_to_pay = flt( grand_total - this.frm.doc.total_advance - this.frm.doc.write_off_amount, precision("grand_total") ); } else { - var total_amount_to_pay = flt( + total_amount_to_pay = flt( flt(base_grand_total, precision("base_grand_total")) - this.frm.doc.total_advance - this.frm.doc.base_write_off_amount, @@ -1004,14 +1005,15 @@ erpnext.taxes_and_totals = class TaxesAndTotals extends erpnext.payments { async set_total_amount_to_default_mop() { let grand_total = this.frm.doc.rounded_total || this.frm.doc.grand_total; let base_grand_total = this.frm.doc.base_rounded_total || this.frm.doc.base_grand_total; + let total_amount_to_pay; if (this.frm.doc.party_account_currency == this.frm.doc.currency) { - var total_amount_to_pay = flt( + total_amount_to_pay = flt( grand_total - this.frm.doc.total_advance - this.frm.doc.write_off_amount, precision("grand_total") ); } else { - var total_amount_to_pay = flt( + total_amount_to_pay = flt( flt(base_grand_total, precision("base_grand_total")) - this.frm.doc.total_advance - this.frm.doc.base_write_off_amount, diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js index 67f16c5fbd5..4fd686832af 100644 --- a/erpnext/public/js/controllers/transaction.js +++ b/erpnext/public/js/controllers/transaction.js @@ -1291,13 +1291,8 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe var set_party_account = function (set_pricing) { if (["Sales Invoice", "Purchase Invoice"].includes(me.frm.doc.doctype)) { - if (me.frm.doc.doctype == "Sales Invoice") { - var party_type = "Customer"; - var party_account_field = "debit_to"; - } else { - var party_type = "Supplier"; - var party_account_field = "credit_to"; - } + let party_type = me.frm.doc.doctype == "Sales Invoice" ? "Customer" : "Supplier"; + let party_account_field = me.frm.doc.doctype == "Sales Invoice" ? "debit_to" : "credit_to"; var party = me.frm.doc[frappe.model.scrub(party_type)]; if ( @@ -2071,7 +2066,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe } if (this.frm.doc.operations && this.frm.doc.operations.length > 0) { - var item_grid = this.frm.fields_dict["operations"].grid; + let item_grid = this.frm.fields_dict["operations"].grid; $.each(["base_operating_cost", "base_hour_rate"], function (i, fname) { if (frappe.meta.get_docfield(item_grid.doctype, fname)) item_grid.set_column_disp(fname, me.frm.doc.currency != company_currency); @@ -2079,7 +2074,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe } if (this.frm.doc.secondary_items && this.frm.doc.secondary_items.length > 0) { - var item_grid = this.frm.fields_dict["secondary_items"].grid; + let item_grid = this.frm.fields_dict["secondary_items"].grid; $.each(["base_rate", "base_amount"], function (i, fname) { if (frappe.meta.get_docfield(item_grid.doctype, fname)) item_grid.set_column_disp(fname, me.frm.doc.currency != company_currency); @@ -2470,7 +2465,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe row_to_modify[key] = pr_row[key]; } - if (this.frm.doc.hasOwnProperty("is_pos") && this.frm.doc.is_pos) { + if (Object.prototype.hasOwnProperty.call(this.frm.doc, "is_pos") && this.frm.doc.is_pos) { let r = await frappe.db.get_value("POS Profile", this.frm.doc.pos_profile, "cost_center"); if (r.message.cost_center) { row_to_modify["cost_center"] = r.message.cost_center; @@ -2735,7 +2730,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe $.each(me.frm.doc.items || [], function (i, item) { if ( item.name && - r.message.hasOwnProperty(item.name) && + Object.prototype.hasOwnProperty.call(r.message, item.name) && r.message[item.name].item_tax_template ) { item.item_tax_template = r.message[item.name].item_tax_template; From 79ad11e21b6dac71be13ef8cf294db56757817ab Mon Sep 17 00:00:00 2001 From: Diptanil Saha Date: Sat, 27 Jun 2026 14:38:59 +0530 Subject: [PATCH 065/161] chore(crm_settings): remove unused `delete_custom_fields` import (#56558) --- erpnext/crm/doctype/crm_settings/crm_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/crm/doctype/crm_settings/crm_settings.py b/erpnext/crm/doctype/crm_settings/crm_settings.py index 6d7360bb6df..5779d2d8e9e 100644 --- a/erpnext/crm/doctype/crm_settings/crm_settings.py +++ b/erpnext/crm/doctype/crm_settings/crm_settings.py @@ -3,7 +3,7 @@ import frappe from frappe import _ -from frappe.custom.doctype.custom_field.custom_field import create_custom_fields, delete_custom_fields +from frappe.custom.doctype.custom_field.custom_field import create_custom_fields from frappe.model.document import Document From c7ef42ef98b9e1da549f67e73291fb25431aa46e Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Sat, 27 Jun 2026 15:58:45 +0530 Subject: [PATCH 066/161] fix: sync Stock Reconciliation difference amount with GL after reposting (#56574) * fix: sync Stock Reconciliation difference amount with GL after reposting * fix: placement of recalculate differece amount function --- .../stock_reconciliation.py | 114 ++++++++++++ .../test_stock_reconciliation.py | 166 ++++++++++++++++++ erpnext/stock/stock_ledger.py | 44 ++--- 3 files changed, 292 insertions(+), 32 deletions(-) diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py index 60735e034e9..d165b802889 100644 --- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py @@ -6,6 +6,7 @@ from datetime import timedelta import frappe from frappe import _, bold, json, msgprint +from frappe.query_builder.functions import Sum from frappe.utils import add_to_date, cint, cstr, flt, now from frappe.utils.data import DateTimeLikeObject @@ -1014,6 +1015,102 @@ class StockReconciliation(StockController): d.quantity_difference = flt(d.qty) - flt(d.current_qty) d.amount_difference = flt(d.amount) - flt(d.current_amount) + def recalculate_difference_amount_from_ledger(self): + """Sync the displayed current qty/rate and difference amount with the (reposted) ledger. + + Submitted reconciliations freeze ``difference_amount`` and the per-row current values at + submit time, but reposting/backdated transactions recompute the reconciliation's Stock Ledger + Entries and rebuild the GL from them. Without this sync the document keeps showing stale figures + that no longer match the GL entries. Anchoring ``amount_difference`` to the row's summed + ``stock_value_difference`` keeps the document and the GL consistent by construction. + """ + difference_amount = 0.0 + + for row in self.items: + stock_value_difference = flt(get_row_stock_value_difference(self.doctype, self.name, row.name)) + + amount = flt(flt(row.qty) * flt(row.valuation_rate), row.precision("amount")) + amount_difference = flt(stock_value_difference, row.precision("amount_difference")) + current_amount = flt(amount - amount_difference, row.precision("current_amount")) + + current_qty = self.get_current_qty_from_ledger(row) + current_valuation_rate = ( + flt(current_amount / current_qty, row.precision("current_valuation_rate")) + if current_qty + else 0.0 + ) + + row.db_set( + { + "amount": amount, + "current_qty": current_qty, + "current_valuation_rate": current_valuation_rate, + "current_amount": current_amount, + "quantity_difference": flt(row.qty) - current_qty, + "amount_difference": amount_difference, + }, + update_modified=False, + ) + + difference_amount += amount_difference + + self.db_set( + "difference_amount", + flt(difference_amount, self.precision("difference_amount")), + update_modified=False, + ) + + def get_current_qty_from_ledger(self, row: StockReconciliationItem): + """Current (pre-reconciliation) qty for a row, recomputed from the ledger after reposting. + + Serial/batch rows cannot have backdated qty changes inserted before a future reconciliation + (blocked by ``check_future_entries_exists``), so their current qty is frozen and read straight + from the current bundle. Non-serial rows can float, so read the ledger balance just before the + reconciliation, excluding the reconciliation's own entries. + """ + if row.current_serial_and_batch_bundle: + total_qty = frappe.db.get_value( + "Serial and Batch Bundle", row.current_serial_and_batch_bundle, "total_qty" + ) + return abs(flt(total_qty, row.precision("current_qty"))) + + reco_sle = frappe.db.get_value( + "Stock Ledger Entry", + { + "voucher_type": self.doctype, + "voucher_no": self.name, + "voucher_detail_no": row.name, + "is_cancelled": 0, + }, + ["posting_datetime", "creation"], + as_dict=True, + ) + if not reco_sle: + return flt(row.current_qty, row.precision("current_qty")) + + sle = frappe.qb.DocType("Stock Ledger Entry") + previous_sle = ( + frappe.qb.from_(sle) + .select(sle.qty_after_transaction) + .where( + (sle.item_code == row.item_code) + & (sle.warehouse == row.warehouse) + & (sle.is_cancelled == 0) + & ( + (sle.posting_datetime < reco_sle.posting_datetime) + | ( + (sle.posting_datetime == reco_sle.posting_datetime) + & (sle.creation < reco_sle.creation) + ) + ) + ) + .orderby(sle.posting_datetime, order=frappe.qb.desc) + .orderby(sle.creation, order=frappe.qb.desc) + .limit(1) + ).run() + + return flt(previous_sle[0][0], row.precision("current_qty")) if previous_sle else 0.0 + def submit(self): if len(self.items) > 100: msgprint( @@ -1223,6 +1320,23 @@ def get_itemwise_batch(warehouse, posting_date, company, item_code=None): return itemwise_batch_data +def get_row_stock_value_difference(voucher_type: str, voucher_no: str, voucher_detail_no: str): + """Net stock value change posted to the GL by a reconciliation row (sum of its SLEs).""" + sle = frappe.qb.DocType("Stock Ledger Entry") + result = ( + frappe.qb.from_(sle) + .select(Sum(sle.stock_value_difference)) + .where( + (sle.voucher_type == voucher_type) + & (sle.voucher_no == voucher_no) + & (sle.voucher_detail_no == voucher_detail_no) + & (sle.is_cancelled == 0) + ) + ).run() + + return flt(result[0][0]) if result and result[0][0] else 0.0 + + @frappe.whitelist() def get_stock_balance_for( item_code: str, diff --git a/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py index 35b71914bc0..1cda3f0730f 100644 --- a/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py +++ b/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py @@ -786,6 +786,172 @@ class TestStockReconciliation(ERPNextTestSuite, StockTestMixin): sr1.load_from_db() self.assertEqual(sr1.difference_amount, 10000) + def assert_reco_difference_matches_gl(self, reco_name): + """The displayed Difference Amount (doc and per-row) must equal the reposted GL impact, + i.e. the sum of the reconciliation's Stock Ledger Entry ``stock_value_difference``.""" + from erpnext.stock.doctype.stock_reconciliation.stock_reconciliation import ( + get_row_stock_value_difference, + ) + + reco = frappe.get_doc("Stock Reconciliation", reco_name) + total_difference = 0.0 + + for row in reco.items: + row_difference = flt( + get_row_stock_value_difference("Stock Reconciliation", reco_name, row.name), + row.precision("amount_difference"), + ) + + self.assertEqual(flt(row.amount_difference), row_difference) + total_difference += row_difference + + self.assertEqual( + flt(reco.difference_amount, reco.precision("difference_amount")), + flt(total_difference, reco.precision("difference_amount")), + ) + + def test_difference_amount_synced_with_gl_after_repost_non_serialized(self): + from erpnext.stock.doctype.stock_entry.test_stock_entry import make_stock_entry + + item_code = self.make_item().name + warehouse = "_Test Warehouse - _TC" + + # Opening stock => 100 * 100 = 10000 + make_stock_entry( + item_code=item_code, + target=warehouse, + qty=100, + basic_rate=100, + posting_date=add_days(nowdate(), -5), + posting_time="10:00:00", + ) + + # Reconcile to 100 @ 200 => difference 20000 - 10000 = 10000 + reco = create_stock_reconciliation( + item_code=item_code, + warehouse=warehouse, + qty=100, + rate=200, + posting_date=add_days(nowdate(), -2), + ) + self.assertEqual(reco.difference_amount, 10000) + self.assert_reco_difference_matches_gl(reco.name) + + # Backdated reconciliation lowers the pre-reco stock value to 50 * 50 = 2500 + create_stock_reconciliation( + item_code=item_code, + warehouse=warehouse, + qty=50, + rate=50, + posting_date=add_days(nowdate(), -3), + ) + + reco.load_from_db() + # Current is now 2500 => difference 20000 - 2500 = 17500 + self.assertEqual(reco.difference_amount, 17500) + self.assert_reco_difference_matches_gl(reco.name) + + def test_difference_amount_synced_with_gl_after_repost_batched(self): + from erpnext.stock.doctype.landed_cost_voucher.test_landed_cost_voucher import ( + make_landed_cost_voucher, + ) + + item_code = self.make_item( + "Test Batch Item Reco Difference Sync", + { + "is_stock_item": 1, + "has_batch_no": 1, + "create_new_batch": 1, + "batch_number_series": "TEST-BATCH-DIFFSYNC-.###", + }, + ).name + warehouse = "_Test Warehouse - _TC" + + # Receive 10 @ 100 (batch value 1000) + pr = make_purchase_receipt( + item_code=item_code, + warehouse=warehouse, + qty=10, + rate=100, + posting_date=add_days(nowdate(), -5), + ) + batch_no = get_batch_from_bundle(pr.items[0].serial_and_batch_bundle) + + # Reconcile the batch to 10 @ 500 => difference 5000 - 1000 = 4000 + reco = create_stock_reconciliation( + item_code=item_code, + warehouse=warehouse, + qty=10, + rate=500, + batch_no=batch_no, + use_serial_batch_fields=1, + posting_date=add_days(nowdate(), -2), + ) + difference_on_submit = reco.difference_amount + self.assert_reco_difference_matches_gl(reco.name) + + # Landed cost retroactively raises the receipt (and batch) valuation, reposting the reco + make_landed_cost_voucher( + receipt_document_type="Purchase Receipt", + receipt_document=pr.name, + charges=1000, + company="_Test Company", + ) + + reco.load_from_db() + self.assertNotEqual(reco.difference_amount, difference_on_submit) + self.assert_reco_difference_matches_gl(reco.name) + + def test_difference_amount_synced_with_gl_after_repost_serialized(self): + from erpnext.stock.doctype.landed_cost_voucher.test_landed_cost_voucher import ( + make_landed_cost_voucher, + ) + + item_code = self.make_item( + "Test Serial Item Reco Difference Sync", + { + "is_stock_item": 1, + "has_serial_no": 1, + "serial_no_series": "TSIRDS.####", + }, + ).name + warehouse = "_Test Warehouse - _TC" + + # Receive 5 serial nos @ 100 (value 500) + pr = make_purchase_receipt( + item_code=item_code, + warehouse=warehouse, + qty=5, + rate=100, + posting_date=add_days(nowdate(), -5), + ) + serial_nos = get_serial_nos_from_bundle(pr.items[0].serial_and_batch_bundle) + + # Reconcile the serial nos to 5 @ 500 => difference 2500 - 500 = 2000 + reco = create_stock_reconciliation( + item_code=item_code, + warehouse=warehouse, + qty=5, + rate=500, + serial_no="\n".join(serial_nos), + use_serial_batch_fields=1, + posting_date=add_days(nowdate(), -2), + ) + difference_on_submit = reco.difference_amount + self.assert_reco_difference_matches_gl(reco.name) + + # Landed cost retroactively raises the receipt (and serial) valuation, reposting the reco + make_landed_cost_voucher( + receipt_document_type="Purchase Receipt", + receipt_document=pr.name, + charges=1000, + company="_Test Company", + ) + + reco.load_from_db() + self.assertNotEqual(reco.difference_amount, difference_on_submit) + self.assert_reco_difference_matches_gl(reco.name) + def test_make_stock_zero_for_serial_batch_item(self): from erpnext.stock.doctype.stock_entry.test_stock_entry import make_stock_entry diff --git a/erpnext/stock/stock_ledger.py b/erpnext/stock/stock_ledger.py index 2255a137328..d444da767e5 100644 --- a/erpnext/stock/stock_ledger.py +++ b/erpnext/stock/stock_ledger.py @@ -1345,6 +1345,11 @@ class update_entries_after: Update outgoing rate in Stock Entry, Delivery Note, Sales Invoice and Sales Return In case of Stock Entry, also calculate FG Item rate and total incoming/outgoing amount """ + if sle.voucher_type == "Stock Reconciliation": + if flt(sle.actual_qty) <= 0 and not self.args.get("sle_id"): + self.update_rate_on_stock_reconciliation(sle) + return + if sle.actual_qty and sle.voucher_detail_no: outgoing_rate = abs(flt(sle.stock_value_difference)) / abs(sle.actual_qty) @@ -1356,8 +1361,6 @@ class update_entries_after: self.update_rate_on_purchase_receipt(sle, outgoing_rate) elif flt(sle.actual_qty) < 0 and sle.voucher_type == "Subcontracting Receipt": self.update_rate_on_subcontracting_receipt(sle, outgoing_rate) - elif sle.voucher_type == "Stock Reconciliation": - self.update_rate_on_stock_reconciliation(sle) def update_rate_on_stock_entry(self, sle, outgoing_rate): frappe.db.set_value("Stock Entry Detail", sle.voucher_detail_no, "basic_rate", outgoing_rate) @@ -1451,36 +1454,13 @@ class update_entries_after: d.db_update() def update_rate_on_stock_reconciliation(self, sle): - if not sle.serial_no and not sle.batch_no: - sr = frappe.get_lazy_doc("Stock Reconciliation", sle.voucher_no, for_update=True) - - for item in sr.items: - # Skip for Serial and Batch Items - if item.name != sle.voucher_detail_no or item.serial_no or item.batch_no: - continue - - previous_sle = get_previous_sle( - { - "item_code": item.item_code, - "warehouse": item.warehouse, - "posting_date": sr.posting_date, - "posting_time": sr.posting_time, - "sle": sle.name, - } - ) - - item.current_qty = previous_sle.get("qty_after_transaction") or 0.0 - item.current_valuation_rate = previous_sle.get("valuation_rate") or 0.0 - item.current_amount = flt(item.current_qty) * flt(item.current_valuation_rate) - - item.amount = flt(item.qty) * flt(item.valuation_rate) - item.quantity_difference = item.qty - item.current_qty - item.amount_difference = item.amount - item.current_amount - sr.difference_amount = sum([item.amount_difference for item in sr.items]) - sr.db_update() - - for item in sr.items: - item.db_update() + # Refresh the reconciliation's difference amount and per-row current qty/rate from the reposted + # ledger so the document keeps matching the GL entries. Handles serialized, batched and + # non-serialized items uniformly (the document method reads the current bundle for serial/batch + # rows and the pre-reconciliation ledger balance for non-serial rows). + frappe.get_lazy_doc( + "Stock Reconciliation", sle.voucher_no, for_update=True + ).recalculate_difference_amount_from_ledger() @staticmethod def get_incoming_value_for_serial_nos(sle, serial_nos): From 057af21cd8501aea6183d09d60324b0d6d562b82 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Sat, 27 Jun 2026 16:13:43 +0530 Subject: [PATCH 067/161] fix: party aliases should be no copy --- erpnext/buying/doctype/supplier/supplier.json | 3 ++- erpnext/selling/doctype/customer/customer.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/erpnext/buying/doctype/supplier/supplier.json b/erpnext/buying/doctype/supplier/supplier.json index d8c0eea6047..12a40cbca7b 100644 --- a/erpnext/buying/doctype/supplier/supplier.json +++ b/erpnext/buying/doctype/supplier/supplier.json @@ -547,6 +547,7 @@ "fieldtype": "Data", "in_global_search": 1, "label": "Alias", + "no_copy": 1, "unique": 1 } ], @@ -561,7 +562,7 @@ "link_fieldname": "party" } ], - "modified": "2026-06-22 12:23:09.241125", + "modified": "2026-06-27 16:12:33.190257", "modified_by": "Administrator", "module": "Buying", "name": "Supplier", diff --git a/erpnext/selling/doctype/customer/customer.json b/erpnext/selling/doctype/customer/customer.json index fad5836650b..6dd308d319d 100644 --- a/erpnext/selling/doctype/customer/customer.json +++ b/erpnext/selling/doctype/customer/customer.json @@ -681,6 +681,7 @@ "fieldtype": "Data", "in_global_search": 1, "label": "Alias", + "no_copy": 1, "unique": 1 } ], @@ -695,7 +696,7 @@ "link_fieldname": "party" } ], - "modified": "2026-06-22 12:23:19.196991", + "modified": "2026-06-27 16:12:10.457900", "modified_by": "Administrator", "module": "Selling", "name": "Customer", From 6c38856f6598fabe4f70abc591aa74a35b42ea53 Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Sun, 28 Jun 2026 20:35:01 +0530 Subject: [PATCH 068/161] feat: Standard Valuation Rate (#56570) * feat: standard rate valuation * fix: greptile comments * fix: PPV account should be mandatory for standard cost valuation --- .../purchase_invoice/services/gl_composer.py | 146 +++++- erpnext/controllers/stock_controller.py | 7 + erpnext/setup/doctype/company/company.json | 12 +- erpnext/stock/doctype/bin/bin.py | 34 +- erpnext/stock/doctype/item/item.json | 4 +- erpnext/stock/doctype/item/item.py | 27 +- .../doctype/item_default/item_default.json | 11 +- .../doctype/item_standard_cost/__init__.py | 0 .../item_standard_cost/item_standard_cost.js | 16 + .../item_standard_cost.json | 138 +++++ .../item_standard_cost/item_standard_cost.py | 299 +++++++++++ .../test_item_standard_cost.py | 487 ++++++++++++++++++ .../purchase_receipt/services/gl_composer.py | 32 +- .../stock_ledger_entry/stock_ledger_entry.py | 11 +- .../stock_reconciliation.py | 44 +- .../stock_settings/stock_settings.json | 4 +- erpnext/stock/serial_batch_bundle.py | 28 + erpnext/stock/stock_ledger.py | 137 ++++- 18 files changed, 1374 insertions(+), 63 deletions(-) create mode 100644 erpnext/stock/doctype/item_standard_cost/__init__.py create mode 100644 erpnext/stock/doctype/item_standard_cost/item_standard_cost.js create mode 100644 erpnext/stock/doctype/item_standard_cost/item_standard_cost.json create mode 100644 erpnext/stock/doctype/item_standard_cost/item_standard_cost.py create mode 100644 erpnext/stock/doctype/item_standard_cost/test_item_standard_cost.py diff --git a/erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py b/erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py index 9dbd8f01b3b..f776994a29b 100644 --- a/erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py +++ b/erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py @@ -3,6 +3,7 @@ import frappe from frappe import _ +from frappe.query_builder.functions import Sum from frappe.utils import cint, flt, get_link_to_form import erpnext @@ -130,6 +131,7 @@ class PurchaseInvoiceGLComposer(BaseGLComposer): from erpnext.accounts.doctype.purchase_invoice.purchase_invoice import ( get_purchase_document_details, ) + from erpnext.stock.utils import get_valuation_method doc = self.doc tax_service = TaxService(doc) @@ -329,20 +331,33 @@ class PurchaseInvoiceGLComposer(BaseGLComposer): self.make_provisional_gl_entry(gl_entries, item) if not doc.is_internal_transfer(): - gl_entries.append( - self.get_gl_dict( - { - "account": expense_account, - "against": doc.supplier, - "debit": base_amount, - "debit_in_transaction_currency": amount, - "cost_center": item.cost_center, - "project": item.project or doc.project, - }, - account_currency, - item=item, + handled = False + if ( + item.item_code + and item.item_code in stock_items + and item.get("purchase_receipt") + and not doc.is_return + and get_valuation_method(item.item_code, doc.company) == "Standard Cost" + ): + handled = self.make_standard_cost_srbnb_split( + gl_entries, item, expense_account, account_currency, base_amount + ) + + if not handled: + gl_entries.append( + self.get_gl_dict( + { + "account": expense_account, + "against": doc.supplier, + "debit": base_amount, + "debit_in_transaction_currency": amount, + "cost_center": item.cost_center, + "project": item.project or doc.project, + }, + account_currency, + item=item, + ) ) - ) # check if the exchange rate has changed if ( @@ -515,6 +530,107 @@ class PurchaseInvoiceGLComposer(BaseGLComposer): }, ) + def make_standard_cost_srbnb_split( + self, gl_entries, item, expense_account, account_currency, base_amount + ): + """For a Standard Cost item billed against a Purchase Receipt, clear SRBNB at the standard + value the receipt actually booked and post the (Net Amount - standard) difference to the + Purchase Price Variance account. Returns False (caller falls back) if the receipt value + can't be resolved.""" + from erpnext.stock.doctype.item_standard_cost.item_standard_cost import ( + get_purchase_price_variance_account, + ) + + doc = self.doc + precision = item.precision("base_net_amount") + standard_value = flt(self.get_pr_stock_value(item), precision) + if not standard_value: + return False + + gl_entries.append( + self.get_gl_dict( + { + "account": expense_account, + "against": doc.supplier, + "debit": standard_value, + "debit_in_transaction_currency": flt(standard_value / doc.conversion_rate, precision), + "remarks": doc.get("remarks") or _("Accounting Entry for Stock"), + "cost_center": item.cost_center, + "project": item.project or doc.project, + }, + account_currency, + item=item, + ) + ) + + variance = flt(base_amount - standard_value, precision) + if variance: + gl_entries.append( + self.get_gl_dict( + { + "account": get_purchase_price_variance_account(item.item_code, doc.company), + "against": doc.supplier, + "debit": variance, + "debit_in_transaction_currency": flt(variance / doc.conversion_rate, precision), + "remarks": doc.get("remarks") or _("Purchase Price Variance"), + "cost_center": item.cost_center, + "project": item.project or doc.project, + }, + item=item, + ) + ) + + return True + + def get_pr_stock_value(self, item): + """Stock value (at standard) the linked Purchase Receipt booked for the quantity this invoice + row is billing. + + Accepted and rejected stock for the same receipt row share `voucher_detail_no`, so the + warehouse filter is required: without it the accepted warehouse's SRBNB would be cleared at + accepted + rejected value and post the wrong Purchase Price Variance amount. The accepted + warehouse is read from the receipt row itself (not the invoice row, which may be unset on a + non-stock invoice). + + The receipt's full accepted value is pro-rated to the invoiced quantity, so a partial bill + clears SRBNB (and posts PPV) for only the units it covers, not the whole receipt row.""" + pr_detail = frappe.db.get_value( + "Purchase Receipt Item", item.pr_detail, ["warehouse", "stock_qty"], as_dict=True + ) + if not pr_detail or not pr_detail.warehouse: + return 0.0 + + sle = frappe.qb.DocType("Stock Ledger Entry") + result = ( + frappe.qb.from_(sle) + .select(Sum(sle.stock_value_difference)) + .where( + (sle.voucher_type == "Purchase Receipt") + & (sle.voucher_no == item.purchase_receipt) + & (sle.voucher_detail_no == item.pr_detail) + & (sle.warehouse == pr_detail.warehouse) + & (sle.is_cancelled == 0) + ) + ).run() + accepted_value = flt(result[0][0]) if result and result[0][0] else 0.0 + if not accepted_value or not flt(pr_detail.stock_qty): + return accepted_value + + # Pro-rate to the quantity being billed by this invoice row (handles partial billing). + return accepted_value * flt(item.stock_qty) / flt(pr_detail.stock_qty) + + def get_stock_variance_account(self, item): + """For Standard Cost items the purchase-price-vs-standard difference is a Purchase Price + Variance; for all other items it keeps the existing behaviour (default expense account).""" + from erpnext.stock.doctype.item_standard_cost.item_standard_cost import ( + get_purchase_price_variance_account, + ) + from erpnext.stock.utils import get_valuation_method + + if item.item_code and get_valuation_method(item.item_code, self.doc.company) == "Standard Cost": + return get_purchase_price_variance_account(item.item_code, self.doc.company) + return self.doc.get_company_default("default_expense_account") + def make_stock_adjustment_entry(self, gl_entries, item, voucher_wise_stock_value, account_currency): doc = self.doc net_amt_precision = item.precision("base_net_amount") @@ -536,7 +652,7 @@ class PurchaseInvoiceGLComposer(BaseGLComposer): ) if flt(stock_amount, net_amt_precision) != flt(warehouse_debit_amount, net_amt_precision): - cost_of_goods_sold_account = doc.get_company_default("default_expense_account") + cost_of_goods_sold_account = self.get_stock_variance_account(item) stock_adjustment_amt = stock_amount - warehouse_debit_amount gl_entries.append( @@ -561,7 +677,7 @@ class PurchaseInvoiceGLComposer(BaseGLComposer): and warehouse_debit_amount != flt(voucher_wise_stock_value.get((item.name, item.warehouse)), net_amt_precision) ): - cost_of_goods_sold_account = doc.get_company_default("default_expense_account") + cost_of_goods_sold_account = self.get_stock_variance_account(item) stock_amount = flt(voucher_wise_stock_value.get((item.name, item.warehouse)), net_amt_precision) stock_adjustment_amt = warehouse_debit_amount - stock_amount diff --git a/erpnext/controllers/stock_controller.py b/erpnext/controllers/stock_controller.py index 5354c8c6f4e..0fe4ada4e5c 100644 --- a/erpnext/controllers/stock_controller.py +++ b/erpnext/controllers/stock_controller.py @@ -820,6 +820,8 @@ def create_item_wise_repost_entries( ): """Using a voucher create repost item valuation records for all item-warehouse pairs.""" + from erpnext.stock.utils import get_valuation_method + stock_ledger_entries = get_items_to_be_repost(voucher_type, voucher_no) distinct_item_warehouses = set() @@ -831,6 +833,11 @@ def create_item_wise_repost_entries( continue distinct_item_warehouses.add(item_wh) + # Standard Cost items don't need a full repost: a backdated entry only shifts future balances + # (qty and value at the standard rate), which is done in place by update_qty_in_future_sle. + if get_valuation_method(sle.item_code) == "Standard Cost": + continue + repost_entry = frappe.new_doc("Repost Item Valuation") repost_entry.based_on = "Item and Warehouse" diff --git a/erpnext/setup/doctype/company/company.json b/erpnext/setup/doctype/company/company.json index 49f61238839..1244c72751d 100644 --- a/erpnext/setup/doctype/company/company.json +++ b/erpnext/setup/doctype/company/company.json @@ -129,6 +129,7 @@ "valuation_method", "column_break_32", "stock_adjustment_account", + "default_purchase_price_variance_account", "stock_received_but_not_billed", "stock_delivered_but_not_billed", "disable_sdbnb_in_sr", @@ -491,6 +492,15 @@ "no_copy": 1, "options": "Account" }, + { + "description": "Used for items valued at Standard Cost: the difference between the purchase price and the standard rate is booked here.", + "fieldname": "default_purchase_price_variance_account", + "fieldtype": "Link", + "ignore_user_permissions": 1, + "label": "Default Purchase Price Variance Account", + "no_copy": 1, + "options": "Account" + }, { "fieldname": "column_break_32", "fieldtype": "Column Break" @@ -1004,7 +1014,7 @@ "image_field": "company_logo", "is_tree": 1, "links": [], - "modified": "2026-05-14 16:50:34.132345", + "modified": "2026-06-26 10:05:00.000000", "modified_by": "Administrator", "module": "Setup", "name": "Company", diff --git a/erpnext/stock/doctype/bin/bin.py b/erpnext/stock/doctype/bin/bin.py index b7393b49cba..2b3c40b22ca 100644 --- a/erpnext/stock/doctype/bin/bin.py +++ b/erpnext/stock/doctype/bin/bin.py @@ -277,19 +277,27 @@ def update_qty(bin_name, args): - flt(bin_details.reserved_qty_for_production_plan) ) - frappe.db.set_value( - "Bin", - bin_name, - { - "actual_qty": actual_qty, - "ordered_qty": ordered_qty, - "reserved_qty": reserved_qty, - "indented_qty": indented_qty, - "planned_qty": planned_qty, - "projected_qty": projected_qty, - }, - update_modified=True, - ) + bin_values = { + "actual_qty": actual_qty, + "ordered_qty": ordered_qty, + "reserved_qty": reserved_qty, + "indented_qty": indented_qty, + "planned_qty": planned_qty, + "projected_qty": projected_qty, + } + + # Standard Cost items are not reposted on backdated entries, so the Bin's stock value is not + # refreshed by a repost. Keep it in step with the balance at the standard rate. + from erpnext.stock.utils import get_valuation_method + + if get_valuation_method(args.get("item_code")) == "Standard Cost": + from erpnext.stock.doctype.item_standard_cost.item_standard_cost import get_item_standard_rate + + bin_values["stock_value"] = flt(actual_qty) * flt( + get_item_standard_rate(args.get("item_code"), args.get("company")) + ) + + frappe.db.set_value("Bin", bin_name, bin_values, update_modified=True) def get_actual_qty(item_code, warehouse): diff --git a/erpnext/stock/doctype/item/item.json b/erpnext/stock/doctype/item/item.json index 8a458e8ea04..0f5840c3a0a 100644 --- a/erpnext/stock/doctype/item/item.json +++ b/erpnext/stock/doctype/item/item.json @@ -384,7 +384,7 @@ "fieldname": "valuation_method", "fieldtype": "Select", "label": "Valuation Method", - "options": "\nFIFO\nMoving Average\nLIFO" + "options": "\nFIFO\nMoving Average\nLIFO\nStandard Cost" }, { "depends_on": "is_stock_item", @@ -1090,7 +1090,7 @@ "image_field": "image", "links": [], "make_attachments_public": 1, - "modified": "2026-05-27 10:18:46.862670", + "modified": "2026-06-26 10:05:00.000000", "modified_by": "Administrator", "module": "Stock", "name": "Item", diff --git a/erpnext/stock/doctype/item/item.py b/erpnext/stock/doctype/item/item.py index b3af09513cc..a26f58430bf 100644 --- a/erpnext/stock/doctype/item/item.py +++ b/erpnext/stock/doctype/item/item.py @@ -143,7 +143,7 @@ class Item(Document): taxes: DF.Table[ItemTax] total_projected_qty: DF.Float uoms: DF.Table[UOMConversionDetail] - valuation_method: DF.Literal["", "FIFO", "Moving Average", "LIFO"] + valuation_method: DF.Literal["", "FIFO", "Moving Average", "LIFO", "Standard Cost"] valuation_rate: DF.Currency variant_based_on: DF.Literal["Item Attribute", "Manufacturer"] variant_of: DF.Link | None @@ -239,6 +239,7 @@ class Item(Document): self.validate_item_defaults() self.validate_auto_reorder_enabled_in_stock_settings() self.cant_change() + self.validate_standard_cost_change() self.validate_item_tax_net_rate_range() if not self.is_new(): @@ -1060,6 +1061,30 @@ class Item(Document): for d in self.attributes: d.variant_of = self.variant_of + def validate_standard_cost_change(self): + """Once stock exists, an item's valuation method cannot be switched to or from Standard + Cost — either change would leave existing stock valued on a basis the ledger never + recorded.""" + if not self.is_standard_cost_valuation_change(): + return + + if self.stock_ledger_created(): + frappe.throw( + _( + "Valuation Method cannot be changed to or from 'Standard Cost' for {0} because stock transactions already exist for it." + ).format(frappe.bold(self.name)) + ) + + def is_standard_cost_valuation_change(self): + """True if this save switches the valuation method into or out of Standard Cost.""" + if self.is_new() or not self.has_value_changed("valuation_method"): + return False + + previous = self.get_doc_before_save() + was_standard = previous and previous.valuation_method == "Standard Cost" + is_standard = self.valuation_method == "Standard Cost" + return bool(was_standard or is_standard) + def cant_change(self): if self.is_new(): return diff --git a/erpnext/stock/doctype/item_default/item_default.json b/erpnext/stock/doctype/item_default/item_default.json index da74d45eeb6..9b753557dd8 100644 --- a/erpnext/stock/doctype/item_default/item_default.json +++ b/erpnext/stock/doctype/item_default/item_default.json @@ -34,6 +34,7 @@ "default_provisional_account", "purchase_expense_account", "purchase_expense_contra_account", + "purchase_price_variance_account", "selling_defaults", "column_break_sales", "vf_selling_cost_center", @@ -189,6 +190,14 @@ "options": "Account", "show_description_on_click": 1 }, + { + "description": "For Standard Cost items: the purchase price vs standard rate difference is booked here. Falls back to the Company's Default Purchase Price Variance Account.", + "fieldname": "purchase_price_variance_account", + "fieldtype": "Link", + "label": "Purchase Price Variance Account", + "options": "Account", + "show_description_on_click": 1 + }, { "fieldname": "column_break_purchase", "fieldtype": "Column Break" @@ -356,7 +365,7 @@ ], "istable": 1, "links": [], - "modified": "2026-06-03 17:25:35.982082", + "modified": "2026-06-26 10:05:00.000000", "modified_by": "Administrator", "module": "Stock", "name": "Item Default", diff --git a/erpnext/stock/doctype/item_standard_cost/__init__.py b/erpnext/stock/doctype/item_standard_cost/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/erpnext/stock/doctype/item_standard_cost/item_standard_cost.js b/erpnext/stock/doctype/item_standard_cost/item_standard_cost.js new file mode 100644 index 00000000000..f867de3ab67 --- /dev/null +++ b/erpnext/stock/doctype/item_standard_cost/item_standard_cost.js @@ -0,0 +1,16 @@ +// Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and contributors +// For license information, please see license.txt + +frappe.ui.form.on("Item Standard Cost", { + setup(frm) { + // Only allow items whose effective valuation method is "Standard Cost". + frm.set_query("item_code", () => { + return { + query: "erpnext.stock.doctype.item_standard_cost.item_standard_cost.get_standard_cost_items", + filters: { + company: frm.doc.company, + }, + }; + }); + }, +}); diff --git a/erpnext/stock/doctype/item_standard_cost/item_standard_cost.json b/erpnext/stock/doctype/item_standard_cost/item_standard_cost.json new file mode 100644 index 00000000000..7a0e8ab85c9 --- /dev/null +++ b/erpnext/stock/doctype/item_standard_cost/item_standard_cost.json @@ -0,0 +1,138 @@ +{ + "actions": [], + "allow_import": 1, + "autoname": "naming_series:", + "creation": "2026-06-26 11:00:00.000000", + "doctype": "DocType", + "editable_grid": 1, + "engine": "InnoDB", + "field_order": [ + "naming_series", + "item_code", + "company", + "column_break_main", + "standard_rate", + "effective_date", + "revaluation_section", + "revaluation_entry", + "amended_from" + ], + "fields": [ + { + "default": "ISC-.YYYY.-", + "fieldname": "naming_series", + "fieldtype": "Select", + "label": "Series", + "options": "ISC-.YYYY.-", + "reqd": 1, + "set_only_once": 1 + }, + { + "fieldname": "item_code", + "fieldtype": "Link", + "in_list_view": 1, + "in_standard_filter": 1, + "label": "Item", + "options": "Item", + "reqd": 1, + "search_index": 1 + }, + { + "fieldname": "company", + "fieldtype": "Link", + "in_list_view": 1, + "in_standard_filter": 1, + "label": "Company", + "options": "Company", + "reqd": 1, + "search_index": 1 + }, + { + "fieldname": "column_break_main", + "fieldtype": "Column Break" + }, + { + "fieldname": "standard_rate", + "fieldtype": "Currency", + "in_list_view": 1, + "label": "Standard Valuation Rate", + "options": "Company:company:default_currency", + "reqd": 1 + }, + { + "default": "Today", + "fieldname": "effective_date", + "fieldtype": "Date", + "in_list_view": 1, + "label": "Effective Date", + "reqd": 1 + }, + { + "fieldname": "revaluation_section", + "fieldtype": "Section Break", + "label": "Revaluation" + }, + { + "description": "Stock Reconciliation auto-created to revalue on-hand stock to the new standard rate.", + "fieldname": "revaluation_entry", + "fieldtype": "Link", + "label": "Revaluation Entry", + "no_copy": 1, + "options": "Stock Reconciliation", + "read_only": 1 + }, + { + "fieldname": "amended_from", + "fieldtype": "Link", + "label": "Amended From", + "no_copy": 1, + "options": "Item Standard Cost", + "print_hide": 1, + "read_only": 1, + "search_index": 1 + } + ], + "index_web_pages_for_search": 1, + "is_submittable": 1, + "links": [], + "modified": "2026-06-26 11:00:00.000000", + "modified_by": "Administrator", + "module": "Stock", + "name": "Item Standard Cost", + "naming_rule": "By \"Naming Series\" field", + "owner": "Administrator", + "permissions": [ + { + "cancel": 1, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "Stock Manager", + "share": 1, + "submit": 1, + "write": 1 + }, + { + "cancel": 1, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "Accounts Manager", + "share": 1, + "submit": 1, + "write": 1 + } + ], + "sort_field": "creation", + "sort_order": "DESC", + "states": [], + "track_changes": 1 +} diff --git a/erpnext/stock/doctype/item_standard_cost/item_standard_cost.py b/erpnext/stock/doctype/item_standard_cost/item_standard_cost.py new file mode 100644 index 00000000000..09a00c886d6 --- /dev/null +++ b/erpnext/stock/doctype/item_standard_cost/item_standard_cost.py @@ -0,0 +1,299 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and contributors +# For license information, please see license.txt + +import frappe +from frappe import _ +from frappe.model.document import Document +from frappe.query_builder.functions import Max +from frappe.utils import flt, get_datetime, get_link_to_form, getdate, nowtime, today +from frappe.utils.caching import request_cache + +from erpnext.stock.utils import get_valuation_method + + +class ItemStandardCost(Document): + # begin: auto-generated types + # This code is auto-generated. Do not modify anything in this block. + + from typing import TYPE_CHECKING + + if TYPE_CHECKING: + from frappe.types import DF + + amended_from: DF.Link | None + company: DF.Link + effective_date: DF.Date + item_code: DF.Link + naming_series: DF.Literal["ISC-.YYYY.-"] + revaluation_entry: DF.Link | None + standard_rate: DF.Currency + # end: auto-generated types + + def validate(self): + self.validate_item() + self.validate_effective_date() + self.validate_rate() + + def validate_item(self): + if not frappe.get_cached_value("Item", self.item_code, "is_stock_item"): + frappe.throw(_("{0} is not a stock item.").format(frappe.bold(self.item_code))) + + if get_valuation_method(self.item_code, self.company) != "Standard Cost": + frappe.throw( + _("Valuation Method of Item {0} must be set to 'Standard Cost'.").format( + get_link_to_form("Item", self.item_code) + ) + ) + + def validate_effective_date(self): + # Standard cost is set "as of now"; future-dating would leave a gap where new receipts + # are valued at a rate that is not yet effective. + if getdate(self.effective_date) > getdate(today()): + frappe.throw(_("Effective Date cannot be a future date.")) + + # Effective dates must be strictly increasing so the rate history can be read by date. + last = self.get_last_standard_cost() + if last and getdate(self.effective_date) <= getdate(last.effective_date): + frappe.throw( + _("Effective Date must be after {0} (the last Standard Cost {1}).").format( + frappe.bold(frappe.format(last.effective_date, "Date")), + get_link_to_form("Item Standard Cost", last.name), + ) + ) + + def validate_rate(self): + if flt(self.standard_rate) <= 0: + frappe.throw(_("Standard Valuation Rate must be greater than zero.")) + + if self.get_last_standard_cost() is None: + # First-ever rate for this item+company: only allowed when no stock movement exists, + # so the item starts its life under Standard Cost (no historical revaluation needed). + if self.has_any_sle(): + frappe.throw( + _( + "Standard Cost can only be set up for {0} in {1} before any stock transaction exists." + ).format(get_link_to_form("Item", self.item_code), frappe.bold(self.company)) + ) + return + + # R1: a rate change must be effective on/after the latest stock activity, so the + # revaluation entry it creates never sits behind existing transactions. + last_sle_date = self.get_last_sle_date() + if last_sle_date and getdate(self.effective_date) < getdate(last_sle_date): + frappe.throw( + _("Effective Date cannot be before the last stock transaction date {0}.").format( + frappe.bold(frappe.format(last_sle_date, "Date")) + ) + ) + + def on_submit(self): + # This record is now the effective rate. Drop any request-cached lookup that may have read the + # previous (or missing) rate earlier in the request, so the revaluation below — and anything + # else in this request — reads the newly submitted rate. + clear_item_standard_rate_cache() + self.create_revaluation_entry() + + def before_cancel(self): + frappe.throw( + _("Item Standard Cost cannot be cancelled. Submit a new record to change the standard rate.") + ) + + def create_revaluation_entry(self): + """Revalue on-hand stock to the new standard rate via a Stock Reconciliation. + + Submitted atomically: if the reconciliation cannot be submitted (closed period, frozen + accounts, etc.) the exception propagates and this submission is rolled back.""" + balances = self.get_warehouse_wise_balance() + if not balances: + return + + reco = frappe.new_doc("Stock Reconciliation") + reco.company = self.company + reco.purpose = "Stock Reconciliation" + reco.posting_date = self.effective_date + reco.posting_time = self.get_revaluation_posting_time() + reco.set_posting_time = 1 + for row in balances: + reco.append( + "items", + { + "item_code": self.item_code, + "warehouse": row.warehouse, + "qty": row.actual_qty, + "valuation_rate": self.standard_rate, + }, + ) + + reco.flags.via_item_standard_cost = True + reco.insert() + reco.submit() + + self.db_set("revaluation_entry", reco.name) + + def get_revaluation_posting_time(self): + """Post the revaluation after the day's last stock movement. + + The reconciliation asserts the current on-hand quantity (Bin.actual_qty). If it were posted + before later same-day movements, it would backdate that quantity ahead of them and corrupt the + qty/value timeline. Using the time of the last SLE on the effective date (the reconciliation + sorts after it on creation) keeps the snapshot at the correct point; if there is no movement + that day, the current time is safe since no later movement can exist.""" + sle = frappe.qb.DocType("Stock Ledger Entry") + result = ( + frappe.qb.from_(sle) + .select(Max(sle.posting_datetime)) + .where( + (sle.item_code == self.item_code) + & (sle.company == self.company) + & (sle.is_cancelled == 0) + & (sle.posting_date == getdate(self.effective_date)) + ) + ).run() + + last_datetime = result[0][0] if result and result[0][0] else None + # Keep microsecond precision: posting_datetime is compared at microsecond granularity, so a + # truncated time would sort the reco before a same-second movement. Matching the exact time + # lets the later creation order the reco after it. + return get_datetime(last_datetime).strftime("%H:%M:%S.%f") if last_datetime else nowtime() + + def get_warehouse_wise_balance(self): + bin_table = frappe.qb.DocType("Bin") + warehouse = frappe.qb.DocType("Warehouse") + return ( + frappe.qb.from_(bin_table) + .inner_join(warehouse) + .on(bin_table.warehouse == warehouse.name) + .select(bin_table.warehouse, bin_table.actual_qty) + .where( + (bin_table.item_code == self.item_code) + & (warehouse.company == self.company) + & (bin_table.actual_qty != 0) + ) + ).run(as_dict=True) + + def get_last_standard_cost(self): + records = frappe.get_all( + "Item Standard Cost", + filters={ + "item_code": self.item_code, + "company": self.company, + "docstatus": 1, + "name": ("!=", self.name), + }, + fields=["name", "effective_date"], + order_by="effective_date desc, creation desc", + limit=1, + ) + return records[0] if records else None + + def get_last_sle_date(self): + sle = frappe.qb.DocType("Stock Ledger Entry") + result = ( + frappe.qb.from_(sle) + .select(Max(sle.posting_date)) + .where( + (sle.item_code == self.item_code) & (sle.company == self.company) & (sle.is_cancelled == 0) + ) + ).run() + return result[0][0] if result and result[0][0] else None + + def has_any_sle(self): + return bool( + frappe.db.exists( + "Stock Ledger Entry", + {"item_code": self.item_code, "company": self.company, "is_cancelled": 0}, + ) + ) + + +@request_cache +def get_item_standard_rate(item_code, company, posting_date=None): + """Return the standard valuation rate effective for `item_code` in `company` as of + `posting_date` (defaults to today) — i.e. the latest submitted Item Standard Cost whose + effective date is on or before the posting date.""" + posting_date = posting_date or today() + + rate = frappe.get_all( + "Item Standard Cost", + filters={ + "item_code": item_code, + "company": company, + "docstatus": 1, + "effective_date": ("<=", getdate(posting_date)), + }, + fields=["standard_rate"], + order_by="effective_date desc, creation desc", + limit=1, + pluck="standard_rate", + ) + + return flt(rate[0]) if rate else None + + +def clear_item_standard_rate_cache(): + """Drop the request-cached results of `get_item_standard_rate` so reads after a new Item Standard + Cost is submitted see the fresh rate instead of a value cached earlier in the same request.""" + cache = getattr(frappe.local, "request_cache", None) + if cache: + cache.pop(get_item_standard_rate.__wrapped__, None) + + +def get_purchase_price_variance_account(item_code, company): + """Resolve the Purchase Price Variance account for a Standard Cost item: the per-company + Item Default override if set, otherwise the Company default.""" + account = frappe.db.get_value( + "Item Default", + {"parent": item_code, "company": company}, + "purchase_price_variance_account", + ) + + if not account: + account = frappe.get_cached_value("Company", company, "default_purchase_price_variance_account") + + if not account: + frappe.throw( + _( + "Please set a Purchase Price Variance Account for Item {0} or a Default Purchase Price Variance Account in Company {1}." + ).format(get_link_to_form("Item", item_code), frappe.bold(company)) + ) + + return account + + +@frappe.whitelist() +@frappe.validate_and_sanitize_search_inputs +def get_standard_cost_items( + doctype: str, txt: str, searchfield: str, start: int, page_len: int, filters: dict | None +): + """Link-field query for Item Standard Cost: only items whose effective valuation method is + 'Standard Cost' — i.e. the item is explicitly Standard Cost, or it has no valuation method of its + own and the applicable default (Company, else Stock Settings) is Standard Cost. This mirrors + get_valuation_method, so every shown item also passes validate_item.""" + company = (filters or {}).get("company") + if company: + default_method = frappe.get_cached_value("Company", company, "valuation_method") + else: + default_method = frappe.db.get_single_value("Stock Settings", "valuation_method") + + if default_method == "Standard Cost": + # Items with no method of their own inherit the Standard Cost default. + valuation_condition = "and ifnull(item.valuation_method, '') in ('', 'Standard Cost')" + else: + valuation_condition = "and item.valuation_method = 'Standard Cost'" + + return frappe.db.sql( # nosemgrep + f""" + select item.name, item.item_name + from `tabItem` item + where item.is_stock_item = 1 + and item.disabled = 0 + and item.has_variants = 0 + {valuation_condition} + and ({searchfield} like %(txt)s or item.item_name like %(txt)s) + order by + (case when item.name like %(txt)s then 0 else 1 end), + item.name + limit %(page_len)s offset %(start)s + """, + {"txt": f"%{txt}%", "start": start, "page_len": page_len}, + ) diff --git a/erpnext/stock/doctype/item_standard_cost/test_item_standard_cost.py b/erpnext/stock/doctype/item_standard_cost/test_item_standard_cost.py new file mode 100644 index 00000000000..c695694eeca --- /dev/null +++ b/erpnext/stock/doctype/item_standard_cost/test_item_standard_cost.py @@ -0,0 +1,487 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and Contributors +# See license.txt + +import frappe +from frappe.utils import add_days, flt, today + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.stock_entry.stock_entry_utils import make_stock_entry +from erpnext.tests.utils import ERPNextTestSuite + +TEST_COMPANY = "_Test Company" +TEST_WAREHOUSE = "_Test Warehouse - _TC" + +# Perpetual-inventory company, needed to assert stock GL entries. +PI_COMPANY = "_Test Company with perpetual inventory" +PI_STORES = "Stores - TCP1" +PI_FG = "Finished Goods - TCP1" + + +def create_standard_cost_item(**properties): + props = {"valuation_method": "Standard Cost", "is_stock_item": 1, "is_purchase_item": 1} + props.update(properties) + return make_item(properties=props) + + +def create_item_standard_cost(item_code, rate, company=TEST_COMPANY, effective_date=None, submit=True): + doc = frappe.new_doc("Item Standard Cost") + doc.item_code = item_code + doc.company = company + doc.standard_rate = rate + doc.effective_date = effective_date or today() + doc.insert() + if submit: + doc.submit() + return doc + + +def ensure_ppv_account(company): + """Ensure `company` has a Default Purchase Price Variance Account so receipts/invoices of + Standard Cost items can book the receipt-rate-vs-standard difference.""" + account = frappe.get_cached_value("Company", company, "default_purchase_price_variance_account") + if account: + return account + + from erpnext.accounts.doctype.account.test_account import create_account + + # Place it under the same group as the company's default expense account. + expense_account = frappe.get_cached_value("Company", company, "default_expense_account") + parent_account = frappe.db.get_value("Account", expense_account, "parent_account") + account = create_account( + account_name="Purchase Price Variance", + account_type="Expense Account", + parent_account=parent_account, + company=company, + account_currency=frappe.get_cached_value("Company", company, "default_currency"), + ) + frappe.db.set_value("Company", company, "default_purchase_price_variance_account", account) + return account + + +class TestItemStandardCost(ERPNextTestSuite): + def setUp(self): + ensure_ppv_account(TEST_COMPANY) + ensure_ppv_account(PI_COMPANY) + + def test_only_for_standard_cost_items(self): + item = make_item(properties={"valuation_method": "FIFO", "is_stock_item": 1}) + isc = frappe.new_doc("Item Standard Cost") + isc.item_code = item.name + isc.company = TEST_COMPANY + isc.standard_rate = 100 + self.assertRaises(frappe.ValidationError, isc.insert) + + def test_item_link_query_lists_only_standard_cost_items(self): + from erpnext.stock.doctype.item_standard_cost.item_standard_cost import get_standard_cost_items + + sc_item = create_standard_cost_item().name + fifo_item = make_item(properties={"valuation_method": "FIFO", "is_stock_item": 1}).name + + def listed(item_code): + rows = get_standard_cost_items("Item", item_code, "name", 0, 20, {"company": TEST_COMPANY}) + return item_code in [row[0] for row in rows] + + self.assertTrue(listed(sc_item)) + self.assertFalse(listed(fifo_item)) + + def test_rate_must_be_positive(self): + item = create_standard_cost_item() + isc = frappe.new_doc("Item Standard Cost") + isc.item_code = item.name + isc.company = TEST_COMPANY + isc.standard_rate = 0 + self.assertRaises(frappe.ValidationError, isc.insert) + + def test_future_effective_date_blocked(self): + item = create_standard_cost_item() + isc = frappe.new_doc("Item Standard Cost") + isc.item_code = item.name + isc.company = TEST_COMPANY + isc.standard_rate = 100 + isc.effective_date = add_days(today(), 5) + self.assertRaises(frappe.ValidationError, isc.insert) + + def test_first_record_requires_no_stock_ledger_entry(self): + # An item that already has stock movement cannot be moved onto Standard Cost retroactively. + item = make_item(properties={"valuation_method": "FIFO", "is_stock_item": 1}) + make_stock_entry(item_code=item.name, target=TEST_WAREHOUSE, qty=5, basic_rate=100) + + # Force the method at the db level (the Item-level guard would otherwise block enabling + # Standard Cost while stock exists) and drop the cached valuation method. + frappe.db.set_value("Item", item.name, "valuation_method", "Standard Cost") + frappe.local.request_cache.clear() + + isc = frappe.new_doc("Item Standard Cost") + isc.item_code = item.name + isc.company = TEST_COMPANY + isc.standard_rate = 100 + self.assertRaises(frappe.ValidationError, isc.insert) + + def test_receipt_valued_at_standard(self): + item = create_standard_cost_item() + create_item_standard_cost(item.name, rate=100) + + # Receive at a different (billed) rate; the ledger must still value at the standard 100. + se = make_stock_entry(item_code=item.name, target=TEST_WAREHOUSE, qty=10, basic_rate=150) + + sle = frappe.get_all( + "Stock Ledger Entry", + filters={"voucher_no": se.name, "is_cancelled": 0}, + fields=["valuation_rate", "stock_value", "incoming_rate"], + )[0] + self.assertEqual(flt(sle.valuation_rate), 100) + self.assertEqual(flt(sle.stock_value), 1000) + self.assertEqual(flt(sle.incoming_rate), 100) + + def test_rate_change_revalues_on_hand_stock(self): + # Effective dates must strictly increase, so stage the rate change on a later date. + item = create_standard_cost_item() + create_item_standard_cost(item.name, rate=100, effective_date=add_days(today(), -10)) + make_stock_entry( + item_code=item.name, + target=TEST_WAREHOUSE, + qty=10, + basic_rate=100, + posting_date=add_days(today(), -5), + ) + + isc = create_item_standard_cost(item.name, rate=130, effective_date=today()) + + # Submitting the new rate must auto-create and submit a revaluation Stock Reconciliation. + self.assertTrue(isc.revaluation_entry) + reco_status = frappe.db.get_value("Stock Reconciliation", isc.revaluation_entry, "docstatus") + self.assertEqual(reco_status, 1) + + stock_value = frappe.db.get_value( + "Bin", {"item_code": item.name, "warehouse": TEST_WAREHOUSE}, "stock_value" + ) + self.assertEqual(flt(stock_value), 1300) + + def test_backdated_entry_fast_qty_repost(self): + item = create_standard_cost_item() + create_item_standard_cost(item.name, rate=100, effective_date=add_days(today(), -10)) + + se1 = make_stock_entry( + item_code=item.name, + target=TEST_WAREHOUSE, + qty=10, + basic_rate=100, + posting_date=add_days(today(), -5), + ) + se2 = make_stock_entry( + item_code=item.name, + target=TEST_WAREHOUSE, + qty=5, + basic_rate=100, + posting_date=add_days(today(), -2), + ) + se0 = make_stock_entry( + item_code=item.name, + target=TEST_WAREHOUSE, + qty=20, + basic_rate=100, + posting_date=add_days(today(), -7), + ) + + def sle(se): + return frappe.db.get_value( + "Stock Ledger Entry", + {"voucher_no": se.name, "is_cancelled": 0}, + ["qty_after_transaction", "stock_value"], + as_dict=True, + ) + + self.assertEqual(flt(sle(se0).qty_after_transaction), 20) + self.assertEqual(flt(sle(se1).qty_after_transaction), 30) + self.assertEqual(flt(sle(se2).qty_after_transaction), 35) + self.assertEqual(flt(sle(se1).stock_value), 3000) + self.assertEqual(flt(sle(se2).stock_value), 3500) + + bin_data = frappe.db.get_value( + "Bin", + {"item_code": item.name, "warehouse": TEST_WAREHOUSE}, + ["actual_qty", "stock_value"], + as_dict=True, + ) + self.assertEqual(flt(bin_data.actual_qty), 35) + self.assertEqual(flt(bin_data.stock_value), 3500) + + self.assertFalse(frappe.db.exists("Repost Item Valuation", {"voucher_no": se0.name})) + + def test_cannot_cancel(self): + item = create_standard_cost_item() + isc = create_item_standard_cost(item.name, rate=100) + self.assertRaises(frappe.ValidationError, isc.cancel) + + def test_direct_stock_reconciliation_blocked(self): + from erpnext.stock.doctype.stock_reconciliation.test_stock_reconciliation import ( + create_stock_reconciliation, + ) + + item = create_standard_cost_item() + create_item_standard_cost(item.name, rate=100) + make_stock_entry(item_code=item.name, target=TEST_WAREHOUSE, qty=10, basic_rate=100) + + self.assertRaises( + frappe.ValidationError, + create_stock_reconciliation, + item_code=item.name, + warehouse=TEST_WAREHOUSE, + qty=8, + rate=120, + ) + + def test_backdated_transaction_blocked(self): + item = create_standard_cost_item() + create_item_standard_cost(item.name, rate=100, effective_date=today()) + + # R2 is enforced when the stock ledger entries are written, i.e. at submit time. + se = make_stock_entry( + item_code=item.name, + target=TEST_WAREHOUSE, + qty=10, + basic_rate=100, + posting_date=add_days(today(), -3), + do_not_submit=True, + ) + self.assertRaises(frappe.ValidationError, se.submit) + + def test_manufacturing_variance_books_to_stock_adjustment(self): + # RM standard 50, FG standard 200. Consuming 5 RM (250) to produce 1 FG (200) leaves a + # 50 manufacturing variance, which must land in the company's Stock Adjustment account. + rm = create_standard_cost_item() + fg = create_standard_cost_item() + create_item_standard_cost(rm.name, rate=50, company=PI_COMPANY) + create_item_standard_cost(fg.name, rate=200, company=PI_COMPANY) + + make_stock_entry(item_code=rm.name, to_warehouse=PI_STORES, company=PI_COMPANY, qty=10, basic_rate=50) + + se = frappe.new_doc("Stock Entry") + se.purpose = "Repack" + se.stock_entry_type = "Repack" + se.company = PI_COMPANY + se.append("items", {"item_code": rm.name, "s_warehouse": PI_STORES, "qty": 5}) + se.append("items", {"item_code": fg.name, "t_warehouse": PI_FG, "qty": 1, "is_finished_item": 1}) + se.insert() + se.submit() + + # FG is valued at its own standard, not the rolled-up RM cost. + fg_sle = frappe.db.get_value( + "Stock Ledger Entry", + {"voucher_no": se.name, "item_code": fg.name, "is_cancelled": 0}, + ["valuation_rate", "stock_value_difference"], + as_dict=True, + ) + self.assertEqual(flt(fg_sle.valuation_rate), 200) + self.assertEqual(flt(fg_sle.stock_value_difference), 200) + + stock_adj = frappe.get_cached_value("Company", PI_COMPANY, "stock_adjustment_account") + net = frappe.db.sql( + "select sum(debit - credit) from `tabGL Entry` where voucher_no=%s and account=%s", + (se.name, stock_adj), + )[0][0] + self.assertEqual(flt(net), 50) + + def test_valuation_method_change_blocked_with_stock(self): + item = create_standard_cost_item() + create_item_standard_cost(item.name, rate=100) + make_stock_entry(item_code=item.name, target=TEST_WAREHOUSE, qty=10, basic_rate=100) + + item.reload() + item.valuation_method = "FIFO" + self.assertRaises(frappe.ValidationError, item.save) + + def test_batched_item_revalued_across_warehouses(self): + # A rate change must revalue a batched Standard Cost item in every warehouse, posted as a + # pure value change without a serial/batch bundle. + item = create_standard_cost_item( + has_batch_no=1, create_new_batch=1, batch_number_series="SC-BATCH-.####" + ) + create_item_standard_cost( + item.name, rate=100, company=PI_COMPANY, effective_date=add_days(today(), -5) + ) + + make_stock_entry( + item_code=item.name, + to_warehouse=PI_STORES, + company=PI_COMPANY, + qty=3, + basic_rate=100, + use_serial_batch_fields=1, + posting_date=add_days(today(), -3), + ) + make_stock_entry( + item_code=item.name, + to_warehouse=PI_FG, + company=PI_COMPANY, + qty=2, + basic_rate=100, + use_serial_batch_fields=1, + posting_date=add_days(today(), -3), + ) + + isc = create_item_standard_cost(item.name, rate=150, company=PI_COMPANY, effective_date=today()) + self.assertTrue(isc.revaluation_entry) + + for warehouse, qty in ((PI_STORES, 3), (PI_FG, 2)): + stock_value = frappe.db.get_value( + "Bin", {"item_code": item.name, "warehouse": warehouse}, "stock_value" + ) + self.assertEqual(flt(stock_value), qty * 150) + + def test_serialized_item_revalued_across_warehouses(self): + item = create_standard_cost_item(has_serial_no=1, serial_no_series="SC-SER-.####") + create_item_standard_cost( + item.name, rate=100, company=PI_COMPANY, effective_date=add_days(today(), -5) + ) + + make_stock_entry( + item_code=item.name, + to_warehouse=PI_STORES, + company=PI_COMPANY, + qty=3, + basic_rate=100, + use_serial_batch_fields=1, + posting_date=add_days(today(), -3), + ) + make_stock_entry( + item_code=item.name, + to_warehouse=PI_FG, + company=PI_COMPANY, + qty=2, + basic_rate=100, + use_serial_batch_fields=1, + posting_date=add_days(today(), -3), + ) + + isc = create_item_standard_cost(item.name, rate=150, company=PI_COMPANY, effective_date=today()) + self.assertTrue(isc.revaluation_entry) + + for warehouse, qty in ((PI_STORES, 3), (PI_FG, 2)): + stock_value = frappe.db.get_value( + "Bin", {"item_code": item.name, "warehouse": warehouse}, "stock_value" + ) + self.assertEqual(flt(stock_value), qty * 150) + + def test_standard_rate_cache_invalidated_after_submit(self): + from erpnext.stock.doctype.item_standard_cost.item_standard_cost import get_item_standard_rate + + item = create_standard_cost_item() + + # Read (and request-cache) the rate before any Item Standard Cost exists. + self.assertIsNone(get_item_standard_rate(item.name, TEST_COMPANY)) + + create_item_standard_cost(item.name, rate=100) + + # The submit must have invalidated the cache, so this reads the freshly submitted rate. + self.assertEqual(flt(get_item_standard_rate(item.name, TEST_COMPANY)), 100) + + def test_pr_stock_value_excludes_rejected_warehouse(self): + # Accepted and rejected stock for one receipt row share voucher_detail_no. The standard-cost + # SRBNB split must clear only the accepted warehouse's value, not accepted + rejected. + from erpnext.accounts.doctype.purchase_invoice.services.gl_composer import ( + PurchaseInvoiceGLComposer, + ) + from erpnext.stock.doctype.purchase_receipt.test_purchase_receipt import make_purchase_receipt + from erpnext.stock.doctype.warehouse.test_warehouse import create_warehouse + + item = create_standard_cost_item() + create_item_standard_cost(item.name, rate=100, company=PI_COMPANY) + + rejected_warehouse = create_warehouse("_Test SC Rejected Warehouse", company=PI_COMPANY) + + # Receive 10 accepted + 2 rejected at a billed rate of 150; both SLEs value at the standard 100. + pr = make_purchase_receipt( + item_code=item.name, + company=PI_COMPANY, + warehouse=PI_STORES, + qty=10, + rejected_qty=2, + rejected_warehouse=rejected_warehouse, + rate=150, + ) + + # Method body uses only `item`, so it can be called unbound. + def pr_value(stock_qty): + mock_item = frappe._dict( + purchase_receipt=pr.name, pr_detail=pr.items[0].name, stock_qty=stock_qty + ) + return flt(PurchaseInvoiceGLComposer.get_pr_stock_value(None, mock_item)) + + # Billing all 10: accepted only (10 * 100), not accepted + rejected (12 * 100). + self.assertEqual(pr_value(10), 1000) + # Billing only 4 of the 10 accepted units: pro-rated to the invoiced qty (4 * 100). + self.assertEqual(pr_value(4), 400) + + def test_pr_books_variance_to_ppv_account(self): + # Receiving a Standard Cost item at a rate above the standard must book the difference to the + # Purchase Price Variance account, not the default expense (COGS) account. + from erpnext.stock.doctype.purchase_receipt.test_purchase_receipt import make_purchase_receipt + + ppv_account = ensure_ppv_account(PI_COMPANY) + cogs_account = frappe.get_cached_value("Company", PI_COMPANY, "default_expense_account") + + item = create_standard_cost_item() + create_item_standard_cost(item.name, rate=130, company=PI_COMPANY) + + # Receive 1 @ 200: stock booked at standard 130, the 70 difference is the purchase price variance. + pr = make_purchase_receipt( + item_code=item.name, company=PI_COMPANY, warehouse=PI_STORES, qty=1, rate=200 + ) + + def booked(account): + return flt( + frappe.db.sql( + "select sum(debit - credit) from `tabGL Entry` where voucher_no=%s and account=%s and is_cancelled=0", + (pr.name, account), + )[0][0] + ) + + self.assertEqual(booked(ppv_account), 70) + self.assertEqual(booked(cogs_account), 0) + + def test_pr_throws_without_ppv_account(self): + # Receiving a Standard Cost item with a variance but no PPV account configured must error. + from erpnext.stock.doctype.purchase_receipt.test_purchase_receipt import make_purchase_receipt + + previous = frappe.get_cached_value("Company", PI_COMPANY, "default_purchase_price_variance_account") + frappe.db.set_value("Company", PI_COMPANY, "default_purchase_price_variance_account", None) + frappe.clear_cache(doctype="Company") + try: + item = create_standard_cost_item() + create_item_standard_cost(item.name, rate=130, company=PI_COMPANY) + self.assertRaises( + frappe.ValidationError, + make_purchase_receipt, + item_code=item.name, + company=PI_COMPANY, + warehouse=PI_STORES, + qty=1, + rate=200, + ) + finally: + frappe.db.set_value("Company", PI_COMPANY, "default_purchase_price_variance_account", previous) + frappe.clear_cache(doctype="Company") + + def test_revaluation_posted_after_same_day_movement(self): + # A movement earlier on the effective date must not end up after the revaluation, otherwise the + # reco would backdate the current quantity ahead of it. + item = create_standard_cost_item() + create_item_standard_cost(item.name, rate=100, effective_date=add_days(today(), -2)) + + se = make_stock_entry( + item_code=item.name, target=TEST_WAREHOUSE, qty=10, basic_rate=100, posting_date=today() + ) + + isc = create_item_standard_cost(item.name, rate=150, effective_date=today()) + + reco_time = frappe.db.get_value("Stock Reconciliation", isc.revaluation_entry, "posting_time") + se_time = frappe.db.get_value( + "Stock Ledger Entry", {"voucher_no": se.name, "is_cancelled": 0}, "posting_time" + ) + self.assertGreaterEqual(str(reco_time), str(se_time)) + + stock_value = frappe.db.get_value( + "Bin", {"item_code": item.name, "warehouse": TEST_WAREHOUSE}, "stock_value" + ) + self.assertEqual(flt(stock_value), 1500) diff --git a/erpnext/stock/doctype/purchase_receipt/services/gl_composer.py b/erpnext/stock/doctype/purchase_receipt/services/gl_composer.py index 4af4c93bd6d..7cd7e3d2622 100644 --- a/erpnext/stock/doctype/purchase_receipt/services/gl_composer.py +++ b/erpnext/stock/doctype/purchase_receipt/services/gl_composer.py @@ -240,13 +240,7 @@ class PurchaseReceiptGLComposer(BaseStockGLComposer): divisional_loss -= rejected_item_cost if divisional_loss: - loss_account = ( - doc.get_company_default("default_expense_account", ignore_validation=True) - or stock_asset_rbnb - ) - - if doc.is_return and item.expense_account: - loss_account = item.expense_account + loss_account = self.get_divisional_loss_account(item, stock_asset_rbnb) cost_center = item.cost_center or frappe.get_cached_value( "Company", doc.company, "cost_center" @@ -359,6 +353,30 @@ class PurchaseReceiptGLComposer(BaseStockGLComposer): + "\n".join(warehouse_with_no_account) ) + def get_divisional_loss_account(self, item, stock_asset_rbnb): + """Account that absorbs the difference between the document value and the value actually + booked into stock. For a Standard Cost item this difference is a purchase price variance + (receipt rate vs standard rate), so it goes to the Purchase Price Variance account; for all + other items it keeps the existing behaviour (default expense account, or the item's expense + account on a return).""" + from erpnext.stock.utils import get_valuation_method + + doc = self.doc + if item.item_code and get_valuation_method(item.item_code, doc.company) == "Standard Cost": + from erpnext.stock.doctype.item_standard_cost.item_standard_cost import ( + get_purchase_price_variance_account, + ) + + return get_purchase_price_variance_account(item.item_code, doc.company) + + loss_account = ( + doc.get_company_default("default_expense_account", ignore_validation=True) or stock_asset_rbnb + ) + if doc.is_return and item.expense_account: + loss_account = item.expense_account + + return loss_account + def _make_tax_gl_entries(self, gl_entries: list, via_landed_cost_voucher: bool = False) -> None: doc = self.doc negative_expense_to_be_booked = sum([flt(d.item_tax_amount) for d in doc.get("items")]) diff --git a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py index 99363c760f9..8ec74a3df4d 100644 --- a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +++ b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py @@ -234,12 +234,21 @@ class StockLedgerEntry(Document): self.throw_error_message(f"Item {self.item_code} must be a stock Item") if item_detail.has_serial_no or item_detail.has_batch_no: - if not self.serial_and_batch_bundle: + if not self.serial_and_batch_bundle and not self.is_standard_cost_revaluation(): self.throw_error_message(f"Serial No / Batch No are mandatory for Item {self.item_code}") if self.serial_and_batch_bundle and not item_detail.has_serial_no and not item_detail.has_batch_no: self.throw_error_message(f"Serial No and Batch No are not allowed for Item {self.item_code}") + def is_standard_cost_revaluation(self): + """A Standard Cost item is revalued through a Stock Reconciliation that changes the rate only + (qty unchanged); it carries no serial/batch bundle, so the bundle requirement is bypassed.""" + from erpnext.stock.doctype.stock_reconciliation.stock_reconciliation import is_standard_cost_item + + return self.voucher_type == "Stock Reconciliation" and is_standard_cost_item( + self.item_code, self.company + ) + def throw_error_message(self, message, exception=frappe.ValidationError): frappe.throw(_(message), exception) diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py index d165b802889..5bba06f9a67 100644 --- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py @@ -7,7 +7,7 @@ from datetime import timedelta import frappe from frappe import _, bold, json, msgprint from frappe.query_builder.functions import Sum -from frappe.utils import add_to_date, cint, cstr, flt, now +from frappe.utils import add_to_date, cint, cstr, flt, get_link_to_form, now from frappe.utils.data import DateTimeLikeObject import erpnext @@ -21,7 +21,7 @@ from erpnext.stock.doctype.serial_and_batch_bundle.serial_and_batch_bundle impor ) from erpnext.stock.doctype.serial_no.serial_no import get_serial_nos from erpnext.stock.doctype.stock_reconciliation_item.stock_reconciliation_item import StockReconciliationItem -from erpnext.stock.utils import get_incoming_rate, get_stock_balance +from erpnext.stock.utils import get_incoming_rate, get_stock_balance, get_valuation_method class OpeningEntryAccountError(frappe.ValidationError): @@ -71,6 +71,7 @@ class StockReconciliation(StockController): sbb = SerialBatchBundleService(self) + self.validate_standard_cost_items() self.validate_items_exist() if not self.expense_account: self.expense_account = frappe.get_cached_value( @@ -172,6 +173,20 @@ class StockReconciliation(StockController): } ) + def validate_standard_cost_items(self): + """Stock Reconciliation is not allowed for Standard Cost items — their rate is changed + only through the Item Standard Cost doctype (which creates the revaluation reco itself).""" + if self.flags.via_item_standard_cost: + return + + for item in self.items: + if item.item_code and is_standard_cost_item(item.item_code, self.company): + frappe.throw( + _( + "Row #{0}: Stock Reconciliation is not allowed for Item {1}, which uses the Standard Cost valuation method. Change its rate through Item Standard Cost instead." + ).format(item.idx, get_link_to_form("Item", item.item_code)) + ) + def set_current_serial_and_batch_bundle(self, voucher_detail_no=None, save=False) -> None: """Set Serial and Batch Bundle for each item""" for item in self.items: @@ -181,6 +196,12 @@ class StockReconciliation(StockController): if not item.item_code: continue + # Standard Cost revaluation recos are pure value changes: qty is unchanged and the SLE is + # revalued at the standard rate, so no serial/batch bundle is created (see update_stock_ledger, + # which routes these rows through the single revaluation SLE path). + if is_standard_cost_item(item.item_code, self.company): + continue + item_details = frappe.get_cached_value( "Item", item.item_code, ["has_serial_no", "has_batch_no"], as_dict=1 ) @@ -431,6 +452,10 @@ class StockReconciliation(StockController): if not item.item_code: continue + # Standard Cost revaluation recos are pure value changes; no serial/batch bundle needed. + if is_standard_cost_item(item.item_code, self.company): + continue + if item.use_serial_batch_fields: continue @@ -551,7 +576,9 @@ class StockReconciliation(StockController): if item.valuation_rate is None: item.valuation_rate = item_dict.get("rate") - if item_dict.get("serial_nos"): + # Standard Cost items are revalued by rate only; don't pull serial nos onto the row, or a + # serial/batch bundle would be built for what must stay a pure value-change SLE. + if item_dict.get("serial_nos") and not is_standard_cost_item(item.item_code, self.company): item.current_serial_no = item_dict.get("serial_nos") if self.purpose == "Stock Reconciliation" and not item.serial_no and item.qty: item.serial_no = item.current_serial_no @@ -767,7 +794,12 @@ class StockReconciliation(StockController): "Item", row.item_code, ["has_serial_no", "has_batch_no"], as_dict=1 ) - if item.has_serial_no or item.has_batch_no: + # A Standard Cost item is revalued by rate alone (qty unchanged, valuation from the standard + # rate), so even a serialized/batched one is posted through the single revaluation SLE path + # without a serial/batch bundle, the same as a non-serial item. + if (item.has_serial_no or item.has_batch_no) and not is_standard_cost_item( + row.item_code, self.company + ): self.get_sle_for_serialized_items(row, sl_entries) else: if row.serial_and_batch_bundle: @@ -1134,6 +1166,10 @@ class StockReconciliation(StockController): self._cancel() +def is_standard_cost_item(item_code, company): + return get_valuation_method(item_code, company) == "Standard Cost" + + @frappe.whitelist() def get_items( warehouse: str, diff --git a/erpnext/stock/doctype/stock_settings/stock_settings.json b/erpnext/stock/doctype/stock_settings/stock_settings.json index f9b46cf6e4f..48981955052 100644 --- a/erpnext/stock/doctype/stock_settings/stock_settings.json +++ b/erpnext/stock/doctype/stock_settings/stock_settings.json @@ -134,7 +134,7 @@ "fieldname": "valuation_method", "fieldtype": "Select", "label": "Default Valuation Method", - "options": "FIFO\nMoving Average\nLIFO" + "options": "FIFO\nMoving Average\nLIFO\nStandard Cost" }, { "description": "The 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.", @@ -602,7 +602,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2026-06-13 12:38:02.202183", + "modified": "2026-06-26 10:00:00.000000", "modified_by": "Administrator", "module": "Stock", "name": "Stock Settings", diff --git a/erpnext/stock/serial_batch_bundle.py b/erpnext/stock/serial_batch_bundle.py index 9d0ad704480..5eef60dcc1a 100644 --- a/erpnext/stock/serial_batch_bundle.py +++ b/erpnext/stock/serial_batch_bundle.py @@ -1342,6 +1342,15 @@ class SerialBatchCreation: def set_serial_batch_entries(self, doc): incoming_rate = self.get("incoming_rate") + standard_rate = self.get_standard_cost_rate() + if standard_rate is not None: + # Standard Cost values every serial/batch at the same rate, so the bundle entries + # must carry the standard rate (not the document/billed rate) to stay consistent + # with the standard-valued Stock Ledger Entry. + incoming_rate = standard_rate + self.serial_nos_valuation = None + self.batches_valuation = None + precision = frappe.get_precision("Serial and Batch Entry", "qty") if self.get("serial_nos"): serial_no_wise_batch = frappe._dict({}) @@ -1378,6 +1387,25 @@ class SerialBatchCreation: }, ) + def get_standard_cost_rate(self): + """Return the standard valuation rate for the item if its valuation method is + Standard Cost, else None — used to value bundle entries at standard.""" + from erpnext.stock.doctype.item_standard_cost.item_standard_cost import get_item_standard_rate + from erpnext.stock.utils import get_valuation_method + + company = self.get("company") + if not company and self.get("warehouse"): + company = frappe.get_cached_value("Warehouse", self.warehouse, "company") + + if not company or get_valuation_method(self.item_code, company) != "Standard Cost": + return None + + posting_date = self.get("posting_date") + if not posting_date and self.get("posting_datetime"): + posting_date = getdate(self.posting_datetime) + + return get_item_standard_rate(self.item_code, company, posting_date) + def create_batch(self): from erpnext.stock.doctype.batch.batch import make_batch diff --git a/erpnext/stock/stock_ledger.py b/erpnext/stock/stock_ledger.py index d444da767e5..c5ecdc130fa 100644 --- a/erpnext/stock/stock_ledger.py +++ b/erpnext/stock/stock_ledger.py @@ -17,6 +17,7 @@ from frappe.utils import ( format_date, get_datetime, get_link_to_form, + getdate, now, nowdate, nowtime, @@ -53,6 +54,52 @@ class SerialNoExistsInFutureTransaction(frappe.ValidationError): pass +def validate_standard_cost_posting_date(sl_entries): + """R2: a Standard Cost item's stock transaction cannot be dated before the latest Item + Standard Cost effective date. A backdated entry would slip in behind the standard-rate + revaluation, making its on-hand snapshot stale and forcing a repost — which Standard Cost + deliberately avoids. Enforced here so every stock voucher is covered uniformly.""" + from erpnext.stock.utils import get_valuation_method + + checked = {} + for sle in sl_entries: + item_code = sle.get("item_code") + company = sle.get("company") + posting_date = sle.get("posting_date") + if not item_code or not company or not posting_date: + continue + + key = (item_code, company) + if key not in checked: + latest_isc = None + if get_valuation_method(item_code, company) == "Standard Cost": + latest_isc = frappe.db.get_value( + "Item Standard Cost", + {"item_code": item_code, "company": company, "docstatus": 1}, + ["name", "effective_date"], + order_by="effective_date desc", + as_dict=True, + ) + checked[key] = latest_isc + + latest_isc = checked[key] + if latest_isc and getdate(posting_date) < getdate(latest_isc.effective_date): + effective_date = frappe.bold(frappe.format(latest_isc.effective_date, "Date")) + frappe.throw( + _( + "Cannot post Standard Cost item {0} on {1}: it is before {2}, the effective date of its latest Standard Valuation Rate {3}." + ).format( + get_link_to_form("Item", item_code), + frappe.bold(frappe.format(posting_date, "Date")), + effective_date, + get_link_to_form("Item Standard Cost", latest_isc.name), + ) + + "

            " + + _("Post this entry on or after {0}.").format(effective_date), + title=_("Backdated Entry Not Allowed"), + ) + + def make_sl_entries(sl_entries, allow_negative_stock=False, via_landed_cost_voucher=False): """Create SL entries from SL entry dicts @@ -71,6 +118,8 @@ def make_sl_entries(sl_entries, allow_negative_stock=False, via_landed_cost_vouc if cancelled: validate_cancellation(sl_entries) set_as_cancel(sl_entries[0].get("voucher_type"), sl_entries[0].get("voucher_no")) + else: + validate_standard_cost_posting_date(sl_entries) args = get_args_for_future_sle(sl_entries[0]) future_sle_exists(args, sl_entries) @@ -843,6 +892,29 @@ class update_entries_after: indicator="blue", ) + def process_standard_cost(self, sle): + from erpnext.stock.doctype.item_standard_cost.item_standard_cost import get_item_standard_rate + + rate = get_item_standard_rate(sle.item_code, self.company, sle.posting_date) + if rate is None: + frappe.throw( + _( + "No Standard Valuation Rate found for Item {0} in Company {1} as on {2}. Please create an Item Standard Cost record." + ).format(bold(sle.item_code), bold(self.company), bold(sle.posting_date)) + ) + + if sle.voucher_type == "Stock Reconciliation" and sle.get("qty_after_transaction") is not None: + self.wh_data.qty_after_transaction = flt(sle.qty_after_transaction) + else: + self.wh_data.qty_after_transaction += flt(sle.actual_qty) + + self.wh_data.valuation_rate = rate + self.wh_data.stock_value = flt(self.wh_data.qty_after_transaction) * flt(rate) + self.wh_data.stock_queue = [[self.wh_data.qty_after_transaction, rate]] + + if flt(sle.actual_qty) > 0: + sle.incoming_rate = rate + def process_sle(self, sle): # previous sle data for this warehouse key = (sle.item_code, sle.warehouse) @@ -897,7 +969,11 @@ class update_entries_after: if sle.get(dimension.get("fieldname")): has_dimensions = True - if sle.serial_and_batch_bundle: + if self.valuation_method == "Standard Cost": + # Inventory is always carried at the standard rate effective on the posting date; + # FIFO/Moving Average/serial-batch valuation is bypassed entirely. + self.process_standard_cost(sle) + elif sle.serial_and_batch_bundle: self.calculate_valuation_for_serial_batch_bundle(sle) elif sle.serial_no and not self.args.get("sle_id"): # Only run in reposting @@ -2065,21 +2141,50 @@ def update_qty_in_future_sle(args, allow_negative_stock=False): detail = next_stock_reco_detail[0] datetime_limit_condition = get_datetime_limit_condition(detail) - frappe.db.sql( # nosemgrep - f""" - update `tabStock Ledger Entry` - set qty_after_transaction = qty_after_transaction + {qty_shift} - where - item_code = %(item_code)s - and warehouse = %(warehouse)s - and is_cancelled = 0 - and ( - posting_datetime > %(posting_datetime)s - ) - {datetime_limit_condition} - """, - args, - ) + if get_valuation_method(args.get("item_code"), args.get("company")) == "Standard Cost": + # Standard Cost inventory is always carried at the standard rate, so a backdated entry only + # shifts future balances — no full repost is needed. Update qty and value in place: + # stock_value = qty_after_transaction * standard rate, which is constant across this range + # (a rate change posts a reconciliation that bounds it). stock_value_difference is unchanged + # because every future balance shifts by the same amount. + from erpnext.stock.doctype.item_standard_cost.item_standard_cost import get_item_standard_rate + + standard_rate = flt( + get_item_standard_rate(args.get("item_code"), args.get("company"), args.get("posting_date")) + ) + + frappe.db.sql( # nosemgrep + f""" + update `tabStock Ledger Entry` + set stock_value = (qty_after_transaction + {qty_shift}) * {standard_rate}, + qty_after_transaction = qty_after_transaction + {qty_shift} + where + item_code = %(item_code)s + and warehouse = %(warehouse)s + and is_cancelled = 0 + and ( + posting_datetime > %(posting_datetime)s + ) + {datetime_limit_condition} + """, + args, + ) + else: + frappe.db.sql( # nosemgrep + f""" + update `tabStock Ledger Entry` + set qty_after_transaction = qty_after_transaction + {qty_shift} + where + item_code = %(item_code)s + and warehouse = %(warehouse)s + and is_cancelled = 0 + and ( + posting_datetime > %(posting_datetime)s + ) + {datetime_limit_condition} + """, + args, + ) validate_negative_qty_in_future_sle(args, allow_negative_stock) From 56926ffe00fb7723149c5e70a1f2829d0b77d256 Mon Sep 17 00:00:00 2001 From: MochaMind Date: Mon, 29 Jun 2026 00:58:18 +0530 Subject: [PATCH 069/161] chore: update POT file (#56592) --- erpnext/locale/main.pot | 2981 ++++++++++++++++++++------------------- 1 file changed, 1500 insertions(+), 1481 deletions(-) diff --git a/erpnext/locale/main.pot b/erpnext/locale/main.pot index 01b4da55b68..207c17774c7 100644 --- a/erpnext/locale/main.pot +++ b/erpnext/locale/main.pot @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ERPNext VERSION\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 10:42+0000\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 10:20+0000\n" "Last-Translator: hello@frappe.io\n" "Language-Team: hello@frappe.io\n" "MIME-Version: 1.0\n" @@ -16,16 +16,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "" -"\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -110,11 +100,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "" @@ -276,7 +266,7 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" +msgid "'Based On' and 'Group By' can not be the same" msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 @@ -302,20 +292,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "" @@ -325,12 +315,12 @@ msgstr "" msgid "'To Date' is required" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 @@ -616,7 +606,7 @@ msgstr "" msgid "<0" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

            You're trying to create {0} asset(s) from {2} {3}.
            However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -805,8 +795,8 @@ msgid "
          • Payment document required for row(s): {0}
          • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
          • {}
          • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
          • {0}
          • " msgstr "" #: erpnext/accounts/services/billing_validation.py:136 @@ -814,7 +804,7 @@ msgid "

            Cannot overbill for the following Items:

            " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

            Following {0}s doesn't belong to Company {1} :

            " +msgid "

            Following {0}s do not belong to Company {1}:

            " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -998,8 +988,8 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 @@ -1010,8 +1000,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -1028,7 +1018,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1061,7 +1051,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1237,7 +1227,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "" @@ -1268,12 +1258,16 @@ msgstr "" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1526,7 +1520,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1656,11 +1650,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1939,8 +1933,8 @@ msgstr "" msgid "Accounting Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "" @@ -1965,8 +1959,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2014,7 +2008,11 @@ msgstr "" msgid "Accounting Period" msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2212,8 +2210,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2441,7 +2439,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2451,7 +2449,7 @@ msgstr "" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2601,8 +2599,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2767,10 +2765,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2869,12 +2863,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -3017,7 +3011,7 @@ msgstr "" msgid "Additional Discount Amount (Company Currency)" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3136,12 +3130,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "" -"Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3406,7 +3395,7 @@ msgstr "" msgid "Advance amount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "" @@ -3475,7 +3464,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "" @@ -3595,7 +3584,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3619,7 +3608,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3733,6 +3722,13 @@ msgstr "" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3909,7 +3905,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3921,7 +3917,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3940,15 +3936,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3972,7 +3968,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "" @@ -3982,7 +3978,7 @@ msgstr "" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -4012,7 +4008,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4095,7 +4091,7 @@ msgid "Allow Alternative Item" msgstr "" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4203,7 +4199,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4484,12 +4480,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4524,10 +4522,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4535,10 +4533,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4554,12 +4548,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4764,7 +4758,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4990,12 +4984,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5209,7 +5203,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5386,10 +5380,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5415,6 +5405,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5456,6 +5450,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5538,18 +5541,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5588,7 +5591,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5660,7 +5663,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5826,7 +5829,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5958,7 +5961,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5974,7 +5977,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -6027,7 +6030,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6105,7 +6108,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6126,7 +6129,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6136,6 +6139,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6154,19 +6162,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6187,6 +6199,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6207,7 +6223,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6215,26 +6231,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6446,7 +6458,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6507,7 +6519,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6632,7 +6644,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6728,7 +6740,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6846,7 +6858,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6865,7 +6877,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6880,7 +6892,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7011,7 +7023,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7032,7 +7044,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7084,10 +7096,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7126,15 +7134,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7215,7 +7227,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7285,6 +7297,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7345,7 +7361,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7445,7 +7461,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7690,7 +7706,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7702,7 +7718,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7714,7 +7730,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7990,8 +8006,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8022,15 +8038,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -8038,6 +8054,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8103,8 +8123,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8217,7 +8237,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8692,7 +8712,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8920,7 +8940,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8938,7 +8958,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8946,7 +8966,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9273,6 +9293,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9444,7 +9468,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9473,21 +9497,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9516,7 +9543,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9524,11 +9551,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9543,10 +9565,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9571,6 +9589,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9580,14 +9603,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9595,7 +9618,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9607,7 +9630,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9632,7 +9655,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9659,7 +9682,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9668,6 +9691,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9685,7 +9712,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9698,7 +9725,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9730,7 +9757,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9755,19 +9782,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9779,12 +9810,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

            The Allowed Qty is calculated as follows:
            • Actual Qty [Available Qty at Warehouse] = {5}
            • Reserved Stock [Ignore current SRE] = {6}
            • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
            • Voucher Qty [Voucher Item Qty] = {8}
            • Delivered Qty [Qty delivered against the Voucher Item] = {9}
            • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
            • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
            " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9793,19 +9828,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10232,8 +10271,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10260,8 +10299,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10455,7 +10494,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10513,7 +10552,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10523,7 +10562,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10702,7 +10741,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10716,7 +10755,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10946,9 +10985,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11385,7 +11424,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11455,7 +11494,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11495,10 +11534,6 @@ msgstr "" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11663,7 +11698,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11707,11 +11742,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11750,6 +11785,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11758,14 +11801,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11787,7 +11822,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12231,7 +12266,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12547,7 +12582,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12847,7 +12882,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12872,7 +12907,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12930,7 +12965,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12942,7 +12977,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12964,11 +12999,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13093,14 +13128,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13112,7 +13147,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13122,7 +13157,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13146,7 +13181,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13376,10 +13411,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13398,7 +13429,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13413,7 +13444,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13641,7 +13672,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13675,7 +13706,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13770,7 +13801,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13780,17 +13811,17 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "" "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "" "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" @@ -13825,11 +13856,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13910,7 +13941,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13990,16 +14021,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14058,12 +14089,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14186,7 +14217,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14251,7 +14282,7 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14314,10 +14345,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15148,7 +15175,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15293,10 +15320,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15403,11 +15426,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15569,7 +15592,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16250,8 +16273,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16345,7 +16368,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16403,7 +16426,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16733,7 +16756,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16749,7 +16772,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16819,7 +16842,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16848,11 +16871,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16880,7 +16903,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16983,11 +17006,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17050,7 +17073,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17223,7 +17246,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17232,8 +17255,8 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' @@ -17241,8 +17264,8 @@ msgstr "" msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17492,8 +17515,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17858,11 +17881,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "" @@ -17900,22 +17923,6 @@ msgstr "" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18221,7 +18228,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18375,7 +18382,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18599,7 +18606,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18787,7 +18794,7 @@ msgstr "" msgid "Empty" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18796,7 +18803,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18875,6 +18882,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19147,7 +19160,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19270,7 +19283,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19327,6 +19340,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19362,7 +19379,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19386,7 +19403,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19418,19 +19435,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "" -"Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19445,7 +19463,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19495,7 +19513,7 @@ msgstr "" msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19776,7 +19794,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19863,7 +19881,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20122,8 +20140,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20321,7 +20339,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20359,15 +20377,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20376,7 +20394,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20535,11 +20553,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20608,7 +20626,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20621,7 +20639,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20729,7 +20747,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20828,10 +20846,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20845,11 +20859,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20882,7 +20893,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21018,7 +21029,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -21043,10 +21054,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21113,11 +21120,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21150,12 +21157,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21168,8 +21175,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21185,21 +21192,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21218,11 +21221,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21310,6 +21317,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21853,7 +21875,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21978,6 +22000,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22031,7 +22057,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22374,7 +22400,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22557,7 +22583,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22697,7 +22723,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -23000,7 +23026,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -23028,7 +23054,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23064,7 +23090,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23651,15 +23677,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23697,7 +23723,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23798,7 +23824,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -24016,14 +24042,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24500,7 +24526,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24586,7 +24612,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24595,7 +24621,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24603,11 +24629,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24616,7 +24642,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24633,7 +24659,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24716,7 +24742,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24913,7 +24939,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24929,12 +24955,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25064,7 +25090,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25089,7 +25115,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25115,7 +25141,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25136,7 +25162,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25178,8 +25204,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25198,7 +25224,7 @@ msgstr "" msgid "Invalid Amount" msgstr "" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25215,11 +25241,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25239,13 +25265,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25266,11 +25292,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25300,7 +25326,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25309,7 +25335,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25348,7 +25374,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25365,7 +25391,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25377,8 +25403,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25386,7 +25412,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25403,7 +25429,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25413,14 +25439,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25452,7 +25478,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26415,10 +26441,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26427,7 +26449,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26476,12 +26498,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26514,7 +26536,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26588,7 +26610,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26749,7 +26771,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26781,7 +26803,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26790,12 +26812,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26891,7 +26913,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27087,7 +27109,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27241,7 +27263,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27272,7 +27294,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27280,8 +27302,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27338,7 +27360,7 @@ msgstr "" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27385,8 +27407,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27398,7 +27420,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27443,7 +27465,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27559,7 +27581,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27678,7 +27700,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27714,7 +27736,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27728,7 +27750,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27743,7 +27765,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27759,10 +27781,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27771,6 +27789,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27780,6 +27802,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27812,6 +27835,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27844,7 +27871,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27876,10 +27903,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27930,6 +27953,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27946,7 +27973,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -27986,7 +28013,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27996,7 +28023,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28066,7 +28093,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28129,20 +28156,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28205,11 +28231,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28555,7 +28589,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28676,7 +28710,7 @@ msgstr "" msgid "Lead" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28770,7 +28804,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28919,7 +28953,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28948,7 +28982,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28978,7 +29012,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29074,7 +29108,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29241,7 +29275,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29327,7 +29361,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29565,7 +29599,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29662,7 +29696,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29809,7 +29843,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29892,8 +29926,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30115,7 +30149,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30293,10 +30327,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30323,7 +30353,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30434,7 +30464,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30484,7 +30514,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30506,7 +30536,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30520,7 +30550,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30640,13 +30670,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30815,7 +30845,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30850,7 +30880,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31198,7 +31228,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31207,11 +31237,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31236,11 +31266,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31248,7 +31278,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31260,7 +31290,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31272,7 +31302,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31280,12 +31310,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31534,8 +31564,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31543,7 +31573,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31564,7 +31594,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31573,10 +31603,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31661,11 +31691,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31709,7 +31735,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31719,12 +31745,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31802,8 +31828,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31853,7 +31879,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31861,7 +31887,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31875,11 +31901,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32123,7 +32149,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32196,6 +32222,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32208,8 +32235,8 @@ msgstr "" msgid "New Workplace" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32218,6 +32245,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32230,7 +32261,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32294,16 +32325,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32311,15 +32341,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32362,11 +32392,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32469,6 +32494,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32514,7 +32543,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32551,10 +32580,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32651,7 +32676,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32689,15 +32714,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32726,7 +32756,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32763,7 +32793,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32771,11 +32801,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32827,7 +32852,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32838,8 +32863,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32853,8 +32878,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32917,10 +32942,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32937,10 +32958,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32953,7 +32970,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33198,7 +33215,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33374,11 +33391,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33413,7 +33430,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33478,7 +33495,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33545,7 +33562,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33698,7 +33715,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33728,7 +33745,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33756,7 +33773,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

            '{1}' account is required to post these values. Please set it in Company: {2}.

            Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33765,7 +33782,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33795,20 +33812,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33817,7 +33834,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33860,7 +33877,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33951,7 +33968,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33975,7 +33992,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34161,6 +34178,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34177,10 +34198,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34466,7 +34483,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34520,7 +34537,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34601,11 +34618,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34622,12 +34639,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34678,10 +34695,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34747,6 +34760,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34794,7 +34812,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34892,7 +34910,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34952,7 +34970,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34973,7 +34991,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34996,7 +35014,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -35016,7 +35034,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -35028,19 +35046,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35070,11 +35088,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35093,7 +35111,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35718,7 +35736,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35845,7 +35863,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35931,7 +35949,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35952,7 +35970,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

            {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35988,7 +36006,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36498,7 +36516,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36573,7 +36591,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36595,7 +36613,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36695,7 +36713,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36902,11 +36920,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37423,12 +37441,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37450,7 +37468,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37601,15 +37619,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37617,7 +37626,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37625,19 +37633,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37653,7 +37661,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37661,35 +37669,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37731,7 +37736,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37744,11 +37749,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37764,15 +37769,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37780,11 +37785,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37796,7 +37801,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37808,11 +37813,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37837,7 +37842,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37849,11 +37854,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37869,7 +37874,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37885,7 +37890,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37894,7 +37899,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37930,7 +37935,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38060,7 +38065,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38096,11 +38101,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38129,12 +38130,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38150,9 +38151,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38162,7 +38163,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38185,7 +38186,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38194,6 +38195,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38218,11 +38223,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38251,6 +38256,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38258,11 +38264,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38271,7 +38278,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38283,7 +38290,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38299,6 +38306,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38332,22 +38340,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38356,7 +38368,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38364,10 +38376,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38376,18 +38396,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38425,12 +38437,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38439,7 +38451,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38463,20 +38475,16 @@ msgstr "" msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38505,7 +38513,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38535,13 +38543,11 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" msgstr "" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38549,7 +38555,7 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38566,8 +38572,7 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" +msgid "Please set Tax ID for the customer '{0}'" msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 @@ -38587,15 +38592,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38612,8 +38617,7 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" +msgid "Please set an Address on the Company '{0}'" msgstr "" #: erpnext/stock/services/base_stock_gl_composer.py:194 @@ -38632,24 +38636,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38681,11 +38682,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38693,7 +38694,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38748,7 +38749,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38756,7 +38757,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38766,8 +38767,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38775,11 +38776,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38787,6 +38788,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38950,7 +38959,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38975,7 +38984,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39018,7 +39027,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -39027,7 +39036,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39220,6 +39229,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39309,7 +39322,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39451,7 +39464,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39572,7 +39585,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39683,7 +39696,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39891,7 +39904,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40073,7 +40086,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40199,7 +40212,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40224,7 +40237,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40427,7 +40440,7 @@ msgstr "" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "" @@ -40456,6 +40469,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40464,8 +40481,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40538,7 +40555,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40618,7 +40635,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40669,7 +40686,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40815,7 +40832,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40848,9 +40865,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41078,8 +41095,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41120,7 +41137,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41144,11 +41161,11 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41163,7 +41180,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41212,7 +41229,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41272,7 +41289,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41362,7 +41379,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41382,7 +41399,7 @@ msgid "Purchase Receipt Trends " msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41610,7 +41627,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41629,7 +41646,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41694,7 +41711,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41731,7 +41748,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41826,7 +41843,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -42012,7 +42029,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42089,7 +42106,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42172,7 +42189,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42216,12 +42233,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42372,7 +42389,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42400,11 +42417,11 @@ msgstr "" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42412,6 +42429,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42437,7 +42458,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42677,7 +42698,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42861,7 +42882,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43180,7 +43201,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43422,8 +43443,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43599,6 +43620,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43649,7 +43674,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43729,7 +43754,7 @@ msgstr "" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -44021,7 +44046,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44128,7 +44153,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44167,7 +44192,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44319,7 +44344,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44402,7 +44427,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44448,6 +44473,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44532,7 +44566,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44648,11 +44682,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44831,6 +44865,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44869,7 +44907,7 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." msgstr "" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material @@ -44914,7 +44952,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44930,13 +44968,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45430,6 +45468,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45854,11 +45896,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45942,23 +45984,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -46034,13 +46076,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46052,7 +46097,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46060,12 +46105,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46077,7 +46122,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46085,6 +46130,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46097,11 +46146,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46124,8 +46180,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46137,7 +46193,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46149,6 +46205,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46177,16 +46237,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46202,12 +46262,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46218,15 +46282,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46238,24 +46302,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46271,6 +46359,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46290,7 +46382,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46313,7 +46405,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46321,17 +46413,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46351,11 +46443,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46366,7 +46458,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "" "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

            Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

            Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46375,6 +46467,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46387,7 +46483,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46411,7 +46507,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46480,7 +46576,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46488,19 +46584,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46512,11 +46616,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46524,6 +46632,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46540,6 +46661,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46580,71 +46709,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46657,10 +46725,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46681,19 +46745,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46709,11 +46773,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46741,24 +46805,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46779,6 +46843,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46800,7 +46867,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46831,7 +46898,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46855,7 +46922,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46863,12 +46930,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46887,11 +46954,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46899,7 +46966,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46911,7 +46978,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46936,10 +47003,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46992,15 +47059,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -47039,7 +47110,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47100,10 +47171,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47171,7 +47238,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47470,7 +47537,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47687,8 +47754,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48095,7 +48162,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48127,7 +48194,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48237,7 +48304,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48248,7 +48315,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48535,7 +48602,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48556,7 +48623,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48621,7 +48688,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48646,7 +48713,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48676,7 +48743,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48690,13 +48757,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48787,6 +48854,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48929,10 +48997,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49080,7 +49152,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49164,7 +49236,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49221,10 +49293,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49266,6 +49339,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49283,7 +49360,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49328,7 +49405,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49340,7 +49417,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49360,21 +49437,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49389,25 +49463,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49427,7 +49502,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49528,6 +49603,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49576,7 +49655,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49584,122 +49663,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49781,7 +49750,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49890,12 +49859,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49919,7 +49888,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49934,7 +49903,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50039,7 +50008,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50057,7 +50026,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50083,7 +50052,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50181,15 +50150,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50257,7 +50226,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50685,6 +50654,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50887,7 +50857,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50991,11 +50961,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

            " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -51056,7 +51026,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
            {1}" msgstr "" @@ -51112,7 +51082,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51180,7 +51150,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51217,8 +51187,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51348,7 +51318,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51361,7 +51331,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51414,7 +51389,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51479,10 +51454,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51512,7 +51503,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51541,10 +51532,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51625,7 +51620,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51753,7 +51748,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51835,16 +51830,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -52011,7 +52010,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52094,7 +52093,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52119,15 +52118,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52297,7 +52296,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52456,8 +52455,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52476,7 +52475,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52491,7 +52490,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52499,7 +52498,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52713,7 +52712,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52785,7 +52784,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52823,7 +52822,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52897,7 +52896,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52916,7 +52915,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52945,7 +52944,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53087,7 +53086,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53265,7 +53264,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53447,7 +53446,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53595,7 +53594,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53780,10 +53779,6 @@ msgstr "" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53870,7 +53865,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53931,7 +53926,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -54041,11 +54036,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54521,7 +54516,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54733,7 +54728,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -55040,12 +55035,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -55053,10 +55044,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55081,6 +55080,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55098,8 +55101,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55110,11 +55116,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55162,15 +55172,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55219,6 +55229,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55240,8 +55254,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55269,7 +55283,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55282,7 +55296,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55318,7 +55332,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55356,11 +55370,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55409,6 +55423,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55418,7 +55436,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55435,7 +55453,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55452,7 +55470,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55471,11 +55489,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

            {1}" msgstr "" @@ -55497,16 +55515,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55545,7 +55563,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55569,7 +55587,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55577,7 +55595,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55585,6 +55603,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55593,7 +55615,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55605,7 +55627,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55622,6 +55644,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55638,10 +55664,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55670,20 +55692,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55734,15 +55756,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55764,7 +55790,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55782,7 +55808,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "" @@ -55924,7 +55950,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55988,7 +56014,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -56015,10 +56041,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56076,7 +56102,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56205,6 +56231,12 @@ msgstr "" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56491,7 +56523,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56522,15 +56554,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56547,7 +56579,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56559,7 +56591,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56572,8 +56604,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56593,7 +56625,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56610,10 +56642,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56692,8 +56726,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56735,6 +56769,22 @@ msgstr "" msgid "Total Advance" msgstr "" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56782,11 +56832,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56968,7 +57018,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56977,11 +57027,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "" @@ -57019,11 +57069,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "" @@ -57066,7 +57116,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57381,7 +57431,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57390,7 +57440,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57469,7 +57523,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57487,7 +57541,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57505,8 +57559,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57595,27 +57649,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57668,11 +57706,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58062,6 +58100,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58246,7 +58288,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58268,7 +58310,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58298,7 +58340,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58362,7 +58404,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58436,7 +58478,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58449,10 +58491,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58477,7 +58515,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58489,8 +58527,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58540,7 +58580,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58563,7 +58603,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58766,7 +58806,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58779,7 +58819,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58923,7 +58963,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58987,7 +59027,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59215,7 +59255,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59304,6 +59344,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59316,6 +59360,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59324,10 +59372,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59620,15 +59664,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59636,7 +59680,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59646,7 +59690,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59659,13 +59703,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59716,12 +59760,12 @@ msgstr "" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59730,19 +59774,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60218,7 +60262,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60246,7 +60290,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60258,7 +60302,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60290,7 +60334,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60497,7 +60541,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60515,16 +60559,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60645,7 +60689,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60665,7 +60709,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60819,10 +60863,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60968,7 +61008,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61144,17 +61184,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61193,7 +61233,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61234,20 +61274,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
            {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
            {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61268,7 +61308,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61293,7 +61333,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61346,7 +61386,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61578,14 +61618,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61600,7 +61632,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61620,7 +61652,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61631,19 +61663,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

            " msgstr "" @@ -61665,7 +61693,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61684,14 +61712,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61700,16 +61720,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61721,15 +61741,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61737,7 +61765,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61745,7 +61773,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61760,6 +61788,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61770,7 +61802,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61797,11 +61829,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61818,7 +61850,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61833,19 +61865,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61897,6 +61929,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61927,7 +61963,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61947,7 +61983,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61963,10 +61999,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62021,8 +62053,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62102,14 +62134,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62123,7 +62151,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62199,8 +62227,8 @@ msgstr "" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62263,10 +62291,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62279,7 +62303,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62299,7 +62323,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62307,11 +62331,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62393,10 +62412,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62412,7 +62439,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62454,7 +62481,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62462,6 +62489,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62470,7 +62501,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62484,7 +62519,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62492,7 +62527,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62505,11 +62540,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62517,7 +62552,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62533,7 +62568,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62549,16 +62584,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62609,7 +62644,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62622,7 +62657,7 @@ msgstr "" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62638,16 +62673,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62655,7 +62690,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62663,7 +62698,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62697,7 +62732,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62731,12 +62766,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62768,6 +62812,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62873,27 +62921,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62909,7 +62953,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62921,7 +62965,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62933,32 +62977,7 @@ msgstr "" msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - From d8c267c253b73e9c57f9adb258269de6195cef5f Mon Sep 17 00:00:00 2001 From: MochaMind Date: Mon, 29 Jun 2026 00:59:24 +0530 Subject: [PATCH 070/161] fix: sync translations from crowdin (#56590) --- erpnext/locale/uz.po | 877 +++++++++++++++++++++++-------------------- 1 file changed, 461 insertions(+), 416 deletions(-) diff --git a/erpnext/locale/uz.po b/erpnext/locale/uz.po index 1319e18ce04..b47a233280a 100644 --- a/erpnext/locale/uz.po +++ b/erpnext/locale/uz.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-24 19:24\n" +"PO-Revision-Date: 2026-06-27 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Uzbek\n" "MIME-Version: 1.0\n" @@ -25,7 +25,12 @@ msgid "\n" "\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" "\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" "\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" +msgstr "\n" +" {1} mahsulotining {0} partiyasi omborda salbiy zaxiraga ega {2}{3}.\n" +"\t\t\tUshbu yozuvni davom ettirish uchun iltimos, {4} miqdorida zaxira miqdorini qo'shing.\n" +"\t\t\tAgar sozlash yozuvini kiritishning iloji bo'lmasa, iltimos, {0} partiyasida yoki Stok sozlamalarida \"Partiya uchun salbiy zaxiraga ruxsat berish\" ni yoqing.\n" +"\t\t\tBiroq, ushbu sozlamani yoqish tizimda salbiy zaxiraga olib kelishi mumkin.\n" +"\t\t\tShuning uchun, to'g'ri baholash stavkasini saqlab qolish uchun aksiyalar darajasini iloji boricha tezroq sozlang." #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json @@ -34,62 +39,62 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.js:82 msgid " Address" -msgstr "" +msgstr " Manzil" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:611 msgid " Amount" -msgstr "" +msgstr " Miqdori" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:114 msgid " BOM" -msgstr "" +msgstr " BOM" #. Label of the default_wip_warehouse (Link) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid " Default Work In Progress Warehouse " -msgstr "" +msgstr " Standart bajarilayotgan ish ombori " #. Label of the istable (Check) field in DocType 'Inventory Dimension' #: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json msgid " Is Child Table" -msgstr "" +msgstr " Bola jadvali" #. Label of the is_subcontracted (Check) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid " Is Subcontracted" -msgstr "" +msgstr " Subpudratchi hisoblanadi" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:196 msgid " Item" -msgstr "" +msgstr " Mahsulot" #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:151 #: erpnext/selling/report/sales_analytics/sales_analytics.py:128 msgid " Name" -msgstr "" +msgstr " Ism" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:144 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:185 msgid " Phantom Item" -msgstr "" +msgstr " Xayoliy buyum" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:602 msgid " Rate" -msgstr "" +msgstr " Narx" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:122 msgid " Raw Material" -msgstr "" +msgstr " Xom ashyo" #. Label of the skip_material_transfer (Check) field in DocType 'BOM Operation' #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json msgid " Skip Material Transfer" -msgstr "" +msgstr " Materiallarni uzatishni o'tkazib yuborish" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:133 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:174 msgid " Sub Assembly" -msgstr "" +msgstr " Sub yig'ish" #: erpnext/projects/doctype/project_update/project_update.py:140 msgid " Summary" @@ -166,32 +171,32 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:1022 #, python-format msgid "% Finished Item Quantity" -msgstr "" +msgstr "Tayyor mahsulot miqdori %" #. Label of the per_installed (Percent) field in DocType 'Delivery Note' #: erpnext/stock/doctype/delivery_note/delivery_note.json msgid "% Installed" -msgstr "" +msgstr "O'rnatilgan %" #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:70 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:16 msgid "% Occupied" -msgstr "" +msgstr "% Band bo'lgan" #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:283 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:337 msgid "% Of Grand Total" -msgstr "" +msgstr "Umumiy jami foiz" #. Label of the per_ordered (Percent) field in DocType 'Material Request' #: erpnext/stock/doctype/material_request/material_request.json msgid "% Ordered" -msgstr "" +msgstr "Buyurtma qilingan %" #. Label of the per_picked (Percent) field in DocType 'Sales Order' #: erpnext/selling/doctype/sales_order/sales_order.json msgid "% Picked" -msgstr "" +msgstr "Tanlangan %" #. Label of the process_loss_percentage (Percent) field in DocType 'BOM' #. Label of the process_loss_percentage (Percent) field in DocType 'Stock @@ -202,30 +207,30 @@ msgstr "" #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json msgid "% Process Loss" -msgstr "" +msgstr "Jarayon yo'qotishining foizi" #. Label of the per_produced (Percent) field in DocType 'Subcontracting Inward #. Order' #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json msgid "% Produced" -msgstr "" +msgstr "Ishlab chiqarilgan %" #. Label of the progress (Percent) field in DocType 'Task' #: erpnext/projects/doctype/task/task.json msgid "% Progress" -msgstr "" +msgstr "% Jarayon" #. Label of the per_raw_material_received (Percent) field in DocType #. 'Subcontracting Inward Order' #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json msgid "% Raw Material Received" -msgstr "" +msgstr "Xom ashyo % Qabul qilingan" #. Label of the per_raw_material_returned (Percent) field in DocType #. 'Subcontracting Inward Order' #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json msgid "% Raw Material Returned" -msgstr "" +msgstr "Qaytarilgan xomashyo %" #. Label of the per_received (Percent) field in DocType 'Purchase Order' #. Label of the per_received (Percent) field in DocType 'Material Request' @@ -234,7 +239,7 @@ msgstr "" #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json msgid "% Received" -msgstr "" +msgstr "Olingan foiz" #. Label of the per_returned (Percent) field in DocType 'Delivery Note' #. Label of the per_returned (Percent) field in DocType 'Purchase Receipt' @@ -247,186 +252,186 @@ msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json msgid "% Returned" -msgstr "" +msgstr "Qaytarilgan foiz" #. Description of the '% Amount Billed' (Percent) field in DocType 'Sales #. Order' #: erpnext/selling/doctype/sales_order/sales_order.json #, python-format msgid "% of materials billed against this Sales Order" -msgstr "" +msgstr "Ushbu Sotuv Buyurtmasiga binoan hisoblangan materiallarning foizi" #. Description of the '% Delivered' (Percent) field in DocType 'Pick List' #: erpnext/stock/doctype/pick_list/pick_list.json #, python-format msgid "% of materials delivered against this Pick List" -msgstr "" +msgstr "Ushbu Tanlov Ro'yxatiga muvofiq yetkazib berilgan materiallarning foizi" #. Description of the '% Delivered' (Percent) field in DocType 'Sales Order' #: erpnext/selling/doctype/sales_order/sales_order.json #, python-format msgid "% of materials delivered against this Sales Order" -msgstr "" +msgstr "Ushbu Savdo Buyurtmasiga muvofiq yetkazib berilgan materiallarning foizi" #: erpnext/controllers/accounts_controller.py:1299 msgid "'Account' in the Accounting section of Customer {0}" -msgstr "" +msgstr "Mijoz {0} ning Buxgalteriya hisobi bo'limidagi 'Hisob'" #: erpnext/selling/doctype/sales_order/sales_order.py:304 msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" -msgstr "" +msgstr "\"Mijozning xarid buyurtmasiga qarshi bir nechta savdo buyurtmalariga ruxsat berish\"" #: erpnext/controllers/trends.py:62 msgid "'Based On' and 'Group By' can not be same" -msgstr "" +msgstr "\"Asoslangan\" va \"Guruhlash\" bir xil bo'lishi mumkin emas" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" -msgstr "" +msgstr "\"Oxirgi buyurtmadan keyingi kunlar\" noldan katta yoki teng bo'lishi kerak" #: erpnext/controllers/accounts_controller.py:1304 msgid "'Default {0} Account' in Company {1}" -msgstr "" +msgstr "Kompaniya {1} da 'Standart {0} Hisob'" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:893 msgid "'Entries' cannot be empty" -msgstr "" +msgstr "\"Yozuvlar\" bo'sh bo'lishi mumkin emas" #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:24 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:127 #: erpnext/stock/report/stock_analytics/stock_analytics.py:322 msgid "'From Date' is required" -msgstr "" +msgstr "\"Boshlanish sanasi\" shart" #: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:18 msgid "'From Date' must be after 'To Date'" -msgstr "" +msgstr "\"Sanagacha\" dan keyin \"Boshlang'ich sana\" bo'lishi kerak" #: erpnext/stock/doctype/item/item.py:466 msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "" +msgstr "\"Seriya raqami bor\" so'zi omborda bo'lmagan mahsulot uchun \"Ha\" bo'la olmaydi" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "" +msgstr "{0}mahsuloti uchun \"Yetkazib berishdan oldin tekshirish talab qilinadi\" funksiyasi o'chirib qo'yilgan, QI yaratish shart emas" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "" +msgstr "{0}mahsuloti uchun \"Sotib olishdan oldin tekshirish talab qilinadi\" funksiyasi o'chirib qo'yilgan, QI yaratish shart emas" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 #: erpnext/stock/report/stock_ledger/stock_ledger.py:830 msgid "'Opening'" -msgstr "" +msgstr "\"Ochilish\"" #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:27 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:129 #: erpnext/stock/report/stock_analytics/stock_analytics.py:328 msgid "'To Date' is required" -msgstr "" +msgstr "\"Sanaga qadar\" talab qilinadi" #: erpnext/stock/doctype/packing_slip/packing_slip.py:95 msgid "'To Package No.' cannot be less than 'From Package No.'" -msgstr "" +msgstr "“Paket raqamiga” “Paket raqamidan” dan kichik boʻlmasligi kerak." #: erpnext/controllers/sales_and_purchase_return.py:80 msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "" +msgstr "\"Omborni yangilash\" katagiga belgi qo'yib bo'lmaydi, chunki mahsulotlar {0} orqali yetkazib berilmaydi." #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" -msgstr "" +msgstr "Asosiy vositalarni sotish uchun \"Omborni yangilash\" ni tekshirib bo'lmaydi" #: erpnext/accounts/doctype/bank_account/bank_account.py:79 msgid "'{0}' account is already used by {1}. Use another account." -msgstr "" +msgstr "'{0}' hisobi allaqachon {1}tomonidan ishlatilmoqda. Boshqa hisobdan foydalaning." #: erpnext/accounts/doctype/pos_settings/pos_settings.py:44 msgid "'{0}' has been already added." -msgstr "" +msgstr "'{0}' allaqachon qo'shilgan." #: erpnext/setup/doctype/company/company.py:315 #: erpnext/setup/doctype/company/company.py:326 msgid "'{0}' should be in company currency {1}." -msgstr "" +msgstr "'{0}' kompaniya valyutasida bo'lishi kerak {1}." #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:174 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:203 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:106 msgid "(A) Qty After Transaction" -msgstr "" +msgstr "(A) Tranzaksiyadan keyingi miqdor" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:208 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:111 msgid "(B) Expected Qty After Transaction" -msgstr "" +msgstr "(B) Tranzaksiyadan keyin kutilgan miqdor" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:223 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:126 msgid "(C) Total Qty in Queue" -msgstr "" +msgstr "(C) Navbatdagi umumiy miqdor" #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:184 msgid "(C) Total qty in queue" -msgstr "" +msgstr "(C) Navbatdagi umumiy miqdor" #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:194 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:233 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:136 msgid "(D) Balance Stock Value" -msgstr "" +msgstr "(D) Aktsiyalarning balans qiymati" #. Description of the 'Capacity' (Int) field in DocType 'Item Lead Time' #: erpnext/stock/doctype/item_lead_time/item_lead_time.json msgid "(Daily Yield * No of Units Produced) / 100" -msgstr "" +msgstr "(Kundalik hosildorlik * Ishlab chiqarilgan birliklar soni) / 100" #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:199 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:238 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:141 msgid "(E) Balance Stock Value in Queue" -msgstr "" +msgstr "(E) Navbatdagi qoldiq aksiya qiymati" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:248 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:151 msgid "(F) Change in Stock Value" -msgstr "" +msgstr "(F) Aksiya qiymatining o'zgarishi" #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:192 msgid "(Forecast)" -msgstr "" +msgstr "(Prognoz)" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:253 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:156 msgid "(G) Sum of Change in Stock Value" -msgstr "" +msgstr "(G) Aksiya qiymatidagi o'zgarish yig'indisi" #. Description of the 'Daily Yield (%)' (Percent) field in DocType 'Item Lead #. Time' #: erpnext/stock/doctype/item_lead_time/item_lead_time.json msgid "(Good Units Produced / Total Units Produced) × 100" -msgstr "" +msgstr "(Yaxshi ishlab chiqarilgan birliklar / Jami ishlab chiqarilgan birliklar) × 100" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:263 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:166 msgid "(H) Change in Stock Value (FIFO Queue)" -msgstr "" +msgstr "(H) Aksiya qiymatining o'zgarishi (FIFO navbati)" #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:209 msgid "(H) Valuation Rate" -msgstr "" +msgstr "(H) Baholash darajasi" #. Description of the 'Actual Operating Cost' (Currency) field in DocType 'Work #. Order Operation' #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json msgid "(Hour Rate / 60) * Actual Operation Time" -msgstr "" +msgstr "(Soatlik tezlik / 60) * Haqiqiy ish vaqti" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:273 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:176 msgid "(I) Valuation Rate" -msgstr "" +msgstr "(I) Baholash darajasi" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:278 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:181 @@ -756,42 +761,42 @@ msgstr "" #. Content of the 'html_19' (HTML) field in DocType 'Cheque Print Template' #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json msgid "" -msgstr "" +msgstr "" #. Content of the 'Date Settings' (HTML) field in DocType 'Cheque Print #. Template' #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json msgid "" -msgstr "" +msgstr "" #: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:126 msgid "
          • Clearance date must be after cheque date for row(s): {0}
          • " -msgstr "" +msgstr "
          • Quyidagi qator(lar) uchun to'lov sanasi chek sanasidan keyin bo'lishi kerak: {0}
          • " #: erpnext/accounts/services/billing_validation.py:139 msgid "
          • Item {0} in row(s) {1} billed more than {2}
          • " -msgstr "" +msgstr "
          • Qator(lar)dagi {0} element {1} dan ortiq to'lov amalga oshirildi {2}
          • " #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:427 msgid "
          • Packed Item {0}: Required {1}, Available {2}
          • " -msgstr "" +msgstr "
          • Qadoqlangan mahsulot {0}: Majburiy {1}, Mavjud {2}
          • " #: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:121 msgid "
          • Payment document required for row(s): {0}
          • " -msgstr "" +msgstr "
          • Qator(lar) uchun to'lov hujjati talab qilinadi: {0}
          • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 #: erpnext/utilities/bulk_transaction.py:37 msgid "
          • {}
          • " -msgstr "" +msgstr "
          • {}
          • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

            Cannot overbill for the following Items:

            " -msgstr "" +msgstr "

            Quyidagi mahsulotlar uchun ortiqcha to'lov amalga oshirib bo'lmaydi:

            " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 msgid "

            Following {0}s doesn't belong to Company {1} :

            " -msgstr "" +msgstr "

            {0}ga amal qilayotganlar {1} kompaniyasiga tegishli emas:

            " #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -819,19 +824,19 @@ msgstr "" #: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:119 msgid "

            Please correct the following row(s):

              " -msgstr "" +msgstr "

              Quyidagi qator(lar)ni to'g'rilang:

                " #: erpnext/controllers/buying_controller.py:124 msgid "

                Posting Date {0} cannot be before Purchase Order date for the following:

                  " -msgstr "" +msgstr "

                  Joylashtirish sanasi {0} quyidagilar uchun Buyurtma sanasidan oldin bo'lishi mumkin emas:

                    " #: erpnext/stock/doctype/stock_settings/stock_settings.js:134 msgid "

                    Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.

                    Are you sure you want to continue?" -msgstr "" +msgstr "

                    Narxlar ro'yxati narxi Sotish sozlamalarida tahrirlanadigan qilib o'rnatilmagan. Ushbu stsenariyda, Narxlar ro'yxatini asosida yangilash ni Narxlar ro'yxati narxi ga o'rnatish mahsulot narxining avtomatik yangilanishini oldini oladi.

                    Davom etishni xohlaysizmi?" #: erpnext/accounts/services/billing_validation.py:150 msgid "

                    To allow over-billing, please set allowance in Accounts Settings.

                    " -msgstr "" +msgstr "

                    Ortiqcha to'lovga ruxsat berish uchun, iltimos, Hisob sozlamalarida ruxsatnomani o'rnating.

                    " #. Content of the 'Message Examples' (HTML) field in DocType 'Payment Gateway #. Account' @@ -842,7 +847,12 @@ msgid "
                    Message Example
                    \n\n" "<p> We don't want you to be spending time running around in order to pay for your Bill.
                    After all, life is beautiful and the time you have in hand should be spent to enjoy it!
                    So here are our little ways to help you get more time for life! </p>\n\n" "<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n" "
                    \n" -msgstr "" +msgstr "
                    Xabar namunasi
                    \n\n" +"<p> {{ doc.company }}xizmatidan foydalanganingiz uchun tashakkur! Umid qilamizki, sizga xizmat yoqmoqda.</p>\n\n" +"<p> Iltimos, ilova qilingan E hisob-kitob hisobotini toping. Qarz summasi {{ doc.grand_total }}.</p>\n\n" +"<p> Biz sizning hisob-kitoblaringizni to'lash uchun yugurib vaqt sarflashingizni istamaymiz.
                    Axir, hayot go'zal va qo'lingizdagi vaqtni undan zavqlanishga sarflashingiz kerak!
                    Shunday qilib, sizga hayot uchun ko'proq vaqt ajratishga yordam beradigan kichik usullarimiz! </p>\n\n" +"<a href=\"{{ payment_url }}\"> to'lovni amalga oshirish uchun shu yerni bosing </a>\n\n" +"
                    \n" #. Content of the 'Message Examples' (HTML) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -851,12 +861,16 @@ msgid "
                    Message Example
                    \n\n" "<p>Requesting payment for {{ doc.doctype }}, {{ doc.name }} for {{ doc.grand_total }}.</p>\n\n" "<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n" "
                    \n" -msgstr "" +msgstr "
                    Xabar namunasi
                    \n\n" +"<p>Hurmatli {{ doc.contact_person }},</p>\n\n" +"<p> {{ doc.doctype }}, {{ doc.name }} uchun {{ doc.grand_total }}to'lov so'ralmoqda.</p>\n\n" +"<a href=\"{{ payment_url }}\"> to'lovni amalga oshirish uchun shu yerni bosing </a>\n\n" +"
                    \n" #. Header text in the Stock Workspace #: erpnext/stock/workspace/stock/stock.json msgid "Masters & Reports" -msgstr "" +msgstr "Magistrlar & Hisobotlar" #. Header text in the Invoicing Workspace #. Header text in the Assets Workspace @@ -882,7 +896,7 @@ msgstr "" #. Header text in the Subcontracting Workspace #: erpnext/subcontracting/workspace/subcontracting/subcontracting.json msgid "Subcontracting Inward and Outward" -msgstr "" +msgstr "Ichki va tashqi subpudratchilik" #. Header text in the ERPNext Settings Workspace #: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json @@ -893,7 +907,13 @@ msgid "Your Shortcuts\n" "\t\t\n" "\t\t\t\n" "\t\t" -msgstr "" +msgstr "Sizning yorliqlaringiz\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t\n" +"\t\t\t\n" +"\t\t" #. Header text in the Manufacturing Workspace #. Header text in the Home Workspace @@ -904,11 +924,11 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:1300 msgid "Grand Total: {0}" -msgstr "" +msgstr "Umumiy jami: {0}" #: erpnext/accounts/doctype/payment_request/payment_request.py:1301 msgid "Outstanding Amount: {0}" -msgstr "" +msgstr "Qoldiq summa: {0}" #. Content of the 'html_19' (HTML) field in DocType 'Inventory Dimension' #: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json @@ -938,225 +958,250 @@ msgid "\n" "\n\n" "\n" "
                    \n\n\n\n\n\n\n" -msgstr "" +msgstr "\n" +"\n" +" \n" +" \n" +" \n" +" \n" +"\n" +"\n" +"\n" +" \n" +" \n" +"\n" +"\n" +" \n" +" \n" +"\n\n" +"\n" +"
                    Bola hujjatiBola hujjati
                    \n" +"

                    Ota-hujjat maydoniga kirish uchun parent.fieldname faylidan va qo'shimcha jadval hujjat maydoniga kirish uchun doc.fieldname faylidan foydalaning

                    \n\n" +"
                    \n" +"

                    Hujjat maydoniga kirish uchun doc.fieldname faylidan foydalaning

                    \n" +"
                    \n" +"

                    Misol: parent.doctype == \"Aksiya yozuvi\" va doc.item_code == \"Sinov\"

                    \n\n" +"
                    \n" +"

                    Misol: doc.doctype == \"Omborga kirish\" va doc.purpose == \"Ishlab chiqarish\"

                    \n" +"
                    \n\n\n\n\n\n\n" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:213 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:116 msgid "A - B" -msgstr "" +msgstr "A - B" #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:189 #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:228 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:131 msgid "A - C" -msgstr "" +msgstr "A - C" #: erpnext/selling/doctype/customer/customer.py:355 msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "" +msgstr "Xuddi shu nomdagi mijozlar guruhi mavjud, iltimos, mijoz nomini o'zgartiring yoki mijozlar guruhining nomini o'zgartiring." #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." -msgstr "" +msgstr "Ish stantsiyasi uchun bu kunlarni sanashni istisno qilish uchun bayramlar ro'yxatini qo'shish mumkin." #: erpnext/crm/doctype/lead/lead.py:140 msgid "A Lead requires either a person's name or an organization's name" -msgstr "" +msgstr "Potensial mijozlar uchun shaxsning ismi yoki tashkilot nomi kerak bo'ladi" #: erpnext/stock/doctype/packing_slip/packing_slip.py:84 msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "" +msgstr "Qadoqlash varag'i faqat qoralama yetkazib berish eslatmasi uchun tuzilishi mumkin." #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." -msgstr "" +msgstr "Davrni yakunlash vaucheri allaqachon topshirilgan va endi ochilish yozuvini yaratib bo'lmaydi. Batafsil ma'lumot olish uchun {0} ni bosing." #. Description of a DocType #: erpnext/stock/doctype/price_list/price_list.json msgid "A Price List is a collection of Item Prices either Selling, Buying, or both" -msgstr "" +msgstr "Narxlar ro'yxati - bu sotish, sotib olish yoki ikkalasi ham bo'lgan mahsulot narxlarining to'plamidir" #. Description of a DocType #: erpnext/stock/doctype/item/item.json msgid "A Product or a Service that is bought, sold or kept in stock." -msgstr "" +msgstr "Sotib olinadigan, sotiladigan yoki omborda saqlanadigan mahsulot yoki xizmat." #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" -msgstr "" +msgstr "Xuddi shu filtrlar uchun {0} yarashtirish vazifasi ishlayapti. Hozir yarashtirib bo'lmaydi" #: erpnext/accounts/doctype/journal_entry/mapper.py:228 msgid "A Reverse Journal Entry {0} already exists for this Journal Entry." -msgstr "" +msgstr "Ushbu jurnal yozuvi uchun teskari jurnal yozuvi {0} allaqachon mavjud." #. Description of a DocType #: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json msgid "A condition for a Shipping Rule" -msgstr "" +msgstr "Yuk tashish qoidasi uchun shart" #. Description of the 'Send To Primary Contact' (Check) field in DocType #. 'Process Statement Of Accounts' #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json msgid "A customer must have primary contact email." -msgstr "" +msgstr "Mijozning asosiy aloqa elektron pochta manzili bo'lishi kerak." #. Description of the 'Disabled' (Check) field in DocType 'Product Bundle' #: erpnext/selling/doctype/product_bundle/product_bundle.json msgid "A disabled Product Bundle cannot be selected in transactions." -msgstr "" +msgstr "Tranzaksiyalarda o'chirilgan Mahsulot To'plamini tanlab bo'lmaydi." #: erpnext/stock/doctype/delivery_trip/delivery_trip.py:59 msgid "A driver must be set to submit." -msgstr "" +msgstr "Drayverni yuborish uchun sozlash kerak." #. Description of a DocType #: erpnext/stock/doctype/warehouse/warehouse.json msgid "A logical Warehouse against which stock entries are made." -msgstr "" +msgstr "Ombor yozuvlari kiritiladigan mantiqiy ombor." #: erpnext/stock/serial_batch_bundle.py:1489 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." -msgstr "" +msgstr "Seriya raqamlarini yaratishda nomlash seriyasi bilan bog'liq ziddiyat yuzaga keldi. Iltimos, {0} elementining nomlash seriyasini o'zgartiring." #: erpnext/templates/emails/confirm_appointment.html:2 msgid "A new appointment has been created for you with {0}" -msgstr "" +msgstr "Siz uchun {0} bilan yangi uchrashuv yaratildi" #: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:3 msgid "A new fiscal year has been automatically created." -msgstr "" +msgstr "Yangi moliyaviy yil avtomatik ravishda yaratildi." #. Description of the 'Inspection Required before Delivery' (Check) field in #. DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "A quality inspection must be completed before generating a Delivery Note for this item." -msgstr "" +msgstr "Ushbu mahsulot uchun yetkazib berish eslatmasini tuzishdan oldin sifat tekshiruvi o'tkazilishi kerak." #. Description of the 'Inspection Required before Purchase' (Check) field in #. DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "A quality inspection must be completed before generating a Purchase Receipt for this item." -msgstr "" +msgstr "Ushbu mahsulot uchun xarid kvitansiyasini yaratishdan oldin sifat tekshiruvi o'tkazilishi kerak." #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:99 msgid "A template with tax category {0} already exists. Only one template is allowed with each tax category" -msgstr "" +msgstr "Soliq toifasi {0} bo'lgan shablon allaqachon mavjud. Har bir soliq toifasi bilan faqat bitta shablonga ruxsat beriladi." #. Description of a DocType #: erpnext/setup/doctype/sales_partner/sales_partner.json msgid "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission." -msgstr "" +msgstr "Kompaniya mahsulotlarini komissiya evaziga sotadigan uchinchi tomon distribyutori / diler / komissiya agenti / filiali / sotuvchisi." #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "A+" -msgstr "" +msgstr "A+" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "A-" -msgstr "" +msgstr "A-" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "AB+" -msgstr "" +msgstr "AB+" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json msgid "AB-" -msgstr "" +msgstr "AB-" #. Option for the 'Invoice Series' (Select) field in DocType 'Import Supplier #. Invoice' #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json msgid "ACC-PINV-.YYYY.-" -msgstr "" +msgstr "ACC-PINV-.YYYY.-" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:88 msgid "ALL records will be deleted (entire DocType cleared)" -msgstr "" +msgstr "BARCHA yozuvlar o'chiriladi (butun DocType tozalanadi)" #: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:552 msgid "AMC Expiry (Serial)" -msgstr "" +msgstr "AMC amal qilish muddati (seriya raqami)" #. Label of the amc_expiry_date (Date) field in DocType 'Serial No' #. Label of the amc_expiry_date (Date) field in DocType 'Warranty Claim' #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/support/doctype/warranty_claim/warranty_claim.json msgid "AMC Expiry Date" -msgstr "" +msgstr "AMC amal qilish muddati" #. Label of a Workspace Sidebar Item #: erpnext/workspace_sidebar/financial_reports.json msgid "AP Summary" -msgstr "" +msgstr "AP xulosasi" #. Label of the api_details_section (Section Break) field in DocType 'Currency #. Exchange Settings' #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json msgid "API Details" -msgstr "" +msgstr "API tafsilotlari" #. Label of a Workspace Sidebar Item #: erpnext/workspace_sidebar/financial_reports.json msgid "AR Summary" -msgstr "" +msgstr "AR xulosasi" #. Label of the awb_number (Data) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "AWB Number" -msgstr "" +msgstr "AWB raqami" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Abampere" -msgstr "" +msgstr "Abamper" #. Label of the abbr (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Abbr" -msgstr "" +msgstr "Abbr" #. Label of the abbr (Data) field in DocType 'Item Attribute Value' #: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json msgid "Abbreviation" -msgstr "" +msgstr "Qisqartirish" #: erpnext/setup/doctype/company/company.py:249 msgid "Abbreviation already used for another company" -msgstr "" +msgstr "Boshqa kompaniya uchun allaqachon ishlatilgan qisqartma" #: erpnext/setup/doctype/company/company.py:246 msgid "Abbreviation is mandatory" -msgstr "" +msgstr "Qisqartirish majburiydir" #: erpnext/stock/doctype/item_attribute/item_attribute.py:112 msgid "Abbreviation: {0} must appear only once" -msgstr "" +msgstr "Qisqartirish: {0} faqat bir marta paydo bo'lishi kerak" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289 msgid "Above" -msgstr "" +msgstr "Yuqorida" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:116 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:364 msgid "Above 120 Days" -msgstr "" +msgstr "120 kundan yuqori" #. Name of a role #: erpnext/setup/doctype/department/department.json msgid "Academics User" -msgstr "" +msgstr "Akademik foydalanuvchi" #: banking/src/components/features/Settings/KeyboardShortcuts.tsx:38 msgid "Accept Matching Rule" -msgstr "" +msgstr "Moslashtirish qoidasini qabul qilish" #: banking/src/components/features/Settings/KeyboardShortcuts.tsx:39 msgid "Accept the rule for the selected transaction" -msgstr "" +msgstr "Tanlangan tranzaksiya uchun qoidani qabul qiling" #. Label of the acceptance_formula (Code) field in DocType 'Item Quality #. Inspection Parameter' @@ -1165,7 +1210,7 @@ msgstr "" #: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json #: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json msgid "Acceptance Criteria Formula" -msgstr "" +msgstr "Qabul qilish mezonlari formulasi" #. Label of the value (Data) field in DocType 'Item Quality Inspection #. Parameter' @@ -1173,27 +1218,27 @@ msgstr "" #: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json #: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json msgid "Acceptance Criteria Value" -msgstr "" +msgstr "Qabul qilish mezonlari qiymati" #. Label of the qty (Float) field in DocType 'Purchase Invoice Item' #. Label of the qty (Float) field in DocType 'Subcontracting Receipt Item' #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json msgid "Accepted Qty" -msgstr "" +msgstr "Qabul qilingan miqdor" #. Label of the stock_qty (Float) field in DocType 'Purchase Invoice Item' #. Label of the stock_qty (Float) field in DocType 'Purchase Receipt Item' #: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Qty in Stock UOM" -msgstr "" +msgstr "Qabul qilingan miqdor UOM omborida" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' #: erpnext/public/js/controllers/transaction.js:2873 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" -msgstr "" +msgstr "Qabul qilingan miqdor" #. Label of the warehouse (Link) field in DocType 'Purchase Invoice Item' #. Label of the set_warehouse (Link) field in DocType 'Purchase Receipt' @@ -1206,39 +1251,39 @@ msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json msgid "Accepted Warehouse" -msgstr "" +msgstr "Qabul qilingan ombor" #: banking/src/components/features/BankReconciliation/TransferModalContent.tsx:485 msgid "Accepting the suggestion will reconcile both transactions." -msgstr "" +msgstr "Taklifni qabul qilish ikkala tranzaksiyani ham yarashtiradi." #. Label of the access_key (Data) field in DocType 'Currency Exchange Settings' #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json msgid "Access Key" -msgstr "" +msgstr "Kirish kaliti" #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:48 msgid "Access Key is required for Service Provider: {0}" -msgstr "" +msgstr "Xizmat ko'rsatuvchi provayder uchun kirish kaliti talab qilinadi: {0}" #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" -msgstr "" +msgstr "CEFACT/ICG/2010/IC013 yoki CEFACT/ICG/2010/IC010 ga muvofiq" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." -msgstr "" +msgstr "BOM {0}ma'lumotlariga ko'ra, '{1}' bandi ombor yozuvida yo'q." #. Description of the 'Customer Numbers' (Table) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Account / customer numbers assigned to your companies by this supplier (for reconciliation on their statements)" -msgstr "" +msgstr "Ushbu yetkazib beruvchi tomonidan sizning kompaniyalaringizga berilgan hisob/mijoz raqamlari (ularning hisobotlarini solishtirish uchun)" #. Name of a report #: erpnext/accounts/report/account_balance/account_balance.json msgid "Account Balance" -msgstr "" +msgstr "Hisob balansi" #. Label of the account_category (Link) field in DocType 'Account' #. Name of a DocType @@ -1248,18 +1293,18 @@ msgstr "" #: erpnext/accounts/doctype/account_category/account_category.json #: erpnext/workspace_sidebar/accounts_setup.json msgid "Account Category" -msgstr "" +msgstr "Hisob toifasi" #. Label of the account_category_name (Data) field in DocType 'Account #. Category' #: erpnext/accounts/doctype/account_category/account_category.json msgid "Account Category Name" -msgstr "" +msgstr "Hisob toifasi nomi" #. Name of a DocType #: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json msgid "Account Closing Balance" -msgstr "" +msgstr "Hisobni yopish balansi" #. Label of the account_currency (Link) field in DocType 'Account Closing #. Balance' @@ -1292,32 +1337,32 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json #: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json msgid "Account Currency" -msgstr "" +msgstr "Hisob valyutasi" #. Label of the paid_from_account_currency (Link) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json msgid "Account Currency (From)" -msgstr "" +msgstr "Hisob valyutasi (dan)" #. Label of the paid_to_account_currency (Link) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json msgid "Account Currency (To)" -msgstr "" +msgstr "Hisob valyutasi (tomonidan)" #. Option for the 'Data Source' (Select) field in DocType 'Financial Report #. Row' #: erpnext/accounts/doctype/financial_report_row/financial_report_row.json msgid "Account Data" -msgstr "" +msgstr "Hisob ma'lumotlari" #: erpnext/accounts/report/balance_sheet/balance_sheet.js:20 #: erpnext/accounts/report/cash_flow/cash_flow.js:29 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:21 #: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:20 msgid "Account Detail Level" -msgstr "" +msgstr "Hisob tafsilotlari darajasi" #. Label of the account_details_section (Section Break) field in DocType 'Bank #. Account' @@ -1329,7 +1374,7 @@ msgstr "" #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json msgid "Account Details" -msgstr "" +msgstr "Hisob tafsilotlari" #. Label of the account_head (Link) field in DocType 'Advance Taxes and #. Charges' @@ -1342,17 +1387,17 @@ msgstr "" #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json #: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json msgid "Account Head" -msgstr "" +msgstr "Hisob boshlig'i" #. Label of the account_manager (Link) field in DocType 'Customer' #: erpnext/selling/doctype/customer/customer.json msgid "Account Manager" -msgstr "" +msgstr "Buyurtmachilar bilan ishlash bo'yicha menejer" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:754 #: erpnext/controllers/accounts_controller.py:1308 msgid "Account Missing" -msgstr "" +msgstr "Hisob yo'q" #. Label of the account_name (Data) field in DocType 'Account' #. Label of the account_name (Data) field in DocType 'Bank Account' @@ -1366,11 +1411,11 @@ msgstr "" #: erpnext/accounts/report/financial_statements.py:705 #: erpnext/accounts/report/trial_balance/trial_balance.py:498 msgid "Account Name" -msgstr "" +msgstr "Hisob nomi" #: erpnext/accounts/doctype/account/account.py:377 msgid "Account Not Found" -msgstr "" +msgstr "Hisob topilmadi" #. Label of the account_number (Data) field in DocType 'Account' #: erpnext/accounts/doctype/account/account.json @@ -1379,31 +1424,31 @@ msgstr "" #: erpnext/accounts/report/financial_statements.py:712 #: erpnext/accounts/report/trial_balance/trial_balance.py:505 msgid "Account Number" -msgstr "" +msgstr "Hisob raqami" #: erpnext/accounts/doctype/account/account.py:363 msgid "Account Number {0} already used in account {1}" -msgstr "" +msgstr "{0} hisob raqami {1} hisobida allaqachon ishlatilgan" #. Label of the account_opening_balance (Currency) field in DocType 'Bank #. Reconciliation Tool' #: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json msgid "Account Opening Balance" -msgstr "" +msgstr "Hisobni ochish qoldig'i" #. Label of the paid_from (Link) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json msgid "Account Paid From" -msgstr "" +msgstr "Hisob to'langan joy" #. Label of the paid_to (Link) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json msgid "Account Paid To" -msgstr "" +msgstr "Hisobga to'langan" #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.py:120 msgid "Account Pay Only" -msgstr "" +msgstr "Faqat hisob to'lovi" #. Label of the account_subtype (Link) field in DocType 'Bank Account' #. Label of the account_subtype (Data) field in DocType 'Bank Account Subtype' @@ -1721,12 +1766,12 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json msgid "Accounting Dimension Detail" -msgstr "" +msgstr "Buxgalteriya o'lchovi tafsilotlari" #. Name of a DocType #: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json msgid "Accounting Dimension Filter" -msgstr "" +msgstr "Buxgalteriya o'lchamlari filtri" #. Label of the accounting_dimensions_section (Section Break) field in DocType #. 'Advance Taxes and Charges' @@ -1862,7 +1907,7 @@ msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json msgid "Accounting Dimensions" -msgstr "" +msgstr "Buxgalteriya o'lchamlari" #. Label of the accounting_dimensions_section (Section Break) field in DocType #. 'Purchase Invoice' @@ -1877,39 +1922,39 @@ msgstr "" #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json msgid "Accounting Dimensions " -msgstr "" +msgstr "Buxgalteriya o'lchamlari " #. Label of the accounting_dimensions_section (Section Break) field in DocType #. 'Payment Reconciliation' #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json msgid "Accounting Dimensions Filter" -msgstr "" +msgstr "Buxgalteriya o'lchamlari filtri" #. Label of the accounts (Table) field in DocType 'Journal Entry' #. Label of the accounts (Table) field in DocType 'Journal Entry Template' #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json msgid "Accounting Entries" -msgstr "" +msgstr "Buxgalteriya yozuvlari" #: erpnext/assets/doctype/asset/asset.py:947 #: erpnext/assets/doctype/asset/asset.py:962 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" -msgstr "" +msgstr "Aktivlar uchun buxgalteriya yozuvi" #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:137 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:155 msgid "Accounting Entry for LCV in Stock Entry {0}" -msgstr "" +msgstr "Ombor yozuvidagi LCV uchun buxgalteriya yozuvi {0}" #: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:225 msgid "Accounting Entry for Landed Cost Voucher for SCR {0}" -msgstr "" +msgstr "SCR uchun qo'ndirilgan xarajatlar vaucheri uchun buxgalteriya yozuvi {0}" #: erpnext/stock/doctype/purchase_receipt/services/provisional_accounting.py:38 msgid "Accounting Entry for Service" -msgstr "" +msgstr "Xizmat ko'rsatish uchun buxgalteriya yozuvi" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:203 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:224 @@ -1927,15 +1972,15 @@ msgstr "" #: erpnext/stock/services/base_stock_gl_composer.py:80 #: erpnext/subcontracting/doctype/subcontracting_receipt/services/gl_composer.py:67 msgid "Accounting Entry for Stock" -msgstr "" +msgstr "Aksiyalar uchun buxgalteriya yozuvi" #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:269 msgid "Accounting Entry for {0}" -msgstr "" +msgstr "{0} uchun buxgalteriya yozuvi" #: erpnext/accounts/services/party_validation.py:98 msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}" -msgstr "" +msgstr "{0}uchun buxgalteriya yozuvi: {1} faqat quyidagi valyutada amalga oshirilishi mumkin: {2}" #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:193 #: erpnext/assets/doctype/asset/asset.js:185 @@ -1946,17 +1991,17 @@ msgstr "" #: erpnext/selling/doctype/customer/customer.js:173 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:51 msgid "Accounting Ledger" -msgstr "" +msgstr "Buxgalteriya hisobi daftari" #. Label of a Card Break in the Invoicing Workspace #: erpnext/accounts/workspace/invoicing/invoicing.json msgid "Accounting Masters" -msgstr "" +msgstr "Buxgalteriya hisobi magistrlari" #. Title of the Module Onboarding 'Accounting Onboarding' #: erpnext/accounts/module_onboarding/accounting_onboarding/accounting_onboarding.json msgid "Accounting Onboarding" -msgstr "" +msgstr "Buxgalteriya hisobi bo'yicha onboarding" #. Name of a DocType #. Label of a Link in the Invoicing Workspace @@ -1965,17 +2010,17 @@ msgstr "" #: erpnext/accounts/workspace/invoicing/invoicing.json #: erpnext/workspace_sidebar/accounts_setup.json msgid "Accounting Period" -msgstr "" +msgstr "Hisobot davri" #: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 msgid "Accounting Period overlaps with {0}" -msgstr "" +msgstr "Hisob-kitob davri {0} bilan mos keladi" #. Description of the 'Accounts Frozen Till Date' (Date) field in DocType #. 'Company' #: erpnext/setup/doctype/company/company.json msgid "Accounting entries are frozen up to this date. Only users with the specified role can create or modify entries before this date." -msgstr "" +msgstr "Buxgalteriya yozuvlari shu sanagacha muzlatilgan. Faqat belgilangan rolga ega foydalanuvchilargina shu sanadan oldin yozuvlarni yaratishi yoki o'zgartirishi mumkin." #. Label of the applicable_on_account (Link) field in DocType 'Applicable On #. Account' @@ -2006,7 +2051,7 @@ msgstr "" #: erpnext/setup/doctype/supplier_group/supplier_group.json #: erpnext/setup/install.py:393 msgid "Accounts" -msgstr "" +msgstr "Hisoblar" #. Label of the closing_settings_tab (Tab Break) field in DocType 'Accounts #. Settings' @@ -2014,21 +2059,21 @@ msgstr "" #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/setup/doctype/company/company.json msgid "Accounts Closing" -msgstr "" +msgstr "Hisoblarni yopish" #. Label of the accounts_frozen_till_date (Date) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Accounts Frozen Till Date" -msgstr "" +msgstr "Hisoblar shu kungacha muzlatilgan" #: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:186 msgid "Accounts Included in Report" -msgstr "" +msgstr "Hisobotga kiritilgan hisoblar" #: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:160 #: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:185 msgid "Accounts Missing from Report" -msgstr "" +msgstr "Hisobotda yo'q hisoblar" #. Option for the 'Write Off Based On' (Select) field in DocType 'Journal #. Entry' @@ -2044,13 +2089,13 @@ msgstr "" #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Accounts Payable" -msgstr "" +msgstr "Ta'minotchilar bilan hisob-kitob" #. Name of a report #: erpnext/accounts/report/accounts_payable/accounts_payable.js:177 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.json msgid "Accounts Payable Summary" -msgstr "" +msgstr "Kreditorlik qarzlari haqida qisqacha ma'lumot" #. Option for the 'Write Off Based On' (Select) field in DocType 'Journal #. Entry' @@ -2069,43 +2114,43 @@ msgstr "" #: erpnext/workspace_sidebar/invoicing.json #: erpnext/workspace_sidebar/payments.json msgid "Accounts Receivable" -msgstr "" +msgstr "Kutilgan tushim" #. Label of the accounts_receivable_payable_tuning_section (Section Break) #. field in DocType 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Accounts Receivable / Payable Tuning" -msgstr "" +msgstr "Debitorlik/Kreditorlik qarzlarini sozlash" #. Label of the receivable_payable_remarks_length (Int) field in DocType #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Accounts Receivable / Payable remarks length" -msgstr "" +msgstr "Debitorlik / Kreditorlik qarzlari bo'yicha eslatma uzunligi" #. Label of the accounts_receivable_credit (Link) field in DocType 'Invoice #. Discounting' #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json msgid "Accounts Receivable Credit Account" -msgstr "" +msgstr "Debitorlik qarzlari kredit hisobi" #. Label of the accounts_receivable_discounted (Link) field in DocType 'Invoice #. Discounting' #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json msgid "Accounts Receivable Discounted Account" -msgstr "" +msgstr "Debitorlik qarzlari diskontlangan hisob" #. Name of a report #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:204 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.json msgid "Accounts Receivable Summary" -msgstr "" +msgstr "Debitorlik qarzlari haqida qisqacha ma'lumot" #. Label of the accounts_receivable_unpaid (Link) field in DocType 'Invoice #. Discounting' #: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json msgid "Accounts Receivable Unpaid Account" -msgstr "" +msgstr "Debitorlik qarzlari To'lanmagan hisobvaraq" #. Name of a DocType #. Label of a Link in the Invoicing Workspace @@ -2117,28 +2162,28 @@ msgstr "" #: erpnext/workspace_sidebar/accounts_setup.json #: erpnext/workspace_sidebar/erpnext_settings.json msgid "Accounts Settings" -msgstr "" +msgstr "Hisob sozlamalari" #. Label of a Desktop Icon #. Title of a Workspace Sidebar #: erpnext/desktop_icon/accounts_setup.json #: erpnext/workspace_sidebar/accounts_setup.json msgid "Accounts Setup" -msgstr "" +msgstr "Hisoblarni sozlash" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1010 msgid "Accounts table cannot be blank." -msgstr "" +msgstr "Hisoblar jadvali bo'sh bo'lishi mumkin emas." #. Label of the merge_accounts (Table) field in DocType 'Ledger Merge' #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json msgid "Accounts to Merge" -msgstr "" +msgstr "Birlashtiriladigan hisoblar" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270 msgid "Accrued Expenses" -msgstr "" +msgstr "Hisoblangan xarajatlar" #. Option for the 'Account Type' (Select) field in DocType 'Account' #: erpnext/accounts/doctype/account/account.json @@ -2146,7 +2191,7 @@ msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117 #: erpnext/accounts/report/account_balance/account_balance.js:37 msgid "Accumulated Depreciation" -msgstr "" +msgstr "Yig'ilgan amortizatsiya" #. Label of the accumulated_depreciation_account (Link) field in DocType 'Asset #. Category Account' @@ -2155,7 +2200,7 @@ msgstr "" #: erpnext/assets/doctype/asset_category_account/asset_category_account.json #: erpnext/setup/doctype/company/company.json msgid "Accumulated Depreciation Account" -msgstr "" +msgstr "Yig'ilgan amortizatsiya hisobi" #. Label of the accumulated_depreciation_amount (Currency) field in DocType #. 'Depreciation Schedule' @@ -2163,48 +2208,48 @@ msgstr "" #: erpnext/assets/doctype/asset/asset.js:380 #: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json msgid "Accumulated Depreciation Amount" -msgstr "" +msgstr "Yig'ilgan amortizatsiya miqdori" #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 msgid "Accumulated Depreciation as on" -msgstr "" +msgstr "Yig'ilgan amortizatsiya" #: erpnext/accounts/doctype/budget/budget.py:533 msgid "Accumulated Monthly" -msgstr "" +msgstr "Yig'ilgan oylik" #: erpnext/controllers/budget_controller.py:429 msgid "Accumulated Monthly Budget for Account {0} against {1} {2} is {3}. It will be collectively ({4}) exceeded by {5}" -msgstr "" +msgstr "{0} hisobi uchun to'plangan oylik byudjet {1} {2} ga nisbatan {3}ga teng. Bu umumiy ({4}) {5} ga oshib ketadi." #: erpnext/controllers/budget_controller.py:331 msgid "Accumulated Monthly Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}" -msgstr "" +msgstr "{0} hisobi uchun to'plangan oylik byudjet {1}ga nisbatan: {2} {3}ga teng. U {4} ga oshib ketadi." #: erpnext/accounts/report/balance_sheet/balance_sheet.js:39 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js:12 #: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:40 msgid "Accumulated Values" -msgstr "" +msgstr "To'plangan qiymatlar" #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:125 msgid "Accumulated Values in Group Company" -msgstr "" +msgstr "Guruh kompaniyasida to'plangan qiymatlar" #: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:111 msgid "Achieved ({})" -msgstr "" +msgstr "Erishildi ({})" #. Label of the acquisition_date (Date) field in DocType 'Vehicle' #: erpnext/setup/doctype/vehicle/vehicle.json msgid "Acquisition Date" -msgstr "" +msgstr "Sotib olingan sana" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Acre" -msgstr "" +msgstr "Akr" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json @@ -2524,105 +2569,105 @@ msgstr "" #: erpnext/projects/doctype/project/project.json #: erpnext/projects/doctype/task/task.json msgid "Actual Start Date (via Timesheet)" -msgstr "" +msgstr "Haqiqiy boshlanish sanasi (vaqtinchalik jadval orqali)" #. Label of the actual_start_time (Datetime) field in DocType 'Work Order #. Operation' #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json msgid "Actual Start Time" -msgstr "" +msgstr "Haqiqiy boshlanish vaqti" #. Label of the timing_detail (Tab Break) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "Actual Time" -msgstr "" +msgstr "Haqiqiy vaqt" #. Label of the section_break_9 (Section Break) field in DocType 'Work Order #. Operation' #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json msgid "Actual Time and Cost" -msgstr "" +msgstr "Haqiqiy vaqt va xarajat" #. Label of the actual_time (Float) field in DocType 'Project' #. Label of the actual_time (Float) field in DocType 'Task' #: erpnext/projects/doctype/project/project.json #: erpnext/projects/doctype/task/task.json msgid "Actual Time in Hours (via Timesheet)" -msgstr "" +msgstr "Haqiqiy vaqt soatlarda (vaqtinchalik jadval orqali)" #: erpnext/stock/page/stock_balance/stock_balance.js:55 msgid "Actual qty in stock" -msgstr "" +msgstr "Ombordagi haqiqiy miqdor" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 #: erpnext/public/js/controllers/accounts.js:197 msgid "Actual type tax cannot be included in Item rate in row {0}" -msgstr "" +msgstr "Haqiqiy turdagi soliq {0} qatoridagi mahsulot stavkasiga kiritilishi mumkin emas" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1022 msgid "Ad-hoc Qty" -msgstr "" +msgstr "Vaqtinchalik Miqdor" #: erpnext/stock/doctype/price_list/price_list.js:8 msgid "Add / Edit Prices" -msgstr "" +msgstr "Narxlarni qo'shish / tahrirlash" #: erpnext/accounts/report/general_ledger/general_ledger.js:214 msgid "Add Columns in Transaction Currency" -msgstr "" +msgstr "Tranzaksiya valyutasiga ustunlar qo'shish" #. Label of the add_corrective_operation_cost_in_finished_good_valuation #. (Check) field in DocType 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Add Corrective Operation Cost in Finished Good Valuation" -msgstr "" +msgstr "Tayyor mahsulotni baholashda tuzatish operatsiyasi narxini qo'shing" #: erpnext/public/js/event.js:24 msgid "Add Customers" -msgstr "" +msgstr "Mijozlar qo'shish" #: erpnext/selling/page/point_of_sale/pos_item_cart.js:93 #: erpnext/selling/page/point_of_sale/pos_item_cart.js:442 msgid "Add Discount" -msgstr "" +msgstr "Chegirma qo'shish" #: erpnext/public/js/event.js:40 msgid "Add Employees" -msgstr "" +msgstr "Xodimlarni qo'shish" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:256 #: erpnext/selling/doctype/sales_order/sales_order.js:278 #: erpnext/stock/dashboard/item_dashboard.js:216 msgid "Add Item" -msgstr "" +msgstr "Element qo'shish" #: erpnext/public/js/utils/item_selector.js:20 #: erpnext/public/js/utils/item_selector.js:35 msgid "Add Items" -msgstr "" +msgstr "Elementlar qo'shish" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:56 msgid "Add Items in the Purpose Table" -msgstr "" +msgstr "Maqsadlar jadvaliga elementlarni qo'shish" #: erpnext/crm/doctype/lead/lead.js:84 msgid "Add Lead to Prospect" -msgstr "" +msgstr "Potensial mijozlarga potentsial mijozlarni qo'shish" #: erpnext/public/js/event.js:16 msgid "Add Leads" -msgstr "" +msgstr "Mijozlarni qo'shish" #. Label of the add_local_holidays (Section Break) field in DocType 'Holiday #. List' #: erpnext/setup/doctype/holiday_list/holiday_list.json msgid "Add Local Holidays" -msgstr "" +msgstr "Mahalliy bayramlarni qo'shish" #. Label of the add_manually (Check) field in DocType 'Repost Payment Ledger' #: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json msgid "Add Manually" -msgstr "" +msgstr "Qo'lda qo'shish" #: erpnext/projects/doctype/task/task_tree.js:42 msgid "Add Multiple" @@ -2630,37 +2675,37 @@ msgstr "" #: erpnext/projects/doctype/task/task_tree.js:49 msgid "Add Multiple Tasks" -msgstr "" +msgstr "Bir nechta vazifalarni qo'shish" #: erpnext/stock/doctype/item/item.js:974 msgid "Add Opening Stock" -msgstr "" +msgstr "Ochilish aktsiyalarini qo'shish" #. Label of the add_deduct_tax (Select) field in DocType 'Advance Taxes and #. Charges' #: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json msgid "Add Or Deduct" -msgstr "" +msgstr "Qo'shish yoki ayirish" #: erpnext/selling/page/point_of_sale/pos_item_cart.js:280 msgid "Add Order Discount" -msgstr "" +msgstr "Buyurtma chegirmasini qo'shish" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:281 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:416 msgid "Add Phantom Item" -msgstr "" +msgstr "Xayoliy elementni qo'shish" #. Label of the add_quote (Check) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid "Add Quote" -msgstr "" +msgstr "Narx qo'shish" #. Label of the add_raw_materials (Button) field in DocType 'BOM Operation' #: erpnext/manufacturing/doctype/bom/bom.js:1050 #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json msgid "Add Raw Materials" -msgstr "" +msgstr "Xom ashyo qo'shish" #: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:711 #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:1260 @@ -2671,21 +2716,21 @@ msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:227 #: banking/src/components/features/Settings/MatchingRules.tsx:30 msgid "Add Rule" -msgstr "" +msgstr "Qoida qo'shish" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:82 msgid "Add Safety Stock" -msgstr "" +msgstr "Xavfsizlik zaxirasini qo'shish" #: erpnext/public/js/event.js:48 msgid "Add Sales Partners" -msgstr "" +msgstr "Savdo hamkorlarini qo'shish" #. Label of the add_schedule (Button) field in DocType 'Sales Order Item' #: erpnext/selling/doctype/sales_order/sales_order.js:687 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json msgid "Add Schedule" -msgstr "" +msgstr "Jadval qo'shish" #. Label of the add_serial_batch_bundle (Button) field in DocType #. 'Subcontracting Receipt Item' @@ -2694,7 +2739,7 @@ msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json msgid "Add Serial / Batch Bundle" -msgstr "" +msgstr "Seriyali / ommaviy to'plamni qo'shish" #. Label of the add_serial_batch_bundle (Button) field in DocType 'Purchase #. Invoice Item' @@ -2709,7 +2754,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json msgid "Add Serial / Batch No" -msgstr "" +msgstr "Seriya/partiya raqamini qo'shish" #. Label of the add_serial_batch_for_rejected_qty (Button) field in DocType #. 'Purchase Receipt Item' @@ -2718,74 +2763,74 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json msgid "Add Serial / Batch No (Rejected Qty)" -msgstr "" +msgstr "Seriya raqamini qo'shish / Partiya raqami (Rad etilgan miqdor)" #: erpnext/public/js/utils/naming_series.js:26 msgid "Add Series Prefix" -msgstr "" +msgstr "Seriya prefiksini qo'shish" #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" -msgstr "" +msgstr "Aksiya qo'shish" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:281 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:416 msgid "Add Sub Assembly" -msgstr "" +msgstr "Sub yig'ishni qo'shish" #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:517 #: erpnext/public/js/event.js:32 msgid "Add Suppliers" -msgstr "" +msgstr "Yetkazib beruvchilarni qo'shish" #: erpnext/utilities/activation.py:126 msgid "Add Timesheets" -msgstr "" +msgstr "Vaqt jadvallarini qo'shish" #. Label of the add_weekly_holidays (Section Break) field in DocType 'Holiday #. List' #: erpnext/setup/doctype/holiday_list/holiday_list.json msgid "Add Weekly Holidays" -msgstr "" +msgstr "Haftalik ta'tillarni qo'shish" #: erpnext/public/js/utils/crm_activities.js:144 msgid "Add a Note" -msgstr "" +msgstr "Izoh qo'shish" #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:879 msgid "Add a charge to the payment entry with the difference amount" -msgstr "" +msgstr "To'lov yozuviga farq miqdori bilan to'lov qo'shing" #: banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx:863 msgid "Add a charge to the payment entry with the unallocated amount" -msgstr "" +msgstr "To'lov yozuviga ajratilmagan summa bilan to'lov qo'shing" #: banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx:800 msgid "Add a row with the difference amount" -msgstr "" +msgstr "Farq miqdori bilan qator qo'shing" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:579 msgid "Add all accounts that you want to split the transaction into." -msgstr "" +msgstr "Tranzaksiyani ajratmoqchi bo'lgan barcha hisoblarni qo'shing." #: erpnext/www/book_appointment/index.html:42 msgid "Add details" -msgstr "" +msgstr "Tafsilotlarni qo'shish" #: erpnext/stock/doctype/pick_list/mapper.py:23 #: erpnext/stock/doctype/pick_list/pick_list.js:89 msgid "Add items in the Item Locations table" -msgstr "" +msgstr "Elementlar joylashuvi jadvaliga elementlar qo'shing" #. Label of the add_deduct_tax (Select) field in DocType 'Purchase Taxes and #. Charges' #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json msgid "Add or Deduct" -msgstr "" +msgstr "Qo'shish yoki ayirish" #: erpnext/utilities/activation.py:116 msgid "Add the rest of your organization as your users. You can also add invite Customers to your portal by adding them from Contacts" -msgstr "" +msgstr "Tashkilotingizning qolgan qismini foydalanuvchilaringiz sifatida qo'shing. Shuningdek, mijozlarni Kontaktlar ro'yxatidan qo'shish orqali portalingizga taklifnoma qo'shishingiz mumkin." #. Label of the get_weekly_off_dates (Button) field in DocType 'Holiday List' #. Label of the get_local_holidays (Button) field in DocType 'Holiday List' @@ -3276,33 +3321,33 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:165 msgid "Advance Amount" -msgstr "" +msgstr "Avans miqdori" #. Label of the advance_paid (Currency) field in DocType 'Sales Order' #: erpnext/selling/doctype/sales_order/sales_order.json msgid "Advance Paid" -msgstr "" +msgstr "Avans to'langan" #. Label of the advance_paid (Currency) field in DocType 'Purchase Order' #: erpnext/buying/doctype/purchase_order/purchase_order.json msgid "Advance Paid (Company Currency)" -msgstr "" +msgstr "Avans to'langan (Kompaniya valyutasi)" #: erpnext/buying/doctype/purchase_order/purchase_order_list.js:75 #: erpnext/selling/doctype/sales_order/sales_order_list.js:122 msgid "Advance Payment" -msgstr "" +msgstr "Oldindan to'lov" #. Option for the 'Reconciliation Takes Effect On' (Select) field in DocType #. 'Company' #: erpnext/setup/doctype/company/company.json msgid "Advance Payment Date" -msgstr "" +msgstr "Oldindan to'lov sanasi" #. Name of a DocType #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json msgid "Advance Payment Ledger Entry" -msgstr "" +msgstr "Avans to'lovlari daftariga yozuv" #. Label of the advance_payment_status (Select) field in DocType 'Purchase #. Order' @@ -3310,7 +3355,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.json #: erpnext/selling/doctype/sales_order/sales_order.json msgid "Advance Payment Status" -msgstr "" +msgstr "Oldindan to'lov holati" #. Label of the advances_section (Section Break) field in DocType 'POS Invoice' #. Label of the advances_section (Section Break) field in DocType 'Purchase @@ -3325,14 +3370,14 @@ msgstr "" #: erpnext/controllers/accounts_controller.py:280 #: erpnext/setup/doctype/company/company.json msgid "Advance Payments" -msgstr "" +msgstr "Oldindan to'lovlar" #. Name of a DocType #. Label of the taxes (Table) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json #: erpnext/accounts/doctype/payment_entry/payment_entry.json msgid "Advance Taxes and Charges" -msgstr "" +msgstr "Avans soliqlari va to'lovlari" #. Label of the advance_voucher_no (Dynamic Link) field in DocType 'Journal #. Entry Account' @@ -3341,7 +3386,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json msgid "Advance Voucher No" -msgstr "" +msgstr "Avans vaucheri raqami" #. Label of the advance_voucher_type (Link) field in DocType 'Journal Entry #. Account' @@ -3350,21 +3395,21 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json msgid "Advance Voucher Type" -msgstr "" +msgstr "Avans vaucheri turi" #. Label of the advance_amount (Currency) field in DocType 'Sales Invoice #. Advance' #: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json msgid "Advance amount" -msgstr "" +msgstr "Avans miqdori" #: erpnext/controllers/taxes_and_totals.py:983 msgid "Advance amount cannot be greater than {0} {1}" -msgstr "" +msgstr "Avans summasi {0} {1} dan oshmasligi kerak" #: erpnext/accounts/doctype/journal_entry/services/reference_validator.py:172 msgid "Advance paid against {0} {1} cannot be greater than Grand Total {2}" -msgstr "" +msgstr "{0} {1} ga nisbatan to'langan avans summasi umumiy summadan {2} katta bo'lmasligi kerak" #. Description of the 'Only Include Allocated Payments' (Check) field in #. DocType 'Purchase Invoice' @@ -3373,19 +3418,19 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Advance payments allocated against orders will only be fetched" -msgstr "" +msgstr "Buyurtmalar bo'yicha ajratilgan avans to'lovlari faqat olinadi" #. Label of the advanced_features_tab (Tab Break) field in DocType 'Selling #. Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Advanced Features" -msgstr "" +msgstr "Kengaytirilgan xususiyatlar" #. Label of the advanced_filtering (Check) field in DocType 'Financial Report #. Row' #: erpnext/accounts/doctype/financial_report_row/financial_report_row.json msgid "Advanced Filtering" -msgstr "" +msgstr "Kengaytirilgan filtrlash" #. Label of the advances (Table) field in DocType 'POS Invoice' #. Label of the advances (Table) field in DocType 'Purchase Invoice' @@ -3394,29 +3439,29 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Advances" -msgstr "" +msgstr "Avanslar" #: erpnext/setup/setup_wizard/data/marketing_source.txt:3 msgid "Advertisement" -msgstr "" +msgstr "Reklama" #: erpnext/setup/setup_wizard/data/industry_type.txt:2 msgid "Advertising" -msgstr "" +msgstr "Reklama" #: erpnext/setup/setup_wizard/data/industry_type.txt:3 msgid "Aerospace" -msgstr "" +msgstr "Aerokosmik" #: erpnext/stock/doctype/stock_settings/stock_settings.js:79 msgid "After save, please refresh the page to apply the changes." -msgstr "" +msgstr "Saqlagandan so'ng, o'zgarishlarni qo'llash uchun sahifani yangilang." #. Label of the against (Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:20 msgid "Against" -msgstr "" +msgstr "Qarshi" #. Label of the against_account (Data) field in DocType 'Bank Clearance Detail' #. Label of the against_account (Text) field in DocType 'Journal Entry Account' @@ -3429,7 +3474,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 #: erpnext/accounts/report/general_ledger/general_ledger.py:773 msgid "Against Account" -msgstr "" +msgstr "Hisobga qarshi" #. Label of the against_blanket_order (Check) field in DocType 'Purchase Order #. Item' @@ -3440,33 +3485,33 @@ msgstr "" #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json msgid "Against Blanket Order" -msgstr "" +msgstr "Adyol tartibiga qarshi" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:838 msgid "Against Customer Order {0}" -msgstr "" +msgstr "Mijoz buyurtmasiga qarshi {0}" #. Label of the dn_detail (Data) field in DocType 'Delivery Note Item' #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json msgid "Against Delivery Note Item" -msgstr "" +msgstr "Yetkazib berish to'g'risidagi eslatma buyumiga qarshi" #. Label of the prevdoc_docname (Dynamic Link) field in DocType 'Quotation #. Item' #: erpnext/selling/doctype/quotation_item/quotation_item.json msgid "Against Docname" -msgstr "" +msgstr "Docnamega qarshi" #. Label of the prevdoc_doctype (Link) field in DocType 'Quotation Item' #: erpnext/selling/doctype/quotation_item/quotation_item.json msgid "Against Doctype" -msgstr "" +msgstr "Doctypega qarshi" #. Label of the prevdoc_detail_docname (Data) field in DocType 'Installation #. Note Item' #: erpnext/selling/doctype/installation_note_item/installation_note_item.json msgid "Against Document Detail No" -msgstr "" +msgstr "Hujjat tafsilotlari raqamiga qarshi" #. Label of the prevdoc_docname (Dynamic Link) field in DocType 'Maintenance #. Visit Purpose' @@ -3475,18 +3520,18 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/selling/doctype/installation_note_item/installation_note_item.json msgid "Against Document No" -msgstr "" +msgstr "Hujjat raqamiga qarshi" #. Label of the against_expense_account (Small Text) field in DocType 'Purchase #. Invoice' #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json msgid "Against Expense Account" -msgstr "" +msgstr "Xarajatlar hisobiga qarshi" #. Label of the against_fg (Link) field in DocType 'Stock Entry Detail' #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Against Finished Good" -msgstr "" +msgstr "Yaxshi yakunlanganga qarshi" #. Label of the against_income_account (Small Text) field in DocType 'POS #. Invoice' @@ -3495,61 +3540,61 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.json #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json msgid "Against Income Account" -msgstr "" +msgstr "Daromad hisobiga qarshi" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:590 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:798 msgid "Against Journal Entry {0} does not have any unmatched {1} entry" -msgstr "" +msgstr "Jurnal yozuviga qarshi {0} da mos kelmaydigan {1} yozuvi yo'q" #: erpnext/accounts/doctype/gl_entry/gl_entry.py:400 msgid "Against Journal Entry {0} is already adjusted against some other voucher" -msgstr "" +msgstr "Jurnal yozuviga qarshi {0} allaqachon boshqa vaucherlarga nisbatan moslashtirilgan" #. Label of the against_pick_list (Link) field in DocType 'Sales Invoice Item' #. Label of the against_pick_list (Link) field in DocType 'Delivery Note Item' #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json msgid "Against Pick List" -msgstr "" +msgstr "Tanlov ro'yxatiga qarshi" #. Label of the against_sales_invoice (Link) field in DocType 'Delivery Note #. Item' #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json msgid "Against Sales Invoice" -msgstr "" +msgstr "Savdo schyot-fakturasiga qarshi" #. Label of the si_detail (Data) field in DocType 'Delivery Note Item' #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json msgid "Against Sales Invoice Item" -msgstr "" +msgstr "Savdo fakturasiga qarshi" #. Label of the against_sales_order (Link) field in DocType 'Delivery Note #. Item' #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json msgid "Against Sales Order" -msgstr "" +msgstr "Savdo buyurtmasiga qarshi" #. Label of the so_detail (Data) field in DocType 'Delivery Note Item' #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json msgid "Against Sales Order Item" -msgstr "" +msgstr "Savdo buyurtmasi buyumiga qarshi" #. Label of the against_stock_entry (Link) field in DocType 'Stock Entry #. Detail' #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Against Stock Entry" -msgstr "" +msgstr "Aksiyalarga kirishga qarshi" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:336 msgid "Against Supplier Invoice {0}" -msgstr "" +msgstr "Yetkazib beruvchiga qarshi hisob-faktura {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/report/general_ledger/general_ledger.py:806 msgid "Against Voucher" -msgstr "" +msgstr "Vaucherga qarshi" #. Label of the against_voucher_no (Dynamic Link) field in DocType 'Advance #. Payment Ledger Entry' @@ -3561,7 +3606,7 @@ msgstr "" #: erpnext/accounts/report/payment_ledger/payment_ledger.js:71 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:192 msgid "Against Voucher No" -msgstr "" +msgstr "Vaucher raqamiga qarshi" #. Label of the against_voucher_type (Link) field in DocType 'Advance Payment #. Ledger Entry' @@ -3574,25 +3619,25 @@ msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:804 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" -msgstr "" +msgstr "Vaucher turiga qarshi" #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:113 #: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:60 #: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:259 #: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:102 msgid "Age" -msgstr "" +msgstr "Yosh" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:154 #: erpnext/accounts/report/accounts_payable/accounts_payable.html:138 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:139 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1223 msgid "Age (Days)" -msgstr "" +msgstr "Yoshi (kunlar)" #: erpnext/stock/report/stock_ageing/stock_ageing.py:267 msgid "Age ({0})" -msgstr "" +msgstr "Yosh ({0})" #. Label of the ageing_based_on (Select) field in DocType 'Process Statement Of #. Accounts' @@ -3604,7 +3649,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:119 #: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:21 msgid "Ageing Based On" -msgstr "" +msgstr "Qarish asosida" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:80 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:35 @@ -3922,21 +3967,21 @@ msgstr "" #. 'Purchase Taxes and Charges' #: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json msgid "Allocate Full Amount to Stock Items" -msgstr "" +msgstr "To'liq miqdorni ombordagi narsalarga ajrating" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 msgid "Allocate Payment Amount" -msgstr "" +msgstr "To'lov miqdorini ajratish" #. Label of the allocate_payment_based_on_payment_terms (Check) field in #. DocType 'Payment Terms Template' #: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json msgid "Allocate Payment Based On Payment Terms" -msgstr "" +msgstr "To'lov shartlari asosida to'lovni taqsimlang" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 msgid "Allocate Payment Request" -msgstr "" +msgstr "To'lov so'rovini ajratish" #. Label of the allocated_amount (Currency) field in DocType 'Payment Entry #. Reference' @@ -3949,7 +3994,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json msgid "Allocated" -msgstr "" +msgstr "Ajratilgan" #. Label of the allocated_amount (Currency) field in DocType 'Bank Transaction' #. Label of the allocated_amount (Currency) field in DocType 'Bank Transaction @@ -3972,37 +4017,37 @@ msgstr "" #: erpnext/accounts/report/gross_profit/gross_profit.py:409 #: erpnext/public/js/utils/unreconcile.js:87 msgid "Allocated Amount" -msgstr "" +msgstr "Ajratilgan miqdor" #. Label of the sec_break2 (Section Break) field in DocType 'Payment #. Reconciliation' #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json msgid "Allocated Entries" -msgstr "" +msgstr "Ajratilgan yozuvlar" #: erpnext/public/js/templates/crm_activities.html:49 msgid "Allocated To:" -msgstr "" +msgstr "Ajratilgan:" #. Label of the allocated_amount (Currency) field in DocType 'Sales Invoice #. Advance' #: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json msgid "Allocated amount" -msgstr "" +msgstr "Ajratilgan miqdor" #: erpnext/accounts/utils.py:665 msgid "Allocated amount cannot be greater than unadjusted amount" -msgstr "" +msgstr "Ajratilgan summa sozlanmagan summadan katta bo'lmasligi kerak" #: erpnext/accounts/utils.py:663 msgid "Allocated amount cannot be negative" -msgstr "" +msgstr "Ajratilgan miqdor manfiy bo'lishi mumkin emas" #. Label of the allocation (Table) field in DocType 'Payment Reconciliation' #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:282 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json msgid "Allocation" -msgstr "" +msgstr "Ajratish" #. Label of the allocations (Table) field in DocType 'Process Payment #. Reconciliation Log' @@ -4013,11 +4058,11 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/public/js/utils/unreconcile.js:104 msgid "Allocations" -msgstr "" +msgstr "Ajratmalar" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:430 msgid "Allotted Qty" -msgstr "" +msgstr "Ajratilgan miqdor" #. Label of the allow_account_creation_against_child_company (Check) field in #. DocType 'Company' @@ -4025,7 +4070,7 @@ msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68 #: erpnext/setup/doctype/company/company.json msgid "Allow Account Creation Against Child Company" -msgstr "" +msgstr "Bolalar kompaniyasiga qarshi hisob yaratishga ruxsat berish" #. Label of the allow_alternative_item (Check) field in DocType 'BOM' #. Label of the allow_alternative_item (Check) field in DocType 'BOM Item' @@ -4044,59 +4089,59 @@ msgstr "" #: erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Allow Alternative Item" -msgstr "" +msgstr "Muqobil elementga ruxsat berish" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 msgid "Allow Alternative Item must be checked on Item {}" -msgstr "" +msgstr "{} elementida muqobil elementga ruxsat berish katagiga belgi qo'yilishi kerak" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Allow Continuous Material Consumption" -msgstr "" +msgstr "Doimiy material iste'moliga ruxsat bering" #. Label of the allow_editing_of_items_and_quantities_in_work_order (Check) #. field in DocType 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Allow Editing of Items and Quantities in Work Order" -msgstr "" +msgstr "Ish buyurtmasidagi elementlar va miqdorlarni tahrirlashga ruxsat berish" #. Label of the job_card_excess_transfer (Check) field in DocType #. 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Allow Excess Material Transfer" -msgstr "" +msgstr "Ortiqcha material o'tkazilishiga ruxsat bering" #. Label of the allow_pegged_currencies_exchange_rates (Check) field in DocType #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Allow Implicit Pegged Currency Conversion" -msgstr "" +msgstr "Yashirin valyuta konversiyasiga ruxsat berish" #. Label of the allow_in_returns (Check) field in DocType 'POS Payment Method' #: erpnext/accounts/doctype/pos_payment_method/pos_payment_method.json msgid "Allow In Returns" -msgstr "" +msgstr "Qaytarishlarga ruxsat berish" #: erpnext/controllers/selling_controller.py:873 msgid "Allow Item to Be Added Multiple Times in a Transaction" -msgstr "" +msgstr "Bitimga bir nechta marta element qo'shishga ruxsat bering" #. Label of the allow_multiple_items (Check) field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Allow Item to be added multiple times in a transaction" -msgstr "" +msgstr "Bitimga elementni bir necha marta qo'shishga ruxsat bering" #. Label of the allow_lead_duplication_based_on_emails (Check) field in DocType #. 'CRM Settings' #: erpnext/crm/doctype/crm_settings/crm_settings.json msgid "Allow Lead Duplication based on Emails" -msgstr "" +msgstr "Elektron pochta xabarlari asosida mijozlarning nusxalarini ko'paytirishga ruxsat berish" #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:9 msgid "Allow Multiple Material Consumption" -msgstr "" +msgstr "Bir nechta material iste'moliga ruxsat bering" #. Label of the allow_negative_stock (Check) field in DocType 'Item' #. Label of the allow_negative_stock (Check) field in DocType 'Repost Item @@ -4106,136 +4151,136 @@ msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.py:225 #: erpnext/stock/doctype/stock_settings/stock_settings.py:237 msgid "Allow Negative Stock" -msgstr "" +msgstr "Salbiy aktsiyalarga ruxsat bering" #. Label of the allow_negative_stock_for_batch (Check) field in DocType 'Batch' #: erpnext/stock/doctype/batch/batch.json msgid "Allow Negative Stock for Batch" -msgstr "" +msgstr "Partiya uchun salbiy zaxiraga ruxsat bering" #. Label of the allow_or_restrict (Select) field in DocType 'Accounting #. Dimension Filter' #: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json msgid "Allow Or Restrict Dimension" -msgstr "" +msgstr "Hajmga ruxsat berish yoki cheklash" #. Label of the allow_overtime (Check) field in DocType 'Manufacturing #. Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Allow Overtime" -msgstr "" +msgstr "Qo'shimcha vaqtga ruxsat berish" #. Label of the allow_partial_payment (Check) field in DocType 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json msgid "Allow Partial Payment" -msgstr "" +msgstr "Qisman to'lovga ruxsat berish" #. Label of the allow_production_on_holidays (Check) field in DocType #. 'Manufacturing Settings' #: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json msgid "Allow Production on Holidays" -msgstr "" +msgstr "Bayram kunlari ishlab chiqarishga ruxsat bering" #. Label of the is_purchase_item (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Allow Purchase" -msgstr "" +msgstr "Xaridga ruxsat berish" #. Label of the allow_zero_qty_in_purchase_order (Check) field in DocType #. 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Allow Purchase Order with Zero Quantity" -msgstr "" +msgstr "Nol miqdoridagi xarid buyurtmasiga ruxsat bering" #. Label of the allow_zero_qty_in_quotation (Check) field in DocType 'Selling #. Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Allow Quotation with zero quantity" -msgstr "" +msgstr "Nol miqdori bilan kotirovkaga ruxsat bering" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' #: erpnext/controllers/item_variant.py:211 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" -msgstr "" +msgstr "Atribut qiymatini qayta nomlashga ruxsat berish" #. Label of the allow_zero_qty_in_request_for_quotation (Check) field in #. DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Allow Request for Quotation with Zero Quantity" -msgstr "" +msgstr "Nol miqdori bilan kotirovka so'roviga ruxsat bering" #. Label of the allow_resetting_service_level_agreement (Check) field in #. DocType 'Support Settings' #: erpnext/support/doctype/support_settings/support_settings.json msgid "Allow Resetting Service Level Agreement" -msgstr "" +msgstr "Xizmat ko'rsatish darajasi shartnomasini qayta tiklashga ruxsat berish" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:785 msgid "Allow Resetting Service Level Agreement from Support Settings." -msgstr "" +msgstr "Qo'llab-quvvatlash sozlamalaridan Xizmat ko'rsatish darajasi shartnomasini qayta o'rnatishga ruxsat bering." #. Label of the is_sales_item (Check) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "Allow Sales" -msgstr "" +msgstr "Savdoga ruxsat berish" #. Label of the allow_sales_order_creation_for_expired_quotation (Check) field #. in DocType 'Selling Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Allow Sales Order creation for expired Quotation" -msgstr "" +msgstr "Muddati o'tgan kotirovka uchun savdo buyurtmasini yaratishga ruxsat bering" #. Label of the allow_zero_qty_in_sales_order (Check) field in DocType 'Selling #. Settings' #: erpnext/selling/doctype/selling_settings/selling_settings.json msgid "Allow Sales Order with zero quantity" -msgstr "" +msgstr "Nol miqdorli savdo buyurtmasiga ruxsat bering" #. Label of the allow_stale (Check) field in DocType 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Allow Stale Exchange Rates" -msgstr "" +msgstr "Eskirgan valyuta kurslariga ruxsat bering" #. Label of the allow_zero_qty_in_supplier_quotation (Check) field in DocType #. 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json msgid "Allow Supplier Quotation with Zero Quantity" -msgstr "" +msgstr "Yetkazib beruvchining kotirovkasini nol miqdori bilan qabul qiling" #. Label of the allow_uom_with_conversion_rate_defined_in_item (Check) field in #. DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Allow UOM with conversion rate defined in Item" -msgstr "" +msgstr "Elementda belgilangan konversiya darajasi bilan UOMga ruxsat bering" #. Label of the allow_discount_change (Check) field in DocType 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json msgid "Allow User to Edit Discount" -msgstr "" +msgstr "Foydalanuvchiga chegirmalarni tahrirlashga ruxsat berish" #. Label of the allow_rate_change (Check) field in DocType 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json msgid "Allow User to Edit Rate" -msgstr "" +msgstr "Foydalanuvchiga narxni tahrirlashga ruxsat berish" #. Label of the allow_warehouse_change (Check) field in DocType 'POS Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json msgid "Allow User to Edit Warehouse" -msgstr "" +msgstr "Foydalanuvchiga omborni tahrirlashga ruxsat berish" #. Label of the allow_different_uom (Check) field in DocType 'Item Variant #. Settings' #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Variant UOM to be different from Template UOM" -msgstr "" +msgstr "Variant UOM ga Template UOM dan farq qilishiga ruxsat bering" #. Label of the allow_zero_rate (Check) field in DocType 'Repost Item #. Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json msgid "Allow Zero Rate" -msgstr "" +msgstr "Nol stavkaga ruxsat berish" #. Label of the allow_zero_valuation_rate (Check) field in DocType 'POS Invoice #. Item' @@ -4259,7 +4304,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json msgid "Allow Zero Valuation Rate" -msgstr "" +msgstr "Nolinchi baholash stavkasiga ruxsat bering" #. Label of the allow_delivery_of_overproduced_qty (Check) field in DocType #. 'Selling Settings' @@ -4543,7 +4588,7 @@ msgstr "" #. Profile' #: erpnext/accounts/doctype/pos_profile/pos_profile.json msgid "Always Ask" -msgstr "" +msgstr "Doim so'rang" #. Label of the amount (Currency) field in DocType 'Advance Payment Ledger #. Entry' @@ -4750,11 +4795,11 @@ msgstr "" #: erpnext/templates/form_grid/stock_entry_grid.html:11 #: erpnext/templates/pages/order.html:103 erpnext/templates/pages/rfq.html:46 msgid "Amount" -msgstr "" +msgstr "Miqdori" #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:35 msgid "Amount (AED)" -msgstr "" +msgstr "Miqdor (AED)" #. Label of the base_amount (Currency) field in DocType 'Advance Payment Ledger #. Entry' @@ -4799,23 +4844,23 @@ msgstr "" #: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Amount (Company Currency)" -msgstr "" +msgstr "Miqdor (Kompaniya valyutasi)" #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:325 msgid "Amount Delivered" -msgstr "" +msgstr "Yetkazib berilgan miqdor" #. Label of the amount_difference (Currency) field in DocType 'Stock #. Reconciliation Item' #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json msgid "Amount Difference" -msgstr "" +msgstr "Miqdor farqi" #. Label of the amount_difference_with_purchase_invoice (Currency) field in #. DocType 'Purchase Receipt Item' #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Amount Difference with Purchase Invoice" -msgstr "" +msgstr "Xarid fakturasi bilan miqdor farqi" #. Label of the amount_eligible_for_commission (Currency) field in DocType 'POS #. Invoice' @@ -4830,68 +4875,68 @@ msgstr "" #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json msgid "Amount Eligible for Commission" -msgstr "" +msgstr "Komissiya uchun maqbul miqdor" #. Label of the amount_in_figure (Column Break) field in DocType 'Cheque Print #. Template' #: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json msgid "Amount In Figure" -msgstr "" +msgstr "Rasmdagi miqdor" #. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank #. Statement Import Log' #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json msgid "Amount column has \"CR\"/\"DR\" values" -msgstr "" +msgstr "Miqdor ustunida \"CR\"/\"DR\" qiymatlari mavjud" #. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank #. Statement Import Log' #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json msgid "Amount column has positive/negative values" -msgstr "" +msgstr "Miqdor ustunida musbat/manfiy qiymatlar mavjud" #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:896 msgid "Amount does not match the selected transaction" -msgstr "" +msgstr "Miqdor tanlangan tranzaksiyaga mos kelmayapti" #. Label of the amount_in_account_currency (Currency) field in DocType 'Payment #. Ledger Entry' #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/report/payment_ledger/payment_ledger.py:212 msgid "Amount in Account Currency" -msgstr "" +msgstr "Hisob valyutasidagi miqdor" #. Description of the 'Outstanding Amount' (Currency) field in DocType 'Payment #. Request' #: erpnext/accounts/doctype/payment_request/payment_request.json msgid "Amount in party's bank account currency" -msgstr "" +msgstr "Tomonning bank hisobvarag'i valyutasidagi miqdor" #. Description of the 'Amount' (Currency) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json msgid "Amount in transaction currency" -msgstr "" +msgstr "Tranzaksiya valyutasidagi summa" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:74 msgid "Amount in {0}" -msgstr "" +msgstr "{0} dagi miqdor" #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:896 msgid "Amount matches the selected transaction" -msgstr "" +msgstr "Summa tanlangan tranzaksiyaga mos keladi" #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:191 #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:220 msgid "Amount to Bill" -msgstr "" +msgstr "Hisob-faktura summasi" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1255 msgid "Amount {0} {1} adjusted against {2} {3}" -msgstr "" +msgstr "{0} {1} miqdori {2} {3} ga nisbatan tuzatilgan" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1266 msgid "Amount {0} {1} as adjustment to {2}" -msgstr "" +msgstr "{0} {1} miqdori {2} ga o'zgartirish sifatida" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1230 msgid "Amount {0} {1} transferred from {2} to {3}" @@ -4899,97 +4944,97 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1236 msgid "Amount {0} {1} {2} {3}" -msgstr "" +msgstr "Miqdor {0} {1} {2} {3}" #. Label of the amounts_section (Section Break) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json msgid "Amounts" -msgstr "" +msgstr "Miqdorlar" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Ampere" -msgstr "" +msgstr "Amper" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Ampere-Hour" -msgstr "" +msgstr "Amper-soat" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Ampere-Minute" -msgstr "" +msgstr "Amper-Minut" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Ampere-Second" -msgstr "" +msgstr "Amper-soniya" #: erpnext/controllers/trends.py:288 erpnext/controllers/trends.py:300 #: erpnext/controllers/trends.py:309 msgid "Amt" -msgstr "" +msgstr "Miqdori" #. Description of a DocType #: erpnext/setup/doctype/item_group/item_group.json msgid "An Item Group is a way to classify items based on types." -msgstr "" +msgstr "Elementlar guruhi - bu elementlarni turlarga qarab tasniflash usuli." #. Description of the 'Notify by email on creation of automatic Material #. Request' (Check) field in DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." -msgstr "" +msgstr "Avtomatik Materiallar So'rovi yaratilganda, \"Xarid menejeri\" roli bilan foydalanuvchiga xabar berish uchun elektron pochta xabari yuboriladi." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 msgid "An error has been appeared while reposting item valuation via {0}" -msgstr "" +msgstr "{0} orqali element bahosini qayta joylashtirishda xatolik yuz berdi" #: erpnext/public/js/controllers/buying.js:378 #: erpnext/public/js/utils/sales_common.js:489 msgid "An error occurred during the update process" -msgstr "" +msgstr "Yangilash jarayonida xatolik yuz berdi" #: erpnext/stock/reorder_item.py:368 msgid "An error occurred for certain Items while creating Material Requests based on Re-order level. Please rectify these issues :" -msgstr "" +msgstr "Qayta buyurtma berish darajasiga asoslangan materiallar so'rovlarini yaratishda ayrim elementlar uchun xatolik yuz berdi. Iltimos, ushbu muammolarni hal qiling:" #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:124 msgid "Analysis Chart" -msgstr "" +msgstr "Tahlil jadvali" #: erpnext/setup/setup_wizard/data/designation.txt:4 msgid "Analyst" -msgstr "" +msgstr "Tahlilchi" #. Label of the analytics_section (Section Break) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Analytical Accounting" -msgstr "" +msgstr "Analitik buxgalteriya hisobi" #: erpnext/public/js/utils.js:184 msgid "Annual Billing: {0}" -msgstr "" +msgstr "Yillik hisob-kitob: {0}" #: erpnext/controllers/budget_controller.py:453 msgid "Annual Budget for Account {0} against {1} {2} is {3}. It will be collectively ({4}) exceeded by {5}" -msgstr "" +msgstr "{0} hisobining yillik byudjeti {1} {2} ga nisbatan {3}ni tashkil qiladi. U umumiy hisobda ({4}) {5} ga oshirib yuboriladi." #: erpnext/controllers/budget_controller.py:318 msgid "Annual Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}" -msgstr "" +msgstr "{0} hisobining yillik byudjeti {1}ga nisbatan: {2} {3}ga teng. U {4} ga oshib ketadi." #. Label of the expense_year_to_date (Check) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid "Annual Expenses" -msgstr "" +msgstr "Yillik xarajatlar" #. Label of the income_year_to_date (Check) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid "Annual Income" -msgstr "" +msgstr "Yillik daromad" #. Label of the annual_revenue (Currency) field in DocType 'Lead' #. Label of the annual_revenue (Currency) field in DocType 'Opportunity' @@ -4998,41 +5043,41 @@ msgstr "" #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/doctype/prospect/prospect.json msgid "Annual Revenue" -msgstr "" +msgstr "Yillik daromad" #: erpnext/accounts/doctype/budget/budget.py:145 msgid "Another Budget record '{0}' already exists against {1} '{2}' and account '{3}' with overlapping fiscal years." -msgstr "" +msgstr "Moliyaviy yillar bir-birining ustiga chiqqan holda {1} '{2}' va '{3}' hisobiga nisbatan yana bir '{0}' byudjet yozuvi allaqachon mavjud." #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:107 msgid "Another Cost Center Allocation record {0} applicable from {1}, hence this allocation will be applicable upto {2}" -msgstr "" +msgstr "Boshqa Xarajatlar Markazi Taqsimot yozuvi {0} {1}dan boshlab amal qiladi, shuning uchun bu taqsimot {2} gacha amal qiladi." #: erpnext/accounts/doctype/payment_request/payment_request.py:1044 msgid "Another Payment Request is already processed" -msgstr "" +msgstr "Boshqa to'lov so'rovi allaqachon ko'rib chiqilgan" #: erpnext/setup/doctype/sales_person/sales_person.py:123 msgid "Another Sales Person {0} exists with the same Employee id" -msgstr "" +msgstr "Xuddi shu xodim identifikatoriga ega bo'lgan boshqa savdo xodimi {0} mavjud" #. Option for the 'Transaction Type' (Select) field in DocType 'Bank #. Transaction Rule' #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json msgid "Any" -msgstr "" +msgstr "Har qanday" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:49 msgid "Any debit transaction with the keyword 'Bank Fee'." -msgstr "" +msgstr "\"Bank komissiyasi\" kalit so'zi bilan har qanday debet operatsiyasi." #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:37 msgid "Any one of following filters required: warehouse, Item Code, Item Group" -msgstr "" +msgstr "Quyidagi filtrlardan istalgan biri talab qilinadi: ombor, mahsulot kodi, mahsulot guruhi" #: erpnext/setup/setup_wizard/data/industry_type.txt:6 msgid "Apparel & Accessories" -msgstr "" +msgstr "Kiyim-kechak va aksessuarlar" #. Label of the applicable_charges (Currency) field in DocType 'Landed Cost #. Item' @@ -5041,7 +5086,7 @@ msgstr "" #: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json msgid "Applicable Charges" -msgstr "" +msgstr "Amaldagi to'lovlar" #. Label of the dimensions (Table) field in DocType 'Accounting Dimension #. Filter' From 1a66fe99072744c321298054ce5fd8304e621c9b Mon Sep 17 00:00:00 2001 From: MochaMind Date: Mon, 29 Jun 2026 04:06:35 +0530 Subject: [PATCH 071/161] fix: sync translations from crowdin (#56595) * fix: French translations * fix: Danish translations * fix: Persian translations * fix: Uzbek translations * fix: Spanish translations * fix: Arabic translations * fix: Bulgarian translations * fix: Czech translations * fix: German translations * fix: Hungarian translations * fix: Italian translations * fix: Korean translations * fix: Dutch translations * fix: Polish translations * fix: Portuguese translations * fix: Russian translations * fix: Slovenian translations * fix: Serbian (Cyrillic) translations * fix: Swedish translations * fix: Turkish translations * fix: Chinese Simplified translations * fix: Vietnamese translations * fix: Portuguese, Brazilian translations * fix: Indonesian translations * fix: Thai translations * fix: Croatian translations * fix: Hindi translations * fix: Burmese translations * fix: Bosnian translations * fix: Norwegian Bokmal translations * fix: Serbian (Latin) translations * fix: Esperanto translations --- erpnext/locale/ar.po | 3272 +++++++++++++++++++------------------- erpnext/locale/bg.po | 2978 ++++++++++++++++++----------------- erpnext/locale/bs.po | 3308 ++++++++++++++++++++------------------- erpnext/locale/cs.po | 2996 +++++++++++++++++------------------ erpnext/locale/da.po | 2992 +++++++++++++++++------------------ erpnext/locale/de.po | 3291 +++++++++++++++++++------------------- erpnext/locale/eo.po | 3294 +++++++++++++++++++------------------- erpnext/locale/es.po | 3238 +++++++++++++++++++------------------- erpnext/locale/fa.po | 3240 +++++++++++++++++++------------------- erpnext/locale/fr.po | 3114 ++++++++++++++++++------------------ erpnext/locale/hi.po | 3008 +++++++++++++++++------------------ erpnext/locale/hr.po | 3308 ++++++++++++++++++++------------------- erpnext/locale/hu.po | 2996 +++++++++++++++++------------------ erpnext/locale/id.po | 3108 ++++++++++++++++++------------------ erpnext/locale/it.po | 2994 +++++++++++++++++------------------ erpnext/locale/ko.po | 3052 ++++++++++++++++++------------------ erpnext/locale/my.po | 2984 +++++++++++++++++------------------ erpnext/locale/nb.po | 3008 +++++++++++++++++------------------ erpnext/locale/nl.po | 3293 +++++++++++++++++++------------------- erpnext/locale/pl.po | 3018 +++++++++++++++++------------------ erpnext/locale/pt.po | 2996 +++++++++++++++++------------------ erpnext/locale/pt_BR.po | 3072 ++++++++++++++++++------------------ erpnext/locale/ru.po | 3293 +++++++++++++++++++------------------- erpnext/locale/sl.po | 3008 +++++++++++++++++------------------ erpnext/locale/sr.po | 3293 +++++++++++++++++++------------------- erpnext/locale/sr_CS.po | 3293 +++++++++++++++++++------------------- erpnext/locale/sv.po | 3308 ++++++++++++++++++++------------------- erpnext/locale/th.po | 3293 +++++++++++++++++++------------------- erpnext/locale/tr.po | 3246 +++++++++++++++++++------------------- erpnext/locale/uz.po | 3003 +++++++++++++++++------------------ erpnext/locale/vi.po | 3293 +++++++++++++++++++------------------- erpnext/locale/zh.po | 3270 +++++++++++++++++++------------------- 32 files changed, 50719 insertions(+), 50141 deletions(-) diff --git a/erpnext/locale/ar.po b/erpnext/locale/ar.po index d0c68550f22..12711f1a5e2 100644 --- a/erpnext/locale/ar.po +++ b/erpnext/locale/ar.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-23 19:26\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: ar_SA\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "\"اصل ثابت\" لا يمكن أن يكون غير محدد، حيث msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# في المخزن" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'على أساس' و 'المجموعة حسب' لا يمكن أن يكونا نفس الشيء" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "\"من تاريخ \" يجب أن يكون بعد \" إلى تاريخ \"" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "\"لهُ رقم تسلسل\" لا يمكن ان يكون \"نعم\" لبند غير قابل للتخزين" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'افتتاحي'" @@ -326,13 +317,13 @@ msgstr "'افتتاحي'" msgid "'To Date' is required" msgstr "' إلى تاريخ ' مطلوب" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr ""الأوراق المالية التحديث" لا يمكن التحقق من أنه لم يتم تسليم المواد عن طريق {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "أكثر من 90" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -781,16 +772,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "" +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -951,9 +942,9 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "مجموعة الزبائن موجودة بنفس الاسم أرجو تغير اسم العميل أو اعادة تسمية مجموعة الزبائن\\n
                    \\nA Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -963,8 +954,8 @@ msgstr "يمكن إضافة قائمة الإجازات لحساب هذه الأ msgid "A Lead requires either a person's name or an organization's name" msgstr "يتطلب العميل المتوقع اسم شخص أو اسم مؤسسة" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -981,7 +972,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1014,7 +1005,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "حدث تعارض في سلسلة التسمية أثناء إنشاء الأرقام التسلسلية. يرجى تغيير سلسلة التسمية للعنصر {0}." @@ -1190,7 +1181,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "كمية مقبولة" @@ -1221,12 +1212,16 @@ msgstr "مفتاح الوصول" msgid "Access Key is required for Service Provider: {0}" msgstr "مفتاح الوصول مطلوب لموفر الخدمة: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "وفقًا لـ CEFACT/ICG/2010/IC013 أو CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "وفقًا لقائمة المواد {0}، فإن العنصر '{1}' مفقود في إدخال المخزون." @@ -1479,7 +1474,7 @@ msgstr "الحساب إلزامي للحصول على إدخالات الدفع" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "تعذر العثور على الحساب" @@ -1609,11 +1604,11 @@ msgstr "الحساب: {0} عبارة "Capital work" قيد ال msgid "Account: {0} can only be updated via Stock Transactions" msgstr "الحساب: {0} لا يمكن تحديثه إلا من خلال معاملات المخزون" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "الحساب: {0} غير مسموح به بموجب إدخال الدفع" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "الحساب: {0} مع العملة: {1} لا يمكن اختياره" @@ -1892,8 +1887,8 @@ msgstr "فلتر الأبعاد المحاسبية" msgid "Accounting Entries" msgstr "القيود المحاسبة" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "المدخلات الحسابية للأصول" @@ -1918,8 +1913,8 @@ msgstr "القيد المحاسبي للخدمة" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1967,7 +1962,11 @@ msgstr "" msgid "Accounting Period" msgstr "فترة المحاسبة" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "فترة المحاسبة تتداخل مع {0}" @@ -2165,8 +2164,8 @@ msgstr "حساب الاستهلاك المتراكم" msgid "Accumulated Depreciation Amount" msgstr "قيمة الاستهلاك المتراكمة" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "الاستهلاك المتراكم كما في" @@ -2394,7 +2393,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "كمية الدفعة الفعلية" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "التكلفة الفعلية" @@ -2404,7 +2403,7 @@ msgstr "التكلفة الفعلية" msgid "Actual Date" msgstr "التاريخ الفعلي" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2554,8 +2553,8 @@ msgstr "الوقت الفعلي (بالساعات)" msgid "Actual qty in stock" msgstr "الكمية الفعلية في المخزون" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "نوع الضريبة الفعلي لا يمكن تضمينه في معدل الصنف في الصف {0}" @@ -2720,10 +2719,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2822,13 +2817,13 @@ msgstr "أضيف من قبل" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "تمت إضافة دور {1} إلى المستخدم {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -2970,7 +2965,7 @@ msgstr "مبلغ الخصم الإضافي" msgid "Additional Discount Amount (Company Currency)" msgstr "مقدار الخصم الاضافي (بعملة الشركة)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3089,11 +3084,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3358,7 +3349,7 @@ msgstr "" msgid "Advance amount" msgstr "المبلغ مقدما" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "قيمة الدفعة المقدمة لا يمكن أن تكون أكبر من {0} {1}" @@ -3427,7 +3418,7 @@ msgstr "مقابل" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "مقابل الحساب" @@ -3547,7 +3538,7 @@ msgstr "مقابل فاتورة المورد {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "مقابل إيصال" @@ -3571,7 +3562,7 @@ msgstr "مقابل القسيمة رَقْم" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "مقابل إيصال نوع" @@ -3685,6 +3676,13 @@ msgstr "" msgid "Algorithm" msgstr "الخوارزمية" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3861,7 +3859,7 @@ msgstr "" msgid "All items are already requested" msgstr "جميع العناصر مطلوبة مسبقاً" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "تم بالفعل تحرير / إرجاع جميع العناصر" @@ -3873,7 +3871,7 @@ msgstr "تم استلام جميع العناصر مسبقاً" msgid "All items have already been transferred for this Work Order." msgstr "جميع الإصناف تم نقلها لأمر العمل" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3892,16 +3890,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "تم إرجاع جميع العناصر مسبقاً." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "تم بالفعل إصدار فاتورة / إرجاع جميع هذه العناصر" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -3924,7 +3922,7 @@ msgstr "تخصيص السلف تلقائيا (الداخل أولا الخارج msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "تخصيص مبلغ الدفع" @@ -3934,7 +3932,7 @@ msgstr "تخصيص مبلغ الدفع" msgid "Allocate Payment Based On Payment Terms" msgstr "تخصيص الدفع على أساس شروط الدفع" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3964,7 +3962,7 @@ msgstr "تخصيص" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4047,8 +4045,8 @@ msgid "Allow Alternative Item" msgstr "السماح لصنف بديل" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "يجب تحديد خيار السماح بالعنصر البديل في العنصر {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4155,7 +4153,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "السماح بميزة إعادة التسمية" @@ -4436,12 +4434,14 @@ msgstr "الأصناف المسموح بها" msgid "Allowed To Transact With" msgstr "سمح للاعتماد مع" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4476,10 +4476,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4487,10 +4487,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "يوجد سجل للصنف {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "تم تعيين الإعداد الافتراضي في الملف الشخصي لنقطة البيع {0} للمستخدم {1}، يرجى تعطيل الإعداد الافتراضي" @@ -4506,12 +4502,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "صنف بديل" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4716,7 +4712,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4942,12 +4938,12 @@ msgstr "مجموعة العناصر هي طريقة لتصنيف العناصر msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "حدث خطأ أثناء إعادة نشر تقييم العنصر عبر {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "حدث خطأ أثناء عملية التحديث" @@ -5161,7 +5157,7 @@ msgstr "رمز القسيمة المطبق" msgid "Applied on each reading." msgstr "يتم تطبيقها على كل قراءة." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "تم تطبيق قواعد التخزين." @@ -5338,10 +5334,6 @@ msgstr "حجز موعد الشقوق" msgid "Appointment Confirmation" msgstr "تأكيد الموعد" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "تم إنشاء الموعد بنجاح" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5367,6 +5359,10 @@ msgstr "تم تعطيل جدولة المواعيد لهذا الموقع" msgid "Appointment With" msgstr "موعد مع" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5408,6 +5404,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "هل أنت متأكد أنك تريد مسح كافة بيانات العرض التوضيحي؟" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5490,18 +5495,18 @@ msgstr "أثناء تمكين الحقل {0} ، يجب أن تكون قيمة ا msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "بما أن هناك معاملات مقدمة بالفعل مقابل العنصر {0}، فلا يمكنك تغيير قيمة {1}." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "نظراً لوجود مخزون محجوز، لا يمكنك تعطيل {0}." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "نظرًا لوجود عناصر تجميع فرعية كافية، فإن أمر العمل غير مطلوب للمستودع {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "نظرًا لوجود مواد خام كافية ، فإن طلب المواد ليس مطلوبًا للمستودع {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5540,7 +5545,7 @@ msgstr "عناصر التجميع" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5612,7 +5617,7 @@ msgstr "بند رأس مال الأصول" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5778,7 +5783,7 @@ msgstr "بند حركة الأصول" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5910,7 +5915,7 @@ msgstr "تحليلات قيمة الأصول" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "لا يمكن إلغاء الأصل، لانه بالفعل {0}" @@ -5926,7 +5931,7 @@ msgstr "تم رسملة الأصل بعد تقديم رسملة الأصل {0}" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "الأصل الذي تم إنشاؤه بعد فصله عن الأصل {0}" @@ -5979,7 +5984,7 @@ msgstr "تم تقديم الأصل" msgid "Asset transferred to Location {0}" msgstr "تم نقل الأصل إلى الموقع {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "تم تحديث الأصل بعد تقسيمه إلى الأصل {0}" @@ -6057,7 +6062,7 @@ msgstr "تم تعديل قيمة الأصل بعد تقديم طلب تعديل #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6078,7 +6083,7 @@ msgstr "لم يتم إنشاء الأصول لـ {item_code}. سيكون علي msgid "Assets {assets_link} created for {item_code}" msgstr "الأصول {assets_link} التي تم إنشاؤها لـ {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "إسناد الوظيفة إلى الموظف" @@ -6088,6 +6093,11 @@ msgstr "إسناد الوظيفة إلى الموظف" msgid "Assign to Name" msgstr "تعيين للاسم" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6106,19 +6116,23 @@ msgstr "في الصف #{0}: الكمية المختارة {1} للصنف {2} أ msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "في الصف #{0}: الكمية المختارة {1} للصنف {2} أكبر من المخزون المتاح {3} في المستودع {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "في الصف {0}: في حزمة البيانات التسلسلية والدفعية {1} ، يجب أن تكون حالة المستند 1 وليس 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "يشترط وجود حساب واحد على الأقل يتضمن أرباحًا أو خسائر في صرف العملات الأجنبية" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "يجب اختيار أصل واحد على الأقل." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "يجب اختيار فاتورة واحدة على الأقل." @@ -6139,6 +6153,10 @@ msgstr "يجب اختيار واحدة على الأقل من الوحدات ا msgid "At least one of the Selling or Buying must be selected" msgstr "يجب اختيار واحد على الأقل من خياري البيع أو الشراء" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6159,7 +6177,7 @@ msgstr "في الصف # {0}: لا يمكن أن يكون معرف التسلسل msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "في الصف {0}: رقم الدفعة إلزامي للعنصر {1}" @@ -6167,26 +6185,22 @@ msgstr "في الصف {0}: رقم الدفعة إلزامي للعنصر {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "في الصف {0}: لا يمكن تعيين رقم الصف الأصل للعنصر {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "في الصف {0}: الكمية إلزامية للدفعة {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "في الصف {0}: الرقم التسلسلي إلزامي للعنصر {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "في الصف {0}: تم إنشاء حزمة الرقم التسلسلي وحزمة الدفعة {1} مسبقًا. يُرجى حذف القيم من حقلي الرقم التسلسلي أو رقم الدفعة." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "في الصف {0}: قم بتعيين رقم الصف الأصل للعنصر {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "يجب أن يوفر العميل مادة خام واحدة على الأقل للمنتج النهائي {0} ." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6398,7 +6412,7 @@ msgstr "تم تعطيل خاصية التسوية التلقائية للمدف msgid "Auto Repeat Detail" msgstr "تكرار تلقائي للتفاصيل" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "خطأ في إعدادات الضريبة التلقائية" @@ -6459,7 +6473,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "تكرار تلقائي للمستندات المحدثة" @@ -6584,7 +6598,7 @@ msgstr "متاح للاستخدام تاريخ" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6680,7 +6694,7 @@ msgstr "مطلوب تاريخ متاح للاستخدام" msgid "Available {0}" msgstr "متاح {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "يجب أن يكون التاريخ متاحًا بعد تاريخ الشراء" @@ -6798,7 +6812,7 @@ msgstr "الكمية في الصندوق" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6817,8 +6831,8 @@ msgid "BOM 1" msgstr "BOM 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "يجب ألا يكون BOM 1 {0} و BOM 2 {1} متطابقين" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6832,7 +6846,7 @@ msgstr "BOM 2" msgid "BOM Comparison Tool" msgstr "أداة مقارنة BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6963,7 +6977,7 @@ msgstr "عملية قائمة المواد" msgid "BOM Operations Time" msgstr "وقت عمليات BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -6984,7 +6998,7 @@ msgstr "BOM البحث" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7036,10 +7050,6 @@ msgstr "سجل أداة تحديث قائمة المواد مع الاحتفاظ msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "تحديث قائمة المواد قيد الانتظار وقد يستغرق بضع دقائق. تحقق من {0} لمعرفة التقدم." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7078,15 +7088,19 @@ msgstr "تكرار BOM: {0} لا يمكن أن يكون تابعًا لـ {1}" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "تكرار BOM: لا يمكن أن يكون {1} أبًا أو ابنًا لـ {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "قائمة المواد {0} لا تنتمي إلى الصنف {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "قائمة مكونات المواد {0} يجب أن تكون نشطة\\n
                    \\nBOM {0} must be active" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "قائمة مكونات المواد {0} يجب أن تكون مسجلة\\n
                    \\nBOM {0} must be submitted" @@ -7167,7 +7181,7 @@ msgstr "الموازنة" msgid "Balance (Dr - Cr)" msgstr "الرصيد (مدين - دائن)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "الرصيد ({0})" @@ -7237,6 +7251,10 @@ msgstr "الميزانية العمومية - الرصيد الختامي" msgid "Balance Sheet Summary" msgstr "ملخص الميزانية العمومية" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "كمية المخزون المتبقي" @@ -7297,7 +7315,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7397,8 +7415,8 @@ msgid "Bank Account Type" msgstr "نوع الحساب المصرفي" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "الحساب المصرفي {} في المعاملة المصرفية {} لا يتطابق مع الحساب المصرفي {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7642,7 +7660,7 @@ msgstr "تم تحديث المعاملة المصرفية {0}" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "لا يمكن تسمية الحساب المصرفي باسم {0}" @@ -7654,7 +7672,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "الحساب المصرفي {0} موجود بالفعل ولا يمكن إنشاؤه مرة أخرى" @@ -7666,7 +7684,7 @@ msgstr "الحسابات البنكية المضافة" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "خطأ في إنشاء معاملة البنك" @@ -7942,8 +7960,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7974,15 +7992,15 @@ msgstr "" msgid "Batch No" msgstr "رقم دفعة" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "رقم الدفعة إلزامي" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "رقم الدفعة {0} غير موجود" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "رقم الدفعة {0} مرتبط بالعنصر {1} الذي يحمل رقمًا تسلسليًا. يرجى مسح الرقم التسلسلي بدلاً من ذلك." @@ -7990,6 +8008,10 @@ msgstr "رقم الدفعة {0} مرتبط بالعنصر {1} الذي يحمل msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "رقم الدفعة {0} غير موجود في الدفعة الأصلية {1} {2}، لذا لا يمكنك إرجاعه مقابل الدفعة {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8055,9 +8077,9 @@ msgstr "دفعة UOM" msgid "Batch and Serial No" msgstr "رقم الدفعة والرقم التسلسلي" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "لم يتم إنشاء دفعة للعنصر {} لأنه لا يحتوي على سلسلة دفعات." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8169,7 +8191,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8644,8 +8666,8 @@ msgid "Booked Fixed Asset" msgstr "حجز الأصول الثابتة" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "تم إغلاق الكتب حتى نهاية الفترة في {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8872,8 +8894,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "لايمكن أسناد الميزانية للمجموعة Account {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "لا يمكن تعيين الميزانية مقابل {0}، حيث إنها ليست حسابا للدخل أو للمصروفات" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8890,7 +8912,7 @@ msgstr "وقت التخزين المؤقت" msgid "Buffered Cursor" msgstr "مؤشر مُخزّن مؤقتًا" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "بناء الكل؟" @@ -8898,7 +8920,7 @@ msgstr "بناء الكل؟" msgid "Build Tree" msgstr "بناء الشجرة" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "الكمية القابلة للبناء" @@ -9225,6 +9247,10 @@ msgstr "حساب رصيد الحساب المصرفي" msgid "Calculated Discount Mismatch" msgstr "عدم تطابق الخصم المحسوب" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9396,7 +9422,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "يمكن الموافقة عليها بواسطة {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "لا يمكن إغلاق أمر العمل. لأن {0} بطاقات العمل في حالة \"قيد التنفيذ\"." @@ -9425,21 +9451,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "لا يمكن الفلتره علي اساس (رقم الأيصال)، إذا تم وضعه في مجموعة على اساس (ايصال)" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "يمكن إجراء دفعة فقط مقابل فاتورة غير مدفوعة {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "لا يمكن الرجوع إلى الصف إلا إذا كان نوع الرسوم هو \"مبلغ الصف السابق\" أو \"إجمالي الصف السابق\"." #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "لا يمكن تغيير طريقة التقييم، حيث توجد معاملات على بعض البنود التي لا تملك طريقة تقييم خاصة بها." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "إلغاء الزيارة {0} قبل إلغاء طلب الضمانة" @@ -9468,7 +9497,7 @@ msgstr "" msgid "Cancelation Date" msgstr "تاريخ الإلغاء" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9476,11 +9505,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "لا يمكن تعيين أمين صندوق" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "لا يمكن حساب وقت الوصول حيث أن عنوان برنامج التشغيل مفقود." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "لا يمكن تغيير إعدادات حساب المخزون" @@ -9495,10 +9519,6 @@ msgstr "لا يمكن إنشاء إرجاع" msgid "Cannot Merge" msgstr "لا يمكن الدمج" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "لا يمكن تحسين المسار لأن عنوان برنامج التشغيل مفقود." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "لا يمكن إعفاء الموظف" @@ -9523,6 +9543,11 @@ msgstr "لا يمكن تطبيق ضريبة الاستقطاع على عدة أ msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "لا يمكن أن يكون عنصر الأصول الثابتة كما يتم إنشاء دفتر الأستاذ." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "لا يمكن إلغاء جدول استهلاك الأصول {0} لأنه يحتوي على مسودة قيد يومية {1}." @@ -9532,14 +9557,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "لا يمكن إلغاء إدخال إغلاق نقطة البيع" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "لا يمكن إلغاء إدخال حجز المخزون {0}، لأنه مستخدم في أمر العمل {1}. يرجى إلغاء أمر العمل أولاً أو إلغاء حجز المخزون." +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "لا يمكن الإلغاء لأن معالجة المستندات الملغاة لا تزال قيد الانتظار." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "لا يمكن الإلغاء لان هناك تدوينات مخزون مقدمة {0} موجوده" @@ -9547,7 +9572,7 @@ msgstr "لا يمكن الإلغاء لان هناك تدوينات مخزون msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "لا يمكن إلغاء العملية. لم تكتمل إعادة تقييم السلعة عند الإرسال بعد." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "لا يمكن إلغاء إدخال مخزون التصنيع هذا لأن كمية المنتج النهائي لا يمكن أن تكون أقل من الكمية المسلمة في أمر الشراء الداخلي المرتبط بالتعاقد من الباطن." @@ -9559,7 +9584,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "لا يمكن إلغاء هذا المستند لأنه مرتبط بالأصل المُرسَل {asset_link}. يُرجى إلغاء الأصل للمتابعة." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "لا يمكن إلغاء المعاملة لأمر العمل المكتمل." @@ -9584,8 +9609,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "لا يمكن تغيير العملة الافتراضية للشركة، لأن هناك معاملات موجودة. يجب إلغاء المعاملات لتغيير العملة الافتراضية." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "لا يمكن إكمال المهمة {0} لأن المهمة التابعة لها {1} لم تكتمل / تم إلغاؤها." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9611,7 +9636,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "لا يمكن إنشاء إدخالات حجز المخزون لإيصالات الشراء ذات التواريخ المستقبلية." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "لا يمكن إنشاء قائمة اختيار لأمر البيع {0} لأنه يحتوي على مخزون محجوز. يرجى إلغاء حجز المخزون لإنشاء قائمة الاختيار." @@ -9620,6 +9645,10 @@ msgstr "لا يمكن إنشاء قائمة اختيار لأمر البيع {0} msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "لا يمكن إنشاء قيود محاسبية للحسابات المعطلة: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "لا يمكن إنشاء إرجاع للفاتورة المجمعة {0}." @@ -9637,7 +9666,7 @@ msgstr "لا يمكن ان تعلن بانها فقدت ، لأنه تم تقد msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "لا يمكن الخصم عندما تكون الفئة \"التقييم\" أو \"التقييم والإجمالي\"" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "لا يمكن حذف صف الربح/الخسارة في الصرف" @@ -9650,7 +9679,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "لا يمكن حذف عنصر تم طلبه" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9682,7 +9711,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "لا يمكن تفعيل حساب المخزون حسب الصنف، لوجود قيود دفترية للمخزون للشركة {0} مع حساب مخزون حسب المستودع. يرجى إلغاء معاملات المخزون أولاً ثم المحاولة مرة أخرى." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9707,19 +9736,23 @@ msgstr "لا يمكن العثور على عنصر بهذا الرمز الشر msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "تعذر العثور على مستودع افتراضي للصنف {0}. يرجى تحديد مستودع في بيانات الصنف الرئيسية أو في إعدادات المخزون." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "لا يمكن دمج {0} '{1}' في '{2}' حيث أن لكليهما قيود محاسبية موجودة بعملات مختلفة للشركة '{3}'." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "لا يمكن إنتاج المزيد من العناصر لـ {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "لا يمكن إنتاج أكثر من {0} عنصرًا لـ {1}" @@ -9731,12 +9764,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "لا يمكن تقليل الكمية عن الكمية المطلوبة أو المشتراة" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "لا يمكن أن يشير رقم الصف أكبر من أو يساوي رقم الصف الحالي لهذا النوع المسؤول" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "تعذر استرداد رمز الرابط للتحديث. راجع سجل الأخطاء لمزيد من المعلومات." @@ -9745,19 +9782,23 @@ msgstr "تعذر استرداد رمز الرابط للتحديث. راجع س msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "تعذر استرداد رمز الرابط. راجع سجل الأخطاء لمزيد من المعلومات." -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "لا يمكن تحديد نوع التهمة باسم ' في الصف السابق المبلغ ' أو ' في السابق صف إجمالي \" ل لصف الأول" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "لا يمكن أن تعين كخسارة لأنه تم تقديم أمر البيع.
                    Cannot set as Lost as Sales Order is made." @@ -10184,9 +10225,9 @@ msgstr "قم بتغيير نوع الحساب إلى "ذمم مدينة&quo msgid "Change this date manually to setup the next synchronization start date" msgstr "قم بتغيير هذا التاريخ يدويًا لإعداد تاريخ بدء المزامنة التالي" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "تم تغيير اسم العميل إلى '{}' لأن '{}' موجود بالفعل." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10212,8 +10253,8 @@ msgstr "سيؤثر تغيير طريقة التقييم إلى المتوسط ا msgid "Channel Partner" msgstr "شريك القناة" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "لا يمكن تضمين رسوم من النوع \"فعلي\" في الصف {0} في سعر السلعة أو المبلغ المدفوع" @@ -10407,7 +10448,7 @@ msgstr "عرض الشيك" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "تاريخ الصك / السند المرجع" @@ -10465,7 +10506,7 @@ msgstr "اسم الطفل" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "مرجع صف الطفل" @@ -10475,8 +10516,8 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "مهمة تابعة موجودة لهذه المهمة. لا يمكنك حذف هذه المهمة." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10654,7 +10695,7 @@ msgstr "إغلاق القرض" msgid "Close Replied Opportunity After Days" msgstr "تم إغلاق الفرصة بعد أيام" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "أغلق POS" @@ -10668,7 +10709,7 @@ msgstr "وثيقة مغلقة" msgid "Closed Documents" msgstr "وثائق مغلقة" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "لا يمكن إيقاف أمر العمل المغلق أو إعادة فتحه." @@ -10898,9 +10939,9 @@ msgstr "عمولة" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11337,7 +11378,7 @@ msgstr "شركات" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11407,7 +11448,7 @@ msgstr "شركات" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11447,10 +11488,6 @@ msgstr "شركة" msgid "Company Abbreviation" msgstr "اختصار الشركة" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "لا يمكن أن يحتوي اختصار الشركة على أكثر من 5 أحرف" @@ -11615,7 +11652,7 @@ msgstr "عنوان شحن الشركة" msgid "Company Tax ID" msgstr "رقم التعريف الضريبي للشركة" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "اسم الشركة وتاريخ النشر إلزامي" @@ -11659,12 +11696,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "اسم الشركة ليس مماثل\\n
                    \\nCompany name not same" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "شركة الأصل {0} ومستند الشراء {1} غير متطابقين." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11702,6 +11739,14 @@ msgstr "تمت إضافة الشركة {0} عدة مرات" msgid "Company {0} does not exist" msgstr "الشركة {0} غير موجودة" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "تمت إضافة الشركة {0} أكثر من مرة" @@ -11710,14 +11755,6 @@ msgstr "تمت إضافة الشركة {0} أكثر من مرة" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "الشركة {} غير موجودة بعد. تم إلغاء إعداد الضرائب." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "الشركة {} لا تتطابق مع ملف تعريف نقطة البيع للشركة {}" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11739,7 +11776,7 @@ msgstr "اسم المنافس" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "المنافسون" @@ -12183,8 +12220,8 @@ msgid "Consumed Qty" msgstr "تستهلك الكمية" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "لا يمكن أن تتجاوز الكمية المستهلكة الكمية المحجوزة للصنف {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12499,7 +12536,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12799,7 +12836,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12824,7 +12861,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12882,7 +12919,7 @@ msgstr "رقم مركز التكلفة" msgid "Cost Center and Budgeting" msgstr "مركز التكلفة والميزانية" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "تم تحديث مركز التكلفة لصفوف الأصناف إلى {0}" @@ -12894,7 +12931,7 @@ msgstr "يُعد مركز التكلفة جزءًا من تخصيص مركز ا msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "مركز التكلفة مطلوب في الصف {0} في جدول الضرائب للنوع {1}\\n
                    \\nCost Center is required in row {0} in Taxes table for type {1}" @@ -12916,12 +12953,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "لا يمكن استخدام مركز التكلفة {0} للتخصيص لأنه يستخدم كمركز تكلفة رئيسي في سجل تخصيص آخر." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "مركز التكلفة {} لا ينتمي إلى الشركة {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "مركز التكلفة {} هو مركز تكلفة جماعي، ولا يمكن استخدام مراكز التكلفة الجماعية في المعاملات." +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13045,14 +13082,14 @@ msgid "Costing and Billing" msgstr "التكلفة و الفواتير" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "تم تحديث حقول التكلفة والفواتير" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "تعذر حذف بيانات العرض التوضيحي" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "تعذر إنشاء العميل تلقائيًا بسبب الحقول الإلزامية التالية المفقودة:" @@ -13064,7 +13101,7 @@ msgstr "تعذر إنشاء إشعار دائن تلقائيًا ، يُرجى msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "تعذر العثور على الشركة المسؤولة عن تحديث الحسابات المصرفية" @@ -13074,8 +13111,8 @@ msgstr "لم يتم العثور على إزاحة مناسبة لمطابقة #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "لم يتم العثور على المسار لـ " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13098,7 +13135,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "تعذر حل الدالة سكور للمعايير {0}. تأكد من أن الصيغة صالحة." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "تعذر حل وظيفة النتيجة المرجحة. تأكد من أن الصيغة صالحة." @@ -13328,10 +13365,6 @@ msgstr "إنشاء عميل جديد" msgid "Create New Lead" msgstr "إنشاء عميل محتمل" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13350,7 +13383,7 @@ msgstr "" msgid "Create Opportunity" msgstr "خلق الفرص" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "إنشاء مدخل فتح نقطة البيع" @@ -13365,7 +13398,7 @@ msgstr "إنشاء إدخال الدفع" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "إنشاء إدخال دفع لفواتير نقاط البيع المجمعة." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13593,7 +13626,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "أنشئ نسخة بديلة باستخدام صورة القالب." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "قم بإنشاء حركة مخزون واردة للصنف." @@ -13627,7 +13660,7 @@ msgstr "إنشاء {0} {1}؟" msgid "Created By Migration" msgstr "تم إنشاؤه بواسطة الهجرة" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "تم إنشاء {0} بطاقات تسجيل النقاط لـ {1} بين:" @@ -13722,7 +13755,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "إنشاء {} من {} {}" @@ -13732,16 +13765,16 @@ msgstr "إنشاء {} من {} {}" msgid "Creation" msgstr "الخلق" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13775,11 +13808,11 @@ msgstr "" msgid "Credit" msgstr "دائن" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "الائتمان (المعاملة)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "الائتمان ({0})" @@ -13860,7 +13893,7 @@ msgstr "الائتمان أيام" msgid "Credit Limit" msgstr "الحد الائتماني" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "تم تجاوز الحد الائتماني" @@ -13940,16 +13973,16 @@ msgstr "دائن الى" msgid "Credit in Company Currency" msgstr "المدين في عملة الشركة" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "تم تجاوز حد الائتمان للعميل {0} ({1} / {2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "تم تحديد حد الائتمان بالفعل للشركة {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "تم بلوغ حد الائتمان للعميل {0}" @@ -14008,12 +14041,12 @@ msgstr "إعداد المعايير" msgid "Criteria Weight" msgstr "معايير الوزن" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "يجب أن يصل مجموع أوزان المعايير إلى 100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "يجب أن تكون فترة Cron بين 1 و 59 دقيقة" @@ -14136,7 +14169,7 @@ msgstr "العملة وقائمة الأسعار" msgid "Currency can not be changed after making entries using some other currency" msgstr "لا يمكن تغيير العملة بعد إجراء إدخالات باستخدام بعض العملات الأخرى" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "لا تدعم التقارير المالية المخصصة حاليًا فلاتر العملات." @@ -14201,8 +14234,8 @@ msgid "Current BOM" msgstr "قائمة المواد الحالية" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "فاتورة المواد الحالية وفاتورة المواد الجديدة لايمكن أن يكونوا نفس الفاتورة\\n
                    \\nCurrent BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14264,10 +14297,6 @@ msgstr "حزمة الأرقام التسلسلية/الدفعات الحالية msgid "Current Serial No" msgstr "الرقم التسلسلي الحالي" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15098,7 +15127,7 @@ msgstr "د - هـ" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "ملخص المشروع اليومي لـ {0}" @@ -15243,10 +15272,6 @@ msgstr "مواعيد المعالجة" msgid "Day Of Week" msgstr "يوم من الأسبوع" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15353,11 +15378,11 @@ msgstr "تاجر" msgid "Debit" msgstr "مدين" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "مدين (معاملة)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "مدين ({0})" @@ -15519,7 +15544,7 @@ msgstr "دسيليتر عشر اللتر" msgid "Decimeter" msgstr "ديسيمتر" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "أعلن فقدت" @@ -16200,8 +16225,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "حذف {0} وجميع مستندات الكود المشترك المرتبطة بها..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "جارٍ الحذف!" @@ -16295,7 +16320,7 @@ msgstr "مواد سلمت و لم يتم اصدار فواتيرها" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16353,7 +16378,7 @@ msgstr "تسليم" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16683,7 +16708,7 @@ msgstr "إهلاك" msgid "Depreciation Amount" msgstr "قيمة الإهلاك" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "قيمة الإهلاك خلال الفترة" @@ -16699,7 +16724,7 @@ msgstr "تاريخ الإهلاك" msgid "Depreciation Details" msgstr "تفاصيل الاستهلاك" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "تم إلغاء الإهلاك بسبب التخلص من الأصول" @@ -16769,7 +16794,7 @@ msgstr "لا يمكن أن يكون تاريخ ترحيل الإهلاك قبل msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "صف الإهلاك {0}: لا يمكن أن يكون تاريخ ترحيل الإهلاك قبل تاريخ الإتاحة للاستخدام" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "صف الإهلاك {0}: يجب أن تكون القيمة المتوقعة بعد العمر الافتراضي أكبر من أو تساوي {1}" @@ -16798,11 +16823,11 @@ msgstr "جدول الاهلاك الزمني" msgid "Depreciation Schedule View" msgstr "عرض جدول الإهلاك" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "لا يمكن حساب الإهلاك للأصول المستهلكة بالكامل" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "تم إلغاء الاستهلاك عن طريق عكسه" @@ -16830,7 +16855,7 @@ msgstr "مصمم" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "سبب مفصل" @@ -16933,12 +16958,12 @@ msgid "Difference Account in Items Table" msgstr "حساب الفرق في جدول البنود" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "يجب أن يكون حساب الفرق حسابًا من نوع الأصول/الخصوم (افتتاح مؤقت)، لأن قيد المخزون هذا هو قيد افتتاحي." +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "حساب الفرق يجب أن يكون حساب الأصول / حساب نوع الالتزام، حيث يعتبر تسوية المخزون بمثابة مدخل افتتاح\\n
                    \\nDifference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17000,7 +17025,7 @@ msgstr "قيمة الفرق" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "يمكن تحديد \"مستودع المصدر\" و\"مستودع الهدف\" بشكل مختلف لكل صف." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "UOM المختلفة للعناصر سوف ترتبط بقيمة الحجم الصافي الغير صحيحة . تاكد الحجم الصافي لكل عنصر هي نفس UOM\\n
                    \\nDifferent UOM for items will lead to incorrect (Total) Net Weight value. Make sure that Net Weight of each item is in the same UOM." @@ -17173,7 +17198,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "لا يمكن استخدام المستودع المعطل {0} لهذه المعاملة." @@ -17182,18 +17207,18 @@ msgstr "لا يمكن استخدام المستودع المعطل {0} لهذه msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "تم تعطيل قواعد التسعير لأن هذا {} عبارة عن تحويل داخلي" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "الأسعار تشمل الضريبة المعطلة لأن هذا {} عبارة عن تحويل داخلي" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17442,9 +17467,9 @@ msgstr "لا يمكن أن يتجاوز الخصم 100%." msgid "Discount must be less than 100" msgstr "يجب أن يكون الخصم أقل من 100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "يتم تطبيق خصم بقيمة {} وفقًا لشروط الدفع." +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17808,11 +17833,11 @@ msgstr "هل ترغب في إرسال بيانات المخزون؟" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "نوع المستند {0} غير موجود" @@ -17850,22 +17875,6 @@ msgstr "بحث المستندات" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18171,7 +18180,7 @@ msgstr "مشروع مكرر مع المهام" msgid "Duplicate Sales Invoices found" msgstr "تم العثور على فواتير مبيعات مكررة" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "خطأ في الرقم التسلسلي المكرر" @@ -18325,7 +18334,7 @@ msgstr "سعة التحرير" msgid "Edit Cart" msgstr "تعديل سلة التسوق" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "تحرير غير مسموح به" @@ -18549,8 +18558,8 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "رسائل البريد الإلكتروني في قائمة الانتظار" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18737,7 +18746,7 @@ msgstr "" msgid "Empty" msgstr "فارغة" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18746,7 +18755,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "إيمز (بيكا)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18825,6 +18834,12 @@ msgstr "" msgid "Enable European Access" msgstr "تمكين الوصول الأوروبي" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19096,7 +19111,7 @@ msgstr "" msgid "End Transit" msgstr "نهاية النقل" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19219,7 +19234,7 @@ msgstr "أدخل رقم هاتف العميل" msgid "Enter date to scrap asset" msgstr "أدخل التاريخ لإلغاء الأصل" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "أدخل تفاصيل الاستهلاك" @@ -19275,6 +19290,10 @@ msgstr "أدخل الكمية المراد تصنيعها. سيتم جلب ال msgid "Enter {0} amount." msgstr "أدخل مبلغ {0}." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "الترفيه والاستجمام" @@ -19310,7 +19329,7 @@ msgstr "نوع الدخول" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "حقوق الملكية" @@ -19334,7 +19353,7 @@ msgstr "إرج" msgid "Error Description" msgstr "وصف خاطئ" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "حدث خطأ" @@ -19366,21 +19385,21 @@ msgstr "حدث خطأ أثناء ترحيل قيود الإهلاك" msgid "Error while processing deferred accounting for {0}" msgstr "حدث خطأ أثناء معالجة المحاسبة المؤجلة لـ {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "حدث خطأ أثناء إعادة نشر تقييم السلعة" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "خطأ: هذا الأصل لديه بالفعل {0} فترة استهلاك مسجلة.\n" -"\t\t\t\t\tيجب أن يكون تاريخ \"بدء الاستهلاك\" بعد {1} فترة على الأقل من تاريخ \"جاهز للاستخدام\".\n" -"\t\t\t\t\tيرجى تصحيح التواريخ وفقًا لذلك." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "الخطأ: {0} هو حقل إلزامي" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19394,7 +19413,7 @@ msgid "Estimated Arrival" msgstr "الوصول المتوقع" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "التكلفة التقديرية" @@ -19444,7 +19463,7 @@ msgstr "مثال: ABCD. #####. إذا تم ضبط المسلسل ولم يتم msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "مثال: الرقم التسلسلي {0} محجوز في {1}." @@ -19725,7 +19744,7 @@ msgstr "تاريخ الإغلاق المتوقع" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19812,7 +19831,7 @@ msgstr "القيمة المتوقعة بعد حياة مفيدة" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "نفقة" @@ -20071,9 +20090,9 @@ msgstr "فهرنهايت" msgid "Failed Entries" msgstr "الإدخالات الفاشلة" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "فشل مصادقة مفتاح API." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20270,7 +20289,7 @@ msgid "Fetching Sales Orders..." msgstr "جلب طلبات المبيعات..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "جلب أسعار الصرف ..." @@ -20308,15 +20327,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "سيتم نسخ الحقول فقط في وقت الإنشاء." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20325,7 +20344,7 @@ msgstr "" msgid "File to Rename" msgstr "إعادة تسمية الملف" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20484,11 +20503,11 @@ msgstr "صف التقرير المالي" msgid "Financial Report Template" msgstr "نموذج تقرير مالي" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "نموذج التقرير المالي {0} معطل" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "لم يتم العثور على نموذج التقرير المالي {0}" @@ -20557,7 +20576,7 @@ msgstr "تم الانتهاء من المنتج بنجاح." #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20570,7 +20589,7 @@ msgstr "منتج نهائي جيد" msgid "Finished Good Item Code" msgstr "انتهى رمز السلعة جيدة" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "الكمية من المنتج النهائي" @@ -20678,7 +20697,7 @@ msgstr "مستودع البضائع الجاهزة" msgid "Finished Goods based Operating Cost" msgstr "تكلفة التشغيل بناءً على المنتجات النهائية" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "المنتج النهائي {0} لا يتطابق مع أمر العمل {1}" @@ -20777,10 +20796,6 @@ msgstr "النظام المالي إلزامي ، يرجى تعيين النظا msgid "Fiscal Year" msgstr "السنة المالية" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20794,11 +20809,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "يجب أن يكون تاريخ انتهاء السنة المالية بعد سنة واحدة من تاريخ بدء السنة المالية" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "السنة المالية {0} غير موجودة" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "السنة المالية {0} غير موجودة" @@ -20831,7 +20843,7 @@ msgstr "الأصول الثابتة" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20967,7 +20979,7 @@ msgstr "قدم/ثانية" msgid "For" msgstr "لأجل" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "لبنود حزمة المنتج والمستودع والرقم المتسلسل ورقم الدفعة ستأخذ بعين الاعتبار من جدول قائمة التغليف. اذا كان للمستودع ورقم الدفعة نفس البند من بنود التغليف لأي بند من حزمة المنتج. هذه القيم يمكن ادخالها في جدول البند الرئيسي. والقيم سيتم نسخها الى جدول قائمة التغليف." @@ -20992,10 +21004,6 @@ msgstr "للشركة" msgid "For Item" msgstr "للمنتج" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "لا يمكن استلام أكثر من الكمية {1} من المنتج {0} مقابل الكمية {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21062,12 +21070,12 @@ msgid "For Work Order" msgstr "لأمر العمل" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "بالنسبة إلى عنصر {0} ، يجب أن تكون الكمية رقمًا سالبًا" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "بالنسبة إلى عنصر {0} ، يجب أن تكون الكمية رقمًا موجبًا" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21099,13 +21107,13 @@ msgstr "كم تنفق = 1 نقطة الولاء" msgid "For individual supplier" msgstr "عن مورد فردي" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "بالنسبة للعنصر {0}، يجب أن يكون السعر رقمًا موجبًا. للسماح بالأسعار السالبة، فعّل {1} في {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21117,9 +21125,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "بالنسبة للعملية {0}: لا يمكن أن تكون الكمية ({1}) أكبر من الكمية المعلقة ({2})." +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21134,21 +21142,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "بالنسبة للكميات المتوقعة والمتنبأ بها، سيأخذ النظام في الاعتبار جميع المستودعات الفرعية التابعة للمستودع الرئيسي المحدد." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "يجب ألا تتجاوز الكمية {0} الكمية المسموح بها {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "للرجوع إليها" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "بالنسبة للصف {0} في {1}، يجب تضمين الصف {2} في سعر الصنف. لإضافة الصف {3} إلى سعر الصنف، يجب أيضًا إضافة الصف {3}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "بالنسبة إلى الصف {0}: أدخل الكمية المخطط لها" @@ -21167,11 +21171,15 @@ msgstr "بالنسبة لشرط "تطبيق القاعدة على أخرى& msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "لتسهيل الأمر على العملاء، يمكن استخدام هذه الرموز في نماذج الطباعة مثل الفواتير وإشعارات التسليم." -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "لكي يسري مفعول {0} الجديد، هل ترغب في مسح {1}الحالي؟" @@ -21259,6 +21267,21 @@ msgstr "مشاركات المنتدى" msgid "Forum URL" msgstr "رابط المنتدى" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "مدرسة فرابيه" @@ -21802,7 +21825,7 @@ msgstr "GL Balance" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "GL الدخول" @@ -21927,6 +21950,10 @@ msgstr "دفتر الأستاذ العام" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21980,7 +22007,7 @@ msgstr "إنشاء قيد إغلاق المخزون" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22323,7 +22350,7 @@ msgstr "البضائع في العبور" msgid "Goods Transferred" msgstr "نقل البضائع" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "تم استلام البضائع بالفعل مقابل الإدخال الخارجي {0}" @@ -22506,7 +22533,7 @@ msgstr "" msgid "Grant Commission" msgstr "لجنة المنح" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "أكبر من المبلغ" @@ -22646,7 +22673,7 @@ msgstr "التجميع حسب طلب المبيعات" msgid "Group by Voucher" msgstr "المجموعة بواسطة قسيمة" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "لا يسمح مستودع عقدة مجموعة لتحديد للمعاملات" @@ -22949,7 +22976,7 @@ msgstr "يساعدك ذلك على توزيع الميزانية/الهدف عل msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "فيما يلي سجلات الأخطاء الخاصة بإدخالات الإهلاك الفاشلة المذكورة أعلاه: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "فيما يلي الخيارات المتاحة للمتابعة:" @@ -22977,7 +23004,7 @@ msgstr "هنا، يتم ملء أيام إجازاتك الأسبوعية مسب msgid "Hertz" msgstr "هيرتز" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "أهلاً،" @@ -23013,7 +23040,7 @@ msgstr "إخفاء إذا كان الصفر" msgid "Hide Images" msgstr "إخفاء الصور" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "إخفاء الطلبات الأخيرة" @@ -23597,15 +23624,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "إذا لم يتم تحديد أي ضرائب، وتم اختيار نموذج الضرائب والرسوم، فسيقوم النظام تلقائيًا بتطبيق الضرائب من النموذج المختار." -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "وإلا يمكنك إلغاء / إرسال هذا الإدخال" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23643,7 +23670,7 @@ msgstr "إذا نتج عن قائمة المواد مواد خردة، فيجب msgid "If the account is frozen, entries are allowed to restricted users." msgstr "إذا الحساب مجمد، يسمح بالدخول إلى المستخدمين المحددين." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "إذا كان العنصر يتعامل كعنصر سعر تقييم صفري في هذا الإدخال ، فالرجاء تمكين "السماح بمعدل تقييم صفري" في جدول العناصر {0}." @@ -23744,7 +23771,7 @@ msgstr "إذا كنت ترغب في مطابقة معاملات محددة مع msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "إذا كنت لا تزال ترغب في المتابعة، يرجى تفعيل {0}." @@ -23962,14 +23989,14 @@ msgstr "استيراد الفواتير" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "استيراد صيغة MT940" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "استيراد ناجح" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24446,7 +24473,7 @@ msgstr "بما في ذلك السلع للمجموعات الفرعية" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "الإيرادات" @@ -24532,7 +24559,7 @@ msgstr "مكالمة واردة من {0}" msgid "Incompatible Setting Detected" msgstr "تم الكشف عن إعدادات غير متوافقة" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24541,7 +24568,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "كمية الرصيد غير صحيحة بعد العملية" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "تم استهلاك دفعة غير صحيحة" @@ -24549,11 +24576,11 @@ msgstr "تم استهلاك دفعة غير صحيحة" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "تسجيل دخول غير صحيح (مجموعة) إلى مستودع إعادة الطلب" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "كمية المكونات غير صحيحة" @@ -24562,7 +24589,7 @@ msgstr "كمية المكونات غير صحيحة" msgid "Incorrect Date" msgstr "تاريخ غير صحيح" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "فاتورة غير صحيحة" @@ -24579,7 +24606,7 @@ msgstr "وثيقة مرجعية غير صحيحة (بند إيصال الشرا msgid "Incorrect Serial No Valuation" msgstr "تقييم رقم تسلسلي غير صحيح" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "تم استهلاك رقم تسلسلي غير صحيح" @@ -24662,7 +24689,7 @@ msgstr "الزيادة" msgid "Increment cannot be 0" msgstr "لا يمكن أن تكون الزيادة 0\\n
                    \\nIncrement cannot be 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "الاضافة للخاصية {0} لا يمكن أن تكون 0" @@ -24859,7 +24886,7 @@ msgid "Instruction" msgstr "تعليمات" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "سعة غير كافية" @@ -24875,12 +24902,12 @@ msgstr "أذونات غير كافية" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "المالية غير كافية" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "المخزون غير كافٍ للدفعة" @@ -25010,7 +25037,7 @@ msgstr "مصروفات الفائدة" msgid "Interest Income" msgstr "دخل الفوائد" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "الفائدة و/أو رسوم المطالبة" @@ -25035,7 +25062,7 @@ msgstr "داخلي" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "يوجد بالفعل عميل داخلي للشركة {0}" @@ -25061,7 +25088,7 @@ msgstr "رقم مرجع المبيعات الداخلي مفقود" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "يوجد بالفعل مورد داخلي لشركة {0}" @@ -25082,7 +25109,7 @@ msgstr "يوجد بالفعل مورد داخلي لشركة {0}" msgid "Internal Transfer" msgstr "نقل داخلي" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "رقم مرجع التحويل الداخلي مفقود" @@ -25124,8 +25151,8 @@ msgstr "يجب أن تكون الفترة الزمنية بين 1 و 59 دقيق #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25144,7 +25171,7 @@ msgstr "مبلغ مخصص غير صالح" msgid "Invalid Amount" msgstr "مبلغ غير صالح" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "خاصية غير صالحة" @@ -25161,11 +25188,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "الباركود غير صالح. لا يوجد عنصر مرفق بهذا الرمز الشريطي." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "طلب فارغ غير صالح للعميل والعنصر المحدد" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25185,13 +25212,13 @@ msgstr "شركة غير صالحة للمعاملات بين الشركات." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "مركز تكلفة غير صالح" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25212,11 +25239,11 @@ msgstr "" msgid "Invalid Discount" msgstr "خصم غير صالح" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "مبلغ الخصم غير صالح" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "مستند غير صالح" @@ -25246,7 +25273,7 @@ msgstr "تجميع غير صالح" msgid "Invalid Item" msgstr "عنصر غير صالح" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "القيم الافتراضية للعناصر غير صالحة" @@ -25255,7 +25282,7 @@ msgstr "القيم الافتراضية للعناصر غير صالحة" msgid "Invalid Ledger Entries" msgstr "إدخالات دفتر الأستاذ غير صالحة" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "مبلغ الشراء الصافي غير صالح" @@ -25294,7 +25321,7 @@ msgstr "تنسيق طباعة غير صالح" msgid "Invalid Priority" msgstr "أولوية غير صالحة" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "تكوين فقدان العملية غير صالح" @@ -25311,7 +25338,7 @@ msgstr "كمية غير صالحة" msgid "Invalid Quantity" msgstr "كمية غير صحيحة" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "استعلام غير صالح" @@ -25323,8 +25350,8 @@ msgstr "إرجاع غير صالح" msgid "Invalid Sales Invoices" msgstr "فواتير مبيعات غير صالحة" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "جدول غير صالح" @@ -25332,7 +25359,7 @@ msgstr "جدول غير صالح" msgid "Invalid Selling Price" msgstr "سعر البيع غير صالح" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "رقم تسلسلي وحزمة دفعات غير صالحة" @@ -25349,7 +25376,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "قيمة غير صالحة" @@ -25359,14 +25386,14 @@ msgid "Invalid Warehouse" msgstr "مستودع غير صالح" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "مبلغ غير صالح في القيود المحاسبية لـ {} {} للحساب {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "تعبير شرط غير صالح" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25398,7 +25425,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "مفتاح نتيجة غير صالح. الرد:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "استعلام بحث غير صالح" @@ -26361,10 +26388,6 @@ msgstr "تاريخ الإصدار" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "قد يستغرق الأمر بضع ساعات حتى تظهر قيم المخزون الدقيقة بعد دمج العناصر." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "هناك حاجة لجلب تفاصيل البند." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26373,7 +26396,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "لا يمكن توزيع الرسوم بالتساوي عندما يكون المبلغ الإجمالي صفرًا، يرجى ضبط \"توزيع الرسوم بناءً على\" على \"الكمية\"." @@ -26422,12 +26445,12 @@ msgstr "نص مائل للمجاميع الفرعية أو الملاحظات" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26460,7 +26483,7 @@ msgstr "نص مائل للمجاميع الفرعية أو الملاحظات" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26534,7 +26557,7 @@ msgstr "صنف رقم 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26695,7 +26718,7 @@ msgstr "سلة التسوق" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26727,7 +26750,7 @@ msgstr "سلة التسوق" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26736,12 +26759,12 @@ msgstr "سلة التسوق" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26837,7 +26860,7 @@ msgstr "لا يمكن تغيير رمز السلعة للرقم التسلسلي msgid "Item Code required at Row No {0}" msgstr "رمز العنصر المطلوب في الصف رقم {0}\\n
                    \\nItem Code required at Row No {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "رمز العنصر: {0} غير متوفر ضمن المستودع {1}." @@ -27033,7 +27056,7 @@ msgstr "" msgid "Item Group Tree" msgstr "شجرة فئات البنود" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "فئة البند غير مذكورة في ماستر البند لهذا البند {0}" @@ -27187,7 +27210,7 @@ msgstr "مادة المصنع" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27218,7 +27241,7 @@ msgstr "مادة المصنع" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27226,8 +27249,8 @@ msgstr "مادة المصنع" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27284,7 +27307,7 @@ msgstr "مادة المصنع" msgid "Item Name" msgstr "اسم السلعة" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27331,8 +27354,8 @@ msgstr "إعدادات سعر المنتج" msgid "Item Price Stock" msgstr "سعر صنف المخزون" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27344,7 +27367,7 @@ msgstr "يظهر سعر الصنف عدة مرات بناءً على قائمة msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "سعر الصنف محدث ل{0} في قائمة الأسعار {1}" @@ -27389,7 +27412,7 @@ msgstr "البند إعادة ترتيب" msgid "Item Row" msgstr "صف العنصر" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "صنف الصف {0}: {1} {2} غير موجود في جدول '{1}' أعلاه" @@ -27505,7 +27528,7 @@ msgstr "الصنف لتصنيع" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "متغير الصنف" @@ -27624,7 +27647,7 @@ msgstr "تفصيل ضريبة وفقاً للصنف" msgid "Item Wise Tax Details" msgstr "تفاصيل الضرائب حسب الصنف" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "لا تتطابق تفاصيل الضرائب الخاصة بكل بند مع الضرائب والرسوم في الصفوف التالية:" @@ -27660,7 +27683,7 @@ msgstr "هذا العنصر إلزامي في جدول المواد الخام." msgid "Item is removed since no serial / batch no selected." msgstr "تمت إزالة العنصر لعدم تحديد رقم تسلسلي/رقم دفعة." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "الصنف يجب اضافته مستخدما مفتاح \"احصل علي الأصناف من المشتريات المستلمة \"" @@ -27674,7 +27697,7 @@ msgstr "اسم السلعة" msgid "Item operation" msgstr "عملية الصنف" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "تم تحديث سعر السلعة إلى الصفر حيث تم تحديد خيار \"السماح بسعر تقييم صفري\" للسلعة {0}" @@ -27689,7 +27712,7 @@ msgstr "المنتج المراد تصنيعه" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "يتم إعادة حساب معدل تقييم السلعة مع الأخذ في الاعتبار مبلغ قسيمة التكلفة النهائية." -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "جارٍ إعادة نشر تقييم الأصناف. قد يُظهر التقرير تقييمًا غير صحيح للأصناف." @@ -27705,10 +27728,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "تمت إضافة العنصر {0} عدة مرات تحت نفس العنصر الأصل {1} في الصفين {2} و {3}" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "لا يمكن إضافة العنصر {0} كجزء فرعي من نفسه" @@ -27717,6 +27736,10 @@ msgstr "لا يمكن إضافة العنصر {0} كجزء فرعي من نفس msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "لا يمكن طلب أكثر من {0} من المنتج {1} ضمن طلب شامل {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27726,6 +27749,7 @@ msgstr "العنصر {0} غير موجود\\n
                    \\nItem {0} does not exist" msgid "Item {0} does not exist in the system or has expired" msgstr "الصنف{0} غير موجود في النظام أو انتهت صلاحيته" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "العنصر {0} غير موجود\\n
                    \\nItem {0} does not exist." @@ -27758,6 +27782,10 @@ msgstr "الصنف{0} قد وصل إلى نهاية عمره في {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "تم تجاهل الصنف {0} لأنه ليس بند مخزون" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "تم حجز/تسليم المنتج {0} بالفعل بموجب أمر البيع {1}." @@ -27790,7 +27818,7 @@ msgstr "العنصر {0} ليس عنصرًا متعاقدًا عليه من ال msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "البند {0} غير نشط أو تم التوصل إلى نهاية الحياة" @@ -27822,10 +27850,6 @@ msgstr "البند {0} الكمية المطلوبة {1} لا يمكن أن تك msgid "Item {0}: {1} qty produced. " msgstr "العنصر {0}: {1} الكمية المنتجة." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "العنصر {} غير موجود." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27876,6 +27900,10 @@ msgstr "يلزم وجود رمز الصنف/الصنف للحصول على نم msgid "Item: {0} does not exist in the system" msgstr "الصنف: {0} غير موجود في النظام" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27892,7 +27920,7 @@ msgstr "كتالوج العناصر" msgid "Items Filter" msgstr "تصفية الاصناف" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "العناصر المطلوبة" @@ -27932,7 +27960,7 @@ msgstr "عناصر لطلب المواد الخام" msgid "Items not found." msgstr "لم يتم العثور على العناصر." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "تم تحديث سعر الأصناف إلى الصفر حيث تم تحديد خيار \"السماح بسعر تقييم صفري\" للأصناف التالية: {0}" @@ -27942,7 +27970,7 @@ msgstr "تم تحديث سعر الأصناف إلى الصفر حيث تم تح msgid "Items to Be Repost" msgstr "عناصر سيتم إعادة نشرها" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "العناصر المطلوب تصنيعها لسحب المواد الخام المرتبطة بها." @@ -28012,7 +28040,7 @@ msgstr "القدرة الوظيفية" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28075,20 +28103,19 @@ msgstr "سجل وقت بطاقة العمل" msgid "Job Card and Capacity Planning" msgstr "بطاقة العمل وتخطيط القدرات" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "تم إكمال بطاقة العمل {0}" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "بطاقات العمل" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "تم إيقاف المهمة مؤقتًا" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "بدأ العمل" @@ -28151,11 +28178,19 @@ msgstr "اسم العامل" msgid "Job Worker Warehouse" msgstr "مستودع عامل التوظيف" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "تم إنشاء بطاقة العمل {0}" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "تم تشغيل المهمة: {0} لمعالجة المعاملات الفاشلة" @@ -28501,8 +28536,8 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "تم آخر تحديث لإدخال دفتر الأستاذ العام {}. لا يُسمح بهذه العملية أثناء استخدام النظام. يُرجى الانتظار 5 دقائق قبل إعادة المحاولة." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28622,7 +28657,7 @@ msgstr "خط العرض" msgid "Lead" msgstr "مبادرة البيع" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "عميل محتمل -> عميل متوقع" @@ -28716,7 +28751,7 @@ msgstr "المهلة بالايام" msgid "Lead Type" msgstr "نوع الزبون المحتمل" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "تمت إضافة العميل المحتمل {0} إلى العميل المتوقع {1}." @@ -28865,7 +28900,7 @@ msgstr "أسطورة" msgid "Length (cm)" msgstr "الطول (سم)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "أقل من المبلغ" @@ -28894,7 +28929,7 @@ msgstr "المستوى (قائمة المواد)" msgid "Lft" msgstr "يسار" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "المطلوبات" @@ -28924,7 +28959,7 @@ msgstr "رقم الرخصة" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "الحدود تجاوزت" @@ -29020,8 +29055,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "فشل الاتصال بالعميل. يرجى المحاولة مرة أخرى." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "فشل الاتصال بالمورد. يرجى المحاولة مرة أخرى." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29187,7 +29222,7 @@ msgstr "تفاصيل السبب المفقود" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "أسباب ضائعة" @@ -29273,7 +29308,7 @@ msgstr "نقاط الولاء الفداء" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "سيتم احتساب نقاط الولاء من المبلغ المنفق (عبر فاتورة المبيعات)، بناءً على عامل التحصيل المذكور." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "نقاط الولاء: {0}" @@ -29511,7 +29546,7 @@ msgstr "تفاصيل جدول الصيانة" msgid "Maintenance Schedule Item" msgstr "جدول صيانة صنف" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "لم يتم إنشاء جدول الصيانة لجميع الاصناف. يرجى النقر على \"إنشاء الجدول الزمني\"" @@ -29608,7 +29643,7 @@ msgstr "زيارة صيانة" msgid "Maintenance Visit Purpose" msgstr "صيانة زيارة الغرض" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "تاريخ بدء الصيانة لا يمكن أن يكون قبل تاريخ التسليم للرقم التسلسلي {0}\\n
                    \\nMaintenance start date can not be before delivery date for Serial No {0}" @@ -29755,7 +29790,7 @@ msgstr "إلزامي للميزانية العمومية" msgid "Mandatory For Profit and Loss Account" msgstr "إلزامي لحساب الربح والخسارة" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "إلزامي مفقود" @@ -29838,8 +29873,8 @@ msgstr "لا يمكن إنشاء الإدخال اليدوي! قم بتعطيل #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30061,7 +30096,7 @@ msgstr "رسم خرائط طلبات الشراء الداخلية للتعاق msgid "Mapping Subcontracting Order ..." msgstr "تحديد ترتيب التعاقد من الباطن ..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "رسم الخرائط {0}..." @@ -30239,10 +30274,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30269,7 +30300,7 @@ msgstr "اهلاك المواد" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "اهلاك المواد للتصنيع" @@ -30380,7 +30411,7 @@ msgstr "طلب مواد" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "تاريخ طلب المادة" @@ -30430,7 +30461,7 @@ msgstr "المواد طلب التفاصيل" msgid "Material Request Item" msgstr "صنف المواد المطلوبة" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "طلب مواد لا" @@ -30452,7 +30483,7 @@ msgstr "نوع طلب المواد" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "لم يتم إنشاء طلب المواد ، ككمية للمواد الخام المتاحة بالفعل." @@ -30466,7 +30497,7 @@ msgstr "المادة يمكن طلب الحد الأقصى {0} للبند {1} م msgid "Material Request used to make this Stock Entry" msgstr "طلب المواد المستخدمة لانشاء الحركة المخزنية" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "طلب المواد {0} تم إلغاؤه أو إيقافه" @@ -30586,14 +30617,14 @@ msgstr "مواد للمورد" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "تم استلام المواد بالفعل مقابل {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "يجب نقل المواد إلى مستودع العمل الجاري لبطاقة العمل {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30761,7 +30792,7 @@ msgstr "ميغا جول" msgid "Megawatt" msgstr "ميغاواط" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "اذكر معدل التقييم في مدير السلعة." @@ -30796,7 +30827,7 @@ msgstr "دمج التقدم" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "دمج الضرائب من وثائق متعددة" @@ -31142,7 +31173,7 @@ msgstr "نفقات متنوعة" msgid "Mismatch" msgstr "عدم تطابق" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "مفتقد" @@ -31151,11 +31182,11 @@ msgstr "مفتقد" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "حساب مفقود" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31180,11 +31211,11 @@ msgstr "" msgid "Missing Filters" msgstr "فلاتر مفقودة" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "كتاب التمويل المفقود" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "مفقود، تم الانتهاء منه، جيد" @@ -31192,7 +31223,7 @@ msgstr "مفقود، تم الانتهاء منه، جيد" msgid "Missing Formula" msgstr "الصيغة المفقودة" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "العنصر المفقود" @@ -31204,7 +31235,7 @@ msgstr "" msgid "Missing Payments App" msgstr "تطبيق المدفوعات المفقودة" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31216,7 +31247,7 @@ msgstr "حزمة الأرقام التسلسلية مفقودة" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31224,12 +31255,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "قالب بريد إلكتروني مفقود للإرسال. يرجى ضبط واحد في إعدادات التسليم." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "الفلتر المطلوب مفقود: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "قيمة مفقودة" @@ -31478,17 +31509,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "تم العثور على عدة برامج ولاء للعميل {}. يرجى الاختيار يدويًا." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "إدخال بيانات فتح نقاط البيع المتعددة" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "توجد قواعد أسعار متعددة بنفس المعايير، يرجى حل النزاع عن طريق تعيين الأولوية. قاعدة السعر: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31508,7 +31539,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "يوجد سنوات مالية متعددة لنفس التاريخ {0}. الرجاء تحديد الشركة لهذه السنة المالية\\n
                    \\nMultiple fiscal years exist for the date {0}. Please set company in Fiscal Year" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "لا يمكن وضع علامة \"منتج نهائي\" على عدة عناصر" @@ -31517,10 +31548,10 @@ msgid "Music" msgstr "موسيقى" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "يجب أن يكون عدد صحيح" @@ -31605,11 +31636,7 @@ msgstr "سلسلة التسمية إلزامية" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31653,7 +31680,7 @@ msgstr "تحليل الاحتياجات" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "الكمية السلبية غير مسموح بها\\n
                    \\nnegative Quantity is not allowed" @@ -31663,12 +31690,12 @@ msgstr "الكمية السلبية غير مسموح بها\\n
                    \\nnegative Q msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "خطأ في المخزون السالب" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "معدل التقييم السلبي غير مسموح به\\n
                    \\nNegative Valuation Rate is not allowed" @@ -31746,8 +31773,8 @@ msgstr "صافي القيمة" msgid "Net Amount (Company Currency)" msgstr "صافي المبلغ ( بعملة الشركة )" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "صافي قيمة الأصول كما في" @@ -31797,7 +31824,7 @@ msgstr "صافي سعر الساعة" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "صافي الربح" @@ -31805,7 +31832,7 @@ msgstr "صافي الربح" msgid "Net Profit Ratio" msgstr "نسبة صافي الربح" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "صافي الربح (الخسارة" @@ -31819,11 +31846,11 @@ msgstr "صافي الربح (الخسارة" msgid "Net Purchase Amount" msgstr "صافي مبلغ الشراء" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "مبلغ الشراء الصافي إلزامي" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32067,7 +32094,7 @@ msgstr "" msgid "New Income" msgstr "دخل جديد" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "فاتورة جديدة" @@ -32140,6 +32167,7 @@ msgid "New Task" msgstr "مهمة جديدة" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "الإصدار الجديد" @@ -32152,9 +32180,9 @@ msgstr "اسم المخزن الجديد" msgid "New Workplace" msgstr "مكان العمل الجديد" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "حد الائتمان الجديد أقل من المبلغ المستحق الحالي للعميل. حد الائتمان يجب أن يكون على الأقل {0}\\n
                    \\nNew credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32162,6 +32190,10 @@ msgstr "حد الائتمان الجديد أقل من المبلغ المستح msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "سيتم إنشاء فواتير جديدة وفقًا للجدول الزمني حتى إذا كانت الفواتير الحالية غير مدفوعة أو تجاوز تاريخ الاستحقاق" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "يجب أن يكون تاريخ الإصدار الجديد في المستقبل" @@ -32174,7 +32206,7 @@ msgstr "تم إعداد الميزانية الجديدة المعدلة بنج msgid "New task" msgstr "مهمة جديدة" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "يتم إنشاء قواعد تسعير جديدة {0}" @@ -32238,16 +32270,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "لم يتم العثور على زبون للمعاملات بين الشركات التي تمثل الشركة {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "لم يتم العثور على عملاء بالخيارات المحددة." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "لم يتم تحديد ملاحظة التسليم للعميل {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32255,15 +32286,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "لا يوجد تأثير على دفتر الأستاذ المحاسبي" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "أي عنصر مع الباركود {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "أي عنصر مع المسلسل لا {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "لم يتم تحديد أي عناصر للنقل." @@ -32306,11 +32337,6 @@ msgstr "لا يوجد تصريح" msgid "No Purchase Orders were created" msgstr "لم يتم إنشاء أي أوامر شراء" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "لا توجد سجلات لهذه الإعدادات." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "لا يوجد اختيار" @@ -32413,6 +32439,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "لم يتم العثور على جهات اتصال مع معرفات البريد الإلكتروني." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "لا بيانات لهذه الفترة" @@ -32458,7 +32488,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "لا يوجد عنصر متاح للتحويل." @@ -32495,10 +32525,6 @@ msgstr "لا مزيد من الأطفال على اليسار" msgid "No more children on Right" msgstr "لا مزيد من الأطفال على اليمين" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "عدد عمليات التسليم" @@ -32595,7 +32621,7 @@ msgstr "لم يتم العثور على فواتير معلقة" msgid "No outstanding invoices require exchange rate revaluation" msgstr "لا تتطلب الفواتير المستحقة إعادة تقييم سعر الصرف" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "لم يتم العثور على أي {0} متميز لـ {1} {2} التي تفي بالمعايير التي حددتها." @@ -32633,15 +32659,20 @@ msgstr "" msgid "No record found" msgstr "لم يتم العثور على أي سجل" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "لم يتم العثور على أي سجلات في جدول التخصيص" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "لم يتم العثور على أي سجلات في جدول الفواتير" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "لم يتم العثور على أي سجلات في جدول المدفوعات" @@ -32670,7 +32701,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "لم يتم إنشاء أي قيود في دفتر الأستاذ الخاص بالمخزون. يرجى تحديد الكمية أو سعر التقييم للأصناف بشكل صحيح والمحاولة مرة أخرى." @@ -32707,7 +32738,7 @@ msgstr "لا توجد قيم" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32715,11 +32746,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "لم يتم العثور على {0} معاملات Inter Company." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "لا." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32771,7 +32797,7 @@ msgstr "غير الصفر" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "لا يوجد أي من البنود لديها أي تغيير في كمية أو قيمة.\\n
                    \\nNone of the items have any change in quantity or value." @@ -32782,8 +32808,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "لا" @@ -32797,8 +32823,8 @@ msgstr "لا" msgid "Not Applicable" msgstr "لا ينطبق" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "غير متوفرة" @@ -32861,10 +32887,6 @@ msgstr "لم تبدأ" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "لم نتمكن من العثور على أقدم سنة مالية للشركة المذكورة." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "لا تسمح بتعيين عنصر بديل للعنصر {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "غير مسموح بإنشاء بعد محاسبي لـ {0}" @@ -32881,10 +32903,6 @@ msgstr "غير مصرح به لأن {0} يتجاوز الحدود" msgid "Not authorized to edit frozen Account {0}" msgstr "غير مصرح له بتحرير الحساب المجمد {0}\\n
                    \\nNot authorized to edit frozen Account {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "غير متوفر في المخزون" @@ -32897,7 +32915,7 @@ msgstr "ليس في الأسهم" msgid "Not permitted to make Purchase Orders" msgstr "غير مسموح له بتقديم طلبات شراء" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33142,8 +33160,8 @@ msgid "Numeric Values" msgstr "قيم رقمية" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "لم يتم تعيين نوميرو في ملف XML" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33318,12 +33336,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "بمجرد تعيينها ، ستكون هذه الفاتورة قيد الانتظار حتى التاريخ المحدد" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "بمجرد إغلاق أمر العمل، لا يمكن استئنافه." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "لا يمكن للعميل الواحد أن يكون جزءًا إلا من برنامج ولاء واحد." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33357,7 +33375,7 @@ msgstr "لا يتم دعم سوى \"إدخالات الدفع\" التي تتم msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "لا يمكن استخدام سوى ملفات CSV و Excel لاستيراد البيانات. يرجى التحقق من تنسيق الملف الذي تحاول تحميله." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33422,7 +33440,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "لا يمكن إنشاء سوى إدخال واحد {0} مقابل أمر العمل {1}" @@ -33489,7 +33507,7 @@ msgstr "فعالية مفتوحة" msgid "Open Events" msgstr "الفعاليات المفتوحة" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "افتح طريقة عرض النموذج" @@ -33642,7 +33660,7 @@ msgstr "الرصيد الافتتاحي = بداية الفترة، الرصيد #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "تفاصيل الرصيد الافتتاحي" @@ -33672,7 +33690,7 @@ msgstr "تاريخ الفتح" msgid "Opening Entry" msgstr "فتح مدخل" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "جاري إنشاء الفاتورة الافتتاحية" @@ -33700,7 +33718,7 @@ msgstr "فتح الفاتورة البند" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33709,7 +33727,7 @@ msgstr "" msgid "Opening Invoices" msgstr "فتح الفواتير" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "ملخص الفواتير الافتتاحية" @@ -33739,20 +33757,20 @@ msgstr "تم إنشاء فواتير المبيعات الافتتاحية." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "مخزون أول المدة" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33761,7 +33779,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33804,7 +33822,7 @@ msgstr "تكلفة مكونات التشغيل" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "تكاليف التشغيل" @@ -33895,7 +33913,7 @@ msgstr "رقم صف العملية" msgid "Operation Time" msgstr "وقت العملية" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "زمن العملية يجب أن يكون أكبر من 0 للعملية {0}\\n
                    \\nOperation Time must be greater than 0 for Operation {0}" @@ -33919,8 +33937,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "العملية {0} لا تنتمي إلى أمر العمل {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "العملية {0} أطول من أي ساعات عمل متاحة في محطة العمل {1}، قسم العملية إلى عمليات متعددة" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34105,6 +34123,10 @@ msgstr "تم إنشاء الفرصة {0}" msgid "Optimize Route" msgstr "تحسين الطريق" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34121,10 +34143,6 @@ msgstr "اختياري . سيتم استخدام هذا الإعداد لفلت msgid "Optional. Used with Financial Report Template" msgstr "اختياري. يُستخدم مع نموذج التقرير المالي" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "كمية الطلب" @@ -34410,7 +34428,7 @@ msgid "Out of stock" msgstr "إنتهى من المخزن" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "إدخال بيانات فتح نقاط البيع القديمة" @@ -34464,7 +34482,7 @@ msgstr "الرصيد المستحق (عملة الشركة)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34545,11 +34563,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "بدل الإفراط في الانتقاء (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "إيصال زائد" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "تم تجاهل استلام/تسليم {0} {1} للعنصر {2} لأن لديك الدور {3} ." @@ -34566,14 +34584,14 @@ msgstr "بدل التحويل الزائد (%)" msgid "Over Withheld" msgstr "مبالغ محجوزة" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "تم تجاهل الفوترة الزائدة لـ {0} {1} للعنصر {2} لأن لديك الدور {3} ." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "تم تجاهل الفوترة الزائدة لـ {} لأن لديك دور {} ." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34622,10 +34640,6 @@ msgstr "المهام المتأخرة" msgid "Overdue and Discounted" msgstr "المتأخرة و مخفضة" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "التداخل في التسجيل بين {0} و {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "الشروط المتداخله التي تم العثور عليها بين:\\n
                    \\nOverlapping conditions found between:" @@ -34691,6 +34705,11 @@ msgstr "PAN لا" msgid "PCV" msgstr "حجم الخلايا المكدسة" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "تم إيقاف تشغيل نظام تهوية علبة المرافق" @@ -34738,7 +34757,7 @@ msgstr "نقطة البيع" msgid "POS Additional Fields" msgstr "حقول إضافية لنظام نقاط البيع" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "تم إغلاق نقطة البيع" @@ -34836,8 +34855,8 @@ msgid "POS Invoice is not submitted" msgstr "لم يتم تقديم فاتورة نقاط البيع" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "لم ينشئ المستخدم فاتورة نقاط البيع {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -34896,7 +34915,7 @@ msgstr "إدخال فتح نقطة البيع - {0} قديم. يرجى إغلا msgid "POS Opening Entry Cancellation Error" msgstr "خطأ في إلغاء إدخال فتح نقطة البيع" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "تم إلغاء إدخال فتح نقطة البيع" @@ -34917,7 +34936,7 @@ msgstr "بيانات فتح نقطة البيع مفقودة" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "لا يمكن إلغاء إدخال فتح نقطة البيع لوجود فواتير غير مجمعة." -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "تم إلغاء عملية فتح نقطة البيع. يرجى تحديث الصفحة." @@ -34940,7 +34959,7 @@ msgstr "طريقة الدفع في نقاط البيع" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "الملف الشخصي لنقطة البيع" @@ -34960,8 +34979,8 @@ msgstr "نقاط البيع الشخصية الملف الشخصي" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "ملف تعريف نقطة البيع لا يتطابق مع {}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -34972,20 +34991,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "لا يمكن تعطيل ملف تعريف نقطة البيع {0} لوجود جلسات نقطة بيع جارية." #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "يحتوي ملف تعريف نقطة البيع {} على طريقة الدفع {}. يرجى إزالتها لتعطيل هذه الطريقة." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "ملف تعريف نقطة البيع {} لا ينتمي إلى الشركة {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "ملف تعريف نقطة البيع {} غير موجود." +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "ملف تعريف نقطة البيع {} معطل." +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35014,11 +35033,11 @@ msgstr "إعدادات نقاط البيع" msgid "POS Transactions" msgstr "معاملات نقاط البيع" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "تم إغلاق نظام نقاط البيع في {0}. يرجى تحديث الصفحة." -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "تم إنشاء فاتورة نقاط البيع {0} بنجاح" @@ -35037,7 +35056,7 @@ msgstr "مشروع PSOA" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "رقم (أرقام) الحزمة قيد الاستخدام بالفعل. حاول من رقم الحزمة {0}" @@ -35662,7 +35681,7 @@ msgstr "أجزاء في المليون" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35789,7 +35808,7 @@ msgstr "عدم توافق الحزب" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35875,7 +35894,7 @@ msgstr "عنصر خاص بالحزب" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35896,7 +35915,7 @@ msgstr "نوع الطرف" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "نوع الطرف والحزب إلزامي لحساب {0}" @@ -35932,7 +35951,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36442,7 +36461,7 @@ msgstr "المراجع الدفع" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36517,7 +36536,7 @@ msgstr "جدول الدفع" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36539,7 +36558,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36639,8 +36658,8 @@ msgid "Payment Type" msgstr "نوع الدفع" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "نوع الدفع يجب أن يكون إما استلام , دفع أو مناقلة داخلية\\n
                    \\nPayment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36846,11 +36865,11 @@ msgstr "الأنشطة في انتظار لهذا اليوم" msgid "Pending processing" msgstr "في انتظار المعالجة" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37367,12 +37386,12 @@ msgstr "معرف العميل منقوشة" msgid "Plaid Environment" msgstr "بيئة منقوشة" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "فشل ربط Plaid" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "يلزم تحديث رابط Plaid" @@ -37394,7 +37413,7 @@ msgstr "سر منقوشة" msgid "Plaid Settings" msgstr "إعدادات منقوشة" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "خطأ في مزامنة المعاملات المنقوشة" @@ -37545,15 +37564,6 @@ msgstr "وحدات التصنيع والآلات" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "يرجى إعادة تخزين العناصر وتحديث قائمة الاختيار للمتابعة. للتوقف ، قم بإلغاء قائمة الاختيار." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "الرجاء تحديد شركة" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "الرجاء تحديد شركة." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37561,7 +37571,6 @@ msgstr "الرجاء تحديد عميل" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "الرجاء تحديد مورد" @@ -37569,19 +37578,19 @@ msgstr "الرجاء تحديد مورد" msgid "Please Set Priority" msgstr "يرجى تحديد الأولوية" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "يرجى تعيين مجموعة الموردين في إعدادات الشراء." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "يرجى تحديد الحساب" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "يرجى إضافة دور \"المورد\" إلى المستخدم {0}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "الرجاء إضافة طريقة الدفع وتفاصيل الرصيد الافتتاحي." @@ -37597,7 +37606,7 @@ msgstr "يرجى إضافة \"طلب عرض أسعار\" إلى الشريط ا msgid "Please add Root Account for - {0}" msgstr "يرجى إضافة حساب الجذر لـ - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "الرجاء إضافة حساب فتح مؤقت في مخطط الحسابات" @@ -37605,35 +37614,32 @@ msgstr "الرجاء إضافة حساب فتح مؤقت في مخطط الحس msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "يرجى إضافة رقم تسلسلي واحد على الأقل / رقم دفعة واحد على الأقل" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "يرجى إضافة عمود الحساب المصرفي" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "يرجى إضافة الحساب إلى مستوى الشركة الرئيسي - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "الرجاء إضافة الحساب إلى شركة على مستوى الجذر - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "يرجى إضافة الدور {1} إلى المستخدم {0}." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "يرجى تعديل الكمية أو تحرير {0} للمتابعة." @@ -37675,7 +37681,7 @@ msgstr "يرجى التحقق إما من قسم العمليات أو من قس msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "يرجى مراجعة رسالة الخطأ واتخاذ الإجراءات اللازمة لإصلاح الخطأ ثم إعادة تشغيل عملية إعادة النشر مرة أخرى." @@ -37688,11 +37694,11 @@ msgstr "يرجى التحقق من معرّف عميل Plaid والقيم الس msgid "Please check your email to confirm the appointment" msgstr "يرجى مراجعة بريدك الإلكتروني لتأكيد الموعد" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "الرجاء انقر على \"إنشاء الجدول الزمني\"" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "الرجاء النقر على \"إنشاء جدول\" لجلب الرقم التسلسلي المضاف للبند {0}" @@ -37708,15 +37714,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "يرجى الاتصال بأي من المستخدمين التاليين لتمديد حدود الائتمان لـ {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "يرجى الاتصال بأي من المستخدمين التاليين لإتمام هذه المعاملة." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "يرجى الاتصال بمسؤول النظام لتمديد حدود الائتمان لـ {0}." @@ -37724,11 +37730,11 @@ msgstr "يرجى الاتصال بمسؤول النظام لتمديد حدود msgid "Please convert the parent account in corresponding child company to a group account." msgstr "الرجاء تحويل الحساب الرئيسي في الشركة الفرعية المقابلة إلى حساب مجموعة." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "الرجاء إنشاء عميل من العميل المحتمل {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "يرجى إنشاء قسائم تكلفة الشحن مقابل الفواتير التي تم تمكين خيار \"تحديث المخزون\" فيها." @@ -37740,7 +37746,7 @@ msgstr "يرجى إنشاء بُعد محاسبي جديد إذا لزم الأ msgid "Please create purchase from internal sale or delivery document itself" msgstr "يرجى إنشاء عملية شراء من مستند البيع أو التسليم الداخلي نفسه" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "الرجاء إنشاء إيصال شراء أو فاتورة شراء للعنصر {0}" @@ -37752,11 +37758,11 @@ msgstr "يرجى حذف حزمة المنتج {0}قبل دمج {1} في {2}" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "يرجى تعطيل سير العمل مؤقتًا لإدخال دفتر اليومية {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "يرجى عدم تسجيل مصروفات أصول متعددة مقابل أصل واحد." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "يرجى عدم إنشاء أكثر من 500 عنصر في وقت واحد" @@ -37781,8 +37787,8 @@ msgid "Please enable {0} in the {1}." msgstr "يرجى تفعيل {0} في {1}." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "يرجى تفعيل {} في {} للسماح بظهور العنصر نفسه في صفوف متعددة" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37793,12 +37799,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "يرجى التأكد من أن الحساب {0} {1} هو حساب قابل للدفع. يمكنك تغيير نوع الحساب إلى قابل للدفع أو اختيار حساب آخر." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "يرجى التأكد من أن حساب {} هو حساب في الميزانية العمومية." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "يرجى التأكد من أن حساب {} هو حساب مستحق القبض." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37813,7 +37819,7 @@ msgstr "الرجاء إدخال الحساب لمبلغ التغيير\\n
                    \\ msgid "Please enter Approving Role or Approving User" msgstr "الرجاء إدخال صلاحية المخول بالتصديق أو المستخدم المخول بالتصديق" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37829,7 +37835,7 @@ msgstr "الرجاء إدخال تاريخ التسليم" msgid "Please enter Employee Id of this sales person" msgstr "الرجاء إدخال معرف الموظف الخاص بشخص المبيعات هذا" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "الرجاء إدخال حساب النفقات\\n
                    \\nPlease enter Expense Account" @@ -37838,7 +37844,7 @@ msgstr "الرجاء إدخال حساب النفقات\\n
                    \\nPlease enter Ex msgid "Please enter Item Code to get Batch Number" msgstr "الرجاء إدخال رمز العنصر للحصول على رقم الدفعة\\n
                    \\nPlease enter Item Code to get Batch Number" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "الرجاء إدخال كود البند للحصول على رقم الدفعة" @@ -37874,7 +37880,7 @@ msgstr "الرجاء إدخال تاريخ المرجع\\n
                    \\nPlease enter Re msgid "Please enter Root Type for account- {0}" msgstr "الرجاء إدخال نوع الجذر للحساب - {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38004,8 +38010,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "يرجى استيراد الحسابات مقابل الشركة الأم أو تفعيل {} في بيانات الشركة الرئيسية." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38040,11 +38046,7 @@ msgstr "يرجى ذكر قائمة المواد الحالية والجديدة msgid "Please pull items from Delivery Note" msgstr "الرجاء سحب البنود من مذكرة التسليم\\n
                    \\nPlease pull items from Delivery Note" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "يرجى تصحيح الخطأ والمحاولة مرة أخرى." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "يرجى تحديث أو إعادة ضبط ربط Plaid بالبنك {}." @@ -38073,12 +38075,12 @@ msgstr "يرجى حفظ أمر البيع قبل إضافة جدول التسل msgid "Please select Template Type to download template" msgstr "يرجى تحديد نوع القالب لتنزيل القالب" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "الرجاء اختيار (تطبيق تخفيض على)" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "الرجاء اختيار بوم ضد العنصر {0}" @@ -38094,9 +38096,9 @@ msgstr "يرجى اختيار الحساب المصرفي" msgid "Please select Category first" msgstr "الرجاء تحديد التصنيف أولا\\n
                    \\nPlease select Category first" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "يرجى تحديد نوع الرسوم أولا" @@ -38106,8 +38108,8 @@ msgstr "الرجاء اختيار شركة \\n
                    \\nPlease select Company" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "يرجى تحديد الشركة وتاريخ النشر للحصول على إدخالات" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38129,7 +38131,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "الرجاء اختيار الشركة الحالية لإنشاء دليل الحسابات" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "يرجى تحديد \"المنتج النهائي\" لعنصر الخدمة {0}" @@ -38138,6 +38140,10 @@ msgstr "يرجى تحديد \"المنتج النهائي\" لعنصر الخد msgid "Please select Item Code first" msgstr "يرجى اختيار رمز البند أولاً" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "يرجى تحديد حالة الصيانة على أنها اكتملت أو أزل تاريخ الاكتمال" @@ -38162,11 +38168,11 @@ msgstr "الرجاء تجديد تاريخ النشر قبل تحديد المس msgid "Please select Posting Date first" msgstr "الرجاء تحديد تاريخ النشر أولا\\n
                    \\nPlease select Posting Date first" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "الرجاء اختيار قائمة الأسعار\\n
                    \\nPlease select Price List" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "الرجاء اختيار الكمية ضد العنصر {0}" @@ -38195,6 +38201,7 @@ msgid "Please select a BOM" msgstr "يرجى تحديد بوم" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "الرجاء اختيار الشركة" @@ -38202,11 +38209,12 @@ msgstr "الرجاء اختيار الشركة" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "الرجاء تحديد شركة أولاً." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "يرجى تحديد العميل" @@ -38215,7 +38223,7 @@ msgstr "يرجى تحديد العميل" msgid "Please select a Delivery Note" msgstr "يرجى اختيار مذكرة التسليم" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "يرجى اختيار أمر شراء خاص بالتعاقد من الباطن." @@ -38227,7 +38235,7 @@ msgstr "الرجاء اختيار مورد" msgid "Please select a Warehouse" msgstr "الرجاء اختيار مستودع" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "يرجى اختيار أمر عمل أولاً." @@ -38243,6 +38251,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38276,22 +38285,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "يرجى تحديد وتيرة جدول التسليم" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "الرجاء تحديد صف لإنشاء إدخال إعادة نشر" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "يرجى اختيار مورد لتحصيل المدفوعات." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "يرجى اختيار أمر شراء صالح تم إعداده للتعاقد من الباطن." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "يرجى اختيار قيمة ل {0} عرض مسعر إلى {1}" @@ -38300,7 +38313,7 @@ msgstr "يرجى اختيار قيمة ل {0} عرض مسعر إلى {1}" msgid "Please select an item code before setting the warehouse." msgstr "يرجى تحديد رمز المنتج قبل تحديد المستودع." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38308,10 +38321,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "يرجى تحديد فلتر واحد على الأقل: رمز الصنف، أو رقم الدفعة، أو الرقم التسلسلي." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "يرجى تحديد صف واحد على الأقل لإصلاحه" @@ -38320,18 +38341,10 @@ msgstr "يرجى تحديد صف واحد على الأقل لإصلاحه" msgid "Please select at least one row with difference value" msgstr "يرجى تحديد صف واحد على الأقل بقيمة مختلفة" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "يرجى اختيار عنصر واحد على الأقل للمتابعة" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "يرجى تحديد عملية واحدة على الأقل لإنشاء بطاقة عمل" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "يرجى اختيارالحساب الصحيح" @@ -38369,12 +38382,12 @@ msgstr "يرجى اختيار العناصر المراد حجزها." msgid "Please select items to unreserve." msgstr "يرجى تحديد العناصر المراد إلغاء حجزها." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "يرجى تحديد صف واحد فقط لإنشاء إدخال إعادة نشر" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "يرجى تحديد الصفوف لإنشاء إدخالات إعادة النشر" @@ -38383,8 +38396,8 @@ msgid "Please select the Company" msgstr "يرجى تحديد الشركة" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "يرجى تحديد نوع البرنامج متعدد الطبقات لأكثر من قواعد مجموعة واحدة." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38407,20 +38420,16 @@ msgstr "" msgid "Please select the required filters" msgstr "يرجى تحديد الفلاتر المطلوبة" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "يرجى اختيار نوع مستند صالح." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "الرجاء اختيار يوم العطلة الاسبوعي" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "الرجاء تحديد {0} أولا\\n
                    \\nPlease select {0} first" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "يرجى تحديد 'تطبيق خصم إضافي على'" @@ -38449,8 +38458,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "يرجى تعيين Account in Warehouse {0} أو Account Inventory Account in Company {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "يرجى تعيين بُعد المحاسبة {} في {}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38479,22 +38488,20 @@ msgid "Please set Email/Phone for the contact" msgstr "يرجى تحديد البريد الإلكتروني/رقم الهاتف للتواصل" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "يرجى تحديد الرمز الضريبي للعميل '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "يرجى تحديد الرمز الضريبي للعميل '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "يرجى تحديد الرمز المالي للإدارة العامة '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "يرجى تحديد الرمز المالي للإدارة العامة '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "يرجى تعيين حساب الأصول الثابتة في فئة الأصول {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "يرجى تعيين حساب الأصول الثابتة في {} مقابل {}." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38510,9 +38517,8 @@ msgid "Please set Root Type" msgstr "يرجى تحديد نوع الجذر" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "يرجى تعيين رقم التعريف الضريبي للعميل '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "يرجى تعيين رقم التعريف الضريبي للعميل '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38531,15 +38537,15 @@ msgid "Please set a Company" msgstr "الرجاء تعيين شركة" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "يرجى تحديد مركز تكلفة للأصل أو تحديد مركز تكلفة استهلاك الأصول للشركة {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "يرجى تحديد قائمة العطلات الافتراضية للشركة {0}" @@ -38556,9 +38562,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "يرجى تحديد الطلب الفعلي أو توقعات المبيعات لإنشاء تقرير تخطيط متطلبات المواد." #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "يرجى تحديد عنوان في الشركة '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "يرجى تحديد عنوان في الشركة '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38576,25 +38581,22 @@ msgstr "يرجى ضبط صف واحد على الأقل في جدول الضرا msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "يرجى تحديد كل من رقم التعريف الضريبي والرمز المالي للشركة {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "الرجاء تحديد الحساب البنكي أو النقدي الافتراضي في نوع الدفع\\n
                    \\nPlease set default Cash or Bank account in Mode of Payment {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "الرجاء تعيين حساب نقدي أو مصرفي افتراضي في طريقة الدفع {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "الرجاء تحديد الحساب البنكي أو النقدي الافتراضي في نوع الدفع\\n
                    \\nPlease set default Cash or Bank account in Mode of Payment {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "الرجاء تعيين حساب نقدي أو مصرفي افتراضي في طريقة الدفع {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "يرجى تعيين حساب الربح/الخسارة الافتراضي في الشركة {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38625,11 +38627,11 @@ msgstr "يرجى ضبط الفلتر على أساس البند أو المخز msgid "Please set one of the following:" msgstr "يرجى تحديد أحد الخيارات التالية:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "يرجى تحديد عدد الإهلاكات المحجوزة في بداية الفترة" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "يرجى تحديد (تكرار) بعد الحفظ" @@ -38637,7 +38639,7 @@ msgstr "يرجى تحديد (تكرار) بعد الحفظ" msgid "Please set the Customer Address" msgstr "يرجى ضبط عنوان العميل" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "يرجى تعيين مركز التكلفة الافتراضي في الشركة {0}." @@ -38692,7 +38694,7 @@ msgstr "يرجى تعيين {0} في الشركة {1} لحساب مكاسب/خس msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "يرجى تعيين {0} إلى {1}، وهو نفس الحساب الذي تم استخدامه في الفاتورة الأصلية {2}." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "يرجى إعداد وتفعيل حساب مجموعة بنوع الحساب {0} للشركة {1}" @@ -38700,7 +38702,7 @@ msgstr "يرجى إعداد وتفعيل حساب مجموعة بنوع الحس msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "يرجى مشاركة هذه الرسالة الإلكترونية مع فريق الدعم الخاص بك حتى يتمكنوا من إيجاد المشكلة وحلها." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "يرجى تحديد شركة" @@ -38710,8 +38712,8 @@ msgstr "يرجى تحديد شركة" msgid "Please specify Company to proceed" msgstr "الرجاء تحديد الشركة للمضى قدما\\n
                    \\nPlease specify Company to proceed" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "يرجى تحديد هوية الصف صالحة لصف {0} في الجدول {1}" @@ -38719,11 +38721,11 @@ msgstr "يرجى تحديد هوية الصف صالحة لصف {0} في الج msgid "Please specify a {0} first." msgstr "يرجى تحديد {0} أولاً." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "يرجى تحديد خاصية واحدة على الأقل في جدول (الخاصيات)" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "يرجى تحديد الكمية أو التقييم إما قيم أو كليهما" @@ -38731,6 +38733,14 @@ msgstr "يرجى تحديد الكمية أو التقييم إما قيم أو msgid "Please specify from/to range" msgstr "يرجى التحديد من / إلى النطاق\\n
                    \\nPlease specify from/to range" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "يرجى المحاولة مرة أخرى بعد ساعة." @@ -38894,7 +38904,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38919,7 +38929,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38962,8 +38972,8 @@ msgstr "تاريخ الترحيل" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "لا يمكن أن يكون تاريخ النشر تاريخا مستقبلا\\n
                    \\nPosting Date cannot be future date" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -38971,7 +38981,7 @@ msgstr "لا يمكن أن يكون تاريخ النشر تاريخا مستق msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "سيتم تغيير تاريخ النشر إلى تاريخ اليوم لأن خيار \"تعديل تاريخ ووقت النشر\" غير مُفعّل. هل أنت متأكد من رغبتك في المتابعة؟" @@ -39164,6 +39174,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "المصاريف المدفوعة مسبقاً" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "رئيس" @@ -39253,7 +39267,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "السنة المالية السابقة ليست مغلقة" @@ -39395,7 +39409,7 @@ msgstr "قائمة الأسعار البلد" msgid "Price List Currency" msgstr "قائمة الأسعار العملات" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "قائمة أسعار العملات غير محددة" @@ -39516,7 +39530,7 @@ msgstr "السعر لا يعتمد على UOM" msgid "Price Per Unit ({0})" msgstr "سعر الوحدة ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "لم يتم تحديد سعر للمنتج." @@ -39627,7 +39641,7 @@ msgstr "يتم اختيار قاعدة التسعير أولاً بناءً عل msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "تم وضع قاعدة التسعير لتجاوز قائمة الأسعار / تحديد نسبة الخصم، بناءً على بعض المعايير." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "يتم تحديث قاعدة التسعير {0}" @@ -39835,8 +39849,8 @@ msgid "Priorities" msgstr "أولويات" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "لا يمكن أن تكون الأولوية أقل من 1." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40017,7 +40031,7 @@ msgstr "عملية الاشتراك" msgid "Process in Single Transaction" msgstr "معالجة في معاملة واحدة" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40143,7 +40157,7 @@ msgstr "حزم المنتجات" msgid "Product Bundle Balance" msgstr "حزمة المنتج الرصيد" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40168,7 +40182,7 @@ msgstr "المنتج حزمة مساعدة" msgid "Product Bundle Item" msgstr "المنتج حزمة البند" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40371,7 +40385,7 @@ msgstr "المنتجات" msgid "Profit & Loss" msgstr "الخسارة و الأرباح" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "الربح هذا العام" @@ -40400,6 +40414,10 @@ msgstr "الربح والخسارة" msgid "Profit and Loss Statement" msgstr "الأرباح والخسائر" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40408,8 +40426,8 @@ msgstr "الأرباح والخسائر" msgid "Profit and Loss Summary" msgstr "ملخص الأرباح والخسائر" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "الربح السنوي" @@ -40482,7 +40500,7 @@ msgstr "حالة المشروع" msgid "Project Summary" msgstr "ملخص المشروع" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "ملخص المشروع لـ {0}" @@ -40562,7 +40580,7 @@ msgstr "تتبع المشروع الحكيم" msgid "Project wise Stock Tracking " msgstr "مشروع تتبع حركة الأسهم الحكمة" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "البيانات الخاصة بالمشروع غير متوفرة للعرض المسعر" @@ -40613,7 +40631,7 @@ msgstr "الكمية المتوقعة" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40759,7 +40777,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "آفاق تشارك ولكن لم تتحول" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40792,9 +40810,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "حساب المصروفات المؤقتة" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "الربح / الخسارة المؤقته (دائن)" @@ -41022,8 +41040,8 @@ msgstr "اتجهات فاتورة الشراء" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "لا يمكن إجراء فاتورة الشراء مقابل أصل موجود {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "فاتورة الشراء {0} تم ترحيلها من قبل" @@ -41064,7 +41082,7 @@ msgstr "فواتير الشراء" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41088,11 +41106,11 @@ msgstr "فواتير الشراء" msgid "Purchase Order" msgstr "أمر الشراء" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "مبلغ أمر الشراء" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "مبلغ أمر الشراء (عملة الشركة)" @@ -41107,7 +41125,7 @@ msgstr "مبلغ أمر الشراء (عملة الشركة)" msgid "Purchase Order Analysis" msgstr "تحليل أوامر الشراء" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "تاريخ أمر الشراء" @@ -41156,8 +41174,8 @@ msgid "Purchase Order Required" msgstr "أمر الشراء مطلوب" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "طلب الشراء مطلوب للعنصر {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41216,8 +41234,8 @@ msgid "Purchase Orders to Receive" msgstr "أوامر الشراء لتلقي" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "أوامر الشراء {0} غير مرتبطة" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41306,8 +41324,8 @@ msgid "Purchase Receipt Required" msgstr "إيصال استلام المشتريات مطلوب" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "إيصال الشراء مطلوب للعنصر {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41326,8 +41344,8 @@ msgid "Purchase Receipt Trends " msgstr "شراء اتجاهات الإيصال " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "لا يحتوي إيصال الشراء على أي عنصر تم تمكين الاحتفاظ عينة به." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41554,7 +41572,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41573,7 +41591,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41638,7 +41656,7 @@ msgstr "الكمية بعد إتمام العملية" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41675,7 +41693,7 @@ msgstr "الكمية لكل وحدة" msgid "Qty To Manufacture" msgstr "الكمية للتصنيع" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "لا يمكن أن تكون كمية التصنيع ({0}) كسرًا في وحدة القياس {2}. للسماح بذلك، عطّل '{1}' في وحدة القياس {2}." @@ -41770,7 +41788,7 @@ msgstr "الكمية المراد استهلاكها" msgid "Qty to Bill" msgstr "الكمية للفاتورة" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "الكمية المطلوبة للبناء" @@ -41956,7 +41974,7 @@ msgstr "فحص الجودة" msgid "Quality Inspection Analysis" msgstr "تحليل فحص الجودة" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42033,7 +42051,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "فحص الجودة" @@ -42116,7 +42134,7 @@ msgstr "مراجعة جودة" msgid "Quality Review Objective" msgstr "هدف مراجعة الجودة" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42160,12 +42178,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42316,7 +42334,7 @@ msgstr "الكمية المطلوبة" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42344,11 +42362,11 @@ msgstr "الكمية يجب أن تكون أبر من 0\\n
                    \\nQuantity should msgid "Quantity to Manufacture" msgstr "كمية لتصنيع" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "لا يمكن أن تكون الكمية للتصنيع صفراً للتشغيل {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "\"الكمية لتصنيع\" يجب أن تكون أكبر من 0." @@ -42356,6 +42374,10 @@ msgstr "\"الكمية لتصنيع\" يجب أن تكون أكبر من 0." msgid "Quantity to Scan" msgstr "الكمية المراد مسحها ضوئيًا" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42381,7 +42403,7 @@ msgstr "الربع {0} {1}" msgid "Query Route String" msgstr "سلسلة مسار الاستعلام" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "يجب أن يتراوح حجم قائمة الانتظار بين 5 و 100" @@ -42621,7 +42643,7 @@ msgstr "التي أثارها (بريد إلكتروني)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42805,8 +42827,8 @@ msgid "Rate at which this tax is applied" msgstr "السعر الذي يتم فيه تطبيق هذه الضريبة" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "لا يمكن تغيير سعر العناصر '{}'" +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43124,7 +43146,7 @@ msgstr "سبب لوضع في الانتظار" msgid "Reason for Failure" msgstr "سبب الفشل" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "سبب الانتظار" @@ -43366,8 +43388,8 @@ msgstr "قائمة المرسل اليهم فارغة. يرجى إنشاء قا msgid "Receiving" msgstr "يستلم" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "الطلبات الأخيرة" @@ -43543,6 +43565,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43593,7 +43619,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "لا يمكن أن تكون قيمة Recurse Over Qty أقل من 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "لا يدعم النظام الخصومات المتكررة ذات الشروط المختلطة" @@ -43673,7 +43699,7 @@ msgstr "مرجع #" msgid "Reference #{0} dated {1}" msgstr "المرجع # {0} بتاريخ {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "تاريخ مرجعي لخصم الدفع المبكر" @@ -43965,8 +43991,8 @@ msgid "Rejected Warehouse" msgstr "رفض مستودع" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "لا يمكن أن يكون المستودع المرفوض هو نفسه المستودع المقبول." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44072,7 +44098,7 @@ msgstr "كلام" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44111,7 +44137,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "قم بإزالة المنتج إذا لم تكن الرسوم مطبقة عليه." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "العناصر إزالتها مع أي تغيير في كمية أو قيمة." @@ -44263,7 +44289,7 @@ msgstr "الإبلاغ عن خطأ" msgid "Report Line Items" msgstr "بنود التقرير" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44346,7 +44372,7 @@ msgstr "سجل أخطاء إعادة النشر" msgid "Repost Item Valuation" msgstr "إعادة تقييم العنصر" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "تمت إعادة تشغيل تقييم العناصر المعاد نشرها للسجلات الفاشلة المحددة." @@ -44392,6 +44418,15 @@ msgstr "بدأت عملية إعادة النشر في الخلفية" msgid "Reposting Data File" msgstr "إعادة نشر ملف البيانات" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44476,7 +44511,7 @@ msgstr "تاريخ الاستحقاق" msgid "Reqd Qty (BOM)" msgstr "الكمية المطلوبة (قائمة المواد)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "مطلوب بالتاريخ" @@ -44592,11 +44627,11 @@ msgstr "الكمية المطلبة" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "الكمية المطلوبة: الكمية المطلوبة للشراء، ولكن لم يتم طلبها." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "طلب موقع" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "الطالب" @@ -44775,6 +44810,10 @@ msgstr "مخزون احتياطي" msgid "Reserve Warehouse" msgstr "احتياطي مستودع" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "مخصصات للمواد الخام" @@ -44813,8 +44852,8 @@ msgid "Reserved Qty" msgstr "الكمية المحجوزة" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "لا يمكن أن تكون الكمية المحجوزة ({0}) كسرًا. للسماح بذلك، قم بتعطيل '{1}' في وحدة القياس {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "لا يمكن أن تكون الكمية المحجوزة ({0}) كسرًا. للسماح بذلك، قم بتعطيل '{1}' في وحدة القياس {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44858,7 +44897,7 @@ msgstr "الكمية المحجوزة" msgid "Reserved Quantity for Production" msgstr "الكمية المحجوزة للإنتاج" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "رقم تسلسلي محجوز" @@ -44874,13 +44913,13 @@ msgstr "رقم تسلسلي محجوز" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "المخزون المحجوز" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "المخزون المحجوز للدفعة" @@ -45374,6 +45413,10 @@ msgstr "سعر الصرف المُعاد ليس عددًا صحيحًا ولا msgid "Returns" msgstr "النتائج" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45798,11 +45841,11 @@ msgstr "اسم التوجيه" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "الصف # {0}: لا يمكن الارجاع أكثر من {1} للبند {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "الصف رقم {0}: يرجى إضافة الرقم التسلسلي وحزمة الدفعة للعنصر {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "الصف رقم {0}: يرجى إدخال الكمية للعنصر {1} لأنها ليست صفرًا." @@ -45886,23 +45929,23 @@ msgstr "الصف #{0}: لم يتم العثور على قائمة مكونات msgid "Row #{0}: Batch No {1} is already selected." msgstr "الصف #{0}: تم تحديد رقم الدفعة {1} بالفعل." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "الصف #{0}: رقم الدفعة {1} ليس جزءًا من أمر التوريد الداخلي المرتبط بالتعاقد من الباطن. يرجى تحديد رقم دفعة صحيح." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "الصف #{0}: لا يمكن تخصيص أكثر من {1} مقابل شرط الدفع {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "الصف #{0}: لا يمكن إلغاء إدخال مخزون التصنيع هذا لأن الكمية المفوترة للصنف {1} لا يمكن أن تكون أكبر من الكمية المستهلكة." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "الصف #{0}: لا يمكن إلغاء إدخال المخزون هذا لأن الكمية المرتجعة لا يمكن أن تكون أكبر من الكمية المُسلّمة للصنف {1} في أمر الشراء الداخلي المرتبط بالتعاقد من الباطن" @@ -45978,13 +46021,16 @@ msgstr "الصف #{0}: لم يتم العثور على عدد كافٍ من {1} msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "الصف #{0}: لا يمكن أن يكون الحد التراكمي أقل من حد المعاملة الفردية" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "الصف #{0}: لا يمكن إضافة العنصر المقدم من العميل {1} مقابل عنصر طلب التعاقد الداخلي {2} ({3}) عدة مرات." -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "الصف #{0}: لا يمكن إضافة العنصر المقدم من العميل {1} عدة مرات في عملية التعاقد من الباطن الواردة." @@ -45996,7 +46042,7 @@ msgstr "الصف #{0}: لا يمكن إضافة العنصر المقدم من msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "الصف #{0}: العنصر المقدم من العميل {1} غير موجود في جدول العناصر المطلوبة المرتبط بأمر التوريد الداخلي للتعاقد من الباطن." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "الصف #{0}: يتجاوز المنتج المقدم من العميل {1} الكمية المتاحة من خلال طلب الشراء الداخلي للتعاقد من الباطن" @@ -46004,12 +46050,12 @@ msgstr "الصف #{0}: يتجاوز المنتج المقدم من العميل msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "الصف #{0}: الكمية المتوفرة من الصنف المقدم من العميل {1} غير كافية في طلب الشراء الداخلي للمقاول من الباطن. الكمية المتاحة هي {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "الصف #{0}: العنصر المقدم من العميل {1} ليس جزءًا من أمر الشراء الداخلي للتعاقد من الباطن {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "الصف #{0}: العنصر المقدم من العميل {1} ليس جزءًا من أمر العمل {2}" @@ -46021,7 +46067,7 @@ msgstr "الصف #{0}: التواريخ المتداخلة مع صف آخر في msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "الصف #{0}: لم يتم العثور على قائمة مكونات المنتج النهائية الافتراضية لعنصر المنتج النهائي {1}" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "الصف #{0}: تاريخ بداية الإهلاك مطلوب" @@ -46029,6 +46075,10 @@ msgstr "الصف #{0}: تاريخ بداية الإهلاك مطلوب" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "الصف # {0}: إدخال مكرر في المراجع {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "الصف # {0}: تاريخ التسليم المتوقع لا يمكن أن يكون قبل تاريخ أمر الشراء" @@ -46041,11 +46091,18 @@ msgstr "الصف #{0}: لم يتم تعيين حساب المصروفات للع msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "الصف #{0}: حساب المصروفات {1} غير صالح لفاتورة الشراء {2}. يُسمح فقط بحسابات المصروفات الخاصة بالعناصر غير المخزنة." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "الصف #{0}: لا يمكن أن تكون كمية المنتج النهائي صفرًا" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46068,8 +46125,8 @@ msgstr "الصف #{0}: يجب أن يكون المنتج النهائي {1}" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "الصف #{0}: بالنسبة للمنتج المقدم من العميل {1}، يجب أن يكون مستودع المصدر {2}" @@ -46081,7 +46138,7 @@ msgstr "الصف #{0}: بالنسبة للصف {1}، يمكنك تحديد ال msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "الصف #{0}: بالنسبة للصف {1}، يمكنك تحديد المستند المرجعي فقط في حالة خصم الحساب." -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "الصف #{0}: يجب أن يكون معدل الاستهلاك أكبر من الصفر" @@ -46093,6 +46150,10 @@ msgstr "الصف #{0}: لا يمكن أن يكون تاريخ البدء قبل msgid "Row #{0}: From Time and To Time fields are required" msgstr "الصف #{0}: حقلا \"من وقت\" و\"إلى وقت\" مطلوبان." +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "الصف # {0}: تمت إضافة العنصر" @@ -46121,16 +46182,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "الصف #{0}: العنصر {1} في المستودع {2}: متوفر {3}، مطلوب {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "الصف #{0}: العنصر {1} ليس عنصرًا مقدمًا من العميل." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "الصف # {0}: العنصر {1} ليس عنصرًا تسلسليًا / مُجمَّع. لا يمكن أن يكون له رقم مسلسل / لا دفعة ضده." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "الصف #{0}: العنصر {1} ليس جزءًا من أمر الشراء الداخلي للتعاقد من الباطن {2}" @@ -46146,13 +46207,17 @@ msgstr "الصف #{0}: العنصر {1} ليس عنصرًا متوفرًا في msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "الصف #{0}: العنصر {1} غير متطابق. لا يُسمح بتغيير رمز العنصر، أضف صفًا آخر بدلاً من ذلك." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "الصف #{0}: عدم تطابق العنصر {1} . لا يُسمح بتغيير رمز العنصر." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46162,15 +46227,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "الصف {1} : قيد اليومية {1} لا يحتوى على الحساب {2} أو بالفعل يوجد في قسيمة مقابلة أخرى\\n
                    \\nRow #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "الصف #{0}: لا يمكن أن يكون تاريخ الاستهلاك التالي قبل تاريخ الإتاحة للاستخدام" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "الصف #{0}: لا يمكن أن يكون تاريخ الاستهلاك التالي قبل تاريخ الشراء" @@ -46182,24 +46247,48 @@ msgstr "الصف رقم {0}: غير مسموح تغيير المورد لأن أ msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "الصف #{0}: الصف {1} فقط متاح للحجز للعنصر {2}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "الصف #{0}: يجب أن يكون الاستهلاك المتراكم الافتتاحي أقل من أو يساوي {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "الصف #{0}: لا يُسمح بالاستهلاك الزائد للعنصر المقدم من العميل {1} مقابل أمر العمل {2} في عملية التعاقد من الباطن." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "الصف #{0}: الرجاء تحديد رمز الصنف في عناصر التجميع" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "الصف #{0}: الرجاء تحديد رقم قائمة المواد في عناصر التجميع" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "الصف #{0}: يرجى تحديد عنصر المنتج النهائي الذي سيتم استخدام هذا العنصر المقدم من العميل معه." @@ -46215,6 +46304,10 @@ msgstr "الصف # {0}: يرجى تعيين إعادة ترتيب الكمية\\ msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "الصف #{0}: يرجى تحديث حساب الإيرادات/المصروفات المؤجلة في صف البند أو الحساب الافتراضي في بيانات الشركة الرئيسية" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46234,8 +46327,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "الصف #{0}: يجب أن تكون الكمية عددًا موجبًا" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "الصف #{0}: يجب أن تكون الكمية أقل من أو تساوي الكمية المتاحة للحجز (الكمية الفعلية - الكمية المحجوزة) {1} للصنف {2} مقابل الدفعة {3} في المستودع {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46257,7 +46350,7 @@ msgstr "الصف #{0}: لا يمكن أن تكون الكمية عددًا غي msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "الصف # {0}: كمية البند {1} لا يمكن أن يكون صفرا" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "الصف #{0}: لا يمكن أن تتجاوز كمية الصنف {1} الكمية {2} {3} في طلب الشراء الداخلي للتعاقد من الباطن {4}" @@ -46265,17 +46358,17 @@ msgstr "الصف #{0}: لا يمكن أن تتجاوز كمية الصنف {1} msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "الصف #{0}: يجب أن تكون الكمية المراد حجزها للعنصر {1} أكبر من 0." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "الصف #{0}: يجب أن يكون المعدل هو نفسه {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "الصف {0} : نوع المستند المرجع يجب أن يكون واحدة من طلب شراء ,فاتورة شراء أو قيد يومبة\\n
                    \\nRow #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "الصف # {0}: يجب أن يكون نوع المستند المرجعي أحد أوامر المبيعات أو فاتورة المبيعات أو إدخال دفتر اليومية أو المطالبة" @@ -46295,11 +46388,11 @@ msgstr "الصف #{0}: تكلفة الإصلاح {1} تتجاوز المبلغ msgid "Row #{0}: Return Against is required for returning asset" msgstr "الصف #{0}: مطلوب إرجاع الأصل." -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "الصف #{0}: لا يمكن أن تكون الكمية المُعادة أكبر من الكمية المتاحة للصنف {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "الصف #{0}: لا يمكن أن تكون الكمية المُعادة أكبر من الكمية المتاحة للإرجاع للصنف {1}" @@ -46309,7 +46402,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46318,6 +46411,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "الصف #{0}: يجب أن يكون معرف التسلسل {1} أو {2} للعملية {3}." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "الصف # {0}: الرقم التسلسلي {1} لا ينتمي إلى الدُفعة {2}" @@ -46330,7 +46427,7 @@ msgstr "الصف #{0}: الرقم التسلسلي {1} للعنصر {2} غير msgid "Row #{0}: Serial No {1} is already selected." msgstr "الصف #{0}: تم تحديد الرقم التسلسلي {1} بالفعل." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "الصف #{0}: الأرقام التسلسلية {1} ليست جزءًا من أمر التوريد الداخلي المرتبط بالتعاقد من الباطن. يرجى تحديد رقم تسلسلي صحيح." @@ -46354,7 +46451,7 @@ msgstr "الصف # {0}: حدد المورد للبند {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "الصف #{0}: بما أن خيار \"تتبع المنتجات نصف المصنعة\" مُفعّل، فلا يمكن استخدام قائمة المواد {1} لعناصر التجميع الفرعية." -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "الصف #{0}: يجب أن يكون مستودع المصدر هو نفسه مستودع العميل {1} من أمر التوريد الداخلي المرتبط بالتعاقد من الباطن" @@ -46423,7 +46520,7 @@ msgstr "الصف #{0}: المخزون غير متاح للحجز للصنف {1} msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "الصف #{0}: كمية المخزون {1} ({2}) للصنف {3} لا يمكن أن تتجاوز {4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "الصف #{0}: يجب أن يكون المستودع المستهدف هو نفسه مستودع العميل {1} من أمر الشراء الداخلي المرتبط بالتعاقد من الباطن" @@ -46431,19 +46528,27 @@ msgstr "الصف #{0}: يجب أن يكون المستودع المستهدف ه msgid "Row #{0}: The batch {1} has already expired." msgstr "الصف رقم {0}: انتهت صلاحية الدفعة {1} بالفعل." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "الصف #{0}: المستودع {1} ليس مستودعًا فرعيًا لمستودع مجموعة {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "الصف # {0}: التوقيت يتعارض مع الصف {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "الصف #{0}: لا يمكن أن يكون إجمالي عدد الإهلاكات أقل من أو يساوي عدد الإهلاكات المسجلة في بداية الفترة." -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "الصف #{0}: يجب أن يكون إجمالي عدد الاستهلاكات أكبر من الصفر" @@ -46455,11 +46560,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "الصف #{0}: مبلغ الاستقطاع {1} لا يتطابق مع المبلغ المحسوب {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "الصف #{0}: يوجد أمر عمل مقابل كمية كاملة أو جزئية من العنصر {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "الصف #{0}: لا يمكنك استخدام بُعد المخزون '{1}' في مطابقة المخزون لتعديل الكمية أو معدل التقييم. تُستخدم مطابقة المخزون باستخدام أبعاد المخزون فقط لإجراء قيود افتتاحية." @@ -46467,6 +46576,19 @@ msgstr "الصف #{0}: لا يمكنك استخدام بُعد المخزون '{ msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "الصف #{0}: يجب عليك تحديد أصل للعنصر {1}." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "الصف #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "الصف # {0}: {1} لا يمكن أن يكون سالبا للبند {2}" @@ -46483,6 +46605,14 @@ msgstr "الصف رقم {0}: {1} مطلوب لإنشاء فواتير الافت msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "الصف #{0}: {1} من {2} يجب أن يكون {3}. يرجى تحديث {1} أو اختيار حساب آخر." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46523,71 +46653,10 @@ msgstr "الصف #{idx}: {from_warehouse_field} و {to_warehouse_field} لا ي msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "الصف #{idx}: {schedule_date} لا يمكن أن يكون قبل {transaction_date}." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "الصف # {}: عملة {} - {} لا تطابق عملة الشركة." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "الصف رقم {}: يجب ألا يكون دفتر المالية فارغًا لأنك تستخدم عدة دفاتر." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "الصف رقم {}: فاتورة نقاط البيع {} كانت {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "الصف رقم {}: فاتورة نقاط البيع {} ليست ضد العميل {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "الصف رقم {}: فاتورة نقاط البيع {} لم يتم تقديمها بعد" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "الصف رقم {}: يرجى إسناد المهمة إلى أحد الأعضاء." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "الصف رقم {}: يرجى استخدام كتاب مالي مختلف." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "الصف # {}: لا يمكن إرجاع الرقم التسلسلي {} لأنه لم يتم التعامل معه في الفاتورة الأصلية {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "الصف رقم {}: الفاتورة الأصلية {} للفاتورة المرتجعة {} غير مجمعة." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "السطر رقم {}: لا يمكنك إضافة كميات موجبة في فاتورة الإرجاع. يرجى حذف العنصر {} لإتمام عملية الإرجاع." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "الصف رقم {}: تم اختيار العنصر {} بالفعل." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "رقم الصف {}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "الصف رقم {}: {} {} غير موجود." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "الصف رقم {}: {} {} لا ينتمي إلى الشركة {}. يرجى اختيار {} صحيح." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "رقم الصف {0}: مطلوب تحديد مستودع. يُرجى تحديد مستودع افتراضي للصنف {1} والشركة {2}" @@ -46600,10 +46669,6 @@ msgstr "الصف {0}: العملية مطلوبة مقابل عنصر الماد msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "الكمية المختارة من الصف {0} أقل من الكمية المطلوبة، يلزم كمية إضافية {1} {2} ." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "الصف {0}# العنصر {1} غير موجود في جدول \"المواد الخام الموردة\" في {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "الصف {0}: لا يمكن أن تكون الكمية المقبولة والكمية المرفوضة صفرًا في نفس الوقت." @@ -46624,19 +46689,19 @@ msgstr "الصف {0}: الدفعة المقدمة مقابل الزبائن ي msgid "Row {0}: Advance against Supplier must be debit" msgstr "الصف {0}:المورد المقابل المتقدم يجب أن يكون مدين\\n
                    \\nRow {0}: Advance against Supplier must be debit" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "الصف {0}: يجب أن يكون المبلغ المخصص {1} أقل من أو يساوي المبلغ المستحق من الفاتورة {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "الصف {0}: يجب أن يكون المبلغ المخصص {1} أقل من أو يساوي مبلغ الدفعة المتبقية {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "الصف {0}: بما أن {1} مُفعّل، فلا يمكن إضافة المواد الخام إلى المدخل {2} . استخدم المدخل {3} لاستهلاك المواد الخام." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "صف {0}: من مواد مشروع القانون لم يتم العثور على هذا البند {1}" @@ -46652,11 +46717,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "الصف {0}: معامل التحويل إلزامي" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "الصف {0}: مركز التكلفة {1} لا ينتمي إلى الشركة {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "الصف {0}: مركز التكلفة مطلوب لعنصر {1}" @@ -46684,24 +46749,24 @@ msgstr "الصف {0}: لا يمكن أن يكون مستودع التسليم ه msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "الصف {0}: لا يمكن أن يكون تاريخ الاستحقاق في جدول شروط الدفع قبل تاريخ الترحيل" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "الصف {0}: يجب أن يكون مرجع عنصر إشعار التسليم أو العنصر المعبأ إلزاميًا." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "الصف {0}: سعر صرف إلزامي" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "الصف {0}: لا يمكن أن تكون القيمة المتوقعة بعد العمر الإنتاجي سالبة" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "الصف {0}: يجب أن تكون القيمة المتوقعة بعد العمر الإنتاجي أقل من صافي مبلغ الشراء" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46722,6 +46787,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "صف {0}: (من الوقت) و (إلى وقت) تكون إلزامية." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "الصف {0}: من وقت إلى وقت {1} يتداخل مع {2}" @@ -46743,8 +46811,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "الصف {0}: مرجع غير صالحة {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "الصف {0}: تم تحديث نموذج ضريبة الصنف وفقًا للصلاحية والسعر المطبق" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46774,7 +46842,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "الصف {0}: يجب أن تكون الكمية المعبأة مساوية للكمية {1} ." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "الصف {0}: تم إنشاء قائمة التعبئة بالفعل للعنصر {1}." @@ -46798,7 +46866,7 @@ msgstr "الصف {0}: الدفع لطلب الشراء/البيع يجب أن ي msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "الصف {0}: يرجى اختيار \"دفعة مقدمة\" مقابل الحساب {1} إذا كان هذا الادخال دفعة مقدمة." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "الصف {0}: يرجى تقديم مرجع صالح لعنصر إشعار التسليم أو العنصر المعبأ." @@ -46806,14 +46874,14 @@ msgstr "الصف {0}: يرجى تقديم مرجع صالح لعنصر إشعا msgid "Row {0}: Please select a BOM for Item {1}." msgstr "الصف {0}: الرجاء تحديد قائمة مكونات المنتج للعنصر {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "الصف {0}: يرجى تحديد قائمة مكونات نشطة للعنصر {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "الصف {0}: يرجى تحديد قائمة مكونات صالحة للعنصر {1}." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "الصف {0}: يرجى تعيين سبب الإعفاء الضريبي في ضرائب ورسوم المبيعات" @@ -46830,11 +46898,11 @@ msgstr "الصف {0}: يرجى ضبط الكود الصحيح على طريقة msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "الصف {0}: يجب أن يكون المشروع هو نفسه المشروع المحدد في جدول الدوام: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "الصف {0}: فاتورة الشراء {1} ليس لها أي تأثير على المخزون." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "الصف {0}: لا يمكن أن تكون الكمية أكبر من {1} للعنصر {2}." @@ -46842,7 +46910,7 @@ msgstr "الصف {0}: لا يمكن أن تكون الكمية أكبر من {1} msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "الصف {0}: لا يمكن أن تكون الكمية في المخزون بوحدة القياس صفرًا." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "الصف {0}: يجب أن تكون الكمية أكبر من 0." @@ -46854,7 +46922,7 @@ msgstr "الصف {0}: لا يمكن أن تكون الكمية سالبة." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "الصف {0}: تم إنشاء فاتورة المبيعات {1} بالفعل لـ {2}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46879,10 +46947,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "الصف {0}: تم تخصيص مبلغ المصروفات بالكامل للحساب {1} في {2} بالفعل." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "الصف {0}: العنصر {1} ، يجب أن تكون الكمية رقمًا موجبًا" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "الصف {0}: الحساب {3} {1} لا ينتمي إلى الشركة {2}" @@ -46935,15 +47003,19 @@ msgstr "الصف {0}: {1} {2} لا يمكن أن يكون هو نفسه {3} (ح msgid "Row {0}: {1} {2} does not match with {3}" msgstr "الصف {0}: {1} {2} لا يتطابق مع {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "الصف {0}: {2} العنصر {1} غير موجود في {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "الصف {1}: لا يمكن أن تكون الكمية ({0}) كسرًا. للسماح بذلك ، قم بتعطيل '{2}' في UOM {3}." @@ -46982,8 +47054,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "الصفوف: {0} تحتوي على \"إدخال الدفع\" كنوع مرجعي. لا ينبغي تعيين هذا يدويًا." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "الصفوف: {0} في القسم {1} غير صالحة. يجب أن يشير اسم المرجع إلى قيد دفع أو قيد يومية صالح." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47043,10 +47115,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47114,7 +47182,7 @@ msgstr "تم الوفاء باتفاقية مستوى الخدمة (SLA)" msgid "SLA Paused On" msgstr "تم إيقاف اتفاقية مستوى الخدمة مؤقتًا" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "اتفاقية مستوى الخدمة معلقة منذ {0}" @@ -47413,8 +47481,8 @@ msgid "Sales Invoice is not submitted" msgstr "لم يتم تقديم فاتورة المبيعات" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "لم يتم إنشاء فاتورة المبيعات بواسطة المستخدم {}" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47630,8 +47698,8 @@ msgstr "يوجد بالفعل أمر بيع {0} مرتبط بأمر شراء ا msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48038,7 +48106,7 @@ msgstr "نفس البند" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "تم إدخال نفس المنتج ونفس تركيبة المستودع مسبقاً." @@ -48070,7 +48138,7 @@ msgstr "مستودع الاحتفاظ بالعينات" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "حجم العينة" @@ -48180,7 +48248,7 @@ msgstr "الكمية الممسوحة ضوئياً" msgid "Schedule Date" msgstr "جدول التسجيل" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48191,7 +48259,7 @@ msgstr "" msgid "Scheduled Date" msgstr "المقرر تاريخ" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48479,7 +48547,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "حدد بُعد المحاسبة." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "اختر البند البديل" @@ -48500,7 +48568,7 @@ msgid "Select BOM and Qty for Production" msgstr "اختر فاتورة المواد و الكمية للانتاج" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "حدد رقم الدفعة" @@ -48565,7 +48633,7 @@ msgstr "حدد الأبعاد" msgid "Select Dispatch Address " msgstr "حدد عنوان الإرسال " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "حدد الموظفين" @@ -48590,7 +48658,7 @@ msgstr "اختيار العناصر" msgid "Select Items based on Delivery Date" msgstr "حدد العناصر بناءً على تاريخ التسليم" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "اختيار الأصناف لفحص الجودة" @@ -48620,7 +48688,7 @@ msgstr "حدد عنوان العامل" msgid "Select Loyalty Program" msgstr "اختر برنامج الولاء" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48634,13 +48702,13 @@ msgid "Select Quantity" msgstr "إختيار الكمية" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "حدد الرقم التسلسلي" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "حدد التسلسل والدفعة" @@ -48731,6 +48799,7 @@ msgid "Select an Item Group." msgstr "حدد مجموعة عناصر." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "حدد حسابا للطباعة بعملة الحساب" @@ -48872,10 +48941,14 @@ msgstr "قسائم مختارة" msgid "Selected date is" msgstr "التاريخ المحدد هو" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "يجب أن يكون المستند المحدد في حالة الإرسال" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49023,7 +49096,7 @@ msgid "Send Emails to Suppliers" msgstr "إرسال رسائل البريد الإلكتروني إلى الموردين" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "SMS أرسل رسالة" @@ -49107,7 +49180,7 @@ msgstr "حزمة البيانات التسلسلية/الدفعية مفقودة msgid "Serial / Batch No" msgstr "الرقم التسلسلي / رقم الدفعة" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "أرقام التسلسل / الدفعات" @@ -49164,10 +49237,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49209,6 +49283,10 @@ msgstr "رقم المسلسل / الدفعة" msgid "Serial No Already Assigned" msgstr "تم تخصيص الرقم التسلسلي مسبقاً" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "المسلسل لا عد" @@ -49226,7 +49304,7 @@ msgstr "دفتر الأستاذ ذو الرقم التسلسلي" msgid "Serial No Range" msgstr "نطاق الأرقام التسلسلية" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "الرقم التسلسلي محجوز" @@ -49271,8 +49349,8 @@ msgid "Serial No and Batch" msgstr "الرقم التسلسلي والدفعة" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "لا يمكن استخدام الرقم التسلسلي ومحدد الدفعة عند تمكين خيار \"استخدام الحقول التسلسلية / حقول الدفعة\"." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49283,7 +49361,7 @@ msgstr "لا يمكن استخدام الرقم التسلسلي ومحدد ال msgid "Serial No and Batch Traceability" msgstr "إمكانية تتبع الرقم التسلسلي والدفعة" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "الرقم التسلسلي إلزامي" @@ -49303,22 +49381,19 @@ msgstr "تم مسح الرقم التسلسلي {0} مسبقًا" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "الرقم المتسلسل {0} لا ينتمي الى مذكرة تسليم {1}\\n
                    \\nSerial No {0} does not belong to Delivery Note {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "الرقم المتسلسل {0} لا ينتمي إلى البند {1}\\n
                    \\nSerial No {0} does not belong to Item {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "الرقم المتسلسل {0} غير موجود\\n
                    \\nSerial No {0} does not exist" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "الرقم التسلسلي {0} غير موجود" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "الرقم التسلسلي {0} مُسلّم بالفعل. لا يمكنك استخدامه مرة أخرى في عملية التصنيع/إعادة التعبئة." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49332,25 +49407,26 @@ msgstr "الرقم التسلسلي {0} مُخصص بالفعل للعميل {1} msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "الرقم التسلسلي {0} غير موجود في {1} {2}، لذا لا يمكنك إرجاعه إلى {1} {2}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "الرقم التسلسلي {0} يتبع عقد الصيانة حتى {1}\\n
                    \\nSerial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "الرقم التسلسلي {0} تحت الضمان حتى {1}\\n
                    \\nSerial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "لم يتم العثور علي الرقم التسلسلي {0}\\n
                    \\nSerial No {0} not found" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "الرقم التسلسلي: تم بالفعل معاملة {0} في فاتورة نقطة بيع أخرى." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49370,7 +49446,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "تم إنشاء الأرقام التسلسلية بنجاح" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "يتم حجز الأرقام التسلسلية في إدخالات حجز المخزون، لذا عليك إلغاء حجزها قبل المتابعة." @@ -49471,6 +49547,10 @@ msgstr "لم يتم إرسال حزمة البيانات التسلسلية وا msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49519,7 +49599,7 @@ msgstr "الحجز التسلسلي والحجز الدفعي" msgid "Serial and Batch Summary" msgstr "ملخص الأرقام التسلسلية والدفعات" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "الرقم التسلسلي {0} دخلت أكثر من مرة" @@ -49527,122 +49607,12 @@ msgstr "الرقم التسلسلي {0} دخلت أكثر من مرة" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "الأرقام التسلسلية غير متوفرة للعنصر {0} الموجود في المستودع {1}. يرجى محاولة تغيير المستودع." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "سلسلة التسمية" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "سلسلة دخول الأصول (دخول دفتر اليومية)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "الترقيم المتسلسل إلزامي" @@ -49724,7 +49694,7 @@ msgid "Service Item {0} is disabled." msgstr "تم تعطيل عنصر الخدمة {0} ." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "يجب أن يكون عنصر الخدمة {0} عنصرًا غير موجود في المخزون." @@ -49833,12 +49803,12 @@ msgid "Service Stop Date" msgstr "تاريخ توقف الخدمة" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "لا يمكن أن يكون تاريخ إيقاف الخدمة بعد تاريخ انتهاء الخدمة" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "لا يمكن أن يكون تاريخ إيقاف الخدمة قبل تاريخ بدء الخدمة" @@ -49862,7 +49832,7 @@ msgstr "تعيين السلف والتخصيص (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "قم بتعيين السعر الأساسي يدويًا" @@ -49877,7 +49847,7 @@ msgstr "تعيين المورد الافتراضي" msgid "Set Delivery Warehouse" msgstr "مستودع توصيل المجموعات" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49982,7 +49952,7 @@ msgstr "تحديد تسمية الحزم التسلسلية والدفعية ب #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50000,7 +49970,7 @@ msgstr "مورد المجموعة" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50026,7 +49996,7 @@ msgstr "على النحو مغلق" msgid "Set as Completed" msgstr "تعيين كـ مكتمل" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "على النحو المفقودة" @@ -50124,15 +50094,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "قم بتعيين {0} في فئة الأصول {1} للشركة {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "تعيين {0} في فئة الأصول {1} أو الشركة {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "قم بتعيين {0} في الشركة {1}" @@ -50200,7 +50170,7 @@ msgid "Setting up company" msgstr "تأسيس شركة" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "الإعداد {0} مطلوب" @@ -50628,6 +50598,7 @@ msgid "Show Completed" msgstr "عرض مكتمل" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "إظهار الرصيد الدائن / المدين بعملة الشركة" @@ -50830,7 +50801,7 @@ msgstr "اعرض الفصل الدراسي القادم مباشرة فقط" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "عرض الإدخالات المعلقة" @@ -50933,11 +50904,11 @@ msgstr "" msgid "Simultaneous" msgstr "متزامن" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "بما أن هناك خسارة في العملية قدرها {0} وحدة للمنتج النهائي {1}، فيجب عليك تقليل الكمية بمقدار {0} وحدة للمنتج النهائي {1} في جدول العناصر." @@ -50998,7 +50969,7 @@ msgstr "تخطي نقل المواد إلى العمل قيد التنفيذ" msgid "Skip Material Transfer to WIP Warehouse" msgstr "تخطي نقل المواد إلى مستودع WIP" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51054,8 +51025,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "بعض بيانات الشركة المطلوبة مفقودة. ليس لديك صلاحية لتحديثها. يرجى الاتصال بمدير النظام." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "حدث خطأ ما، يرجى المحاولة مرة أخرى" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51122,7 +51093,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51159,8 +51130,8 @@ msgstr "نوع المصدر" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51290,7 +51261,7 @@ msgstr "تقسيم القضية" msgid "Split Qty" msgstr "تقسيم الكمية" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "يجب أن تكون كمية التقسيم أقل من كمية الأصل" @@ -51303,7 +51274,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "تقسيم {0} {1} إلى {2} صفوف وفقًا لشروط الدفع" @@ -51356,7 +51332,7 @@ msgstr "اسم المرحلة" msgid "Stale Days" msgstr "أيام قديمة" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "يجب أن تبدأ أيام الركود من 1." @@ -51421,10 +51397,26 @@ msgstr "نموذج ضريبي قياسي يُمكن تطبيقه على جميع msgid "Standing Name" msgstr "اسم الدائمة" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "بدء / استئناف" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "لا يمكن أن يكون تاريخ البدء قبل التاريخ الحالي" @@ -51454,7 +51446,7 @@ msgstr "لا يمكن أن يكون وقت البدء أكبر من أو يسا msgid "Start Timer" msgstr "بدء المؤقت" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51483,10 +51475,14 @@ msgstr "يجب أن يكون تاريخ البدء أقل من تاريخ الا msgid "Start date should be less than end date for task {0}" msgstr "يجب أن يكون تاريخ البدء أقل من تاريخ الانتهاء للمهمة {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "بدأت مهمة في الخلفية لإنشاء {1} {0}. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51567,7 +51563,7 @@ msgstr "رسم توضيحي للحالة" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "يجب إلغاء الحالة أو إكمالها" @@ -51695,8 +51691,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "تم بالفعل إدخال إغلاق المخزون {0} لنطاق التاريخ المحدد" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "تمت إضافة إدخال إغلاق المخزون {0} إلى قائمة الانتظار للمعالجة، وسيستغرق النظام بعض الوقت لإكماله." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51777,17 +51773,21 @@ msgstr "بند إدخال المخزون" msgid "Stock Entry Type" msgstr "نوع إدخال الأسهم" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "تم إنشاء إدخال الأسهم بالفعل مقابل قائمة الاختيار هذه" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "الأسهم الدخول {0} خلق" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "تم إنشاء إدخال المخزون {0}" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -51953,7 +51953,7 @@ msgstr "كمية المخزون المتوقعة" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52036,7 +52036,7 @@ msgstr "إعدادات إعادة نشر المخزون" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52061,15 +52061,15 @@ msgstr "حجز الأسهم" msgid "Stock Reservation Entries Cancelled" msgstr "تم إلغاء إدخالات حجز المخزون" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "تم إنشاء قيود حجز المخزون" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "تم إنشاء إدخالات حجز المخزون" @@ -52239,7 +52239,7 @@ msgstr "قيود المخزون" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52398,9 +52398,9 @@ msgstr "تم إلغاء حجز المخزون لأمر العمل {0}." msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "المخزون غير متوفر للصنف {0} في المستودع {1}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "الكمية المتوفرة من المنتج ذي الرمز {0} غير كافية في المستودع {1}. الكمية المتاحة {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52418,7 +52418,7 @@ msgstr "لا يمكن تعديل معاملات الأسهم التي مضى ع msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "لا يمكن تجميد المخزون/الحسابات لأن معالجة القيود المؤرخة بأثر رجعي جارية. يرجى المحاولة مرة أخرى لاحقاً." @@ -52433,7 +52433,7 @@ msgstr "حجر" msgid "Stop Reason" msgstr "توقف السبب" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "لا يمكن إلغاء طلب العمل المتوقف ، قم بإلغاء إيقافه أولاً للإلغاء" @@ -52441,7 +52441,7 @@ msgstr "لا يمكن إلغاء طلب العمل المتوقف ، قم بإل #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "مخازن" @@ -52655,7 +52655,7 @@ msgstr "معامل تحويل التعاقد من الباطن" msgid "Subcontracting Delivery" msgstr "تسليم المشاريع عن طريق التعاقد من الباطن" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52727,7 +52727,7 @@ msgstr "بند خدمة طلب داخلي للتعاقد من الباطن" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52765,7 +52765,7 @@ msgstr "بند خدمة طلب التعاقد من الباطن" msgid "Subcontracting Order Supplied Item" msgstr "بند مورد من طلب التعاقد من الباطن" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "تم إنشاء أمر التعاقد من الباطن {0} ." @@ -52839,7 +52839,7 @@ msgstr "إرجاع عقود المقاولة الفرعية" msgid "Subcontracting Sales Order" msgstr "أمر بيع تعاقد من الباطن" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52858,7 +52858,7 @@ msgstr "" msgid "Subdivision" msgstr "تقسيم فرعي" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "فشل إرسال الإجراء" @@ -52887,7 +52887,7 @@ msgstr "أرسل طلب العمل هذا لمزيد من المعالجة." msgid "Submit your Quotation" msgstr "أرسل عرض الأسعار الخاص بك" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53029,7 +53029,7 @@ msgstr "إعدادات النجاح" msgid "Successful" msgstr "ناجح" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "تمت التسوية بنجاح\\n
                    \\nSuccessfully Reconciled" @@ -53207,7 +53207,7 @@ msgstr "الموردة الكمية" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53389,7 +53389,7 @@ msgstr "المورد فاتورة التسجيل" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "رقم فاتورة المورد" @@ -53537,7 +53537,7 @@ msgstr "مقارنة عروض أسعار الموردين" msgid "Supplier Quotation Item" msgstr "المورد اقتباس الإغلاق" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "تم إنشاء عرض أسعار المورد {0}" @@ -53722,10 +53722,6 @@ msgstr "فريق الدعم" msgid "Support Tickets" msgstr "تذاكر الدعم الفني" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "مبلغ الخصم المتوقع" @@ -53811,7 +53807,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "ملخص حساب TDS" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "تم خصم ضريبة الدخل المقتطعة" @@ -53872,8 +53868,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "الأصل المستهدف {0} لا ينتمي إلى الشركة {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "يجب أن يكون الأصل المستهدف {0} أصلًا مركبًا" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -53982,11 +53978,11 @@ msgstr "رابط عنوان مستودع تارجت" msgid "Target Warehouse Reservation Error" msgstr "خطأ في حجز مستودع تارجت" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "يجب أن يكون المستودع المستهدف للمنتج النهائي هو نفسه مستودع المنتج النهائي {1} في أمر العمل {2} المرتبط بأمر التوريد الداخلي للمقاول من الباطن." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "يجب أن يكون المستودع المستهدف للمنتج النهائي هو نفسه مستودع المنتج النهائي {0} في أمر العمل {1} المرتبط بأمر التوريد الداخلي للمقاول من الباطن." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "يلزم وجود مستودع Target قبل الإرسال" @@ -54462,7 +54458,7 @@ msgstr "يتم اقتطاع الضريبة فقط على المبلغ الذي #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "المبلغ الخاضع للضريبة" @@ -54674,7 +54670,7 @@ msgstr "تلفزيون" msgid "Template Item" msgstr "عنصر القالب" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "تم تحديد عنصر القالب" @@ -54981,23 +54977,27 @@ msgstr "تسلا" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "النص المعروض في البيان المالي (على سبيل المثال، \"إجمالي الإيرادات\"، \"النقد وما يعادله\")." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "و "من حزمة رقم" يجب ألا يكون الحقل فارغا ولا قيمة أقل من 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "تم تعطيل الوصول إلى طلب عرض الأسعار من البوابة. للسماح بالوصول ، قم بتمكينه في إعدادات البوابة." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "وBOM التي سيتم استبدالها" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "تحتوي الدفعة {0} على كمية سالبة {1}. لحل هذه المشكلة، انتقل إلى الدفعة وانقر على \"إعادة حساب كمية الدفعة\". إذا استمرت المشكلة، فأنشئ إدخالًا داخليًا." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "الحملة '{0}' موجودة بالفعل لـ {1} '{2}'" @@ -55022,6 +55022,10 @@ msgstr "ستتم معالجة قيود دفتر الأستاذ العام وال msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "سيتم إلغاء إدخالات دفتر الأستاذ العام في الخلفية، وقد يستغرق ذلك بضع دقائق." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "برنامج الولاء غير صالح للشركة المختارة" @@ -55039,9 +55043,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "لا يمكن تحديث قائمة الاختيار التي تحتوي على إدخالات حجز المخزون. إذا كنت ترغب في إجراء تغييرات، فننصحك بإلغاء إدخالات حجز المخزون الحالية قبل تحديث قائمة الاختيار." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "تمت إعادة ضبط كمية الفاقد في العملية وفقًا لبطاقات العمل." +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55051,11 +55058,15 @@ msgstr "يرتبط مندوب المبيعات بـ {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "الرقم التسلسلي في الصف #{0}: {1} غير متوفر في المستودع {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "الرقم التسلسلي {0} محجوز مقابل {1} {2} ولا يمكن استخدامه لأي معاملة أخرى." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "حزمة البيانات التسلسلية والدفعية {0} غير صالحة لهذه المعاملة. يجب أن يكون \"نوع المعاملة\" \"خارجي\" بدلاً من \"داخلي\" في حزمة البيانات التسلسلية والدفعية {0}" @@ -55103,15 +55114,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "لا يمكن أن تكون الكمية المكتملة {0} لعملية {1} أكبر من الكمية المكتملة {2} لعملية سابقة {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "عملة الفاتورة {} ({}) تختلف عن عملة هذا الإشعار ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "بيانات فتح نقطة البيع الحالية قديمة. يرجى إغلاقها وإنشاء بيانات جديدة." @@ -55160,6 +55171,10 @@ msgstr "لا يمكن ترك الحقل للمساهم فارغا" msgid "The field {0} in row {1} is not set" msgstr "الحقل {0} في الصف {1} غير مُعيّن" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "لا يمكن ترك الحقول من المساهمين والمساهم فارغا" @@ -55181,9 +55196,9 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "أرقام الورقة غير متطابقة" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "لا يمكن استيعاب العناصر التالية، التي تخضع لقواعد التخزين:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55210,8 +55225,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "لا يزال الموظفون التالي ذكرهم يتبعون حاليًا {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "تم حذف قواعد التسعير غير الصالحة التالية:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55222,7 +55237,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "الصفوف التالية مكررة:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "تم إنشاء {0} التالية: {1}" @@ -55258,8 +55273,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "العناصر {items} غير مصنفة كعناصر {type_of} . يمكنك تفعيلها كعناصر {type_of} من قائمة العناصر الرئيسية الخاصة بها." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "بطاقة الوظيفة {0} في حالة {1} ولا يمكنك إكمالها." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55296,12 +55311,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "لا يمكن إجراء عملية الجمع {0} عدة مرات" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "لا يمكن أن تكون العملية {0} عملية فرعية" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55349,6 +55364,10 @@ msgstr "النسبة المئوية المسموح لك باستلام أو تس msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "النسبة المئوية المسموح لك بنقلها زيادةً عن الكمية المطلوبة. على سبيل المثال، إذا طلبت 100 وحدة، وكانت نسبة الزيادة المسموح بها 10%، فيُسمح لك بنقل 110 وحدات." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55358,7 +55377,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "سيتم تحرير المخزون المحجوز عند تحديث العناصر. هل أنت متأكد من رغبتك في المتابعة؟" @@ -55375,8 +55394,8 @@ msgid "The selected BOMs are not for the same item" msgstr "قواائم المواد المحددة ليست لنفس البند" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "حساب التغيير المحدد {} لا ينتمي إلى الشركة {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55392,8 +55411,8 @@ msgstr "البائع والمشتري لا يمكن أن يكون هو نفسه" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "الحزمة التسلسلية وحزمة الدفعات {0} غير مرتبطة بـ {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55411,11 +55430,11 @@ msgstr "الأسهم موجودة بالفعل" msgid "The shares don't exist with the {0}" msgstr "الأسهم غير موجودة مع {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "كان رصيد الصنف {0} في المستودع {1} سالبًا في {2}. يجب عليك إنشاء قيد موجب {3} قبل التاريخ {4} والوقت {5} لتسجيل معدل التقييم الصحيح. لمزيد من التفاصيل، يُرجى قراءة الوثائق ." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "كان رصيد الصنف {0} في المستودع {1} سالبًا في {2}. يجب عليك إنشاء قيد موجب {3} قبل التاريخ {4} والوقت {5} لتسجيل معدل التقييم الصحيح. لمزيد من التفاصيل، يُرجى قراءة الوثائق ." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "تم حجز المخزون للأصناف والمستودعات التالية، قم بإلغاء حجزها في {0} تسوية المخزون:

                    {1}" @@ -55437,17 +55456,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "سيقوم النظام بإنشاء فاتورة مبيعات أو فاتورة نقاط بيع من واجهة نقاط البيع بناءً على هذا الإعداد. يُنصح باستخدام فاتورة نقاط البيع في حالة المعاملات ذات الحجم الكبير." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "وقد تم إرساء المهمة كعمل خلفية. في حالة وجود أي مشكلة في المعالجة في الخلفية ، سيقوم النظام بإضافة تعليق حول الخطأ في تسوية المخزون هذا والعودة إلى مرحلة المسودة" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "تمت إضافة المهمة إلى قائمة الانتظار كعملية خلفية. في حال وجود أي مشكلة أثناء المعالجة في الخلفية، سيضيف النظام تعليقًا حول الخطأ في عملية مطابقة المخزون هذه، ثم يعود إلى حالة \"تم الإرسال\"." #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "لا يمكن أن تتجاوز كمية الإصدار/التحويل الإجمالية {0} في طلب المواد {1} الكمية المطلوبة المسموح بها {2} للصنف {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55485,7 +55504,7 @@ msgstr "يُسمح للمستخدمين الذين لديهم هذا الدور msgid "The value of {0} differs between Items {1} and {2}" msgstr "تختلف قيمة {0} بين العناصر {1} و {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "تم تعيين القيمة {0} بالفعل لعنصر موجود {1}." @@ -55509,7 +55528,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "يجب أن يكون {0} ({1}) مساويًا لـ {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "يحتوي {0} على عناصر سعر الوحدة." @@ -55517,7 +55536,7 @@ msgstr "يحتوي {0} على عناصر سعر الوحدة." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "البادئة {0} '{1}' موجودة بالفعل. يُرجى تغيير رقم التسلسل، وإلا ستظهر لك رسالة خطأ \"إدخال مكرر\"." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "تم إنشاء {0} {1} بنجاح" @@ -55525,6 +55544,10 @@ msgstr "تم إنشاء {0} {1} بنجاح" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "لا يتطابق {0} {1} مع {0} {2} في {3} {4}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "يتم استخدام {0} {1} لحساب تكلفة التقييم للمنتج النهائي {2}." @@ -55533,7 +55556,7 @@ msgstr "يتم استخدام {0} {1} لحساب تكلفة التقييم لل msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "ثم يتم تصفية قواعد التسعير بناءً على العميل، ومجموعة العملاء، والمنطقة، والمورد، ونوع المورد، والحملة، وشريك المبيعات، وما إلى ذلك." -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "هناك صيانة نشطة أو إصلاحات ضد الأصل. يجب عليك إكمالها جميعًا قبل إلغاء الأصل." @@ -55545,7 +55568,7 @@ msgstr "هناك تناقضات بين المعدل، لا من الأسهم و msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "توجد قيود دفترية لهذا الحساب. سيؤدي تغيير {0} إلى{1} غير موجود في النظام الفعلي إلى ظهور مخرجات غير صحيحة في تقرير \"الحسابات {2}\"." -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "لا توجد معاملات فاشلة" @@ -55562,6 +55585,10 @@ msgstr "لا توجد سنوات مالية نشطة يمكن إنشاء بيا msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "لا توجد مواعيد متاحة في هذا التاريخ" @@ -55578,10 +55605,6 @@ msgstr "هناك خياران لتقييم المخزون: طريقة الوار msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "لا توجد أي خيارات أخرى للعنصر المحدد" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "قد يكون هناك عدة مستويات لعامل التجميع بناءً على إجمالي الإنفاق. لكن عامل التحويل للاسترداد سيكون دائمًا هو نفسه لجميع المستويات." @@ -55610,21 +55633,21 @@ msgstr "لم يتم العثور على دفعة بالمقابلة مع {0}: {1 msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "يجب أن يكون هناك منتج نهائي واحد على الأقل في هذا الإدخال المخزوني." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "حدث خطأ أثناء إنشاء حساب مصرفي أثناء الربط مع Plaid." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "حدث خطأ أثناء مزامنة المعاملات." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "حدث خطأ أثناء تحديث الحساب المصرفي {} أثناء الربط مع Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55674,15 +55697,19 @@ msgstr "ملخص هذا الشهر" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "تم التعاقد من الباطن بالكامل على أمر الشراء هذا." -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "تم التعاقد من الباطن بالكامل على أمر البيع هذا." @@ -55704,7 +55731,7 @@ msgstr "سيؤدي هذا الإجراء إلى إلغاء ربط هذا الح msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "تم تصنيف هذه الفئة من الأصول على أنها غير قابلة للاستهلاك. يرجى تعطيل حساب الاستهلاك أو اختيار فئة أخرى." @@ -55722,7 +55749,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "وهذا يغطي جميع بطاقات الأداء مرتبطة بهذا الإعداد" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "هذه الوثيقة هي على حد كتبها {0} {1} لمادة {4}. وجعل لكم آخر {3} ضد نفسه {2}؟" @@ -55864,7 +55891,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "تم تطبيق فلتر العنصر هذا بالفعل على {0}" @@ -55928,7 +55955,7 @@ msgstr "تم إنشاء هذا الجدول عندما تم إرجاع الأص msgid "This schedule was created when Asset {0} was scrapped." msgstr "تم إنشاء هذا الجدول عندما تم إلغاء الأصل {0} ." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "تم إنشاء هذا الجدول عندما تم تحويل الأصل {0} إلى الأصل الجديد {2}{1} ." @@ -55955,10 +55982,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "يسمح هذا القسم للمستخدم بتعيين النص الأساسي ونص الإغلاق لحرف المطالبة لنوع المطالبة بناءً على اللغة ، والتي يمكن استخدامها في الطباعة." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56016,8 +56043,8 @@ msgid "This will restrict user access to other employee records" msgstr "سيؤدي هذا إلى تقييد وصول المستخدم لسجلات الموظفين الأخرى" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "سيتم التعامل مع هذا {} على أنه نقل مواد." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56145,6 +56172,12 @@ msgstr "الوقت (دقيقة)" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56431,8 +56464,8 @@ msgid "To Time" msgstr "إلى وقت" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "لا يمكن أن يكون الوقت قبل تاريخ معين." +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56462,15 +56495,15 @@ msgstr "لإضافة عمليات، حدد خانة الاختيار \"مع ال msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "لإضافة المواد الخام للعنصر المتعاقد عليه من الباطن في حالة تعطيل خيار تضمين العناصر المفككة." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "للسماح بزيادة الفواتير ، حدّث "Over Billing Allowance" في إعدادات الحسابات أو العنصر." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "للسماح بوصول الاستلام / التسليم ، قم بتحديث "الإفراط في الاستلام / بدل التسليم" في إعدادات المخزون أو العنصر." @@ -56487,8 +56520,8 @@ msgid "To be Delivered to Customer" msgstr "سيتم تسليمها إلى العميل" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "لإلغاء {}، عليك إلغاء إدخال إغلاق نقطة البيع {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56499,8 +56532,8 @@ msgid "To create a Payment Request reference document is required" msgstr "لإنشاء مستند مرجع طلب الدفع مطلوب" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "لتمكين المحاسبة عن أعمال رأس المال قيد التنفيذ،" +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56512,8 +56545,8 @@ msgstr "لإدراج الأصناف غير المخزنة في تخطيط طلب msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "ل تشمل الضريبة في الصف {0} في معدل الإغلاق ، {1} ويجب أيضا تضمين الضرائب في الصفوف" @@ -56533,7 +56566,7 @@ msgstr "لإلغاء هذا ، قم بتمكين "{0}" في الشرك msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "للاستمرار في تعديل قيمة السمة هذه ، قم بتمكين {0} في إعدادات متغير العنصر." @@ -56550,10 +56583,12 @@ msgstr "لإرسال الفاتورة بدون إيصال الشراء، يرج msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "لاستخدام دفتر مالي مختلف، يرجى إلغاء تحديد \"تضمين أصول دفتر الأستاذ الافتراضي\"." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "لاستخدام دفتر حسابات مالية مختلف، يرجى إلغاء تحديد \"تضمين إدخالات دفتر الحسابات المالية الافتراضية\"." @@ -56632,8 +56667,8 @@ msgstr "تور" msgid "Total (Company Currency)" msgstr "مجموع (شركة العملات)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "الإجمالي (الائتمان)" @@ -56675,6 +56710,22 @@ msgstr "مجموع التكاليف الإضافية" msgid "Total Advance" msgstr "إجمالي المقدمة" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56722,11 +56773,11 @@ msgstr "إجمالي المبلغ المستحق" msgid "Total Amount in Words" msgstr "إجمالي المبلغ بالنص" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "مجموع الرسوم المطبقة في شراء طاولة إيصال عناصر يجب أن يكون نفس مجموع الضرائب والرسوم" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "إجمالي الأصول" @@ -56908,7 +56959,7 @@ msgstr "إجمالي المبلغ الذي تم تسليمه" msgid "Total Demand (Past Data)" msgstr "إجمالي الطلب (البيانات السابقة)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "إجمالي حقوق الملكية" @@ -56917,11 +56968,11 @@ msgstr "إجمالي حقوق الملكية" msgid "Total Estimated Distance" msgstr "مجموع المسافة المقدرة" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "المصاريف الكلية" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "إجمالي النفقات هذا العام" @@ -56959,11 +57010,11 @@ msgstr "إجمالي وقت الانتظار" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "إجمالي الدخل" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "إجمالي الدخل هذا العام" @@ -57006,7 +57057,7 @@ msgstr "إجمالي تكلفة الشحن (بعملة الشركة)" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "المسؤولية الكلية" @@ -57321,7 +57372,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "مجموع الضرائب والرسوم (عملة الشركة)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "الوقت الإجمالي (بالدقائق)" @@ -57330,7 +57381,11 @@ msgstr "الوقت الإجمالي (بالدقائق)" msgid "Total Time in Mins" msgstr "إجمالي الوقت بالدقائق" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "عدد غير مدفوع: {0}" @@ -57409,7 +57464,7 @@ msgstr "إجمالي وقت العمل على محطة العمل (بالساع msgid "Total allocated percentage for sales team should be 100" msgstr "مجموع النسبة المئوية المخصصة ل فريق المبيعات يجب أن يكون 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "يجب أن تكون نسبة المساهمة الإجمالية مساوية 100" @@ -57427,8 +57482,8 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "لا يمكن أن يكون إجمالي المدفوعات أكبر من {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57445,9 +57500,9 @@ msgstr "لا يمكن أن تتجاوز الكمية الإجمالية في ج msgid "Total {0} ({1})" msgstr "إجمالي {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "إجمالي {0} لجميع العناصر هو صفر، قد يكون عليك تغيير 'توزيع الرسوم على أساس'\\n
                    \\nTotal {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57535,27 +57590,11 @@ msgstr "معلومات حالة التتبع" msgid "Tracking URL" msgstr "رابط التتبع" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "حركة" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "عملية العملات" @@ -57608,11 +57647,11 @@ msgstr "عنصر سجل حذف المعاملة" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58002,6 +58041,10 @@ msgstr "ميزان المراجعة (بسيط)" msgid "Trial Balance for Party" msgstr "ميزان المراجعة للحزب" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58186,7 +58229,7 @@ msgstr "إعدادات ضريبة القيمة المضافة في الإمار #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58208,7 +58251,7 @@ msgstr "إعدادات ضريبة القيمة المضافة في الإمار #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58238,7 +58281,7 @@ msgstr "إعدادات ضريبة القيمة المضافة في الإمار #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58302,7 +58345,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "عامل تحويل وحدة القياس" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "معامل تحويل UOM ({0} -> {1}) غير موجود للعنصر: {2}" @@ -58376,7 +58419,7 @@ msgstr "عدم المصالحة" msgid "UnReconcile Allocations" msgstr "تخصيصات غير متوافقة" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58389,10 +58432,6 @@ msgstr "تعذر العثور على سعر الصرف من {0} إلى {1} لت msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "تعذر العثور على سعر الصرف من {0} إلى {1} لتاريخ المفتاح {2}. يرجى إنشاء سجل صرف العملات يدويا." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "تعذر العثور على النتيجة بدءا من {0}. يجب أن يكون لديك درجات دائمة تغطي 0 إلى 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "لم يتم العثور على الفترة الزمنية المناسبة للعملية {1}خلال الأيام {0} القادمة. يرجى زيادة \"تخطيط السعة لـ (أيام)\" في {2}." @@ -58417,7 +58456,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "المبلغ غير المخصصة" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "كمية غير محددة" @@ -58429,8 +58468,10 @@ msgstr "الطلبات غير المفوترة" msgid "Unblock Invoice" msgstr "الافراج عن الفاتورة" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58480,7 +58521,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58503,7 +58544,7 @@ msgstr "" msgid "Unit Price" msgstr "سعر الوحدة" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "وحدة القياس" @@ -58706,7 +58747,7 @@ msgstr "غير المجدولة" msgid "Unsecured Loans" msgstr "القروض غير المضمونة" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "طلب دفع غير مطابق" @@ -58719,7 +58760,7 @@ msgstr "غير موقعة" msgid "Unsubscribe from this Email Digest" msgstr "إلغاء الاشتراك من هذا البريد الإلكتروني دايجست" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58863,7 +58904,7 @@ msgstr "تحديث المخزون الحالي" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58927,7 +58968,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "تحديث آخر الأسعار في جميع بومس" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "يجب تفعيل خيار تحديث المخزون لفاتورة الشراء {0}" @@ -59155,7 +59196,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "استخدم سعر صرف تاريخ المعاملة" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "استخدم اسمًا مختلفًا عن اسم المشروع السابق" @@ -59244,6 +59285,10 @@ msgstr "وقت قرار المستخدم" msgid "User has not applied rule on the invoice {0}" msgstr "لم يطبق المستخدم قاعدة على الفاتورة {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "المستخدم {0} غير موجود\\n
                    \\nUser {0} does not exist" @@ -59256,6 +59301,10 @@ msgstr "المستخدم {0} ليس لديه أي ملف تعريف افتراض msgid "User {0} is already assigned to Employee {1}" msgstr "المستخدم {0} تم تعيينه بالفعل إلى موظف {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "المستخدم {0}: تمت إزالة دور الخدمة الذاتية للموظف لعدم وجود موظف مرتبط به." @@ -59264,10 +59313,6 @@ msgstr "المستخدم {0}: تمت إزالة دور الخدمة الذاتي msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "المستخدم {0}: تمت إزالة دور الموظف لعدم وجود موظف مرتبط به." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "المستخدم {} معطل. الرجاء تحديد مستخدم / أمين صندوق صالح" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59560,15 +59605,15 @@ msgstr "سعر التقييم" msgid "Valuation Rate (In / Out)" msgstr "معدل التقييم (داخل / خارج)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "معدل التقييم مفقود" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "معدل التقييم للعنصر {0} ، مطلوب لإجراء إدخالات محاسبية لـ {1} {2}." @@ -59576,7 +59621,7 @@ msgstr "معدل التقييم للعنصر {0} ، مطلوب لإجراء إد msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "معدل التقييم إلزامي إذا ادخلت قيمة مبدئية للمخزون\\n
                    \\nValuation Rate is mandatory if Opening Stock entered" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "معدل التقييم مطلوب للبند {0} في الصف {1}" @@ -59586,7 +59631,7 @@ msgstr "معدل التقييم مطلوب للبند {0} في الصف {1}" msgid "Valuation and Total" msgstr "التقييم والمجموع" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "تم تحديد معدل تقييم العناصر التي يقدمها العملاء عند الصفر." @@ -59599,14 +59644,14 @@ msgstr "تم تحديد معدل تقييم العناصر التي يقدمها msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "معدل تقييم السلعة وفقًا لفاتورة المبيعات (للتحويلات الداخلية فقط)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "لا يمكن تحديد رسوم نوع التقييم على أنها شاملة" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "لا يمكن وضع علامة على رسوم التقييم على انها شاملة" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59656,12 +59701,12 @@ msgstr "موقع ذو قيمة" msgid "Value Type" msgstr "نوع القيمة" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "القيمة كما في" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "يجب أن تكون قيمة للسمة {0} ضمن مجموعة من {1} إلى {2} في الزيادات من {3} لالبند {4}" @@ -59670,19 +59715,19 @@ msgstr "يجب أن تكون قيمة للسمة {0} ضمن مجموعة من {1 msgid "Value of Goods" msgstr "قيمة البضائع" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "قيمة الأصول الرأسمالية الجديدة" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "قيمة الشراء الجديد" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "قيمة الأصول الملغاة" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "قيمة الأصل المباع" @@ -60158,7 +60203,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60186,7 +60231,7 @@ msgstr "" msgid "Voucher No" msgstr "رقم السند" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "رقم القسيمة إلزامي" @@ -60198,7 +60243,7 @@ msgstr "عدد القسائم" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "نوع القسيمة الفرعي" @@ -60230,7 +60275,7 @@ msgstr "نوع القسيمة الفرعي" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60437,7 +60482,7 @@ msgstr "المستودع إلزامي" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "لم يتم العثور على المستودع مقابل الحساب {0}" @@ -60455,16 +60500,16 @@ msgstr "مستودع الحكيم البند الرصيد العمر والقي msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "مستودع {0} لا يمكن حذف كما توجد كمية القطعة ل {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "المستودع {0} لا ينتمي إلى الشركة {1}." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "مستودع {0} لا تنتمي إلى شركة {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "المستودع {0} غير موجود" @@ -60585,7 +60630,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "تحذير - الصف {0}: ساعات الفوترة أكثر من الساعات الفعلية" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "تحذير بشأن الأسهم السلبية" @@ -60605,7 +60650,7 @@ msgstr "تحذير: {0} أخر # {1} موجود في مدخل المخزن {2}\\ msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "تحذير : كمية المواد المطلوبة هي أقل من الحد الأدنى للطلب الكمية" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "تحذير: الكمية تتجاوز الحد الأقصى للكمية القابلة للإنتاج بناءً على كمية المواد الخام المستلمة من خلال أمر التوريد الداخلي للتعاقد من الباطن {0}." @@ -60759,10 +60804,6 @@ msgstr "مجموعة الأصناف للموقع" msgid "Website Specifications" msgstr "موقع المواصفات" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60908,7 +60949,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61084,17 +61125,17 @@ msgstr "التقدم في العمل" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61133,7 +61174,7 @@ msgstr "المواد المستهلكة في أمر العمل" msgid "Work Order Item" msgstr "بند أمر العمل" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61174,20 +61215,20 @@ msgstr "ملخص أمر العمل" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "لا يمكن إنشاء أمر العمل للسبب التالي:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "لا يمكن رفع أمر العمل مقابل قالب العنصر" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "تم عمل الطلب {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61208,7 +61249,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "طلبات العمل" @@ -61233,7 +61274,7 @@ msgstr "التقدم في العمل" msgid "Work-in-Progress Warehouse" msgstr "مستودع العمل قيد التنفيذ" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "مستودع أعمال جارية مطلوب قبل التسجيل\\n
                    \\nWork-in-Progress Warehouse is required before Submit" @@ -61286,7 +61327,7 @@ msgstr "ساعات العمل" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61518,14 +61559,6 @@ msgstr "اسم العام" msgid "Year Start Date" msgstr "تاريخ بدء العام" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61540,8 +61573,8 @@ msgid "You are importing data for the code list:" msgstr "أنت بصدد استيراد بيانات لقائمة الرموز:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "غير مسموح لك بالتحديث وفقًا للشروط المحددة في {} سير العمل." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61560,8 +61593,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "أنت تختار كمية أكبر من الكمية المطلوبة للصنف {0}. تحقق مما إذا كانت هناك أي قائمة اختيار أخرى تم إنشاؤها لطلب البيع {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "يمكنك إضافة الفاتورة الأصلية {} يدويًا للمتابعة." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61571,19 +61604,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "يمكنك أيضا نسخ - لصق هذا الرابط في متصفحك" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "يمكنك أيضًا تعيين حساب CWIP الافتراضي في الشركة {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "يمكنك تغيير الحساب الرئيسي إلى حساب الميزانية العمومية أو تحديد حساب مختلف." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61605,8 +61634,8 @@ msgid "You can only select one mode of payment as default" msgstr "يمكنك تحديد طريقة دفع واحدة فقط كطريقة افتراضية" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "يمكنك استرداد ما يصل إلى {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61624,14 +61653,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "لا يمكنك إجراء أي تغييرات على بطاقة العمل لأن أمر العمل مغلق." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "لا يمكنك معالجة الرقم التسلسلي {0} لأنه مستخدم بالفعل في جهاز SABB {1}. {2} إذا كنت ترغب في إدخال نفس الرقم التسلسلي عدة مرات، فقم بتمكين خيار \"السماح بتصنيع/استلام الرقم التسلسلي الحالي مرة أخرى\" في {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "لا يمكنك استبدال نقاط الولاء التي تزيد قيمتها عن المبلغ الإجمالي." @@ -61640,17 +61661,17 @@ msgstr "لا يمكنك استبدال نقاط الولاء التي تزيد msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "لا يمكنك تغيير السعر إذا تم ذكر قائمة المواد مقابل أي عنصر." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "لا يمكنك إنشاء {0} خلال الفترة المحاسبية المغلقة {1}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "لا يمكنك إنشاء أو إلغاء أي قيود محاسبية في فترة المحاسبة المغلقة {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "لا يمكنك إنشاء/تعديل أي قيود محاسبية حتى هذا التاريخ." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61661,32 +61682,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "لا يمكنك حذف مشروع من نوع 'خارجي'" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "لا يمكنك تحرير عقدة الجذر." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "لا يمكنك تفعيل كل من الإعدادين '{0}' و '{1}'." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "لا يمكنك المتابعة الخارجية {0} لأنها إما تم تسليمها أو غير نشطة أو موجودة في مستودع مختلف." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "لا يمكنك استرداد أكثر من {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "لا يمكنك إعادة نشر تقييم العنصر قبل {}" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "لا يمكنك إعادة تشغيل اشتراك غير ملغى." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "لا يمكنك تقديم طلب فارغ." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61700,6 +61729,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61710,8 +61743,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "ليس لديك أذونات لـ {} من العناصر في {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61737,11 +61770,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "كان لديك {} من الأخطاء أثناء إنشاء الفواتير الافتتاحية. تحقق من {} لمزيد من التفاصيل" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "لقد حددت العناصر من {0} {1}" @@ -61758,8 +61791,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "لقد قمت بتفعيل {0} و {1} في {2}. قد يؤدي هذا إلى إدراج أسعار من قائمة الأسعار الافتراضية في قائمة أسعار المعاملة." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "لقد أدخلت إشعار تسليم مكرر في الصف" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61773,19 +61806,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "يجب عليك تمكين الطلب التلقائي في إعدادات الأسهم للحفاظ على مستويات إعادة الطلب." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "لديك تغييرات غير محفوظة. هل تريد حفظ الفاتورة؟" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "يجب عليك تحديد عميل قبل إضافة عنصر." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "يجب عليك إلغاء إدخال إغلاق نقطة البيع {} لتتمكن من إلغاء هذا المستند." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "لقد اخترت مجموعة الحسابات {1} كحساب {2} في الصف {0}. يرجى اختيار حساب واحد." @@ -61837,6 +61870,10 @@ msgstr "الرمز البريدي" msgid "Zero Balance" msgstr "رصيد صفري" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "معدل صفري" @@ -61867,7 +61904,7 @@ msgstr "[هام] [ERPNext] إعادة ترتيب الأخطاء تلقائيًا msgid "`Allow Negative rates for Items`" msgstr "السماح بأسعار سلبية للعناصر" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "بعد" @@ -61887,7 +61924,7 @@ msgstr "كعنوان" msgid "as a percentage of finished item quantity" msgstr "كنسبة مئوية من كمية المنتج النهائي" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61903,10 +61940,6 @@ msgstr "مرتكز على" msgid "by {}" msgstr "بواسطة {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "لا يمكن أن يكون أكبر من 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61961,8 +61994,8 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62042,14 +62075,10 @@ msgstr "من أصل 5" msgid "paid to" msgstr "مدفوع لـ" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "تطبيق الدفع غير مثبت. يرجى تثبيته من {0} أو {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "تطبيق الدفع غير مثبت. يرجى تثبيته من {} أو {}" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62063,7 +62092,7 @@ msgstr "تطبيق الدفع غير مثبت. يرجى تثبيته من {} أ msgid "per hour" msgstr "كل ساعة" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "أداء أحد الخيارين التاليين:" @@ -62139,8 +62168,8 @@ msgstr "تم البيع" msgid "subscription is already cancelled." msgstr "تم إلغاء الاشتراك بالفعل." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "حقل مرجع الهدف" @@ -62203,10 +62232,6 @@ msgstr "عن طريق إصلاح الأصول" msgid "via BOM Update Tool" msgstr "عبر أداة تحديث قائمة المواد" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "يجب عليك تحديد حساب رأس المال قيد التقدم في جدول الحسابات" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' معطل" @@ -62219,7 +62244,7 @@ msgstr "{0} '{1}' ليس في السنة المالية {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) لا يمكن أن يكون أكبر من الكمية المخطط لها ({2}) في أمر العمل {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "قام كل من {0} و و{1}و بإرسال الأصول. للمتابعة، قم بإزالة العنصر و{2}و من الجدول." @@ -62239,7 +62264,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} القسيمة المستخدمة هي {1}. الكمية المسموح بها مستنفدة" @@ -62247,11 +62272,6 @@ msgstr "{0} القسيمة المستخدمة هي {1}. الكمية المسم msgid "{0} Digest" msgstr "{0} الملخص" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} الرقم {1} مستخدم بالفعل في {2} {3}" @@ -62333,10 +62353,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "{0} لا يمكن أن يكون سالبا" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "لا يمكن تغيير {0} باستخدام إدخالات الفتح المفتوحة." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "لا يمكن استخدام {0} كمركز تكلفة رئيسي لأنه تم استخدامه كمركز تكلفة فرعي في تخصيص مركز التكلفة {1}" @@ -62352,7 +62380,7 @@ msgstr "لا يمكن أن تكون قيمة {0} صفرًا" msgid "{0} created" msgstr "{0} تم انشاؤه" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "سيتم تخطي إنشاء السجلات التالية {0} ." @@ -62394,7 +62422,7 @@ msgstr "{0} ل {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "تم تفعيل تخصيص الدفعات بناءً على شروط الدفع للصف {0} . حدد شرط دفع للصف #{1} في قسم مراجع الدفع." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "تم تعديل {0} بعد سحبه. يرجى سحبه مرة أخرى." @@ -62402,6 +62430,10 @@ msgstr "تم تعديل {0} بعد سحبه. يرجى سحبه مرة أخرى." msgid "{0} has been submitted successfully" msgstr "{0} تم التقديم بنجاح" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} ساعات" @@ -62410,7 +62442,11 @@ msgstr "{0} ساعات" msgid "{0} in row {1}" msgstr "{0} في الحقل {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62424,7 +62460,7 @@ msgstr "{0} بُعد محاسبي إلزامي.
                    يُرجى تحديد قيم msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} قيد التشغيل بالفعل لـ {1}" @@ -62432,7 +62468,7 @@ msgstr "{0} قيد التشغيل بالفعل لـ {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "تم حظر {0} حتى لا تتم متابعة هذه المعاملة" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} في وضع المسودة. يرجى إرساله قبل إنشاء الأصل." @@ -62445,11 +62481,11 @@ msgstr "{0} إلزامي للصنف {1}\\n
                    \\n{0} is mandatory for Item {1}" msgid "{0} is mandatory for account {1}" msgstr "{0} إلزامي للحساب {1}" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} إلزامي. ربما لم يتم إنشاء سجل صرف العملات من {1} إلى {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} إلزامي. ربما لم يتم إنشاء سجل سعر صرف العملة ل{1} إلى {2}." @@ -62457,7 +62493,7 @@ msgstr "{0} إلزامي. ربما لم يتم إنشاء سجل سعر صرف msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} ليس حسابًا مصرفيًا للشركة" @@ -62473,7 +62509,7 @@ msgstr "{0} ليس من نوع المخزون" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} ليست قيمة صالحة للسمة {1} للعنصر {2}." @@ -62489,17 +62525,17 @@ msgstr "{0} لم تتم إضافته في الجدول" msgid "{0} is not enabled in {1}" msgstr "{0} غير ممكّن في {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} لا يعمل. لا يمكن تشغيل الأحداث لهذا المستند." +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} ليس المورد الافتراضي لأية عناصر." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} معلق حتى {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62549,7 +62585,7 @@ msgstr "{0} المعلمة غير صالحة" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} لا يمكن فلترة المدفوعات المدخلة {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "يتم استلام كمية {0} من الصنف {1} في المستودع {2} بسعة {3}." @@ -62562,7 +62598,7 @@ msgstr "{0} إلى {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "تم حجز الوحدات {0} للصنف {1} في المستودع {2}، يرجى إلغاء حجزها لـ {3} في عملية مطابقة المخزون." @@ -62578,16 +62614,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "يلزم {0} وحدة من {1} في {2} مع بُعد المخزون: {3} على {4} {5} لـ {6} لإكمال المعاملة." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} وحدات من {1} لازمة ل {2} في {3} {4} ل {5} لإكمال هذه المعاملة." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} وحدة من {1} مطلوبة في {2} على {3} {4} لإكمال هذه المعاملة." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} وحدات من {1} لازمة في {2} لإكمال هذه المعاملة." @@ -62595,7 +62631,7 @@ msgstr "{0} وحدات من {1} لازمة في {2} لإكمال هذه الم msgid "{0} until {1}" msgstr "{0} حتى {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} أرقام تسلسلية صالحة للبند {1}" @@ -62603,7 +62639,7 @@ msgstr "{0} أرقام تسلسلية صالحة للبند {1}" msgid "{0} variants created." msgstr "تم إنشاء المتغيرات {0}." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "عرض {0} غير مدعوم حاليًا في التقارير المالية المخصصة." @@ -62637,7 +62673,7 @@ msgstr "{0} {1} إنشاء" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} غير موجود\\n
                    \\n{0} {1} does not exist" @@ -62671,12 +62707,21 @@ msgstr "يتم تخصيص {0} {1} مرتين في هذه المعاملة الم msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} مرتبط بالفعل بالرمز المشترك {2}." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} مرتبط ب {2}، ولكن حساب الطرف هو {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} تم إلغائه أو مغلق" @@ -62708,6 +62753,10 @@ msgstr "{0} {1} قدمت الفواتير بشكل كامل" msgid "{0} {1} is not active" msgstr "{0} {1} غير نشطة" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} غير مرتبط {2} {3}" @@ -62813,27 +62862,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0} ، أكمل العملية {1} قبل العملية {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62849,7 +62894,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "{0}: {1} هو حساب جماعي." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} يجب أن يكون أقل من {2}" @@ -62861,7 +62906,7 @@ msgstr "{count} الأصول التي تم إنشاؤها لـ {item_code}" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} تم إلغائه أو مغلق." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "لا يمكن أن يكون حجم العينة {item_name}({sample_size}) أكبر من الكمية المقبولة ({accepted_quantity})" @@ -62873,32 +62918,7 @@ msgstr "{ref_doctype} {ref_name} الحالة {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "لا يمكن إلغاء {} نظرًا لاسترداد نقاط الولاء المكتسبة. قم أولاً بإلغاء {} لا {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "قام {} بتقديم أصول مرتبطة به. تحتاج إلى إلغاء الأصول لإنشاء عائد شراء." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} الفواتير" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} هي شركة تابعة." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} مرتبط بالفعل بـ {} آخر" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} مرتبط بالفعل بـ {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} لا يؤثر على الحساب المصرفي {}" - diff --git a/erpnext/locale/bg.po b/erpnext/locale/bg.po index e38d23e77db..472fb083d2c 100644 --- a/erpnext/locale/bg.po +++ b/erpnext/locale/bg.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-24 19:23\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: bg_BG\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "" @@ -277,7 +268,7 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" +msgid "'Based On' and 'Group By' can not be the same" msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "" @@ -326,12 +317,12 @@ msgstr "" msgid "'To Date' is required" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 @@ -617,7 +608,7 @@ msgstr "" msgid "<0" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -781,8 +772,8 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " msgstr "" #: erpnext/accounts/services/billing_validation.py:136 @@ -790,7 +781,7 @@ msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -951,8 +942,8 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 @@ -963,8 +954,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -981,7 +972,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1014,7 +1005,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1190,7 +1181,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "" @@ -1221,12 +1212,16 @@ msgstr "" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1479,7 +1474,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1609,11 +1604,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1892,8 +1887,8 @@ msgstr "" msgid "Accounting Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "" @@ -1918,8 +1913,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1967,7 +1962,11 @@ msgstr "" msgid "Accounting Period" msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2165,8 +2164,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2394,7 +2393,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2404,7 +2403,7 @@ msgstr "" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2554,8 +2553,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2720,10 +2719,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2822,12 +2817,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -2970,7 +2965,7 @@ msgstr "" msgid "Additional Discount Amount (Company Currency)" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3089,11 +3084,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3358,7 +3349,7 @@ msgstr "" msgid "Advance amount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "" @@ -3427,7 +3418,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "" @@ -3547,7 +3538,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3571,7 +3562,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3685,6 +3676,13 @@ msgstr "" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3861,7 +3859,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3873,7 +3871,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3892,15 +3890,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3924,7 +3922,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "" @@ -3934,7 +3932,7 @@ msgstr "" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3964,7 +3962,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4047,7 +4045,7 @@ msgid "Allow Alternative Item" msgstr "" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4155,7 +4153,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4436,12 +4434,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4476,10 +4476,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4487,10 +4487,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4506,12 +4502,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4716,7 +4712,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4942,12 +4938,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5161,7 +5157,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5338,10 +5334,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5367,6 +5359,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5408,6 +5404,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5490,18 +5495,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5540,7 +5545,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5612,7 +5617,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5778,7 +5783,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5910,7 +5915,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5926,7 +5931,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -5979,7 +5984,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6057,7 +6062,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6078,7 +6083,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6088,6 +6093,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6106,19 +6116,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6139,6 +6153,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6159,7 +6177,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6167,26 +6185,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6398,7 +6412,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6459,7 +6473,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6584,7 +6598,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6680,7 +6694,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6798,7 +6812,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6817,7 +6831,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6832,7 +6846,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6963,7 +6977,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -6984,7 +6998,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7036,10 +7050,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7078,15 +7088,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7167,7 +7181,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7237,6 +7251,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7297,7 +7315,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7397,7 +7415,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7642,7 +7660,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7654,7 +7672,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7666,7 +7684,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7942,8 +7960,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7974,15 +7992,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -7990,6 +8008,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8055,8 +8077,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8169,7 +8191,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8644,7 +8666,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8872,7 +8894,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8890,7 +8912,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8898,7 +8920,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9225,6 +9247,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9396,7 +9422,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9425,21 +9451,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9468,7 +9497,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9476,11 +9505,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9495,10 +9519,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9523,6 +9543,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9532,14 +9557,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9547,7 +9572,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9559,7 +9584,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9584,7 +9609,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9611,7 +9636,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9620,6 +9645,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9637,7 +9666,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9650,7 +9679,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9682,7 +9711,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9707,19 +9736,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9731,12 +9764,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9745,19 +9782,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10184,8 +10225,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10212,8 +10253,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10407,7 +10448,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10465,7 +10506,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10475,7 +10516,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10654,7 +10695,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10668,7 +10709,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10898,9 +10939,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11337,7 +11378,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11407,7 +11448,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11447,10 +11488,6 @@ msgstr "" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11615,7 +11652,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11659,11 +11696,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11702,6 +11739,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11710,14 +11755,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11739,7 +11776,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12183,7 +12220,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12499,7 +12536,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12799,7 +12836,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12824,7 +12861,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12882,7 +12919,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12894,7 +12931,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12916,11 +12953,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13045,14 +13082,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13064,7 +13101,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13074,7 +13111,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13098,7 +13135,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13328,10 +13365,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13350,7 +13383,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13365,7 +13398,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13593,7 +13626,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13627,7 +13660,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13722,7 +13755,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13732,16 +13765,16 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13775,11 +13808,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13860,7 +13893,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13940,16 +13973,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14008,12 +14041,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14136,7 +14169,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14201,7 +14234,7 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14264,10 +14297,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15098,7 +15127,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15243,10 +15272,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15353,11 +15378,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15519,7 +15544,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16200,8 +16225,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16295,7 +16320,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16353,7 +16378,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16683,7 +16708,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16699,7 +16724,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16769,7 +16794,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16798,11 +16823,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16830,7 +16855,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16933,11 +16958,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17000,7 +17025,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17173,7 +17198,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17182,8 +17207,8 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' @@ -17191,8 +17216,8 @@ msgstr "" msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17442,8 +17467,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17808,11 +17833,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "" @@ -17850,22 +17875,6 @@ msgstr "" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18171,7 +18180,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18325,7 +18334,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18549,7 +18558,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18737,7 +18746,7 @@ msgstr "" msgid "Empty" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18746,7 +18755,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18825,6 +18834,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19096,7 +19111,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19219,7 +19234,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19274,6 +19289,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19309,7 +19328,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19333,7 +19352,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19365,18 +19384,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19391,7 +19412,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19440,7 +19461,7 @@ msgstr "" msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19721,7 +19742,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19808,7 +19829,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20067,8 +20088,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20266,7 +20287,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20304,15 +20325,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20321,7 +20342,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20480,11 +20501,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20553,7 +20574,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20566,7 +20587,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20674,7 +20695,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20773,10 +20794,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20790,11 +20807,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20827,7 +20841,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20963,7 +20977,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -20988,10 +21002,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21058,11 +21068,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21095,12 +21105,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21113,8 +21123,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21130,21 +21140,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21163,11 +21169,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21255,6 +21265,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21798,7 +21823,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21923,6 +21948,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21976,7 +22005,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22319,7 +22348,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22502,7 +22531,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22642,7 +22671,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22945,7 +22974,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -22973,7 +23002,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23009,7 +23038,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23592,15 +23621,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23638,7 +23667,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23739,7 +23768,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23957,14 +23986,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24441,7 +24470,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24527,7 +24556,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24536,7 +24565,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24544,11 +24573,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24557,7 +24586,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24574,7 +24603,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24657,7 +24686,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24854,7 +24883,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24870,12 +24899,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25005,7 +25034,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25030,7 +25059,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25056,7 +25085,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25077,7 +25106,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25119,8 +25148,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25139,7 +25168,7 @@ msgstr "" msgid "Invalid Amount" msgstr "" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25156,11 +25185,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25180,13 +25209,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25207,11 +25236,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25241,7 +25270,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25250,7 +25279,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25289,7 +25318,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25306,7 +25335,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25318,8 +25347,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25327,7 +25356,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25344,7 +25373,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25354,14 +25383,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25393,7 +25422,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26356,10 +26385,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26368,7 +26393,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26417,12 +26442,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26455,7 +26480,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26529,7 +26554,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26690,7 +26715,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26722,7 +26747,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26731,12 +26756,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26832,7 +26857,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27028,7 +27053,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27182,7 +27207,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27213,7 +27238,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27221,8 +27246,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27279,7 +27304,7 @@ msgstr "" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27326,8 +27351,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27339,7 +27364,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27384,7 +27409,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27500,7 +27525,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27619,7 +27644,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27655,7 +27680,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27669,7 +27694,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27684,7 +27709,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27700,10 +27725,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27712,6 +27733,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27721,6 +27746,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27753,6 +27779,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27785,7 +27815,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27817,10 +27847,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27871,6 +27897,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27887,7 +27917,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -27927,7 +27957,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27937,7 +27967,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28007,7 +28037,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28070,20 +28100,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28146,11 +28175,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28496,7 +28533,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28617,7 +28654,7 @@ msgstr "" msgid "Lead" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28711,7 +28748,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28859,7 +28896,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28888,7 +28925,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28918,7 +28955,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29014,7 +29051,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29181,7 +29218,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29267,7 +29304,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29505,7 +29542,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29602,7 +29639,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29749,7 +29786,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29832,8 +29869,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30055,7 +30092,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30233,10 +30270,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30263,7 +30296,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30374,7 +30407,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30424,7 +30457,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30446,7 +30479,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30460,7 +30493,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30580,13 +30613,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30755,7 +30788,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30790,7 +30823,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31136,7 +31169,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31145,11 +31178,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31174,11 +31207,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31186,7 +31219,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31198,7 +31231,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31210,7 +31243,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31218,12 +31251,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31472,8 +31505,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31481,7 +31514,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31502,7 +31535,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31511,10 +31544,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31599,11 +31632,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31647,7 +31676,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31657,12 +31686,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31740,8 +31769,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31791,7 +31820,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31799,7 +31828,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31813,11 +31842,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32061,7 +32090,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32134,6 +32163,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32146,8 +32176,8 @@ msgstr "" msgid "New Workplace" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32156,6 +32186,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32168,7 +32202,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32232,16 +32266,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32249,15 +32282,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32300,11 +32333,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32407,6 +32435,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32452,7 +32484,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32489,10 +32521,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32589,7 +32617,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32627,15 +32655,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32664,7 +32697,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32701,7 +32734,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32709,11 +32742,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32765,7 +32793,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32776,8 +32804,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32791,8 +32819,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32855,10 +32883,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32875,10 +32899,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32891,7 +32911,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33136,7 +33156,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33312,11 +33332,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33351,7 +33371,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33416,7 +33436,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33482,7 +33502,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33635,7 +33655,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33665,7 +33685,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33693,7 +33713,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33702,7 +33722,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33732,20 +33752,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33754,7 +33774,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33797,7 +33817,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33888,7 +33908,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33912,7 +33932,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34098,6 +34118,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34114,10 +34138,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34403,7 +34423,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34457,7 +34477,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34538,11 +34558,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34559,12 +34579,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34615,10 +34635,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34684,6 +34700,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34731,7 +34752,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34829,7 +34850,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34889,7 +34910,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34910,7 +34931,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34933,7 +34954,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -34953,7 +34974,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34965,19 +34986,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35007,11 +35028,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35030,7 +35051,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35655,7 +35676,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35782,7 +35803,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35868,7 +35889,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35889,7 +35910,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35925,7 +35946,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36435,7 +36456,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36510,7 +36531,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36532,7 +36553,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36632,7 +36653,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36839,11 +36860,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37359,12 +37380,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37386,7 +37407,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37537,15 +37558,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37553,7 +37565,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37561,19 +37572,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37589,7 +37600,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37597,35 +37608,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37667,7 +37675,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37680,11 +37688,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37700,15 +37708,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37716,11 +37724,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37732,7 +37740,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37744,11 +37752,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37773,7 +37781,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37785,11 +37793,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37805,7 +37813,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37821,7 +37829,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37830,7 +37838,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37866,7 +37874,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -37996,7 +38004,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38032,11 +38040,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38065,12 +38069,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38086,9 +38090,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38098,7 +38102,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38121,7 +38125,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38130,6 +38134,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38154,11 +38162,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38187,6 +38195,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38194,11 +38203,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38207,7 +38217,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38219,7 +38229,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38235,6 +38245,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38268,22 +38279,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38292,7 +38307,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38300,10 +38315,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38312,18 +38335,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38361,12 +38376,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38375,7 +38390,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38399,20 +38414,16 @@ msgstr "" msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38441,7 +38452,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38471,13 +38482,11 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" msgstr "" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38485,7 +38494,7 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38502,8 +38511,7 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" +msgid "Please set Tax ID for the customer '{0}'" msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 @@ -38523,15 +38531,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38548,8 +38556,7 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" +msgid "Please set an Address on the Company '{0}'" msgstr "" #: erpnext/stock/services/base_stock_gl_composer.py:194 @@ -38568,24 +38575,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38617,11 +38621,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38629,7 +38633,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38684,7 +38688,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38692,7 +38696,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38702,8 +38706,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38711,11 +38715,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38723,6 +38727,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38886,7 +38898,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38911,7 +38923,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38954,7 +38966,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -38963,7 +38975,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39156,6 +39168,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39245,7 +39261,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39387,7 +39403,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39508,7 +39524,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39619,7 +39635,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39827,7 +39843,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40009,7 +40025,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40135,7 +40151,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40160,7 +40176,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40363,7 +40379,7 @@ msgstr "" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "" @@ -40392,6 +40408,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40400,8 +40420,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40474,7 +40494,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40554,7 +40574,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40605,7 +40625,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40751,7 +40771,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40784,9 +40804,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41014,8 +41034,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41056,7 +41076,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41080,11 +41100,11 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41099,7 +41119,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41148,7 +41168,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41208,7 +41228,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41298,7 +41318,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41318,7 +41338,7 @@ msgid "Purchase Receipt Trends " msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41546,7 +41566,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41565,7 +41585,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41630,7 +41650,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41667,7 +41687,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41762,7 +41782,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -41948,7 +41968,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42025,7 +42045,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42108,7 +42128,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42152,12 +42172,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42308,7 +42328,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42336,11 +42356,11 @@ msgstr "" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42348,6 +42368,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42373,7 +42397,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42613,7 +42637,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42797,7 +42821,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43116,7 +43140,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43358,8 +43382,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43535,6 +43559,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43585,7 +43613,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43665,7 +43693,7 @@ msgstr "" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -43957,7 +43985,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44064,7 +44092,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44103,7 +44131,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44254,7 +44282,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44337,7 +44365,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44383,6 +44411,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44467,7 +44504,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44583,11 +44620,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44766,6 +44803,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44804,7 +44845,7 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." msgstr "" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material @@ -44849,7 +44890,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44865,13 +44906,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45365,6 +45406,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45789,11 +45834,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45877,23 +45922,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45969,13 +46014,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -45987,7 +46035,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -45995,12 +46043,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46012,7 +46060,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46020,6 +46068,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46032,11 +46084,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46059,8 +46118,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46072,7 +46131,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46084,6 +46143,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46112,16 +46175,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46137,12 +46200,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46153,15 +46220,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46173,24 +46240,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46206,6 +46297,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46225,7 +46320,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46248,7 +46343,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46256,17 +46351,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46286,11 +46381,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46300,7 +46395,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46309,6 +46404,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46321,7 +46420,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46345,7 +46444,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46414,7 +46513,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46422,19 +46521,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46446,11 +46553,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46458,6 +46569,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46474,6 +46598,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46514,71 +46646,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46591,10 +46662,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46615,19 +46682,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46643,11 +46710,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46675,24 +46742,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46713,6 +46780,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46734,7 +46804,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46765,7 +46835,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46789,7 +46859,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46797,12 +46867,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46821,11 +46891,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46833,7 +46903,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46845,7 +46915,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46870,10 +46940,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46926,15 +46996,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -46973,7 +47047,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47034,10 +47108,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47105,7 +47175,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47404,7 +47474,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47621,8 +47691,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48029,7 +48099,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48061,7 +48131,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48171,7 +48241,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48182,7 +48252,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48468,7 +48538,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48489,7 +48559,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48554,7 +48624,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48579,7 +48649,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48609,7 +48679,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48623,13 +48693,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48720,6 +48790,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48861,10 +48932,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49012,7 +49087,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49096,7 +49171,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49153,10 +49228,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49198,6 +49274,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49215,7 +49295,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49260,7 +49340,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49272,7 +49352,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49292,21 +49372,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49321,25 +49398,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49359,7 +49437,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49460,6 +49538,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49508,7 +49590,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49516,122 +49598,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49713,7 +49685,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49822,12 +49794,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49851,7 +49823,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49866,7 +49838,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49971,7 +49943,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -49989,7 +49961,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50015,7 +49987,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50113,15 +50085,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50189,7 +50161,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50617,6 +50589,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50819,7 +50792,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50922,11 +50895,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -50987,7 +50960,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51043,7 +51016,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51111,7 +51084,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51148,8 +51121,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51279,7 +51252,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51292,7 +51265,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51345,7 +51323,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51410,10 +51388,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51443,7 +51437,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51472,10 +51466,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51556,7 +51554,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51684,7 +51682,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51766,16 +51764,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51942,7 +51944,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52025,7 +52027,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52050,15 +52052,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52228,7 +52230,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52387,8 +52389,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52407,7 +52409,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52422,7 +52424,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52430,7 +52432,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52644,7 +52646,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52716,7 +52718,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52754,7 +52756,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52828,7 +52830,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52847,7 +52849,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52876,7 +52878,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53018,7 +53020,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53196,7 +53198,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53378,7 +53380,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53526,7 +53528,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53711,10 +53713,6 @@ msgstr "" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53800,7 +53798,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53861,7 +53859,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -53971,11 +53969,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54450,7 +54448,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54662,7 +54660,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -54969,12 +54967,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -54982,10 +54976,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55010,6 +55012,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55027,8 +55033,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55039,11 +55048,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55091,15 +55104,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55148,6 +55161,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55169,8 +55186,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55198,7 +55215,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55210,7 +55227,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55246,7 +55263,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55284,11 +55301,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55337,6 +55354,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55346,7 +55367,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55363,7 +55384,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55380,7 +55401,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55399,11 +55420,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55425,16 +55446,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55473,7 +55494,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55497,7 +55518,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55505,7 +55526,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55513,6 +55534,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55521,7 +55546,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55533,7 +55558,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55550,6 +55575,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55566,10 +55595,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55598,20 +55623,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55662,15 +55687,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55692,7 +55721,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55710,7 +55739,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "" @@ -55852,7 +55881,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55916,7 +55945,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55943,10 +55972,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56004,7 +56033,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56133,6 +56162,12 @@ msgstr "" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56419,7 +56454,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56450,15 +56485,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56475,7 +56510,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56487,7 +56522,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56500,8 +56535,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56521,7 +56556,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56538,10 +56573,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56620,8 +56657,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56663,6 +56700,22 @@ msgstr "" msgid "Total Advance" msgstr "" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56710,11 +56763,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56896,7 +56949,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56905,11 +56958,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "" @@ -56947,11 +57000,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "" @@ -56994,7 +57047,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57309,7 +57362,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57318,7 +57371,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57397,7 +57454,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57415,7 +57472,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57433,8 +57490,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57523,27 +57580,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57596,11 +57637,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -57990,6 +58031,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58174,7 +58219,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58196,7 +58241,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58226,7 +58271,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58290,7 +58335,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58364,7 +58409,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58377,10 +58422,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58405,7 +58446,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58417,8 +58458,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58468,7 +58511,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58491,7 +58534,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58694,7 +58737,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58707,7 +58750,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58851,7 +58894,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58915,7 +58958,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59143,7 +59186,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59232,6 +59275,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59244,6 +59291,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59252,10 +59303,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59548,15 +59595,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59564,7 +59611,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59574,7 +59621,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59587,13 +59634,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59644,12 +59691,12 @@ msgstr "" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59658,19 +59705,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60146,7 +60193,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60174,7 +60221,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60186,7 +60233,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60218,7 +60265,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60425,7 +60472,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60443,16 +60490,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60573,7 +60620,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60593,7 +60640,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60747,10 +60794,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60896,7 +60939,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61072,17 +61115,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61121,7 +61164,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61162,20 +61205,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61196,7 +61239,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61221,7 +61264,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61274,7 +61317,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61506,14 +61549,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61528,7 +61563,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61548,7 +61583,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61559,19 +61594,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61593,7 +61624,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61612,14 +61643,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61628,16 +61651,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61649,15 +61672,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61665,7 +61696,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61673,7 +61704,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61688,6 +61719,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61698,7 +61733,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61725,11 +61760,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61746,7 +61781,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61761,19 +61796,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61825,6 +61860,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61855,7 +61894,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61875,7 +61914,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61891,10 +61930,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61949,8 +61984,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62030,14 +62065,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62051,7 +62082,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62127,8 +62158,8 @@ msgstr "" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62191,10 +62222,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62207,7 +62234,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62227,7 +62254,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62235,11 +62262,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62321,10 +62343,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62340,7 +62370,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62382,7 +62412,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62390,6 +62420,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62398,7 +62432,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62412,7 +62450,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62420,7 +62458,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62433,11 +62471,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62445,7 +62483,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62461,7 +62499,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62477,16 +62515,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62537,7 +62575,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62550,7 +62588,7 @@ msgstr "" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62566,16 +62604,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62583,7 +62621,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62591,7 +62629,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62625,7 +62663,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62659,12 +62697,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62696,6 +62743,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62801,27 +62852,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62837,7 +62884,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62849,7 +62896,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62861,32 +62908,7 @@ msgstr "" msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/bs.po b/erpnext/locale/bs.po index 30ce80fbb7f..cf5e37e713c 100644 --- a/erpnext/locale/bs.po +++ b/erpnext/locale/bs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-24 19:23\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Bosnian\n" "MIME-Version: 1.0\n" @@ -18,20 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: bs_BA\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "\n" -"\t\t\tŠarža {0} artikla {1} ima negativne zalihe u skladištu {2}{3}.\n" -"\t\t\tDodaj količinu zaliha od {4} da biste nastavili s ovim unosom.\n" -"\t\t\tAko nije moguće izvršiti unos prilagođavanja, omogućite 'Dozvoli Negativne Zalihe za Šaržu' za Šaržu {0} ili u Postavkama Zaliha da biste nastavili.\n" -"\t\t\tMeđutim, omogućavanje ove postavke može dovesti do negativnih zaliha u sistemu.\n" -"\t\t\tStoga, molimo vas da osigurate da se nivoi zaliha što prije prilagode kako bi se održala ispravna stopa vrednovanja." - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -116,11 +102,11 @@ msgstr "Ne može se poništiti izbor opcije \"Fiksna Imovina\", jer postoji zapi msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SB-01::10\" za \"SB-01\" do \"SB-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Na Zalihama" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Obavezni Artikli" @@ -282,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'Dozvoli višestruke Prodajne Naloge naspram Nabavnog Naloga Klijenta'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Na Osnovu' i 'Grupiraj Po' ne mogu biti isti" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -308,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Od datuma' mora biti nakon 'Do datuma'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Ima Serijski Broj' ne može biti 'Da' za artikal koji nije na zalihama" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "'Kontrola Obavezna prije Dostave' je onemogućena za artikal {0}, nema potrebe za kreiranjem Kontrole Kvaliteta" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "'Potrebna kontrola prije kupovine' je onemogućena za artikal {0}, nema potrebe za kreiranjem kvaliteta kontrole" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Početno'" @@ -331,13 +317,13 @@ msgstr "'Početno'" msgid "'To Date' is required" msgstr "'Do Datuma' je obavezno" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'Do Paketa Broj' ne može biti manje od 'Od Paketa Broj.'" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Ažuriraj Zalihe' se ne može provjeriti jer se artikli ne isporučuju putem {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -622,7 +608,7 @@ msgstr "Iznad 90" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "Nije moguće kreirati imovinu.

                    Pokušavate kreirati {0} imovinu od {2} {3}.
                    Međutim, kupljeno je samo {1} artikala i {4} imovina već postoji za {5}." @@ -831,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Dokument o plaćanju potreban za red(ove): {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Ne može se fakturisati više od predviđenog iznosa za sljedeće artikle:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Slijedeći {0} ne pripada {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1054,9 +1040,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Grupa Klijenta postoji sa istim imenom, molimo promijenite naziv klijenta ili preimenujte Grupu Klijenta" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1066,9 +1052,9 @@ msgstr "Lista Praznika se može dodati kako bi se isključilo brojanje praznika msgid "A Lead requires either a person's name or an organization's name" msgstr "Potencijalni Klijent zahtijeva ili ime osobe ili ime poduzeća" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Otpremnica se može kreirati samo za nacrt Dostavnice." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1084,7 +1070,7 @@ msgstr "Cjenovnik je skup cijena artikala za Prodaju, Kupovinu ili oboje" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Proizvod ili Usluga koja se kupuje, prodaje ili drži na zalihama." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Posao usaglašavanja {0} radi za iste filtere. Ne mogu se sada usglasiti" @@ -1117,7 +1103,7 @@ msgstr "Vozač mora biti naveden da bi se podnijelo." msgid "A logical Warehouse against which stock entries are made." msgstr "Logičko skladište naspram kojeg se vrše knjiženja zaliha." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "Došlo je do konflikta imenovanja serije prilikom kreiranja serijskih brojeva. Molimo vas da promijenite imenovanje serije za artikal {0}." @@ -1293,7 +1279,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Prihvaćena Količina u Jedinici Zaliha" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Prihvaćena količina" @@ -1324,12 +1310,16 @@ msgstr "Pristupni Ključ" msgid "Access Key is required for Service Provider: {0}" msgstr "Pristupni ključ je potreban za davaoca usluga: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "Prema CEFACT/ICG/2010/IC013 ili CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "Prema Sastavnici {0}, artikal '{1}' nedostaje u unosu zaliha." @@ -1582,7 +1572,7 @@ msgstr "Račun je obavezan za unos uplate" msgid "Account is required" msgstr "Račun je obavezan" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Račun nije pronađen" @@ -1712,11 +1702,11 @@ msgstr "Račun: {0} je Kapitalni Rad u toku i ne može se ažurirati Nalo msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Račun: {0} se može ažurirati samo putem Transakcija Zaliha" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Račun: {0} nije dozvoljen pod Unos plaćanja" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Račun: {0} sa valutom: {1} se ne može odabrati" @@ -1995,8 +1985,8 @@ msgstr "Filter Knjigovodstvenih Dimenzija" msgid "Accounting Entries" msgstr "Knjigovodstveni Unosi" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Knjigovodstveni Unos za Imovinu" @@ -2021,8 +2011,8 @@ msgstr "Knjigovodstveni Unos za Servis" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2070,7 +2060,11 @@ msgstr "Knjigovodstveno Uvođenje" msgid "Accounting Period" msgstr "Knjigovodstveni Period" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Knjigovodstveni Period se preklapa sa {0}" @@ -2268,8 +2262,8 @@ msgstr "Račun Akumulirane Amortizacije" msgid "Accumulated Depreciation Amount" msgstr "Iznos Akumulirane Amortizacije" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Akumulirana Amortizacija na dan" @@ -2497,7 +2491,7 @@ msgstr "Stvarni Saldo Količinski" msgid "Actual Batch Quantity" msgstr "Stvarna Šaržna Količina" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Stvarni Trošak" @@ -2507,7 +2501,7 @@ msgstr "Stvarni Trošak" msgid "Actual Date" msgstr "Stvarni Datum" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2657,8 +2651,8 @@ msgstr "Stvarno vrijeme u satima (preko rasporeda vremena)" msgid "Actual qty in stock" msgstr "Stvarna Količina na Zalihama" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Stvarni tip PDV-a ne može se uključiti u cijenu Artikla u redu {0}" @@ -2823,10 +2817,6 @@ msgstr "Dodaj Serijski / Šaržni Broj" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Dodaj Serijski / Šaržni Broj (Odbijena Količina)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "Dodaj Prefiks Serije Imenovanja" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Dodaj zalihe" @@ -2925,13 +2915,13 @@ msgstr "Dodano Od" msgid "Added On" msgstr "Dodano" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Dodata uloga dobavljača korisniku {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Dodata {1} uloga korisniku {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3073,7 +3063,7 @@ msgstr "Iznos dodatnog popusta" msgid "Additional Discount Amount (Company Currency)" msgstr "Dodatni iznos popusta (Valuta Poduzeća)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "Dodatni Iznos Popusta ({discount_amount}) ne može premašiti ukupan iznos prije takvog popusta ({total_before_discount})" @@ -3192,16 +3182,8 @@ msgid "Additional Transferred Qty" msgstr "Dodatna Prenesena Količina" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "Dodatna Prenesena Količina {0}\n" -"\t\t\t\t\tne može biti veća od {1}.\n" -"\t\t\t\t\tDa biste ovo ispravili, povećajte procentualnu vrijednost\n" -"\t\t\t\t\tpolja 'Prenesi Dodatne Sirovine u Nedovršenu Proizvodnju'\n" -"\t\t\t\t\tu Postavkama Proizvodnje." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3465,7 +3447,7 @@ msgstr "Tip Verifikata Predujma" msgid "Advance amount" msgstr "Iznos Predujma" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Iznos Predujma ne može biti veći od {0} {1}" @@ -3534,7 +3516,7 @@ msgstr "Naspram" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Naspram Računa" @@ -3654,7 +3636,7 @@ msgstr "Naspram Fakture Dobavljača {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Naspram Verifikata" @@ -3678,7 +3660,7 @@ msgstr "Naspram Verifikata Broj" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Naspram Verifikata Tipa" @@ -3792,6 +3774,13 @@ msgstr "Aviopoduzeće" msgid "Algorithm" msgstr "Algoritam" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3968,7 +3957,7 @@ msgstr "Sve fakture i narudžbe za ovog klijenta bit će izrađene u ovoj valuti msgid "All items are already requested" msgstr "Svi artikli su već traženi" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Svi Artikli su već Fakturisani/Vraćeni" @@ -3980,7 +3969,7 @@ msgstr "Svi Artikli su već primljeni" msgid "All items have already been transferred for this Work Order." msgstr "Svi Artikli su već prenesen za ovaj Radni Nalog." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Svi Artiklie u ovom dokumentu već imaju povezanu Kontrolu Kvaliteta." @@ -3999,16 +3988,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Svi komentari i e-pošta kopirat će se iz jednog dokumenta u drugi novostvoreni dokument (Potencijalni Klijent -> Prilika-> Ponuda) kroz dokumente Prodajne Podrške." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Svi artikli su već vraćeni." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Svi obavezni Artikli (sirovine) bit će preuzeti iz Sastavnice i popunjene u ovoj tabeli. Ovdje također možete promijeniti izvorno skladište za bilo koji artikal. A tokom proizvodnje možete pratiti prenesene sirovine iz ove tabele." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Svi ovi Artikli su već Fakturisani/Vraćeni" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4031,7 +4020,7 @@ msgstr "Automatski Dodjeli Predujam (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "Dodijeli Puni Iznos Artiklima Zaliha" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Alociraj iznos uplate" @@ -4041,7 +4030,7 @@ msgstr "Alociraj iznos uplate" msgid "Allocate Payment Based On Payment Terms" msgstr "Dodjeli Plaćanje na osnovu Uslova Plaćanja" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Dodijeli zahtjev za plaćanje" @@ -4071,7 +4060,7 @@ msgstr "Dodjeljeno" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4154,8 +4143,8 @@ msgid "Allow Alternative Item" msgstr "Dozvoli Alternativni Artikal" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Dozvoli Alternativni Artikal mora biti označena za Artikal {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4262,7 +4251,7 @@ msgstr "Dozvoli Ponudu sa nultom količinom" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Dozvoli Preimenovanje Vrijednosti Atributa" @@ -4543,14 +4532,16 @@ msgstr "Dozvoljeni Artikli" msgid "Allowed To Transact With" msgstr "Dozvoljena Transakcija sa" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "Dozvoljene primarne uloge su 'Klijent' i 'Dobavljač'. Molimo odaberite samo jednu od ovih uloga." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "Dozvoljeni specijalni znakovi su '/' i '-'" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4583,10 +4574,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "Omogućava korisnicima da dostave ponude dobavljača s nultom količinom. Korisno kada su cijene fiksne, ali količine nisu. Npr. Ugovori o cijenama." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "Već Uvezeno" @@ -4594,10 +4585,6 @@ msgstr "Već Uvezeno" msgid "Already Picked" msgstr "Već odabrano" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Već postoji zapis za artikal {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Već postavljeni standard u Kasa profilu {0} za korisnika {1}, onemogući standard u profilu Kase" @@ -4613,12 +4600,12 @@ msgstr "Alternativna Jedinica" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Alternativni Artikal" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "Artikal Alternativa" @@ -4823,7 +4810,7 @@ msgstr "Uvijek Pitaj" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5049,12 +5036,12 @@ msgstr "Grupa Artikla je način za klasifikaciju Artikala na osnovu tipa." msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "Korisniku s ulogom 'Odgovorni Nabave' bit će poslana e-pošta s obavijesti kada se kreira automatski Materijalni Zahtjev." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Pojavila se greška prilikom ponovnog knjiženja vrijednosti artikla preko {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Došlo je do greške tokom obrade ažuriranja" @@ -5268,7 +5255,7 @@ msgstr "Primijenjen Kod Kupona" msgid "Applied on each reading." msgstr "Primjenjuje se na svako čitanje." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Primijenjena pravila odlaganja." @@ -5445,10 +5432,6 @@ msgstr "Vremena za zakazivanje Termina" msgid "Appointment Confirmation" msgstr "Potvrda Termina" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Termin je uspješno zakazan" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5474,6 +5457,10 @@ msgstr "Zakazivanje termina je onemogućeno za ovu stranicu" msgid "Appointment With" msgstr "Termin s" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Termin je kreiran. Ali Potencijalni Klijent nije pronađen. Provjeri e-poštu da potvrdite" @@ -5515,6 +5502,15 @@ msgstr "Jeste li sigurni da želite otkazati ovo {} {}?" msgid "Are you sure you want to clear all demo data?" msgstr "Jeste li sigurni da želite izbrisati sve demo podatke?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "Jeste li sigurni da želite izbrisati ovaj Artikal?" @@ -5597,18 +5593,18 @@ msgstr "Pošto je polje {0} omogućeno, vrijednost polja {1} bi trebala biti ve msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Pošto postoje postojeće podnešene transakcije naspram artikla {0}, ne možete promijeniti vrijednost {1}." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "Pošto postoje rezervisane zalihe, ne možete onemogućiti {0}." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Pošto ima dovoljno artikala podsklopa, radni nalog nije potreban za Skladište {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Pošto ima dovoljno sirovina, Materijalni Nalog nije potreban za Skladište {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5647,7 +5643,7 @@ msgstr "Artikli za Motiranje" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5719,7 +5715,7 @@ msgstr "Kapitalizacija Imovine Artikal Zalihe" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5885,7 +5881,7 @@ msgstr "Artikal Kretanja Imovine" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6017,7 +6013,7 @@ msgstr "Analiza Vrijednosti Imovine" msgid "Asset cancelled" msgstr "Imovina otkazana" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Imovina se ne može otkazati, jer je već {0}" @@ -6033,7 +6029,7 @@ msgstr "Imovina kapitalizirana nakon podnošenja Kapitalizacije Imovine {0}" msgid "Asset created" msgstr "Imovina kreirana" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Imovina kreirana nakon odvajanja od imovine {0}" @@ -6086,7 +6082,7 @@ msgstr "Imovina Podnešena" msgid "Asset transferred to Location {0}" msgstr "Imovina prebačena na lokaciju {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Imovina je ažurirana nakon što je podijeljena na Imovinu {0}" @@ -6164,7 +6160,7 @@ msgstr "Vrijednost imovine prilagođena nakon podnošenja Ispravke Vrijednosti I #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6185,7 +6181,7 @@ msgstr "Imovina nije kreirana za {item_code}. Morat ćete kreirati Imovinu ručn msgid "Assets {assets_link} created for {item_code}" msgstr "Imovina {assets_link} kreirana za {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Dodijeli Posao Personalu" @@ -6195,6 +6191,11 @@ msgstr "Dodijeli Posao Personalu" msgid "Assign to Name" msgstr "Dodijeli Imenu" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6213,19 +6214,23 @@ msgstr "Red #{0}: Izabrana količina {1} za artikl {2} je veća od raspoloživih msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "Red #{0}: Izabrana količina {1} za artikal {2} je veća od raspoloživih zaliha {3} u skladištu {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "U Redu {0}: U Serijskom i Šaržnom Paketu {1} mora imati status dokumenta kao 1, a ne 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "Najmanje jedan račun sa dobitkom ili gubitkom na kursu je obavezan" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "Najmanje jedno Sredstvo mora biti odabrano." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "Najmanje jedna Faktura mora biti odabrana." @@ -6246,6 +6251,10 @@ msgstr "Najmanje jedan od primjenjivih modula treba odabrati" msgid "At least one of the Selling or Buying must be selected" msgstr "Najmanje jedno od Prodaje ili Nabave mora biti odabrano" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "Najmanje jedan artikal sirovine mora biti prisutan u unosu zaliha za tip {0}" @@ -6266,7 +6275,7 @@ msgstr "U redu #{0}: id sekvence {1} ne može biti manji od id-a sekvence pretho msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "U redu #{0}: odabrali ste Račun Razlike {1}..." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "Red {0}: Broj Šarće je obavezan za Artikal {1}" @@ -6274,26 +6283,22 @@ msgstr "Red {0}: Broj Šarće je obavezan za Artikal {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "Red {0}: Nadređeni Redni Broj ne može se postaviti za artikal {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "Red {0}: Količina je obavezna za Šaržu {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "Red {0}: Serijski Broj je obavezan za Artikal {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "Red {0}: Serijski i Šaržni Paket {1} je već kreiran. Molimo uklonite vrijednosti iz polja serijski broj ili šarža." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "Red {0}: postavite Nadređeni Redni Broj za Artikal {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "Klijent treba da obezbijedi barem jednu sirovinu za gotov proizvod {0}." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6505,7 +6510,7 @@ msgstr "Automatsko Usglašavanje Plaćanja je onemogućeno. Omogući preko {0}" msgid "Auto Repeat Detail" msgstr "Detalji Automatskog Ponavljanja" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "Greška u Postavkama Automatskog Pdv" @@ -6566,7 +6571,7 @@ msgid "Auto reconcile Payments" msgstr "Automatski Uskladi Plaćanja" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Automatsko ponavljanje dokumenta je ažurirano" @@ -6691,7 +6696,7 @@ msgstr "Datum Dostupnosti za Upotrebu" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6787,7 +6792,7 @@ msgstr "Datum dostupnosti za upotrebu je obavezan" msgid "Available {0}" msgstr "Dostupno {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Datum dostupnosti za upotrebu bi trebao biti nakon datuma nabave" @@ -6905,7 +6910,7 @@ msgstr "Spremnička Količina" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6924,8 +6929,8 @@ msgid "BOM 1" msgstr "Sastavnica 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "Sastavnica 1 {0} i Sastavnica 2 {1} ne bi trebali biti isti" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6939,7 +6944,7 @@ msgstr "Sastavnica 2" msgid "BOM Comparison Tool" msgstr "Alat Poređenja Sastavnica" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "Komponenta Sastavnice" @@ -7070,7 +7075,7 @@ msgstr "Operacija Sastavnice" msgid "BOM Operations Time" msgstr "Operativno Vrijeme Sastavnice" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "Sastavnica" @@ -7091,7 +7096,7 @@ msgstr "Pretraga Sastavnice" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "Sekundarni Artikal Sastavnice" @@ -7143,10 +7148,6 @@ msgstr "Zapisnik Alata Ažuriranja Sastavnice sa očuvanim statusom posla" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Ažuriranje Sastavnica je već u toku. Pričekaj dok {0} ne završi." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "Ažuriranje Sastavnice je na čekanju i može potrajati nekoliko minuta. Provjeri {0} za napredak." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7185,15 +7186,19 @@ msgstr "Rekurzija Sastavnice: {0} ne može biti podređena {1}" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Rekurzija Sastavnice: {1} ne može biti nadređena ili podređena {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "Sastavnica {0} ne pripada Artiklu {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "Sastavnica {0} mora biti aktivana" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "Sastavnica {0} se mora podnijeti" @@ -7274,7 +7279,7 @@ msgstr "Stanje" msgid "Balance (Dr - Cr)" msgstr "Stanje (Dr - Cr)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Stanje ({0})" @@ -7344,6 +7349,10 @@ msgstr "Završno Stanje Bilansa Stanja" msgid "Balance Sheet Summary" msgstr "Sažetak Bilansa Stanja" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Količinsko Stanje Zaliha" @@ -7404,7 +7413,7 @@ msgstr "Stanje prema bankovnom izvodu prije {0}" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7504,8 +7513,8 @@ msgid "Bank Account Type" msgstr "Tip Bankovnog Računa" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "Bankovni račun {} u bankovnoj transakciji {} nije usklađen s bankovnim računom {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7749,7 +7758,7 @@ msgstr "Bankovna Transakcija {0} ažurirana" msgid "Bank Transactions" msgstr "Bankovne Transakcije" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Bankovni račun se ne može imenovati kao {0}" @@ -7761,7 +7770,7 @@ msgstr "Bankovni račun kredit za isplatu" msgid "Bank account debit for deposit" msgstr "Bankovnog računa zaduženja za uplate" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Bankovni račun {0} već postoji i nije ga moguće ponovo kreirati" @@ -7773,7 +7782,7 @@ msgstr "Bankovni računi dodani" msgid "Bank statement imported." msgstr "Bankovni Izvod uvezen." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Greška u kreiranju bankovne transakcije" @@ -8049,8 +8058,8 @@ msgstr "Postavke Artikla Šarže" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8081,15 +8090,15 @@ msgstr "Postavke Artikla Šarže" msgid "Batch No" msgstr "Broj Šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Broj Šarže je obavezan" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Broj Šarže {0} ne postoji" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Broj Šarže {0} je povezan sa artiklom {1} koji ima serijski broj. Umjesto toga, skenirajte serijski broj." @@ -8097,6 +8106,10 @@ msgstr "Broj Šarže {0} je povezan sa artiklom {1} koji ima serijski broj. Umje msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Broj Šarže {0} nije prisutan u originalnom {1} {2}, stoga ga ne možete vratiti naspram {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8162,9 +8175,9 @@ msgstr "Jedinica Šarže" msgid "Batch and Serial No" msgstr "Šarža i Serijski Broj" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Šarža nije kreirana za artikal {} jer nema Šaržu." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8276,7 +8289,7 @@ msgstr "Faktura za odbijenu količinu na Kupovnoj Fakturi" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8751,8 +8764,8 @@ msgid "Booked Fixed Asset" msgstr "Proknjižena Osnovna Imovina" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "Knjigovodstvo je zatvoreno do perioda koji se završava {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8979,8 +8992,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Proračun se ne može dodijeliti naspram Grupnog Računu {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Proračun se ne može dodijeliti naspram {0} jer to nije račun Prihoda ili Rashoda" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8997,7 +9010,7 @@ msgstr "Međuspremničko Vrijeme" msgid "Buffered Cursor" msgstr "Baferovani Kursor" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Kompiliraj Sve?" @@ -9005,7 +9018,7 @@ msgstr "Kompiliraj Sve?" msgid "Build Tree" msgstr "Ažuriraj Stablo" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Količina za Proizvodnju" @@ -9332,6 +9345,10 @@ msgstr "Obračunato Stanje Bankovnog Izvoda" msgid "Calculated Discount Mismatch" msgstr "Izračunata Razlika Popusta" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9503,7 +9520,7 @@ msgstr "Kampanja {0} nije pronađena" msgid "Can be approved by {0}" msgstr "Može biti odobreno od {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "Ne mogu zatvoriti Radni Nalog. Budući da su {0} Kartice Poslova u stanju Radovi u Toku." @@ -9532,21 +9549,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Ne može se filtrirati na osnovu broja verifikata, ako je grupiran prema verifikatu" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Plaćanje se može izvršiti samo protiv nefakturisanog(e) {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Može upućivati na red samo ako je tip naplate \"Na iznos prethodnog reda\" ili \"Ukupni prethodni red\"" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "Ne može se promijeniti način vrijednovanja, jer postoje transakcije naspram nekih artikala koji nemaju svoj metod vrijednovanja" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Otkažite Materijal Posjetite {0} prije nego otkažete ovu garanciju" @@ -9575,7 +9595,7 @@ msgstr "Otkaži kada se završi period" msgid "Cancelation Date" msgstr "Datum Otkazivanja" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "Otkazani Radni Nalog ne može se obraditi." @@ -9583,11 +9603,6 @@ msgstr "Otkazani Radni Nalog ne može se obraditi." msgid "Cannot Assign Cashier" msgstr "Ne može se dodijeliti Blagajnik/ca" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Nije moguće izračunati vrijeme dolaska jer nedostaje adresa vozača." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "Nije moguće promijeniti Postavke Računa Inventara" @@ -9602,10 +9617,6 @@ msgstr "Nije moguće Kreirati Povrat" msgid "Cannot Merge" msgstr "Nije moguće spojiti" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Nije moguće optimizirati put jer nedostaje adresa vozača." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Nije moguće razriješiti Personal" @@ -9630,6 +9641,11 @@ msgstr "Ne može se primijeniti TDS naspram više strana u jednom unosu" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Ne može biti artikal fiksne imovine jer je kreiran Registar Zaliha." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "Nije moguće otkazati raspored amortizacije imovine {0} jer postoji nacrt naloga knjiženja {1}." @@ -9639,14 +9655,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "Ne može se otkazati Unos Zatvaranja Kase" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "Ne može se otkazati unos rezervacije zaliha {0} jer je korišten u radnom nalogu {1}. Prvo otkažite radni nalog ili odrezervirajte zalihe" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "Nije moguće otkazati jer je obrada otkazanih dokumenata na čekanju." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Nije moguće otkazati jer postoji podnešeni Unos Zaliha {0}" @@ -9654,7 +9670,7 @@ msgstr "Nije moguće otkazati jer postoji podnešeni Unos Zaliha {0}" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "Nije moguće otkazati transakciju. Ponovno knjiženje procjene vrijednosti artikla prilikom podnošenja još nije završeno." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "Nije moguće otkazati ovaj Unos Proizvodnih Zaliha jer količina proizvedene gotove robe ne može biti manja od količine isporučene u povezanim Podizvođačkim Nalogom." @@ -9666,7 +9682,7 @@ msgstr "Ne može se poništiti ovaj dokument jer je povezan s podnesenim Prilago msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Ne može se poništiti ovaj dokument jer je povezan sa dostavljenom imovinom {asset_link}. Otkaži imovinu da nastavite." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Nije moguće otkazati transakciju za Završeni Radni Nalog." @@ -9691,8 +9707,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Nije moguće promijeniti standard valutu poduzeća, jer postoje postojeće transakcije. Transakcije se moraju otkazati da bi se promijenila standard valuta." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "Ne može završiti zadatak {0} jer njegov zavisni zadatak {1} nije dovršen/poništen." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9718,7 +9734,7 @@ msgstr "Nije moguće kreirati {0} između poduzeća. Svi početni artikli {1} su msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "Nije moguće kreirati Unose Rezervisanja Zaliha za buduće datume Nabavnih Računa." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Nije moguće kreirati Listu Odabira za Prodajni Nalog {0} jer ima rezervisane zalihe. Poništi rezervacije zaliha kako biste kreirali Listu Odabira." @@ -9727,6 +9743,10 @@ msgstr "Nije moguće kreirati Listu Odabira za Prodajni Nalog {0} jer ima rezerv msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Nije moguće kreirati knjigovodstvene unose naspram onemogućenih računa: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "Nije moguće kreirati povrat za konsolidovanu fakturu {0}." @@ -9744,7 +9764,7 @@ msgstr "Ne može se proglasiti izgubljenim, jer je Ponuda napravljena." msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Ne može se odbiti kada je kategorija za 'Vrednovanje' ili 'Vrednovanje i Ukupno'" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Nije moguće izbrisati red Dobitka/Gubitka Deviznog Kursa" @@ -9757,7 +9777,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Ne možete izbrisati naručeni artikal" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "Nije moguće izbrisati zaštićeni osnovni DocType: {0}" @@ -9789,7 +9809,7 @@ msgstr "Ne može se rastaviti {0} količina u odnosu na unos na zalihi {1}. Samo msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "Nije moguće omogućiti račun zaliha po artiklima, jer postoje postojeći unosi u glavnu knjigu zaliha za {0} sa računom zaliha po skladištu. Molimo vas da prvo otkažete transakcije zaliha i pokušate ponovo." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "Nije moguće omogućiti kreiranje prilike iz kontakta jer je kontakt obrazac onemogućen." @@ -9814,19 +9834,23 @@ msgstr "Ne mogu pronaći artikal s ovim Barkodom" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "Ne može se pronaći zadano skladište za artikal {0}. Molimo vas da postavite jedan u Postavke Artikla ili u Postavke Zaliha." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "Nije moguće spojiti {0} '{1}' u '{2}' jer oba imaju postojeće knjigovodstvene unose u različitim valutama za '{3}'." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "Ne može se proizvesti više artikala {0} od količine Prodajnog Naloga {1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "Ne može se proizvesti više artikala za {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "Ne može se proizvesti više od {0} artikla za {1}" @@ -9838,12 +9862,16 @@ msgstr "Ne može se primiti od klijenta naspram negativnog nepodmirenog" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "Ne može se smanjiti količina naručene ili nabavljene količine" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Ne može se upućivati na broj reda veći ili jednak trenutnom broju reda za ovaj tip naknade" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "Nije moguće preuzeti oznaku veze za ažuriranje. Provjerite zapisnik grešaka za više informacija" @@ -9852,19 +9880,23 @@ msgstr "Nije moguće preuzeti oznaku veze za ažuriranje. Provjerite zapisnik gr msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Nije moguće preuzeti oznaku veze. Provjerite zapisnik grešaka za više informacija" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "Nije moguće odabrati tip grupe \"Klijent Grupa\". Odaberi klijent grupu koja nije grupa." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Nije moguće odabrati tip naknade kao 'Iznos na Prethodnom Redu' ili 'Ukupno na Prethodnom Redu' za prvi red" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Ne može se postaviti kao Izgubljeno pošto je Prodajni Nalog napravljen." @@ -10291,9 +10323,9 @@ msgstr "Promijenite vrstu računa u Potraživanje ili odaberite drugi račun." msgid "Change this date manually to setup the next synchronization start date" msgstr "Ručno promijenite ovaj datum da postavite sljedeći datum početka sinhronizacije" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "Ime klijenta je promijenjeno u '{}' jer '{}' već postoji." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10319,8 +10351,8 @@ msgstr "Promjena metode vrednovanja na MA uticat će na nove transakcije. Ako se msgid "Channel Partner" msgstr "Partner" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "Naknada tipa 'Stvarni' u redu {0} ne može se uključiti u Cijenu Artikla ili Plaćeni Iznos" @@ -10514,7 +10546,7 @@ msgstr "Širina Čeka" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Referentni Datum" @@ -10572,7 +10604,7 @@ msgstr "Podređeni DocType" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Referenca za Podređeni Red" @@ -10582,8 +10614,8 @@ msgid "Child Table Not Allowed" msgstr "Podređena tabela nije dozvoljena" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Podređeni Zadatak postoji za ovaj Zadatak. Ne možete izbrisati ovaj Zadatak." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10761,7 +10793,7 @@ msgstr "Zatvori Zajam" msgid "Close Replied Opportunity After Days" msgstr "Zatvori Odgovor na Priliku nakon dana" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Zatvori Kasu" @@ -10775,7 +10807,7 @@ msgstr "Zatvoreni Dokument" msgid "Closed Documents" msgstr "Zatvoreni Dokumenti" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Zatvoreni Radni Nalog se ne može zaustaviti ili ponovo otvoriti" @@ -11005,9 +11037,9 @@ msgstr "Provizija" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11444,7 +11476,7 @@ msgstr "Poduzeća" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11514,7 +11546,7 @@ msgstr "Poduzeća" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11554,10 +11586,6 @@ msgstr "Poduzeće" msgid "Company Abbreviation" msgstr "Skraćenica Poduzeća" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "Skraćenica Poduzeća (potrebno je instalirati Sistem)" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Skraćenica Poduzeća ne može imati više od 5 znakova" @@ -11722,7 +11750,7 @@ msgstr "Dostavna Adresa Poduzeća" msgid "Company Tax ID" msgstr "Fiskalni Broj Poduzeća" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "Poduzeće i Datum Knjiženja su obavezni" @@ -11766,12 +11794,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "Naziv polja za link poduzeća koji se koristi za filtriranje (opciono - ostavite prazno da biste izbrisali sve zapise)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Naziv Poduzeća nije isti" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "Poduzeće imovine {0} i dokument o kupovini {1} se ne poklapaju." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11809,6 +11837,14 @@ msgstr "Poduzeće {0} dodana više puta" msgid "Company {0} does not exist" msgstr "Poduzeće {0} ne postoji" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Poduzeće {0} je dodana više puta" @@ -11817,14 +11853,6 @@ msgstr "Poduzeće {0} je dodana više puta" msgid "Company {0} is not in South Africa." msgstr "Kompanija {0} nije registrovana u Južnoj Africi." -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "Poduzeće {} još ne postoji. Postavljanje poreza je prekinuto." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "Poduzeće {} nije usklađeno s Kasa Profilom {}" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11846,7 +11874,7 @@ msgstr "Ime Konkurenta" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Konkurenti" @@ -12290,8 +12318,8 @@ msgid "Consumed Qty" msgstr "Potrošena Količina" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "Potrošena količina ne može biti veća od rezervisane količine za artikal {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12606,7 +12634,7 @@ msgstr "Kontrolira koji se porezni šablon automatski primjenjuje kada se ovaj k #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12906,7 +12934,7 @@ msgstr "Raspodjela Troškova / Gubitak Procesa" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12931,7 +12959,7 @@ msgstr "Raspodjela Troškova / Gubitak Procesa" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12989,7 +13017,7 @@ msgstr "Broj Centra Troškova" msgid "Cost Center and Budgeting" msgstr "Centar Troškova i Proračuna" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "Centar Troškova za artikal redove je ažuriran na {0}" @@ -13001,7 +13029,7 @@ msgstr "Centar Troškova je dio dodjele Centra Troškova, stoga se ne može konv msgid "Cost Center is required" msgstr "Centar Troškova je obavezan" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Centar Troškova je obavezan u redu {0} u tabeli PDV za tip {1}" @@ -13023,12 +13051,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "Centar Troškova {0} ne može se koristiti za dodjelu jer se koristi kao matični centar troškova u drugom zapisu dodjele." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Centar Troškova {} ne pripada {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "Centar Troškova {} je grupni centar troškova a grupni centri troškova ne mogu se koristiti u transakcijama" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13152,14 +13180,14 @@ msgid "Costing and Billing" msgstr "Obračun Troškova i Fakturisanje" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "Polja Troškova i Fakturisanje su ažurirana" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Nije moguće izbrisati demo podatke" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Nije moguće automatski kreirati klijenta zbog sljedećih nedostajućih obaveznih polja:" @@ -13171,7 +13199,7 @@ msgstr "Nije moguće automatski kreirati Kreditnu Fakturu, poništi oznaku \"Izd msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "Nije moguće pronaći nijednu tabelu u ovom PDF dokumentu. Moguće je da se radi o skeniranom ili slikovnom izvodu, što nije podržano (nema OCR-a)." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Nije moguće otkriti poduzeće za ažuriranje Bankovnih Računa" @@ -13181,8 +13209,8 @@ msgstr "Nije moguće pronaći odgovarajuću promjenu koja bi odgovarala razlici: #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "Nije moguće pronaći put za " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13205,7 +13233,7 @@ msgstr "Nije moguće sačuvati postavke tabele." msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Nije moguće riješiti kriterij funkcije bodovanja za {0}. Provjerite je li formula valjana." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Nije moguće riješiti funkciju ponderirane ocjene. Provjerite je li formula valjana." @@ -13435,10 +13463,6 @@ msgstr "Kreiraj Novog Klijenta" msgid "Create New Lead" msgstr "Kreiraj novi trag" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "Kreiraj novu verziju" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "Kreiraj novo {0}" @@ -13457,7 +13481,7 @@ msgstr "Kreiraj Operacije" msgid "Create Opportunity" msgstr "Kreiraj Priliku" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Kreiraj unos otvaranja Kase" @@ -13472,7 +13496,7 @@ msgstr "Kreiraj unos Plaćanja" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "Kreiraj Unos Plaćanja za Konsolidovane Kasa Fakture." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Kreiraj Zahtjev Plaćanja" @@ -13700,7 +13724,7 @@ msgstr "Kreirajte novo pravilo za automatsku klasifikaciju transakcija." msgid "Create a variant with the template image." msgstr "Kreiraj Varijantu sa slikom šablona." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Kreirajte dolaznu transakciju zaliha za artikal." @@ -13734,7 +13758,7 @@ msgstr "Kreiraj {0} {1}?" msgid "Created By Migration" msgstr "Kreirano Migracijom" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "Kreirano {0} tablica bodova za {1} između:" @@ -13829,7 +13853,7 @@ msgstr "Kreiranje Korisnika u toku..." msgid "Creating demo data" msgstr "Kreiranje demo podataka" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Kreiranje {} od {} {}" @@ -13839,17 +13863,17 @@ msgstr "Kreiranje {} od {} {}" msgid "Creation" msgstr "Kreacija" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "Kreiranje {1}(s) uspješno" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Kreiranje {0} nije uspjelo.\n" "\t\t\t\tProvjerite Zapisnik Masovnih Transakcija" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Kreiranje {0} nije uspjelo.\n" @@ -13884,11 +13908,11 @@ msgstr "Kreiranje {0} nije uspjelo.\n" msgid "Credit" msgstr "Kredit" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Kredit (Transakcija)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Kredit ({0})" @@ -13969,7 +13993,7 @@ msgstr "Kreditni Dani" msgid "Credit Limit" msgstr "Kreditno Ograničenje" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Kreditno Ograničenje je probijeno" @@ -14049,16 +14073,16 @@ msgstr "Kredit Za" msgid "Credit in Company Currency" msgstr "Kredit u Valuti Poduzeća" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Kreditno ograničenje je premašeno za klijenta {0} ({1}/{2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Kreditno ograničenje je već definisano za {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Kreditno Ograničenje je dostignuto za Klijenta {0}" @@ -14117,12 +14141,12 @@ msgstr "Postavljanje Kriterija" msgid "Criteria Weight" msgstr "Prioritet Kriterija" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Prioriteti Kriterija moraju iznositi do 100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Cron interval bi trebao biti između 1 i 59 min" @@ -14245,7 +14269,7 @@ msgstr "Valuta i Cijenovnik" msgid "Currency can not be changed after making entries using some other currency" msgstr "Valuta se ne može mijenjati nakon unosa u nekoj drugoj valuti" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "Filteri valuta trenutno nisu podržani u Prilagođenom Finansijskom Izvještaju." @@ -14310,8 +14334,8 @@ msgid "Current BOM" msgstr "Trenutna Sastavnica" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "Trenutna i Nova Sastavnica ne mogu biti iste" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14373,10 +14397,6 @@ msgstr "Trenutni Serijski / Šarža Paket" msgid "Current Serial No" msgstr "Trenutni Serijski Broj" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "Trenutna Serija Imenovanja" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15207,7 +15227,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Dnevni sažetak projekta za {0}" @@ -15352,10 +15372,6 @@ msgstr "Datumi za Obradu" msgid "Day Of Week" msgstr "Dan u Sedmici" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "Dan u mesecu" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15462,11 +15478,11 @@ msgstr "Diler" msgid "Debit" msgstr "Debit" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Debit (Transakcija)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Debit ({0})" @@ -15628,7 +15644,7 @@ msgstr "Decilitar" msgid "Decimeter" msgstr "Decimetar" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Prijavi Gubitak" @@ -16309,8 +16325,8 @@ msgstr "Brisanje pravila..." msgid "Deleting {0} and all associated Common Code documents..." msgstr "Brisanje {0} u toku i svih povezanih dokumenata Zajedničkog Koda..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Brisanje u toku!" @@ -16404,7 +16420,7 @@ msgstr "Isporučeni Artikli za Fakturisanje" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16462,7 +16478,7 @@ msgstr "Dostava" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16792,7 +16808,7 @@ msgstr "Amortizacija" msgid "Depreciation Amount" msgstr "Iznos Amortizacije" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Iznos Amortizacije tokom perioda" @@ -16808,7 +16824,7 @@ msgstr "Datum Amortizacije" msgid "Depreciation Details" msgstr "Detalji Amortizacije" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Amortizacija Eliminisana zbog otuđenja Imovine" @@ -16878,7 +16894,7 @@ msgstr "Datum knjiženja amortizacije ne može biti prije Datuma raspoloživosti msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Amortizacija Red {0}: Datum knjiženja amortizacije ne može biti prije datuma raspoloživosti za upotrebu" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Amortizacija Red {0}: Očekivana vrijednost nakon korisnog vijeka trajanja mora biti veća ili jednaka {1}" @@ -16907,11 +16923,11 @@ msgstr "Raspored Amortizacije" msgid "Depreciation Schedule View" msgstr "Pregled Rasporeda Amortizacije" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "Amortizacija se ne može obračunati za potpuno amortizovanu imovinu" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "Amortizacija eliminirana storniranjem" @@ -16939,7 +16955,7 @@ msgstr "Dizajner" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Detaljan Razlog" @@ -17042,12 +17058,12 @@ msgid "Difference Account in Items Table" msgstr "Račun Razlike u Postavkama Artikla" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "Razlika u računu mora biti tip računa Imovine/Obaveza (Privremeno Otvaranje), budući da je ovaj unos zaliha početni unos" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Račun razlike mora biti račun tipa Imovina/Obaveze, budući da je ovo usaglašavanje Zaliha Početni Unos" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17109,7 +17125,7 @@ msgstr "Vrijednost Razlike" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "Za svaki red se mogu postaviti različiti 'Izvorno skladište' i 'Ciljano Skladište'." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Različiti Jedinice za artikle će dovesti do netačne (ukupne) vrijednosti neto težine. Uvjerite se da je neto težina svakog artikla u istoj Jedinici." @@ -17282,7 +17298,7 @@ msgstr "Onemogućeni Bankovni Račun" msgid "Disabled Product Bundle" msgstr "Onemogući Paket Artikala" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "Onemogućeno Skladište {0} se ne može koristiti za ovu transakciju." @@ -17291,18 +17307,18 @@ msgstr "Onemogućeno Skladište {0} se ne može koristiti za ovu transakciju." msgid "Disabled items cannot be selected in any transaction." msgstr "Onemogućeni artikli se ne mogu odabrati ni u jednoj transakciji." -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Onemogućena pravila određivanja cijena jer je ovo {} interni prijenos" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "Onemogućeni dobavljači su skriveni od odabira u novim transakcijama, ali ostaju u historijskim zapisima." -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "Cijene bez PDV budući da je ovo {} interni prijenos" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17551,9 +17567,9 @@ msgstr "Popust ne može biti veći od 100%." msgid "Discount must be less than 100" msgstr "Popust mora biti manji od 100%" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Popust od {} se primjenjuje prema Uslovima Plaćanja" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17917,11 +17933,11 @@ msgstr "Želiš li podnijeti unos zaliha?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" -msgstr "DocType može biti jedan od njih {0}" +msgid "DocType can be one of {0}" +msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} ne postoji" @@ -17959,22 +17975,6 @@ msgstr "Pretraga Dokumenata" msgid "Document Count" msgstr "Broj Dokumenata" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "Imenovanje Dokumenata" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "Broj Dokumenta" @@ -18280,7 +18280,7 @@ msgstr "Kopiraj Projekt sa Zadatcima" msgid "Duplicate Sales Invoices found" msgstr "Pronađeni su duplikati Prodajnih Faktura" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "Greška dupliciranog serijskog broja" @@ -18434,7 +18434,7 @@ msgstr "Uredi Kapacitet" msgid "Edit Cart" msgstr "Uredi Korpu" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Uređivanje nije dozvoljeno" @@ -18658,8 +18658,8 @@ msgid "Email verification failed." msgstr "Verifikacija e-pošte nije uspjela." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "E-pošta u redu čekanja" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18846,7 +18846,7 @@ msgstr "Personal" msgid "Empty" msgstr "Prazno" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "Isprazni za brisanje liste" @@ -18855,7 +18855,7 @@ msgstr "Isprazni za brisanje liste" msgid "Ems(Pica)" msgstr "Ems (Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "Omogući {0} u Postavkama Artikla da biste nastavili s {1} kontrolom." @@ -18934,6 +18934,12 @@ msgstr "Omogući Popust i Maržu" msgid "Enable European Access" msgstr "Omogući Evropski Pristup" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19210,7 +19216,7 @@ msgstr "Vrijeme Završetka" msgid "End Transit" msgstr "Završi Tranzit" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19333,7 +19339,7 @@ msgstr "Unesi broj telefona Klijenta" msgid "Enter date to scrap asset" msgstr "Unesi datum za rashodovanje Imovine" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Unesi podatke Amortizacije" @@ -19389,6 +19395,10 @@ msgstr "Unesi količinu za proizvodnju. Artikal sirovina će se preuzimati samo msgid "Enter {0} amount." msgstr "Unesi {0} iznos." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Zabava i Slobodno vrijeme" @@ -19424,7 +19434,7 @@ msgstr "Tip Unosa" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Kapital" @@ -19448,7 +19458,7 @@ msgstr "Erg" msgid "Error Description" msgstr "Opis Greške" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Došlo je do Greške" @@ -19480,21 +19490,21 @@ msgstr "Greška prilikom knjiženja unosa amortizacije" msgid "Error while processing deferred accounting for {0}" msgstr "Greška prilikom obrade odgođenog knjiženja za {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Greška prilikom ponovnog knjiženja vrijednosti artikla" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Greška: Ova imovina već ima {0} periode amortizacije.\n" -"\t\t\t\t\tDatum `početka amortizacije` mora biti najmanje {1} perioda nakon datuma `dostupno za upotrebu`.\n" -"\t\t\t\t\tMolimo ispravite datume u skladu s tim." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Greška: {0} je obavezno polje" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19508,7 +19518,7 @@ msgid "Estimated Arrival" msgstr "Predviđeni Dolazak" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Očekivani Trošak" @@ -19558,7 +19568,7 @@ msgstr "Primjer: ABCD.#####. Ako je serija postavljena, a broj šarže nije post msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "Primjer: Ako je iznos transakcije 200, onda će se ovo izračunati kao {} = {}" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Primjer: Serijski Broj {0} je rezervisan u {1}." @@ -19839,7 +19849,7 @@ msgstr "Očekivani Datum Zatvaranja" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19926,7 +19936,7 @@ msgstr "Očekivana vrijednost nakon korisnog vijeka trajanja" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Troškovi" @@ -20185,9 +20195,9 @@ msgstr "Farenhajt" msgid "Failed Entries" msgstr "Neuspješni Unosi" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Provjera autentičnosti API ključa nije uspjela." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20384,7 +20394,7 @@ msgid "Fetching Sales Orders..." msgstr "Preuzmaju se Prodajni Nalozi..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Preuzimaju se Devizni Kursevi..." @@ -20422,15 +20432,15 @@ msgstr "Naziv polja {0} već postoji u sljedećim tipovima dokumenata: {1}. Zase msgid "Fields will be copied over only at time of creation." msgstr "Polja će se kopirati samo u vrijeme kreiranja." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "Datoteka ne pripada ovom zapisu o brisanju transakcije" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Datoteka nije pronađena" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Datoteka nije pronađena na serveru" @@ -20439,7 +20449,7 @@ msgstr "Datoteka nije pronađena na serveru" msgid "File to Rename" msgstr "Datoteka za Preimenovanje" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20598,11 +20608,11 @@ msgstr "Red Finansijskog Izvještaja" msgid "Financial Report Template" msgstr "Šablon Finansijskog Izvještaja" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "Šablon Finansijskog Izvještaja {0} je onemogućen" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "Šablon Finansijskog Izvještaja {0} nije pronađen" @@ -20671,7 +20681,7 @@ msgstr "Sastavnica Gotovog Proizvoda" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20684,7 +20694,7 @@ msgstr "Artikal Gotovog Proizvoda" msgid "Finished Good Item Code" msgstr "Gotov Proizvod Artikal Kod" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Količina Artikla Gotovog Proizvoda" @@ -20792,7 +20802,7 @@ msgstr "Skladište Gotovog Proizvoda" msgid "Finished Goods based Operating Cost" msgstr "Operativni troškovi zasnovani na Gotovom Proizvodu" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Gotov Proizvod {0} ne odgovara Radnom Nalogu {1}" @@ -20891,10 +20901,6 @@ msgstr "Fiskalni režim je obavezan, ljubazno postavite fiskalni režim za {0}" msgid "Fiscal Year" msgstr "Fiskalna Godina" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "Fiskalna Godina (potrebno je instalirati Sistem)" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20908,11 +20914,8 @@ msgstr "Detalji Fiskalne Godine" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Datum završetka fiskalne godine trebao bi biti godinu dana nakon datuma početka fiskalne godine" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Fiskalna Godina {0} nema u sistemu" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Fiskalna Godina {0} nema u sistemu" @@ -20945,7 +20948,7 @@ msgstr "Fiksna Imovina" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21081,7 +21084,7 @@ msgstr "Foot/Second" msgid "For" msgstr "Za" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "Za artikel 'Artikal Paket ', skladište, serijski broj i šaržu će se uzeti u obzir iz tabele 'Lista Pakovanja'. Ako su Skladište i Šaržni Broj isti za sve artikle pakovanja za bilo koji 'Artikal Paket', te vrijednosti se mogu unijeti u glavnu tabelu Artikala, vrijednosti će se kopirati u tabelu 'Lista Pakovanja'." @@ -21106,10 +21109,6 @@ msgstr "Za Poduzeće" msgid "For Item" msgstr "Za Artikal" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "Za Artikal {0} ne može se primiti više od {1} količine naspram {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21176,12 +21175,12 @@ msgid "For Work Order" msgstr "Za Radni Nalog" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Za Artikal {0}, količina mora biti negativan broj" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Za Artikal {0}, količina mora biti pozitivan broj" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21213,13 +21212,13 @@ msgstr "Za koliko potrošeno = 1 bod lojalnosti" msgid "For individual supplier" msgstr "Za individualnog Dobavljača" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "Za artikal {0}, samo {1} imovina je kreirana ili povezana s {2}. Kreiraj ili poveži još {3} imovine s odgovarajućim dokumentom." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "Za artikal {0}, cijena mora biti pozitivan broj. Da biste omogućili negativne cijene, omogućite {1} u {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21231,9 +21230,9 @@ msgstr "Za stare serijske brojeve, nemojte preuzimati nabvnu cijenu iz serijskog msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "Za operaciju {0} u redu {1}, molimo dodajte sirovine ili postavite Sastavnicu naspram nje." -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "Za Operaciju {0}: Količina ({1}) ne može biti veća od količine na čekanju ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21248,21 +21247,17 @@ msgstr "Za projekat - {0}, ažuriraj vaš status" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "Za projicirane i prognozirane količine, sistem će uzeti u obzir sva podređena skladišta unutar odabranog nadređenog skladišta." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "Za količinu {0} ne bi trebalo da bude veća od dozvoljene količine {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Za Referencu" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Za red {0} u {1}. Da biste uključili {2} u cijenu artikla, redovi {3} također moraju biti uključeni" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Za red {0}: Unesi Planiranu Količinu" @@ -21281,11 +21276,15 @@ msgstr "Za uslov 'Primijeni Pravilo na Drugo' polje {0} je obavezno" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Za praktičnost Klienta, ovi kodovi se mogu koristiti u formatima za ispisivanje kao što su Fakture i Dostavnice" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "Za artikal {0}, potrošena količina bi trebala biti {1} prema Sastavnici {2}." -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "Da bi novi {0} stupio na snagu, želite li izbrisati trenutni {1}?" @@ -21373,6 +21372,21 @@ msgstr "Forum Postovi" msgid "Forum URL" msgstr "URL Foruma" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Podrška Prodaje" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "Frappe Škola" @@ -21916,7 +21930,7 @@ msgstr "Stanje Knjigovodstvenog Registra" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Stavka Knjigovodstvenog Registra" @@ -22041,6 +22055,10 @@ msgstr "Registar Knjigovodstva" msgid "General Ledger remarks length" msgstr "Dužina napomena Knjigovodstvenog Registra" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22094,7 +22112,7 @@ msgstr "Generiši upis za zatvaranje Zaliha" msgid "Generate To Delete List" msgstr "Generiraj za brisanje liste" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "Prvo generiraj listu za brisanje" @@ -22437,7 +22455,7 @@ msgstr "Proizvod u Tranzitu" msgid "Goods Transferred" msgstr "Proizvod je Prenesen" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Proizvod je već primljen naspram unosa izlaza {0}" @@ -22620,7 +22638,7 @@ msgstr "Ukupni iznos mora odgovarati zbiru referenci plaćanja" msgid "Grant Commission" msgstr "Odobri Proviziju" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Veće od Iznosa" @@ -22760,7 +22778,7 @@ msgstr "Grupiši po Prodajnom Nalogu" msgid "Group by Voucher" msgstr "Grupiši po Verifikatu" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Grupno Skladište nije dozvoljeno da se bira za transakcije" @@ -23063,7 +23081,7 @@ msgstr "Pomaže vam da raspodijelite Proračun/Cilj po mjesecima ako imate sezon msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Ovdje su zapisi grešaka za gore navedene neuspjele unose amortizacije: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "Ovdje su opcije za nastavak:" @@ -23091,7 +23109,7 @@ msgstr "Ovdje su vaši sedmični neradni dani unaprijed popunjeni na osnovu pret msgid "Hertz" msgstr "Hertz" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Zdravo," @@ -23127,7 +23145,7 @@ msgstr "Sakrij ako je nula" msgid "Hide Images" msgstr "Sakrij Slike" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "Sakrij nedavne Nabavne Naloge" @@ -23714,15 +23732,15 @@ msgstr "Ako se za artikl u cjenovniku postavljenom u transakciji ne pronađe cij msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "Ako Pdv nije postavljen i Šablon Pdv i Naknada je odabran, sistem će automatski primijeniti Pdv iz odabranog šablona." -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "Ako ne, možete Otkazati / Podnijeti ovaj unos" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "Ako stranka ne postoji, kreirajte je pomoću polja Ime Klijenta." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "Ako stranka ne postoji, kreirajte je pomoću polja Ime Dobavljača." @@ -23760,7 +23778,7 @@ msgstr "Ako Sastavnica rezultira otpadnim materijalom, potrebno je odabrati Skla msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Ako je račun zamrznut, unosi su dozvoljeni ograničenim korisnicima." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Ako se transakcije artikla vrši kao artikal nulte stope vrijednosti u ovom unosu, omogući 'Dozvoli Nultu Stopu Vrednovanja' u {0} Postavkama Artikla." @@ -23861,7 +23879,7 @@ msgstr "Ako trebate usaglasiti određene transakcije jedne s drugima, odaberite msgid "If you still want to proceed, please disable {0} checkbox." msgstr "Ako i dalje želite nastaviti, molimo onemogućite \" {0}\"." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "Ako i dalje želite da nastavite, omogući {0}." @@ -24079,14 +24097,14 @@ msgstr "Uvezi Fakture" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "Uvoz MT940 Fromata" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Uvoz Uspješan" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Sažetak Uvoza" @@ -24563,7 +24581,7 @@ msgstr "Uključujući artikle za podsklopove" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Prihod" @@ -24649,7 +24667,7 @@ msgstr "Dolazni poziv od {0}" msgid "Incompatible Setting Detected" msgstr "Otkrivena nekompatibilna postavka" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "Netačan Račun" @@ -24658,7 +24676,7 @@ msgstr "Netačan Račun" msgid "Incorrect Balance Qty After Transaction" msgstr "Netačna količina stanja nakon transakcije" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Potrošena Pogrešna Šarža" @@ -24666,11 +24684,11 @@ msgstr "Potrošena Pogrešna Šarža" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Netačno prijavljivanje (grupno) skladište za ponovnu narudžbu" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "Pogrešno Poduzeće" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Netačna Količina Komponenti" @@ -24679,7 +24697,7 @@ msgstr "Netačna Količina Komponenti" msgid "Incorrect Date" msgstr "Netačan Datum" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Netočna Faktura" @@ -24696,7 +24714,7 @@ msgstr "Netačan Referentni Dokument (Artikal Nabavnog Računa)" msgid "Incorrect Serial No Valuation" msgstr "Netačno Vrijednovanje Serijskog Broja" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Pogrešan Serijski Broj Potrošen" @@ -24779,7 +24797,7 @@ msgstr "Povećanje" msgid "Increment cannot be 0" msgstr "Povećanje ne može biti 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Povećanje za Atribut {0} ne može biti 0" @@ -24976,7 +24994,7 @@ msgid "Instruction" msgstr "Uputstvo" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Nedovoljan Kapacitet" @@ -24992,12 +25010,12 @@ msgstr "Nedovoljne Dozvole" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Nedovoljne Zalihe" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Nedovoljne Zalihe za Šaržu" @@ -25127,7 +25145,7 @@ msgstr "Troškovi Kamata" msgid "Interest Income" msgstr "Prihod od Kamata" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Kamata i/ili Naknada Opomene" @@ -25152,7 +25170,7 @@ msgstr "Interni" msgid "Internal Customer Accounting" msgstr "Knjigovodstvo Internog Klijenta" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Interni Klijent za {0} već postoji" @@ -25178,7 +25196,7 @@ msgstr "Nedostaje Interna Prodajna Referenca" msgid "Internal Supplier Details" msgstr "Detalji Internog Dobavljača" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "Interni Dobavljač za {0} već postoji" @@ -25199,7 +25217,7 @@ msgstr "Interni Dobavljač za {0} već postoji" msgid "Internal Transfer" msgstr "Interni Prijenos" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Nedostaje Referenca Internog Prijenosa" @@ -25241,8 +25259,8 @@ msgstr "Interval bi trebao biti između 1 i 59 minuta" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25261,7 +25279,7 @@ msgstr "Nevažeći Dodijeljeni Iznos" msgid "Invalid Amount" msgstr "Nevažeći Iznos" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Nevažeći Atribut" @@ -25278,11 +25296,11 @@ msgstr "Nevažeći bankovni račun" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Nevažeći Barkod. Nema artikla priloženog ovom barkodu." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Nevažeća narudžba za odabranog Klijenta i Artikal" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "Nevažeći CSV format. Očekivana kolona: doctype_name" @@ -25302,13 +25320,13 @@ msgstr "Nevažeće poduzeće za transakcije među poduzećima." msgid "Invalid Configuration" msgstr "Nevažeća Konfiguracija" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Nevažeći Centar Troškova" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "Nevažeća Klijent Grupa" @@ -25329,11 +25347,11 @@ msgstr "Nevažeća Količina za Rastavljanje" msgid "Invalid Discount" msgstr "Nevažeći Popust" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "Nevažeći Iznos Popusta" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Nevažeći Dokument" @@ -25363,7 +25381,7 @@ msgstr "Nevažeća Grupa po" msgid "Invalid Item" msgstr "Nevažeći Artikal" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Nevažeće Standard Postavke Artikla" @@ -25372,7 +25390,7 @@ msgstr "Nevažeće Standard Postavke Artikla" msgid "Invalid Ledger Entries" msgstr "Nevažeći unosi u Registar" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "Nevažeći Neto Nabavni Iznos" @@ -25411,7 +25429,7 @@ msgstr "Nevažeći Format Ispisa" msgid "Invalid Priority" msgstr "Nevažeći Prioritet" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Nevažeća Konfiguracija Gubitka Procesa" @@ -25428,7 +25446,7 @@ msgstr "Nevažeća Količina" msgid "Invalid Quantity" msgstr "Nevažeća Količina" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "Nevažeći Upit" @@ -25440,8 +25458,8 @@ msgstr "Nevažeći Povrat" msgid "Invalid Sales Invoices" msgstr "Nevažeće Prodajne Fakture" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Nevažeći Raspored" @@ -25449,7 +25467,7 @@ msgstr "Nevažeći Raspored" msgid "Invalid Selling Price" msgstr "Nevažeća Prodajna Cijena" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Nevažeći Serijski i Šaržni Paket" @@ -25466,7 +25484,7 @@ msgstr "Nevažeći Tip Stabla {0}" msgid "Invalid Upload" msgstr "Nevažeće Otpremljenje" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Nevažeća Vrijednost" @@ -25476,14 +25494,14 @@ msgid "Invalid Warehouse" msgstr "Nevažeće Skladište" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "Nevažeći iznos u knjigovodstvenim unosima {} {} za račun {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Nevažeći Izraz Uvjeta" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "Nevažeći URL datoteke" @@ -25515,7 +25533,7 @@ msgstr "Nevažeći obrazac regularnog izraza." msgid "Invalid result key. Response:" msgstr "Nevažeći ključ rezultata. Odgovor:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Nevažeći upit pretrage" @@ -26478,10 +26496,6 @@ msgstr "Datum Izdavanja" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Može potrajati i do nekoliko sati da tačne vrijednosti zaliha budu vidljive nakon spajanja artikala." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Potreban je za preuzimanje Detalja Artikla." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "Uzimaju se u obzir sve transakcije koje su knjižene i oduzimaju se transakcije koje još nisu poravnate." @@ -26490,7 +26504,7 @@ msgstr "Uzimaju se u obzir sve transakcije koje su knjižene i oduzimaju se tran msgid "It's all good!" msgstr "Sve je u redu!" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "Nije moguće ravnomjerno raspodijeliti troškove kada je ukupan iznos nula, postavite 'Distribuiraj Naknade na Osnovu' kao 'Količina'" @@ -26539,12 +26553,12 @@ msgstr "Kurzivni tekst za međuzbirove ili napomene" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26577,7 +26591,7 @@ msgstr "Kurzivni tekst za međuzbirove ili napomene" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26651,7 +26665,7 @@ msgstr "Artikal 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26812,7 +26826,7 @@ msgstr "Artikal Korpe" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26844,7 +26858,7 @@ msgstr "Artikal Korpe" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26853,12 +26867,12 @@ msgstr "Artikal Korpe" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26954,7 +26968,7 @@ msgstr "Kod Artikla ne može se promijeniti za serijski broj." msgid "Item Code required at Row No {0}" msgstr "Kod Artikla je obavezan u redu broj {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Kod Artikla: {0} nije dostupan u skladištu {1}." @@ -27150,7 +27164,7 @@ msgstr "Nadjačavanje Grupe Artikla" msgid "Item Group Tree" msgstr "Stablo Grupe Artikla" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Grupa Artikla nije postavljena u Postavci Artikla za Artikal {0}" @@ -27304,7 +27318,7 @@ msgstr "Proizvođač Artikla" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27335,7 +27349,7 @@ msgstr "Proizvođač Artikla" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27343,8 +27357,8 @@ msgstr "Proizvođač Artikla" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27401,7 +27415,7 @@ msgstr "Proizvođač Artikla" msgid "Item Name" msgstr "Naziv Artikla" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "Naziv Artikla je obavezan." @@ -27448,8 +27462,8 @@ msgstr "Postavke Cijene Artikla" msgid "Item Price Stock" msgstr "Cijena Artikla na Zalihama" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "Cijena artikla dodana za {0} u Cjenovniku - {1}" @@ -27461,7 +27475,7 @@ msgstr "Cijena Artikla se pojavljuje više puta na osnovu Cijenovnika, Dobavlja msgid "Item Price created at rate {0}" msgstr "Cijena Artikla stvorena po stopi {0}" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Cijena Artikla je ažurirana za {0} u Cjenovniku {1}" @@ -27506,7 +27520,7 @@ msgstr "Ponovna Narudžba Artikla" msgid "Item Row" msgstr "Artikal Red" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Artikla Red {0}: {1} {2} ne postoji u gornjoj '{1}' tabeli" @@ -27622,7 +27636,7 @@ msgstr "Artikal za Proizvodnju" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Varijanta Artikla" @@ -27741,7 +27755,7 @@ msgstr "PDV Detalji po Artiklu" msgid "Item Wise Tax Details" msgstr "PDV Detalji po Artiklu" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "PDV Detalji po Artiklu nisu usklađeni se s PDV i Naknadama u sljedećim redovima:" @@ -27777,7 +27791,7 @@ msgstr "Artikal je obavezan u tabeli Sirovine." msgid "Item is removed since no serial / batch no selected." msgstr "Artikal je uklonjen jer nije odabrana Šarža / Serijski Broj." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Artikal se mora dodati pomoću dugmeta 'Preuzmi Artikle iz Nabavnih Računa'" @@ -27791,7 +27805,7 @@ msgstr "Naziv Artikla" msgid "Item operation" msgstr "Artikal Operacija" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "Cijena Artikla je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednovanja označena za artikal {0}" @@ -27806,7 +27820,7 @@ msgstr "Artikal za Proizvodnju" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "Stopa vrednovanja artikla se preračunava s obzirom na iznos verifikata obračuna troškova" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Ponovno knjiženje vrijednosti artikla je u toku. Izvještaj može prikazati netačnu procjenu artikla." @@ -27822,10 +27836,6 @@ msgstr "Artikal s nazivom {0} nije pronađena u Nalogu Nabave" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "Artikal {0} dodan je više puta pod isti nadređeni artikal {1} u redovima {2} i {3}" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "Artikal {0} već ima aktivni Paket Artikala ({1}). Podnošenjem ovoga kreiraće te novu verziju i deaktivirati {1}." - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "Artikal {0} nemože se dodati kao sam podsklop" @@ -27834,6 +27844,10 @@ msgstr "Artikal {0} nemože se dodati kao sam podsklop" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Artikal {0} se nemože naručiti više od {1} u odnosu na Ugovorni Nalog {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27843,6 +27857,7 @@ msgstr "Artikal {0} ne postoji" msgid "Item {0} does not exist in the system or has expired" msgstr "Artikal {0} ne postoji u sistemu ili je istekao" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Artikal {0} ne postoji." @@ -27875,6 +27890,10 @@ msgstr "Artikal {0} je dosego kraj svog vijeka trajanja {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "Artikal {0} zanemaren jer nije artikal na zalihama" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Artikal {0} je već rezervisan/dostavljen naspram Prodajnog Naloga {1}." @@ -27907,7 +27926,7 @@ msgstr "Artikal {0} nije podizvođački artikal" msgid "Item {0} is not a template item." msgstr "Artikal {0} nije šablon artikal." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "Artikal {0} nije aktivan ili je dostignut kraj životnog vijeka" @@ -27939,10 +27958,6 @@ msgstr "Artikal {0}: Količina Naloga {1} ne može biti manja od minimalne koli msgid "Item {0}: {1} qty produced. " msgstr "Artikal {0}: {1} količina proizvedena. " -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "Atikal {} ne postoji." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27993,6 +28008,10 @@ msgstr "Artikal/Artikal Šifra je obavezan pri preuzimanju PDV Šablona Artikla. msgid "Item: {0} does not exist in the system" msgstr "Artikal: {0} ne postoji u sistemu" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -28009,7 +28028,7 @@ msgstr "Katalog Artikala" msgid "Items Filter" msgstr "Filter Artikala" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Artikli Obavezni" @@ -28049,7 +28068,7 @@ msgstr "Artikli Materijalnog Naloga Sirovina" msgid "Items not found." msgstr "Artikli nisu pronađeni." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "Cijena Artikala je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednovanja izabrana za sljedeće artikle: {0}" @@ -28059,7 +28078,7 @@ msgstr "Cijena Artikala je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednov msgid "Items to Be Repost" msgstr "Artikli koje treba ponovo objaviti" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Artikli za Proizvodnju potrebni za povlačenje sirovina povezanih s njima." @@ -28129,7 +28148,7 @@ msgstr "Radni Kapacitet" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28192,20 +28211,19 @@ msgstr "Zapisnik Vremana Radne Kartice" msgid "Job Card and Capacity Planning" msgstr "Radne Kartice i Planiranje Kapaciteta" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "Radne Kartice {0} je završen" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "Radne Kartice" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "Posao Pauziran" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Posao Započet" @@ -28268,11 +28286,19 @@ msgstr "Naziv Podizvođača" msgid "Job Worker Warehouse" msgstr "Skladište Podizvođača" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Radna Kartica {0} kreirana" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "Posao: {0} je pokrenut za obradu neuspjelih transakcija" @@ -28618,8 +28644,8 @@ msgid "Last Fiscal Year" msgstr "Prošla Fiskalna Godina" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "Posljednje ažuriranje Knjigovodstvenog Registra je obavljeno {}. Ova operacija nije dozvoljena dok se sistem aktivno koristi. Pričekaj 5 minuta prije ponovnog pokušaja." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28739,7 +28765,7 @@ msgstr "Geografska Širina" msgid "Lead" msgstr "Potencijalni Klijent" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Potencijalni Klijent-> Prospekt" @@ -28833,7 +28859,7 @@ msgstr "Vrijeme Isporuke u Danima" msgid "Lead Type" msgstr "Tip Potencijalnog Klijenta" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "Potencijalni Klijent {0} je dodat Prospektu {1}." @@ -28981,7 +29007,7 @@ msgstr "Legenda" msgid "Length (cm)" msgstr "Dužina (cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Manje od Iznosa" @@ -29010,7 +29036,7 @@ msgstr "Nivo (Sastavnica)" msgid "Lft" msgstr "Lijevo" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Obaveze" @@ -29040,7 +29066,7 @@ msgstr "Broj Vozačke Dozvole" msgid "License Plate" msgstr "Registarski Broj" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Prekoračeno Ograničenje" @@ -29136,8 +29162,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Povezivanje s klijentom nije uspjelo. Molimo pokušajte ponovo." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Povezivanje sa dobavljačem nije uspjelo. Molimo pokušajte ponovo." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29303,7 +29329,7 @@ msgstr "Detalji za Izgubljen Razlog" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Izgubljen(a) Razlozi" @@ -29389,7 +29415,7 @@ msgstr "Iskorištavanje Bodova Lojalnosti" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Bodovi Lojalnosti će se obračunati od potrošenog novca (putem Prodajne Fakture), na osnovu navedenog faktora prikupljanja." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Bodovi Lojalnosti: {0}" @@ -29627,7 +29653,7 @@ msgstr "Detalji Rasporeda Održavanja" msgid "Maintenance Schedule Item" msgstr "Artikal Rasporeda Održavanja" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Raspored održavanja nije generiran za sve artikle. Molimo kliknite na 'Generiraj Raspored'" @@ -29724,7 +29750,7 @@ msgstr "Posjeta Održavanja" msgid "Maintenance Visit Purpose" msgstr "Namjena Posjete Održavanja" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Datum početka održavanja ne može biti prije datuma dostave za serijski broj {0}" @@ -29871,7 +29897,7 @@ msgstr "Obavezno za Bilans Stanja" msgid "Mandatory For Profit and Loss Account" msgstr "Obavezno za Račun Rezultata" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Obavezno Nedostaje" @@ -29954,8 +29980,8 @@ msgstr "Ručni unos se ne može kreirati! Onemogući automatski unos za odgođen #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30177,7 +30203,7 @@ msgstr "Mapiranje Podizvođačkog Naloga ..." msgid "Mapping Subcontracting Order ..." msgstr "Mapiranje Podizvođačkog Naloga..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Mapiranje {0} u toku..." @@ -30355,10 +30381,6 @@ msgstr "Usklađivanje prijenosa unutar 'N' dana" msgid "Matched" msgstr "Usklađeno" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "Usklađeno polje" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30385,7 +30407,7 @@ msgstr "Potrošnja Materijala" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Potrošnja Materijala za Proizvodnju" @@ -30496,7 +30518,7 @@ msgstr "Materijalni Nalog" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Datum Materijalnog Naloga" @@ -30546,7 +30568,7 @@ msgstr "Detalji Materijalnog Naloga" msgid "Material Request Item" msgstr "Artikal Materijalnog Naloga" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Broj Materijalnog Naloga" @@ -30568,7 +30590,7 @@ msgstr "Tip Materijalnog Naloga" msgid "Material Request already created for the ordered quantity" msgstr "Zahtjev za materijal je već kreiran za naručenu količinu" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Materijalni Nalog nije kreiran, jer je količina Sirovine već dostupna." @@ -30582,7 +30604,7 @@ msgstr "Materijalni Nalog od maksimalno {0} može se napraviti za artikal {1} na msgid "Material Request used to make this Stock Entry" msgstr "Materijalni Nalog korišten za izradu ovog Unosa Zaliha" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Materijalni Nalog {0} je otkazan ili zaustavljen" @@ -30702,14 +30724,14 @@ msgstr "Materijal Dobavljaču" msgid "Materials To Be Transferred" msgstr "Materijali koji će se Prenijeti" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Materijali su već primljeni naspram {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "Materijale je potrebno prebaciti u Skladište u Toku za Radnu Karticu {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30877,7 +30899,7 @@ msgstr "Megadžul" msgid "Megawatt" msgstr "Megavat" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Navedi Stopu Vrednovanja u Postavkama Artikla." @@ -30912,7 +30934,7 @@ msgstr "Napredak Spajanja" msgid "Merge similar Account Heads" msgstr "Spoji Slične Račune" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Spoji PDV iz više dokumenata" @@ -31258,7 +31280,7 @@ msgstr "Razni Troškovi" msgid "Mismatch" msgstr "Neusklađeno" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Nedostaje" @@ -31267,11 +31289,11 @@ msgstr "Nedostaje" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Nedostaje Račun" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "Nedostajući Računi" @@ -31296,11 +31318,11 @@ msgstr "Nedostaje Zavisnost" msgid "Missing Filters" msgstr "Nedostajući Filteri" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Nedostaje Finansijski Registar" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Nedostaje Gotov Proizvod" @@ -31308,7 +31330,7 @@ msgstr "Nedostaje Gotov Proizvod" msgid "Missing Formula" msgstr "Nedostaje Formula" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Nedostaje Artikal" @@ -31320,7 +31342,7 @@ msgstr "Nedostajući Parametar" msgid "Missing Payments App" msgstr "Nedostaje Aplikacija za Plaćanje" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "Nedostaje Obavezni Filter" @@ -31332,7 +31354,7 @@ msgstr "Nedostaje Serijski Broj Paket" msgid "Missing Warehouse" msgstr "Nedostaje Skladište" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "Nedostaje konfiguracija računa za {0}." @@ -31340,12 +31362,12 @@ msgstr "Nedostaje konfiguracija računa za {0}." msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Nedostaje šablon e-pošte za otpremu. Molimo postavite jedan u Postavkama Dostave." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Nedostaje obavezni filter: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Nedostaje vrijednost" @@ -31594,17 +31616,17 @@ msgstr "Više Računa" msgid "Multiple Accounts (Journal Template)" msgstr "Više Računa (Šablon Naloga Knjiženja)" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Višestruki Programi Lojalnosti pronađeni za Klijenta {}. Odaberi ručno." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "Višestruki Unos Otvaranja Kase" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Postoji više pravila za cijene s istim kriterijima, riješi sukob dodjeljivanjem prioriteta. Pravila Cijena: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31624,7 +31646,7 @@ msgstr "Dostupno je više polja poduzeća: {0}. Molimo odaberite ručno." msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Za datum {0} postoji više fiskalnih godina. Molimo postavite poduzeće u Fiskalnoj Godini" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "Više artikala se ne mogu označiti kao gotov proizvod" @@ -31633,10 +31655,10 @@ msgid "Music" msgstr "Muzika" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Mora biti Cijeli Broj" @@ -31721,11 +31743,7 @@ msgstr "Serija Imenovanja je obavezna" msgid "Naming Series options" msgstr "Opcije Imenovanja Serije" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "Serija Imenovanja ažurirana" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "Imenovanje serije '{0}' za DocType '{1}' ne sadrži standardni separator '.' ili '{{'. Koristi se rezervna ekstrakcija." @@ -31769,7 +31787,7 @@ msgstr "Treba Analiza" msgid "Negative Batch Report" msgstr "Izvještaj Negativne Šarže" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Negativna Količina nije dozvoljena" @@ -31779,12 +31797,12 @@ msgstr "Negativna Količina nije dozvoljena" msgid "Negative Stock" msgstr "Negativna Zaliha" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "Greška Negativne Zalihe" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Negativna Stopa Vrednovanja nije dozvoljena" @@ -31862,8 +31880,8 @@ msgstr "Neto Iznos" msgid "Net Amount (Company Currency)" msgstr "Neto Iznos (Valuta Poduzeća)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Neto Vrijednost Imovine kao na" @@ -31913,7 +31931,7 @@ msgstr "Neto Satnica" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Neto Profit" @@ -31921,7 +31939,7 @@ msgstr "Neto Profit" msgid "Net Profit Ratio" msgstr "Koeficijent Neto Dobiti" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Neto Rezultat" @@ -31935,11 +31953,11 @@ msgstr "Neto Rezultat" msgid "Net Purchase Amount" msgstr "Neto Nabavni Iznos" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "Neto Nabavni Iznos je obavezan" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "Neto Nabavni Iznos treba biti jednak iznosu nabave jedne pojedinačne imovine." @@ -32183,7 +32201,7 @@ msgstr "Nova Fiskalna Godina - {0}" msgid "New Income" msgstr "Novi Prihod" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "Nova Faktura" @@ -32256,6 +32274,7 @@ msgid "New Task" msgstr "Novi Zadatak" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Nova Verzija" @@ -32268,9 +32287,9 @@ msgstr "Nov Naziv Skladišta" msgid "New Workplace" msgstr "Novi Radni Prostor" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Novo kreditno ograničenje je niže od trenutnog iznosa klijenta. Kreditno ograničenje mora biti najmanje {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32278,6 +32297,10 @@ msgstr "Novo kreditno ograničenje je niže od trenutnog iznosa klijenta. Kredit msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Nove fakture će se generirati prema rasporedu čak i ako su trenutne fakture neplaćene ili sa isteklim rokom dospijeća" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Novi datum izlaska bi trebao biti u budućnosti" @@ -32290,7 +32313,7 @@ msgstr "Novi revidirani proračun uspješno kreiran" msgid "New task" msgstr "Novi Zadatak" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Nova {0} pravila određivanja cijena su kreirana" @@ -32354,16 +32377,15 @@ msgstr "Nije pronađena nijedno poduzeće" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Nije pronađen Klijent za Transakcije Inter Poduzeća koji predstavlja {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "Nisu pronađeni Klijenti sa odabranim opcijama." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Nije odabrana Dostavnica za Klijenta {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "Nema DocTypes na listi za brisanje. Molimo vas da generišete ili uvezete listu prije podnošenja." @@ -32371,15 +32393,15 @@ msgstr "Nema DocTypes na listi za brisanje. Molimo vas da generišete ili uvezet msgid "No Impact on Accounting Ledger" msgstr "Nema utjecaja na Knjigovodstveni Registar" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Nema Artikla sa Barkodom {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Nema Artikla sa Serijskim Brojem {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "Nema odabranih artikala za prijenos." @@ -32422,11 +32444,6 @@ msgstr "Bez Dozvole" msgid "No Purchase Orders were created" msgstr "Nabavni Nalozi nisu kreirani" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "Nema zapisa za ove postavke." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Bez Odabira" @@ -32529,6 +32546,10 @@ msgstr "Nije pronađeno nijedno poduzeće." msgid "No contacts with email IDs found." msgstr "Nisu pronađeni kontakti s e-poštom." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Nema podataka za ovaj period" @@ -32574,7 +32595,7 @@ msgstr "Nije otpremljena datoteka niti naveden URL." msgid "No invoice linked" msgstr "Nije povezana faktura" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "Nema dostupnih artikala za prijenos." @@ -32611,10 +32632,6 @@ msgstr "Nema više podređenih na Lijevoj strani" msgid "No more children on Right" msgstr "Nema više podređenih na Desnoj strani" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "Nije definirana nijedna serija imenovanja" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Broj Dostava" @@ -32711,7 +32728,7 @@ msgstr "Nisu pronađene nepodmirene fakture" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Nijedna neplaćena faktura ne zahtijeva revalorizaciju kursa" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "Nema neplaćenih {0} pronađenih za {1} {2} koji ispunjavaju filtre koje ste naveli." @@ -32749,15 +32766,20 @@ msgstr "Nisu pronađene akcije usklađivanja" msgid "No record found" msgstr "Nije pronađen nijedan zapis" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "Nema zapisa u tabeli Dodjele" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "Nije pronađen zapis u tabeli Fakture" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "Nije pronađen zapis u tabeli Plaćanja" @@ -32786,7 +32808,7 @@ msgstr "Još nisu postavljena pravila" msgid "No stock available for this batch." msgstr "Nema dostupnih zaliha za ovu šaržu." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "Nisu kreirani unosi u glavnu knjigu zaliha. Molimo Vas da ispravno postavite količinu ili stopu vrednovanja za artikle i pokušate ponovno." @@ -32823,7 +32845,7 @@ msgstr "Bez Vrijednosti" msgid "No vouchers found for this transaction" msgstr "Nisu pronađeni verifikati za ovu transakciju" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "Nije pronađeno skladište za {0}. Postavi standard skladište u Postavkama Artikala ili Postavkama Zaliha." @@ -32831,11 +32853,6 @@ msgstr "Nije pronađeno skladište za {0}. Postavi standard skladište u Postavk msgid "No {0} found for Inter Company Transactions." msgstr "Nije pronađen {0} za transakcije među poduzećima." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "Br." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32887,7 +32904,7 @@ msgstr "Ne Nule" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "Ne može se kreirati Šarža koja nije fantomska za artikal koja nije na zalihi {0}." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Nijedan od artikala nema nikakve promjene u količini ili vrijednosti." @@ -32898,8 +32915,8 @@ msgid "Normal Balances" msgstr "Normalno Stanje" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "kom." @@ -32913,8 +32930,8 @@ msgstr "kom." msgid "Not Applicable" msgstr "Nije Primjenjivo" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Nije Dostupno" @@ -32977,10 +32994,6 @@ msgstr "Nije Započeto" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "Nije moguće pronaći najraniju Fiskalnu Godinu za dato poduzeće." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Nije dozvoljeno postavljanje alternativnog artikla za artikal {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Nije dozvoljeno kreiranje knjigovodstvene dimenzije za {0}" @@ -32997,10 +33010,6 @@ msgstr "Nije ovlašteno jer {0} premašuje ograničenja" msgid "Not authorized to edit frozen Account {0}" msgstr "Nije ovlašten za uređivanje zamrznutog računa {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "Nije konfigurirano" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "Nema na Zalihama" @@ -33013,7 +33022,7 @@ msgstr "Nema na Zalihama" msgid "Not permitted to make Purchase Orders" msgstr "Nije dozvoljeno da pravite Nabavne Naloge" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "Nije dozvoljeno čitanje Radnog Naloga" @@ -33258,8 +33267,8 @@ msgid "Numeric Values" msgstr "Numeričke Vrijednosti" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Broj nije postavljen u XML datoteci" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33434,12 +33443,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Nakon postavljanja, ova faktura će biti na čekanju do postavljenog datuma" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "Nakon što je Radni Nalog Yatvoren. Ne može se ponovo otvoriti." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Jedan Klijent može biti dio samo jednog Programa Lojalnosti." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33473,7 +33482,7 @@ msgstr "Podržani su samo 'Unosi Plaćanja' naspram ovog predujam računa." msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Za uvoz podataka mogu se koristiti samo CSV i Excel datoteke. Provjeri format datoteke koji pokušavate učitati" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "Dozvoljene su samo CSV datoteke" @@ -33538,7 +33547,7 @@ msgstr "Samo jedna operacija može imati odabranu opciju 'Je li Gotov Proizvod' msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "Samo jedna verzija Paketa Artikala može biti aktivna u datom trenutku za dati Nadređeni Artikal. Aktiviranje verzije deaktivira prethodno aktivnu verziju." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "Samo jedan {0} unos se može kreirati naspram Radnog Naloga {1}" @@ -33605,7 +33614,7 @@ msgstr "Otvori Događaj" msgid "Open Events" msgstr "Otvoreni Događaji" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Otvori Prikaz Obrasca" @@ -33758,7 +33767,7 @@ msgstr "Početno Stanje = Početak Perioda, Završno Stanje = Kraj Perioda, Prom #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Detalji Početnog Stanja" @@ -33788,7 +33797,7 @@ msgstr "Datum Otvaranja" msgid "Opening Entry" msgstr "Početni Unos" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Kreiranja Početne Fakture u toku" @@ -33816,7 +33825,7 @@ msgstr "Početni Artikal Fakture" msgid "Opening Invoice Tool" msgstr "Alat Početne Fakture" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "Početna Faktura ima podešavanje zaokruživanja od {0}.

                    '{1}' račun je potreban za postavljanje ovih vrijednosti. Postavi je u: {2}.

                    Ili, '{3}' se može omogućiti da se ne objavljuje nikakvo podešavanje zaokruživanja." @@ -33825,7 +33834,7 @@ msgstr "Početna Faktura ima podešavanje zaokruživanja od {0}.

                    '{1}' r msgid "Opening Invoices" msgstr "Početne Fakture" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Sažetak Početnih Faktura" @@ -33855,20 +33864,20 @@ msgstr "Početne Fakture Prodaje su kreirane." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Početna Zaliha" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "Početne zalihe mogu se postaviti samo za artikle na zalihi." -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "Početne zalihe se ne mogu kreirati jer već postoje transakcije zaliha za artikal {0}." -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "Početne zalihe za serijske ili šaržne artikle mora se postaviti putem Usklađivanje Zaliha." @@ -33877,7 +33886,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "Početno Usklađivanje Zaliha kreirano sa nultom stopom vrednovanja: {0}" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "Početno Usklađivanje Zaliha kreirano: {0}" @@ -33920,7 +33929,7 @@ msgstr "Trošak operativnih komponenti" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Operativni Trošak" @@ -34011,7 +34020,7 @@ msgstr "Broj Reda Operacije" msgid "Operation Time" msgstr "Operativno Vrijeme" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Vrijeme Operacije mora biti veće od 0 za operaciju {0}" @@ -34035,8 +34044,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "Operacija {0} ne pripada radnom nalogu {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Operacija {0} traje duže od bilo kojeg raspoloživog radnog vremena na radnoj stanici {1}, podijelite operaciju na više operacija" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34221,6 +34230,10 @@ msgstr "Prilika {0} je kreirana" msgid "Optimize Route" msgstr "Optimiziraj Rutu" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "Opcionalno. Odaberi određeni unos proizvodnje za poništavanje." @@ -34237,10 +34250,6 @@ msgstr "Opcija. Ova postavka će se koristiti za filtriranje u raznim transakcij msgid "Optional. Used with Financial Report Template" msgstr "Opcija. Koristi se s Šablonom Financijskog Izvještaja" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "Opcionalno, postavite broj cifara u nizu koristeći tačku (.) nakon koje slijede ljestve (#). Na primjer, '.####' znači da će niz imati četiri cifre. Standard vrijednost je pet cifara." - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Iznos Naloga" @@ -34526,7 +34535,7 @@ msgid "Out of stock" msgstr "Nema u Zalihana" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "Zastarjeli Unos Otvaranja Kase" @@ -34580,7 +34589,7 @@ msgstr "Nepodmireno (Valuta Tvrtke)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34661,11 +34670,11 @@ msgstr "Dozvoljeno Prekoračenje Naloga (%)" msgid "Over Picking Allowance (%)" msgstr "Dozvola za prekomjernu Odabir (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "Preko Dostavnice" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "Prekmjerni Prijema/Dostava {0} {1} zanemareno za artikal {2} jer imate {3} ulogu." @@ -34682,14 +34691,14 @@ msgstr "Dozvola za prekomjerni Prenos (%)" msgid "Over Withheld" msgstr "Preko Odbitka" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "Prekomjerno Fakturisanje {0} {1} zanemareno za artikal {2} jer imate {3} ulogu." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "Prekomjerno Fakturisanje {} zanemareno jer imate {} ulogu." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34738,10 +34747,6 @@ msgstr "Dospjeli Zadaci" msgid "Overdue and Discounted" msgstr "Dospjela i Snižena" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Preklapanje u bodovanju između {0} i {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Uvjeti koji se preklapaju pronađeni između:" @@ -34807,6 +34812,11 @@ msgstr "PAN Broj" msgid "PCV" msgstr "Verifikat Zatvaranje Perioda" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "Verifikat Zatvaranje Perioda je pauziran" @@ -34854,7 +34864,7 @@ msgstr "Kasa" msgid "POS Additional Fields" msgstr "Dodatna polja Kase" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "Kasa Zatvorena" @@ -34952,8 +34962,8 @@ msgid "POS Invoice is not submitted" msgstr "Kasa Faktura nije podnešena" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "Kasa Fakturu nije kreirao korisnik {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35012,7 +35022,7 @@ msgstr "Unos Otvaranja Kase - {0} je zastario. Zatvori kasu i kreiraj novi Unos msgid "POS Opening Entry Cancellation Error" msgstr "Greška pri otkazivanju Unosa Otvaranja Kase" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "Unos Otvaranje Kase Otkazan" @@ -35033,7 +35043,7 @@ msgstr "Početni Unos Kase Nedostaje" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "Unos Otvarnja Kase ne može se otkazati jer postoje nekonsolidovane fakture." -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "Unos Otvaranja Kase je otkazan. Osvježi stranicu." @@ -35056,7 +35066,7 @@ msgstr "Način Plaćanja Kase" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "Kasa Profil" @@ -35076,8 +35086,8 @@ msgstr "Korisnik Kasa Profila" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "Kasa Profil ne poklapa se s {}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35088,20 +35098,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "Kasa profil {0} ne može biti onemogućen jer su Kasa sesije u toku." #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "Kasa Profil {} sadrži ovaj način plaćanja {}. Uklonite ga da onemogućite ovaj način." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "Kasa Profil {} ne pripada {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "Kasa Profil {} ne postoji." +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "Kasa Profil {} je onemogućen." +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35130,11 +35140,11 @@ msgstr "Kasa Postavke" msgid "POS Transactions" msgstr "Kasa Transakcije" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "Kasa je zatvorena u {0}. Osvježi Stranicu." -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "Kasa Faktura {0} je uspješno kreirana" @@ -35153,7 +35163,7 @@ msgstr "PSOA Projekat" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "Broj(evi) Paketa su već u upotrebi. Pokušajte od Paketa broj {0}" @@ -35778,7 +35788,7 @@ msgstr "Dijelova na Milion" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35905,7 +35915,7 @@ msgstr "Šarža se ne poklapa" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35991,7 +36001,7 @@ msgstr "Specifični Artikal Stranke" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36012,7 +36022,7 @@ msgstr "Tip Stranke" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "Tip Stranke i Stranka mogu se postaviti samo za račun Potraživanja / Plaćanja

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Tip Stranke i Strana su obavezni za {0} račun" @@ -36048,8 +36058,8 @@ msgid "Party is required" msgstr "Stranka je Obavezna" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." -msgstr "Stranka je obavezna za kreiranje unosa plaćanja." +msgid "Party is required to create a payment entry." +msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 msgid "Party type is required to create a payment entry." @@ -36558,7 +36568,7 @@ msgstr "Reference Uplate" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36633,7 +36643,7 @@ msgstr "Raspored Plaćanja" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "Zahtjevi za plaćanje na osnovu rasporeda plaćanja ne mogu se kreirati jer za ovaj dokument već postoji unos plaćanja." -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "Rasporedi Plaćanja" @@ -36655,7 +36665,7 @@ msgstr "Rasporedi Plaćanja" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36755,8 +36765,8 @@ msgid "Payment Type" msgstr "Tip Plaćanja" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Tip Plaćanja mora biti Uplata, Isplata i Interni Prijenos" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36962,11 +36972,11 @@ msgstr "Današnje Aktivnosti na Čekanju" msgid "Pending processing" msgstr "Obrada na Čekanju" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "Količina na čekanju ne može biti veća od tražene količine." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "Količina na čekanju ne može biti negativna." @@ -37483,12 +37493,12 @@ msgstr "Plaid Korisnik" msgid "Plaid Environment" msgstr "Plaid Okruženje" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Plaid Veya nije uspjela" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Obavezno Ažuriranje Plaid Veze" @@ -37510,7 +37520,7 @@ msgstr "Plaid Tajna" msgid "Plaid Settings" msgstr "Plaid Postavke" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Greška pri sinhronizaciji Plaid transakcija" @@ -37661,15 +37671,6 @@ msgstr "Postrojenja i Mašinerije" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Popuni Zalihe Artikala i ažuriraj Listu Odabira da nastavite. Za prekid, otkaži Listu Odabira." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Odaberi Poduzeće" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Odaberi Poduzeće." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37677,7 +37678,6 @@ msgstr "Odaberi Klijenta" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Odaberi Dobavljača" @@ -37685,19 +37685,19 @@ msgstr "Odaberi Dobavljača" msgid "Please Set Priority" msgstr "Postavi Prioritet" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Podstavi Grupu Dobavljača u Postavkama Nabave." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Navedi Račun" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Dodaj ulogu 'Dobavljač' korisniku {0}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Dodaj Način Plaćanja i detalje o Početnom Stanju." @@ -37713,7 +37713,7 @@ msgstr "Dodaj Zahtjev za Ponudu na bočnu traku u Postavci Portala." msgid "Please add Root Account for - {0}" msgstr "Dodaj Root Račun za - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Dodaj Račun za Privremeno Otvaranje u Kontni Plan" @@ -37721,35 +37721,32 @@ msgstr "Dodaj Račun za Privremeno Otvaranje u Kontni Plan" msgid "Please add an account for the Bank Entry rule." msgstr "Dodaj račun za pravilo bankovnog unosa." -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." -msgstr "Dodaj barem jednu seriju imenovanja." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" +msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "Dodaj barem jedan red u Postavke Artikala sa poduzećem prije postavljanja početnih zaliha." -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Molimo dodaj barem jedan Serijski Broj/Šaržni Broj" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Dodaj kolonu Bankovni Račun" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Dodaj Račun Matičnom Poduzeću - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Dodaj Račun Matičnom Poduzeću - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Dodaj {1} ulogu korisniku {0}." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Podesi količinu ili uredi {0} da nastavite." @@ -37791,7 +37788,7 @@ msgstr "Odaberi ili s operacijama ili operativnim troškovima zasnovanim na Goto msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "Odaberi 'Omogući Serijski i Šaržni broj za Artikal' u {0} kako biste kreirali Paket Serijskih i Šaržnih brojeva za artikal." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Provjeri poruku o grešci i poduzmite potrebne radnje da popravite grešku, a zatim ponovo pokrenite ponovno knjiženje." @@ -37804,11 +37801,11 @@ msgstr "Provjeri Plaid ID klijenta i tajne vrijednosti" msgid "Please check your email to confirm the appointment" msgstr "Provjeri e-poštu da potvrdite termin" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Klikni na 'Generiraj Raspored'" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Klikni na 'Generiraj Raspored' da preuzmeš serijski broj dodan za Artikal {0}" @@ -37824,15 +37821,15 @@ msgstr "Molimo vas da prvo završite posao prije unosa količine na čekanju" msgid "Please configure accounts for the Bank Entry rule." msgstr "Konfiguriraj račune za pravilo bankovnog unosa." -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Kontaktiraj bilo kojeg od sljedećih korisnika da produžite kreditna ograničenja za {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Kontaktiraj bilo kojeg od sljedećih korisnika da {} ovu transakciju." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Kontaktiraj administratora da produži kreditna ograničenja za {0}." @@ -37840,11 +37837,11 @@ msgstr "Kontaktiraj administratora da produži kreditna ograničenja za {0}." msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Konvertiraj nadređeni račun u odgovarajućoj podređenojm poduzeću u grupni račun." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Kreiraj Klijenta od Potencijalnog Klijenta {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Kreiraj verifikate za Obračunate Troškove naspram Faktura koje imaju omogućenu opciju „Ažuriraj Zalihe“." @@ -37856,7 +37853,7 @@ msgstr "Kreiraj novu Knjigovodstvenu Dimenziju ako je potrebno." msgid "Please create purchase from internal sale or delivery document itself" msgstr "Kreiraj nabavu iz interne prodaje ili samog dokumenta dostave" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Kreiraj Nabavni Račun ili Nabavnu Fakturu za artikal {0}" @@ -37868,11 +37865,11 @@ msgstr "Izbriši Artikal Paket {0}, prije spajanja {1} u {2}" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "Privremeno onemogući tok rada za Nalog Knjiženja {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Ne knjiži trošak više imovine naspram pojedinačne imovine." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Ne Kreiraj više od 500 artikala odjednom" @@ -37897,8 +37894,8 @@ msgid "Please enable {0} in the {1}." msgstr "Omogući {0} u {1}." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Omogući {} u {} da dozvolite isti artikal u više redova" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37909,12 +37906,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Potvrdi da je {0} račun {1} Troškovni račun. Možete promijeniti vrstu računa u Troškovni ili odabrati drugi račun." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Potvrdi je li {} račun račun Bilansa Stanja." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Potvrdi da je {} račun {} račun Potraživanja." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37929,7 +37926,7 @@ msgstr "Unesi Račun za Kusur" msgid "Please enter Approving Role or Approving User" msgstr "Unesi Odobravajuća Uloga ili Odobravajućeg Korisnika" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Molimo unesite broj Šarže" @@ -37945,7 +37942,7 @@ msgstr "Unesi Datum Dostave" msgid "Please enter Employee Id of this sales person" msgstr "Unesi Personal Id ovog Prodavača" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Unesi Račun Troškova" @@ -37954,7 +37951,7 @@ msgstr "Unesi Račun Troškova" msgid "Please enter Item Code to get Batch Number" msgstr "Unesi Kod Artikla da preuzmete Broj Šarže" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Unesi Kod Artikla da preuzmete Broj Šarže" @@ -37990,7 +37987,7 @@ msgstr "Unesi Referentni Datum" msgid "Please enter Root Type for account- {0}" msgstr "Unesi Kontnu Klasu za račun- {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Molimo unesite Serijski broj" @@ -38120,8 +38117,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "Molimo vas da generirate listu za brisanje prije podnošenja" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Uvezi račune naspram matičnog poduzeća ili omogući {} u Postavkama Poduzeća." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38156,11 +38153,7 @@ msgstr "Navedi Trenutnu i Novu Sastavnicu za zamjenu." msgid "Please pull items from Delivery Note" msgstr "Preuzmi Artikle iz Dostavnice" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Ispravi i pokušaj ponovo." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Osvježi ili poništi Plaid vezu od Banke {}." @@ -38189,12 +38182,12 @@ msgstr "Sačuvaj Prodajni Nalog prije dodavanja rasporeda dostave." msgid "Please select Template Type to download template" msgstr "Odaberi Tip Šablona za preuzimanje šablona" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Odaberi Primijeni Popust na" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Odaberi Sastavnicu naspram Artikla {0}" @@ -38210,9 +38203,9 @@ msgstr "Odaberi Bankovni Račun" msgid "Please select Category first" msgstr "Odaberi Kategoriju" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Odaberi Tip Naknade" @@ -38222,8 +38215,8 @@ msgstr "Odaberi Poduzeće" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Odaberi Poduzeće i datum knjiženja da biste preuzeli unose" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38245,7 +38238,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Odaberi Postojeće Poduzeće za izradu Kontnog Plana" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Molimo odaberi Artikal Gotovog Proizvoda za servisni artikal {0}" @@ -38254,6 +38247,10 @@ msgstr "Molimo odaberi Artikal Gotovog Proizvoda za servisni artikal {0}" msgid "Please select Item Code first" msgstr "Odaberi Kod Artikla" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Odaberi Status Održavanja kao Dovršeno ili uklonite Datum Završetka" @@ -38278,11 +38275,11 @@ msgstr "Odaberi Datum knjiženja prije odabira Stranke" msgid "Please select Posting Date first" msgstr "Odaberi Datum Knjiženja" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Odaberi Cjenovnik" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Odaberi Količina naspram Artikla {0}" @@ -38311,6 +38308,7 @@ msgid "Please select a BOM" msgstr "Odaberi Sastavnicu" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Odaberi Poduzeće" @@ -38318,11 +38316,12 @@ msgstr "Odaberi Poduzeće" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Odaberi Poduzeće." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Odaberi Klijenta" @@ -38331,7 +38330,7 @@ msgstr "Odaberi Klijenta" msgid "Please select a Delivery Note" msgstr "Odaberi Dostavnicu" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Odaberi Podizvođački Nabavni Nalog." @@ -38343,7 +38342,7 @@ msgstr "Odaberi Dobavljača" msgid "Please select a Warehouse" msgstr "Odaberi Skladište" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Odaberi Radni Nalog." @@ -38359,6 +38358,7 @@ msgstr "Molimo odaberite bankovni račun za pregled izvoda o usklađivanju banko msgid "Please select a bank and set the date range" msgstr "Molimo odaberite banku i postavite raspon datuma" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "Odaberi Poduzeće." @@ -38392,22 +38392,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "Odaberi učestalost za raspored dostave" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Odaberi red za kreiranje Unosa Ponovnog Knjiženje" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Odaberi Dobavljača za preuzimanje plaćanja." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "Odaberi Transakciju." - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Odaberi važeći Nabavni Nalog koji je konfigurisan za Podizvođača." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Odaberi Vrijednost za {0} Ponuda za {1}" @@ -38416,7 +38420,7 @@ msgstr "Odaberi Vrijednost za {0} Ponuda za {1}" msgid "Please select an item code before setting the warehouse." msgstr "Odaberite kod artikla prije postavljanja skladišta." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "Molimo odaberite barem jednu vrijednost atributa" @@ -38424,10 +38428,18 @@ msgstr "Molimo odaberite barem jednu vrijednost atributa" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Odaberi barem jedan filter: Šifra Artikla, Šarža ili Serijski Broj." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "Molimo odaberite barem jedan artikal za ažuriranje isporučene količine." +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Odaberi barem jedan red za ispravljanje" @@ -38436,18 +38448,10 @@ msgstr "Odaberi barem jedan red za ispravljanje" msgid "Please select at least one row with difference value" msgstr "Odaberi barem jedan red s vrijednošću razlike" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "Odaberi barem jedan raspored." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "Odaberi jedan artikal za nastavak" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "Odaberi barem jednu operaciju za kreiranje kartice posla" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Odaberi tačan račun" @@ -38485,12 +38489,12 @@ msgstr "Odaber artikle za rezervaciju." msgid "Please select items to unreserve." msgstr "Odaberi artikle koje želite izbrisati iz rezervacije." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Odaberi samo jedan red da kreirate Unos Ponovnog Knjiženja" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Odaberi redove da kreirate unose za ponovno knjiženje" @@ -38499,8 +38503,8 @@ msgid "Please select the Company" msgstr "Odaberi Poduzeće" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Odaberi Tip Višeslojnog Programa za više od jednog pravila prikupljanja." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38523,20 +38527,16 @@ msgstr "Odaberi tip dokumenta." msgid "Please select the required filters" msgstr "Odaberi obavezne filtere" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Odaberi važeći tip dokumenta." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Odaberi sedmične neradne dane" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Odaberi {0}" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Postavi 'Primijeni Dodatni Popust Na'" @@ -38565,8 +38565,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Postavi Račun u Skladištu {0} ili Standard Račun Zaliha u {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Postavi Knjigovodstvenu Dimenziju {} u {}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38595,22 +38595,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Postavi E-poštu/Telefon za kontakt" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Postavi Fiskalni Kod za Klijenta '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Postavi Fiskalni Kod za Klijenta '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Postavi Fiskalni Kod za Javnu Upravu '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Postavi Fiskalni Kod za Javnu Upravu '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "Postavi Račun Osnovne Imovine u Kategoriju Imovine {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Postavi Račun Fiksne Imovine u {} naspram {}." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38626,9 +38624,8 @@ msgid "Please set Root Type" msgstr "Postavi Kontni Tip" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Postavi Fiskalni Broj za Klijenta '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Postavi Fiskalni Broj za Klijenta '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38647,15 +38644,15 @@ msgid "Please set a Company" msgstr "Postavi Poduzeće" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Postavi Centar Troškova za Imovinu ili postavite Centar Troškova Amortizacije za {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "Postavi Privremeni Početni Račun za {0} kako biste kreirali početno usklađivanje zaliha." -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Postavi standard Listu Praznika za {0}" @@ -38672,9 +38669,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "Postavi stvarnu potražnju ili prognozu prodaje kako biste generirali Izvještaj o planiranju potreba za materijalom." #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Postavi Adresu Poduzeća '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "Postavi Adresu Poduzeća '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38692,25 +38688,22 @@ msgstr "Postavi barem jedan red u Tabeli PDV-a i Naknada" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "Postavi i Porezni i Fiskalni broj za {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Načine Plaćanja {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Postavi Standard Račun Rezultata u {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38741,11 +38734,11 @@ msgstr "Postavi filter na osnovu Artikla ili Skladišta" msgid "Please set one of the following:" msgstr "Postavi jedno od sljedećeg:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "Postavi početni broj knjižene amortizacije" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Postavi ponavljanje nakon spremanja" @@ -38753,7 +38746,7 @@ msgstr "Postavi ponavljanje nakon spremanja" msgid "Please set the Customer Address" msgstr "Postavi Adresu Klienta" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Postavi Standard Centar Troškova u {0}." @@ -38808,7 +38801,7 @@ msgstr "Postavi {0} u {1} kako biste knjižili Rezultat Deviznog Kursa" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Postavi {0} na {1}, isti račun koji je korišten u originalnoj fakturi {2}." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Podesi i omogući grupni račun sa Kontnom Klasom - {0} za {1}" @@ -38816,7 +38809,7 @@ msgstr "Podesi i omogući grupni račun sa Kontnom Klasom - {0} za {1}" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Podijeli ovu e-poštu sa svojim timom za podršku kako bi mogli pronaći i riješiti problem." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Navedi Poduzeće" @@ -38826,8 +38819,8 @@ msgstr "Navedi Poduzeće" msgid "Please specify Company to proceed" msgstr "Navedi Poduzeće da nastavite" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Navedi važeći ID reda za red {0} u tabeli {1}" @@ -38835,11 +38828,11 @@ msgstr "Navedi važeći ID reda za red {0} u tabeli {1}" msgid "Please specify a {0} first." msgstr "Navedi {0}." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Navedi barem jedan atribut u tabeli Atributa" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Navedi ili Količinu ili Stopu Vrednovanja ili oboje" @@ -38847,6 +38840,14 @@ msgstr "Navedi ili Količinu ili Stopu Vrednovanja ili oboje" msgid "Please specify from/to range" msgstr "Navedi od/Do Raspona" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Pokušaj ponovo za sat vremena." @@ -39010,7 +39011,7 @@ msgstr "Objavljeno" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39035,7 +39036,7 @@ msgstr "Objavljeno" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39078,8 +39079,8 @@ msgstr "Datum Knjiženja" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Datum knjiženja ne može biti budući datum" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39087,7 +39088,7 @@ msgstr "Datum knjiženja ne može biti budući datum" msgid "Posting Date inheritance for exchange gain / loss" msgstr "Nasljeđivanje Datuma Knjiženja za rezultat od kursa" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "Datum registracije će se promijeniti u današnji datum jer nije odabrano polje za uređivanje datuma i vremena registracije. Jeste li sigurni da želite nastaviti?" @@ -39280,6 +39281,10 @@ msgstr "Unaprijed Plaćeno (faktura na početku perioda)" msgid "Prepaid Expenses" msgstr "Uplaćeni Troškovi" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "Predsjednik" @@ -39369,7 +39374,7 @@ msgstr "Pregled Transakcija" msgid "Preview mode" msgstr "Način Prikaza" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Prethodna Finansijska Godina nije zatvorena" @@ -39511,7 +39516,7 @@ msgstr "Cijenovnik Zemlje" msgid "Price List Currency" msgstr "Valuta Cijenovnika" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Valuta Cijenovnika nije odabrana" @@ -39632,7 +39637,7 @@ msgstr "Cijena ne ovisi o Jedinici" msgid "Price Per Unit ({0})" msgstr "Cijena po Jedinici ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "Cijena nije određena za artikal." @@ -39743,7 +39748,7 @@ msgstr "Cijenovno Pravilo se prvo bira na osnovu polja 'Primijeni na', koje mož msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "Cijenovno Pravilo je napravljeno da zamjeni cijenovnik / definiše procenat popusta, na osnovu određenih kriterija." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "Pravilo Određivanja Cijena {0} je ažurirano" @@ -39951,8 +39956,8 @@ msgid "Priorities" msgstr "Prioriteti" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "Prioritet ne može biti manji od 1." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40133,7 +40138,7 @@ msgstr "Obradi Pretplatu" msgid "Process in Single Transaction" msgstr "Obrada u Jednoj Transakciji" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "Količina gubitaka u procesu ne može biti negativna." @@ -40259,7 +40264,7 @@ msgstr "Paket Proizvoda" msgid "Product Bundle Balance" msgstr "Stanje Paketa Proizvoda" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "Komponenta Paketa Artikala" @@ -40284,7 +40289,7 @@ msgstr "Pomoć Paketa Proizvoda" msgid "Product Bundle Item" msgstr "Artikal Paketa Artikala" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "Nadređeni Paket Artikala" @@ -40487,7 +40492,7 @@ msgstr "Proizvodi" msgid "Profit & Loss" msgstr "Rezultat" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Rezultat ove Godine" @@ -40516,6 +40521,10 @@ msgstr "Rezultat" msgid "Profit and Loss Statement" msgstr "Bilans Uspjeha" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40524,8 +40533,8 @@ msgstr "Bilans Uspjeha" msgid "Profit and Loss Summary" msgstr "Sažetak Rezultata" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Rezultat za Godinu" @@ -40598,7 +40607,7 @@ msgstr "Status Projekta" msgid "Project Summary" msgstr "Sažetak Projekta" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Sažetak Projekta za {0}" @@ -40678,7 +40687,7 @@ msgstr "Projektno Praćenje Zaliha" msgid "Project wise Stock Tracking " msgstr "Projektno Praćenje Zaliha " -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Projektni Podaci nisu dostupni za Ponudu" @@ -40729,7 +40738,7 @@ msgstr "Predviđena Količina" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40875,7 +40884,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Prospekti Angažovani, ali ne i Preobraćeni" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "Zaštićeni DocType" @@ -40908,9 +40917,9 @@ msgstr "Privremeni Račun (Usluga)" msgid "Provisional Expense Account" msgstr "Račun Privremenih Troškova" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Privremeni Rezultat (Kredit)" @@ -41138,8 +41147,8 @@ msgstr "Statistika Nabavne Fakture" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Nabavna Faktura ne može biti napravljena naspram postojeće imovine {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Nabavna Faktura {0} je već podnešena" @@ -41180,7 +41189,7 @@ msgstr "Nabavne Fakture" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41204,11 +41213,11 @@ msgstr "Nabavne Fakture" msgid "Purchase Order" msgstr "Nabavni Nalog" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Iznos Nabavnog Naloga" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Iznos Nabavnog Naloga (Valuta Poduzeća)" @@ -41223,7 +41232,7 @@ msgstr "Iznos Nabavnog Naloga (Valuta Poduzeća)" msgid "Purchase Order Analysis" msgstr "Statistika Nabavnog Naloga" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Datum Nabavnog Naloga" @@ -41272,8 +41281,8 @@ msgid "Purchase Order Required" msgstr "Nabavni Nalog Obavezan" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Nabavni Nalog je obavezan za artikal {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41332,8 +41341,8 @@ msgid "Purchase Orders to Receive" msgstr "Nabavni Nalozi za Prijem" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Nabavni Nalozi {0} nisu povezani" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41422,8 +41431,8 @@ msgid "Purchase Receipt Required" msgstr "Nabavni Račun je Obavezan" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Nabavni Račun je obavezan za artikal {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41442,8 +41451,8 @@ msgid "Purchase Receipt Trends " msgstr "Statistika Nabavnog Računa " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Nabavni Račun nema nijedan artikal za koju je omogućeno Zadržavanje Uzorka." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41670,7 +41679,7 @@ msgstr "K4" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41689,7 +41698,7 @@ msgstr "K4" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41754,7 +41763,7 @@ msgstr "Količina Nakon Transakcije" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41791,7 +41800,7 @@ msgstr "Količina po Jedinici" msgid "Qty To Manufacture" msgstr "Količina za Proizvodnju" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "Količina za Proizvodnju ({0}) ne može biti razlomak za Jedinicu {2}. Da biste to omogućili, onemogući '{1}' u Jedinici {2}." @@ -41886,7 +41895,7 @@ msgstr "Količina za Potrošnju" msgid "Qty to Bill" msgstr "Količina za Fakturisanje" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Količina za Proizvodnju" @@ -42072,7 +42081,7 @@ msgstr "Inspekcija Kvaliteta" msgid "Quality Inspection Analysis" msgstr "Analiza Kontrole Kvaliteta" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "Kontrola Kvalitete nije Konfigurirana" @@ -42149,7 +42158,7 @@ msgstr "Kontrola kvalitete {0} nije podnesena za artikal: {1}" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "Kontrola kvalitete {0} je odbijena za artikal: {1}" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Kontrola Kvaliteta" @@ -42232,7 +42241,7 @@ msgstr "Pregled Kvaliteta" msgid "Quality Review Objective" msgstr "Cilj Revizije Kvaliteta" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "Količine su uspješno ažurirane." @@ -42276,12 +42285,12 @@ msgstr "Količine su uspješno ažurirane." #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42432,7 +42441,7 @@ msgstr "Količina je obavezna" msgid "Quantity must be greater than zero" msgstr "Količina mora biti veća od nule" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "Količina mora biti veća od nule." @@ -42460,11 +42469,11 @@ msgstr "Količina bi trebala biti veća od 0" msgid "Quantity to Manufacture" msgstr "Količina za Proizvodnju" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "Količina za proizvodnju ne može biti nula za operaciju {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Količina za Proizvodnju mora biti veća od 0." @@ -42472,6 +42481,10 @@ msgstr "Količina za Proizvodnju mora biti veća od 0." msgid "Quantity to Scan" msgstr "Količina za Skeniranje" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42497,7 +42510,7 @@ msgstr "Četvrtina {0} {1}" msgid "Query Route String" msgstr "Niz Rute Upita" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "Veličina Reda čekanja treba biti između 5 i 100" @@ -42737,7 +42750,7 @@ msgstr "Podigao (e-pošta)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42921,8 +42934,8 @@ msgid "Rate at which this tax is applied" msgstr "PDV Stopa" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "Cijena artikala '{}' ne može se promijeniti" +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43240,7 +43253,7 @@ msgstr "Razlog za Stavljanje Na Čekanje" msgid "Reason for Failure" msgstr "Razlog Neuspjeha" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Razlog Čekanja" @@ -43482,8 +43495,8 @@ msgstr "Lista Primatelja je prazna. Kreiraj Listu Primatelja" msgid "Receiving" msgstr "Preuzima se" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Nedavni Nalozi" @@ -43659,6 +43672,10 @@ msgstr "Zabilježite unos plaćanja za klijenta ili dobavljača" msgid "Record a transfer between two bank accounts" msgstr "Zabilježite prijenos između dva bankovna računa" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43709,7 +43726,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Rekurzija preko Količine ne može biti manja od 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "Sistem ne podržava rekurzivne popuste sa mješovitim uvjetima" @@ -43789,7 +43806,7 @@ msgstr "Referenca #" msgid "Reference #{0} dated {1}" msgstr "Referenca #{0} datirana {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Referentni Datum za popust pri ranijem plaćanju" @@ -44081,8 +44098,8 @@ msgid "Rejected Warehouse" msgstr "Odbijeno Skladište" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Odbijeno i Prihvaćeno Skladište ne mogu biti isto." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44188,7 +44205,7 @@ msgstr "Napomena" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44227,7 +44244,7 @@ msgstr "Ukloni nula brojeva" msgid "Remove item if charges is not applicable to that item" msgstr "Ukloni artikal ako se na taj artikal ne naplaćuju naknade" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Uklonjeni artikli bez promjene Količine ili Vrijednosti." @@ -44379,7 +44396,7 @@ msgstr "Prijavi Grešku" msgid "Report Line Items" msgstr "Artikal Reda Izvještaja" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44462,7 +44479,7 @@ msgstr "Zapisnik Grešaka Ponovnog Knjiženja" msgid "Repost Item Valuation" msgstr "Ponovo Knjiži Vrijednost Artikla" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "Ponovno knjiženje vrijednosti artikla je ponovo pokrenuto za odabrane neuspješne zapise." @@ -44508,6 +44525,15 @@ msgstr "Ponovno Knjiženje je započeto u pozadini" msgid "Reposting Data File" msgstr "Datoteke Podataka Ponovnog Knjiženja" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44592,7 +44618,7 @@ msgstr "Obavezno do Datuma" msgid "Reqd Qty (BOM)" msgstr "Zahtjevana količina (Sastavnica)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Obavezno do Datuma" @@ -44708,11 +44734,11 @@ msgstr "Zatražena Količina" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Zatražena Količina: Zatražena količina za nabavu, ali nije naručena." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Stranica Zahtjeva" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Podnosioc" @@ -44891,6 +44917,10 @@ msgstr "Rezerviši Zalihe" msgid "Reserve Warehouse" msgstr "Rezervno Skladište" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "Rezerviši za Sirovine" @@ -44929,8 +44959,8 @@ msgid "Reserved Qty" msgstr "Rezervisana Količina" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "Rezervisana Količina ({0}) ne može biti razlomak. Da biste to omogućili, onemogući '{1}' u Jedinici {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Rezervisana Količina ({0}) ne može biti razlomak. Da biste to omogućili, onemogući '{1}' u Jedinici {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44974,7 +45004,7 @@ msgstr "Rezervisana Količina" msgid "Reserved Quantity for Production" msgstr "Rezervisana Količina za Proizvodnju" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Rezervisani Serijski Broj" @@ -44990,13 +45020,13 @@ msgstr "Rezervisani Serijski Broj" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Rezervisane Zalihe" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Rezervisane Zalihe za Šaržu" @@ -45490,6 +45520,10 @@ msgstr "Vraćeni Devizni Kurs nije ni ceo broj ni zarezni broj." msgid "Returns" msgstr "Povrati" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45914,11 +45948,11 @@ msgstr "Naziv Redoslijeda Operacija" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Red # {0}: Ne može se vratiti više od {1} za artikal {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Red # {0}: Dodaj Serijski i Šaržni Paket za Artikal {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "Red br. {0}: Unesi količinu za artikal {1} jer nije nula." @@ -46002,23 +46036,23 @@ msgstr "Red #{0}: Sastavnica nije pronađena za Gotov Proizvod {1}" msgid "Row #{0}: Batch No {1} is already selected." msgstr "Red #{0}: Broj Šarže {1} je već odabran." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "Red #{0}: Šaržni Broj(evi) {1} nije u povezanom Podugovaračkom Nalogu. Odaberi važeće Šaržne broj(eve)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Red #{0}: Ne može se dodijeliti više od {1} naspram uslova plaćanja {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "Red #{0}: Ne može se otkazati ovaj Unos Proizvodnih Zaliha jer fakturisana količina artikla {1} ne može biti veća od potrošene količine." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "Red #{0}: Ne može se poništiti ovaj unos proizvodnih zaliha jer količina proizvedenog sekundarnog artikla {1} ne može biti manja od isporučene količine." -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "Red #{0}: Ne može se otkazati ovaj Unos Zaliha jer vraćena količina ne može biti veća od isporučene količine za artikal {1} u povezanom Podizvođačkom Nalogu" @@ -46094,13 +46128,16 @@ msgstr "Red #{0}: Nije pronađeno dovoljno {1} unosa za usklađivanje. Preostali msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Red #{0}: Kumulativni prag ne može biti manji od praga pojedinačne transakcije" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "Red #{0}: Klijent Dostavljen Artikal {1} naspram Artikla Internog Podizvođačkog Naloga {2} ({3}) ne može se dodati više puta." -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "Red #{0}: Klijent Dostavljen Artikal {1} ne može se dodati više puta u Podizvođačkom procesu." @@ -46112,7 +46149,7 @@ msgstr "Red #{0}: Klijent Dostavljen Artikal {1} ne može se dodati više puta." msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "Red #{0}: Klijent Dostavljen Artikal {1} ne postoji u tabeli Obaveznih Artikala povezanih s Interim Podizvođačkim Nalogom." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "Red #{0}: Klijent Dostavljen Artikal {1} premašuje količinu dostupnu putem Podizvođačkog Naloga" @@ -46120,12 +46157,12 @@ msgstr "Red #{0}: Klijent Dostavljen Artikal {1} premašuje količinu dostupnu p msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "Red #{0}: Klijent Dostavljen Artikal {1} nema dovoljnu količinu u Internom Podizvođačkom Nalogu. Dostupna količina je {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Red #{0}: Klijent Dostavljeni Artikal {1} nije u Podizvođačkom Nalogu {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "Red #{0}: Klijent Dostavljen Artikal {1} nije u Radnom Nalogu {2}" @@ -46137,7 +46174,7 @@ msgstr "Red #{0}: Datumi se preklapaju s drugim redom u grupi {1}" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Red #{0}: Standard Sastavnica nije pronađena za gotov proizvod artikla {1}" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Red #{0}: Početni Datum Amortizacije je obavezan" @@ -46145,6 +46182,10 @@ msgstr "Red #{0}: Početni Datum Amortizacije je obavezan" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Red #{0}: Duplikat unosa u Referencama {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Red #{0}: Očekivani Datum Isporuke ne može biti prije datuma Nabavnog Naloga" @@ -46157,11 +46198,18 @@ msgstr "Red #{0}: Račun Troškova nije postavljen za artikal {1}. {2}" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "Red #{0}: Račun troškova {1} nije važeći za Nabavnu Fakturu {2}. Dozvoljeni su samo računi troškova za artikle koji nisu na zalihama." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Red #{0}: Količina gotovog proizvoda artikla ne može biti nula" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46184,8 +46232,8 @@ msgstr "Red #{0}: Gotov Proizvod mora biti {1}" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "Red #{0}: Gotov Proizvod referenca je obavezna za Sekundarni Artikal {1}." -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "Red #{0}: Za Klijent Dostavljeni Artikal {1}, izvorno skladište mora biti {2}" @@ -46197,7 +46245,7 @@ msgstr "Red #{0}: Za {1}, možete odabrati referentni dokument samo ako je raču msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Red #{0}: Za {1}, možete odabrati referentni dokument samo ako račun bude zadužen" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "Red #{0}: Učestalost amortizacije mora biti veća od nule" @@ -46209,6 +46257,10 @@ msgstr "Red #{0}: Od datuma ne može biti prije Do datuma" msgid "Row #{0}: From Time and To Time fields are required" msgstr "Red #{0}: Polja Od i Do su obavezna" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Red #{0}: Artikel je dodan" @@ -46237,16 +46289,16 @@ msgstr "Red #{0}: Artikal {1} nema cjenu, ali '{2}' nije omogućeno." msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "Red #{0}: Artikal {1} u skladištu {2}: Dostupno {3}, Potrebno {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "Red #{0}: Artikal {1} nije Klijent Dostavljen Artikal." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Red #{0}: Artikal {1} nije Serijalizirani/Šaržirani Artikal. Ne može imati Serijski Broj / Broj Šarže naspram sebe." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Red #{0}: Artikal {1} nije u Podizvođačkom Nalogu {2}" @@ -46262,13 +46314,17 @@ msgstr "Red #{0}: Artikal {1} nije artikal na zalihama" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "Red #{0}: Artikal {1} nije dio unosa izvornog proizvođača i ne može se dodati ovom rastavljanju." -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "Red #{0}: Artikal {1} se ne slaže. Promjena koda artikla nije dozvoljena, umjesto toga dodaj još jedan red." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "Red #{0}: Artikla {1} se ne slaže. Promjena koda artikla nije dozvoljena." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46278,15 +46334,15 @@ msgstr "Red #{0}: Količina artikla {1} ({2} u jedinici zaliha) ne odgovara koli msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Red #{0}: Nalog Knjiženja {1} nema račun {2} ili je već usjklađen naspram drugog verifikata" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "Red #{0}: Nedostaje {1} za {2}." -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "Red #{0}: Sljedeći datum amortizacije ne može biti prije datuma dostupnosti za upotrebu" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "Red #{0}: Sljedeći datum amortizacije ne može biti prije datuma nabave" @@ -46298,24 +46354,48 @@ msgstr "Red #{0}: Nije dozvoljeno mijenjati dobavljača jer Nabavni Nalog već p msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Red #{0}: Samo {1} je dostupno za rezervisanje za artikal {2}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "Red #{0}: Početna akumulirana amortizacija mora biti manja ili jednaka {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "Red #{0}: Prekomjerna potrošnja Klijent Dostavljenog Artikla {1} u odnosu na Radni Nalog {2} nije dozvoljena u Internom Podizvođačkom procesu." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Red #{0}: Odaberi Kod Artikla u Artiklima Montaže" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Red #{0}: Odaberi broj Spiska Materijala u Artiklima Montaže" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "Red #{0}: Odaberi Artikal Gotovog Proizvoda za koju će se koristiti ovaj Klijent Dostavljen Artikal." @@ -46331,6 +46411,10 @@ msgstr "Red #{0}: Postavite količinu za ponovnu narudžbu" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Red #{0}: Ažuriraj račun odloženih prihoda/troškova u redu artikla ili sttandard račun u postavkama poduzeća" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46350,8 +46434,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Red #{0}: Količina mora biti pozitivan broj" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Red #{0}: Količina bi trebala biti manja ili jednaka Dostupnoj Količini za Rezervaciju (stvarna količina - rezervisana količina) {1} za artikal {2} naspram Šarže {3} u Skladištu {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46373,7 +46457,7 @@ msgstr "Red #{0}: Količina ne može biti negativan broj. Postavi količinu ili msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Red #{0}: Količina za artikal {1} ne može biti nula." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "Red #{0}: Količina artikla {1} ne može biti veća od {2} {3} u odnosu na Podizvođački Nalog {4}" @@ -46381,17 +46465,17 @@ msgstr "Red #{0}: Količina artikla {1} ne može biti veća od {2} {3} u odnosu msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Red #{0}: Količina koju treba rezervisati za artikal {1} treba biti veća od 0." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Red #{0}: Cijena mora biti ista kao {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Red #{0}: Tip referentnog dokumenta mora biti jedan od Nabavni Nalog, Nabavna Faktura ili Nalog Knjiženja" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Red #{0}: Tip referentnog dokumenta mora biti jedan od Prodajni Nalog, Prodajna Faktura, Nalog Knjiženja ili Opomena" @@ -46411,11 +46495,11 @@ msgstr "Red #{0}: Trošak popravke {1} premašuje raspoloživi iznos {2} za Naba msgid "Row #{0}: Return Against is required for returning asset" msgstr "Red #{0}: Povrat Naspram za povrat imovine je obavezno" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "Red #{0}: Vraćena količina ne može biti veća od dostupne količine za artikal {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "Red #{0}: Vraćena količina ne može biti veća od dostupne količine za povrat za Artikal {1}" @@ -46425,18 +46509,19 @@ msgstr "Red #{0}: Količina Sekundarnog Artikla ne može biti nula" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "Red #{0}: Prodajna cijena za artikal {1} je niža od njegove {2}.\n" -"\t\t\t\t\tProdaja {3} treba biti najmanje {4}.

                    Alternativno,\n" -"\t\t\t\t\tmožete onemogućiti '{5}' u {6} da biste zaobišli\n" -"\t\t\t\t\tovu validaciju." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "Red #{0}: ID Sekvence mora biti {1} ili {2} za Operaciju {3}." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Red #{0}: Serijski Broj {1} ne pripada Šarži {2}" @@ -46449,7 +46534,7 @@ msgstr "Red #{0}: Serijski broj {1} za artikal {2} nije dostupan u {3} {4} ili m msgid "Row #{0}: Serial No {1} is already selected." msgstr "Red #{0}: Serijski Broj {1} je već odabran." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "Red #{0}: Serijski Broj(evi) {1} nisu u povezanom Podizvođačkom Nalogu. Odaberi važeći serijski broj(eve)." @@ -46473,7 +46558,7 @@ msgstr "Red #{0}: Postavi Dobavljača za artikal {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "Red #{0}: Pošto je omogućeno 'Praćenje Polugotovih Artikala', Sastavnica {1} se ne može koristiti za artikle podsklopa" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Red #{0}: Izvorno skladište mora biti isto kao i skladište klijenta {1} iz povezanog Podizvođačkog Naloga" @@ -46542,7 +46627,7 @@ msgstr "Red #{0}: Zaliha nije dostupna za rezervisanje za artikal {1} u skladiš msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "Red #{0}: Količina zaliha {1} ({2}) za artikal {3} ne može biti veća od {4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Red #{0}: Ciljano skladište mora biti isto kao i skladište klijenta {1} iz povezanog Podizvođačkog Naloga" @@ -46550,19 +46635,27 @@ msgstr "Red #{0}: Ciljano skladište mora biti isto kao i skladište klijenta {1 msgid "Row #{0}: The batch {1} has already expired." msgstr "Red #{0}: Šarža {1} je već istekla." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Red #{0}: Skladište {1} nije podređeno skladište grupnog skladišta {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Red #{0}: Vrijeme je u sukobu sa redom {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Red #{0}: Ukupan broj amortizacija ne može biti manji ili jednak početnom broju knjiženih amortizacija" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "Red #{0}: Ukupan broj amortizacija mora biti veći od nule" @@ -46574,11 +46667,15 @@ msgstr "Red #{0}: Skladište {1} nije usklađen sa skladištem {2} u serijskom i msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "Red #{0}: Iznos Odbitka {1} ne odgovara izračunatom iznosu {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "Red #{0}: Radni Nalog postoji za punu ili djelomičnu količinu artiikla {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Red #{0}: Ne možete koristiti dimenziju zaliha '{1}' u usaglašavanju zaliha za izmjenu količine ili stope vrednovanja. Usaglašavanje zaliha sa dimenzijama zaliha namijenjeno je isključivo za obavljanje početnih unosa." @@ -46586,6 +46683,19 @@ msgstr "Red #{0}: Ne možete koristiti dimenziju zaliha '{1}' u usaglašavanju z msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Red #{0}: Odaberi Imovinu za Artikal {1}." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Red #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Red #{0}: {1} ne može biti negativan za artikal {2}" @@ -46602,6 +46712,14 @@ msgstr "Red #{0}: {1} je obavezno za kreiranje Početne Fakture {2}" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Red #{0}: {1} od {2} bi trebao biti {3}. Ažuriraj {1} ili odaberi drugi račun." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "Red #{0}: Količina za artikal {1} ne može biti nula." @@ -46642,71 +46760,10 @@ msgstr "Red #{idx}: {from_warehouse_field} i {to_warehouse_field} ne mogu biti i msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "Red #{idx}: {schedule_date} ne može biti prije {transaction_date}." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Red #{}: Valuta {} - {} ne odgovara valuti poduzeća." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "Red #{}: Obavezan je ili ID Stranke ili Naziv Stranke" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Red #{}: Finansijski Registar ne smije biti prazan jer ih koristite više." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Red #{}: Kasa Faktura {} je {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Red #{}: Kasa Faktura {} nije naspram klijenta {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Red #{}: Kasa Faktura {} još nije podnešena" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "Red #{}: ID Stranke je obavezan" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Red #{}: Dodijeli zadatak članu." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Red #{}: Koristi drugi Finansijski Registar." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Red #{}: Serijski Broj {} se ne može vratiti jer nije izvršena transakcija na originalnoj fakturi {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Red #{}: Originalna Faktura {} povratne fakture {} nije objedinjena." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Red #{}: Ne možete dodati pozitivne količine u povratnu fakturu. Ukloni artikal {} da završite povrat." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Red #{}: Artikal {} je već odabran." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Red #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Red #{}: {} {} ne postoji." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Red #{}: {} {} ne pripada {}. Odaberi važeći {}." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Red br {0}: Skladište je obezno. Postavite standard skladište za {1} i {2}" @@ -46719,10 +46776,6 @@ msgstr "Red {0} : Operacija je obavezna naspram artikla sirovine {1}" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "Red {0} odabrana količina je manja od potrebne količine, potrebno je dodatno {1} {2}." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Red {0}# Artikal {1} nije pronađen u tabeli 'Isporučene Sirovine' u {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Red {0}: Prihvaćena Količina i Odbijena Količina ne mogu biti nula u isto vrijeme." @@ -46743,19 +46796,19 @@ msgstr "Red {0}: Predujam naspram Klijenta mora biti kredit" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Red {0}: Predujam naspram Dobavljača mora biti debit" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Red {0}: Dodijeljeni iznos {1} mora biti manji ili jednak nepodmirenom iznosu fakture {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Red {0}: Dodijeljeni iznos {1} mora biti manji ili jednak preostalom iznosu plaćanja {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Red {0}: Kako je {1} omogućen, sirovine se ne mogu dodati u {2} unos. Koristite {3} unos za potrošnju sirovina." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Red {0}: Sastavnica nije pronađena za Artikal {1}" @@ -46771,11 +46824,11 @@ msgstr "Redak {0}: Ne može se prodati artikal {1} iz skladišta za zadržavanje msgid "Row {0}: Conversion Factor is mandatory" msgstr "Red {0}: Faktor konverzije je obavezan" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Red {0}: Centar Troškova {1} ne pripada {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Red {0}: Centar Troškova je obaveyan za artikal {1}" @@ -46803,24 +46856,24 @@ msgstr "Red {0}: Skladište isporuke ne može biti isto kao skladište klijenta msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Red {0}: Datum roka plaćanja u tabeli Uslovi Plaćanja ne može biti prije datuma knjiženja" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Red {0}: Ili je Artikal Dostavnice ili Pakirani Artikal referenca obavezna." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Red {0}: Devizni Kurs je obavezan" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "Red {0}: Očekivana vrijednost nakon vijeka trajanja ne može biti negativna" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "Red {0}: Očekivana vrijednost nakon vijeka trajanja mora biti manja od neto nabavnog iznosa" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "Red {0}: Račun Troškova {1} je povezan sa {2}. Odaberi račun koji pripada {3}." @@ -46841,6 +46894,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Red {0}: Od vremena i do vremena je obavezano." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Red {0}: Od vremena i do vremena {1} se preklapa sa {2}" @@ -46862,8 +46918,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Red {0}: Nevažeća referenca {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Red {0}: Šablon PDV-a za Artikal ažuriran je prema valjanosti i primijenjenoj cijeni" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46893,7 +46949,7 @@ msgstr "Red {0}: Vrijeme operacije treba biti veće od 0 za operaciju {1}" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Red {0}: Pakovana Količina mora biti jednaka {1} Količini." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Red {0}: Otpremnica je već kreirana za artikal {1}." @@ -46917,7 +46973,7 @@ msgstr "Red {0}: Plaćanje naspram Prodajnog/Nabavnog Naloga uvijek treba navest msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Red {0}: Provjeri 'Predujam' naspram računa {1} ako je ovo predujam unos." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Red {0}: Navedi važeću referencu Artikla Dostavnice ili Pakiranog Artikla." @@ -46925,14 +46981,14 @@ msgstr "Red {0}: Navedi važeću referencu Artikla Dostavnice ili Pakiranog Arti msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Red {0}: Odaberi Sastavnicu za artikal {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Red {0}: Odaberi Aktivnu Sastavnicu za artikal {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Red {0}: Odaberi važeću Sastavnicu za artikal{1}." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Red {0}: Postavi Razlog PDV Izuzeća u Prodajnom PDV-u i Naknadi" @@ -46949,11 +47005,11 @@ msgstr "Red {0}: Postavi ispravan kod za Način Plaćanja {1}" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Red {0}: Projekat mora biti isti kao onaj postavljen u Radnoj Listi: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Red {0}: Nabavna Faktura {1} nema utjecaja na zalihe." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Red {0}: Količina ne može biti veća od {1} za artikal {2}." @@ -46961,7 +47017,7 @@ msgstr "Red {0}: Količina ne može biti veća od {1} za artikal {2}." msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Red {0}: Količina u Jedinici Zaliha ne može biti nula." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Red {0}: Količina mora biti veća od 0." @@ -46973,7 +47029,7 @@ msgstr "Red {0}: Količina ne može biti negativna." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "Red {0}: Prodajna Faktura {1} je već kreirana za {2}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "Red {0}: Serijski / Šaržni broj je podešen na vrijednosti povezane s Radnim Nalogom {1} jer prethodno odabrani serijski / šaržni broj ne pripada ovom Radnom Nalogu." @@ -46998,10 +47054,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "Red {0}: Cijeli iznos troška za račun {1} u {2} je već dodijeljen." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Red {0}: Artikal {1}, količina mora biti pozitivan broj" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Red {0}: {3} Račun {1} ne pripada {2}" @@ -47054,15 +47110,19 @@ msgstr "Red {0}: {1} {2} ne može biti isto kao {3} (Račun Stranke) {4}" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Red {0}: {1} {2} nije usklađen sa {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "Red {0}: {1} {2} je povezan sa {3}. Odaberi dokument koji pripada {4}." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Red {0}: {2} Artikal {1} ne postoji u {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Red {1}: Količina ({0}) ne može biti razlomak. Da biste to omogućili, onemogućite '{2}' u Jedinici {3}." @@ -47101,8 +47161,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Redovi: {0} imaju 'Unos Plaćanja' kao Tip Reference. Ovo ne treba postavljati ručno." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Redovi: {0} u {1} sekciji su nevažeći. Naziv reference treba da ukazuje na važeći Unos Plaćanja ili Nalog Knjiženja." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47162,10 +47222,6 @@ msgstr "Procjena pravila završena" msgid "Rules evaluation started" msgstr "Procjena pravila je započeta" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "Pravila za konfiguriranje Serija Imenovanja" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "Pravila za podudaranje s opisom transakcije" @@ -47233,7 +47289,7 @@ msgstr "Standard Nivo Servisa Ispunjen na Status" msgid "SLA Paused On" msgstr "Standard Nivo Servisa Pauziran" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "Standard Nivo Servisa je na Čekanju od {0}" @@ -47532,8 +47588,8 @@ msgid "Sales Invoice is not submitted" msgstr "Prodajna Faktura nije podnešena" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "Prodajna Faktura nije kreirana od {}" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47749,8 +47805,8 @@ msgstr "Prodajni Nalog {0} već postoji naspram Nabavnog Naloga Klijenta {1}. Da msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "Prodajni Nalog {0} je već povezan s projektom {1}, preskoči vezu." -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "Prodajni Nalog {0} nije dostupan za proizvodnju" @@ -48157,7 +48213,7 @@ msgstr "Isti Artikal" msgid "Same day" msgstr "Isti dan" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Ista kombinacija artikla i skladišta je već unesena." @@ -48189,7 +48245,7 @@ msgstr "Skladište Zadržavanja Uzoraka" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Veličina Uzorka" @@ -48299,7 +48355,7 @@ msgstr "Skenirana Količina" msgid "Schedule Date" msgstr "Datum Rasporeda" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "Naziv Rasporeda" @@ -48310,7 +48366,7 @@ msgstr "Naziv Rasporeda" msgid "Scheduled Date" msgstr "Datum Rasporeda" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "Zakazani datum je obavezan." @@ -48598,7 +48654,7 @@ msgstr "Odaberite račun" msgid "Select Accounting Dimension." msgstr "Odaberi Knjigovodstvenu Dimenziju." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Odaberi Alternativni Artikal" @@ -48619,7 +48675,7 @@ msgid "Select BOM and Qty for Production" msgstr "Odaberi Sastavnicu i Količinu za Proizvodnju" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Odaberi Broj Šarže" @@ -48684,7 +48740,7 @@ msgstr "Odaberi Dimenziju" msgid "Select Dispatch Address " msgstr "Odaberi Otpremnu Adresu " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Navedi Personal" @@ -48709,7 +48765,7 @@ msgstr "Odaberi Artikle" msgid "Select Items based on Delivery Date" msgstr "OdaberiArtikal na osnovu Datuma Dostave" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "Odaberi Artikle za Inspekciju Kvaliteta" @@ -48739,7 +48795,7 @@ msgstr "Odaberi Adresu Podizvođača" msgid "Select Loyalty Program" msgstr "Odaberi Program Lojaliteta" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "Odaberi Raspored Plaćanja" @@ -48753,13 +48809,13 @@ msgid "Select Quantity" msgstr "Odaberi Količinu" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Odaberi Serijski Broj" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Odaberi Serijski Broj I Šaržu" @@ -48850,6 +48906,7 @@ msgid "Select an Item Group." msgstr "Odaberi Grupu Artikla." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Odaberi Račun za ispis u valuti računa" @@ -48992,10 +49049,14 @@ msgstr "Odabrani Verifikati" msgid "Selected date is" msgstr "Odabrani datum je" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "Odabrani dokument mora biti u podnešenom stanju" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49143,7 +49204,7 @@ msgid "Send Emails to Suppliers" msgstr "Pošalji e-poštu Dobavljačima" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Pošalji SMS" @@ -49227,7 +49288,7 @@ msgstr "Serijski / Šaržni Paket" msgid "Serial / Batch No" msgstr "Serijski / Šaržni Broj" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Serijski / Šaržni Broj" @@ -49284,10 +49345,11 @@ msgstr "Postavke Serijskog Artikla" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49329,6 +49391,10 @@ msgstr "Serijski Broj / Šarža" msgid "Serial No Already Assigned" msgstr "Serijski broj je već dodijeljen" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Broj Serijskog Broja" @@ -49346,7 +49412,7 @@ msgstr "Serijski Broj Registar" msgid "Serial No Range" msgstr "Serijski Broj Raspon" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "Rezervisan Serijski Broj" @@ -49391,8 +49457,8 @@ msgid "Serial No and Batch" msgstr "Serijski Broj i Šarža" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "Serijski Broj i odabirač Šarže ne mogu se koristiti kada je omogućeno Koristi Serijski Broj / Šaržna Polja." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49403,7 +49469,7 @@ msgstr "Serijski Broj i odabirač Šarže ne mogu se koristiti kada je omogućen msgid "Serial No and Batch Traceability" msgstr "Pratljivost Serijskog Broja i Šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "Serijski Broj je Obavezan" @@ -49423,22 +49489,19 @@ msgstr "Serijski Broj {0} je već skeniran" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Serijski Broj {0} ne pripada Dostavnici {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Serijski Broj {0} ne pripada Artiklu {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Serijski Broj {0} ne postoji" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "Serijski Broj {0} ne postoji" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "Serijski broj {0} je već isporučen. Ne možete ih ponovno koristiti u Proizvodnji / Ponovno pakiranje." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49452,25 +49515,26 @@ msgstr "Serijski broj {0} je već dodijeljen {1}. Može se vratiti samo ako je o msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Serijski broj {0} nije u {1} {2}, i ne može se vratiti naspram {1} {2}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Serijski Broj {0} je pod ugovorom o održavanju do {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Serijski Broj {0} je pod garancijom do {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Serijski Broj {0} nije pronađen" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Serijski Broj: {0} izršena transakcija u drugoj Kasa Fakturi." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49490,7 +49554,7 @@ msgstr "Serijski Brojevi / Šarže" msgid "Serial Nos are created successfully" msgstr "Serijski Brojevi su uspješno kreirani" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Serijski brojevi su rezervisani u unosima za rezervacije zaliha, morate ih opozvati prije nego što nastavite." @@ -49591,6 +49655,10 @@ msgstr "Serijski i Šaržni Paket {0} nije podnešen" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "Serijski i Šaržni Paket {0} je podnešen i njegovi unosi se ne mogu mijenjati." +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49639,7 +49707,7 @@ msgstr "Serijska i Šaržna Rezervacija" msgid "Serial and Batch Summary" msgstr "Sažetak Serije i Šarže" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Serijski broj {0} unesen više puta" @@ -49647,122 +49715,12 @@ msgstr "Serijski broj {0} unesen više puta" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "Serijski brojevi nedostupni za artikal {0} u skladištu {1}. Pokušaj promijeniti skladište." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Numeričke Serije" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Numerička Serija za unos Amortizacije Imovine (Nalog Knjiženja)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Numerička Serija je obavezna" @@ -49844,7 +49802,7 @@ msgid "Service Item {0} is disabled." msgstr "Servisn Artikal {0} je onemogućen." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "Servisni Artikal {0} mora biti artikal koji nije na zalihama." @@ -49953,12 +49911,12 @@ msgid "Service Stop Date" msgstr "Datum završetka Servisa" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Datum prekida servisa ne može biti nakon datuma završetka servisa" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "Datum zaustavljanja servisa ne može biti prije datuma početka servisa" @@ -49982,7 +49940,7 @@ msgstr "Postavi Predujam i Dodijeli (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Postavi osnovnu cijenu ručno" @@ -49997,7 +49955,7 @@ msgstr "Postavi Standard Dobavljača" msgid "Set Delivery Warehouse" msgstr "Postavi Dostavno Skladište" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "Postavi dostavljenu količinu Dropship artikala" @@ -50102,7 +50060,7 @@ msgstr "Postavi Imenovanje Serijskog i Šaržnog Paketa na osnovu Imenovanja Ser #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50120,7 +50078,7 @@ msgstr "Postavi Dobavljača" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50146,7 +50104,7 @@ msgstr "Postavi kao Zatvoreno" msgid "Set as Completed" msgstr "Postavi kao Završeno" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Postavi kao Izgubljeno" @@ -50244,15 +50202,15 @@ msgstr "Postavite pravila za automatsku klasifikaciju transakcija. Povucite i is msgid "Set valuation rate for rejected Materials" msgstr "Postavi stopu vrednovanja za odbijene materijale" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Postavi {0} u kategoriju imovine {1} za {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Postavi {0} u kategoriju imovine {1} ili {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Postavi {0} u {1}" @@ -50320,7 +50278,7 @@ msgid "Setting up company" msgstr "Postavljanje Poduzeća" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "Podešavanje {0} je neophodno" @@ -50748,6 +50706,7 @@ msgid "Show Completed" msgstr "Prikaži Završeno" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "Prikaži Kredit / Debit u valuti poduzeća" @@ -50950,7 +50909,7 @@ msgstr "Prikaži samo Neposredan Predstojeći Uslov" msgid "Show pay button in Purchase Order portal" msgstr "Prikaži Dugme za Plaćanje na Portalu Nabavnog Naloga" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Prikaži unose na čekanju" @@ -51055,11 +51014,11 @@ msgstr "Jednostavna Python formula primijenjena na polja za čitanje.
                    Numeri msgid "Simultaneous" msgstr "Istovremeno" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "Budući da u ovoj kategoriji postoje aktivna sredstva koja se amortiziraju, potrebni su sljedeći računi.

                    " -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Budući da postoji gubitak u procesu od {0} jedinica za gotov proizvod {1}, trebali biste smanjiti količinu za {0} jedinica za gotov proizvod {1} u Tabeli Artikala." @@ -51120,7 +51079,7 @@ msgstr "Preskočite prijenos materijala na Posao U Toku" msgid "Skip Material Transfer to WIP Warehouse" msgstr "Preskoči Prijenos Materijala u Posao U Toku Skladište" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "Preskočeno {0} DocType(a):
                    {1}" @@ -51176,8 +51135,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "Nedostaju neki obavezni podaci o poduzeću Nemate dozvolu da ih ažurirate. Kontaktiraj Odgovornog Sistema." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Nešto nije u redu, pokušajte ponovo" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51244,7 +51203,7 @@ msgstr "Izvor Unosa Proizvodnje" msgid "Source Stock Entry (Manufacture)" msgstr "Izvor Unosa Zaliha (Proizvodnja)" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "Izvor Unos Zaliha {0} pripada radnom nalogu {1}, a ne {2}. Koristi unos proizvodnje iz istog radnog naloga." @@ -51281,8 +51240,8 @@ msgstr "Tip Izvora" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51412,7 +51371,7 @@ msgstr "Razdjeli Slučaj" msgid "Split Qty" msgstr "Podjeljena Količina" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "Količina podijeljene imovine mora biti manja od količine imovine" @@ -51425,7 +51384,12 @@ msgstr "Raspodijeli na {} račune" msgid "Split commission credit across multiple sales persons." msgstr "Raspodijeli proviziju među više prodavača." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Podjela {0} {1} na {2} redove prema Uslovima Plaćanja" @@ -51478,7 +51442,7 @@ msgstr "Naziv Faze" msgid "Stale Days" msgstr "Neaktivni Dani" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Neaktivni Dani bi trebalo da počnu od 1." @@ -51543,10 +51507,26 @@ msgstr "Standardni PDV šablon koji se može primijeniti na sve Prodajne Transak msgid "Standing Name" msgstr "Poredak" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Pokreni / Nastavi" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Datum početka ne može biti prije tekućeg datuma" @@ -51576,7 +51556,7 @@ msgstr "Vrijeme Početka ne može biti veće ili jednako Vremenu Završetka za { msgid "Start Timer" msgstr "Pokreni Brojanje Vremena" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51605,10 +51585,14 @@ msgstr "Datum početka bi trebao biti prije od datuma završetka za atikal {0}" msgid "Start date should be less than end date for task {0}" msgstr "Datum početka bi trebao biti prije od datuma završetka za zadatak {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "Započet je pozadinski zadatak za kreiranje {1} {0}. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51689,7 +51673,7 @@ msgstr "Prikaz Statusa" msgid "Status and Reference" msgstr "Status i Referenca" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Status mora biti Poništen ili Dovršen" @@ -51817,8 +51801,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "Unos Zaključanih Zaliha {0} već postoji za odabrani vremenski raspon" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "Unos Zaključanih Zaliha {0} je stavljen na čekanje za obradu, sistemu će trebati neko vrijeme da ga završi." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51899,17 +51883,21 @@ msgstr "Artikal Unosa Zaliha" msgid "Stock Entry Type" msgstr "Tip Unosa Zaliha" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Unos Zaliha je već kreiran naspram ove Liste Odabira" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Unos Zaliha {0} je kreiran" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Unos Zaliha {0} je kreiran" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52075,7 +52063,7 @@ msgstr "Predviđena Količina Zaliha" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52158,7 +52146,7 @@ msgstr "Postavke Ponovnog Knjiženja Zaliha" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52183,15 +52171,15 @@ msgstr "Rezervacija Zaliha" msgid "Stock Reservation Entries Cancelled" msgstr "Otkazani Unosi Rezervacije Zaliha" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Kreirani Unosi Rezervacija Zaliha" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "Unosi Rezervacije Zaliha su kreirani" @@ -52361,7 +52349,7 @@ msgstr "Transakcije Zaliha" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52520,9 +52508,9 @@ msgstr "Rezervisana Zaliha je poništena za Radni Nalog {0}." msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "Zaliha nije dostupna za Artikal {0} u Skladištu {1}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "Količina Zaliha nije dovoljna za Kod Artikla: {0} na skladištu {1}. Dostupna količina {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52540,7 +52528,7 @@ msgstr "Transakcije Zaliha koje su starije od navedenih dana ne mogu se mijenjat msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "Zalihe će biti rezervisane po podnošenju Nabavnog Računa kreirane naspram Materijalnog Naloga za Prodajni Nalog." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "Zalihe/Računi ne mogu se zamrznuti jer je u toku obrada unosa unazad. Pkušaj ponovo kasnije." @@ -52555,7 +52543,7 @@ msgstr "Stone" msgid "Stop Reason" msgstr "Razlog Zastoja" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Zaustavljeni Radni Nalog se ne može otkazati, prvo ga prekini da biste otkazali" @@ -52563,7 +52551,7 @@ msgstr "Zaustavljeni Radni Nalog se ne može otkazati, prvo ga prekini da biste #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Prodavnice" @@ -52777,7 +52765,7 @@ msgstr "Faktor Konverzije Podizvođača" msgid "Subcontracting Delivery" msgstr "Podizvođačka Dostava" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "Podizvođački Gotov Proizvod" @@ -52849,7 +52837,7 @@ msgstr "Servisni Artikal Podizvođačkog Naloga" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52887,7 +52875,7 @@ msgstr "Servisni Artikal Podizvođačkog Naloga" msgid "Subcontracting Order Supplied Item" msgstr "Dostavljeni Artikal Podizvođačkog Naloga" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Podizvođački Nalog {0} je kreiran." @@ -52961,7 +52949,7 @@ msgstr "Podizvođački Povrat" msgid "Subcontracting Sales Order" msgstr "Podizvođački Prodajni Nalog" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "Podizvođački Uslužni Artikal" @@ -52980,7 +52968,7 @@ msgstr "Postavljanje Podizvođača" msgid "Subdivision" msgstr "Pododjeljenje" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Radnja Podnošenja Neuspješna" @@ -53009,7 +52997,7 @@ msgstr "Podnesi ovaj Radni Nalog za dalju obradu." msgid "Submit your Quotation" msgstr "Podnesi Ponudu" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "Podnešeni Radni Nalog ne može biti obrađen." @@ -53151,7 +53139,7 @@ msgstr "Uspješna Podešavanja" msgid "Successful" msgstr "Uspješno" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Uspješno Usaglašeno" @@ -53329,7 +53317,7 @@ msgstr "Dostavljena Količina" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53511,7 +53499,7 @@ msgstr "Datum Fakture Dobavljaća" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Broj Fakture Dobavljača" @@ -53659,7 +53647,7 @@ msgstr "Poređenje Ponuda Dobavljača" msgid "Supplier Quotation Item" msgstr "Artikal Ponude Dobavljača" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Ponuda Dobavljača {0} Kreirana" @@ -53844,10 +53832,6 @@ msgstr "Tim Podrške" msgid "Support Tickets" msgstr "Slučajevi Podrške" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "Podržane Varijable:" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "Očekivani Iznos Popusta" @@ -53934,7 +53918,7 @@ msgstr "Kategorija PDV koja se primjenjuje pri plaćanju ovog dobavljača" msgid "TDS Computation Summary" msgstr "Pregled izračuna poreza po odbitku (TDS)." -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "Odbijen porez po odbitku (TDS)" @@ -53995,8 +53979,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "Ciljna Imovina {0} ne pripada {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "Ciljana Imovina {0} mora biti objedinjena imovina" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54105,11 +54089,11 @@ msgstr "Veza Adrese Skladišta" msgid "Target Warehouse Reservation Error" msgstr "Greška pri Rezervaciji Skladišta" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "Skladište za Gotov Proizvod mora biti isto kao i Skladište Gotovog Proizvoda {1} u Radnom Nalogu {2} povezanom s Internim Podizvođačkim Nalogom." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "Skladište za Gotov Proizvod mora biti isto kao i Skladište Gotovog Proizvoda {0} u Radnom Nalogu {1} povezanom s Internim Podizvođačkim Nalogom." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "Skladište je obavezno prije Podnošenja" @@ -54585,7 +54569,7 @@ msgstr "PDV se odbija samo za iznos koji premašuje kumulativni prag" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Oporezivi Iznos" @@ -54797,7 +54781,7 @@ msgstr "Televizija" msgid "Template Item" msgstr "Artikal Šablon" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Odabrani Šablon Artikla" @@ -55104,23 +55088,27 @@ msgstr "Tesla" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "Tekst prikazan u finansijskom izvještaju (npr. 'Ukupni Prihod', 'Gotovina i Gotovinski Ekvivalenti')" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "\"Od Paketa Broj.\" polje ne smije biti prazno niti njegova vrijednost manja od 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "Pristup zahtjevu za ponudu sa portala je onemogućen. Da biste omogućili pristup, omogući ga u Postavkama Portala." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "Sastavnica koja će biti zamijenjena" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "Šarža {0} ima negativnu količinu {1}. Da biste to riješili, idite na Postavke Šarže i kliknite na Ponovno izračunaj količinu Šarže. Ako problem i dalje postoji, kreiraj unutrašnji unos." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "Kampanja '{0}' već postoji za {1} '{2}'" @@ -55145,6 +55133,10 @@ msgstr "Knjigovodstveni Unosi i zaključna stanja će se obraditi u pozadini, to msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Knjigovodstveni Unosi će biti otkazani u pozadini, može potrajati nekoliko minuta." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Program Lojalnosti ne važi za odabrano poduzeće" @@ -55162,9 +55154,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "Lista Odabira koja ima Unose Rezervacije Zaliha ne može se ažurirati. Ako trebate unijeti promjene, preporučujemo da otkažete postojeće Unose Rezervacije Zaliha prije ažuriranja Liste Odabira." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "Količinski Gubitak Procesa je poništen prema Radnim Karticama Količinskog Gubitka Procesa" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55174,11 +55169,15 @@ msgstr "Prodavač je povezan sa {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Serijski Broj u redu #{0}: {1} nije dostupan u skladištu {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Serijski Broj {0} je rezervisan naspram {1} {2} i ne može se koristiti za bilo koju drugu transakciju." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Serijski i Šaržni Paket {0} ne važi za ovu transakciju. 'Tip transakcije' bi trebao biti 'Vani' umjesto 'Unutra' u Serijskom i Šaržnom Paketu {0}" @@ -55226,15 +55225,15 @@ msgstr "Poduzeće {0} nije registrovano u Južnoj Africi. Izvještaj o PDV revi msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "Poduzeće {0} nije u Ujedinjenim Arapskim Emiratima. Izvještaj o PDV-u UAE 201 dostupan je samo za poduzeća u Ujedinjenim Arapskim Emiratima." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "Završena količina {0} operacije {1} ne može biti veća od završene količine {2} prethodne operacije {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "Valuta Fakture {} ({}) se razlikuje od valute ove Opomene ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "Trenutni Unos Otvaranje Kase je zastario. Zatvori ga i kreiraj novi." @@ -55283,6 +55282,10 @@ msgstr "Polje Za Dioničara ne može biti prazno" msgid "The field {0} in row {1} is not set" msgstr "Polje {0} u redu {1} nije postavljeno" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Polja Od Dioničara i Za Dioničara ne mogu biti prazna" @@ -55304,9 +55307,9 @@ msgstr "Fiskalna godina je automatski kreirana u onemogućenom stanju kako bi se msgid "The folio numbers are not matching" msgstr "Brojevi Folija nisu usklađeni" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "Sljedeći artikl, koji imaju Pravila Odlaganju, nisu mogli biti prihvaćeni:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55333,8 +55336,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Sljedeći personal još uvijek podnose izvještaj {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "Sljedeća nevažeća Pravila Cijena se brišu:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55346,7 +55349,7 @@ msgstr "Sljedeći raspored(i) plaćanja već postoje:\n" msgid "The following rows are duplicates:" msgstr "Sljedeći redovi su duplikati:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Sljedeći {0} su kreirani: {1}" @@ -55382,8 +55385,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "Artikli {items} nisu označeni kao {type_of} artikli. Možete ih omogućiti kao {type_of} artikle u Postavkama Artikala." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "Radna Kartica {0} je u {1} stanju i ne možete je završiti." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55420,12 +55423,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "Početno stanje se možda nije usklađeno s vašim bankovnim izvodom. Želite li ih uskladiti?" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "Operacija {0} ne može se dodati više puta" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "Operacija {0} ne može biti podoperacija" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55473,6 +55476,10 @@ msgstr "Procenat kojim vam je dozvoljeno da primite ili dostavite više naspram msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "Procenat kojim vam je dozvoljeno prenijeti više naspram naručene količine. Na primjer, ako ste naručili 100 jedinica, a vaš dodatak iznosi 10%, onda vam je dozvoljen prijenos 110 jedinica." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55482,7 +55489,7 @@ msgstr "Cijena po kojoj je ovaj artikal posljednji put nabavljen putem fakture. msgid "The reference number of the transaction" msgstr "Referentni broj transakcije" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "Rezervisane Zalihe će biti puštene kada ažurirate artikle. Jeste li sigurni da želite nastaviti?" @@ -55499,8 +55506,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Odabrane Sastavnice nisu za istu artikal" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Odabrani Račun Kusura {} ne pripada {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55516,8 +55523,8 @@ msgstr "Prodavač i Kupac ne mogu biti isti" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "Serijski i Šaržni Paket {0} nije povezan sa {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55535,11 +55542,11 @@ msgstr "Dionice već postoje" msgid "The shares don't exist with the {0}" msgstr "Dionice ne postoje sa {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "Zaliha za artikal {0} u {1} skladištu je bila negativna na {2}. Trebali biste kreirati pozitivan unos {3} prije datuma {4} i vremena {5} da biste knjižili ispravnu Stopu Vrednovanja. Za više detalja, molimo pročitaj dokumentaciju." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Zaliha za artikal {0} u {1} skladištu je bila negativna na {2}. Trebali biste kreirati pozitivan unos {3} prije datuma {4} i vremena {5} da biste knjižili ispravnu Stopu Vrednovanja. Za više detalja, molimo pročitaj dokumentaciju." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "Zalihe su rezervirane za sljedeće artikle i skladišta, poništite ih za {0} Usglašavanje Zaliha:

                    {1}" @@ -55561,17 +55568,17 @@ msgstr "Sistem će pokušati automatski uskladiti stranku s bankovnom transakcij msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "Sistem će kreirati Prodajnu Fakturu ili Kasa Fkturu iz Kase na osnovu ove postavke. Za transakcije velikog obima preporučuje se korištenje Kasa Fakture." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "Zadatak je stavljen u red kao pozadinski posao. U slučaju da postoji bilo kakav problem u obradi u pozadini, sistem će dodati komentar o grešci na ovom usaglašavanja zaliha i vratiti se u stanje nacrta" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "Zadatak je stavljen u red kao pozadinski posao. U slučaju da postoji bilo kakav problem sa obradom u pozadini, sistem će dodati komentar o grešci na ovom usklađivanju zaliha i vratiti se na fazu Poslano" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "Ukupna količina izdavanja / prijenosa {0} u Materijalnom Nalogu {1} ne može biti veća od dozvoljene tražene količine {2} za artikal {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55609,7 +55616,7 @@ msgstr "Korisnicima sa ovom ulogom je dozvoljeno da kreiraju/modifikuju transakc msgid "The value of {0} differs between Items {1} and {2}" msgstr "Vrijednost {0} se razlikuje između artikala {1} i {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "Vrijednost {0} je već dodijeljena postojećem artiklu {1}." @@ -55633,7 +55640,7 @@ msgstr "Iznosi isplate ili uplate - potrebni su samo ako nema kolone za iznos." msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) mora biti jednako {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0} sadrži Artikle s Jediničnom Cijenom." @@ -55641,7 +55648,7 @@ msgstr "{0} sadrži Artikle s Jediničnom Cijenom." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "Prefiks {0} '{1}' već postoji. Molimo vas da promijenite serijski broj šarže, u suprotnom će biti grešku o dupliranom unosu." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} je uspješno kreiran" @@ -55649,6 +55656,10 @@ msgstr "{0} {1} je uspješno kreiran" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0} {1} se ne poklapa s {0} {2} u {3} {4}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} se koristi za izračunavanje troška vrednovanja za gotov proizvod {2}." @@ -55657,7 +55668,7 @@ msgstr "{0} {1} se koristi za izračunavanje troška vrednovanja za gotov proizv msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "Zatim se cijenovna pravila filtriraju na osnovu klijenta, grupe klijenta, distrikta, dobavljača, tipa dobavljača, kampanje, prodajnog partnera itd." -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Postoji aktivno održavanje ili popravke imovine naspram imovine. Morate ih ispuniti sve prije nego što otkažete imovinu." @@ -55669,7 +55680,7 @@ msgstr "Postoje nedosljednosti između cijene, broja dionica i izračunatog izno msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "Na ovom računu postoje unosi u registar. Promjena {0} u ne-{1} u sistemu će uzrokovati netačan izlaz u izvještaju 'Računi {2}'" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "Nema neuspjelih transakcija" @@ -55686,6 +55697,10 @@ msgstr "Ne postoje aktivne Fiskalne Godine za koje se mogu generirati Demo Podac msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "U sistemu nema unosa kod kojih je datum odobravanja prije datuma knjiženja." +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "Za ovaj datum nema slobodnih termina" @@ -55702,10 +55717,6 @@ msgstr "Postoje dvije opcije za održavanje vrijednosti artikal. FIFO (prvi uša msgid "There are {0} unreconciled transactions before {1}." msgstr "Prije {1} postoji {0} neusklađenih transakcija." -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "Ne postoje varijante artikla za odabrani artikal" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Može postojati višestruki faktor sakupljanja na osnovu ukupne potrošnje. Ali faktor konverzije za otkup će uvijek biti isti za sve nivoe." @@ -55734,21 +55745,21 @@ msgstr "Nije pronađena Šarža naspram {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "Postoji jedna neusklađena transakcija prije {0}." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "U ovom Unosu Zaliha mora biti najmanje jedan gotov proizvod" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Došlo je do greške pri kreiranju Bankovnog Računa prilikom povezivanja s Plaid." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "Došlo je do greške pri sinhronizaciji transakcija." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Došlo je do greške prilikom ažuriranja Bankovnog Računa {} prilikom povezivanja s Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55798,15 +55809,19 @@ msgstr "Sažetak ovog Mjeseca" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "Ovaj PDF je zaštićen lozinkom. Molimo postavite ispravnu lozinku za izvod na bankovnom računu i pokušajte ponovo." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "Ovaj Unos Plaćanja je usklađen sa {0}. Otkazivanjem će se automatski poništiti usklađivanje. Želite li nastaviti?" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "Ovaj Nabavni Nalog je u potpunosti podugovoren." -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "Ovaj Prodajnii Nalog je u potpunosti podugovoren." @@ -55828,7 +55843,7 @@ msgstr "Ova radnja će prekinuti vezu ovog računa sa bilo kojom eksternom uslug msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "Ovo omogućava kreiranje prodajnih naloga iz ponuda kojima je istekao rok važenja, pružajući fleksibilnost u obradi naloga uprkos zastarjelim ponudama." -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "Ova kategorija imovine je označena kao neamortizujuća. Onemogući obračun amortizacije ili odaberi drugu kategoriju." @@ -55846,7 +55861,7 @@ msgstr "Ovo može sadržavati \"CR\"/\"DR\" vrijednosti ili pozitivne/negativne msgid "This covers all scorecards tied to this Setup" msgstr "Ovo pokriva sve bodovne kartice vezane za ovu postavku" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Ovaj dokument je preko ograničenja za {0} {1} za artikal {4}. Da li pravite još jedan {3} naspram istog {2}?" @@ -55988,7 +56003,7 @@ msgstr "Ovo je red za bankovni račun. Bit će automatski popunjen na osnovu ban msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "Ovo je ono što sistem očekuje kao završno stanje na vašem bankovnom izvodu." -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "Ovaj filter artikala je već primijenjen za {0}" @@ -56052,7 +56067,7 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} vraćena putem Prodajne Fak msgid "This schedule was created when Asset {0} was scrapped." msgstr "Ovaj raspored je kreiran kada je imovina {0} rashodovana." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "Ovaj raspored je kreiran kada je Imovina {0} bila {1} u novu Imovinu {2}." @@ -56079,10 +56094,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "Ova sekcija omogućava korisniku da postavi sadržaj i završni tekst opomena za tip opomena na osnovu jezika koji se može koristiti u Ispisu." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "Ovaj izvod je već uvezen." @@ -56140,8 +56155,8 @@ msgid "This will restrict user access to other employee records" msgstr "Ovo će ograničiti pristup korisnika drugim zapisima zaposlenih" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "Ovaj {} će se tretirati kao prijenos materijala." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56269,6 +56284,12 @@ msgstr "Vrijeme (u minutama)" msgid "Timeline" msgstr "Vremenska Linija" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56555,8 +56576,8 @@ msgid "To Time" msgstr "Do Vremena" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "Do Vrijeme ne može biti prije Od Datuma" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56586,15 +56607,15 @@ msgstr "Da biste dodali Operacije, označite polje 'S Operacijama'." msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Da se doda podizvođačka sirovina artikala ako je Uključi Rastavljene Artikle onemogućeno." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Da dozvolite prekomjerno fakturisanje, ažuriraj \"Dozvola prekomjernog Fakturisanja\" u Postavkama Knjigovodstva ili Artikla." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "Da biste dopustili prekomjerno naručivanje, ažurirajte \"Dopušteno Prekoračenja Naloga\" u Postavkama Nabave." -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Da biste dozvolili prekomjerno primanje/isporuku, ažuriraj \"Dozvoli prekomjerni Prijema/Dostavu\" u Postavkama Zaliha ili Artikla." @@ -56611,8 +56632,8 @@ msgid "To be Delivered to Customer" msgstr "Dostava Klijentu" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "Da otkažete {}, morate otkazati Unos Zatvaranja Kase {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56623,8 +56644,8 @@ msgid "To create a Payment Request reference document is required" msgstr "Za kreiranje Zahtjeva Plaćanja obavezan je referentni dokument" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Da biste omogućili Knjigovodstvo Kapitalnih Radova u Toku," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56636,8 +56657,8 @@ msgstr "Uključivanje artikala bez zaliha u planiranje Materijalnog Naloga. tj. msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "Za uključivanje troškova podsklopova i sekundarnih artikala u gotove proizvode na radnom nalogu bez korištenja radne kartice, kada je omogućena opcija 'Koristi Višeslojnu Sastavnicu'." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Da biste uključili PDV u red {0} u cijenu artikla, PDV u redovima {1} također moraju biti uključeni" @@ -56657,7 +56678,7 @@ msgstr "Da poništite ovo, omogući '{0}' u kompaniji {1}" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "Da biste odabrali više transakcija istovremeno, pritisnite i držite tipku Shift." -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Da i dalje nastavite s uređivanjem ove vrijednosti atributa, omogući {0} u Postavkama Varijante Artikla." @@ -56674,10 +56695,12 @@ msgstr "Da biste podnijeli fakturu bez nabavnog računa, postavite {0} kao {1} u msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Da biste koristili drugi Finansijski Registar, poništi 'Uključi Standard Imovinu Finansijskog Registra'" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Da biste koristili drugi Finansijski Registar, poništite oznaku 'Obuhvati standard Finansijski Registar unose'" @@ -56756,8 +56779,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "Ukupno (Valuta Poduzeća)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Ukupno (Kredit)" @@ -56799,6 +56822,22 @@ msgstr "Ukupni Dodatni Troškovi" msgid "Total Advance" msgstr "Ukupni Predujam" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56846,11 +56885,11 @@ msgstr "Ukupan Iznos Duga" msgid "Total Amount in Words" msgstr "Ukupan Iznos u Riječima" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Ukupni Primjenjive Naknade u tabeli Artikla Nabavnog Naloga moraju biti isti kao i Ukupni PDV i Naknade" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Ukupna Imovina" @@ -57032,7 +57071,7 @@ msgstr "Ukupna Isporučena Količina" msgid "Total Demand (Past Data)" msgstr "Ukupna Potražnja (Prethodni Podatci)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "Ukupni Kapital" @@ -57041,11 +57080,11 @@ msgstr "Ukupni Kapital" msgid "Total Estimated Distance" msgstr "Ukupna Procijenjena Udaljenost" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Ukupni Troškovi" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Ukupni Troškovi ove Godine" @@ -57083,11 +57122,11 @@ msgstr "Ukupno Vrijeme Čekanja" msgid "Total Holidays" msgstr "Ukupno Praznika" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Ukupan Prihod" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Ukupan Prihod ove Godine" @@ -57130,7 +57169,7 @@ msgstr "Ukupna Kupovna Vrijednost (Valuta Poduzeća)" msgid "Total Ledgers" msgstr "Ukupno Knjiženih Naloga" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "Ukupno Obaveze" @@ -57445,7 +57484,7 @@ msgstr "Ukupni PDV i Naknade" msgid "Total Taxes and Charges (Company Currency)" msgstr "Ukupni PDV i Naknade (Valuta Poduzeća)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Ukupno Vrijeme (minuta)" @@ -57454,7 +57493,11 @@ msgstr "Ukupno Vrijeme (minuta)" msgid "Total Time in Mins" msgstr "Ukupno Vrijeme u minutama" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Ukupno neplaćeno: {0}" @@ -57533,7 +57576,7 @@ msgstr "Ukupno vrijeme rada na Radnoj Stanici (u Satima)" msgid "Total allocated percentage for sales team should be 100" msgstr "Ukupna procentualna dodjela za prodajni tim treba biti 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Ukupan procenat doprinosa treba da bude jednak 100" @@ -57551,8 +57594,8 @@ msgstr "Ukupno sati: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Ukupni iznos plaćanja ne može biti veći od {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57569,9 +57612,9 @@ msgstr "Ukupna količina u rasporedu dostave ne može biti veća od količine ar msgid "Total {0} ({1})" msgstr "Ukupno {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Ukupno {0} za sve artikle je nula, možda biste trebali promijeniti 'Distribuiraj Naknade na osnovu'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57659,27 +57702,11 @@ msgstr "Status Praćenja Informacija" msgid "Tracking URL" msgstr "URL Praćenja" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Transakcija" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "Valuta Transakcije" @@ -57732,11 +57759,11 @@ msgstr "Artikal Zapisa Brisanja Transakcije" msgid "Transaction Deletion Record To Delete" msgstr "Zapis Brisanju Transakcije za brisanje" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "Zapis Brisanja Transakcije {0} se već izvršava. {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "Zapis Brisanja Transakcije {0} trenutno briše {1}. Nije moguće spremiti dokumente dok se brisanje ne dovrši." @@ -58126,6 +58153,10 @@ msgstr "Bruto Stanje (Jednostavno)" msgid "Trial Balance for Party" msgstr "Probni Bilans Stranke" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58310,7 +58341,7 @@ msgstr "Postavke PDV-a UAE" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58332,7 +58363,7 @@ msgstr "Postavke PDV-a UAE" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58362,7 +58393,7 @@ msgstr "Postavke PDV-a UAE" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58426,7 +58457,7 @@ msgstr "Detalji Jedinice Konverzije" msgid "UOM Conversion Factor" msgstr "Faktor Konverzije Jedinice" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Faktor Konverzije Jedinice({0} -> {1}) nije pronađen za artikal: {2}" @@ -58500,7 +58531,7 @@ msgstr "Otkaži Usaglašavanje" msgid "UnReconcile Allocations" msgstr "Poništi Dodjele" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "Nije moguće preuzeti detalje o DocType. Obratite se administratoru sistema." @@ -58513,10 +58544,6 @@ msgstr "Nije moguće pronaći devizni kurs za {0} do {1} za ključni datum {2}. msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Nije moguće pronaći devizni kurs za {0} do {1} za ključni datum {2}. Kreiraj zapis o razmjeni valuta ručno." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Nije moguće pronaći rezultat koji počinje od {0}. Morate imati stalne rezultate koji pokrivaju od 0 do 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "Nije moguće pronaći vremenski termin u narednih {0} dana za operaciju {1}. Molimo povećajte 'Planiranje Kapaciteta za (Dana)' u {2}." @@ -58541,7 +58568,7 @@ msgstr "Nedodijeljeno" msgid "Unallocated Amount" msgstr "Nedodjeljeni Iznos" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Nedodijeljena Količina" @@ -58553,8 +58580,10 @@ msgstr "Nefakturisani Nalozi" msgid "Unblock Invoice" msgstr "Deblokiraj Fakturu" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58604,7 +58633,7 @@ msgstr "Poništi usklađivanje transakcija" msgid "Undo {}?" msgstr "Poništi {}?" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "Neočekivani Uzorak Imenovanja Serije" @@ -58627,7 +58656,7 @@ msgstr "Jedinica" msgid "Unit Price" msgstr "Jedinična Cijena" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Jedinica Mjere" @@ -58830,7 +58859,7 @@ msgstr "Neplanirano" msgid "Unsecured Loans" msgstr "Neosigurani Krediti" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "OtkažiI Usklađeni Zahtjev Plaćanje" @@ -58843,7 +58872,7 @@ msgstr "Nepotpisano" msgid "Unsubscribe from this Email Digest" msgstr "Otkaži pretplatu na ovaj sažetak e-pošte" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "Nepodržana Funkcija" @@ -58987,7 +59016,7 @@ msgstr "Ažuriraj Trenutne Zalihe" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59051,7 +59080,7 @@ msgstr "Ažuriraj postojeću Cijenu Cijenovnika" msgid "Update latest price in all BOMs" msgstr "Ažuriraj najnoviju cijenu u svim Sastavnicama" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "Ažuriranje zaliha mora biti omogućeno za Nabavnu Fakturu {0}" @@ -59279,7 +59308,7 @@ msgstr "Koristi Prijedlog" msgid "Use Transaction Date Exchange Rate" msgstr "Koristi Devizni Kurs Datuma Transakcije" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Koristite naziv koji se razlikuje od naziva prethodnog projekta" @@ -59368,6 +59397,10 @@ msgstr "Korisnikovo Vrijeme Rješenja" msgid "User has not applied rule on the invoice {0}" msgstr "Korisnik nije primijenio pravilo na fakturi {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Korisnik {0} ne postoji" @@ -59380,6 +59413,10 @@ msgstr "Korisnik {0} nema standard Kasa profil. Provjeri standard u redu {1} za msgid "User {0} is already assigned to Employee {1}" msgstr "Korisnik {0} je već dodijeljen {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Korisnik {0}: Uklonjena uloga samoposluživanja zaposlenika jer nema mapiranog zaposlenika." @@ -59388,10 +59425,6 @@ msgstr "Korisnik {0}: Uklonjena uloga samoposluživanja zaposlenika jer nema map msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Korisnik {0}: Uklonjena uloga personala jer nema mapiranog personala." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Korisnik {} je onemogućen. Odaberi važećeg Korisnika/Blagajnika" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59684,15 +59717,15 @@ msgstr "Procijenjena Vrijednost" msgid "Valuation Rate (In / Out)" msgstr "Stopa Vrednovnja (Ulaz / Izlaz)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Nedostaje Stopa Vrednovanja" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "Stopa Vrednovanja ne može biti negativna." -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Stopa Vrednovanja za artikal {0}, je obavezna za knjigovodstvene unose za {1} {2}." @@ -59700,7 +59733,7 @@ msgstr "Stopa Vrednovanja za artikal {0}, je obavezna za knjigovodstvene unose z msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Procijenjano Vrijednovanje je obavezno ako se unese Početna Zaliha" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Stopa Vrednovanja je obavezna za artikal {0} u redu {1}" @@ -59710,7 +59743,7 @@ msgstr "Stopa Vrednovanja je obavezna za artikal {0} u redu {1}" msgid "Valuation and Total" msgstr "Vrednovanje i Ukupno" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "Stopa Vrednovanja za Klijent Dostavljene Artikle postavljena je na nulu." @@ -59723,14 +59756,14 @@ msgstr "Stopa Vrednovanja za Klijent Dostavljene Artikle postavljena je na nulu. msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Stopa Vrednovanja artikla prema Prodajnoj Fakturi (samo za interne transfere)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Naknade za tip vrijednovanja ne mogu biti označene kao Inkluzivne" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Naknade za vrstu vrijednovanja ne mogu biti označene kao Inkluzivne" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59780,12 +59813,12 @@ msgstr "Prijedlog Vrijednosti" msgid "Value Type" msgstr "Tip Vrijednosti" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "Vrijednost kao na" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Vrijednost za atribut {0} mora biti unutar raspona od {1} do {2} u koracima od {3} za artikal {4}" @@ -59794,19 +59827,19 @@ msgstr "Vrijednost za atribut {0} mora biti unutar raspona od {1} do {2} u korac msgid "Value of Goods" msgstr "Vrijednost Proizvoda" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Vrijednost nove kapitalizirane imovine" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Vrijednost nove Nabave" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Vrijednost Rashodovane Imovine" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Vrijednost Prodate Imovine" @@ -60282,7 +60315,7 @@ msgstr "Naziv Verifikata" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60310,7 +60343,7 @@ msgstr "Naziv Verifikata" msgid "Voucher No" msgstr "Broj Verifikata" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Broj Verifikata je obavezan" @@ -60322,7 +60355,7 @@ msgstr "Količina" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Podtip Verifikata" @@ -60354,7 +60387,7 @@ msgstr "Podtip Verifikata" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60561,7 +60594,7 @@ msgstr "Skladište je Obavezno" msgid "Warehouse is required to get producible FG Items" msgstr "Skladište je obavezno za preuzimanje artikala gotovih proizvoda" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Skladište nije pronađeno naspram računu {0}" @@ -60579,16 +60612,16 @@ msgstr "Starost i Vrijednost stanja artikla u Skladištu" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Skladište {0} se ne može izbrisati jer postoji količina za artikal {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Skladište {0} ne pripada {1}." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Skladište {0} ne pripada{1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "Skladište {0} ne postoji" @@ -60709,7 +60742,7 @@ msgstr "Upozori ili zaustavi ako se cijena artikla promijeni u fakturi ili potvr msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Upozorenje - Red {0}: Sati naplate su više od stvarnih sati" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "Upozorenje na Negativnu Zalihu" @@ -60729,7 +60762,7 @@ msgstr "Upozorenje: Još jedan {0} # {1} postoji naspram unosa zaliha {2}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Upozorenje: Količina Materijalnog Naloga je manja od Minimalne Količine Nabavnog Naloga" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "Upozorenje: Količina prelazi maksimalnu proizvodnu količinu na osnovu količine sirovina primljenih putem Podizvođačkog Naloga {0}." @@ -60883,10 +60916,6 @@ msgstr "Grupa Artikla Web Stranice" msgid "Website Specifications" msgstr "Specifikacija Web Stranice" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "Sedmica u godini" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61032,7 +61061,7 @@ msgstr "Kada je omogućeno, dodaje filter krajnjeg datuma otpremnicama kreiranim msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "Kada je omogućeno, transakcije s ovim dobavljačem bit će blokirane na osnovu vrste zadržavanja navedene ispod." -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "Kada postoji više gotovih proizvoda ({0}) u unosu zaliha za ponovno pakovanje, osnovna cijena za sve gotove proizvode mora se postaviti ručno. Da biste cijenu postavili ručno, označite polje za potvrdu 'Ručno postavi osnovnu cijenu' u odgovarajućem redu gotovih proizvoda." @@ -61208,17 +61237,17 @@ msgstr "Radovi u Toku" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61257,7 +61286,7 @@ msgstr "Potrošeni Materijali Radnog Naloga" msgid "Work Order Item" msgstr "Artikal Radnog Naloga" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "Neusklađenost Radnog Naloga" @@ -61298,20 +61327,20 @@ msgstr "Sažetak Radnog Naloga" msgid "Work Order Summary Report" msgstr "Sažetka Izvještaja Radnog Naloga" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Radni Nalog se ne može kreirati iz sljedećeg razloga:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Radni Nalog se nemože pokrenuti naspram Šablona Artikla" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "Radni Nalog je {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "Radni Nalog je obavezan" @@ -61332,7 +61361,7 @@ msgid "Work Order {0} must be submitted" msgstr "Radni Nalog {0} mora biti podnešen" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Radni Nalozi" @@ -61357,7 +61386,7 @@ msgstr "Radovi u Toku" msgid "Work-in-Progress Warehouse" msgstr "Skladište Posla u Toku" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Skladište u Toku je obavezno prije Podnošenja" @@ -61410,7 +61439,7 @@ msgstr "Radno Vrijeme" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61642,14 +61671,6 @@ msgstr "Naziv Godine" msgid "Year Start Date" msgstr "Datum Početka Godine" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "Godina u 2 cifre" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "Godina u 4 cifre" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61664,8 +61685,8 @@ msgid "You are importing data for the code list:" msgstr "Uvoziš podatke za Listu Koda:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Nije vam dozvoljeno ažuriranje prema uslovima postavljenim u {} Radnom Toku." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61684,8 +61705,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "Birate više od potrebne količine za artikal {0}. Provjerite postoji li neka druga lista odabira kreirana za prodajni nalog {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "Možete dodati originalnu fakturu {} ručno da nastavite." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61695,19 +61716,15 @@ msgstr "Također možete dodati kreditne ili debitne vrijednosti za prethodno po msgid "You can also copy-paste this link in your browser" msgstr "Takođe možete kopirati i zalijepiti ovu vezu u svoj pretraživač" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Također možete postaviti standard Račun Kapitalnog Posla u Toku u {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" -msgstr "Također možete koristiti varijable u nazivu serije tako što ćete ih staviti između tačaka (.)" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Možete promijeniti nadređeni račun u račun Bilansa Stanja ili odabrati drugi račun." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "Možete konfigurirati standardne račune amortizacije ili postaviti potrebne račune u sljedećim redovima:

                    " @@ -61729,8 +61746,8 @@ msgid "You can only select one mode of payment as default" msgstr "Možete odabrati samo jedan način plaćanja kao standard" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Možete iskoristiti do {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61748,14 +61765,6 @@ msgstr "Možete postaviti pravilo za podjelu transakcije na više računa." msgid "You can use {0} to reconcile against {1} later." msgstr "Možete koristiti {0} za kasnije usklađivanje sa {1}." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "Ne možete napraviti nikakve promjene na Radnoj Kartici jer je Radni Nalog zatvoren." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "Ne možete obraditi serijski broj {0} jer je već korišten u Serijskom i Šaržnom Paketu {1}. {2} ako želite da primite isti serijski broj više puta, tada omogući 'Dozvoli da se postojeći Serijski Broj ponovo Proizvede/Primi' u {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "Ne možete iskoristiti bodove lojalnosti koji imaju vrijednost veću od ukupnog iznosa." @@ -61764,17 +61773,17 @@ msgstr "Ne možete iskoristiti bodove lojalnosti koji imaju vrijednost veću od msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "Ne možete promijeniti cijenu ako je Sastavnica navedena naspram bilo kojeg artikla." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "Ne možete kreirati {0} unutar zatvorenog Knjigovodstvenog Perioda {1}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Ne možete kreirati ili poništiti bilo koje knjigovodstvene unose u zatvorenom knjigovodstvenom periodu {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "Ne možete kreirati/izmijeniti bilo koje knjigovodstvene unose do ovog datuma." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61785,32 +61794,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "Ne možete izbrisati tip projekta 'Eksterni'" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Ne možete uređivati nadređeni član." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "Ne možete omogućiti i '{0}' i '{1} postavke." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "Ne možete poslati sljedeće {0} jer su ili Isporučeni, Neaktivni ili se nalaze u drugom skladištu." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "Ne možete iskoristiti više od {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "Ne možete ponovo knjižiti procjenu artikla prije {}" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "Ne možete ponovo pokrenuti Pretplatu koja nije otkazana." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Ne možete poslati prazan nalog." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61824,6 +61841,10 @@ msgstr "Ne možete ažurirati zalihe za debitnu notu. Debitna nota je finansijsk msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "Ne možete {0} ovaj dokument jer postoji drugi Unos Zatvaranje Perioda {1} nakon {2}" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "Nemate dozvolu za uvoz i podnošenje bankovnih transakcija" @@ -61834,8 +61855,8 @@ msgid "You do not have permission to import bank transactions" msgstr "Nemate dozvolu za uvoz bankovnih transakcija" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "Nemate dozvole za {} artikala u {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61861,11 +61882,11 @@ msgstr "Nemate dozvolu za ažuriranje dokumenta Primljena Količina za artikal { msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "Nemate dozvolu za ažuriranje ovog dokumenta.Kontaktiraj Odgovornog Sistema." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Imali ste {} grešaka prilikom kreiranja početnih faktura. Provjerite {} za više detalja" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Već ste odabrali artikle iz {0} {1}" @@ -61882,8 +61903,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "Omogućili ste {0} i {1} u {2}. Ovo može dovesti do umetanja cijena iz standardnog cjenovnika u cjenovnik transakcija." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "Unijeli ste duplikat Dostavnice u red" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61897,19 +61918,19 @@ msgstr "Još niste izvršili nijedno usklađivanje u ovoj sesiji." msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Morate omogućiti automatsko ponovno naručivanje u Postavkama Zaliha kako biste održali nivoe ponovnog naručivanja." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "Imate nesačuvane promjene. Želite li sačuvati fakturu?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Morate odabrati Klijenta prije dodavanja Artikla." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "Morate otkazati Unos Zatvaranje Kase {} da biste mogli otkazati ovaj dokument." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "Odabrali ste grupni račun {1} kao {2} Račun u redu {0}. Odaberi jedan račun." @@ -61961,6 +61982,10 @@ msgstr "Poštanski Broj" msgid "Zero Balance" msgstr "Nulto Stanje" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "Nulta Stopa" @@ -61991,7 +62016,7 @@ msgstr "[Važno] [ERPNext] Greške Automatskog Preuređenja" msgid "`Allow Negative rates for Items`" msgstr "`Dozvoli negativne cijene za Artikle`" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "poslije" @@ -62011,7 +62036,7 @@ msgstr "kao Naslov" msgid "as a percentage of finished item quantity" msgstr "kao procentualna količine gotovog proizvoda" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "od {0}" @@ -62027,10 +62052,6 @@ msgstr "zasnovano_na" msgid "by {}" msgstr "od {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "ne može biti veći od 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62085,9 +62106,9 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "naziv polja" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." -msgstr "naziv polja u dokumentu, npr." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" +msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency #. Exchange Settings' @@ -62166,14 +62187,10 @@ msgstr "od 5 mogućih" msgid "paid to" msgstr "plaćeno" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "aplikacija za plaćanja nije instalirana. Instaliraj s {0} ili {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "aplikacija za plaćanja nije instalirana. Instaliraj s {} ili {}" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62187,7 +62204,7 @@ msgstr "aplikacija za plaćanja nije instalirana. Instaliraj s {} ili {}" msgid "per hour" msgstr "po satu" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "izvodi bilo koje dolje:" @@ -62263,8 +62280,8 @@ msgstr "prodano" msgid "subscription is already cancelled." msgstr "pretplata je već otkazana." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "target_ref_field" @@ -62327,10 +62344,6 @@ msgstr "putem Popravke Imovine" msgid "via BOM Update Tool" msgstr "putem Alata Ažuriranje Sastavnice" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "morate odabrati Račun Kapitalnih Radova u Toku u Tabeli Računa" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' je onemogućen" @@ -62343,7 +62356,7 @@ msgstr "{0} '{1}' nije u Fiskalnoj Godini {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) ne može biti veći od planirane količine ({2}) u Radnom Nalogu {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} je podnijeo Imovinu. Ukloni Artikal {2} iz tabele da nastavite." @@ -62363,7 +62376,7 @@ msgstr "{0} Proračun za račun {1} u odnosu na {2} {3} iznosi {4}. Već je prem msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "{0} Proračun za račun {1} u odnosu na {2} {3} iznosi {4}. Bit će premašen za {5}." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} Korišteni kupon je {1}. Dozvoljena količina je iskorištena" @@ -62371,11 +62384,6 @@ msgstr "{0} Korišteni kupon je {1}. Dozvoljena količina je iskorištena" msgid "{0} Digest" msgstr "{0} Sažetak" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "{0} Serija Imenovanja" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Broj {1} se već koristi u {2} {3}" @@ -62457,10 +62465,18 @@ msgstr "{0} može biti {1} ili {2}." msgid "{0} can not be negative" msgstr "{0} ne može biti negativan" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} se ne može mijenjati s otvorenim Početnim Unosima." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} se ne može koristiti kao Matični Centar Troškova jer je korišten kao podređeni u raspodjeli Centra Troškova {1}" @@ -62476,7 +62492,7 @@ msgstr "{0} ne može biti nula" msgid "{0} created" msgstr "{0} kreirano" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "Kreiranje {0} za sljedeće zapise će biti preskočeno." @@ -62518,7 +62534,7 @@ msgstr "{0} za {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} ima omogućenu dodjelu na osnovu uslova plaćanja. Odaberi rok plaćanja za red #{1} u sekciji Reference plaćanja" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "Datoteka {0} je izmijenjena nakon što ste je povukli. Molimo vas da je ponovo povučete." @@ -62526,6 +62542,10 @@ msgstr "Datoteka {0} je izmijenjena nakon što ste je povukli. Molimo vas da je msgid "{0} has been submitted successfully" msgstr "{0} je uspješno podnešen" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} sati" @@ -62534,7 +62554,11 @@ msgstr "{0} sati" msgid "{0} in row {1}" msgstr "{0} u redu {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} je podređena tabela i biće automatski izbrisana zajedno sa svojom nadređenom tabelom" @@ -62548,7 +62572,7 @@ msgstr "{0} je obavezna knjigovodstvena dimenzija.
                    Postavite vrijednost za { msgid "{0} is added multiple times on rows: {1}" msgstr "{0} je dodata više puta u redove: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} već radi za {1}" @@ -62556,7 +62580,7 @@ msgstr "{0} već radi za {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} je blokiran tako da se ova transakcija ne može nastaviti" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} je u Nacrtu. Podnesi prije kreiranja Imovine." @@ -62569,11 +62593,11 @@ msgstr "{0} je obavezan za artikal {1}" msgid "{0} is mandatory for account {1}" msgstr "{0} je obavezan za račun {1}" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do {2}." @@ -62581,7 +62605,7 @@ msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do { msgid "{0} is not a CSV file." msgstr "{0} nije CSV datoteka." -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} nije bankovni račun poduzeća" @@ -62597,7 +62621,7 @@ msgstr "{0} nije artikal na zalihama" msgid "{0} is not a valid Accounting Dimension." msgstr "{0} nije važeća Knjigovodstvena Dimenzija." -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} nije važeća vrijednost za Atribut {1} Artikla {2}." @@ -62613,17 +62637,17 @@ msgstr "{0} nije dodan u tabelu" msgid "{0} is not enabled in {1}" msgstr "{0} nije omogućen u {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} ne radi. Nije moguće pokrenuti događaje za ovaj dokument" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} nije standard dobavljač za bilo koji artikal." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} je na čekanju do {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62673,7 +62697,7 @@ msgstr "{0} parametar je nevažeći" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} unose plaćanja ne može filtrirati {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "{0} količina artikla {1} se prima u Skladište {2} kapaciteta {3}." @@ -62686,7 +62710,7 @@ msgstr "{0} do {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "{0} transakcija će biti uvezeno u sistem. Molimo Vas da pregledate detalje ispod i kliknete na dugme 'Uvezi' da biste nastavili." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} jedinica je rezervisano za artikal {1} u Skladištu {2}, poništi rezervaciju iste za {3} Popis Zaliha." @@ -62702,16 +62726,16 @@ msgstr "{0} jedinica artikla {1} nije dostupno ni u jednom skladištu. Za ovaj a msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} jedinica od {1} su potrebne u {2} sa dimenzijom inventara: {3} na {4} {5} za {6} da bi se transakcija završila." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} jedinica {1} potrebnih u {2} na {3} {4} za {5} da se završi ova transakcija." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} jedinica {1} potrebnih u {2} na {3} {4} za završetak ove transakcije." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} jedinica od {1} potrebnih u {2} za završetak ove transakcije." @@ -62719,7 +62743,7 @@ msgstr "{0} jedinica od {1} potrebnih u {2} za završetak ove transakcije." msgid "{0} until {1}" msgstr "{0} do {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} važeći serijski brojevi za artikal {1}" @@ -62727,7 +62751,7 @@ msgstr "{0} važeći serijski brojevi za artikal {1}" msgid "{0} variants created." msgstr "{0} varijante kreirane." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "Prikaz {0} trenutno nije podržan u Prilagođenom Finansijskom Izvještaju." @@ -62761,7 +62785,7 @@ msgstr "{0} {1} kreiran" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} ne postoji" @@ -62795,12 +62819,21 @@ msgstr "{0} {1} se dodeljuje dva puta u ovoj bankovnoj transakciji" msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} je već povezan sa Zajedničkim Kodom {2}." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} je povezan sa {2}, ali Račun Stranke je {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} je otkazan ili zatvoren" @@ -62832,6 +62865,10 @@ msgstr "{0} {1} je u potpunosti fakturisano" msgid "{0} {1} is not active" msgstr "{0} {1} nije aktivan" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} nije povezano sa {2} {3}" @@ -62937,27 +62974,23 @@ msgstr "{0}% ukupne vrijednosti fakture će se dati kao popust." msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{0} {1} ne može biti nakon {2}očekivanog datuma završetka." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, završi operaciju {1} prije operacije {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "{0}, {1} ili {2} su jedine dozvoljene opcije." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: Podređena tabela (automatski izbrisana s nadređenom tabelom)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Nije pronađeno" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: Zaštićeni DocType" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: Virtualni DocType (bez tabele baze podataka)" @@ -62973,7 +63006,7 @@ msgstr "{0}: {1} ne postoji" msgid "{0}: {1} is a group account." msgstr "{0}: {1} je grupni račun." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} mora biti manje od {2}" @@ -62985,7 +63018,7 @@ msgstr "{count} Imovina kreirana za {item_code}" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} je otkazan ili zatvoren." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "{item_name} Veličina Uzorka ({sample_size}) ne može biti veća od Prihvaćene Količina ({accepted_quantity})" @@ -62997,32 +63030,7 @@ msgstr "{ref_doctype} {ref_name} status je {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} se ne može otkazati jer su zarađeni Poeni Lojalnosti iskorišteni. Prvo otkažite {} Broj {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} je podnijeo imovinu koja je povezana s njim. Morate poništiti sredstva da biste kreirali povrat nabave." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} fakture" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} je podređeno poduzeće." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} je već povezan s drugim {}" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} je već povezan sa {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} ne utiče na bankovni račun {}" - diff --git a/erpnext/locale/cs.po b/erpnext/locale/cs.po index 934e2314a2b..73e5e3de2f8 100644 --- a/erpnext/locale/cs.po +++ b/erpnext/locale/cs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: cs_CZ\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Skladem" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "" @@ -277,7 +268,7 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" +msgid "'Based On' and 'Group By' can not be the same" msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "" @@ -326,12 +317,12 @@ msgstr "" msgid "'To Date' is required" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 @@ -617,7 +608,7 @@ msgstr "90 a více" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -785,16 +776,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "" +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -955,8 +946,8 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 @@ -967,8 +958,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -985,7 +976,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1018,7 +1009,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1194,7 +1185,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "" @@ -1225,12 +1216,16 @@ msgstr "" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1483,7 +1478,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1613,11 +1608,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1896,8 +1891,8 @@ msgstr "" msgid "Accounting Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "" @@ -1922,8 +1917,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1971,7 +1966,11 @@ msgstr "" msgid "Accounting Period" msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2169,8 +2168,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2398,7 +2397,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2408,7 +2407,7 @@ msgstr "" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2558,8 +2557,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2724,10 +2723,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2826,12 +2821,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -2974,7 +2969,7 @@ msgstr "" msgid "Additional Discount Amount (Company Currency)" msgstr "Částka dodatečné slevy (měna společnosti)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3093,11 +3088,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3362,7 +3353,7 @@ msgstr "" msgid "Advance amount" msgstr "Částka zálohy" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Částka zálohy nemůže být větší než {0} {1}" @@ -3431,7 +3422,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "" @@ -3551,7 +3542,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3575,7 +3566,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3689,6 +3680,13 @@ msgstr "" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3865,7 +3863,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3877,7 +3875,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3896,15 +3894,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3928,7 +3926,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "" @@ -3938,7 +3936,7 @@ msgstr "" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3968,7 +3966,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4051,7 +4049,7 @@ msgid "Allow Alternative Item" msgstr "" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4159,7 +4157,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4440,12 +4438,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4480,10 +4480,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4491,10 +4491,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4510,12 +4506,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4720,7 +4716,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4946,12 +4942,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5165,7 +5161,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5342,10 +5338,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5371,6 +5363,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5412,6 +5408,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5494,18 +5499,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Protože je k dispozici dostatek dílčích sestav, výrobní příkaz není pro sklad {0} vyžadován." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5544,7 +5549,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5616,7 +5621,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5782,7 +5787,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5914,7 +5919,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5930,7 +5935,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -5983,7 +5988,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6061,7 +6066,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6082,7 +6087,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6092,6 +6097,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6110,19 +6120,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6143,6 +6157,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6163,7 +6181,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6171,26 +6189,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6402,7 +6416,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6463,7 +6477,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6588,7 +6602,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6684,7 +6698,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6802,7 +6816,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6821,7 +6835,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6836,7 +6850,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6967,7 +6981,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -6988,7 +7002,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7040,10 +7054,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7082,15 +7092,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7171,7 +7185,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7241,6 +7255,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7301,7 +7319,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7401,7 +7419,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7646,7 +7664,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7658,7 +7676,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7670,7 +7688,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7946,8 +7964,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7978,15 +7996,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -7994,6 +8012,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8059,8 +8081,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8173,7 +8195,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8648,7 +8670,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8876,7 +8898,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8894,7 +8916,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8902,7 +8924,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9229,6 +9251,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9400,7 +9426,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9429,21 +9455,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9472,7 +9501,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9480,11 +9509,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9499,10 +9523,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9527,6 +9547,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9536,14 +9561,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9551,7 +9576,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9563,7 +9588,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9588,7 +9613,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9615,7 +9640,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9624,6 +9649,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9641,7 +9670,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9654,7 +9683,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9686,7 +9715,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9711,19 +9740,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9735,12 +9768,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9749,19 +9786,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10188,8 +10229,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10216,8 +10257,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10411,7 +10452,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10469,7 +10510,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10479,7 +10520,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10658,7 +10699,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10672,7 +10713,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10902,9 +10943,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11341,7 +11382,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11411,7 +11452,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11451,10 +11492,6 @@ msgstr "" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11619,7 +11656,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11663,11 +11700,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11706,6 +11743,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11714,14 +11759,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11743,7 +11780,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12187,7 +12224,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12503,7 +12540,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12803,7 +12840,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12828,7 +12865,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12886,7 +12923,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12898,7 +12935,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12920,11 +12957,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13049,14 +13086,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13068,7 +13105,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13078,7 +13115,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13102,7 +13139,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13332,10 +13369,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13354,7 +13387,7 @@ msgstr "Vytvořit operace" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13369,7 +13402,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Vytvořit žádost o platbu" @@ -13597,7 +13630,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13631,7 +13664,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13726,7 +13759,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13736,16 +13769,16 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13779,11 +13812,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13864,7 +13897,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13944,16 +13977,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14012,12 +14045,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14140,7 +14173,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14205,7 +14238,7 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14268,10 +14301,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15102,7 +15131,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15247,10 +15276,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15357,11 +15382,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15523,7 +15548,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16204,8 +16229,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16299,7 +16324,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16357,7 +16382,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16687,7 +16712,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16703,7 +16728,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16773,7 +16798,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16802,11 +16827,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16834,7 +16859,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16937,11 +16962,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17004,7 +17029,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17177,7 +17202,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17186,17 +17211,17 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Pravidla cen byla zakázána, protože {} je interní převod" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17446,8 +17471,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17812,11 +17837,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "" @@ -17854,22 +17879,6 @@ msgstr "" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18175,7 +18184,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18329,7 +18338,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18553,7 +18562,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18741,7 +18750,7 @@ msgstr "" msgid "Empty" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18750,7 +18759,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18829,6 +18838,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19100,7 +19115,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19223,7 +19238,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19278,6 +19293,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19313,7 +19332,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19337,7 +19356,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19369,18 +19388,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19395,7 +19416,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19444,7 +19465,7 @@ msgstr "Příklad: ABCD.#####. Pokud je nastavena řada a v transakcích není u msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19725,7 +19746,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19812,7 +19833,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20071,8 +20092,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20270,7 +20291,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20308,15 +20329,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20325,7 +20346,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20484,11 +20505,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20557,7 +20578,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20570,7 +20591,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20678,7 +20699,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20777,10 +20798,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20794,11 +20811,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20831,7 +20845,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20967,7 +20981,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -20992,10 +21006,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21062,11 +21072,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21099,12 +21109,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21117,8 +21127,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21134,21 +21144,17 @@ msgstr "U projektu - {0} aktualizujte svůj stav" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21167,11 +21173,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21259,6 +21269,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21802,7 +21827,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21927,6 +21952,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21980,7 +22009,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22323,7 +22352,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22506,7 +22535,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22646,7 +22675,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22949,7 +22978,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -22977,7 +23006,7 @@ msgstr "Zde jsou vaše pravidelné volné dny předvyplněny podle předchozích msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23013,7 +23042,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23596,15 +23625,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23642,7 +23671,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23743,7 +23772,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23961,14 +23990,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24445,7 +24474,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24531,7 +24560,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "Nesprávný účet" @@ -24540,7 +24569,7 @@ msgstr "Nesprávný účet" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24548,11 +24577,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "Nesprávná společnost" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24561,7 +24590,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24578,7 +24607,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24661,7 +24690,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24858,7 +24887,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24874,12 +24903,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25009,7 +25038,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25034,7 +25063,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25060,7 +25089,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25081,7 +25110,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25123,8 +25152,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25143,7 +25172,7 @@ msgstr "" msgid "Invalid Amount" msgstr "Neplatná částka" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25160,11 +25189,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25184,13 +25213,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25211,11 +25240,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25245,7 +25274,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25254,7 +25283,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25293,7 +25322,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25310,7 +25339,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25322,8 +25351,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25331,7 +25360,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25348,7 +25377,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25358,14 +25387,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25397,7 +25426,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26360,10 +26389,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26372,7 +26397,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26421,12 +26446,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26459,7 +26484,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26533,7 +26558,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26694,7 +26719,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26726,7 +26751,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26735,12 +26760,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26836,7 +26861,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27032,7 +27057,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27186,7 +27211,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27217,7 +27242,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27225,8 +27250,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27283,7 +27308,7 @@ msgstr "" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "Název položky je povinný." @@ -27330,8 +27355,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27343,7 +27368,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27388,7 +27413,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27504,7 +27529,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27623,7 +27648,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27659,7 +27684,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27673,7 +27698,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27688,7 +27713,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27704,10 +27729,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27716,6 +27737,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27725,6 +27750,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27757,6 +27783,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27789,7 +27819,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27821,10 +27851,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27875,6 +27901,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27891,7 +27921,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -27931,7 +27961,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27941,7 +27971,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28011,7 +28041,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28074,20 +28104,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28150,11 +28179,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28500,7 +28537,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28621,7 +28658,7 @@ msgstr "" msgid "Lead" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28715,7 +28752,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28863,7 +28900,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28892,7 +28929,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28922,7 +28959,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29018,7 +29055,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29185,7 +29222,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29271,7 +29308,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29509,7 +29546,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29606,7 +29643,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29753,7 +29790,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29836,8 +29873,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30059,7 +30096,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30237,10 +30274,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30267,7 +30300,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30378,7 +30411,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30428,7 +30461,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30450,7 +30483,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30464,7 +30497,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30584,13 +30617,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30759,7 +30792,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30794,7 +30827,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31140,7 +31173,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31149,11 +31182,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31178,11 +31211,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31190,7 +31223,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31202,7 +31235,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31214,7 +31247,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31222,12 +31255,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31476,8 +31509,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31485,7 +31518,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31506,7 +31539,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31515,10 +31548,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31603,11 +31636,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31651,7 +31680,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31661,12 +31690,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31744,8 +31773,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31795,7 +31824,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31803,7 +31832,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31817,11 +31846,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32065,7 +32094,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32138,6 +32167,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32150,8 +32180,8 @@ msgstr "" msgid "New Workplace" msgstr "Nové pracoviště" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32160,6 +32190,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32172,7 +32206,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32236,16 +32270,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32253,15 +32286,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32304,11 +32337,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32411,6 +32439,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32456,7 +32488,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32493,10 +32525,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32593,7 +32621,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32631,15 +32659,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32668,7 +32701,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32705,7 +32738,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32713,11 +32746,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32769,7 +32797,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32780,8 +32808,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32795,8 +32823,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32859,10 +32887,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32879,10 +32903,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32895,7 +32915,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33140,7 +33160,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33316,11 +33336,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33355,7 +33375,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33420,7 +33440,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33486,7 +33506,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33639,7 +33659,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33669,7 +33689,7 @@ msgstr "Datum otevření" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33697,7 +33717,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33706,7 +33726,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33736,20 +33756,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33758,7 +33778,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33801,7 +33821,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33892,7 +33912,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33916,7 +33936,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34102,6 +34122,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34118,10 +34142,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34407,7 +34427,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34461,7 +34481,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34542,11 +34562,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Povolená nadměrná kompletace (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34563,12 +34583,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34619,10 +34639,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34688,6 +34704,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34735,7 +34756,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34833,7 +34854,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34893,7 +34914,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34914,7 +34935,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34937,7 +34958,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -34957,7 +34978,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34969,19 +34990,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35011,11 +35032,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35034,7 +35055,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35659,7 +35680,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35786,7 +35807,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35872,7 +35893,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35893,7 +35914,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35929,7 +35950,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36439,7 +36460,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36514,7 +36535,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "Platební plány" @@ -36536,7 +36557,7 @@ msgstr "Platební plány" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36636,7 +36657,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36843,11 +36864,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37363,12 +37384,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37390,7 +37411,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37541,15 +37562,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37557,7 +37569,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37565,19 +37576,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37593,7 +37604,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37601,35 +37612,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37671,7 +37679,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37684,11 +37692,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37704,15 +37712,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37720,11 +37728,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37736,7 +37744,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37748,11 +37756,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37777,7 +37785,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37789,11 +37797,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37809,7 +37817,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37825,7 +37833,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37834,7 +37842,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37870,7 +37878,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38000,7 +38008,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38036,11 +38044,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38069,12 +38073,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38090,9 +38094,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38102,7 +38106,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38125,7 +38129,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38134,6 +38138,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38158,11 +38166,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38191,6 +38199,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38198,11 +38207,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38211,7 +38221,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38223,7 +38233,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38239,6 +38249,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38272,22 +38283,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Vyberte prosím řádek pro vytvoření záznamu přeúčtování" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38296,7 +38311,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38304,10 +38319,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38316,18 +38339,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "Vyberte prosím alespoň jeden plán." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38365,12 +38380,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38379,7 +38394,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38403,20 +38418,16 @@ msgstr "Nejprve prosím vyberte typ dokumentu." msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Vyberte prosím týdenní den volna" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38445,7 +38456,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38475,21 +38486,19 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Nastavte prosím fiskální kód pro zákazníka „{0}“" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Nastavte prosím fiskální kód pro veřejnou správu „{0}“" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38506,9 +38515,8 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Nastavte prosím DIČ pro zákazníka „{0}“" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38527,15 +38535,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38552,9 +38560,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "" +msgid "Please set an Address on the Company '{0}'" +msgstr "Nastavte prosím adresu u společnosti „{0}“" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38572,24 +38579,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38621,11 +38625,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38633,7 +38637,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38688,7 +38692,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38696,7 +38700,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38706,8 +38710,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38715,11 +38719,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38727,6 +38731,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38890,7 +38902,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38915,7 +38927,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38958,7 +38970,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -38967,7 +38979,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39160,6 +39172,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39249,7 +39265,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39391,7 +39407,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39512,7 +39528,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39623,7 +39639,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39831,7 +39847,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40013,7 +40029,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40139,7 +40155,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40164,7 +40180,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40367,7 +40383,7 @@ msgstr "" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Zisk v tomto roce" @@ -40396,6 +40412,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40404,8 +40424,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40478,7 +40498,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40558,7 +40578,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40609,7 +40629,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40755,7 +40775,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40788,9 +40808,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41018,8 +41038,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41060,7 +41080,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41084,11 +41104,11 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41103,7 +41123,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41152,7 +41172,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41212,7 +41232,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41302,7 +41322,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41322,7 +41342,7 @@ msgid "Purchase Receipt Trends " msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41550,7 +41570,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41569,7 +41589,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41634,7 +41654,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41671,7 +41691,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41766,7 +41786,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -41952,7 +41972,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42029,7 +42049,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42112,7 +42132,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42156,12 +42176,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42312,7 +42332,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42340,11 +42360,11 @@ msgstr "Množství musí být větší než 0" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42352,6 +42372,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42377,7 +42401,7 @@ msgstr "" msgid "Query Route String" msgstr "Řetězec trasy dotazu" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42617,7 +42641,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42801,7 +42825,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43120,7 +43144,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43362,8 +43386,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43539,6 +43563,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43589,7 +43617,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43669,7 +43697,7 @@ msgstr "Referenční #" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -43961,7 +43989,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44068,7 +44096,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44107,7 +44135,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44258,7 +44286,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44341,7 +44369,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44387,6 +44415,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44471,7 +44508,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44587,11 +44624,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44770,6 +44807,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44808,8 +44849,8 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "" +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Rezervované množství ({0}) nemůže být desetinné. Chcete-li to povolit, zakažte v MJ {2} možnost „{1}“." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44853,7 +44894,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44869,13 +44910,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45369,6 +45410,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45793,11 +45838,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45881,23 +45926,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45973,13 +46018,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -45991,7 +46039,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -45999,12 +46047,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46016,7 +46064,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46024,6 +46072,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46036,11 +46088,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46063,8 +46122,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46076,7 +46135,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46088,6 +46147,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46116,16 +46179,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46141,12 +46204,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46157,15 +46224,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46177,24 +46244,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46210,6 +46301,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46229,7 +46324,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46252,7 +46347,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46260,17 +46355,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46290,11 +46385,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46304,7 +46399,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46313,6 +46408,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46325,7 +46424,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46349,7 +46448,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46418,7 +46517,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46426,19 +46525,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46450,11 +46557,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46462,6 +46573,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46478,6 +46602,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "Řádek č. {0}: Množství pro položku {1} nemůže být nula." @@ -46518,71 +46650,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46595,10 +46666,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46619,19 +46686,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46647,11 +46714,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46679,24 +46746,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46717,6 +46784,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46738,7 +46808,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46769,7 +46839,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46793,7 +46863,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46801,12 +46871,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46825,11 +46895,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46837,7 +46907,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46849,7 +46919,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46874,10 +46944,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46930,15 +47000,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -46977,7 +47051,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47038,10 +47112,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47109,7 +47179,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47408,7 +47478,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47625,8 +47695,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48033,7 +48103,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48065,7 +48135,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48175,7 +48245,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48186,7 +48256,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48472,7 +48542,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48493,7 +48563,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48558,7 +48628,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48583,7 +48653,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48613,7 +48683,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48627,13 +48697,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48724,6 +48794,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48865,10 +48936,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49016,7 +49091,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49100,7 +49175,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49157,10 +49232,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49202,6 +49278,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49219,7 +49299,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49264,7 +49344,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49276,7 +49356,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49296,21 +49376,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49325,25 +49402,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49363,7 +49441,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49464,6 +49542,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49512,7 +49594,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49520,122 +49602,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49717,7 +49689,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49826,12 +49798,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49855,7 +49827,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49870,7 +49842,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49975,7 +49947,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -49993,7 +49965,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50019,7 +49991,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50117,15 +50089,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50193,7 +50165,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50621,6 +50593,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50823,7 +50796,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50926,11 +50899,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -50991,7 +50964,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51047,7 +51020,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51115,7 +51088,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51152,8 +51125,8 @@ msgstr "Zdrojový typ" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51283,7 +51256,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51296,7 +51269,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51349,7 +51327,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51414,10 +51392,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51447,7 +51441,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51476,10 +51470,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51560,7 +51558,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51688,7 +51686,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51770,16 +51768,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51946,7 +51948,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52029,7 +52031,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52054,15 +52056,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52232,7 +52234,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52391,8 +52393,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52411,7 +52413,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52426,7 +52428,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52434,7 +52436,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52648,7 +52650,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52720,7 +52722,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52758,7 +52760,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52832,7 +52834,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52851,7 +52853,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52880,7 +52882,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53022,7 +53024,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53200,7 +53202,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53382,7 +53384,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53530,7 +53532,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53715,10 +53717,6 @@ msgstr "Tým podpory" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53804,7 +53802,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53865,7 +53863,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -53975,11 +53973,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "" +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "Cílový sklad pro hotový výrobek musí být stejný jako sklad hotového výrobku {0} ve výrobním příkazu {1} propojeném s příchozí subdodavatelskou objednávkou." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54454,7 +54452,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54666,7 +54664,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -54973,12 +54971,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "Pole „Od čísla balíku“ nesmí být prázdné ani mít hodnotu menší než 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -54986,10 +54980,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55014,6 +55016,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55031,8 +55037,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55043,11 +55052,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55095,15 +55108,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55152,6 +55165,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55173,8 +55190,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55202,7 +55219,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55214,7 +55231,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55250,7 +55267,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55288,11 +55305,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55341,6 +55358,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55350,7 +55371,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55367,7 +55388,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55384,7 +55405,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55403,11 +55424,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "" +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Zásoba položky {0} ve skladu {1} byla dne {2} záporná. Pro zaúčtování správné oceňovací sazby byste měli před datem {4} a časem {5} vytvořit kladnou položku {3}. Další podrobnosti najdete v dokumentaci." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55429,16 +55450,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55477,7 +55498,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55501,7 +55522,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55509,7 +55530,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55517,6 +55538,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55525,7 +55550,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55537,7 +55562,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55554,6 +55579,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55570,10 +55599,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55602,20 +55627,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55666,15 +55691,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55696,7 +55725,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55714,7 +55743,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Tento dokument překračuje limit o {0} {1} pro položku {4}. Vytváříte další {3} vůči stejnému {2}?" @@ -55856,7 +55885,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55920,7 +55949,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55947,10 +55976,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56008,7 +56037,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56137,6 +56166,12 @@ msgstr "" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56423,7 +56458,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56454,15 +56489,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56479,7 +56514,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56491,7 +56526,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56504,8 +56539,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56525,7 +56560,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56542,10 +56577,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56624,8 +56661,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56667,6 +56704,22 @@ msgstr "" msgid "Total Advance" msgstr "Celkem záloh" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56714,11 +56767,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56900,7 +56953,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56909,11 +56962,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Celkové náklady v tomto roce" @@ -56951,11 +57004,11 @@ msgstr "Celková doba podržení" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Celkové příjmy v tomto roce" @@ -56998,7 +57051,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57313,7 +57366,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57322,7 +57375,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57401,7 +57458,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57419,7 +57476,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57437,8 +57494,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57527,27 +57584,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57600,11 +57641,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -57994,6 +58035,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58178,7 +58223,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58200,7 +58245,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58230,7 +58275,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58294,7 +58339,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58368,7 +58413,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58381,10 +58426,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58409,7 +58450,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58421,8 +58462,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58472,7 +58515,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58495,7 +58538,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58698,7 +58741,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58711,7 +58754,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58855,7 +58898,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58919,7 +58962,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59147,7 +59190,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59236,6 +59279,10 @@ msgstr "Doba vyřešení uživatelem" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59248,6 +59295,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59256,10 +59307,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59552,15 +59599,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59568,7 +59615,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59578,7 +59625,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59591,13 +59638,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59648,12 +59695,12 @@ msgstr "" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59662,19 +59709,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60150,7 +60197,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60178,7 +60225,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60190,7 +60237,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60222,7 +60269,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60429,7 +60476,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60447,16 +60494,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60577,7 +60624,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60597,7 +60644,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60751,10 +60798,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60900,7 +60943,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61076,17 +61119,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61125,7 +61168,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61166,20 +61209,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61200,7 +61243,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61225,7 +61268,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61278,7 +61321,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61510,14 +61553,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61532,7 +61567,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61552,7 +61587,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61563,19 +61598,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61597,7 +61628,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61616,14 +61647,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61632,16 +61655,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61653,15 +61676,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61669,7 +61700,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61677,7 +61708,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61692,6 +61723,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61702,7 +61737,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61729,11 +61764,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61750,7 +61785,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61765,19 +61800,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61829,6 +61864,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61859,7 +61898,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61879,7 +61918,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61895,10 +61934,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61953,8 +61988,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62034,14 +62069,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62055,7 +62086,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62131,8 +62162,8 @@ msgstr "" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62195,10 +62226,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62211,7 +62238,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62231,7 +62258,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62239,11 +62266,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62325,10 +62347,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62344,7 +62374,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62386,7 +62416,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62394,6 +62424,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62402,7 +62436,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62416,7 +62454,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62424,7 +62462,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62437,11 +62475,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62449,7 +62487,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62465,7 +62503,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62481,16 +62519,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62541,7 +62579,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62554,7 +62592,7 @@ msgstr "{0} do {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62570,16 +62608,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62587,7 +62625,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62595,7 +62633,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62629,7 +62667,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62663,12 +62701,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62700,6 +62747,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62805,27 +62856,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62841,7 +62888,7 @@ msgstr "{0}: {1} neexistuje" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62853,7 +62900,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62865,32 +62912,7 @@ msgstr "Stav {ref_doctype} {ref_name} je {status}." msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} faktury" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/da.po b/erpnext/locale/da.po index fa68f80712a..e02c067f65a 100644 --- a/erpnext/locale/da.po +++ b/erpnext/locale/da.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: da_DK\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "\"Er anlægsaktiv\" kan ikke afkrydses, da der findes aktiv post for art msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" for \"SN-01\" til \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# På Lager" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Påkrævede Artikler" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'Tillad flere Salg Ordrer mod Kundes Indkøb Ordre'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Baseret På' og 'Gruppér Efter' må ikke være det samme" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Fra Dato' skal være efter 'Til Dato'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Har Serienummer' kan ikke være 'Ja' for ikke Lager Artikel" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "\"Kontrol påkrævet før levering\" er deaktiveret for artikel {0}, der er ikke behov for at oprette Kvalitet Kontrol" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "\"Kontrol påkrævet før Inkøb\" er deaktiveret for artikel {0}, der er ikke behov for at oprette Kvalitet Kontrol" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Åbning'" @@ -326,13 +317,13 @@ msgstr "'Åbning'" msgid "'To Date' is required" msgstr "'Til dato' er påkrævet" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "\"Til Pakke Nummer\" kan ikke være lavere end \"Fra Pakke Nummer\"." #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Opdater Lager' kan ikke kontrolleres, fordi artikler ikke leveres via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90 Over" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -781,16 +772,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "" #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -951,8 +942,8 @@ msgstr "A - B" msgid "A - C" msgstr "A - B" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 @@ -963,8 +954,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -981,7 +972,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1014,7 +1005,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1190,7 +1181,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Accepteret antal i Lager Enhed" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Accepteret Antal" @@ -1221,12 +1212,16 @@ msgstr "Adgangsnøgle" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "I henhold til CEFACT/ICG/2010/IC013 eller CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1479,7 +1474,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1609,11 +1604,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1892,8 +1887,8 @@ msgstr "Bogføring Dimensioner Filter" msgid "Accounting Entries" msgstr "Bogføring Poster" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Bogføring Post for Aktiv" @@ -1918,8 +1913,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1967,7 +1962,11 @@ msgstr "" msgid "Accounting Period" msgstr "Bogføring Periode" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2165,8 +2164,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2394,7 +2393,7 @@ msgstr "Faktisk Saldo Kvantitet" msgid "Actual Batch Quantity" msgstr "Faktisk Parti Kvantitet" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Faktisk Omkostning" @@ -2404,7 +2403,7 @@ msgstr "Faktisk Omkostning" msgid "Actual Date" msgstr "Faktisk Dato" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2554,8 +2553,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2720,10 +2719,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2822,12 +2817,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -2970,7 +2965,7 @@ msgstr "" msgid "Additional Discount Amount (Company Currency)" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3089,11 +3084,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3358,7 +3349,7 @@ msgstr "" msgid "Advance amount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "" @@ -3427,7 +3418,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "" @@ -3547,7 +3538,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3571,7 +3562,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3685,6 +3676,13 @@ msgstr "" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3861,7 +3859,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3873,7 +3871,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3892,15 +3890,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3924,7 +3922,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "" @@ -3934,7 +3932,7 @@ msgstr "" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3964,7 +3962,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4047,7 +4045,7 @@ msgid "Allow Alternative Item" msgstr "" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4155,7 +4153,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4436,12 +4434,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4476,10 +4476,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4487,10 +4487,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4506,12 +4502,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4716,7 +4712,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4942,12 +4938,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5161,7 +5157,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5338,10 +5334,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5367,6 +5359,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5408,6 +5404,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5490,18 +5495,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5540,7 +5545,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5612,7 +5617,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5778,7 +5783,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5910,7 +5915,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5926,7 +5931,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -5979,7 +5984,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6057,7 +6062,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6078,7 +6083,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6088,6 +6093,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6106,19 +6116,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6139,6 +6153,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6159,7 +6177,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6167,26 +6185,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6398,7 +6412,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6459,7 +6473,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6584,7 +6598,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6680,7 +6694,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6798,7 +6812,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6817,8 +6831,8 @@ msgid "BOM 1" msgstr "Stykliste 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "Stykliste 1 {0} og Stykliste 2 {1} bør ikke være ens" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6832,7 +6846,7 @@ msgstr "Stykliste 2" msgid "BOM Comparison Tool" msgstr "Stykliste Sammenligningsværktøj" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6963,7 +6977,7 @@ msgstr "Stykliste Operation" msgid "BOM Operations Time" msgstr "Stykliste Operationer Tid" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -6984,7 +6998,7 @@ msgstr "Styklistesøgning" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7036,10 +7050,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7078,15 +7088,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7167,7 +7181,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7237,6 +7251,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7297,7 +7315,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7397,7 +7415,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7642,7 +7660,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7654,7 +7672,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7666,7 +7684,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7942,8 +7960,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7974,15 +7992,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -7990,6 +8008,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8055,8 +8077,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8169,7 +8191,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8644,7 +8666,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8872,7 +8894,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8890,7 +8912,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8898,7 +8920,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9225,6 +9247,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9396,7 +9422,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9425,21 +9451,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9468,7 +9497,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9476,11 +9505,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9495,10 +9519,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9523,6 +9543,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9532,14 +9557,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9547,7 +9572,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9559,7 +9584,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9584,7 +9609,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9611,7 +9636,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9620,6 +9645,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9637,7 +9666,7 @@ msgstr "Kan ikke erklæres tabt, fordi der er afgivet tilbud." msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9650,7 +9679,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9682,7 +9711,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9707,19 +9736,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9731,12 +9764,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9745,19 +9782,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10184,8 +10225,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10212,8 +10253,8 @@ msgstr "" msgid "Channel Partner" msgstr "Kanal Partner" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10407,7 +10448,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10465,7 +10506,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10475,7 +10516,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10654,7 +10695,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "Luk Besvaret Mulighed Efter Dage" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10668,7 +10709,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10898,9 +10939,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11337,7 +11378,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11407,7 +11448,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11447,10 +11488,6 @@ msgstr "Selskab" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11615,7 +11652,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11659,11 +11696,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11702,6 +11739,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11710,14 +11755,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11739,7 +11776,7 @@ msgstr "Konkurrent Navn" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Konkurrenter" @@ -12183,7 +12220,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12499,7 +12536,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12799,7 +12836,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12824,7 +12861,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12882,7 +12919,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12894,7 +12931,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12916,11 +12953,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13045,14 +13082,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13064,7 +13101,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13074,7 +13111,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13098,7 +13135,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13328,10 +13365,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13350,7 +13383,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13365,7 +13398,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13593,7 +13626,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13627,7 +13660,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13722,7 +13755,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13732,16 +13765,16 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13775,11 +13808,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13860,7 +13893,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13940,16 +13973,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14008,12 +14041,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14136,7 +14169,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14201,7 +14234,7 @@ msgid "Current BOM" msgstr "Aktuel Stykliste" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14264,10 +14297,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15098,7 +15127,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15243,10 +15272,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15353,11 +15378,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15519,7 +15544,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16200,8 +16225,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16295,7 +16320,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16353,7 +16378,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16683,7 +16708,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16699,7 +16724,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16769,7 +16794,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16798,11 +16823,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16830,7 +16855,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16933,11 +16958,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17000,7 +17025,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17173,7 +17198,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17182,8 +17207,8 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' @@ -17191,8 +17216,8 @@ msgstr "" msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17442,8 +17467,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17808,11 +17833,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} findes ikke" @@ -17850,22 +17875,6 @@ msgstr "" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18171,7 +18180,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18325,7 +18334,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18549,7 +18558,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18737,7 +18746,7 @@ msgstr "" msgid "Empty" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18746,7 +18755,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18825,6 +18834,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19096,7 +19111,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19219,7 +19234,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19274,6 +19289,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19309,7 +19328,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19333,7 +19352,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19365,18 +19384,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19391,7 +19412,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19440,7 +19461,7 @@ msgstr "" msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19721,7 +19742,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19808,7 +19829,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20067,8 +20088,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20266,7 +20287,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20304,15 +20325,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20321,7 +20342,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20480,11 +20501,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20553,7 +20574,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20566,7 +20587,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20674,7 +20695,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20773,10 +20794,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20790,11 +20807,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20827,7 +20841,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20963,7 +20977,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -20988,10 +21002,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21058,11 +21068,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21095,12 +21105,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21113,8 +21123,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21130,21 +21140,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21163,11 +21169,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21255,6 +21265,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21798,7 +21823,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21923,6 +21948,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21976,7 +22005,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22319,7 +22348,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22502,7 +22531,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22642,7 +22671,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22945,7 +22974,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -22973,7 +23002,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Hej," @@ -23009,7 +23038,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23592,15 +23621,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23638,7 +23667,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23739,7 +23768,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23957,14 +23986,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24441,7 +24470,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24527,7 +24556,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24536,7 +24565,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24544,11 +24573,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24557,7 +24586,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24574,7 +24603,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24657,7 +24686,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24854,7 +24883,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24870,12 +24899,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25005,7 +25034,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25030,7 +25059,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25056,7 +25085,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25077,7 +25106,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25119,8 +25148,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25139,7 +25168,7 @@ msgstr "" msgid "Invalid Amount" msgstr "" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25156,11 +25185,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25180,13 +25209,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25207,11 +25236,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25241,7 +25270,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25250,7 +25279,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25289,7 +25318,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25306,7 +25335,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25318,8 +25347,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25327,7 +25356,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25344,7 +25373,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25354,14 +25383,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25393,7 +25422,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26356,10 +26385,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26368,7 +26393,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26417,12 +26442,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26455,7 +26480,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26529,7 +26554,7 @@ msgstr "Artikel 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26690,7 +26715,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26722,7 +26747,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26731,12 +26756,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26832,7 +26857,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27028,7 +27053,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27182,7 +27207,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27213,7 +27238,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27221,8 +27246,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27279,7 +27304,7 @@ msgstr "" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27326,8 +27351,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27339,7 +27364,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27384,7 +27409,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27500,7 +27525,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27619,7 +27644,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27655,7 +27680,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27669,7 +27694,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27684,7 +27709,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27700,10 +27725,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27712,6 +27733,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27721,6 +27746,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27753,6 +27779,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27785,7 +27815,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27817,10 +27847,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27871,6 +27897,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27887,7 +27917,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -27927,7 +27957,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27937,7 +27967,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28007,7 +28037,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28070,20 +28100,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28146,11 +28175,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28496,7 +28533,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28617,7 +28654,7 @@ msgstr "" msgid "Lead" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28711,7 +28748,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28859,7 +28896,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28888,7 +28925,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28918,7 +28955,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29014,7 +29051,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29181,7 +29218,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29267,7 +29304,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29505,7 +29542,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29602,7 +29639,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29749,7 +29786,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29832,8 +29869,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30055,7 +30092,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30233,10 +30270,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30263,7 +30296,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30374,7 +30407,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30424,7 +30457,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30446,7 +30479,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30460,7 +30493,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30580,13 +30613,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30755,7 +30788,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30790,7 +30823,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31136,7 +31169,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31145,11 +31178,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31174,11 +31207,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31186,7 +31219,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31198,7 +31231,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31210,7 +31243,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31218,12 +31251,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31472,8 +31505,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31481,7 +31514,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31502,7 +31535,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31511,10 +31544,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31599,11 +31632,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31647,7 +31676,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31657,12 +31686,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31740,8 +31769,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31791,7 +31820,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31799,7 +31828,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31813,11 +31842,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32061,7 +32090,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32134,6 +32163,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32146,8 +32176,8 @@ msgstr "" msgid "New Workplace" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32156,6 +32186,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32168,7 +32202,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32232,16 +32266,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32249,15 +32282,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32300,11 +32333,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32407,6 +32435,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32452,7 +32484,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32489,10 +32521,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32589,7 +32617,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32627,15 +32655,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32664,7 +32697,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32701,7 +32734,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32709,11 +32742,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32765,7 +32793,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32776,8 +32804,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32791,8 +32819,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32855,10 +32883,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32875,10 +32899,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32891,7 +32911,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33136,7 +33156,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33312,11 +33332,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33351,7 +33371,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33416,7 +33436,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33482,7 +33502,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33635,7 +33655,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33665,7 +33685,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33693,7 +33713,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33702,7 +33722,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33732,20 +33752,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33754,7 +33774,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33797,7 +33817,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33888,7 +33908,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33912,7 +33932,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34098,6 +34118,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34114,10 +34138,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34403,7 +34423,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34457,7 +34477,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34538,11 +34558,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34559,12 +34579,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34615,10 +34635,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34684,6 +34700,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34731,7 +34752,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34829,7 +34850,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34889,7 +34910,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34910,7 +34931,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34933,7 +34954,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -34953,7 +34974,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34965,19 +34986,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35007,11 +35028,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35030,7 +35051,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35655,7 +35676,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35782,7 +35803,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35868,7 +35889,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35889,7 +35910,7 @@ msgstr "Parti Type" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35925,7 +35946,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36435,7 +36456,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36510,7 +36531,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36532,7 +36553,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36632,7 +36653,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36839,11 +36860,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37359,12 +37380,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37386,7 +37407,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37537,15 +37558,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37553,7 +37565,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37561,19 +37572,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37589,7 +37600,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37597,35 +37608,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37667,7 +37675,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37680,11 +37688,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37700,15 +37708,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37716,11 +37724,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37732,7 +37740,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37744,11 +37752,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37773,7 +37781,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37785,11 +37793,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37805,7 +37813,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37821,7 +37829,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37830,7 +37838,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37866,7 +37874,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -37996,7 +38004,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38032,11 +38040,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38065,12 +38069,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38086,9 +38090,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38098,7 +38102,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38121,7 +38125,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38130,6 +38134,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38154,11 +38162,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38187,6 +38195,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38194,11 +38203,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38207,7 +38217,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38219,7 +38229,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38235,6 +38245,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38268,22 +38279,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38292,7 +38307,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38300,10 +38315,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38312,18 +38335,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38361,12 +38376,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38375,7 +38390,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38399,20 +38414,16 @@ msgstr "" msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38441,7 +38452,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38471,13 +38482,11 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" msgstr "" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38485,7 +38494,7 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38502,8 +38511,7 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" +msgid "Please set Tax ID for the customer '{0}'" msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 @@ -38523,15 +38531,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38548,8 +38556,7 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" +msgid "Please set an Address on the Company '{0}'" msgstr "" #: erpnext/stock/services/base_stock_gl_composer.py:194 @@ -38568,24 +38575,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38617,11 +38621,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38629,7 +38633,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38684,7 +38688,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38692,7 +38696,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38702,8 +38706,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38711,11 +38715,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38723,6 +38727,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38886,7 +38898,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38911,7 +38923,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38954,7 +38966,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -38963,7 +38975,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39156,6 +39168,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39245,7 +39261,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39387,7 +39403,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39508,7 +39524,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39619,7 +39635,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39827,7 +39843,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40009,7 +40025,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40135,7 +40151,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40160,7 +40176,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40363,7 +40379,7 @@ msgstr "" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "" @@ -40392,6 +40408,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40400,8 +40420,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40474,7 +40494,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40554,7 +40574,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40605,7 +40625,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40751,7 +40771,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40784,9 +40804,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41014,8 +41034,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41056,7 +41076,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41080,11 +41100,11 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41099,7 +41119,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41148,7 +41168,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41208,7 +41228,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41298,7 +41318,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41318,7 +41338,7 @@ msgid "Purchase Receipt Trends " msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41546,7 +41566,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41565,7 +41585,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41630,7 +41650,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41667,7 +41687,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41762,7 +41782,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -41948,7 +41968,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42025,7 +42045,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42108,7 +42128,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42152,12 +42172,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42308,7 +42328,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42336,11 +42356,11 @@ msgstr "" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42348,6 +42368,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42373,7 +42397,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42613,7 +42637,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42797,7 +42821,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43116,7 +43140,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43358,8 +43382,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43535,6 +43559,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43585,7 +43613,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43665,7 +43693,7 @@ msgstr "" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -43957,7 +43985,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44064,7 +44092,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44103,7 +44131,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44254,7 +44282,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44337,7 +44365,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44383,6 +44411,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44467,7 +44504,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44583,11 +44620,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44766,6 +44803,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44804,7 +44845,7 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." msgstr "" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material @@ -44849,7 +44890,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44865,13 +44906,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45365,6 +45406,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45789,11 +45834,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45877,23 +45922,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45969,13 +46014,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -45987,7 +46035,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -45995,12 +46043,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46012,7 +46060,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46020,6 +46068,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46032,11 +46084,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46059,8 +46118,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46072,7 +46131,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46084,6 +46143,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46112,16 +46175,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46137,12 +46200,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46153,15 +46220,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46173,24 +46240,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46206,6 +46297,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46225,7 +46320,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46248,7 +46343,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46256,17 +46351,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46286,11 +46381,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46300,7 +46395,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46309,6 +46404,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46321,7 +46420,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46345,7 +46444,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46414,7 +46513,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46422,19 +46521,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46446,11 +46553,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46458,6 +46569,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46474,6 +46598,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46514,71 +46646,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46591,10 +46662,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46615,19 +46682,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46643,11 +46710,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46675,24 +46742,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46713,6 +46780,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46734,7 +46804,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46765,7 +46835,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46789,7 +46859,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46797,12 +46867,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46821,11 +46891,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46833,7 +46903,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46845,7 +46915,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46870,10 +46940,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46926,15 +46996,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -46973,7 +47047,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47034,10 +47108,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47105,7 +47175,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47404,7 +47474,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47621,8 +47691,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48029,7 +48099,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48061,7 +48131,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48171,7 +48241,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48182,7 +48252,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48468,7 +48538,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48489,7 +48559,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48554,7 +48624,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48579,7 +48649,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48609,7 +48679,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48623,13 +48693,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48720,6 +48790,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48861,10 +48932,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49012,7 +49087,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49096,7 +49171,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49153,10 +49228,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49198,6 +49274,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49215,7 +49295,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49260,7 +49340,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49272,7 +49352,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49292,21 +49372,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49321,25 +49398,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49359,7 +49437,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49460,6 +49538,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49508,7 +49590,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49516,122 +49598,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49713,7 +49685,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49822,12 +49794,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49851,7 +49823,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49866,7 +49838,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49971,7 +49943,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -49989,7 +49961,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50015,7 +49987,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50113,15 +50085,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50189,7 +50161,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50617,6 +50589,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50819,7 +50792,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50922,11 +50895,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -50987,7 +50960,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51043,7 +51016,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51111,7 +51084,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51148,8 +51121,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51279,7 +51252,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51292,7 +51265,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51345,7 +51323,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51410,10 +51388,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51443,7 +51437,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51472,10 +51466,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51556,7 +51554,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51684,7 +51682,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51766,16 +51764,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51942,7 +51944,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52025,7 +52027,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52050,15 +52052,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52228,7 +52230,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52387,8 +52389,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52407,7 +52409,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52422,7 +52424,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52430,7 +52432,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52644,7 +52646,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52716,7 +52718,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52754,7 +52756,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52828,7 +52830,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52847,7 +52849,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52876,7 +52878,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53018,7 +53020,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53196,7 +53198,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53378,7 +53380,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53526,7 +53528,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53711,10 +53713,6 @@ msgstr "" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53800,7 +53798,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53861,7 +53859,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -53971,11 +53969,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54450,7 +54448,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54662,7 +54660,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -54969,12 +54967,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -54982,10 +54976,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55010,6 +55012,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55027,8 +55033,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55039,11 +55048,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55091,15 +55104,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55148,6 +55161,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55169,8 +55186,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55198,7 +55215,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55210,7 +55227,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55246,7 +55263,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55284,11 +55301,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55337,6 +55354,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55346,7 +55367,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55363,7 +55384,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55380,7 +55401,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55399,11 +55420,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55425,16 +55446,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55473,7 +55494,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55497,7 +55518,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55505,7 +55526,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55513,6 +55534,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55521,7 +55546,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55533,7 +55558,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55550,6 +55575,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55566,10 +55595,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55598,20 +55623,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55662,15 +55687,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55692,7 +55721,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55710,7 +55739,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "" @@ -55852,7 +55881,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55916,7 +55945,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55943,10 +55972,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56004,7 +56033,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56133,6 +56162,12 @@ msgstr "" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56419,7 +56454,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56450,15 +56485,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56475,7 +56510,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56487,7 +56522,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56500,8 +56535,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56521,7 +56556,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56538,10 +56573,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56620,8 +56657,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56663,6 +56700,22 @@ msgstr "" msgid "Total Advance" msgstr "" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56710,11 +56763,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56896,7 +56949,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56905,11 +56958,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "" @@ -56947,11 +57000,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "" @@ -56994,7 +57047,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57309,7 +57362,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57318,7 +57371,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57397,7 +57454,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57415,7 +57472,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57433,8 +57490,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57523,27 +57580,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57596,11 +57637,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -57990,6 +58031,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58174,7 +58219,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58196,7 +58241,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58226,7 +58271,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58290,7 +58335,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58364,7 +58409,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58377,10 +58422,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58405,7 +58446,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58417,8 +58458,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58468,7 +58511,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58491,7 +58534,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58694,7 +58737,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58707,7 +58750,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58851,7 +58894,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58915,7 +58958,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59143,7 +59186,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59232,6 +59275,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59244,6 +59291,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59252,10 +59303,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59548,15 +59595,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59564,7 +59611,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59574,7 +59621,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59587,13 +59634,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59644,12 +59691,12 @@ msgstr "" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59658,19 +59705,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60146,7 +60193,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60174,7 +60221,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60186,7 +60233,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60218,7 +60265,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60425,7 +60472,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60443,16 +60490,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60573,7 +60620,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60593,7 +60640,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60747,10 +60794,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60896,7 +60939,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61072,17 +61115,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61121,7 +61164,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61162,20 +61205,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61196,7 +61239,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61221,7 +61264,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61274,7 +61317,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61506,14 +61549,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61528,7 +61563,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61548,7 +61583,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61559,19 +61594,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61593,7 +61624,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61612,14 +61643,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61628,16 +61651,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61649,15 +61672,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61665,7 +61696,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61673,7 +61704,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61688,6 +61719,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61698,7 +61733,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61725,11 +61760,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61746,7 +61781,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61761,19 +61796,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61825,6 +61860,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61855,7 +61894,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61875,7 +61914,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61891,10 +61930,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61949,8 +61984,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62030,14 +62065,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62051,7 +62082,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62127,8 +62158,8 @@ msgstr "" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62191,10 +62222,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62207,7 +62234,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62227,7 +62254,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62235,11 +62262,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62321,10 +62343,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62340,7 +62370,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62382,7 +62412,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62390,6 +62420,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62398,7 +62432,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62412,7 +62450,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62420,7 +62458,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62433,11 +62471,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62445,7 +62483,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62461,7 +62499,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62477,16 +62515,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62537,7 +62575,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62550,7 +62588,7 @@ msgstr "{0} til {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62566,16 +62604,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62583,7 +62621,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62591,7 +62629,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62625,7 +62663,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62659,12 +62697,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62696,6 +62743,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62801,27 +62852,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62837,7 +62884,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62849,7 +62896,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62861,32 +62908,7 @@ msgstr "" msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/de.po b/erpnext/locale/de.po index 9edb848d4b7..aca9d5e95b5 100644 --- a/erpnext/locale/de.po +++ b/erpnext/locale/de.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-23 19:26\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: de_DE\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "\"Ist Anlagevermögen\" kann nicht deaktiviert werden, da Anlagebuchung msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" für \"SN-01\" bis \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Auf Lager" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Ben. Artikel" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "Mehrere Aufträge (je Kunde) mit derselben Bestellnummer erlauben" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "„Basierend auf“ und „Gruppieren nach“ dürfen nicht identisch sein" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "\"Von-Datum\" muss nach \"Bis-Datum\" liegen" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "„Hat Seriennummer“ kann für Artikel ohne Lagerhaltung nicht aktiviert werden" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "'Inspektion vor der Auslieferung erforderlich' wurde für den Artikel {0} deaktiviert, es ist nicht erforderlich, die Qualitätsprüfung zu erstellen" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "'Inspektion vor dem Kauf erforderlich' wurde für den Artikel {0} deaktiviert, es ist nicht erforderlich, die Qualitätsprüfung zu erstellen" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "\"Eröffnung\"" @@ -326,13 +317,13 @@ msgstr "\"Eröffnung\"" msgid "'To Date' is required" msgstr "\"Bis-Datum\" ist erforderlich," -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "„Bis Paket-Nr.' darf nicht kleiner als „Von Paket Nr.“ sein" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "\"Lager aktualisieren\" kann nicht ausgewählt werden, da Artikel nicht über {0} geliefert wurden" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "über 90" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "Asset kann nicht erstellt werden.

                    Sie versuchen, {0} Asset(s) aus {2} {3} zu erstellen.
                    Es wurden jedoch nur {1} Artikel eingekauft und {4} Asset(s) existieren bereits für {5}." @@ -826,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Zahlungsbeleg erforderlich für Zeile(n): {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Folgende Artikel können nicht überberechnet werden:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Folgende {0}s gehören nicht zu Firma {1}:

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1055,9 +1046,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Eine Kundengruppe mit dem gleichen Namen existiert bereits. Bitte den Kundennamen ändern oder die Kundengruppe umbenennen" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1067,9 +1058,9 @@ msgstr "Sie können eine Liste der arbeitsfreien Tage hinzufügen, um die Zählu msgid "A Lead requires either a person's name or an organization's name" msgstr "Ein Interessent benötigt entweder den Namen einer Person oder den Namen einer Organisation" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Ein Packzettel kann nur für Entwürfe von Lieferscheinen erstellt werden." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1085,7 +1076,7 @@ msgstr "Eine Preisliste ist eine Sammlung von Artikelpreisen, entweder für den msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Ein Produkt oder eine Dienstleistung, die gekauft, verkauft oder auf Lager gehalten wird." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Ein Abstimmungsauftrag {0} wird für dieselben Filter ausgeführt. Kann gerade nicht erneut gestartet werden" @@ -1118,7 +1109,7 @@ msgstr "Ein Fahrer muss zum Buchen angegeben werden." msgid "A logical Warehouse against which stock entries are made." msgstr "Ein logisches Lager, gegen das Bestandsbuchungen vorgenommen werden." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "Beim Erstellen von Seriennummern ist ein Namensreihen-Konflikt aufgetreten. Bitte ändern Sie die Namensreihe für den Artikel {0}." @@ -1294,7 +1285,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Angenommene Menge in Lagereinheit" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Angenommene Menge" @@ -1325,12 +1316,16 @@ msgstr "Zugriffsschlüssel" msgid "Access Key is required for Service Provider: {0}" msgstr "Zugangsschlüssel ist erforderlich für Dienstanbieter: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "Gemäß CEFACT/ICG/2010/IC013 oder CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "Laut Stückliste {0} fehlt in der Lagerbuchung die Position '{1}'." @@ -1583,7 +1578,7 @@ msgstr "Konto ist obligatorisch, um Zahlungseingänge zu erhalten" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Konto nicht gefunden" @@ -1713,11 +1708,11 @@ msgstr "Konto: {0} ist in Bearbeitung und kann vom Buchungssatz nicht akt msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Konto: {0} kann nur über Lagertransaktionen aktualisiert werden" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Konto {0} kann nicht in Zahlung verwendet werden" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Konto: {0} mit Währung: {1} kann nicht ausgewählt werden" @@ -1996,8 +1991,8 @@ msgstr "Filter für Buchhaltungsdimensionen" msgid "Accounting Entries" msgstr "Buchungen" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Buchungseintrag für Vermögenswert" @@ -2022,8 +2017,8 @@ msgstr "Buchhaltungseintrag für Service" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2071,7 +2066,11 @@ msgstr "Buchhaltung Onboarding" msgid "Accounting Period" msgstr "Abrechnungszeitraum" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Abrechnungszeitraum überschneidet sich mit {0}" @@ -2269,8 +2268,8 @@ msgstr "Konto für kumulierte Abschreibung (Wertberichtigung)" msgid "Accumulated Depreciation Amount" msgstr "Aufgelaufener Abschreibungsbetrag" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Kumulierte Abschreibungen zum" @@ -2498,7 +2497,7 @@ msgstr "Ist-Saldomenge" msgid "Actual Batch Quantity" msgstr "Ist-Chargenmenge" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Ist-Kosten" @@ -2508,7 +2507,7 @@ msgstr "Ist-Kosten" msgid "Actual Date" msgstr "Ist-Datum" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2658,8 +2657,8 @@ msgstr "IST- Zeit in Stunden (aus Zeiterfassung)" msgid "Actual qty in stock" msgstr "Ist-Menge auf Lager" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Tatsächliche Steuerart kann nicht im Artikelpreis in Zeile {0} beinhaltet sein" @@ -2824,10 +2823,6 @@ msgstr "Serien-/Chargennummer hinzufügen" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Serien-/Chargennummer hinzufügen (Abgelehnte Menge)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Bestand hinzufügen" @@ -2926,13 +2921,13 @@ msgstr "Hinzugefügt von" msgid "Added On" msgstr "Hinzugefügt am" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Lieferantenrolle zu Benutzer {0} hinzugefügt." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Rolle {1} zu Benutzer {0} hinzugefügt." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3074,7 +3069,7 @@ msgstr "Zusätzlicher Rabattbetrag" msgid "Additional Discount Amount (Company Currency)" msgstr "Zusätzlicher Rabattbetrag (Unternehmenswährung)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "Der zusätzliche Rabattbetrag ({discount_amount}) darf die Summe vor diesem Rabatt ({total_before_discount}) nicht überschreiten" @@ -3193,16 +3188,8 @@ msgid "Additional Transferred Qty" msgstr "Zusätzlich übertragene Menge" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "Zusätzlich übertragene Menge {0}\n" -"\t\t\t\t\tkann nicht größer als {1} sein.\n" -"\t\t\t\t\tUm dies zu beheben, erhöhen Sie den Prozentwert\n" -"\t\t\t\t\tdes Feldes 'Zusätzliche Rohmaterialien zu WIP übertragen'\n" -"\t\t\t\t\tin den Fertigungseinstellungen." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3466,7 +3453,7 @@ msgstr "Vorschuss-Belegart" msgid "Advance amount" msgstr "Anzahlungsbetrag" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Anzahlung kann nicht größer sein als {0} {1}" @@ -3535,7 +3522,7 @@ msgstr "Zu" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Gegenkonto" @@ -3655,7 +3642,7 @@ msgstr "Gegen Lieferantenrechnung {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Gegenbeleg" @@ -3679,7 +3666,7 @@ msgstr "Belegnr." #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Gegen Belegart" @@ -3793,6 +3780,13 @@ msgstr "Fluggesellschaft" msgid "Algorithm" msgstr "Algorithmus" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3969,7 +3963,7 @@ msgstr "" msgid "All items are already requested" msgstr "Alle Artikel sind bereits angefordert" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Alle Artikel wurden bereits in Rechnung gestellt / zurückgesandt" @@ -3981,7 +3975,7 @@ msgstr "Alle Artikel sind bereits eingegangen" msgid "All items have already been transferred for this Work Order." msgstr "Alle Positionen wurden bereits für diesen Arbeitsauftrag übertragen." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Für alle Artikel in diesem Dokument ist bereits eine Qualitätsprüfung verknüpft." @@ -4000,16 +3994,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Alle Kommentare und E-Mails werden von einem Dokument zu einem anderen neu erstellten Dokument kopiert (Lead -> Opportunity -> Quotation) über alle CRM-Dokumente." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Alle Artikel wurden bereits zurückgegeben." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Alle benötigten Artikel (Rohmaterial) werden aus der Stückliste geholt und in diese Tabelle eingetragen. Hier können Sie auch das Quelllager für jeden Artikel ändern. Und während der Produktion können Sie das übertragene Rohmaterial in dieser Tabelle verfolgen." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Alle diese Artikel wurden bereits in Rechnung gestellt / zurückgesandt" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4032,7 +4026,7 @@ msgstr "Zuweisungen automatisch zuordnen (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Zahlungsbetrag zuweisen" @@ -4042,7 +4036,7 @@ msgstr "Zahlungsbetrag zuweisen" msgid "Allocate Payment Based On Payment Terms" msgstr "Ordnen Sie die Zahlung basierend auf den Zahlungsbedingungen zu" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Zahlungsanfrage zuweisen" @@ -4072,7 +4066,7 @@ msgstr "Zugewiesen" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4155,8 +4149,8 @@ msgid "Allow Alternative Item" msgstr "Alternative Artikel zulassen" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "„Alternative Artikel zulassen“ muss für Artikel {} aktiviert sein" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4263,7 +4257,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Umbenennen von Attributwert zulassen" @@ -4544,14 +4538,16 @@ msgstr "Erlaubte Artikel" msgid "Allowed To Transact With" msgstr "Erlaubt Transaktionen mit" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "Zulässige Hauptrollen sind „Kunde“ und „Lieferant“. Bitte wählen Sie nur eine dieser Rollen aus." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4584,10 +4580,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "Ermöglicht Benutzern, Lieferantenangebote mit der Menge Null zu übermitteln. Nützlich, wenn Preise festgelegt sind, Mengen aber nicht. Z.B. Rahmenverträge." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4595,10 +4591,6 @@ msgstr "" msgid "Already Picked" msgstr "Bereits kommissioniert" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Es existiert bereits ein Datensatz für den Artikel {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Im Standardprofil {0} für den Benutzer {1} ist der Standard bereits festgelegt, standardmäßig deaktiviert" @@ -4614,12 +4606,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Alternativer Artikel" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4824,7 +4816,7 @@ msgstr "Immer fragen" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5050,12 +5042,12 @@ msgstr "Artikelgruppen bieten die Möglichkeit, Artikel nach Typ zu klassifizier msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Beim Umbuchen der Artikelbewertung über {0} ist ein Fehler aufgetreten" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Während des Aktualisierungsvorgangs ist ein Fehler aufgetreten" @@ -5269,7 +5261,7 @@ msgstr "Angewandter Gutscheincode" msgid "Applied on each reading." msgstr "Wird bei jedem Ablesen angewendet." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Angewandte Einlagerungsregeln." @@ -5446,10 +5438,6 @@ msgstr "Terminbuchungs-Slots" msgid "Appointment Confirmation" msgstr "Terminbestätigung" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Termin erfolgreich erstellt" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5475,6 +5463,10 @@ msgstr "Terminplanung wurde für diese Instanz deaktiviert" msgid "Appointment With" msgstr "Termin mit" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Ein Termin wurde vereinbart. Es wurde jedoch kein Interessent gefunden. Bitte prüfen Sie die E-Mail zur Bestätigung" @@ -5516,6 +5508,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "Sind Sie sicher, dass Sie alle Demodaten löschen möchten?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "Sind Sie sicher, dass Sie diesen Artikel löschen möchten?" @@ -5598,18 +5599,18 @@ msgstr "Wenn das Feld {0} aktiviert ist, sollte der Wert des Feldes {1} größer msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Da es bereits gebuchte Transaktionen für den Artikel {0} gibt, können Sie den Wert von {1} nicht ändern." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "Da es reservierte Bestände gibt, können Sie {0} nicht deaktivieren." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Da es genügend Artikel für die Unterbaugruppe gibt, ist ein Arbeitsauftrag für das Lager {0} nicht erforderlich." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Da genügend Rohstoffe vorhanden sind, ist für Warehouse {0} keine Materialanforderung erforderlich." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5648,7 +5649,7 @@ msgstr "Montageartikel" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5720,7 +5721,7 @@ msgstr "Lagerartikel für Vermögensgegenstand-Aktivierung" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5886,7 +5887,7 @@ msgstr "Vermögensbewegungsgegenstand" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6018,7 +6019,7 @@ msgstr "Sachanlagenwertanalyse" msgid "Asset cancelled" msgstr "Vermögensgegenstand storniert" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Vermögenswert kann nicht rückgängig gemacht werden, da es ohnehin schon {0} ist" @@ -6034,7 +6035,7 @@ msgstr "Vermögensgegenstand aktiviert, nachdem die Vermögensgegenstand-Aktivie msgid "Asset created" msgstr "Vermögensgegenstand erstellt" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Vermögensgegenstand, der nach der Abspaltung von Vermögensgegenstand {0} erstellt wurde" @@ -6087,7 +6088,7 @@ msgstr "Vermögensgegenstand gebucht" msgid "Asset transferred to Location {0}" msgstr "Vermögensgegenstand an Standort {0} übertragen" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Vermögensgegenstand nach der Abspaltung in Vermögensgegenstand {0} aktualisiert" @@ -6165,7 +6166,7 @@ msgstr "Der Wert des Vermögensgegenstandes wurde nach der Buchung der Vermögen #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6186,7 +6187,7 @@ msgstr "Assets nicht für {item_code} erstellt. Sie müssen das Asset manuell er msgid "Assets {assets_link} created for {item_code}" msgstr "Vermögensgegenstände {assets_link} erstellt für {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Aufgabe an Mitarbeiter zuweisen" @@ -6196,6 +6197,11 @@ msgstr "Aufgabe an Mitarbeiter zuweisen" msgid "Assign to Name" msgstr "Dem Namen zuweisen" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6214,19 +6220,23 @@ msgstr "In Zeile #{0}: Die entnommene Menge {1} für den Artikel {2} ist größe msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "In Zeile #{0}: Die kommissionierte Menge {1} für den Artikel {2} ist größer als der verfügbare Bestand {3} im Lager {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "In Zeile {0}: Das Serien- und Chargenbündel {1} muss den Dokumentstatus 1 haben und nicht 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "Mindestens ein Konto mit Wechselkursgewinnen oder -verlusten ist erforderlich" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "Es muss mindestens ein Vermögensgegenstand ausgewählt werden." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "Es muss mindestens eine Rechnung ausgewählt werden." @@ -6247,6 +6257,10 @@ msgstr "Es muss mindestens eines der zutreffenden Module ausgewählt werden" msgid "At least one of the Selling or Buying must be selected" msgstr "Mindestens eine der Optionen „Verkauf“ oder „Einkauf“ muss ausgewählt werden" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "Mindestens ein Rohmaterial-Artikel muss in der Lagerbuchung für den Typ {0} vorhanden sein" @@ -6267,7 +6281,7 @@ msgstr "In Zeile {0}: Die Sequenz-ID {1} darf nicht kleiner sein als die vorheri msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "In Zeile {0}: Chargennummer ist obligatorisch für Artikel {1}" @@ -6275,26 +6289,22 @@ msgstr "In Zeile {0}: Chargennummer ist obligatorisch für Artikel {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "In Zeile {0}: Übergeordnete Zeilennummer kann für Element {1} nicht festgelegt werden" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "In der Zeile {0}: Menge ist obligatorisch für die Charge {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "In Zeile {0}: Seriennummer ist obligatorisch für Artikel {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "In Zeile {0}: Serien- und Chargenbündel {1} wurde bereits erstellt. Bitte entfernen Sie die Werte aus den Feldern Seriennummer oder Chargennummer." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "In Zeile {0}: übergeordnete Zeilennummer für Element {1} festlegen" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "Mindestens ein Rohmaterial für Fertigprodukt {0} sollte vom Kunden bereitgestellt werden." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6506,7 +6516,7 @@ msgstr "Der automatische Abgleich von Zahlungen wurde deaktiviert. Aktivieren Si msgid "Auto Repeat Detail" msgstr "Auto-Wiederholung Detail" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "Fehler bei automatischen Steuereinstellungen" @@ -6567,7 +6577,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Automatisches Wiederholungsdokument aktualisiert" @@ -6692,7 +6702,7 @@ msgstr "Zeitpunkt der Einsatzbereitschaft" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6788,7 +6798,7 @@ msgstr "Verfügbar für das Nutzungsdatum ist erforderlich" msgid "Available {0}" msgstr "Verfügbar {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Das für die Verwendung verfügbare Datum sollte nach dem Kaufdatum liegen" @@ -6906,7 +6916,7 @@ msgstr "BIN Menge" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6925,8 +6935,8 @@ msgid "BOM 1" msgstr "Stückliste 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "Stückliste 1 {0} und Stückliste 2 {1} sollten nicht identisch sein" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6940,7 +6950,7 @@ msgstr "Stückliste 2" msgid "BOM Comparison Tool" msgstr "Stücklisten-Vergleichstool" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7071,7 +7081,7 @@ msgstr "Stücklisten-Vorgang" msgid "BOM Operations Time" msgstr "Stücklistenbetriebszeit" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7092,7 +7102,7 @@ msgstr "Stücklisten-Suche" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "Stücklisten-Sekundärartikel" @@ -7144,10 +7154,6 @@ msgstr "Stücklisten Update Tool Protokoll mit gepflegtem Auftragsstatus" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Stücklistenaktualisierung bereits im Gange. Bitte warten Sie, bis {0} abgeschlossen ist." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "Die Stücklistenaktualisierung befindet sich in der Warteschlange und kann einige Minuten dauern. Überprüfen Sie {0} auf Fortschritt." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7186,15 +7192,19 @@ msgstr "Stücklistenrekursion: {0} darf nicht untergeordnet zu {1} sein" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Stücklistenrekursion: {1} kann nicht über- oder untergeordnet von {0} sein" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "Stückliste {0} gehört nicht zum Artikel {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "Stückliste {0} muss aktiv sein" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "Stückliste {0} muss gebucht werden" @@ -7275,7 +7285,7 @@ msgstr "Saldo" msgid "Balance (Dr - Cr)" msgstr "Saldo (S - H)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Saldo ({0})" @@ -7345,6 +7355,10 @@ msgstr "Bilanz-Abschlusssaldo" msgid "Balance Sheet Summary" msgstr "Bilanzübersicht" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Bestandsmenge" @@ -7405,7 +7419,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7505,8 +7519,8 @@ msgid "Bank Account Type" msgstr "Bankkontotyp" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "Bankkonto {} in Banktransaktion {} stimmt nicht mit Bankkonto {} überein" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7750,7 +7764,7 @@ msgstr "Banktransaktion {0} aktualisiert" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Bankname {0} ungültig" @@ -7762,7 +7776,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Das Bankkonto {0} ist bereits vorhanden und konnte nicht erneut erstellt werden" @@ -7774,7 +7788,7 @@ msgstr "Bankkonten hinzugefügt" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Fehler beim Erstellen der Banküberweisung" @@ -8050,8 +8064,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8082,15 +8096,15 @@ msgstr "" msgid "Batch No" msgstr "Chargennummer" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Chargennummer ist obligatorisch" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Charge Nr. {0} existiert nicht" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Die Chargennummer {0} ist mit dem Artikel {1} verknüpft, der eine Seriennummer hat. Bitte scannen Sie stattdessen die Seriennummer." @@ -8098,6 +8112,10 @@ msgstr "Die Chargennummer {0} ist mit dem Artikel {1} verknüpft, der eine Serie msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Charge Nr. {0} ist im Original {1} {2} nicht vorhanden, daher können Sie sie nicht gegen {1} {2} zurückgeben" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8163,9 +8181,9 @@ msgstr "Chargen-Einheit" msgid "Batch and Serial No" msgstr "Chargen- und Seriennummer" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Für Artikel {} wurde keine Charge erstellt, da er keinen Nummernkreis für Chargen vorgibt." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8277,7 +8295,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8752,8 +8770,8 @@ msgid "Booked Fixed Asset" msgstr "Gebuchtes Anlagevermögen" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "Die Bücher wurden bis zu dem am {0} endenden Zeitraum geschlossen" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8980,8 +8998,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Budget kann nicht einem Gruppenkonto {0} zugeordnet werden" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Budget kann {0} nicht zugewiesen werden, da es kein Ertrags- oder Aufwandskonto ist" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8998,7 +9016,7 @@ msgstr "Pufferzeit" msgid "Buffered Cursor" msgstr "Gepufferter Cursor" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Bereit, gebaut zu werden?" @@ -9006,7 +9024,7 @@ msgstr "Bereit, gebaut zu werden?" msgid "Build Tree" msgstr "Baum erstellen" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Herstellbare Menge" @@ -9333,6 +9351,10 @@ msgstr "Berechneter Stand des Bankauszugs" msgid "Calculated Discount Mismatch" msgstr "Berechnete Rabattabweichung" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9504,7 +9526,7 @@ msgstr "Kampagne {0} nicht gefunden" msgid "Can be approved by {0}" msgstr "Kann von {0} genehmigt werden" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "Der Arbeitsauftrag kann nicht geschlossen werden, da sich {0} Jobkarten im Status „In Bearbeitung“ befinden." @@ -9533,21 +9555,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Kann nicht nach Belegnummer filtern, wenn nach Beleg gruppiert" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Zahlung kann nur zu einem noch nicht abgerechneten Beleg vom Typ {0} erstellt werden" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Kann sich nur auf eine Zeile beziehen, wenn die Berechnungsart der Kosten entweder \"auf vorherige Zeilensumme\" oder \"auf vorherigen Zeilenbetrag\" ist" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "Die Bewertungsmethode kann nicht geändert werden, da es Transaktionen gegen einige Artikel gibt, die keine eigene Bewertungsmethode haben" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Materialkontrolle {0} stornieren vor Abbruch dieses Garantieantrags" @@ -9576,7 +9601,7 @@ msgstr "" msgid "Cancelation Date" msgstr "Stornierungsdatum" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9584,11 +9609,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "Kassierer kann nicht zugewiesen werden" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Die Ankunftszeit kann nicht berechnet werden, da die Adresse des Fahrers fehlt." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "Einstellung des Bestandskontos kann nicht geändert werden" @@ -9603,10 +9623,6 @@ msgstr "Retoure kann nicht erstellt werden" msgid "Cannot Merge" msgstr "Zusammenführung nicht möglich" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Route kann nicht optimiert werden, da die Fahreradresse fehlt." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Mitarbeiter kann nicht entlastet werden" @@ -9631,6 +9647,11 @@ msgstr "Quellensteuer (TDS) kann nicht auf mehrere Parteien in einer Buchung ang msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Kann keine Anlageposition sein, wenn das Stock Ledger erstellt wird." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "Abschreibungsplan {0} kann nicht storniert werden, da er eine Entwurfs-Journalbuchung {1} hat." @@ -9640,14 +9661,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "POS-Abschlusseintrag kann nicht storniert werden" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "Bestandsreservierungseintrag {0} kann nicht storniert werden, da er im Arbeitsauftrag {1} verwendet wird. Bitte stornieren Sie zuerst den Arbeitsauftrag oder heben Sie die Bestandsreservierung auf." +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "Kann nicht storniert werden, da die Verarbeitung der stornierten Dokumente noch nicht abgeschlossen ist." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Kann nicht storniert werden, da die gebuchte Lagerbewegung {0} existiert" @@ -9655,7 +9676,7 @@ msgstr "Kann nicht storniert werden, da die gebuchte Lagerbewegung {0} existiert msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "Sie können die Transaktion nicht stornieren. Die Umbuchung der Artikelbewertung bei der Buchung ist noch nicht abgeschlossen." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "Diese Fertigungslagerbuchung kann nicht storniert werden, da die Menge des produzierten Fertigprodukts nicht geringer sein kann als die gelieferte Menge in der verknüpften Fremdvergabe-Eingangsbestellung." @@ -9667,7 +9688,7 @@ msgstr "Dieses Dokument kann nicht storniert werden, da es mit der gebuchten Anp msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Dieses Dokument kann nicht storniert werden, da es mit dem gebuchten Vermögensgegenstand {asset_link} verknüpft ist. Bitte stornieren Sie den Vermögensgegenstand, um fortzufahren." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Die Transaktion für den abgeschlossenen Arbeitsauftrag kann nicht storniert werden." @@ -9692,8 +9713,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Die Standardwährung des Unternehmens kann nicht geändern werden, weil es bestehende Transaktionen gibt. Transaktionen müssen abgebrochen werden, um die Standardwährung zu ändern." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "Die Aufgabe {0} kann nicht abgeschlossen werden, da die von ihr abhängige Aufgabe {1} nicht abgeschlossen / storniert ist." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9719,7 +9740,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "Für in der Zukunft datierte Kaufbelege kann keine Bestandsreservierung erstellt werden." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Es kann keine Pickliste für den Auftrag {0} erstellt werden, da dieser einen reservierten Bestand hat. Bitte heben Sie die Reservierung des Bestands auf, um eine Pickliste zu erstellen." @@ -9728,6 +9749,10 @@ msgstr "Es kann keine Pickliste für den Auftrag {0} erstellt werden, da dieser msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Es kann nicht auf deaktivierte Konten gebucht werden: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "Rückgabe für konsolidierte Rechnung {0} kann nicht erstellt werden." @@ -9745,7 +9770,7 @@ msgstr "Kann nicht als verloren deklariert werden, da bereits ein Angebot erstel msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Abzug nicht möglich, wenn Kategorie \"Wertbestimmtung\" oder \"Wertbestimmung und Summe\" ist" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Zeile „Wechselkursgewinn/-verlust“ kann nicht gelöscht werden" @@ -9758,7 +9783,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Ein bestellter Artikel kann nicht gelöscht werden" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "Geschützter Kern-DocType kann nicht gelöscht werden: {0}" @@ -9790,7 +9815,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "Artikelbezogenes Bestandskonto kann nicht aktiviert werden, da für das Unternehmen {0} bereits Lagerbucheinträge mit lagerbezogenem Bestandskonto vorhanden sind. Bitte stornieren Sie zuerst die Lagertransaktionen und versuchen Sie es erneut." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9815,19 +9840,23 @@ msgstr "Artikel mit diesem Barcode kann nicht gefunden werden" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "Es wurde kein Standardlager für den Artikel {0} gefunden. Bitte legen Sie eines im Artikelstamm oder in den Lagereinstellungen fest." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "{0} '{1}' kann nicht mit '{2}' zusammengeführt werden, da für das Unternehmen '{3}' bereits Buchungen in unterschiedlichen Währungen vorhanden sind." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "Es können nicht mehr Artikel {0} als die Auftragsmenge {1} {2} produziert werden" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "Kann nicht mehr Artikel für {0} produzieren" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "Es können nicht mehr als {0} Artikel für {1} produziert werden" @@ -9839,12 +9868,16 @@ msgstr "Negativer Gesamtbetrag kann nicht vom Kunden empfangen werden" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "Die Menge kann nicht unter die bestellte oder eingekaufte Menge reduziert werden" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Für diese Berechnungsart kann keine Zeilennummern zugeschrieben werden, die größer oder gleich der aktuellen Zeilennummer ist" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "Link-Token für Update kann nicht abgerufen werden. Prüfen Sie das Fehlerprotokoll für weitere Informationen" @@ -9853,19 +9886,23 @@ msgstr "Link-Token für Update kann nicht abgerufen werden. Prüfen Sie das Fehl msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Link-Token kann nicht abgerufen werden. Prüfen Sie das Fehlerprotokoll für weitere Informationen" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "Eine Kundengruppe vom Typ Gruppe kann nicht ausgewählt werden. Bitte wählen Sie eine Kundengruppe ohne Gruppentyp." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Die Berechnungsart kann für die erste Zeile nicht auf „Bezogen auf Betrag der vorhergenden Zeile“ oder auf „Bezogen auf Gesamtbetrag der vorhergenden Zeilen“ gesetzt werden" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Kann nicht als verloren gekennzeichnet werden, da ein Auftrag dazu existiert." @@ -10292,9 +10329,9 @@ msgstr "Ändern Sie den Kontotyp in "Forderung" oder wählen Sie ein a msgid "Change this date manually to setup the next synchronization start date" msgstr "Ändern Sie dieses Datum manuell, um das nächste Startdatum für die Synchronisierung festzulegen" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "Kundenname in „{}“ geändert, da „{}“ bereits existiert." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10320,8 +10357,8 @@ msgstr "Die Änderung der Bewertungsmethode auf gleitenden Durchschnitt wirkt si msgid "Channel Partner" msgstr "Vertriebspartner" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "Kosten für den Typ „Tatsächlich“ in Zeile {0} können nicht in den Artikelpreis oder den bezahlen Betrag einfließen" @@ -10515,7 +10552,7 @@ msgstr "Scheck Breite" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Scheck-/ Referenzdatum" @@ -10573,7 +10610,7 @@ msgstr "Untergeordneter Dokumentname" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Zeilenreferenz" @@ -10583,8 +10620,8 @@ msgid "Child Table Not Allowed" msgstr "Untergeordnete Tabelle nicht erlaubt" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Für diesen Vorgang existiert ein untergeordneter Vorgang. Sie können diesen daher nicht löschen." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10762,7 +10799,7 @@ msgstr "Darlehen schließen" msgid "Close Replied Opportunity After Days" msgstr "Beantwortete Chance nach Tagen schließen" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Schließen Sie die Kasse" @@ -10776,7 +10813,7 @@ msgstr "Geschlossenes Dokument" msgid "Closed Documents" msgstr "Geschlossene Dokumente" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Ein geschlossener Arbeitsauftrag kann nicht gestoppt oder erneut geöffnet werden" @@ -11006,9 +11043,9 @@ msgstr "Provision" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11445,7 +11482,7 @@ msgstr "Firmen" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11515,7 +11552,7 @@ msgstr "Firmen" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11555,10 +11592,6 @@ msgstr "Unternehmen" msgid "Company Abbreviation" msgstr "Unternehmenskürzel" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Firmenkürzel darf nicht mehr als 5 Zeichen haben" @@ -11723,7 +11756,7 @@ msgstr "Eigene Lieferadresse" msgid "Company Tax ID" msgstr "Eigene Steuernummer" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "Unternehmen und Buchungsdatum sind obligatorisch" @@ -11767,12 +11800,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "Name des Unternehmensverknüpfungsfeldes zur Filterung (optional – leer lassen, um alle Datensätze zu löschen)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Firma nicht gleich" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "Das Unternehmen von Anlage {0} und Eingangsbeleg {1} stimmt nicht überein." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11810,6 +11843,14 @@ msgstr "Unternehmen {0} mehrfach hinzugefügt" msgid "Company {0} does not exist" msgstr "Unternehmen {0} existiert nicht" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Unternehmen {0} wird mehr als einmal hinzugefügt" @@ -11818,14 +11859,6 @@ msgstr "Unternehmen {0} wird mehr als einmal hinzugefügt" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "Unternehmen {} existiert noch nicht. Einrichtung der Steuern wurde abgebrochen." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "Unternehmen {} stimmt nicht mit POS-Profil Unternehmen {} überein" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11847,7 +11880,7 @@ msgstr "Name des Mitbewerbers" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Mitbewerber" @@ -12291,8 +12324,8 @@ msgid "Consumed Qty" msgstr "Verbrauchte Anzahl" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "Die verbrauchte Menge kann nicht größer sein als die reservierte Menge für Artikel {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12607,7 +12640,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12907,7 +12940,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12932,7 +12965,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12990,7 +13023,7 @@ msgstr "Kostenstellen-Nummer" msgid "Cost Center and Budgeting" msgstr "Kostenstelle und Budgetierung" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "Die Kostenstelle für Artikelzeilen wurde auf {0} aktualisiert" @@ -13002,7 +13035,7 @@ msgstr "Kostenstelle ist Teil der Kostenstellenzuordnung und kann daher nicht in msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Kostenstelle wird in Zeile {0} der Steuertabelle für Typ {1} gebraucht" @@ -13024,12 +13057,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "Kostenstelle {0} kann nicht für die Zuordnung verwendet werden, da sie in anderen Zuordnungsdatensätzen als Hauptkostenstelle verwendet wird." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Kostenstelle {} gehört nicht zum Unternehmen {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "Kostenstelle {} ist eine Gruppenkostenstelle und Gruppenkostenstellen können nicht in Transaktionen verwendet werden" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13153,14 +13186,14 @@ msgid "Costing and Billing" msgstr "Kalkulation und Abrechnung" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "Die Felder für Kalkulation und Abrechnung wurden aktualisiert" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Demodaten konnten nicht gelöscht werden" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Der Kunde konnte aufgrund der folgenden fehlenden Pflichtfelder nicht automatisch erstellt werden:" @@ -13172,7 +13205,7 @@ msgstr "Gutschrift konnte nicht automatisch erstellt werden, bitte deaktivieren msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Konnte das Unternehmen für die Aktualisierung der Bankkonten nicht finden" @@ -13182,8 +13215,8 @@ msgstr "Es konnte keine passende Schicht gefunden werden, die der Differenz ents #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "Konnte keinen Pfad finden für " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13206,7 +13239,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Konnte die Kriterien-Score-Funktion für {0} nicht lösen. Stellen Sie sicher, dass die Formel gültig ist." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Die gewichtete Notenfunktion konnte nicht gelöst werden. Stellen Sie sicher, dass die Formel gültig ist." @@ -13436,10 +13469,6 @@ msgstr "Neuen Kunden erstellen" msgid "Create New Lead" msgstr "Neuen Interessenten erstellen" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13458,7 +13487,7 @@ msgstr "Vorgänge erstellen" msgid "Create Opportunity" msgstr "Chance erstellen" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "POS-Eröffnungseintrag erstellen" @@ -13473,7 +13502,7 @@ msgstr "Zahlungseintrag erstellen" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "Zahlungseintrag für konsolidierte POS-Rechnungen erstellen." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Zahlungsanforderung erstellen" @@ -13701,7 +13730,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "Eine Variante mit dem Vorlagenbild erstellen." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Erstellen Sie eine eingehende Lagertransaktion für den Artikel." @@ -13735,7 +13764,7 @@ msgstr "{0} {1} erstellen?" msgid "Created By Migration" msgstr "Durch Migration erstellt" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "Erstellte {0} Bewertungsliste für {1} zwischen:" @@ -13830,7 +13859,7 @@ msgstr "Benutzer erstellen..." msgid "Creating demo data" msgstr "Demodaten werden erstellt" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "{} Aus {} {} erstellen" @@ -13840,17 +13869,17 @@ msgstr "{} Aus {} {} erstellen" msgid "Creation" msgstr "Erstellung" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "Erstellung erfolgreich: {1}" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Die Erstellung von {0} ist fehlgeschlagen.\n" "\t\t\t\tÜberprüfen Sie Massentransaktionsprotokoll" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Erstellung von {0} teilweise erfolgreich.\n" @@ -13885,11 +13914,11 @@ msgstr "Erstellung von {0} teilweise erfolgreich.\n" msgid "Credit" msgstr "Haben" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Haben (Transaktion)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Guthaben ({0})" @@ -13970,7 +13999,7 @@ msgstr "Zahlungsziel" msgid "Credit Limit" msgstr "Kreditlimit" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Kreditlimit überschritten" @@ -14050,16 +14079,16 @@ msgstr "Gutschreiben auf" msgid "Credit in Company Currency" msgstr "(Gut)Haben in Unternehmenswährung" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Das Kreditlimit wurde für den Kunden {0} ({1} / {2}) überschritten." -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Kreditlimit für das Unternehmen ist bereits definiert {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Kreditlimit für Kunde erreicht {0}" @@ -14118,12 +14147,12 @@ msgstr "Kriterieneinstellung" msgid "Criteria Weight" msgstr "Kriterien Gewicht" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Die Gewichtung der Kriterien muss 100 % ergeben" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Das Cron-Intervall sollte zwischen 1 und 59 Minuten liegen" @@ -14246,7 +14275,7 @@ msgstr "Währung und Preisliste" msgid "Currency can not be changed after making entries using some other currency" msgstr "Die Währung kann nicht geändert werden, wenn Buchungen in einer anderen Währung getätigt wurden" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "Währungsfilter werden im benutzerdefinierten Finanzbericht derzeit nicht unterstützt." @@ -14311,8 +14340,8 @@ msgid "Current BOM" msgstr "Aktuelle Stückliste" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "Aktuelle Stückliste und neue Stückliste können nicht identisch sein" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14374,10 +14403,6 @@ msgstr "Aktuelles Serien-/Chargen-Bündel" msgid "Current Serial No" msgstr "Aktuelle Seriennummer" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15208,7 +15233,7 @@ msgstr "D - E" msgid "DFS" msgstr "Tiefensuche" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Tägliche Projektzusammenfassung für {0}" @@ -15353,10 +15378,6 @@ msgstr "Zu verarbeitende Daten" msgid "Day Of Week" msgstr "Wochentag" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15463,11 +15484,11 @@ msgstr "Händler" msgid "Debit" msgstr "Soll" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Soll (Transaktion)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Soll ({0})" @@ -15629,7 +15650,7 @@ msgstr "Deziliter" msgid "Decimeter" msgstr "Dezimeter" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Für verloren erklären" @@ -16310,8 +16331,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "Lösche {0} und alle zugehörigen Common Code Dokumente..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Löschung im Gange!" @@ -16405,7 +16426,7 @@ msgstr "Gelieferte Artikel, die abgerechnet werden müssen" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16463,7 +16484,7 @@ msgstr "Lieferung" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16793,7 +16814,7 @@ msgstr "Abschreibung" msgid "Depreciation Amount" msgstr "Abschreibungsbetrag" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Abschreibungsbetrag in der Zeit" @@ -16809,7 +16830,7 @@ msgstr "Abschreibungen Datum" msgid "Depreciation Details" msgstr "Details zur Abschreibung" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Die Abschreibungen Ausgeschieden aufgrund der Veräußerung von Vermögenswerten" @@ -16879,7 +16900,7 @@ msgstr "Das Buchungsdatum der Abschreibung kann nicht vor dem Datum der Verfügb msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Abschreibungszeile {0}: Das Buchungsdatum der Abschreibung darf nicht vor dem Verfügbarkeitsdatum liegen" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Abschreibungszeile {0}: Der erwartete Wert nach der Nutzungsdauer muss größer oder gleich {1} sein" @@ -16908,11 +16929,11 @@ msgstr "Abschreibungsplan" msgid "Depreciation Schedule View" msgstr "Ansicht Abschreibungsplan" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "Für vollständig abgeschriebene Vermögensgegenstände kann keine Abschreibung berechnet werden" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "Abschreibung durch Umkehr eliminiert" @@ -16940,7 +16961,7 @@ msgstr "Designer" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Ausführlicher Grund" @@ -17043,12 +17064,12 @@ msgid "Difference Account in Items Table" msgstr "Differenzkonto in der Artikeltabelle" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "Differenzkonto muss ein Vermögens-/Verbindlichkeiten-Konto (Vorläufige Eröffnung) sein, da diese Lagerbewegung eine Eröffnungsbuchung ist" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Differenzkonto muss ein Vermögens-/Verbindlichkeiten-Konto sein, da dieser Lagerabgleich eine Eröffnungsbuchung ist" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17110,7 +17131,7 @@ msgstr "Differenzwert" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "Für jede Zeile können unterschiedliche „Quelllager“ und „Ziellager“ festgelegt werden." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Unterschiedliche Maßeinheiten für Artikel führen zu falschen Werten für das (Gesamt-)Nettogewicht. Es muss sicher gestellt sein, dass das Nettogewicht jedes einzelnen Artikels in der gleichen Maßeinheit angegeben ist." @@ -17283,7 +17304,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "Deaktiviertes Lager {0} kann für diese Transaktion nicht verwendet werden." @@ -17292,18 +17313,18 @@ msgstr "Deaktiviertes Lager {0} kann für diese Transaktion nicht verwendet werd msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Preisregeln deaktiviert, da es sich bei {} um eine interne Übertragung handelt" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "Bruttopreise deaktiviert, da es sich bei {} um eine interne Übertragung handelt" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17552,9 +17573,9 @@ msgstr "Der Rabatt kann nicht mehr als 100% betragen." msgid "Discount must be less than 100" msgstr "Discount muss kleiner als 100 sein" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Skonto von {} gemäß Zahlungsbedingung angewendet" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17918,11 +17939,11 @@ msgstr "Möchten Sie die Lagerbewegung buchen?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} existiert nicht" @@ -17960,22 +17981,6 @@ msgstr "Google Docs-Suche" msgid "Document Count" msgstr "Dokumentenanzahl" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "Dokumentnummer" @@ -18281,7 +18286,7 @@ msgstr "Projekt mit Aufgaben duplizieren" msgid "Duplicate Sales Invoices found" msgstr "Doppelte Ausgangsrechnungen gefunden" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "Fehler: Doppelte Seriennummer" @@ -18435,7 +18440,7 @@ msgstr "Kapazität bearbeiten" msgid "Edit Cart" msgstr "Warenkorb bearbeiten" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Bearbeiten nicht erlaubt" @@ -18659,8 +18664,8 @@ msgid "Email verification failed." msgstr "E-Mail-Verifizierung fehlgeschlagen." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "E-Mails in Warteschlange" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18847,7 +18852,7 @@ msgstr "Mitarbeiter" msgid "Empty" msgstr "Leer" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "Löschliste leeren" @@ -18856,7 +18861,7 @@ msgstr "Löschliste leeren" msgid "Ems(Pica)" msgstr "Ems (Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18935,6 +18940,12 @@ msgstr "Rabatte und Marge aktivieren" msgid "Enable European Access" msgstr "Ermöglichen Sie den europäischen Zugang" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19206,7 +19217,7 @@ msgstr "Endzeit" msgid "End Transit" msgstr "Transit beenden" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19329,7 +19340,7 @@ msgstr "Geben Sie die Telefonnummer des Kunden ein" msgid "Enter date to scrap asset" msgstr "Datum für die Verschrottung des Vermögensgegenstandes eingeben" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Geben Sie die Abschreibungsdetails ein" @@ -19385,6 +19396,10 @@ msgstr "Geben Sie die zu produzierende Menge ein. Rohmaterialartikel werden erst msgid "Enter {0} amount." msgstr "Geben Sie den Betrag {0} ein." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Unterhaltung & Freizeit" @@ -19420,7 +19435,7 @@ msgstr "Buchungstyp" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Eigenkapital" @@ -19444,7 +19459,7 @@ msgstr "ERG" msgid "Error Description" msgstr "Fehlerbeschreibung" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Fehler aufgetreten" @@ -19476,21 +19491,21 @@ msgstr "Fehler beim Buchen von Abschreibungsbuchungen" msgid "Error while processing deferred accounting for {0}" msgstr "Fehler bei der Verarbeitung der Rechnungsabgrenzung für {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Fehler beim Umbuchen der Artikelbewertung" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Fehler: Für diese Sachanlage sind bereits {0} Abschreibungszeiträume gebucht.\n" -"\t\t\t\t\tDas Datum „Abschreibungsbeginn“ muss mindestens {1} Zeiträume nach dem Datum „Zeitpunkt der Einsatzbereitschaft“ liegen.\n" -"\t\t\t\t\tBitte korrigieren Sie die Daten entsprechend." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Fehler: {0} ist ein Pflichtfeld" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "Fehler: {0}" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19504,7 +19519,7 @@ msgid "Estimated Arrival" msgstr "Voraussichtliche Ankunft" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Geschätzte Kosten" @@ -19554,7 +19569,7 @@ msgstr "Beispiel: ABCD. #####. Wenn die Serie gesetzt ist und die Chargennummer msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Beispiel: Seriennummer {0} reserviert in {1}." @@ -19835,7 +19850,7 @@ msgstr "Voraussichtlicher Stichtag" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19922,7 +19937,7 @@ msgstr "Erwartungswert nach der Ausmusterung" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Aufwand" @@ -20181,9 +20196,9 @@ msgstr "Fahrenheit" msgid "Failed Entries" msgstr "Fehlgeschlagene Einträge" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Fehler beim Authentifizieren des API-Schlüssels." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20380,7 +20395,7 @@ msgid "Fetching Sales Orders..." msgstr "Aufträge werden abgerufen..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Wechselkurse werden abgerufen ..." @@ -20418,15 +20433,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "Felder werden nur zum Zeitpunkt der Erstellung kopiert." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "Datei gehört nicht zu diesem Transaktionslöschprotokoll" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Datei nicht gefunden" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Datei nicht auf dem Server gefunden" @@ -20435,7 +20450,7 @@ msgstr "Datei nicht auf dem Server gefunden" msgid "File to Rename" msgstr "Datei, die umbenannt werden soll" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20594,11 +20609,11 @@ msgstr "Finanzberichtszeile" msgid "Financial Report Template" msgstr "Vorlage für Finanzbericht" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "Finanzberichtsvorlage {0} ist deaktiviert" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "Vorlage für Finanzbericht {0} nicht gefunden" @@ -20667,7 +20682,7 @@ msgstr "Fertigerzeugnis Stückliste" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20680,7 +20695,7 @@ msgstr "Fertigerzeugnisartikel" msgid "Finished Good Item Code" msgstr "Fertigerzeugnisartikel Code" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Fertigerzeugnisartikel Menge" @@ -20788,7 +20803,7 @@ msgstr "Fertigwarenlager" msgid "Finished Goods based Operating Cost" msgstr "Auf Fertigerzeugnissen basierende Betriebskosten" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Fertigerzeugnis {0} stimmt nicht mit dem Arbeitsauftrag {1} überein" @@ -20887,10 +20902,6 @@ msgstr "Das Steuerregime ist obligatorisch. Bitte legen Sie das Steuerregime im msgid "Fiscal Year" msgstr "Geschäftsjahr" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20904,11 +20915,8 @@ msgstr "Geschäftsjahr-Details" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Das Enddatum des Geschäftsjahres sollte ein Jahr nach dem Startdatum des Geschäftsjahres liegen" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Geschäftsjahr {0} existiert nicht" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Das Geschäftsjahr {0} existiert nicht" @@ -20941,7 +20949,7 @@ msgstr "Anlagevermögen" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21077,7 +21085,7 @@ msgstr "Fuß/Sekunde" msgid "For" msgstr "Für" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "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." @@ -21102,10 +21110,6 @@ msgstr "Für Unternehmen" msgid "For Item" msgstr "Für Artikel" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "Für Artikel {0} können nicht mehr als {1} ME gegen {2} {3} in Empfang genommen werden" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21172,12 +21176,12 @@ msgid "For Work Order" msgstr "Für Arbeitsauftrag" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Für eine Position {0} muss die Menge eine negative Zahl sein" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Für eine Position {0} muss die Menge eine positive Zahl sein" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21209,13 +21213,13 @@ msgstr "Für wie viel ausgegeben = 1 Treuepunkt" msgid "For individual supplier" msgstr "Für einzelne Anbieter" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "Für Artikel {0} wurden nur {1} Anlagevermögen erstellt oder mit {2} verknüpft. Bitte erstellen oder verknüpfen Sie {3} weitere Anlagevermögen mit dem entsprechenden Dokument." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "Für den Artikel {0} muss der Einzelpreis eine positive Zahl sein. Um negative Einzelpreise zuzulassen, aktivieren Sie {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21227,9 +21231,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "Für den Vorgang {0} in Zeile {1} bitte Rohmaterialien hinzufügen oder eine Stückliste dafür festlegen." -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "Für den Vorgang {0}: Die Menge ({1}) darf nicht größer sein als die ausstehende Menge ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21244,21 +21248,17 @@ msgstr "Für Projekt - {0}, aktualisieren Sie Ihren Status" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "Für projizierte und prognostizierte Mengen berücksichtigt das System alle untergeordneten Lager unter dem ausgewählten übergeordneten Lager." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "Denn die Menge {0} darf nicht größer sein als die zulässige Menge {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Zu Referenzzwecken" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Für Zeile {0} in {1}. Um {2} in die Artikel-Bewertung mit einzubeziehen, muss auch Zeile {3} mit enthalten sein" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Für Zeile {0}: Geben Sie die geplante Menge ein" @@ -21277,11 +21277,15 @@ msgstr "Für die Bedingung 'Regel auf andere anwenden' ist das Feld {0} msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Zur Vereinfachung für Kunden können diese Codes in Druckformaten wie Rechnungen und Lieferscheinen verwendet werden" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "Für den Artikel {0} sollte die verbrauchte Menge gemäß der Stückliste {2} gleich {1} sein." -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "Möchten Sie die aktuellen Werte für {1} löschen, damit das neue {0} wirksam wird?" @@ -21369,6 +21373,21 @@ msgstr "Forum Beiträge" msgid "Forum URL" msgstr "Forum-URL" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21912,7 +21931,7 @@ msgstr "Hauptbuchsaldo" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Buchung zum Hauptbuch" @@ -22037,6 +22056,10 @@ msgstr "Hauptbuch" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22090,7 +22113,7 @@ msgstr "Lagerabschlussbuchung generieren" msgid "Generate To Delete List" msgstr "Löschliste erstellen" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "Bitte zuerst die Löschliste erstellen" @@ -22433,7 +22456,7 @@ msgstr "Waren im Transit" msgid "Goods Transferred" msgstr "Übergebene Ware" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Waren sind bereits gegen die Ausgangsbuchung {0} eingegangen" @@ -22616,7 +22639,7 @@ msgstr "Gesamtsumme muss der Summe der Zahlungsreferenzen entsprechen" msgid "Grant Commission" msgstr "Provision gewähren" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Größer als Menge" @@ -22756,7 +22779,7 @@ msgstr "Nach Auftrag gruppieren" msgid "Group by Voucher" msgstr "Gruppieren nach Beleg" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Gruppenknoten Lager ist nicht für Transaktionen zu wählen erlaubt" @@ -23059,7 +23082,7 @@ msgstr "Hilft Ihnen, das Budget/Ziel über die Monate zu verteilen, wenn Sie in msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Hier sind die Fehlerprotokolle für die oben erwähnten fehlgeschlagenen Abschreibungseinträge: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "Hier sind die Optionen für das weitere Vorgehen:" @@ -23087,7 +23110,7 @@ msgstr "Hier werden Ihre wöchentlichen freien Tage auf der Grundlage der zuvor msgid "Hertz" msgstr "Hertz" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Hallo," @@ -23123,7 +23146,7 @@ msgstr "Ausblenden wenn Null" msgid "Hide Images" msgstr "Bilder ausblenden" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "Letzte Bestellungen ausblenden" @@ -23710,15 +23733,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "Falls keine Steuern festgelegt sind und eine Steuer- und Gebührenvorlage ausgewählt ist, wendet das System automatisch die Steuern aus der ausgewählten Vorlage an." -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "Wenn nicht, können Sie diesen Eintrag stornieren / buchen" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "Wenn die Partei nicht vorhanden ist, legen Sie diese bitte über das Feld Kundenname an." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "Wenn die Partei nicht vorhanden ist, legen Sie diese bitte über das Feld Lieferantenname an." @@ -23756,7 +23779,7 @@ msgstr "Wenn die Stückliste Schrottmaterial ergibt, muss ein Schrottlager ausge msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Wenn das Konto gesperrt ist, sind einem eingeschränkten Benutzerkreis Buchungen erlaubt." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Wenn der Artikel in diesem Eintrag als Artikel mit der Bewertung Null bewertet wird, aktivieren Sie in der Tabelle {0} Artikel die Option 'Nullbewertung zulassen'." @@ -23857,7 +23880,7 @@ msgstr "Wenn Sie bestimmte Transaktionen gegeneinander abgleichen müssen, wähl msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "Wenn Sie dennoch fortfahren möchten, aktivieren Sie bitte {0}." @@ -24075,14 +24098,14 @@ msgstr "Rechnungen importieren" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "MT940-Format importieren" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Import erfolgreich" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Importzusammenfassung" @@ -24559,7 +24582,7 @@ msgstr "Einschließlich der Artikel für Unterbaugruppen" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Ertrag" @@ -24645,7 +24668,7 @@ msgstr "Eingehender Anruf von {0}" msgid "Incompatible Setting Detected" msgstr "Inkompatible Einstellung erkannt" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "Falsches Konto" @@ -24654,7 +24677,7 @@ msgstr "Falsches Konto" msgid "Incorrect Balance Qty After Transaction" msgstr "Falsche Saldo-Menge nach Transaktion" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Falsche Charge verbraucht" @@ -24662,11 +24685,11 @@ msgstr "Falsche Charge verbraucht" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Falsches Aktivieren in (Gruppen-)Lager für Nachbestellung" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "Falsches Unternehmen" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Falsche Komponentenmenge" @@ -24675,7 +24698,7 @@ msgstr "Falsche Komponentenmenge" msgid "Incorrect Date" msgstr "Falsches Datum" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Falsche Rechnung" @@ -24692,7 +24715,7 @@ msgstr "Falsches Referenzdokument (Eingangsbeleg Artikel)" msgid "Incorrect Serial No Valuation" msgstr "Falsche Bewertung der Seriennummer" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Falsche Seriennummer verbraucht" @@ -24775,7 +24798,7 @@ msgstr "Schrittweite" msgid "Increment cannot be 0" msgstr "Schrittweite kann nicht 0 sein" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Schrittweite für Attribut {0} kann nicht 0 sein" @@ -24972,7 +24995,7 @@ msgid "Instruction" msgstr "Anweisung" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Unzureichende Kapazität" @@ -24988,12 +25011,12 @@ msgstr "Nicht ausreichende Berechtigungen" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Nicht genug Lagermenge." -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Unzureichender Bestand für Charge" @@ -25123,7 +25146,7 @@ msgstr "" msgid "Interest Income" msgstr "Zinserträge" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Zinsen und/oder Mahngebühren" @@ -25148,7 +25171,7 @@ msgstr "Intern" msgid "Internal Customer Accounting" msgstr "Interne Kundenbuchhaltung" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Interner Kunde für Unternehmen {0} existiert bereits" @@ -25174,7 +25197,7 @@ msgstr "Interne Verkaufsreferenz Fehlt" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "Interner Lieferant für Unternehmen {0} existiert bereits" @@ -25195,7 +25218,7 @@ msgstr "Interner Lieferant für Unternehmen {0} existiert bereits" msgid "Internal Transfer" msgstr "Interner Transfer" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Interne Transferreferenz fehlt" @@ -25237,8 +25260,8 @@ msgstr "Das Intervall sollte zwischen 1 und 59 Minuten liegen" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25257,7 +25280,7 @@ msgstr "Ungültiger zugewiesener Betrag" msgid "Invalid Amount" msgstr "Ungültiger Betrag" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Ungültige Attribute" @@ -25274,11 +25297,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Ungültiger Barcode. Es ist kein Artikel an diesen Barcode angehängt." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Ungültiger Rahmenauftrag für den ausgewählten Kunden und Artikel" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "Ungültiges CSV-Format. Erwartete Spalte: doctype_name" @@ -25298,13 +25321,13 @@ msgstr "Ungültige Firma für Inter Company-Transaktion." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Ungültige Kostenstelle" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "Ungültige Kundengruppe" @@ -25325,11 +25348,11 @@ msgstr "" msgid "Invalid Discount" msgstr "Ungültiger Rabatt" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Ungültiges Dokument" @@ -25359,7 +25382,7 @@ msgstr "Ungültige Gruppierung" msgid "Invalid Item" msgstr "Ungültiger Artikel" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Ungültige Artikel-Standardwerte" @@ -25368,7 +25391,7 @@ msgstr "Ungültige Artikel-Standardwerte" msgid "Invalid Ledger Entries" msgstr "Ungültige Hauptbucheinträge" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "Ungültiger Netto-Kaufbetrag" @@ -25407,7 +25430,7 @@ msgstr "Ungültiges Druckformat" msgid "Invalid Priority" msgstr "Ungültige Priorität" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Ungültige Prozessverlust-Konfiguration" @@ -25424,7 +25447,7 @@ msgstr "Ungültige Menge" msgid "Invalid Quantity" msgstr "Ungültige Menge" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "Ungültige Abfrage" @@ -25436,8 +25459,8 @@ msgstr "Ungültige Retoure" msgid "Invalid Sales Invoices" msgstr "Ungültige Ausgangsrechnungen" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Ungültiger Zeitplan" @@ -25445,7 +25468,7 @@ msgstr "Ungültiger Zeitplan" msgid "Invalid Selling Price" msgstr "Ungültiger Verkaufspreis" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Ungültiges Serien- und Chargenbündel" @@ -25462,7 +25485,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Ungültiger Wert" @@ -25472,14 +25495,14 @@ msgid "Invalid Warehouse" msgstr "Ungültiges Lager" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "Ungültiger Betrag in Buchungssätzen von {} {} für Konto {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Ungültiger Bedingungsausdruck" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "Ungültige Datei-URL" @@ -25511,7 +25534,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "Ungültiger Ergebnisschlüssel. Antwort:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Ungültige Suchanfrage" @@ -26474,10 +26497,6 @@ msgstr "Ausstellungsdatum" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Es kann bis zu einigen Stunden dauern, bis nach der Zusammenführung von Artikeln genaue Bestandswerte sichtbar sind." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Wird gebraucht, um Artikeldetails abzurufen" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26486,7 +26505,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "Es ist nicht möglich, die Gebühren gleichmäßig zu verteilen, wenn der Gesamtbetrag gleich Null ist. Bitte stellen Sie 'Gebühren verteilen auf Basis' auf 'Menge'" @@ -26535,12 +26554,12 @@ msgstr "Kursiver Text für Zwischensummen oder Anmerkungen" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26573,7 +26592,7 @@ msgstr "Kursiver Text für Zwischensummen oder Anmerkungen" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26647,7 +26666,7 @@ msgstr "Artikel 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26808,7 +26827,7 @@ msgstr "Artikel-Warenkorb" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26840,7 +26859,7 @@ msgstr "Artikel-Warenkorb" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26849,12 +26868,12 @@ msgstr "Artikel-Warenkorb" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26950,7 +26969,7 @@ msgstr "Artikelnummer kann nicht für Seriennummer geändert werden" msgid "Item Code required at Row No {0}" msgstr "Artikelnummer wird in Zeile {0} benötigt" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Artikelcode: {0} ist unter Lager {1} nicht verfügbar." @@ -27146,7 +27165,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Artikelgruppenbaumstruktur" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Artikelgruppe ist im Artikelstamm für Artikel {0} nicht erwähnt" @@ -27300,7 +27319,7 @@ msgstr "Artikel Hersteller" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27331,7 +27350,7 @@ msgstr "Artikel Hersteller" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27339,8 +27358,8 @@ msgstr "Artikel Hersteller" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27397,7 +27416,7 @@ msgstr "Artikel Hersteller" msgid "Item Name" msgstr "Artikelname" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "Artikelname ist erforderlich." @@ -27444,8 +27463,8 @@ msgstr "Artikelpreiseinstellungen" msgid "Item Price Stock" msgstr "Artikel Preis Lagerbestand" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27457,7 +27476,7 @@ msgstr "Ein Artikelpreis für diese Kombination aus Preisliste, Lieferant/Kunde, msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Artikel Preis aktualisiert für {0} in der Preisliste {1}" @@ -27502,7 +27521,7 @@ msgstr "Artikelnachbestellung" msgid "Item Row" msgstr "Artikelzeile" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Artikelzeile {0}: {1} {2} ist in der obigen Tabelle "{1}" nicht vorhanden" @@ -27618,7 +27637,7 @@ msgstr "Zu fertigender Artikel" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Artikelvariante" @@ -27737,7 +27756,7 @@ msgstr "Artikelbezogene Steuer-Details" msgid "Item Wise Tax Details" msgstr "Artikelspezifische Steuerdetails" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "Artikelbezogene Steuerdetails stimmen nicht mit den Steuern und Abgaben in den folgenden Zeilen überein:" @@ -27773,7 +27792,7 @@ msgstr "Artikel ist in der Rohmaterialtabelle erforderlich." msgid "Item is removed since no serial / batch no selected." msgstr "Artikel wird entfernt, da keine Serien-/Chargennummer ausgewählt wurde." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Artikel müssen über die Schaltfläche \"Artikel von Eingangsbeleg übernehmen\" hinzugefügt werden" @@ -27787,7 +27806,7 @@ msgstr "Artikelname" msgid "Item operation" msgstr "Artikeloperation" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "Artikelpreis wurde auf Null aktualisiert, da „Nullbewertung zulassen“ für Artikel {0} aktiviert ist" @@ -27802,7 +27821,7 @@ msgstr "Zu fertigender Artikel" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "Der Wertansatz wird unter Berücksichtigung des Einstandskostenbelegbetrags neu berechnet" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Neubewertung der Artikel im Gange. Der Bericht könnte eine falsche Artikelbewertung anzeigen." @@ -27818,10 +27837,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "Artikel {0} wurde mehrfach unter demselben übergeordneten Artikel {1} in Zeilen {2} und {3} hinzugefügt" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "Artikel {0} kann nicht als Unterbaugruppe für sich selbst hinzugefügt werden" @@ -27830,6 +27845,10 @@ msgstr "Artikel {0} kann nicht als Unterbaugruppe für sich selbst hinzugefügt msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Artikel {0} kann nicht mehr als {1} im Rahmenauftrag {2} bestellt werden." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27839,6 +27858,7 @@ msgstr "Artikel {0} existiert nicht" msgid "Item {0} does not exist in the system or has expired" msgstr "Artikel {0} ist nicht im System vorhanden oder abgelaufen" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Artikel {0} existiert nicht." @@ -27871,6 +27891,10 @@ msgstr "Artikel {0} hat das Ende seiner Lebensdauer erreicht zum Datum {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "Artikel {0} ignoriert, da es sich nicht um einen Lagerartikel handelt" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Der Artikel {0} ist bereits für den Auftrag {1} reserviert/geliefert." @@ -27903,7 +27927,7 @@ msgstr "Artikel {0} ist kein unterbeauftragter Artikel" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "Artikel {0} ist nicht aktiv oder hat das Ende der Lebensdauer erreicht" @@ -27935,10 +27959,6 @@ msgstr "Artikel {0}: Bestellmenge {1} kann nicht weniger als Mindestbestellmenge msgid "Item {0}: {1} qty produced. " msgstr "Artikel {0}: {1} produzierte Menge." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "Artikel {0} existiert nicht." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27989,6 +28009,10 @@ msgstr "Artikel/Artikelcode erforderlich, um Artikel-Steuervorlage zu erhalten." msgid "Item: {0} does not exist in the system" msgstr "Artikel: {0} ist nicht im System vorhanden" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -28005,7 +28029,7 @@ msgstr "Artikelkatalog" msgid "Items Filter" msgstr "Artikel filtern" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Erforderliche Artikel" @@ -28045,7 +28069,7 @@ msgstr "Artikel für Rohstoffanforderung" msgid "Items not found." msgstr "Artikel nicht gefunden." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "Der Artikelpreis wurde auf null aktualisiert, da Null-Bewertungssatz zulassen für folgende Artikel aktiviert ist: {0}" @@ -28055,7 +28079,7 @@ msgstr "Der Artikelpreis wurde auf null aktualisiert, da Null-Bewertungssatz zul msgid "Items to Be Repost" msgstr "Neu zu buchende Artikel" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Zu fertigende Gegenstände sind erforderlich, um die damit verbundenen Rohstoffe zu ziehen." @@ -28125,7 +28149,7 @@ msgstr "Arbeitskapazität" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28188,20 +28212,19 @@ msgstr "Jobkarten-Zeitprotokoll" msgid "Job Card and Capacity Planning" msgstr "Jobkarte und Kapazitätsplanung" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "Jobkarte {0} wurde abgeschlossen" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "Jobkarten" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "Auftrag pausiert" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Auftrag gestartet" @@ -28264,11 +28287,19 @@ msgstr "Name des Unterauftragnehmers" msgid "Job Worker Warehouse" msgstr "Lagerhaus des Unterauftragnehmers" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Jobkarte {0} erstellt" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "Job: {0} wurde zur Verarbeitung fehlgeschlagener Transaktionen ausgelöst" @@ -28614,8 +28645,8 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "Letzte Hauptbucheintrags-Aktualisierung wurde {} durchgeführt. Dieser Vorgang ist nicht zulässig, während das System aktiv genutzt wird. Bitte warten Sie 5 Minuten, bevor Sie es erneut versuchen." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28735,7 +28766,7 @@ msgstr "Breite" msgid "Lead" msgstr "Interessent" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Lead -> Potenzieller Kunde" @@ -28829,7 +28860,7 @@ msgstr "Lieferzeit in Tagen" msgid "Lead Type" msgstr "Interessenten-Art" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "Interessent {0} wurde zu Potenziellem Kunden {1} hinzugefügt." @@ -28978,7 +29009,7 @@ msgstr "Legende" msgid "Length (cm)" msgstr "Länge (cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Weniger als der Betrag" @@ -29007,7 +29038,7 @@ msgstr "Ebene (Stückliste)" msgid "Lft" msgstr "Links" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Verbindlichkeiten" @@ -29037,7 +29068,7 @@ msgstr "Lizenznummer" msgid "License Plate" msgstr "Nummernschild" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Grenze überschritten" @@ -29133,8 +29164,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Verknüpfung mit Kunde fehlgeschlagen. Bitte versuchen Sie es erneut." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Verknüpfung mit Lieferant fehlgeschlagen. Bitte versuchen Sie es erneut." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29300,7 +29331,7 @@ msgstr "Grund für Verlust Detail" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Gründe für Verlust" @@ -29386,7 +29417,7 @@ msgstr "Treuepunkte-Einlösung" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Die Treuepunkte werden aus den getätigten Ausgaben (über die Ausgangsrechnung) basierend auf dem angegebenen Sammelfaktor berechnet." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Treuepunkte: {0}" @@ -29624,7 +29655,7 @@ msgstr "Wartungsplandetail" msgid "Maintenance Schedule Item" msgstr "Wartungsplanposten" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Wartungsplan wird nicht für alle Elemente erzeugt. Bitte klicken Sie auf \"Zeitplan generieren\"" @@ -29721,7 +29752,7 @@ msgstr "Wartungsbesuch" msgid "Maintenance Visit Purpose" msgstr "Zweck des Wartungsbesuchs" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Startdatum der Wartung kann nicht vor dem Liefertermin für Seriennummer {0} liegen" @@ -29868,7 +29899,7 @@ msgstr "Obligatorisch für Bilanz" msgid "Mandatory For Profit and Loss Account" msgstr "Obligatorisch für Gewinn- und Verlustrechnung" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Obligatorisch fehlt" @@ -29951,8 +29982,8 @@ msgstr "Manuelle Eingabe kann nicht erstellt werden! Deaktivieren Sie die automa #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30174,7 +30205,7 @@ msgstr "Zuordnung des Subunternehmer-Eingangsauftrags..." msgid "Mapping Subcontracting Order ..." msgstr "Zuordnung des Unterauftrags..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Zuordnung von {0}..." @@ -30352,10 +30383,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30382,7 +30409,7 @@ msgstr "Materialverbrauch" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Materialverbrauch für die Herstellung" @@ -30493,7 +30520,7 @@ msgstr "Materialanfrage" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Material Auftragsdatum" @@ -30543,7 +30570,7 @@ msgstr "Materialanforderungsdetail" msgid "Material Request Item" msgstr "Materialanfrageartikel" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Materialanfragenr." @@ -30565,7 +30592,7 @@ msgstr "Materialanfragetyp" msgid "Material Request already created for the ordered quantity" msgstr "Materialanfrage für die bestellte Menge wurde bereits erstellt" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Materialanforderung nicht angelegt, da Menge für Rohstoffe bereits vorhanden." @@ -30579,7 +30606,7 @@ msgstr "Materialanfrage von maximal {0} kann für Artikel {1} zum Auftrag {2} ge msgid "Material Request used to make this Stock Entry" msgstr "Materialanfrage wurde für die Erstellung dieser Lagerbuchung verwendet" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Materialanfrage {0} wird storniert oder gestoppt" @@ -30699,14 +30726,14 @@ msgstr "Material an den Lieferanten" msgid "Materials To Be Transferred" msgstr "Zu übertragende Materialien" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Materialien sind bereits gegen {0} {1} eingegangen" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "Materialien müssen für die Jobkarte {0} ins Lager der Arbeit in Bearbeitung übertragen werden" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30874,7 +30901,7 @@ msgstr "Megajoule" msgid "Megawatt" msgstr "Megawatt" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Erwähnen Sie die Bewertungsrate im Artikelstamm." @@ -30909,7 +30936,7 @@ msgstr "Fortschritt der Zusammenführung" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Steuern aus mehreren Dokumenten zusammenführen" @@ -31255,7 +31282,7 @@ msgstr "Sonstige Aufwendungen" msgid "Mismatch" msgstr "Keine Übereinstimmung" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Fehlt" @@ -31264,11 +31291,11 @@ msgstr "Fehlt" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Fehlendes Konto" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "Fehlende Konten" @@ -31293,11 +31320,11 @@ msgstr "" msgid "Missing Filters" msgstr "Fehlende Filter" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Fehlendes Finanzbuch" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Fehlendes Fertigerzeugnis" @@ -31305,7 +31332,7 @@ msgstr "Fehlendes Fertigerzeugnis" msgid "Missing Formula" msgstr "Fehlende Formel" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Fehlender Artikel" @@ -31317,7 +31344,7 @@ msgstr "Fehlender Parameter" msgid "Missing Payments App" msgstr "Fehlende Zahlungs-App" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31329,7 +31356,7 @@ msgstr "Fehlendes Seriennr.-Bündel" msgid "Missing Warehouse" msgstr "Fehlendes Lager" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "Fehlende Kontokonfiguration für Unternehmen {0}." @@ -31337,12 +31364,12 @@ msgstr "Fehlende Kontokonfiguration für Unternehmen {0}." msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Fehlende E-Mail-Vorlage für den Versand. Bitte legen Sie einen in den Liefereinstellungen fest." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Erforderlicher Filter fehlt: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Fehlender Wert" @@ -31591,17 +31618,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Für den Kunden {} wurden mehrere Treueprogramme gefunden. Bitte manuell auswählen." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "Mehrere POS-Eröffnungseinträge" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Es sind mehrere Preisregeln mit gleichen Kriterien vorhanden, lösen Sie Konflikte, indem Sie Prioritäten zuweisen. Preis Regeln: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31621,7 +31648,7 @@ msgstr "Mehrere Unternehmensfelder verfügbar: {0}. Bitte manuell auswählen." msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Mehrere Geschäftsjahre existieren für das Datum {0}. Bitte setzen Unternehmen im Geschäftsjahr" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "Mehrere Artikel können nicht als fertiger Artikel markiert werden" @@ -31630,10 +31657,10 @@ msgid "Music" msgstr "Musik" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Muss eine ganze Zahl sein" @@ -31718,11 +31745,7 @@ msgstr "Nummernkreis ist obligatorisch" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "Nummernkreis '{0}' für DocType '{1}' enthält keinen Standard-Trenner '.' oder '{{'. Verwende Fallback-Extraktion." @@ -31766,7 +31789,7 @@ msgstr "Muss analysiert werden" msgid "Negative Batch Report" msgstr "Bericht über negative Chargen" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Negative Menge ist nicht erlaubt" @@ -31776,12 +31799,12 @@ msgstr "Negative Menge ist nicht erlaubt" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "Fehler bei negativem Lagerbestand" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Negative Bewertung ist nicht erlaubt" @@ -31859,8 +31882,8 @@ msgstr "Nettobetrag" msgid "Net Amount (Company Currency)" msgstr "Nettobetrag (Unternehmenswährung)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Nettoinventarwert Vermögenswert wie" @@ -31910,7 +31933,7 @@ msgstr "Nettostundensatz" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Reingewinn" @@ -31918,7 +31941,7 @@ msgstr "Reingewinn" msgid "Net Profit Ratio" msgstr "Nettogewinnmarge" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Nettogewinn (-verlust" @@ -31932,11 +31955,11 @@ msgstr "Nettogewinn (-verlust" msgid "Net Purchase Amount" msgstr "Netto-Kaufbetrag" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "Netto-Kaufbetrag ist obligatorisch" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "Der Netto-Kaufbetrag sollte gleich dem Kaufbetrag eines einzelnen Vermögensgegenstands sein." @@ -32180,7 +32203,7 @@ msgstr "Neues Geschäftsjahr - {0}" msgid "New Income" msgstr "Neuer Verdienst" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "Neue Rechnung" @@ -32253,6 +32276,7 @@ msgid "New Task" msgstr "Neue Aufgabe" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Neue Version" @@ -32265,9 +32289,9 @@ msgstr "Neuer Lagername" msgid "New Workplace" msgstr "Neuer Arbeitsplatz" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Neues Kreditlimit ist weniger als der aktuell ausstehende Betrag für den Kunden. Kreditlimit muss mindestens {0} sein" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32275,6 +32299,10 @@ msgstr "Neues Kreditlimit ist weniger als der aktuell ausstehende Betrag für de msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Neue Rechnungen werden planmäßig erstellt, auch wenn aktuelle Rechnungen nicht bezahlt wurden oder überfällig sind" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Das neue Erscheinungsdatum sollte in der Zukunft liegen" @@ -32287,7 +32315,7 @@ msgstr "Neues überarbeitetes Budget erfolgreich erstellt" msgid "New task" msgstr "Neuer Vorgang" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Neue {0} Preisregeln werden erstellt" @@ -32351,16 +32379,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Für Transaktionen zwischen Unternehmen, die das Unternehmen {0} darstellen, wurde kein Kunde gefunden." -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "Keine Kunden mit ausgewählten Optionen gefunden." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Kein Lieferschein für den Kunden {} ausgewählt" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "Keine DocTypes in der Zu-löschenden-Liste. Bitte die Liste vor dem Buchen generieren oder importieren." @@ -32368,15 +32395,15 @@ msgstr "Keine DocTypes in der Zu-löschenden-Liste. Bitte die Liste vor dem Buch msgid "No Impact on Accounting Ledger" msgstr "Keine Auswirkung auf das Hauptbuch" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Kein Artikel mit Barcode {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Kein Artikel mit Seriennummer {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "Keine Artikel zur Übertragung ausgewählt." @@ -32419,11 +32446,6 @@ msgstr "Keine Berechtigung" msgid "No Purchase Orders were created" msgstr "Es wurden keine Bestellungen erstellt" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "Keine Datensätze für diese Einstellungen." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Keine Auswahl" @@ -32526,6 +32548,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "Keine Kontakte mit E-Mail-IDs gefunden." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Keine Daten für diesen Zeitraum" @@ -32571,7 +32597,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "Kein Artikel zur Übertragung verfügbar." @@ -32608,10 +32634,6 @@ msgstr "Keine Unterknoten mehr auf der linken Seite" msgid "No more children on Right" msgstr "Keine Unterpunkte auf der rechten Seite" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Anzahl Lieferungen" @@ -32708,7 +32730,7 @@ msgstr "Keine offenen Rechnungen gefunden" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Keine ausstehenden Rechnungen erfordern eine Neubewertung des Wechselkurses" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "Für {1} {2} wurden kein ausstehender Beleg vom Typ {0} gefunden, der den angegebenen Filtern entspricht." @@ -32746,15 +32768,20 @@ msgstr "" msgid "No record found" msgstr "Kein Datensatz gefunden" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "Keine Datensätze in der Zuteilungstabelle gefunden" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "Keine Datensätze in der Tabelle Rechnungen gefunden" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "Keine Datensätze in der Zahlungstabelle gefunden" @@ -32783,7 +32810,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "Es wurden keine Lagerbuchungen erstellt. Bitte geben Sie die Menge oder den Wertansatz für die Artikel ordnungsgemäß an und versuchen Sie es erneut." @@ -32820,7 +32847,7 @@ msgstr "Keine Werte" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32828,11 +32855,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "Keine {0} für Inter-Company-Transaktionen gefunden." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "Nr." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32884,7 +32906,7 @@ msgstr "Nicht-Nullen" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Keiner der Artikel hat irgendeine Änderung bei Mengen oder Kosten." @@ -32895,8 +32917,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "Stk" @@ -32910,8 +32932,8 @@ msgstr "Stk" msgid "Not Applicable" msgstr "Nicht andwendbar" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Nicht verfügbar" @@ -32974,10 +32996,6 @@ msgstr "Nicht begonnen" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "Das früheste Geschäftsjahr für die angegebene Firma konnte nicht gefunden werden." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Nicht zulassen, alternative Artikel für den Artikel {0} festzulegen" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Kontodimension für {0} darf nicht erstellt werden" @@ -32994,10 +33012,6 @@ msgstr "Nicht zugelassen, da {0} die Grenzwerte überschreitet" msgid "Not authorized to edit frozen Account {0}" msgstr "Keine Berechtigung gesperrtes Konto {0} zu bearbeiten" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "Nicht auf Lager" @@ -33010,7 +33024,7 @@ msgstr "Nicht lagernd" msgid "Not permitted to make Purchase Orders" msgstr "Nicht berechtigt, Bestellungen zu erstellen" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33255,8 +33269,8 @@ msgid "Numeric Values" msgstr "Numerische Werte" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Numero wurde nicht in der XML-Datei festgelegt" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33431,12 +33445,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Einmal eingestellt, liegt diese Rechnung bis zum festgelegten Datum auf Eis" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "Sobald der Arbeitsauftrag abgeschlossen ist, kann er nicht wiederaufgenommen werden." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Ein Kunde kann nur an einem einzigen Treueprogramm teilnehmen." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33470,7 +33484,7 @@ msgstr "Es werden nur 'Zahlungsbuchungen' unterstützt, die gegen dieses Vorschu msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Nur CSV- und Excel-Dateien können für den Datenimport verwendet werden. Bitte überprüfen Sie das Format der Datei, die Sie hochladen möchten" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "Nur CSV-Dateien sind erlaubt" @@ -33535,7 +33549,7 @@ msgstr "Nur ein Arbeitsgang kann 'Ist endgültiges Fertigerzeugnis' aktiviert ha msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "Nur ein {0} Eintrag kann gegen den Arbeitsauftrag {1} erstellt werden" @@ -33602,7 +33616,7 @@ msgstr "Offenes Ereignis" msgid "Open Events" msgstr "Offene Ereignisse" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Öffnen Sie die Formularansicht" @@ -33755,7 +33769,7 @@ msgstr "Anfangssaldo = Periodenbeginn, Schlusssaldo = Periodenende, Periodenbewe #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Details zum Eröffnungssaldo" @@ -33785,7 +33799,7 @@ msgstr "Eröffnungsdatum" msgid "Opening Entry" msgstr "Eröffnungsbuchung" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Öffnen der Rechnungserstellung läuft" @@ -33813,7 +33827,7 @@ msgstr "Rechnungsposition öffnen" msgid "Opening Invoice Tool" msgstr "Werkzeug für offene Rechnungen" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "Die Eröffnungsrechnung weist eine Rundungsanpassung von {0} auf.

                    Das Konto '{1}' ist erforderlich, um diese Werte zu buchen. Bitte legen Sie es im Unternehmen {2} fest.

                    Oder '{3}' kann aktiviert werden, um keine Rundungsanpassung zu buchen." @@ -33822,7 +33836,7 @@ msgstr "Die Eröffnungsrechnung weist eine Rundungsanpassung von {0} auf.


                    {0}" msgstr "Parteityp und Partei können nur für das Debitoren-/Kreditorenkonto {0} festgelegt werden." -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Partei-Typ und Partei sind Pflichtfelder für Konto {0}" @@ -36045,7 +36060,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36555,7 +36570,7 @@ msgstr "Bezahlung Referenzen" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36630,7 +36645,7 @@ msgstr "Zahlungsplan" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "Zahlungsplan-basierte Zahlungsaufforderungen können nicht erstellt werden, da bereits ein Zahlungseintrag für dieses Dokument vorhanden ist." -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "Zahlungspläne" @@ -36652,7 +36667,7 @@ msgstr "Zahlungspläne" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36752,8 +36767,8 @@ msgid "Payment Type" msgstr "Zahlungsart" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Zahlungsart muss entweder 'Empfangen', 'Zahlen' oder 'Interner Transfer' sein" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36959,11 +36974,11 @@ msgstr "Ausstehende Aktivitäten für heute" msgid "Pending processing" msgstr "Ausstehende Verarbeitung" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37480,12 +37495,12 @@ msgstr "Plaid Client ID" msgid "Plaid Environment" msgstr "Plaid-Umgebung" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Plaid-Link fehlgeschlagen" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Aktualisierung des Plaid-Links erforderlich" @@ -37507,7 +37522,7 @@ msgstr "Plaid Secret" msgid "Plaid Settings" msgstr "Plaid-Einstellungen" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Synchronisierungsfehler für Plaid-Transaktionen" @@ -37658,15 +37673,6 @@ msgstr "Pflanzen und Maschinen" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Bitte füllen Sie die Artikel wieder auf und aktualisieren Sie die Pickliste, um fortzufahren. Um abzubrechen, stornieren Sie die Pickliste." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Bitte wählen Sie eine Firma aus" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Bitte wählen Sie eine Firma aus." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37674,7 +37680,6 @@ msgstr "Bitte wählen Sie einen Kunden aus" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Bitte wählen Sie einen Lieferanten" @@ -37682,19 +37687,19 @@ msgstr "Bitte wählen Sie einen Lieferanten" msgid "Please Set Priority" msgstr "Bitte Priorität festlegen" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Bitte legen Sie die Lieferantengruppe in den Kaufeinstellungen fest." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Bitte Konto angeben" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Bitte fügen Sie dem Benutzer {0} die Rolle „Lieferant“ hinzu." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Bitte fügen Sie die Zahlungsweise und die Details zum Eröffnungssaldo hinzu." @@ -37710,7 +37715,7 @@ msgstr "Bitte fügen Sie „Angebotsanfrage“ zur Seitenleiste in den Portalein msgid "Please add Root Account for - {0}" msgstr "Bitte fügen Sie ein Root-Konto hinzu für: {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Bitte fügen Sie ein vorübergehendes Eröffnungskonto im Kontenplan hinzu" @@ -37718,35 +37723,32 @@ msgstr "Bitte fügen Sie ein vorübergehendes Eröffnungskonto im Kontenplan hin msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Bitte fügen Sie mindestens eine Serien-/Chargennummer hinzu" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Bitte fügen Sie die Spalte „Bankkonto“ hinzu" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Bitte fügen Sie das Konto zur Muttergesellschaft hinzu - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Bitte fügen Sie das Konto der Root-Ebene Company - {} hinzu" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Bitte fügen Sie dem Benutzer {0} die Rolle {1} hinzu." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Bitte passen Sie die Menge an oder bearbeiten Sie {0}, um fortzufahren." @@ -37788,7 +37790,7 @@ msgstr "Bitte aktivieren Sie entweder \"Mit Arbeitsgängen\" oder \"Auf Fertiger msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Bitte überprüfen Sie die Fehlermeldung und ergreifen Sie die notwendigen Maßnahmen, um den Fehler zu beheben und starten Sie dann die Neubuchung erneut." @@ -37801,11 +37803,11 @@ msgstr "Bitte überprüfen Sie Ihre Plaid-Client-ID und Ihre geheimen Werte" msgid "Please check your email to confirm the appointment" msgstr "Bitte überprüfen Sie Ihre E-Mails, um den Termin zu bestätigen" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Bitte auf \"Zeitplan generieren\" klicken" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Bitte auf \"Zeitplan generieren\" klicken, um die Seriennummer für Artikel {0} abzurufen" @@ -37821,15 +37823,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Bitte kontaktieren Sie einen der folgenden Benutzer, um die Kreditlimits für {0} zu erweitern: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Bitte kontaktieren Sie einen der folgenden Benutzer, um diese Transaktion zu {}." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Bitte wenden Sie sich an Ihren Administrator, um die Kreditlimits für {0} zu erweitern." @@ -37837,11 +37839,11 @@ msgstr "Bitte wenden Sie sich an Ihren Administrator, um die Kreditlimits für { msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Bitte konvertieren Sie das Elternkonto in der entsprechenden Kinderfirma in ein Gruppenkonto." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Bitte erstellen Sie einen Kunden aus Interessent {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Bitte erstellen Sie einen Einstandskostenbeleg gegen Rechnungen, bei denen die Option „Lagerbestand aktualisieren“ aktiviert ist." @@ -37853,7 +37855,7 @@ msgstr "Bitte erstellen Sie bei Bedarf eine neue Buchhaltungsdimension." msgid "Please create purchase from internal sale or delivery document itself" msgstr "Bitte erstellen Sie den Kauf aus dem internen Verkaufs- oder Lieferbeleg selbst" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Bitte erstellen Sie eine Kaufquittung oder eine Eingangsrechnungen für den Artikel {0}" @@ -37865,11 +37867,11 @@ msgstr "Bitte löschen Sie das Produktbündel {0}, bevor Sie {1} mit {2} zusamme msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "Bitte deaktivieren Sie vorübergehend den Workflow für Buchungssatz {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Bitte buchen Sie die Ausgaben für mehrere Vermögensgegenstände nicht auf einen einzigen Vermögensgegenstand." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Bitte erstellen Sie nicht mehr als 500 Artikel gleichzeitig" @@ -37894,8 +37896,8 @@ msgid "Please enable {0} in the {1}." msgstr "Bitte aktivieren Sie {0} in {1}." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Bitte aktivieren Sie {} in {}, um denselben Artikel in mehreren Zeilen zuzulassen" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37906,12 +37908,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Bitte stellen Sie sicher, dass das {0}-Konto {1} ein Verbindlichkeiten-Konto ist. Sie können den Kontotyp in "Verbindlichkeiten" ändern oder ein anderes Konto auswählen." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Bitte stellen Sie sicher, dass das Konto {} ein Bilanzkonto ist." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Bitte stellen Sie sicher, dass {} Konto {} ein Forderungskonto ist." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37926,7 +37928,7 @@ msgstr "Bitte geben Sie Konto für Änderungsbetrag" msgid "Please enter Approving Role or Approving User" msgstr "Bitte genehmigende Rolle oder genehmigenden Nutzer eingeben" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Bitte Chargennummer eingeben" @@ -37942,7 +37944,7 @@ msgstr "Bitte geben Sie das Lieferdatum ein" msgid "Please enter Employee Id of this sales person" msgstr "Bitte die Mitarbeiter-ID dieses Vertriebsmitarbeiters angeben" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Bitte das Aufwandskonto angeben" @@ -37951,7 +37953,7 @@ msgstr "Bitte das Aufwandskonto angeben" msgid "Please enter Item Code to get Batch Number" msgstr "Bitte geben Sie Item Code zu Chargennummer erhalten" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Bitte die Artikelnummer eingeben um die Chargennummer zu erhalten" @@ -37987,7 +37989,7 @@ msgstr "Bitte den Stichtag eingeben" msgid "Please enter Root Type for account- {0}" msgstr "Bitte geben Sie den Root-Typ für das Konto ein: {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Bitte Seriennummer eingeben" @@ -38117,8 +38119,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "Bitte die Löschliste vor dem Buchen generieren" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Bitte importieren Sie Konten gegen die Muttergesellschaft oder aktivieren Sie {} in den Unternehmensstammdaten." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38153,11 +38155,7 @@ msgstr "Bitte geben Sie die aktuelle und die neue Stückliste für den Ersatz an msgid "Please pull items from Delivery Note" msgstr "Bitte Artikel aus dem Lieferschein ziehen" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Bitte korrigieren Sie den Fehler und versuchen Sie es erneut." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Bitte aktualisieren oder setzen Sie die Plaid-Verknüpfung der Bank {} zurück." @@ -38186,12 +38184,12 @@ msgstr "Bitte speichern Sie den Auftrag, bevor Sie einen Lieferplan hinzufügen. msgid "Please select Template Type to download template" msgstr "Bitte wählen Sie Vorlagentyp , um die Vorlage herunterzuladen" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Bitte \"Rabatt anwenden auf\" auswählen" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Bitte eine Stückliste für Artikel {0} auswählen" @@ -38207,9 +38205,9 @@ msgstr "Bitte wählen Sie ein Bankkonto" msgid "Please select Category first" msgstr "Bitte zuerst eine Kategorie auswählen" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Bitte zuerst einen Chargentyp auswählen" @@ -38219,8 +38217,8 @@ msgstr "Bitte Unternehmen auswählen" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Bitte wählen Sie Unternehmen und Buchungsdatum, um Einträge zu erhalten" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38242,7 +38240,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Bitte wählen Sie Bestehende Unternehmen für die Erstellung von Konten" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Bitte wählen Sie ein Fertigprodukt für Serviceartikel {0}" @@ -38251,6 +38249,10 @@ msgstr "Bitte wählen Sie ein Fertigprodukt für Serviceartikel {0}" msgid "Please select Item Code first" msgstr "Bitte wählen Sie zuerst den Artikelcode" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Bitte wählen Sie Wartungsstatus als erledigt oder entfernen Sie das Abschlussdatum" @@ -38275,11 +38277,11 @@ msgstr "Bitte erst Buchungsdatum und dann die Partei auswählen" msgid "Please select Posting Date first" msgstr "Bitte zuerst ein Buchungsdatum auswählen" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Bitte eine Preisliste auswählen" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Bitte wählen Sie Menge für Artikel {0}" @@ -38308,6 +38310,7 @@ msgid "Please select a BOM" msgstr "Bitte Stückliste auwählen" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Bitte ein Unternehmen auswählen" @@ -38315,11 +38318,12 @@ msgstr "Bitte ein Unternehmen auswählen" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Bitte wählen Sie zuerst eine Firma aus." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Bitte wählen Sie einen Kunden aus" @@ -38328,7 +38332,7 @@ msgstr "Bitte wählen Sie einen Kunden aus" msgid "Please select a Delivery Note" msgstr "Bitte wählen Sie einen Lieferschein" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Bitte wählen Sie eine Unterauftragsbestellung aus." @@ -38340,7 +38344,7 @@ msgstr "Bitte wählen Sie einen Lieferanten aus" msgid "Please select a Warehouse" msgstr "Bitte wählen Sie ein Lager" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Bitte wählen Sie zuerst einen Arbeitsauftrag aus." @@ -38356,6 +38360,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38389,22 +38394,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "Bitte wählen Sie eine Häufigkeit für den Lieferplan" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Bitte wählen Sie eine Zeile aus, um einen Umbuchungseintrag zu erstellen" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Bitte wählen Sie einen Lieferanten aus, um Zahlungen abzurufen." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Bitte wählen Sie eine gültige Bestellung, die für die Vergabe von Unteraufträgen konfiguriert ist." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Bitte einen Wert für {0} Angebot an {1} auswählen" @@ -38413,7 +38422,7 @@ msgstr "Bitte einen Wert für {0} Angebot an {1} auswählen" msgid "Please select an item code before setting the warehouse." msgstr "Bitte wählen Sie einen Artikelcode aus, bevor Sie das Lager festlegen." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38421,10 +38430,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Bitte wählen Sie mindestens einen Filter: Artikel-Code, Charge oder Seriennummer." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Bitte wählen Sie mindestens eine Zeile zum Korrigieren aus" @@ -38433,18 +38450,10 @@ msgstr "Bitte wählen Sie mindestens eine Zeile zum Korrigieren aus" msgid "Please select at least one row with difference value" msgstr "Bitte mindestens eine Zeile mit Differenzwert auswählen" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "Bitte mindestens einen Zahlungsplan auswählen." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "Bitte wählen Sie mindestens einen Artikel aus, um fortzufahren" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "Bitte wählen Sie mindestens einen Arbeitsgang aus, um eine Jobkarte zu erstellen" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Bitte richtiges Konto auswählen" @@ -38482,12 +38491,12 @@ msgstr "Bitte wählen Sie die Artikel aus, die Sie reservieren möchten." msgid "Please select items to unreserve." msgstr "Bitte wählen Sie Artikel aus, deren Reservierung aufgehoben werden soll." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Bitte wählen Sie nur eine Zeile aus, um einen Umbuchungseintrag zu erstellen" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Bitte wählen Sie Zeilen aus, um Umbuchungseinträge zu erstellen" @@ -38496,8 +38505,8 @@ msgid "Please select the Company" msgstr "Bitte wählen Sie das Unternehmen aus" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Wählen Sie den Programmtyp Mehrstufig für mehrere Sammlungsregeln aus." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38520,20 +38529,16 @@ msgstr "Bitte zuerst den Dokumententyp auswählen." msgid "Please select the required filters" msgstr "Bitte wählen Sie die gewünschten Filter aus" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Bitte wählen Sie einen gültigen Dokumententyp aus." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Bitte die wöchentlichen Auszeittage auswählen" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Bitte zuerst {0} auswählen" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Bitte \"Zusätzlichen Rabatt anwenden auf\" aktivieren" @@ -38562,8 +38567,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Bitte legen Sie das Konto im Lager {0} oder im Standardbestandskonto im Unternehmen {1} fest." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Bitte legen Sie die Buchhaltungsdimension {} in {} fest" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38592,22 +38597,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Bitte legen Sie E-Mail/Telefon für den Kontakt fest" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Bitte setzen Sie den Steuercode für den Kunden '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Bitte setzen Sie den Steuercode für den Kunden '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Bitte setzen Sie den Steuercode für die öffentliche Verwaltung '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Bitte setzen Sie den Steuercode für die öffentliche Verwaltung '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "Bitte legen Sie das Konto für Anlagevermögen in der Vermögensgegenstand-Kategorie {0} fest." #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Bitte legen Sie das Konto für Anlagevermögen in {} für {} fest." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38623,9 +38626,8 @@ msgid "Please set Root Type" msgstr "Bitte Root-Typ angeben" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Bitte legen Sie die Steuernummer für den Kunden „%s“ fest" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Bitte legen Sie die Steuernummer für den Kunden „{0}“ fest" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38644,15 +38646,15 @@ msgid "Please set a Company" msgstr "Bitte legen Sie eine Firma fest" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Bitte legen Sie eine Kostenstelle für den Vermögensgegenstand oder eine Standard-Kostenstelle für die Abschreibung von Vermögensgegenständen für das Unternehmen {} fest" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Bitte legen Sie eine Standardliste der arbeitsfreien Tage für Unternehmen {0} fest" @@ -38669,9 +38671,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "Bitte legen Sie die tatsächliche Nachfrage oder die Absatzprognose fest, um den Materialbedarfsplanungsbericht zu erstellen." #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Bitte geben Sie eine Adresse für das Unternehmen „%s“ ein" +msgid "Please set an Address on the Company '{0}'" +msgstr "Bitte geben Sie eine Adresse für das Unternehmen „{0}“ ein" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38689,25 +38690,22 @@ msgstr "Bitte setzen Sie mindestens eine Zeile in die Tabelle Steuern und Abgabe msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "Bitte setzen Sie sowohl die Steuernummer als auch den Steuercode für Unternehmen {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Bitte tragen Sie ein Bank- oder Kassenkonto in Zahlungsweise {0} ein" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Bitte tragen Sie ein Bank- oder Kassenkonto in Zahlungsweise {} ein" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Bitte tragen Sie ein Bank- oder Kassenkonto in Zahlungsweise {0} ein" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Bitte tragen Sie jeweils ein Bank- oder Kassenkonto in Zahlungsweisen {} ein" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Bitte legen Sie im Unternehmen {} das Standardkonto für Wechselkursgewinne/-verluste fest" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38738,11 +38736,11 @@ msgstr "Bitte setzen Sie Filter basierend auf Artikel oder Lager" msgid "Please set one of the following:" msgstr "Bitte stellen Sie eine der folgenden Optionen ein:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "Bitte geben Sie die Anzahl der gebuchten Abschreibungen zu Beginn an" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Bitte setzen Sie wiederkehrende nach dem Speichern" @@ -38750,7 +38748,7 @@ msgstr "Bitte setzen Sie wiederkehrende nach dem Speichern" msgid "Please set the Customer Address" msgstr "Bitte geben Sie die Kundenadresse an" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Bitte die Standardkostenstelle im Unternehmen {0} festlegen." @@ -38805,7 +38803,7 @@ msgstr "Bitte stellen Sie {0} in Unternehmen {1} ein, um Wechselkursgewinne/-ver msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Bitte setzen Sie {0} auf {1}, das gleiche Konto, das in der ursprünglichen Rechnung {2} verwendet wurde." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Bitte richten Sie ein Gruppenkonto mit dem Kontotyp - {0} für die Firma {1} ein und aktivieren Sie es" @@ -38813,7 +38811,7 @@ msgstr "Bitte richten Sie ein Gruppenkonto mit dem Kontotyp - {0} für die Firma msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Bitte teilen Sie diese E-Mail mit Ihrem Support-Team, damit es das Problem finden und beheben kann." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Bitte Unternehmen angeben" @@ -38823,8 +38821,8 @@ msgstr "Bitte Unternehmen angeben" msgid "Please specify Company to proceed" msgstr "Bitte Unternehmen angeben um fortzufahren" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Bitte eine gültige Zeilen-ID für die Zeile {0} in Tabelle {1} angeben" @@ -38832,11 +38830,11 @@ msgstr "Bitte eine gültige Zeilen-ID für die Zeile {0} in Tabelle {1} angeben" msgid "Please specify a {0} first." msgstr "Bitte geben Sie zuerst {0} ein." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Bitte geben Sie mindestens ein Attribut in der Attributtabelle ein" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Bitte entweder die Menge oder den Wertansatz oder beides eingeben" @@ -38844,6 +38842,14 @@ msgstr "Bitte entweder die Menge oder den Wertansatz oder beides eingeben" msgid "Please specify from/to range" msgstr "Bitte Von-/Bis-Bereich genau angeben" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Bitte versuchen Sie es in einer Stunde erneut." @@ -39007,7 +39013,7 @@ msgstr "Gepostet am" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39032,7 +39038,7 @@ msgstr "Gepostet am" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39075,8 +39081,8 @@ msgstr "Buchungsdatum" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Buchungsdatum darf nicht in der Zukunft liegen" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39084,7 +39090,7 @@ msgstr "Buchungsdatum darf nicht in der Zukunft liegen" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "Das Buchungsdatum wird auf das heutige Datum geändert, da \"Buchungsdatum und -uhrzeit bearbeiten\" nicht markiert ist. Sind Sie sicher, dass Sie fortfahren möchten?" @@ -39277,6 +39283,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "Vorauszahlungen" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "Präsident" @@ -39366,7 +39376,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Letztes Geschäftsjahr nicht abgeschlossen" @@ -39508,7 +39518,7 @@ msgstr "Preisliste Land" msgid "Price List Currency" msgstr "Preislistenwährung" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Preislistenwährung nicht ausgewählt" @@ -39629,7 +39639,7 @@ msgstr "Preis nicht UOM abhängig" msgid "Price Per Unit ({0})" msgstr "Preis pro Einheit ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "Für den Artikel ist kein Preis festgelegt." @@ -39740,7 +39750,7 @@ msgstr "Die Preisregel wird zuerst basierend auf dem Feld 'Anwenden auf' ausgew msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "Die Preisregel dient dazu, die Preisliste zu überschreiben oder den Rabattprozentsatz basierend auf bestimmten Kriterien zu definieren." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "Die Preisregel {0} wurde aktualisiert" @@ -39948,8 +39958,8 @@ msgid "Priorities" msgstr "Prioritäten" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "Die Priorität kann nicht kleiner als 1 sein." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40130,7 +40140,7 @@ msgstr "Abonnement verarbeiten" msgid "Process in Single Transaction" msgstr "Verarbeitung in einer einzigen Transaktion" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40256,7 +40266,7 @@ msgstr "Produkt-Bundle" msgid "Product Bundle Balance" msgstr "Produkt-Bundle-Balance" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40281,7 +40291,7 @@ msgstr "Produkt-Bundle-Hilfe" msgid "Product Bundle Item" msgstr "Produkt-Bundle-Artikel" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40484,7 +40494,7 @@ msgstr "Produkte" msgid "Profit & Loss" msgstr "Profiteinbuße" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Gewinn in diesem Jahr" @@ -40513,6 +40523,10 @@ msgstr "Gewinn und Verlust" msgid "Profit and Loss Statement" msgstr "Gewinn- und Verlustrechnung" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40521,8 +40535,8 @@ msgstr "Gewinn- und Verlustrechnung" msgid "Profit and Loss Summary" msgstr "Gewinn und Verlust Zusammenfassung" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Jahresüberschuss" @@ -40595,7 +40609,7 @@ msgstr "Projektstatus" msgid "Project Summary" msgstr "Projektübersicht" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Projektzusammenfassung für {0}" @@ -40675,7 +40689,7 @@ msgstr "Projektweise Bestandsverfolgung" msgid "Project wise Stock Tracking " msgstr "Projektbezogene Lagerbestandsverfolgung" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Projektbezogene Daten sind für das Angebot nicht verfügbar" @@ -40726,7 +40740,7 @@ msgstr "Geplante Menge" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40872,7 +40886,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Perspektiven engagiert, aber nicht umgewandelt" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "Geschützter DocType" @@ -40905,9 +40919,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "Vorläufiges Aufwandskonto" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Vorläufiger Gewinn / Verlust (Haben)" @@ -41135,8 +41149,8 @@ msgstr "Trendanalyse Eingangsrechnungen" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Eingangsrechnung kann nicht gegen bestehenden Vermögensgegenstand {0} ausgestellt werden" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Eingangsrechnung {0} ist bereits gebucht" @@ -41177,7 +41191,7 @@ msgstr "Eingangsrechnungen" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41201,11 +41215,11 @@ msgstr "Eingangsrechnungen" msgid "Purchase Order" msgstr "Bestellung" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Bestellbetrag" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Bestellbetrag (Firmenwährung)" @@ -41220,7 +41234,7 @@ msgstr "Bestellbetrag (Firmenwährung)" msgid "Purchase Order Analysis" msgstr "Bestellanalyse" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Bestelldatum" @@ -41269,8 +41283,8 @@ msgid "Purchase Order Required" msgstr "Bestellung erforderlich" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Bestellung erforderlich für Artikel {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41329,8 +41343,8 @@ msgid "Purchase Orders to Receive" msgstr "Anzuliefernde Bestellungen" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Bestellungen {0} sind nicht verknüpft" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41419,8 +41433,8 @@ msgid "Purchase Receipt Required" msgstr "Eingangsbeleg notwendig" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Eingangsbeleg für Artikel {} erforderlich" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41439,8 +41453,8 @@ msgid "Purchase Receipt Trends " msgstr "Trendanalyse Eingangsbelege " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Der Eingangsbeleg enthält keinen Artikel, für den die Option "Probe aufbewahren" aktiviert ist." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41667,7 +41681,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41686,7 +41700,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41751,7 +41765,7 @@ msgstr "Menge nach Transaktion" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41788,7 +41802,7 @@ msgstr "Menge pro Einheit" msgid "Qty To Manufacture" msgstr "Herzustellende Menge" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "Die Herzustellende Menge ({0}) kann nicht ein Bruchteil der Maßeinheit {2} sein. Um dies zu ermöglichen, deaktivieren Sie '{1}' in der Maßeinheit {2}." @@ -41883,7 +41897,7 @@ msgstr "Zu verbrauchende Menge" msgid "Qty to Bill" msgstr "Menge zu Bill" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Zu produzierende Menge" @@ -42069,7 +42083,7 @@ msgstr "Qualitätsprüfung" msgid "Quality Inspection Analysis" msgstr "Qualitätsprüfungsanalyse" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42146,7 +42160,7 @@ msgstr "Qualitätsprüfung {0} wurde für Artikel {1} nicht gebucht" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "Qualitätsprüfung {0} wurde für den Artikel {1} abgelehnt" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Qualitätsprüfung(en)" @@ -42229,7 +42243,7 @@ msgstr "Qualitätsüberprüfung" msgid "Quality Review Objective" msgstr "Qualitätsüberprüfungsziel" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42273,12 +42287,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42429,7 +42443,7 @@ msgstr "Menge ist erforderlich" msgid "Quantity must be greater than zero" msgstr "Menge muss größer als null sein" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "Menge muss größer als null sein." @@ -42457,11 +42471,11 @@ msgstr "Menge sollte größer 0 sein" msgid "Quantity to Manufacture" msgstr "Menge zu fertigen" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "Die herzustellende Menge darf für den Vorgang {0} nicht Null sein." -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Menge Herstellung muss größer als 0 sein." @@ -42469,6 +42483,10 @@ msgstr "Menge Herstellung muss größer als 0 sein." msgid "Quantity to Scan" msgstr "Zu scannende Menge" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42494,7 +42512,7 @@ msgstr "Quartal {0} {1}" msgid "Query Route String" msgstr "Abfrage Route String" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "Die Größe der Warteschlange sollte zwischen 5 und 100 liegen" @@ -42734,7 +42752,7 @@ msgstr "Gemeldet von (E-Mail)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42918,8 +42936,8 @@ msgid "Rate at which this tax is applied" msgstr "Kurs, zu dem dieser Steuersatz angewandt wird" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "Einzelpreis von '{}' Artikeln kann nicht geändert werden" +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43237,7 +43255,7 @@ msgstr "Grund für das auf Eis legen" msgid "Reason for Failure" msgstr "Grund des Fehlers" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Grund für das auf Eis legen" @@ -43479,8 +43497,8 @@ msgstr "Empfängerliste ist leer. Bitte eine Empfängerliste erstellen" msgid "Receiving" msgstr "Empfang" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Letzte Bestellungen" @@ -43656,6 +43674,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43706,7 +43728,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Rekursions-Schwellenwert darf nicht kleiner als 0 sein" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "Rekursive Rabatte mit gemischten Bedingungen werden vom System nicht unterstützt" @@ -43786,7 +43808,7 @@ msgstr "Referenz #" msgid "Reference #{0} dated {1}" msgstr "Referenz #{0} vom {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Stichtag für Skonto" @@ -44078,8 +44100,8 @@ msgid "Rejected Warehouse" msgstr "Ausschusslager" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Ausschusslager und Annahmelager können nicht identisch sein." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44185,7 +44207,7 @@ msgstr "Bemerkung" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44224,7 +44246,7 @@ msgstr "Null-Einträge entfernen" msgid "Remove item if charges is not applicable to that item" msgstr "Entferne Artikel, wenn Gebühren nicht für diesen Artikel anwendbar sind" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Artikel wurden ohne Veränderung der Menge oder des Wertes entfernt." @@ -44376,7 +44398,7 @@ msgstr "Fehler melden" msgid "Report Line Items" msgstr "Berichtszeilenpositionen" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44459,7 +44481,7 @@ msgstr "Fehlerprotokoll für Umbuchungen" msgid "Repost Item Valuation" msgstr "Artikelbewertung neu buchen" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "Artikelbewertung neu buchen wurde für ausgewählte fehlgeschlagene Datensätze neu gestartet." @@ -44505,6 +44527,15 @@ msgstr "Neubuchung im Hintergrund gestartet" msgid "Reposting Data File" msgstr "Neubuchungsdatendatei" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44589,7 +44620,7 @@ msgstr "Benötigt bis Datum" msgid "Reqd Qty (BOM)" msgstr "Benötigte Menge (Stückliste)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Erforderlich nach Datum" @@ -44705,11 +44736,11 @@ msgstr "Angeforderte Menge" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Angefragte Menge: Zum Kauf angefragte, aber nicht bestellte Menge." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Anfordernde Site" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Anforderer" @@ -44888,6 +44919,10 @@ msgstr "Reservierter Bestand" msgid "Reserve Warehouse" msgstr "Lager reservieren" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "Für Rohstoffe reservieren" @@ -44926,8 +44961,8 @@ msgid "Reserved Qty" msgstr "Reservierte Menge" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "Die reservierte Menge ({0}) darf kein Bruchteil sein. Um dies zu ermöglichen, deaktivieren Sie '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Die reservierte Menge ({0}) darf kein Bruchteil sein. Um dies zu ermöglichen, deaktivieren Sie '{1}' in UOM {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44971,7 +45006,7 @@ msgstr "Reservierte Menge" msgid "Reserved Quantity for Production" msgstr "Reservierte Menge für die Produktion" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Reservierte Seriennr." @@ -44987,13 +45022,13 @@ msgstr "Reservierte Seriennr." #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Reservierter Bestand" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Reservierter Bestand für Charge" @@ -45487,6 +45522,10 @@ msgstr "Der zurückgegebene Wechselkurs ist weder eine Ganzzahl noch eine Gleitk msgid "Returns" msgstr "Retouren" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45911,11 +45950,11 @@ msgstr "Routing-Name" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Zeile {0}: Es kann nicht mehr als {1} für Artikel {2} zurückgegeben werden" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Zeile {0}: Bitte fügen Sie Serien- und Chargenbündel für Artikel {1} hinzu" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "Zeile {0}: Bitte geben Sie die Menge für Artikel {1} ein, da sie nicht Null ist." @@ -45999,23 +46038,23 @@ msgstr "Zeile #{0}: Stückliste für Fertigerzeugnis {1} nicht gefunden" msgid "Row #{0}: Batch No {1} is already selected." msgstr "Zeile #{0}: Die Chargennummer {1} ist bereits ausgewählt." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "Zeile #{0}: Chargennummer(n) {1} gehört/gehören nicht zur verknüpften Fremdvergabe-Eingangsbestellung. Bitte wählen Sie gültige Chargennummer(n) aus." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Zeile {0}: Es kann nicht mehr als {1} zu Zahlungsbedingung {2} zugeordnet werden" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "Zeile #{0}: Diese Fertigungslagerbuchung kann nicht storniert werden, da die in Rechnung gestellte Menge von Artikel {1} nicht größer sein kann als die verbrauchte Menge." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "Zeile #{0}: Diese Fertigungs-Lagerbuchung kann nicht storniert werden, da die produzierte Menge des Sekundärartikels {1} nicht kleiner als die gelieferte Menge sein darf." -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "Zeile #{0}: Diese Lagerbuchung kann nicht storniert werden, da die zurückgegebene Menge nicht größer sein kann als die gelieferte Menge für Artikel {1} in der verknüpften Fremdvergabe-Eingangsbestellung" @@ -46091,13 +46130,16 @@ msgstr "Zeile #{0}: Es konnten nicht genügend {1}-Einträge zum Abgleichen gefu msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Zeile #{0}: Kumulativer Schwellenwert kann nicht kleiner sein als der Schwellenwert für Einzeltransaktionen" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} für Fremdvergabe-Eingangsbestellung Position {2} ({3}) kann nicht mehrfach hinzugefügt werden." -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} kann nicht mehrfach im Fremdvergabe-Eingangsprozess hinzugefügt werden." @@ -46109,7 +46151,7 @@ msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} kann nicht mehrfach hin msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} existiert nicht in der Tabelle „Erforderliche Elemente“, die mit der Fremdvergabe-Eingangsbestellung verknüpft ist." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} überschreitet die über die Fremdvergabe-Eingangsbestellung verfügbare Menge" @@ -46117,12 +46159,12 @@ msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} überschreitet die übe msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} weist eine unzureichende Menge in der Fremdvergabe-Eingangsbestellung auf. Verfügbare Menge: {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} gehört nicht zur Fremdvergabe-Eingangsbestellung {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} ist nicht Teil von Arbeitsauftrag {2}" @@ -46134,7 +46176,7 @@ msgstr "Zeile #{0}: Datumsüberschneidung mit einer anderen Zeile in Gruppe {1}" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Zeile #{0}: Standard-Stückliste für Fertigerzeugnis {1} nicht gefunden" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Zeile #{0}: Das Abschreibungsstartdatum ist erforderlich" @@ -46142,6 +46184,10 @@ msgstr "Zeile #{0}: Das Abschreibungsstartdatum ist erforderlich" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Referenz {1} {2} in Zeile {0} kommt doppelt vor" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Zeile {0}: Voraussichtlicher Liefertermin kann nicht vor Bestelldatum sein" @@ -46154,11 +46200,18 @@ msgstr "Zeile #{0}: Aufwandskonto für den Artikel nicht festgelegt {1}. {2}" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "Zeile #{0}: Aufwandskonto {1} ist für die Eingangsrechnung {2} nicht gültig. Es sind nur Aufwandskonten aus Nicht-Lagerartikeln erlaubt." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Zeile #{0}: Menge für Fertigerzeugnis darf nicht Null sein" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46181,8 +46234,8 @@ msgstr "Zeile #{0}: Fertigerzeugnis muss {1} sein" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "Zeile #{0}: Die Referenz auf das Fertigerzeugnis ist für den Sekundärartikel {1} erforderlich." -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "Zeile #{0}: Für vom Kunden beigestellter Artikel {1} muss Quelllager {2} sein" @@ -46194,7 +46247,7 @@ msgstr "Zeile #{0}: Für {1} können Sie den Referenzbeleg nur auswählen, wenn msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Zeile #{0}: Für {1} können Sie den Referenzbeleg nur auswählen, wenn das Konto belastet wird" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "Zeile #{0}: Abschreibungshäufigkeit muss größer als null sein" @@ -46206,6 +46259,10 @@ msgstr "Zeile #{0}: Von-Datum kann nicht vor Bis-Datum liegen" msgid "Row #{0}: From Time and To Time fields are required" msgstr "Zeile #{0}: Die Felder „Von-Zeit“ und „Bis-Zeit“ sind erforderlich" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Zeile {0}: Element hinzugefügt" @@ -46234,16 +46291,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "Zeile #{0}: Artikel {1} im Lager {2}: Verfügbar {3}, Benötigt {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "Zeile #{0}: Artikel {1} ist kein vom Kunden beigestellter Artikel." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Zeile {0}: Element {1} ist kein serialisiertes / gestapeltes Element. Es kann keine Seriennummer / Chargennummer dagegen haben." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Zeile #{0}: Artikel {1} gehört nicht zur Fremdvergabe-Eingangsbestellung {2}" @@ -46259,13 +46316,17 @@ msgstr "Zeile #{0}: Artikel {1} ist kein Lagerartikel" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "Zeile #{0}: Artikel {1} stimmt nicht überein. Das Ändern des Artikelcodes ist nicht zulässig, fügen Sie stattdessen eine andere Zeile hinzu." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "Zeile #{0}: Artikel {1} stimmt nicht überein. Das Ändern der Artikelnummer ist nicht zulässig." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46275,15 +46336,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Zeile {0}: Buchungssatz {1} betrifft nicht Konto {2} oder bereits mit einem anderen Beleg verrechnet" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "Zeile #{0}: {1} für Unternehmen {2} fehlt." -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "Zeile #{0}: Der nächste Abschreibungstermin kann nicht vor dem Verfügbarkeitsdatum liegen" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "Zeile #{0}: Der nächste Abschreibungstermin kann nicht vor dem Einkaufsdatum liegen" @@ -46295,24 +46356,48 @@ msgstr "Zeile {0}: Es ist nicht erlaubt den Lieferanten zu wechseln, da bereits msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Zeile #{0}: Nur {1} zur Reservierung für den Artikel {2} verfügbar" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "Zeile #{0}: Kumulierte Abschreibungen zu Beginn müssen kleiner oder gleich {1} sein" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "Zeile #{0}: Überverbrauch von vom Kunden beigestelltem Artikel {1} gegen Arbeitsauftrag {2} ist im Fremdvergabe-Eingangsprozess nicht zulässig." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Zeile #{0}: Bitte wählen Sie den Artikelcode in den Baugruppenartikeln aus" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Zeile #{0}: Bitte wählen Sie die Stücklisten-Nr. in den Montageartikeln" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "Zeile #{0}: Bitte wählen Sie das Fertigerzeugnis aus, für das dieser vom Kunden beigestellte Artikel verwendet werden soll." @@ -46328,6 +46413,10 @@ msgstr "Zeile {0}: Bitte Nachbestellmenge angeben" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Zeile #{0}: Bitte aktualisieren Sie das aktive/passive Rechnungsabgrenzungskonto in der Artikelzeile oder das Standardkonto in den Unternehmenseinstellungen" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46347,8 +46436,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Zeile #{0}: Menge muss eine positive Zahl sein" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Zeile #{0}: Die Menge sollte kleiner oder gleich der verfügbaren Menge zum Reservieren sein (Ist-Menge – reservierte Menge) {1} für Artikel {2} der Charge {3} im Lager {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46370,7 +46459,7 @@ msgstr "Zeile #{0}: Die Menge kann keine nicht-positive Zahl sein. Bitte erhöhe msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Zeile {0}: Artikelmenge {1} kann nicht Null sein." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "Zeile #{0}: Die Menge von Artikel {1} kann nicht mehr als {2} {3} für Fremdvergabe-Eingangsbestellung {4} sein" @@ -46378,17 +46467,17 @@ msgstr "Zeile #{0}: Die Menge von Artikel {1} kann nicht mehr als {2} {3} für F msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Zeile #{0}: Die zu reservierende Menge für den Artikel {1} sollte größer als 0 sein." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Zeile #{0}: Einzelpreis muss gleich sein wie {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Zeile {0}: Referenzdokumenttyp muss eine der Bestellung, Eingangsrechnung oder Buchungssatz sein" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Zeile #{0}: Referenzbelegtyp muss einer der folgenden sein: Auftrag, Ausgangsrechnung, Buchungssatz oder Mahnung" @@ -46408,11 +46497,11 @@ msgstr "Zeile #{0}: Reparaturkosten {1} übersteigen den verfügbaren Betrag {2} msgid "Row #{0}: Return Against is required for returning asset" msgstr "Zeile #{0}: 'Korrektur von' ist erforderlich für die Rückgabe eines Vermögensgegenstands" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "Zeile #{0}: Die zurückgegebene Menge kann nicht größer sein als die verfügbare Menge für Artikel {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "Zeile #{0}: Die zurückgegebene Menge kann nicht größer sein als die zur Rückgabe verfügbare Menge für Artikel {1}" @@ -46422,18 +46511,19 @@ msgstr "Zeile #{0}: Menge des Sekundärartikels darf nicht null sein" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "Zeile #{0}: Verkaufspreis für Artikel {1} liegt unter {2}.\n" -"\t\t\t\t\tVerkauf {3} sollte mindestens {4} betragen.

                    Alternativ\n" -"\t\t\t\t\tkönnen Sie '{5}' in {6} deaktivieren, um\n" -"\t\t\t\t\tdiese Validierung zu umgehen." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "Zeile #{0}: Sequenz-ID muss für Arbeitsgang {3} {1} oder {2} sein." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Zeile {0}: Seriennummer {1} gehört nicht zu Charge {2}" @@ -46446,7 +46536,7 @@ msgstr "Zeile #{0}: Seriennummer {1} für Artikel {2} ist in {3} {4} nicht verf msgid "Row #{0}: Serial No {1} is already selected." msgstr "Zeile #{0}: Die Seriennummer {1} ist bereits ausgewählt." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "Zeile #{0}: Seriennummer(n) {1} gehört/gehören nicht zur verknüpften Fremdvergabe-Eingangsbestellung. Bitte wählen Sie gültige Seriennummer(n) aus." @@ -46470,7 +46560,7 @@ msgstr "Zeile {0}: Lieferanten für Artikel {1} einstellen" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "Zeile #{0}: Da 'Halbfertige Waren nachverfolgen' aktiviert ist, kann die Stückliste {1} nicht für Artikel der Unterbaugruppe verwendet werden" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Zeile #{0}: Quelllager muss dasselbe wie Kundenlager {1} aus der verknüpften Fremdvergabe-Eingangsbestellung sein" @@ -46539,7 +46629,7 @@ msgstr "Zeile #{0}: Kein Bestand für den Artikel {1} im Lager {2} verfügbar." msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "Zeile #{0}: Lagermenge {1} ({2}) für Artikel {3} kann nicht größer als {4} sein" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Zeile #{0}: Ziellager muss dasselbe wie Kundenlager {1} aus der verknüpften Fremdvergabe-Eingangsbestellung sein" @@ -46547,19 +46637,27 @@ msgstr "Zeile #{0}: Ziellager muss dasselbe wie Kundenlager {1} aus der verknüp msgid "Row #{0}: The batch {1} has already expired." msgstr "Zeile {0}: Der Stapel {1} ist bereits abgelaufen." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Zeile #{0}: Das Lager {1} ist kein untergeordnetes Lager eines Gruppenlagers {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Zeile {0}: Timing-Konflikte mit Zeile {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Zeile #{0}: Die Gesamtzahl der Abschreibungen kann nicht kleiner oder gleich der Anzahl der gebuchten Abschreibungen zu Beginn sein" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "Zeile #{0}: Die Gesamtzahl der Abschreibungen muss größer als null sein" @@ -46571,11 +46669,15 @@ msgstr "Zeile #{0}: Lager {1} stimmt nicht mit dem Lager {2} im Serien- und Char msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "Zeile #{0}: Einbehaltener Betrag {1} stimmt nicht mit dem berechneten Betrag {2} überein." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "Zeile #{0}: Arbeitsauftrag vorhanden für volle oder teilweise Menge von Artikel {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Zeile #{0}: Sie können die Bestandsdimension '{1}' in der Bestandsabgleich nicht verwenden, um die Menge oder den Wertansatz zu ändern. Die Bestandsabgleich mit Bestandsdimensionen ist ausschließlich für die Durchführung von Eröffnungsbuchungen vorgesehen." @@ -46583,6 +46685,19 @@ msgstr "Zeile #{0}: Sie können die Bestandsdimension '{1}' in der Bestandsabgle msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Zeile #{0}: Sie müssen einen Vermögensgegenstand für Artikel {1} auswählen." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Zeile #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Zeile {0}: {1} kann für Artikel nicht negativ sein {2}" @@ -46599,6 +46714,14 @@ msgstr "Zeile {0}: {1} ist erforderlich, um die Eröffnungsrechnungen {2} zu ers msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Zeile #{0}: {1} von {2} sollte {3} sein. Bitte aktualisieren Sie die {1} oder wählen Sie ein anderes Konto." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "Zeile #{0}: Menge für Artikel {1} darf nicht null sein." @@ -46639,71 +46762,10 @@ msgstr "Zeile {idx}: {from_warehouse_field} und {to_warehouse_field} dürfen nic msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "Zeile {idx}: {schedule_date} darf nicht vor {transaction_date} liegen." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Zeile # {}: Die Währung von {} - {} stimmt nicht mit der Firmenwährung überein." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "Zeile #{}: Entweder Geschäftspartner-ID oder Geschäftspartnername ist erforderlich" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Zeile #{}: Das Finanzbuch sollte nicht leer sein, da Sie mehrere verwenden." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Zeile # {}: POS-Rechnung {} wurde {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Zeile # {}: POS-Rechnung {} ist nicht gegen Kunden {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Zeile #{}: POS-Rechnung {} ist noch nicht gebucht" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "Zeile #{}: Partei-ID ist erforderlich" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Zeile #{}: Bitte weisen Sie die Aufgabe einem Mitglied zu." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Zeile #{}: Bitte verwenden Sie ein anderes Finanzbuch." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Zeile # {}: Seriennummer {} kann nicht zurückgegeben werden, da sie nicht in der Originalrechnung {} abgewickelt wurde" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Zeile #{}: Die ursprüngliche Rechnung {} der Rechnungskorrektur {} ist nicht konsolidiert." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Zeile #{}: Sie können keine positiven Mengen in einer Retourenrechnung hinzufügen. Bitte entfernen Sie Artikel {}, um die Rückgabe abzuschließen." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Zeile #{}: Artikel {} wurde bereits kommissioniert." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Reihe #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Zeile # {}: {} {} existiert nicht." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Zeile #{}: {} {} gehört nicht zur Firma {}. Bitte wählen Sie eine gültige {} aus." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Zeile Nr. {0}: Lager ist erforderlich. Bitte legen Sie ein Standardlager für Artikel {1} und Unternehmen {2} fest" @@ -46716,10 +46778,6 @@ msgstr "Zeile {0}: Vorgang ist für die Rohmaterialposition {1} erforderlich" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "Zeile {0} kommissionierte Menge ist kleiner als die erforderliche Menge, zusätzliche {1} {2} erforderlich." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Zeile {0}# Artikel {1} wurde in der Tabelle „Gelieferte Rohstoffe“ in {2} {3} nicht gefunden" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Zeile {0}: Die akzeptierte Menge und die abgelehnte Menge können nicht gleichzeitig Null sein." @@ -46740,19 +46798,19 @@ msgstr "Zeile {0}: Voraus gegen Kunde muss Kredit" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Zeile {0}: Voraus gegen Lieferant muss belasten werden" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Zeile {0}: Der zugewiesene Betrag {1} muss kleiner oder gleich dem ausstehenden Rechnungsbetrag {2} sein" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Zeile {0}: Der zugewiesene Betrag {1} muss kleiner oder gleich dem verbleibenden Zahlungsbetrag {2} sein" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Zeile {0}: Da {1} aktiviert ist, können dem {2}-Eintrag keine Rohstoffe hinzugefügt werden. Verwenden Sie einen {3}-Eintrag, um Rohstoffe zu verbrauchen." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Zeile {0}: Bill of Materials nicht für den Artikel gefunden {1}" @@ -46768,11 +46826,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Zeile {0}: Umrechnungsfaktor ist zwingend erfoderlich" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Zeile {0}: Die Kostenstelle {1} gehört nicht zum Unternehmen {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Zeile {0}: Kostenstelle ist für einen Eintrag {1} erforderlich" @@ -46800,24 +46858,24 @@ msgstr "Zeile {0}: Auslieferungslager kann nicht identisch mit Kundenlager für msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Zeile {0}: Fälligkeitsdatum in der Tabelle "Zahlungsbedingungen" darf nicht vor dem Buchungsdatum liegen" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Zeile {0}: Entweder die Referenz zu einem \"Lieferschein-Artikel\" oder \"Verpackter Artikel\" ist obligatorisch." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Zeile {0}: Wechselkurs ist erforderlich" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "Zeile {0}: Erwarteter Wert nach Nutzungsdauer darf nicht negativ sein" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "Zeile {0}: Erwarteter Wert nach Nutzungsdauer muss kleiner als Nettokaufbetrag sein" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "Zeile {0}: Aufwandskonto {1} ist mit Unternehmen {2} verknüpft. Bitte ein Konto auswählen, das zum Unternehmen {3} gehört." @@ -46838,6 +46896,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Zeile {0}: Von Zeit und zu Zeit ist obligatorisch." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Zeile {0}: Zeitüberlappung in {1} mit {2}" @@ -46859,8 +46920,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Zeile {0}: Ungültige Referenz {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Zeile {0}: Artikelsteuervorlage aktualisiert gemäß Gültigkeit und angewendetem Satz" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46890,7 +46951,7 @@ msgstr "Zeile {0}: Die Vorgangszeit für Arbeitsgang {1} muss größer als 0 sei msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Zeile {0}: Verpackte Menge muss gleich der {1} Menge sein." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Zeile {0}: Für den Artikel {1} wurde bereits ein Packzettel erstellt." @@ -46914,7 +46975,7 @@ msgstr "Zeile {0}: \"Zahlung zu Auftrag bzw. Bestellung\" sollte immer als \"Vor msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Zeile {0}: Wenn es sich um eine Vorkasse-Buchung handelt, bitte \"Ist Vorkasse\" zu Konto {1} anklicken, ." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Zeile {0}: Bitte geben Sie einen gültigen Lieferschein Artikel oder verpackten Artikel an." @@ -46922,14 +46983,14 @@ msgstr "Zeile {0}: Bitte geben Sie einen gültigen Lieferschein Artikel oder ver msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Zeile {0}: Bitte wählen Sie eine Stückliste für Artikel {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Zeile {0}: Bitte wählen Sie eine aktive Stückliste für Artikel {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Zeile {0}: Bitte wählen Sie eine gültige Stückliste für Artikel {1}." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Zeile {0}: Bitte setzen Sie den Steuerbefreiungsgrund in den Umsatzsteuern und -gebühren" @@ -46946,11 +47007,11 @@ msgstr "Zeile {0}: Bitte geben Sie den richtigen Code für die Zahlungsweise ein msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Zeile {0}: Das Projekt muss mit dem in der Zeiterfassung festgelegten Projekt identisch sein: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Zeile {0}: Eingangsrechnung {1} hat keine Auswirkungen auf den Bestand." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Zeile {0}: Die Menge darf für den Artikel {2} nicht größer als {1} sein." @@ -46958,7 +47019,7 @@ msgstr "Zeile {0}: Die Menge darf für den Artikel {2} nicht größer als {1} se msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Zeile {0}: Menge in Lager-ME kann nicht Null sein." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Zeile {0}: Menge muss größer als 0 sein." @@ -46970,7 +47031,7 @@ msgstr "Zeile {0}: Die Menge darf nicht negativ sein." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "Zeile {0}: Ausgangsrechnung {1} wurde bereits für {2} erstellt" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46995,10 +47056,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "Zeile {0}: Der gesamte Ausgabebetrag für Konto {1} in {2} wurde bereits zugewiesen." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Zeile {0}: Die Menge des Artikels {1} muss eine positive Zahl sein" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Zeile {0}: Das {3}-Konto {1} gehört nicht zum Unternehmen {2}" @@ -47051,15 +47112,19 @@ msgstr "Zeile {0}: {1} {2} kann nicht identisch mit {3} (Konto der Partei) {4} s msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Zeile {0}: {1} {2} stimmt nicht mit {3} überein" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "Zeile {0}: {1} {2} ist mit dem Unternehmen {3} verknüpft. Bitte wählen Sie ein Dokument aus, das zum Unternehmen {4} gehört." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Zeile {0}: {2} Artikel {1} existiert nicht in {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Zeile {1}: Menge ({0}) darf kein Bruch sein. Deaktivieren Sie dazu '{2}' in UOM {3}." @@ -47098,8 +47163,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Zeilen: {0} haben „Zahlungseintrag“ als Referenztyp. Dies sollte nicht manuell festgelegt werden." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Zeilen: {0} im Abschnitt {1} sind ungültig. Der Referenzname sollte auf einen gültigen Zahlungseintrag oder Buchungssatz verweisen." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47159,10 +47224,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47230,7 +47291,7 @@ msgstr "SLA erfüllt am Status" msgid "SLA Paused On" msgstr "SLA pausiert am" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "SLA ist seit {0} auf Eis gelegt" @@ -47529,8 +47590,8 @@ msgid "Sales Invoice is not submitted" msgstr "Ausgangsrechnung ist nicht gebucht" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "Ausgangsrechnung wurde nicht von Benutzer {} erstellt" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47746,8 +47807,8 @@ msgstr "Auftrag {0} existiert bereits für die Kundenbestellung {1}. Um mehrere msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48154,7 +48215,7 @@ msgstr "Gleicher Artikel" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Dieselbe Artikel- und Lagerkombination wurde bereits eingegeben." @@ -48186,7 +48247,7 @@ msgstr "Beispiel Retention Warehouse" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Stichprobenumfang" @@ -48296,7 +48357,7 @@ msgstr "Gescannte Menge" msgid "Schedule Date" msgstr "Geplantes Datum" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "Zeitplanname" @@ -48307,7 +48368,7 @@ msgstr "Zeitplanname" msgid "Scheduled Date" msgstr "Geplantes Datum" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "Geplantes Datum ist erforderlich." @@ -48595,7 +48656,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "Buchhaltungsdimension auswählen." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Wählen Sie Alternatives Element" @@ -48616,7 +48677,7 @@ msgid "Select BOM and Qty for Production" msgstr "Wählen Sie Stückliste und Menge für die Produktion" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Chargennummer auswählen" @@ -48681,7 +48742,7 @@ msgstr "Dimension auswählen" msgid "Select Dispatch Address " msgstr "Absendeadresse auswählen" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Mitarbeiter auswählen" @@ -48706,7 +48767,7 @@ msgstr "Gegenstände auswählen" msgid "Select Items based on Delivery Date" msgstr "Wählen Sie die Positionen nach dem Lieferdatum aus" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "Artikel für die Qualitätsprüfung auswählen" @@ -48736,7 +48797,7 @@ msgstr "Auftragnehmer-Adresse auswählen" msgid "Select Loyalty Program" msgstr "Wählen Sie Treueprogramm" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "Zahlungsplan auswählen" @@ -48750,13 +48811,13 @@ msgid "Select Quantity" msgstr "Menge wählen" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Seriennummer auswählen" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Seriennummer und Charge auswählen" @@ -48847,6 +48908,7 @@ msgid "Select an Item Group." msgstr "Wählen Sie eine Artikelgruppe." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Wählen Sie ein Konto aus, das in der Kontowährung gedruckt werden soll" @@ -48989,10 +49051,14 @@ msgstr "Ausgewählte Belege" msgid "Selected date is" msgstr "Ausgewähltes Datum ist" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "Ausgewähltes Dokument muss in gebuchtem Zustand sein" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49140,7 +49206,7 @@ msgid "Send Emails to Suppliers" msgstr "Senden Sie E-Mails an Lieferanten" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "SMS verschicken" @@ -49224,7 +49290,7 @@ msgstr "Serien- / Chargenbündel fehlt" msgid "Serial / Batch No" msgstr "Serien-/Chargennr" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Serien-/Chargennrn." @@ -49281,10 +49347,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49326,6 +49393,10 @@ msgstr "Seriennummer / Charge" msgid "Serial No Already Assigned" msgstr "Seriennummer bereits zugewiesen" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Seriennummern gezählt" @@ -49343,7 +49414,7 @@ msgstr "Seriennummernbuch" msgid "Serial No Range" msgstr "Seriennummernbereich" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "Seriennummer reserviert" @@ -49388,8 +49459,8 @@ msgid "Serial No and Batch" msgstr "Seriennummer und Chargen" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "Der Seriennummern- und Chargen-Selektor kann nicht verwendet werden, wenn 'Serien-/Chargenfelder verwenden' aktiviert ist." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49400,7 +49471,7 @@ msgstr "Der Seriennummern- und Chargen-Selektor kann nicht verwendet werden, wen msgid "Serial No and Batch Traceability" msgstr "Seriennummern- und Chargen-Rückverfolgbarkeit" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "Seriennummer ist obligatorisch" @@ -49420,22 +49491,19 @@ msgstr "Seriennummer {0} bereits gescannt" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Seriennummer {0} gehört nicht zu Lieferschein {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Seriennummer {0} gehört nicht zu Artikel {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Seriennummer {0} existiert nicht" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "Seriennummer {0} existiert nicht" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "Seriennummer {0} wurde bereits geliefert. Sie kann nicht erneut in einer Fertigungs-/Umpackbuchung verwendet werden." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49449,25 +49517,26 @@ msgstr "Seriennummer {0} ist bereits dem Kunden {1} zugewiesen. Sie kann nur geg msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Seriennummer {0} ist im {1} {2} nicht vorhanden, daher können Sie sie nicht gegen {1} {2} zurückgeben" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Seriennummer {0} ist mit Wartungsvertrag versehen bis {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Seriennummer {0} ist innerhalb der Garantie bis {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Seriennummer {0} wurde nicht gefunden" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Seriennummer: {0} wurde bereits in eine andere POS-Rechnung übertragen." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49487,7 +49556,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "Seriennummern wurden erfolgreich erstellt" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Seriennummern sind bereits reserviert. Sie müssen die Reservierung aufheben, bevor Sie fortfahren." @@ -49588,6 +49657,10 @@ msgstr "Serien- und Chargenbündel {0} ist nicht gebucht" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49636,7 +49709,7 @@ msgstr "Serien- und Chargenreservierung" msgid "Serial and Batch Summary" msgstr "Serien- und Chargenzusammenfassung" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Seriennummer {0} wurde mehrfach erfasst" @@ -49644,122 +49717,12 @@ msgstr "Seriennummer {0} wurde mehrfach erfasst" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "Seriennummern für Artikel {0} unter Lager {1} nicht verfügbar. Bitte versuchen Sie, das Lager zu wechseln." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Nummernkreis" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Serie für Abschreibungs-Eintrag (Buchungssatz)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Serie ist zwingend erforderlich" @@ -49841,7 +49804,7 @@ msgid "Service Item {0} is disabled." msgstr "Dienstleistungsartikel {0} ist deaktiviert." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "Dienstleistungsartikel {0} muss ein Artikel ohne Lagerhaltung sein." @@ -49950,12 +49913,12 @@ msgid "Service Stop Date" msgstr "Service-Stopp-Datum" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Das Service-Stopp-Datum kann nicht nach dem Service-Enddatum liegen" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "Das Servicestoppdatum darf nicht vor dem Servicestartdatum liegen" @@ -49979,7 +49942,7 @@ msgstr "Vorschüsse setzen und zuordnen (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Grundpreis manuell einstellen" @@ -49994,7 +49957,7 @@ msgstr "Standard-Lieferant festlegen" msgid "Set Delivery Warehouse" msgstr "Lieferlager festlegen" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50099,7 +50062,7 @@ msgstr "Benennung von Serien- und Chargenbündel basierend auf Nummernkreis fest #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50117,7 +50080,7 @@ msgstr "Lieferant festlegen" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50143,7 +50106,7 @@ msgstr "Als \"abgeschlossen\" markieren" msgid "Set as Completed" msgstr "Als abgeschlossen festlegen" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Als \"verloren\" markieren" @@ -50241,15 +50204,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Legen Sie {0} in die Vermögensgegenstand-Kategorie {1} für das Unternehmen {2} fest" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Stellen Sie {0} in der Anlagenkategorie {1} oder im Unternehmen {2} ein" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "{0} in Firma {1} festlegen" @@ -50317,7 +50280,7 @@ msgid "Setting up company" msgstr "Firma gründen" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "Einstellung {0} ist erforderlich" @@ -50745,6 +50708,7 @@ msgid "Show Completed" msgstr "Show abgeschlossen" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "Soll/Haben in Unternehmenswährung anzeigen" @@ -50947,7 +50911,7 @@ msgstr "Nur die nächstfällige Zahlungsbedingung anzeigen" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Ausstehende Einträge anzeigen" @@ -51052,11 +51016,11 @@ msgstr "Einfache Python-Formel, die auf Ablesewert-Felder angewendet wird.
                    N msgid "Simultaneous" msgstr "Gleichzeitig" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "Da es aktive abschreibungsfähige Vermögensgegenstände in dieser Kategorie gibt, sind folgende Konten erforderlich.

                    " -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Da es einen Prozessverlust von {0} Einheiten für das Fertigerzeugnis {1} gibt, sollten Sie die Menge um {0} Einheiten für das Fertigerzeugnis {1} in der Artikeltabelle reduzieren." @@ -51117,7 +51081,7 @@ msgstr "Materialübertragung zu WIP überspringen" msgid "Skip Material Transfer to WIP Warehouse" msgstr "Überspringen Sie die Materialübertragung in das WIP-Lager" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "{0} DocType(s) übersprungen:
                    {1}" @@ -51173,8 +51137,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "Einige erforderliche Unternehmensdetails fehlen. Sie haben keine Berechtigung, diese zu aktualisieren. Bitte kontaktieren Sie Ihren Systemmanager." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Etwas ist schief gelaufen, bitte versuchen Sie es erneut" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51241,7 +51205,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51278,8 +51242,8 @@ msgstr "Quelle Typ" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51409,7 +51373,7 @@ msgstr "Split-Problem" msgid "Split Qty" msgstr "Abgespaltene Menge" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "Abgespaltene Menge muss kleiner sein als die Anzahl" @@ -51422,7 +51386,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Aufteilen von {0} {1} in {2} Zeilen gemäß Zahlungsbedingungen" @@ -51475,7 +51444,7 @@ msgstr "Künstlername" msgid "Stale Days" msgstr "Überfällige Tage" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Überfällige Tage sollten bei 1 beginnen." @@ -51540,10 +51509,26 @@ msgstr "Standard-Steuervorlage, die auf alle Verkaufstransaktionen angewendet we msgid "Standing Name" msgstr "Statusbezeichnung" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Starten / Fortsetzen" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Startdatum darf nicht vor dem aktuellen Datum liegen" @@ -51573,7 +51558,7 @@ msgstr "Die Startzeit kann nicht größer oder gleich der Endzeit für {0} sein. msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51602,10 +51587,14 @@ msgstr "Startdatum sollte für den Artikel {0} vor dem Enddatum liegen" msgid "Start date should be less than end date for task {0}" msgstr "Startdatum sollte weniger als Enddatum für Aufgabe {0} sein" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "Ein Hintergrundjob zum Erstellen von {1} {0} wurde gestartet. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51686,7 +51675,7 @@ msgstr "Statusdarstellung" msgid "Status and Reference" msgstr "Status und Referenz" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Der Status muss abgebrochen oder abgeschlossen sein" @@ -51814,8 +51803,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "Bestandsabschlusseintrag {0} existiert bereits für den ausgewählten Datumsbereich" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "Bestandsabschlusseintrag {0} wurde zur Verarbeitung in die Warteschlange gestellt, das System benötigt einige Zeit, um ihn abzuschließen." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51896,17 +51885,21 @@ msgstr "Lagerbuchungsartikel" msgid "Stock Entry Type" msgstr "Art der Lagerbuchung" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Für diese Pickliste wurde bereits eine Lagerbewegung erstellt" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Lagerbuchung {0} erstellt" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Lagerbuchung {0} erstellt" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52072,7 +52065,7 @@ msgstr "Prognostizierte Lagerbestandsmenge" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52155,7 +52148,7 @@ msgstr "Bestandsumbuchungs-Einstellungen" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52180,15 +52173,15 @@ msgstr "Bestandsreservierung" msgid "Stock Reservation Entries Cancelled" msgstr "Bestandsreservierungen storniert" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Bestandsreservierungen erstellt" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "Bestandsreservierungseinträge erstellt" @@ -52358,7 +52351,7 @@ msgstr "Lagerbewegungen" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52517,9 +52510,9 @@ msgstr "Die Reservierung für Bestand wurde für Arbeitsauftrag {0} aufgehoben." msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "Der Artikel {0} ist in Lager {1} nicht vorrätig." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "Lagermenge nicht ausreichend für Artikelnummer: {0} im Lager {1}. Verfügbare Menge {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52537,7 +52530,7 @@ msgstr "Lagerbewegungen, die älter als die genannten Tage sind, können nicht g msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "Der Bestand wird mit der Buchung des Eingangsbelegs reserviert, der gegen eine Materialanfrage für einen Auftrag erstellt wurde." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "Lagerbestände/Konten können nicht eingefroren werden, da die Verarbeitung rückwirkender Einträge noch läuft. Bitte versuchen Sie es später erneut." @@ -52552,7 +52545,7 @@ msgstr "Stone" msgid "Stop Reason" msgstr "Stoppen Sie die Vernunft" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Der angehaltene Arbeitsauftrag kann nicht abgebrochen werden. Stoppen Sie ihn zuerst, um ihn abzubrechen" @@ -52560,7 +52553,7 @@ msgstr "Der angehaltene Arbeitsauftrag kann nicht abgebrochen werden. Stoppen Si #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Lagerräume" @@ -52774,7 +52767,7 @@ msgstr "Umrechnungsfaktor für Unterauftrag" msgid "Subcontracting Delivery" msgstr "Untervergabe-Lieferung" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52846,7 +52839,7 @@ msgstr "Fremdvergabe-Eingangsbestellung Dienstleistungsartikel" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52884,7 +52877,7 @@ msgstr "Dienstleistung für Unterauftrag" msgid "Subcontracting Order Supplied Item" msgstr "Unterauftrag Gelieferter Artikel" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Unterauftrag {0} erstellt." @@ -52958,7 +52951,7 @@ msgstr "Untervergabe-Rücklieferung" msgid "Subcontracting Sales Order" msgstr "Fremdvergabe-Auftrag" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52977,7 +52970,7 @@ msgstr "Unterauftragsvergabe einrichten" msgid "Subdivision" msgstr "Teilgebiet" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Aktion Buchen fehlgeschlagen" @@ -53006,7 +52999,7 @@ msgstr "Buchen Sie diesen Arbeitsauftrag zur weiteren Bearbeitung." msgid "Submit your Quotation" msgstr "Buchen Sie Ihr Angebot" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53148,7 +53141,7 @@ msgstr "Erfolgseinstellungen" msgid "Successful" msgstr "Erfolgreich" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Erfolgreich abgestimmt" @@ -53326,7 +53319,7 @@ msgstr "Gelieferte Anzahl" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53508,7 +53501,7 @@ msgstr "Lieferantenrechnungsdatum" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Lieferantenrechnungsnr." @@ -53656,7 +53649,7 @@ msgstr "Vergleich der Lieferantenangebote" msgid "Supplier Quotation Item" msgstr "Lieferantenangebotsposition" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Lieferantenangebot {0} Erstellt" @@ -53841,10 +53834,6 @@ msgstr "Support-Team" msgid "Support Tickets" msgstr "Support-Tickets" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "Vermuteter Rabattbetrag" @@ -53931,7 +53920,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "Quellensteuer (TDS) Berechnungsübersicht" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "Quellensteuer (TDS) abgezogen" @@ -53992,8 +53981,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "Ziel-Vermögensgegenstand {0} gehört nicht zum Unternehmen {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "Ziel-Vermögensgegenstand {0} muss ein zusammengesetzter Vermögensgegenstand sein" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54102,11 +54091,11 @@ msgstr "Ziellager-Adressverknüpfung" msgid "Target Warehouse Reservation Error" msgstr "Fehler bei Ziellager-Reservierung" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "Das Ziellager für Fertigerzeugnisse muss mit dem Fertigerzeugnis-Lager {1} im Arbeitsauftrag {2} übereinstimmen, der mit der Fremdvergabe-Eingangsbestellung verknüpft ist." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "Das Ziellager für Fertigerzeugnisse muss mit dem Fertigerzeugnis-Lager {0} im Arbeitsauftrag {1} übereinstimmen, der mit der Fremdvergabe-Eingangsbestellung verknüpft ist." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "Ziellager ist vor der Buchung erforderlich" @@ -54582,7 +54571,7 @@ msgstr "Steuer wird nur für den Betrag einbehalten, der den kumulativen Schwell #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Steuerpflichtiger Betrag" @@ -54794,7 +54783,7 @@ msgstr "Fernsehen" msgid "Template Item" msgstr "Vorlagenelement" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Vorlagenelement ausgewählt" @@ -55101,23 +55090,27 @@ msgstr "Tesla" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "Text, der im Finanzbericht angezeigt wird (z. B. 'Gesamtumsatz', 'Zahlungsmittel und Zahlungsmitteläquivalente')" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "Die 'Von Paketnummer' Das Feld darf weder leer sein noch einen Wert kleiner als 1 haben." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "Der Zugriff auf die Angebotsanfrage vom Portal ist deaktiviert. Um den Zugriff zuzulassen, aktivieren Sie ihn in den Portaleinstellungen." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "Die Stückliste (BOM) wird ersetzt." -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "Die Charge {0} weist eine negative Chargenmenge {1} auf. Um dies zu beheben, öffnen Sie die Charge und klicken Sie auf „Chargenmenge neu berechnen“. Falls das Problem weiterhin besteht, erstellen Sie eine eingehende Lagerbuchung." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "Die Kampagne '{0}' existiert bereits für die {1} '{2}'." @@ -55142,6 +55135,10 @@ msgstr "Die Hauptbucheinträge und Schlusssalden werden im Hintergrund verarbeit msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Die Hauptbucheinträge werden im Hintergrund storniert, dies kann einige Minuten dauern." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Das Treueprogramm ist für das ausgewählte Unternehmen nicht gültig" @@ -55159,9 +55156,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "Die Entnahmeliste mit Bestandsreservierungseinträgen kann nicht aktualisiert werden. Wenn Sie Änderungen vornehmen müssen, empfehlen wir Ihnen, die bestehenden Bestandsreservierungseinträge zu stornieren, bevor Sie die Entnahmeliste aktualisieren." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "Die Prozessverlustmenge wurde gemäß den Jobkarten zurückgesetzt" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55171,11 +55171,15 @@ msgstr "Der Verkäufer ist mit {0} verknüpft" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Die Seriennummer in Zeile #{0}: {1} ist im Lager {2} nicht verfügbar." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Die Seriennummer {0} ist für {1} {2} reserviert und kann für keine andere Transaktion verwendet werden." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Das Serien- und Chargenbündel {0} ist für diese Transaktion nicht gültig. Die 'Art der Transaktion' sollte 'Nach außen' anstatt 'Nach innen' im Serien- und Chargenbündel {0} sein" @@ -55223,15 +55227,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "Die fertiggestellte Menge {0} des Vorgangs {1} darf nicht größer sein als die fertiggestellte Menge {2} eines vorherigen Vorgangs {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "Die Währung der Rechnung {} ({}) unterscheidet sich von der Währung dieser Mahnung ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "Der aktuelle POS-Eröffnungseintrag ist veraltet. Bitte schließen Sie ihn und erstellen Sie einen neuen." @@ -55280,6 +55284,10 @@ msgstr "Das Feld An Anteilseigner darf nicht leer sein" msgid "The field {0} in row {1} is not set" msgstr "Das Feld {0} in der Zeile {1} ist nicht gesetzt" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Die Felder Von Anteilseigner und An Anteilseigner dürfen nicht leer sein" @@ -55301,9 +55309,9 @@ msgstr "Das Geschäftsjahr wurde automatisch im deaktivierten Zustand erstellt, msgid "The folio numbers are not matching" msgstr "Die Folionummern stimmen nicht überein" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "Die folgenden Artikel, für die Einlagerungsregeln gelten, konnten nicht untergebracht werden:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55330,8 +55338,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Die folgenden Mitarbeiter berichten derzeit noch an {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "Die folgenden ungültigen Preisregeln werden gelöscht:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55343,7 +55351,7 @@ msgstr "Der/die folgende(n) Zahlungsplan/Zahlungspläne ist/sind bereits vorhand msgid "The following rows are duplicates:" msgstr "Die folgenden Zeilen sind Duplikate:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Die folgenden {0} wurden erstellt: {1}" @@ -55379,8 +55387,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "Die Artikel {items} sind nicht als {type_of} Artikel gekennzeichnet. Sie können sie in den Stammdaten der Artikel als {type_of} Artikel aktivieren." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "Die Jobkarte {0} befindet sich im Status {1} und Sie können sie nicht abschließen." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55417,12 +55425,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "Der Arbeitsgang {0} kann nicht mehrfach hinzugefügt werden" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "Der Arbeitsgang {0} kann nicht der Unterarbeitsgang sein" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55470,6 +55478,10 @@ msgstr "Der Prozentsatz, um den Sie mehr als die bestellte Menge erhalten oder l msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "Der Prozentsatz, den Sie mehr als die bestellte Menge übertragen dürfen. Wenn Sie zum Beispiel 100 Einheiten bestellt haben und Ihr Freibetrag 10% beträgt, dürfen Sie 110 Einheiten übertragen." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55479,7 +55491,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "Der reservierte Bestand wird freigegeben, wenn Sie Artikel aktualisieren. Möchten Sie wirklich fortfahren?" @@ -55496,8 +55508,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Die ausgewählten Stücklisten sind nicht für den gleichen Artikel" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Das ausgewählte Änderungskonto {} gehört nicht zur Firma {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55513,8 +55525,8 @@ msgstr "Der Verkäufer und der Käufer können nicht identisch sein" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "Das Seriennummern- und Chargenbündel {0} ist nicht mit {1} {2} verknüpft" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55532,11 +55544,11 @@ msgstr "Die Anteile sind bereits vorhanden" msgid "The shares don't exist with the {0}" msgstr "Die Anteile existieren nicht mit der {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "Der Bestand für den Artikel {0} im Lager {1} war am {2} negativ. Sie sollten einen positiven Eintrag {3} vor dem Datum {4} und der Uhrzeit {5} erstellen, um den korrekten Bewertungssatz zu buchen. Weitere Informationen finden Sie in der Dokumentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Der Bestand für den Artikel {0} im Lager {1} war am {2} negativ. Sie sollten einen positiven Eintrag {3} vor dem Datum {4} und der Uhrzeit {5} erstellen, um den korrekten Bewertungssatz zu buchen. Weitere Informationen finden Sie in der Dokumentation." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "Der Bestand wurde für die folgenden Artikel und Lager reserviert. Bitte heben Sie die Reservierung auf, um den Bestandsabgleich zu {0}:

                    {1}" @@ -55558,17 +55570,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "Das System erstellt eine Ausgangsrechnung oder eine POS-Rechnung über die POS-Oberfläche basierend auf dieser Einstellung. Bei Transaktionen mit hohem Volumen wird empfohlen, POS-Rechnung zu verwenden." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "Die Aufgabe wurde als Hintergrundjob in die Warteschlange gestellt. Falls bei der Verarbeitung im Hintergrund Probleme auftreten, fügt das System einen Kommentar zum Fehler in dieser Bestandsabstimmung hinzu und kehrt zum Entwurfsstadium zurück" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "Die Aufgabe wurde als Hintergrundjob in die Warteschlange gestellt. Falls bei der Verarbeitung im Hintergrund ein Problem auftritt, fügt das System einen Kommentar über den Fehler bei dieser Bestandsabstimmung hinzu und kehrt zur Stufe Gebucht zurück" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "Die gesamte Ausgabe-/Transfermenge {0} in der Materialanforderung {1} kann nicht größer sein als die zulässige angeforderte Menge {2} für Artikel {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55606,7 +55618,7 @@ msgstr "Die Benutzer mit dieser Rolle dürfen eine Lagerbewegungen erstellen/än msgid "The value of {0} differs between Items {1} and {2}" msgstr "Der Wert von {0} unterscheidet sich zwischen den Elementen {1} und {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "Der Wert {0} ist bereits einem vorhandenen Element {1} zugeordnet." @@ -55630,7 +55642,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "Die {0} ({1}) muss gleich {2} ({3}) sein." -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0} enthält Artikel mit Stückpreis." @@ -55638,7 +55650,7 @@ msgstr "{0} enthält Artikel mit Stückpreis." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "Das {0}-Präfix '{1}' ist bereits vorhanden. Bitte ändern Sie die Seriennummernkreis, da Sie sonst einen Fehler wegen doppeltem Eintrag erhalten." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} erfolgreich erstellt" @@ -55646,6 +55658,10 @@ msgstr "{0} {1} erfolgreich erstellt" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "Der {0} {1} stimmt nicht mit dem {0} {2} in {3} {4} überein" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "Die {0} {1} wird verwendet, um die Bewertungskosten für das Fertigerzeugnis {2} zu berechnen." @@ -55654,7 +55670,7 @@ msgstr "Die {0} {1} wird verwendet, um die Bewertungskosten für das Fertigerzeu msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "Dann werden Preisregeln basierend auf Kunde, Kundengruppe, Gebiet, Lieferant, Lieferantentyp, Kampagne, Vertriebspartner usw. gefiltert." -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Es gibt aktive Wartungs- oder Reparaturarbeiten am Vermögenswert. Sie müssen alle Schritte ausführen, bevor Sie das Asset stornieren können." @@ -55666,7 +55682,7 @@ msgstr "Es gibt Unstimmigkeiten zwischen dem Kurs, der Anzahl der Aktien und dem msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "Es gibt Hauptbucheinträge für dieses Konto. Die Änderung von {0} zu etwas anderem als {1} im laufenden System führt zu einer falschen Ausgabe im {2}-Bericht" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "Es gibt keine fehlgeschlagenen Transaktionen" @@ -55683,6 +55699,10 @@ msgstr "Es gibt keine aktiven Geschäftsjahre, für die Demodaten erstellt werde msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "Für dieses Datum sind keine Plätze verfügbar" @@ -55699,10 +55719,6 @@ msgstr "Es gibt zwei Möglichkeiten, die Bewertung des Lagerbestands zu verwalte msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "Für den ausgewählten Artikel sind keine Artikelvarianten vorhanden" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Es kann mehrere gestufte Sammelfaktoren basierend auf den getätigten Gesamtausgaben geben. Aber der Umrechnungsfaktor für die Einlösung ist immer für alle Stufen gleich." @@ -55731,21 +55747,21 @@ msgstr "Es wurde kein Stapel für {0} gefunden: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "Es muss mindestens 1 Fertigerzeugnis in dieser Lagerbewegung vorhanden sein" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Bei der Verknüpfung mit Plaid ist ein Fehler beim Erstellen des Bankkontos aufgetreten." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "Es ist ein Fehler bei der Synchronisierung von Transaktionen aufgetreten." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Beim Verknüpfen mit Plaid ist beim Aktualisieren des Bankkontos {} ein Fehler aufgetreten." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55795,15 +55811,19 @@ msgstr "Zusammenfassung dieses Monats" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "Diese Bestellung wurde vollständig untervergeben." -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "Dieser Auftrag wurde vollständig an Subunternehmer vergeben." @@ -55825,7 +55845,7 @@ msgstr "Durch diese Aktion wird die Verknüpfung dieses Kontos mit einem externe msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "Diese Anlagekategorie ist als nicht abschreibungsfähig gekennzeichnet. Bitte deaktivieren Sie die Abschreibungsberechnung oder wählen Sie eine andere Kategorie." @@ -55843,7 +55863,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "Dies deckt alle mit diesem Setup verbundenen Bewertungslisten ab" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Dieses Dokument ist über dem Limit von {0} {1} für item {4}. Machen Sie eine andere {3} gegen die gleiche {2}?" @@ -55985,7 +56005,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "Dieser Artikelfilter wurde bereits für {0} angewendet" @@ -56049,7 +56069,7 @@ msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} über d msgid "This schedule was created when Asset {0} was scrapped." msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} verschrottet wurde." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} {1} in den neuen Vermögensgegenstand {2}." @@ -56076,10 +56096,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "In diesem Abschnitt kann der Benutzer den Text und den Schlusstext des Mahnbriefs für den Mahntyp basierend auf der Sprache festlegen, die im Druck verwendet werden kann." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56137,8 +56157,8 @@ msgid "This will restrict user access to other employee records" msgstr "Dies schränkt den Benutzerzugriff auf andere Mitarbeiterdatensätze ein" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "Diese(r) {} wird als Materialtransfer behandelt." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56266,6 +56286,12 @@ msgstr "Zeit (in Min)" msgid "Timeline" msgstr "Zeitleiste" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56552,8 +56578,8 @@ msgid "To Time" msgstr "Bis-Zeit" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "Die Bis-Zeit kann nicht vor dem Ab-Datum liegen" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56583,15 +56609,15 @@ msgstr "Um Arbeitsgänge hinzuzufügen, aktivieren Sie das Kontrollkästchen 'Mi msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Um Rohmaterialien von subkontrahierten Artikeln hinzuzufügen, wenn „Aufgelöste Artikel einbeziehen“ deaktiviert ist." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Aktualisieren Sie "Over Billing Allowance" in den Buchhaltungseinstellungen oder im Artikel, um eine Überberechnung zuzulassen." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Um eine Überbestätigung / Überlieferung zu ermöglichen, aktualisieren Sie "Überbestätigung / Überlieferung" in den Lagereinstellungen oder im Artikel." @@ -56608,8 +56634,8 @@ msgid "To be Delivered to Customer" msgstr "An den Kunden zu liefern" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "Um einen {} zu stornieren, müssen Sie die POS-Abschlussbuchung {} stornieren." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56620,8 +56646,8 @@ msgid "To create a Payment Request reference document is required" msgstr "Zur Erstellung eines Zahlungsauftrags ist ein Referenzdokument erforderlich" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Um die Buchung von Anlagen im Bau zu ermöglichen," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56633,8 +56659,8 @@ msgstr "Um \"Artikel ohne Lagerhaltung\" in die Materialanforderungsplanung einz msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "Um Unterbaugruppen-Kosten und Sekundärartikel in Fertigerzeugnissen eines Arbeitsauftrags ohne Jobkarte einzubeziehen, wenn die Option 'Mehrstufige Stückliste verwenden' aktiviert ist." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Um Steuern im Artikelpreis in Zeile {0} einzubeziehen, müssen Steuern in den Zeilen {1} ebenfalls einbezogen sein" @@ -56654,7 +56680,7 @@ msgstr "Um dies zu überschreiben, aktivieren Sie '{0}' in Firma {1}" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Aktivieren Sie {0} in den Einstellungen für Elementvarianten, um mit der Bearbeitung dieses Attributwerts fortzufahren." @@ -56671,10 +56697,12 @@ msgstr "Um die Rechnung ohne Eingangsbeleg zu buchen, stellen Sie bitte {0} als msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Um ein anderes Finanzbuch zu verwenden, deaktivieren Sie bitte 'Standard-Finanzbuch-Anlagegüter einbeziehen'" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Um ein anderes Finanzbuch zu verwenden, deaktivieren Sie bitte 'Standardbucheinträge einschließen'" @@ -56753,8 +56781,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "Gesamtsumme (Unternehmenswährung)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Insgesamt (Credit)" @@ -56796,6 +56824,22 @@ msgstr "Gesamte Zusatzkosten" msgid "Total Advance" msgstr "Summe der Anzahlungen" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56843,11 +56887,11 @@ msgstr "Summe fälliger Betrag" msgid "Total Amount in Words" msgstr "Gesamtsumme in Worten" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Gesamt Die Gebühren in Kauf Eingangspositionen Tabelle muss als Gesamt Steuern und Abgaben gleich sein" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Aktiva" @@ -57029,7 +57073,7 @@ msgstr "Gesamtbetrag geliefert" msgid "Total Demand (Past Data)" msgstr "Gesamtnachfrage (frühere Daten)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "Eigenkapital" @@ -57038,11 +57082,11 @@ msgstr "Eigenkapital" msgid "Total Estimated Distance" msgstr "Geschätzte Gesamtstrecke" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Gesamtausgaben" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Gesamtkosten in diesem Jahr" @@ -57080,11 +57124,11 @@ msgstr "Gesamte Haltezeit" msgid "Total Holidays" msgstr "Anzahl arbeitsfreier Tage" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Gesamteinkommen" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Gesamteinkommen in diesem Jahr" @@ -57127,7 +57171,7 @@ msgstr "Einstandskosten gesamt (Unternehmenswährung)" msgid "Total Ledgers" msgstr "Gesamtanzahl Buchungen" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "Verbindlichkeiten" @@ -57442,7 +57486,7 @@ msgstr "Gesamte Steuern und Gebühren" msgid "Total Taxes and Charges (Company Currency)" msgstr "Gesamte Steuern und Gebühren (Unternehmenswährung)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Gesamtzeit (in Min.)" @@ -57451,7 +57495,11 @@ msgstr "Gesamtzeit (in Min.)" msgid "Total Time in Mins" msgstr "Gesamtzeit in Minuten" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Noch nicht bezahlt: {0}" @@ -57530,7 +57578,7 @@ msgstr "Gesamte Arbeitsplatzzeit (in Stunden)" msgid "Total allocated percentage for sales team should be 100" msgstr "Insgesamt verteilte Prozentmenge für Vertriebsteam sollte 100 sein" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Der prozentuale Gesamtbeitrag sollte 100 betragen" @@ -57548,8 +57596,8 @@ msgstr "Gesamtstunden: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Der Gesamtzahlungsbetrag darf nicht größer als {} sein." +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57566,9 +57614,9 @@ msgstr "Die Gesamtmenge im Lieferplan kann nicht größer sein als die Artikelme msgid "Total {0} ({1})" msgstr "Insgesamt {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Insgesamt {0} für alle Elemente gleich Null ist, sein kann, sollten Sie "Verteilen Gebühren auf der Grundlage" ändern" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57656,27 +57704,11 @@ msgstr "Tracking-Statusinformationen" msgid "Tracking URL" msgstr "Tracking-URL" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Transaktion" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "Transaktionswährung" @@ -57729,11 +57761,11 @@ msgstr "Eintrag zum Datensatz zur Transaktionslöschung" msgid "Transaction Deletion Record To Delete" msgstr "Transaktionslöschprotokoll zum Löschen" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "Transaktionslöschdatensatz {0} wird bereits ausgeführt. {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "Transaktionslöschungsdatensatz {0} löscht derzeit {1}. Dokumente können erst gespeichert werden, wenn die Löschung abgeschlossen ist." @@ -58123,6 +58155,10 @@ msgstr "Probebilanz (einfach)" msgid "Trial Balance for Party" msgstr "Summen- und Saldenliste für Partei" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58307,7 +58343,7 @@ msgstr "VAE VAT Einstellungen" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58329,7 +58365,7 @@ msgstr "VAE VAT Einstellungen" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58359,7 +58395,7 @@ msgstr "VAE VAT Einstellungen" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58423,7 +58459,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Maßeinheit-Umrechnungsfaktor" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "UOM-Umrechnungsfaktor ({0} -> {1}) für Element nicht gefunden: {2}" @@ -58497,7 +58533,7 @@ msgstr "Zuordnung aufheben" msgid "UnReconcile Allocations" msgstr "Zuweisungen aufheben" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "DocType-Details können nicht abgerufen werden. Bitte wenden Sie sich an den Systemadministrator." @@ -58510,10 +58546,6 @@ msgstr "Der Wechselkurs {0} zu {1} für den Stichtag {2} kann nicht gefunden wer msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Der Wechselkurs {0} zu {1} für den Stichtag {2} kann nicht gefunden werden. Bitte erstellen Sie den Datensatz für die Währungsumrechnung manuell." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Es konnte keine Punktzahl gefunden werden, die bei {0} beginnt. Sie benötigen eine Punktzahl zwischen 0 und 100." - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "Es ist nicht möglich, ein Zeitfenster in den nächsten {0} Tagen für die Operation {1} zu finden. Bitte erhöhen Sie die 'Kapazitätsplanung für (Tage)' in der {2}." @@ -58538,7 +58570,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Nicht zugewiesener Betrag" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Nicht zugewiesene Menge" @@ -58550,8 +58582,10 @@ msgstr "Nicht berechnete Bestellungen" msgid "Unblock Invoice" msgstr "Rechnung entsperren" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58601,7 +58635,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "Unerwartetes Nummernkreismuster" @@ -58624,7 +58658,7 @@ msgstr "" msgid "Unit Price" msgstr "Einzelpreis" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Maßeinheit" @@ -58827,7 +58861,7 @@ msgstr "Außerplanmäßig" msgid "Unsecured Loans" msgstr "Ungesicherte Kredite" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "Zugeordnete Zahlungsanforderung aufheben" @@ -58840,7 +58874,7 @@ msgstr "Nicht unterzeichnet" msgid "Unsubscribe from this Email Digest" msgstr "Abmelden von diesem E-Mail-Bericht" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58984,7 +59018,7 @@ msgstr "Aktuellen Bestand aktualisieren" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59048,7 +59082,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "Aktualisieren des neuesten Preises in allen Stücklisten" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "Für die Eingangsrechnung {0} muss die Option \"Lagerbestand aktualisieren\" aktiviert sein" @@ -59276,7 +59310,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "Wechselkurs des Transaktionsdatums verwenden" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Verwenden Sie einen anderen Namen als den vorherigen Projektnamen" @@ -59365,6 +59399,10 @@ msgstr "Lösungszeit des Benutzers" msgid "User has not applied rule on the invoice {0}" msgstr "Der Benutzer hat die Regel für die Rechnung {0} nicht angewendet." +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Benutzer {0} existiert nicht" @@ -59377,6 +59415,10 @@ msgstr "Der Benutzer {0} hat kein Standard-POS-Profil. Überprüfen Sie die Stan msgid "User {0} is already assigned to Employee {1}" msgstr "Benutzer {0} ist bereits Mitarbeiter {1} zugewiesen" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Benutzer {0}: Mitarbeiter-Selbstbedienungsrolle entfernt, da kein zugeordneter Mitarbeiter vorhanden ist." @@ -59385,10 +59427,6 @@ msgstr "Benutzer {0}: Mitarbeiter-Selbstbedienungsrolle entfernt, da kein zugeor msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Benutzer {0}: Mitarbeiterrolle entfernt, da kein zugeordneter Mitarbeiter vorhanden ist." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Benutzer {} ist deaktiviert. Bitte wählen Sie einen gültigen Benutzer / Kassierer aus" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59681,15 +59719,15 @@ msgstr "Wertansatz" msgid "Valuation Rate (In / Out)" msgstr "Wertansatz (Eingang / Ausgang)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Bewertungsrate fehlt" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Der Bewertungssatz für den Posten {0} ist erforderlich, um Buchhaltungseinträge für {1} {2} vorzunehmen." @@ -59697,7 +59735,7 @@ msgstr "Der Bewertungssatz für den Posten {0} ist erforderlich, um Buchhaltungs msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Bewertungskurs ist obligatorisch, wenn Öffnung Stock eingegeben" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Bewertungssatz für Position {0} in Zeile {1} erforderlich" @@ -59707,7 +59745,7 @@ msgstr "Bewertungssatz für Position {0} in Zeile {1} erforderlich" msgid "Valuation and Total" msgstr "Bewertung und Summe" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "Die Bewertungsrate für von Kunden beigestellte Artikel wurde auf Null gesetzt." @@ -59720,14 +59758,14 @@ msgstr "Die Bewertungsrate für von Kunden beigestellte Artikel wurde auf Null g msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Wertansatz für den Artikel gemäß Ausgangsrechnung (nur für interne Transfers)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Bewertungsgebühren können nicht als Inklusiv gekennzeichnet werden" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Bewertungsart Gebühren kann nicht als \"inklusive\" markiert werden" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59777,12 +59815,12 @@ msgstr "Wertversprechen" msgid "Value Type" msgstr "Werttyp" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "Wert zum" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Wert für das Attribut {0} muss im Bereich von {1} bis {2} in den Schritten von {3} für Artikel {4}" @@ -59791,19 +59829,19 @@ msgstr "Wert für das Attribut {0} muss im Bereich von {1} bis {2} in den Schrit msgid "Value of Goods" msgstr "Warenwert" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Wert der neu aktivierten Sachanlage" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Wert der neuen Anschaffung" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Wert der verschrotteten Sachanlage" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Wert der verkauften Sachanlage" @@ -60279,7 +60317,7 @@ msgstr "Beleg" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60307,7 +60345,7 @@ msgstr "Beleg" msgid "Voucher No" msgstr "Belegnr." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Beleg Nr. ist obligatorisch" @@ -60319,7 +60357,7 @@ msgstr "Beleg Menge" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Beleg Untertyp" @@ -60351,7 +60389,7 @@ msgstr "Beleg Untertyp" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60558,7 +60596,7 @@ msgstr "Lager ist erforderlich" msgid "Warehouse is required to get producible FG Items" msgstr "Lager ist erforderlich, um produzierbare Fertigerzeugnisse abzurufen" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Lager für Konto {0} nicht gefunden" @@ -60576,16 +60614,16 @@ msgstr "Lagerweise Item Balance Alter und Wert" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Lager {0} kann nicht gelöscht werden, da noch ein Bestand für Artikel {1} existiert" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Lager {0} gehört nicht zu Unternehmen {1}." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Lager {0} gehört nicht zu Unternehmen {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "Lager {0} existiert nicht" @@ -60706,7 +60744,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Warnung - Zeile {0}: Abgerechnete Stunden sind mehr als tatsächliche Stunden" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "Warnung vor negativem Bestand" @@ -60726,7 +60764,7 @@ msgstr "Achtung: Zu Lagerbuchung {2} gibt es eine andere Gegenbuchung {0} # {1}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Achtung : Materialanfragemenge ist geringer als die Mindestbestellmenge" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "Warnung: Die Menge überschreitet die maximale produzierbare Menge basierend auf der Menge an Rohstoffen, die über die Subunternehmer-Eingangsbestellung {0} eingegangen sind." @@ -60880,10 +60918,6 @@ msgstr "Webseiten-Artikelgruppe" msgid "Website Specifications" msgstr "Webseiten-Spezifikationen" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61029,7 +61063,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "Wenn ein Umlagerungs-Lagerbuchung mehrere Fertigerzeugnisse ({0}) enthält, muss der Grundpreis für alle Fertigerzeugnisse manuell festgelegt werden. Um den Preis manuell festzulegen, aktivieren Sie das Kontrollkästchen 'Grundpreis manuell festlegen' in der jeweiligen Fertigerzeugnis-Zeile." @@ -61205,17 +61239,17 @@ msgstr "Laufende Arbeit/-en" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61254,7 +61288,7 @@ msgstr "In Arbeitsauftrag verbrauchtes Material" msgid "Work Order Item" msgstr "Arbeitsauftragsposition" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61295,20 +61329,20 @@ msgstr "Arbeitsauftragsübersicht" msgid "Work Order Summary Report" msgstr "Zusammenfassungsbericht Arbeitsaufträge" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Arbeitsauftrag kann aus folgenden Gründen nicht erstellt werden:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Arbeitsauftrag kann nicht gegen eine Artikelbeschreibungsvorlage ausgelöst werden" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "Arbeitsauftrag wurde {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61329,7 +61363,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Arbeitsanweisungen" @@ -61354,7 +61388,7 @@ msgstr "Laufende Arbeit/-en" msgid "Work-in-Progress Warehouse" msgstr "Fertigungslager" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Fertigungslager wird vor dem Übertragen benötigt" @@ -61407,7 +61441,7 @@ msgstr "Arbeitszeit" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61639,14 +61673,6 @@ msgstr "Name des Jahrs" msgid "Year Start Date" msgstr "Startdatum des Geschäftsjahres" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61661,8 +61687,8 @@ msgid "You are importing data for the code list:" msgstr "Sie importieren Daten für die Codeliste:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Sie dürfen nicht gemäß den im {} Workflow festgelegten Bedingungen aktualisieren." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61681,8 +61707,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "Sie kommissionieren mehr als die erforderliche Menge für den Artikel {0}. Prüfen Sie, ob eine andere Pickliste für den Auftrag erstellt wurde {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "Sie können die Originalrechnung {} manuell hinzufügen, um fortzufahren." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61692,19 +61718,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "Sie können diese Verknüpfung in Ihren Browser kopieren" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Sie können auch das Standard-CWIP-Konto in Firma {} festlegen" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Sie können das übergeordnete Konto in ein Bilanzkonto ändern oder ein anderes Konto auswählen." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "Sie können entweder Standard-Abschreibungskonten im Unternehmen konfigurieren oder die erforderlichen Konten in den folgenden Zeilen festlegen:

                    " @@ -61726,8 +61748,8 @@ msgid "You can only select one mode of payment as default" msgstr "Sie können nur eine Zahlungsweise als Standard auswählen" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Sie können bis zu {0} einlösen." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61745,14 +61767,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "Sie können {0} verwenden, um später mit {1} abzugleichen." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "Sie können keine Änderungen an der Jobkarte vornehmen, da der Arbeitsauftrag geschlossen ist." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "Sie können die Seriennummer {0} nicht verarbeiten, da sie bereits im S.u.Cb. {1} verwendet wurde. {2} Wenn Sie dieselbe Seriennummer mehrmals erfassen möchten, aktivieren Sie 'Bestehende Seriennummer erneut herstellen/empfangen erlauben' in {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "Sie können keine Treuepunkte einlösen, die einen höheren Wert als den Gesamtbetrag haben." @@ -61761,17 +61775,17 @@ msgstr "Sie können keine Treuepunkte einlösen, die einen höheren Wert als den msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "Sie können den Preis nicht ändern, wenn bei einem Artikel die Stückliste angegeben ist." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "Sie können innerhalb der abgeschlossenen Abrechnungsperiode {1} kein(e) {0} erstellen" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Sie können im abgeschlossenen Abrechnungszeitraum {0} keine Buchhaltungseinträge mit erstellen oder stornieren." +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "Bis zu diesem Datum können Sie keine Buchungen erstellen/berichtigen." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61782,32 +61796,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "Sie können den Projekttyp 'Extern' nicht löschen" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Sie können den Stammknoten nicht bearbeiten." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "Sie können nicht beide Einstellungen '{0}' und '{1}' aktivieren." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "Folgende {0} können nicht ausgelagert werden, da sie entweder geliefert, inaktiv oder in einem anderen Lager befindlich sind." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "Sie können nicht mehr als {0} einlösen." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "Sie können die Artikelbewertung nicht vor {} neu buchen" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "Sie können ein nicht abgebrochenes Abonnement nicht neu starten." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Sie können keine leere Bestellung buchen." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61821,6 +61843,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "Sie können dieses Dokument nicht {0}, da nach {2} ein weiterer Periodenabschlusseintrag {1} existiert" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61831,8 +61857,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "Sie haben keine Berechtigungen für {} Elemente in einem {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61858,11 +61884,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Beim Erstellen von Eröffnungsrechnungen sind {} Fehler aufgetreten. Überprüfen Sie {} auf weitere Details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Sie haben bereits Elemente aus {0} {1} gewählt" @@ -61879,8 +61905,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "Sie haben {0} und {1} in {2} aktiviert. Dies kann dazu führen, dass Preise aus der Standard-Preisliste in die Transaktionspreisliste eingefügt werden." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "Sie haben mehrere Lieferscheine eingegeben" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61894,19 +61920,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Sie müssen die automatische Nachbestellung in den Lagereinstellungen aktivieren, um den Nachbestellungsstand beizubehalten." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "Sie haben nicht gespeicherte Änderungen. Möchten Sie die Rechnung speichern?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Sie müssen einen Kunden auswählen, bevor Sie einen Artikel hinzufügen." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "Sie müssen den POS-Abschlusseintrag {} stornieren, um diesen Beleg stornieren zu können." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "Sie haben die Kontengruppe {1} als {2}-Konto in Zeile {0} ausgewählt. Bitte wählen Sie ein einzelnes Konto." @@ -61958,6 +61984,10 @@ msgstr "Postleitzahl" msgid "Zero Balance" msgstr "Nullsaldo" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "Lieferungen zum Nullsatz" @@ -61988,7 +62018,7 @@ msgstr "[Wichtig] [ERPNext] Fehler bei der automatischen Neuordnung" msgid "`Allow Negative rates for Items`" msgstr "„Negative Preise für Artikel zulassen“" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "nach" @@ -62008,7 +62038,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "als Prozentsatz der fertigen Artikelmenge" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "zum {0}" @@ -62024,10 +62054,6 @@ msgstr "basiert_auf" msgid "by {}" msgstr "von {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "kann nicht größer als 100 sein" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62082,8 +62108,8 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "feldname" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62163,14 +62189,10 @@ msgstr "von 5" msgid "paid to" msgstr "bezahlt an" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "Die Zahlungs-App ist nicht installiert. Bitte installieren Sie sie von {0} oder {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "Die Zahlungs-App ist nicht installiert. Bitte installieren Sie sie von {} oder {}" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62184,7 +62206,7 @@ msgstr "Die Zahlungs-App ist nicht installiert. Bitte installieren Sie sie von { msgid "per hour" msgstr "pro Stunde" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "eine der folgenden Aktionen durchführen:" @@ -62260,8 +62282,8 @@ msgstr "verkauft" msgid "subscription is already cancelled." msgstr "abonnement ist bereits storniert." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "Zielreferenzfeld" @@ -62324,10 +62346,6 @@ msgstr "durch Vermögensgegenstand Reparatur" msgid "via BOM Update Tool" msgstr "via Stücklisten-Update-Tool" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "Sie müssen in der Kontentabelle das Konto "Kapital in Bearbeitung" auswählen" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' ist deaktiviert" @@ -62340,7 +62358,7 @@ msgstr "{0} '{1}' nicht im Geschäftsjahr {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) darf nicht größer als die geplante Menge ({2}) im Arbeitsauftrag {3} sein" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} hat Vermögensgegenstände gebucht. Entfernen Sie Artikel {2} aus der Tabelle, um fortzufahren." @@ -62360,7 +62378,7 @@ msgstr "{0} Budget für Konto {1} gegen {2} {3} beträgt {4}. Es wurde bereits u msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "{0} Budget für Konto {1} gegen {2} {3} beträgt {4}. Es wird um {5} überschritten." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "Verwendeter {0} -Coupon ist {1}. Zulässige Menge ist erschöpft" @@ -62368,11 +62386,6 @@ msgstr "Verwendeter {0} -Coupon ist {1}. Zulässige Menge ist erschöpft" msgid "{0} Digest" msgstr "{0} Zusammenfassung" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Nummer {1} wird bereits in {2} {3} verwendet" @@ -62454,10 +62467,18 @@ msgstr "{0} kann entweder {1} oder {2} sein." msgid "{0} can not be negative" msgstr "{0} kann nicht negativ sein" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} kann nicht mit geöffneten Eröffnungsbuchungen geändert werden." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} kann nicht als Hauptkostenstelle verwendet werden, da sie als untergeordnete Kostenstelle in der Kostenstellenzuordnung {1} verwendet wurde" @@ -62473,7 +62494,7 @@ msgstr "{0} kann nicht Null sein" msgid "{0} created" msgstr "{0} erstellt" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "Die Erstellung von {0} für die folgenden Datensätze wird übersprungen." @@ -62515,7 +62536,7 @@ msgstr "{0} für {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} hat zahlungszielbasierte Zuordnung aktiviert. Wählen Sie ein Zahlungsziel für Zeile #{1} im Abschnitt Zahlungsreferenzen" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "{0} wurde nach dem Abrufen geändert. Bitte erneut abrufen." @@ -62523,6 +62544,10 @@ msgstr "{0} wurde nach dem Abrufen geändert. Bitte erneut abrufen." msgid "{0} has been submitted successfully" msgstr "{0} wurde erfolgreich gebucht" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} Stunden" @@ -62531,7 +62556,11 @@ msgstr "{0} Stunden" msgid "{0} in row {1}" msgstr "{0} in Zeile {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} ist eine untergeordnete Tabelle und wird automatisch mit dem übergeordneten Datensatz gelöscht" @@ -62545,7 +62574,7 @@ msgstr "{0} ist eine obligatorische Buchhaltungsdimension.
                    Bitte setzen Sie msgid "{0} is added multiple times on rows: {1}" msgstr "{0} wurde mehrfach in den Zeilen hinzugefügt: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} läuft bereits für {1}" @@ -62553,7 +62582,7 @@ msgstr "{0} läuft bereits für {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} ist blockiert, daher kann diese Transaktion nicht fortgesetzt werden" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} ist im Entwurf. Bitte buchen Sie es, bevor Sie den Vermögensgegenstand erstellen." @@ -62566,11 +62595,11 @@ msgstr "{0} Artikel ist zwingend erfoderlich für {1}" msgid "{0} is mandatory for account {1}" msgstr "{0} ist für Konto {1} obligatorisch" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} ist obligatorisch. Möglicherweise wird kein Währungsumtauschdatensatz für {1} bis {2} erstellt." -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} ist zwingend erforderlich. Möglicherweise wurde der Datensatz für die Währungsumrechung für {1} bis {2} nicht erstellt." @@ -62578,7 +62607,7 @@ msgstr "{0} ist zwingend erforderlich. Möglicherweise wurde der Datensatz für msgid "{0} is not a CSV file." msgstr "{0} ist keine CSV-Datei." -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} ist kein Firmenbankkonto" @@ -62594,7 +62623,7 @@ msgstr "{0} ist kein Lagerartikel" msgid "{0} is not a valid Accounting Dimension." msgstr "{0} ist keine gültige Buchhaltungsdimension." -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} ist kein gültiger Wert für das Attribut {1} von Element {2}." @@ -62610,17 +62639,17 @@ msgstr "{0} wurde nicht in die Tabelle aufgenommen" msgid "{0} is not enabled in {1}" msgstr "{0} ist in {1} nicht aktiviert" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} läuft nicht. Ereignisse für dieses Dokument können nicht ausgelöst werden" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} ist nicht der Standardlieferant für Artikel." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} ist auf Eis gelegt bis {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62670,7 +62699,7 @@ msgstr "Der Parameter {0} ist ungültig" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} Zahlungsbuchungen können nicht nach {1} gefiltert werden" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "Menge {0} des Artikels {1} wird im Lager {2} mit einer Kapazität von {3} empfangen." @@ -62683,7 +62712,7 @@ msgstr "{0} bis {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} Einheiten sind für Artikel {1} in Lager {2} reserviert. Bitte heben Sie die Reservierung auf, um die Lagerbestandsabstimmung {3} zu können." @@ -62699,16 +62728,16 @@ msgstr "{0} Einheiten von Artikel {1} sind in keinem der Lager verfügbar. Für msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} Einheiten von {1} werden in {2} mit der Lagerbestandsdimension: {3} am {4} {5} für {6} benötigt, um die Transaktion abzuschließen." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "Es werden {0} Einheiten von {1} in {2} auf {3} {4} für {5} benötigt, um diesen Vorgang abzuschließen." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} Einheiten von {1} benötigt in {2} am {3} {4}, um diese Transaktion abzuschließen." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} Einheiten von {1} benötigt in {2} zum Abschluss dieser Transaktion." @@ -62716,7 +62745,7 @@ msgstr "{0} Einheiten von {1} benötigt in {2} zum Abschluss dieser Transaktion. msgid "{0} until {1}" msgstr "{0} bis {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} gültige Seriennummern für Artikel {1}" @@ -62724,7 +62753,7 @@ msgstr "{0} gültige Seriennummern für Artikel {1}" msgid "{0} variants created." msgstr "{0} Varianten erstellt." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "Die Ansicht {0} wird im benutzerdefinierten Finanzbericht derzeit nicht unterstützt." @@ -62758,7 +62787,7 @@ msgstr "{0} {1} erstellt" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} existiert nicht" @@ -62792,12 +62821,21 @@ msgstr "{0} {1} wird in dieser Banktransaktion zweimal zugeteilt" msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} ist bereits mit dem Common Code {2} verknüpft." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} ist mit {2} verbunden, aber das Gegenkonto ist {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} wurde abgebrochen oder geschlossen" @@ -62829,6 +62867,10 @@ msgstr "{0} {1} wird voll in Rechnung gestellt" msgid "{0} {1} is not active" msgstr "{0} {1} ist nicht aktiv" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} gehört nicht zu {2} {3}" @@ -62934,27 +62976,23 @@ msgstr "{0}% des Gesamtrechnungswerts wird als Rabatt gewährt." msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{0}s {1} darf nicht nach dem erwarteten Enddatum von {2} liegen." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, schließen Sie die Operation {1} vor der Operation {2} ab." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: Untergeordnete Tabelle (automatisch mit dem übergeordneten Datensatz gelöscht)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Nicht gefunden" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: Geschützter DocType" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: Virtueller DocType (keine Datenbanktabelle)" @@ -62970,7 +63008,7 @@ msgstr "{0}: {1} existiert nicht" msgid "{0}: {1} is a group account." msgstr "{0}: {1} ist ein Sammelkonto." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} muss kleiner als {2} sein" @@ -62982,7 +63020,7 @@ msgstr "{count} Vermögensgegenstände erstellt für {item_code}" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} wurde abgebrochen oder geschlossen." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "Die Stichprobengröße von {item_name} ({sample_size}) darf nicht größer sein als die akzeptierte Menge ({accepted_quantity})" @@ -62994,32 +63032,7 @@ msgstr "{ref_doctype} {ref_name} Status ist {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} kann nicht storniert werden, da die gesammelten Treuepunkte eingelöst wurden. Brechen Sie zuerst das {} Nein {} ab" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} hat gebuchte Vermögensgegenstände, die mit ihm verknüpft sind. Sie müssen die Vermögensgegenstände stornieren, um eine Kaufrückgabe zu erstellen." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} rechnungen" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} ist ein untergeordnetes Unternehmen." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} ist bereits mit einem anderen {} verknüpft" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} ist bereits mit {} {} verknüpft" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} hat keinen Einfluss auf das Bankkonto {}" - diff --git a/erpnext/locale/eo.po b/erpnext/locale/eo.po index 841a78a0b5f..bba2c43766a 100644 --- a/erpnext/locale/eo.po +++ b/erpnext/locale/eo.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:04\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Esperanto\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: eo_UY\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "crwdns204335:0{0}crwdnd204335:0{1}crwdnd204335:0{2}crwdnd204335:0{3}crwdnd204335:0{4}crwdnd204335:0{0}crwdne204335:0" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "crwdns62318:0crwdne62318:0" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "crwdns149076:0crwdne149076:0" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "crwdns62380:0crwdne62380:0" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "crwdns62390:0crwdne62390:0" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "crwdns62474:0crwdne62474:0" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "crwdns62476:0crwdne62476:0" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "crwdns205497:0crwdne205497:0" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "crwdns62488:0crwdne62488:0" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "crwdns62490:0crwdne62490:0" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "crwdns205499:0crwdne205499:0" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "crwdns151814:0{0}crwdne151814:0" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "crwdns205501:0{0}crwdne205501:0" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "crwdns151816:0{0}crwdne151816:0" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "crwdns205503:0{0}crwdne205503:0" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "crwdns62492:0crwdne62492:0" @@ -326,13 +317,13 @@ msgstr "crwdns62492:0crwdne62492:0" msgid "'To Date' is required" msgstr "crwdns62494:0crwdne62494:0" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "crwdns62496:0crwdne62496:0" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "crwdns62498:0{0}crwdne62498:0" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "crwdns205505:0{0}crwdne205505:0" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "crwdns62600:0crwdne62600:0" msgid "<0" msgstr "crwdns164140:0crwdne164140:0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "crwdns161982:0{0}crwdnd161982:0{2}crwdnd161982:0{3}crwdnd161982:0{1}crwdnd161982:0{4}crwdnd161982:0{5}crwdne161982:0" @@ -781,17 +772,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "crwdns155780:0{0}crwdne155780:0" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "crwdns155906:0crwdne155906:0" +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "crwdns205507:0{0}crwdne205507:0" #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "crwdns155608:0crwdne155608:0" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "crwdns155908:0{0}crwdnd155908:0{1}crwdne155908:0" +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "crwdns205509:0{0}crwdnd205509:0{1}crwdne205509:0" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -951,9 +942,9 @@ msgstr "crwdns62642:0crwdne62642:0" msgid "A - C" msgstr "crwdns62644:0crwdne62644:0" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "crwdns62648:0crwdne62648:0" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "crwdns205511:0crwdne205511:0" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -963,9 +954,9 @@ msgstr "crwdns62650:0crwdne62650:0" msgid "A Lead requires either a person's name or an organization's name" msgstr "crwdns62652:0crwdne62652:0" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "crwdns62654:0crwdne62654:0" +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "crwdns205513:0crwdne205513:0" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -981,7 +972,7 @@ msgstr "crwdns111574:0crwdne111574:0" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "crwdns111576:0crwdne111576:0" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "crwdns62656:0{0}crwdne62656:0" @@ -1014,7 +1005,7 @@ msgstr "crwdns62664:0crwdne62664:0" msgid "A logical Warehouse against which stock entries are made." msgstr "crwdns111582:0crwdne111582:0" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "crwdns163858:0{0}crwdne163858:0" @@ -1190,7 +1181,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "crwdns132228:0crwdne132228:0" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "crwdns62770:0crwdne62770:0" @@ -1221,12 +1212,16 @@ msgstr "crwdns132232:0crwdne132232:0" msgid "Access Key is required for Service Provider: {0}" msgstr "crwdns62788:0{0}crwdne62788:0" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "crwdns205515:0crwdne205515:0" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "crwdns132236:0crwdne132236:0" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "crwdns152084:0{0}crwdnd152084:0{1}crwdne152084:0" @@ -1479,7 +1474,7 @@ msgstr "crwdns62950:0crwdne62950:0" msgid "Account is required" msgstr "crwdns200871:0crwdne200871:0" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "crwdns62954:0crwdne62954:0" @@ -1609,11 +1604,11 @@ msgstr "crwdns62998:0{0}crwdne62998:0" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "crwdns63000:0{0}crwdne63000:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "crwdns63004:0{0}crwdne63004:0" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "crwdns63006:0{0}crwdnd63006:0{1}crwdne63006:0" @@ -1892,8 +1887,8 @@ msgstr "crwdns132270:0crwdne132270:0" msgid "Accounting Entries" msgstr "crwdns132272:0crwdne132272:0" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "crwdns63168:0crwdne63168:0" @@ -1918,8 +1913,8 @@ msgstr "crwdns63170:0crwdne63170:0" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1967,7 +1962,11 @@ msgstr "crwdns197094:0crwdne197094:0" msgid "Accounting Period" msgstr "crwdns63182:0crwdne63182:0" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "crwdns205517:0{0}crwdne205517:0" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "crwdns63186:0{0}crwdne63186:0" @@ -2165,8 +2164,8 @@ msgstr "crwdns132290:0crwdne132290:0" msgid "Accumulated Depreciation Amount" msgstr "crwdns63274:0crwdne63274:0" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "crwdns63278:0crwdne63278:0" @@ -2394,7 +2393,7 @@ msgstr "crwdns63378:0crwdne63378:0" msgid "Actual Batch Quantity" msgstr "crwdns132320:0crwdne132320:0" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "crwdns63382:0crwdne63382:0" @@ -2404,7 +2403,7 @@ msgstr "crwdns63382:0crwdne63382:0" msgid "Actual Date" msgstr "crwdns132322:0crwdne132322:0" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2554,8 +2553,8 @@ msgstr "crwdns132344:0crwdne132344:0" msgid "Actual qty in stock" msgstr "crwdns63452:0crwdne63452:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "crwdns63454:0{0}crwdne63454:0" @@ -2720,10 +2719,6 @@ msgstr "crwdns132360:0crwdne132360:0" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "crwdns132362:0crwdne132362:0" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "crwdns200718:0crwdne200718:0" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "crwdns111598:0crwdne111598:0" @@ -2822,13 +2817,13 @@ msgstr "crwdns132374:0crwdne132374:0" msgid "Added On" msgstr "crwdns132376:0crwdne132376:0" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "crwdns63550:0{0}crwdne63550:0" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "crwdns63554:0{1}crwdnd63554:0{0}crwdne63554:0" +msgid "Added {1} role to user {0}." +msgstr "crwdns205519:0{1}crwdnd205519:0{0}crwdne205519:0" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -2970,7 +2965,7 @@ msgstr "crwdns132390:0crwdne132390:0" msgid "Additional Discount Amount (Company Currency)" msgstr "crwdns132392:0crwdne132392:0" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "crwdns161048:0{discount_amount}crwdnd161048:0{total_before_discount}crwdne161048:0" @@ -3089,12 +3084,8 @@ msgid "Additional Transferred Qty" msgstr "crwdns160054:0crwdne160054:0" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "crwdns160056:0{0}crwdnd160056:0{1}crwdne160056:0" +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "crwdns205521:0{0}crwdnd205521:0{1}crwdne205521:0" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3358,7 +3349,7 @@ msgstr "crwdns157194:0crwdne157194:0" msgid "Advance amount" msgstr "crwdns132432:0crwdne132432:0" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "crwdns63854:0{0}crwdnd63854:0{1}crwdne63854:0" @@ -3427,7 +3418,7 @@ msgstr "crwdns111606:0crwdne111606:0" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "crwdns63874:0crwdne63874:0" @@ -3547,7 +3538,7 @@ msgstr "crwdns148756:0{0}crwdne148756:0" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "crwdns63928:0crwdne63928:0" @@ -3571,7 +3562,7 @@ msgstr "crwdns63932:0crwdne63932:0" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "crwdns63936:0crwdne63936:0" @@ -3685,6 +3676,13 @@ msgstr "crwdns143336:0crwdne143336:0" msgid "Algorithm" msgstr "crwdns132480:0crwdne132480:0" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "crwdns205523:0crwdne205523:0" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3861,7 +3859,7 @@ msgstr "crwdns201945:0crwdne201945:0" msgid "All items are already requested" msgstr "crwdns152148:0crwdne152148:0" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "crwdns64038:0crwdne64038:0" @@ -3873,7 +3871,7 @@ msgstr "crwdns112194:0crwdne112194:0" msgid "All items have already been transferred for this Work Order." msgstr "crwdns64040:0crwdne64040:0" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "crwdns64042:0crwdne64042:0" @@ -3892,16 +3890,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "crwdns132502:0crwdne132502:0" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "crwdns152571:0crwdne152571:0" +msgid "All the items have already been returned." +msgstr "crwdns205525:0crwdne205525:0" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "crwdns64046:0crwdne64046:0" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "crwdns64048:0crwdne64048:0" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "crwdns205527:0crwdne205527:0" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -3924,7 +3922,7 @@ msgstr "crwdns132504:0crwdne132504:0" msgid "Allocate Full Amount to Stock Items" msgstr "crwdns204341:0crwdne204341:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "crwdns64056:0crwdne64056:0" @@ -3934,7 +3932,7 @@ msgstr "crwdns64056:0crwdne64056:0" msgid "Allocate Payment Based On Payment Terms" msgstr "crwdns132506:0crwdne132506:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "crwdns148852:0crwdne148852:0" @@ -3964,7 +3962,7 @@ msgstr "crwdns132508:0crwdne132508:0" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4047,8 +4045,8 @@ msgid "Allow Alternative Item" msgstr "crwdns132516:0crwdne132516:0" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "crwdns64122:0crwdne64122:0" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "crwdns205529:0{0}crwdne205529:0" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4155,7 +4153,7 @@ msgstr "crwdns200496:0crwdne200496:0" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "crwdns132554:0crwdne132554:0" @@ -4436,14 +4434,16 @@ msgstr "crwdns132592:0crwdne132592:0" msgid "Allowed To Transact With" msgstr "crwdns64224:0crwdne64224:0" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "crwdns205531:0crwdne205531:0" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "crwdns64230:0crwdne64230:0" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "crwdns200728:0crwdne200728:0" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4476,10 +4476,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "crwdns154842:0crwdne154842:0" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "crwdns202057:0crwdne202057:0" @@ -4487,10 +4487,6 @@ msgstr "crwdns202057:0crwdne202057:0" msgid "Already Picked" msgstr "crwdns64234:0crwdne64234:0" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "crwdns64236:0{0}crwdne64236:0" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "crwdns64238:0{0}crwdnd64238:0{1}crwdne64238:0" @@ -4506,12 +4502,12 @@ msgstr "crwdns204345:0crwdne204345:0" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "crwdns64240:0crwdne64240:0" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "crwdns202673:0crwdne202673:0" @@ -4716,7 +4712,7 @@ msgstr "crwdns155138:0crwdne155138:0" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4942,12 +4938,12 @@ msgstr "crwdns111618:0crwdne111618:0" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "crwdns202059:0crwdne202059:0" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "crwdns64584:0{0}crwdne64584:0" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "crwdns64590:0crwdne64590:0" @@ -5161,7 +5157,7 @@ msgstr "crwdns64666:0crwdne64666:0" msgid "Applied on each reading." msgstr "crwdns132648:0crwdne132648:0" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "crwdns64670:0crwdne64670:0" @@ -5338,10 +5334,6 @@ msgstr "crwdns64754:0crwdne64754:0" msgid "Appointment Confirmation" msgstr "crwdns64756:0crwdne64756:0" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "crwdns64758:0crwdne64758:0" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5367,6 +5359,10 @@ msgstr "crwdns64766:0crwdne64766:0" msgid "Appointment With" msgstr "crwdns132692:0crwdne132692:0" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "crwdns205533:0crwdne205533:0" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "crwdns64770:0crwdne64770:0" @@ -5408,6 +5404,15 @@ msgstr "crwdns200903:0crwdne200903:0" msgid "Are you sure you want to clear all demo data?" msgstr "crwdns64782:0crwdne64782:0" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "crwdns205535:0crwdne205535:0" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "crwdns205537:0crwdne205537:0" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "crwdns64784:0crwdne64784:0" @@ -5490,18 +5495,18 @@ msgstr "crwdns64802:0{0}crwdnd64802:0{1}crwdne64802:0" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "crwdns64804:0{0}crwdnd64804:0{1}crwdne64804:0" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "crwdns64808:0{0}crwdne64808:0" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "crwdns111624:0{0}crwdne111624:0" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "crwdns64810:0{0}crwdne64810:0" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "crwdns205539:0{0}crwdne205539:0" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5540,7 +5545,7 @@ msgstr "crwdns132704:0crwdne132704:0" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5612,7 +5617,7 @@ msgstr "crwdns64862:0crwdne64862:0" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5778,7 +5783,7 @@ msgstr "crwdns64940:0crwdne64940:0" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5910,7 +5915,7 @@ msgstr "crwdns65006:0crwdne65006:0" msgid "Asset cancelled" msgstr "crwdns65008:0crwdne65008:0" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "crwdns65010:0{0}crwdne65010:0" @@ -5926,7 +5931,7 @@ msgstr "crwdns65012:0{0}crwdne65012:0" msgid "Asset created" msgstr "crwdns65014:0crwdne65014:0" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "crwdns65018:0{0}crwdne65018:0" @@ -5979,7 +5984,7 @@ msgstr "crwdns65042:0crwdne65042:0" msgid "Asset transferred to Location {0}" msgstr "crwdns65044:0{0}crwdne65044:0" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "crwdns65046:0{0}crwdne65046:0" @@ -6057,7 +6062,7 @@ msgstr "crwdns65076:0{0}crwdne65076:0" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6078,7 +6083,7 @@ msgstr "crwdns154228:0{item_code}crwdne154228:0" msgid "Assets {assets_link} created for {item_code}" msgstr "crwdns154230:0{assets_link}crwdnd154230:0{item_code}crwdne154230:0" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "crwdns65092:0crwdne65092:0" @@ -6088,6 +6093,11 @@ msgstr "crwdns65092:0crwdne65092:0" msgid "Assign to Name" msgstr "crwdns132732:0crwdne132732:0" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "crwdns205541:0{0}crwdnd205541:0{1}crwdnd205541:0{2}crwdne205541:0" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6106,19 +6116,23 @@ msgstr "crwdns152198:0#{0}crwdnd152198:0{1}crwdnd152198:0{2}crwdnd152198:0{3}crw msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "crwdns142818:0#{0}crwdnd142818:0{1}crwdnd142818:0{2}crwdnd142818:0{3}crwdnd142818:0{4}crwdne142818:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "crwdns164144:0{0}crwdnd164144:0{1}crwdne164144:0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "crwdns205543:0{0}crwdnd205543:0{1}crwdne205543:0" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "crwdns151596:0crwdne151596:0" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "crwdns104530:0crwdne104530:0" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "crwdns104532:0crwdne104532:0" @@ -6139,6 +6153,10 @@ msgstr "crwdns65108:0crwdne65108:0" msgid "At least one of the Selling or Buying must be selected" msgstr "crwdns104536:0crwdne104536:0" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "crwdns205545:0{0}crwdne205545:0" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "crwdns194944:0{0}crwdne194944:0" @@ -6159,7 +6177,7 @@ msgstr "crwdns65110:0#{0}crwdnd65110:0{1}crwdnd65110:0{2}crwdne65110:0" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "crwdns201843:0#{0}crwdnd201843:0{1}crwdne201843:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "crwdns65112:0{0}crwdnd65112:0{1}crwdne65112:0" @@ -6167,26 +6185,22 @@ msgstr "crwdns65112:0{0}crwdnd65112:0{1}crwdne65112:0" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "crwdns132736:0{0}crwdnd132736:0{1}crwdne132736:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "crwdns127452:0{0}crwdnd127452:0{1}crwdne127452:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "crwdns65114:0{0}crwdnd65114:0{1}crwdne65114:0" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "crwdns111626:0{0}crwdnd111626:0{1}crwdne111626:0" +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "crwdns205547:0{0}crwdnd205547:0{1}crwdne205547:0" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "crwdns132738:0{0}crwdnd132738:0{1}crwdne132738:0" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "crwdns160280:0{0}crwdne160280:0" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6398,7 +6412,7 @@ msgstr "crwdns65216:0{0}crwdne65216:0" msgid "Auto Repeat Detail" msgstr "crwdns132794:0crwdne132794:0" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "crwdns155616:0crwdne155616:0" @@ -6459,7 +6473,7 @@ msgid "Auto reconcile Payments" msgstr "crwdns202067:0crwdne202067:0" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "crwdns65254:0crwdne65254:0" @@ -6584,7 +6598,7 @@ msgstr "crwdns65282:0crwdne65282:0" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6680,7 +6694,7 @@ msgstr "crwdns65316:0crwdne65316:0" msgid "Available {0}" msgstr "crwdns65320:0{0}crwdne65320:0" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "crwdns65324:0crwdne65324:0" @@ -6798,7 +6812,7 @@ msgstr "crwdns132856:0crwdne132856:0" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6817,8 +6831,8 @@ msgid "BOM 1" msgstr "crwdns65380:0crwdne65380:0" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "crwdns65382:0{0}crwdnd65382:0{1}crwdne65382:0" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "crwdns205549:0{0}crwdnd205549:0{1}crwdne205549:0" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6832,7 +6846,7 @@ msgstr "crwdns65384:0crwdne65384:0" msgid "BOM Comparison Tool" msgstr "crwdns65386:0crwdne65386:0" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "crwdns202675:0crwdne202675:0" @@ -6963,7 +6977,7 @@ msgstr "crwdns65442:0crwdne65442:0" msgid "BOM Operations Time" msgstr "crwdns65446:0crwdne65446:0" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "crwdns202679:0crwdne202679:0" @@ -6984,7 +6998,7 @@ msgstr "crwdns65454:0crwdne65454:0" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "crwdns198302:0crwdne198302:0" @@ -7036,10 +7050,6 @@ msgstr "crwdns111628:0crwdne111628:0" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "crwdns65474:0{0}crwdne65474:0" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "crwdns65476:0{0}crwdne65476:0" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7078,15 +7088,19 @@ msgstr "crwdns65488:0{0}crwdnd65488:0{1}crwdne65488:0" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "crwdns65490:0{1}crwdnd65490:0{0}crwdne65490:0" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "crwdns205551:0{0}crwdne205551:0" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "crwdns65492:0{0}crwdnd65492:0{1}crwdne65492:0" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "crwdns65494:0{0}crwdne65494:0" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "crwdns65496:0{0}crwdne65496:0" @@ -7167,7 +7181,7 @@ msgstr "crwdns65516:0crwdne65516:0" msgid "Balance (Dr - Cr)" msgstr "crwdns65518:0crwdne65518:0" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "crwdns65520:0{0}crwdne65520:0" @@ -7237,6 +7251,10 @@ msgstr "crwdns160648:0crwdne160648:0" msgid "Balance Sheet Summary" msgstr "crwdns132888:0crwdne132888:0" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "crwdns205553:0{0}crwdne205553:0" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "crwdns111630:0crwdne111630:0" @@ -7297,7 +7315,7 @@ msgstr "crwdns200913:0{0}crwdne200913:0" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7397,8 +7415,8 @@ msgid "Bank Account Type" msgstr "crwdns65614:0crwdne65614:0" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "crwdns154417:0crwdne154417:0" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "crwdns205555:0{0}crwdnd205555:0{1}crwdnd205555:0{2}crwdne205555:0" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7642,7 +7660,7 @@ msgstr "crwdns65690:0{0}crwdne65690:0" msgid "Bank Transactions" msgstr "crwdns200941:0crwdne200941:0" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "crwdns65692:0{0}crwdne65692:0" @@ -7654,7 +7672,7 @@ msgstr "crwdns200943:0crwdne200943:0" msgid "Bank account debit for deposit" msgstr "crwdns200945:0crwdne200945:0" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "crwdns65694:0{0}crwdne65694:0" @@ -7666,7 +7684,7 @@ msgstr "crwdns65696:0crwdne65696:0" msgid "Bank statement imported." msgstr "crwdns200947:0crwdne200947:0" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "crwdns65698:0crwdne65698:0" @@ -7942,8 +7960,8 @@ msgstr "crwdns202083:0crwdne202083:0" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7974,15 +7992,15 @@ msgstr "crwdns202083:0crwdne202083:0" msgid "Batch No" msgstr "crwdns65810:0crwdne65810:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "crwdns65852:0crwdne65852:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "crwdns104540:0{0}crwdne104540:0" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "crwdns205557:0{0}crwdne205557:0" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "crwdns65854:0{0}crwdnd65854:0{1}crwdne65854:0" @@ -7990,6 +8008,10 @@ msgstr "crwdns65854:0{0}crwdnd65854:0{1}crwdne65854:0" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "crwdns151934:0{0}crwdnd151934:0{1}crwdnd151934:0{2}crwdnd151934:0{1}crwdnd151934:0{2}crwdne151934:0" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "crwdns205559:0{0}crwdnd205559:0{1}crwdnd205559:0{2}crwdnd205559:0{3}crwdne205559:0" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8055,9 +8077,9 @@ msgstr "crwdns132974:0crwdne132974:0" msgid "Batch and Serial No" msgstr "crwdns132976:0crwdne132976:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "crwdns65882:0crwdne65882:0" +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "crwdns205561:0{0}crwdne205561:0" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8169,7 +8191,7 @@ msgstr "crwdns201759:0crwdne201759:0" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8644,8 +8666,8 @@ msgid "Booked Fixed Asset" msgstr "crwdns133054:0crwdne133054:0" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "crwdns66108:0{0}crwdne66108:0" +msgid "Books have been closed until the period ending on {0}" +msgstr "crwdns205563:0{0}crwdne205563:0" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8872,8 +8894,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "crwdns66204:0{0}crwdne66204:0" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "crwdns66206:0{0}crwdne66206:0" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "crwdns205565:0{0}crwdne205565:0" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8890,7 +8912,7 @@ msgstr "crwdns159798:0crwdne159798:0" msgid "Buffered Cursor" msgstr "crwdns154858:0crwdne154858:0" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "crwdns66210:0crwdne66210:0" @@ -8898,7 +8920,7 @@ msgstr "crwdns66210:0crwdne66210:0" msgid "Build Tree" msgstr "crwdns66212:0crwdne66212:0" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "crwdns66214:0crwdne66214:0" @@ -9225,6 +9247,10 @@ msgstr "crwdns66308:0crwdne66308:0" msgid "Calculated Discount Mismatch" msgstr "crwdns155362:0crwdne155362:0" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "crwdns205567:0crwdne205567:0" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9396,7 +9422,7 @@ msgstr "crwdns195764:0{0}crwdne195764:0" msgid "Can be approved by {0}" msgstr "crwdns66390:0{0}crwdne66390:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "crwdns66392:0{0}crwdne66392:0" @@ -9425,21 +9451,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "crwdns66404:0crwdne66404:0" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "crwdns66406:0{0}crwdne66406:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "crwdns66408:0crwdne66408:0" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "crwdns66410:0crwdne66410:0" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "crwdns205569:0crwdne205569:0" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "crwdns66414:0{0}crwdne66414:0" @@ -9468,7 +9497,7 @@ msgstr "crwdns202691:0crwdne202691:0" msgid "Cancelation Date" msgstr "crwdns133130:0crwdne133130:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "crwdns202693:0crwdne202693:0" @@ -9476,11 +9505,6 @@ msgstr "crwdns202693:0crwdne202693:0" msgid "Cannot Assign Cashier" msgstr "crwdns155620:0crwdne155620:0" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "crwdns66520:0crwdne66520:0" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "crwdns160598:0crwdne160598:0" @@ -9495,10 +9519,6 @@ msgstr "crwdns154636:0crwdne154636:0" msgid "Cannot Merge" msgstr "crwdns66522:0crwdne66522:0" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "crwdns66524:0crwdne66524:0" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "crwdns66526:0crwdne66526:0" @@ -9523,6 +9543,11 @@ msgstr "crwdns66532:0crwdne66532:0" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "crwdns66534:0crwdne66534:0" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "crwdns205571:0crwdne205571:0" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "crwdns157450:0{0}crwdnd157450:0{1}crwdne157450:0" @@ -9532,14 +9557,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "crwdns155622:0crwdne155622:0" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "crwdns160650:0{0}crwdnd160650:0{1}crwdne160650:0" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "crwdns205573:0{0}crwdnd205573:0{1}crwdne205573:0" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "crwdns66538:0crwdne66538:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "crwdns66540:0{0}crwdne66540:0" @@ -9547,7 +9572,7 @@ msgstr "crwdns66540:0{0}crwdne66540:0" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "crwdns66542:0crwdne66542:0" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "crwdns160282:0crwdne160282:0" @@ -9559,7 +9584,7 @@ msgstr "crwdns164154:0{0}crwdne164154:0" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "crwdns154236:0{asset_link}crwdne154236:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "crwdns66546:0crwdne66546:0" @@ -9584,8 +9609,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "crwdns66558:0crwdne66558:0" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "crwdns66560:0{0}crwdnd66560:0{1}crwdne66560:0" +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "crwdns205575:0{0}crwdnd205575:0{1}crwdne205575:0" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9611,7 +9636,7 @@ msgstr "crwdns202695:0{0}crwdnd202695:0{1}crwdnd202695:0{2}crwdne202695:0" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "crwdns66570:0crwdne66570:0" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "crwdns66574:0{0}crwdne66574:0" @@ -9620,6 +9645,10 @@ msgstr "crwdns66574:0{0}crwdne66574:0" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "crwdns66576:0{0}crwdne66576:0" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "crwdns205577:0{0}crwdne205577:0" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "crwdns154638:0{0}crwdne154638:0" @@ -9637,7 +9666,7 @@ msgstr "crwdns66580:0crwdne66580:0" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "crwdns66582:0crwdne66582:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "crwdns151892:0crwdne151892:0" @@ -9650,7 +9679,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "crwdns163928:0crwdne163928:0" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "crwdns194948:0{0}crwdne194948:0" @@ -9682,7 +9711,7 @@ msgstr "crwdns200028:0{0}crwdnd200028:0{1}crwdnd200028:0{2}crwdne200028:0" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "crwdns160602:0{0}crwdne160602:0" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "crwdns202697:0crwdne202697:0" @@ -9707,19 +9736,23 @@ msgstr "crwdns66588:0crwdne66588:0" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "crwdns143360:0{0}crwdne143360:0" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "crwdns164156:0{0}crwdnd164156:0{1}crwdnd164156:0{2}crwdnd164156:0{3}crwdne164156:0" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "crwdns205579:0crwdne205579:0" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "crwdns194952:0{0}crwdnd194952:0{1}crwdnd194952:0{2}crwdne194952:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "crwdns66596:0{0}crwdne66596:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "crwdns66598:0{0}crwdnd66598:0{1}crwdne66598:0" @@ -9731,12 +9764,16 @@ msgstr "crwdns66600:0crwdne66600:0" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "crwdns163930:0crwdne163930:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "crwdns66602:0crwdne66602:0" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "crwdns205581:0{0}crwdnd205581:0{1}crwdnd205581:0{2}crwdnd205581:0{3}crwdnd205581:0{4}crwdnd205581:0{5}crwdnd205581:0{6}crwdnd205581:0{7}crwdnd205581:0{8}crwdnd205581:0{9}crwdnd205581:0{10}crwdnd205581:0{11}crwdne205581:0" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "crwdns66604:0crwdne66604:0" @@ -9745,19 +9782,23 @@ msgstr "crwdns66604:0crwdne66604:0" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "crwdns66606:0crwdne66606:0" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "crwdns200010:0crwdne200010:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "crwdns66608:0crwdne66608:0" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "crwdns205583:0{0}crwdne205583:0" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "crwdns66610:0crwdne66610:0" @@ -10184,9 +10225,9 @@ msgstr "crwdns66754:0crwdne66754:0" msgid "Change this date manually to setup the next synchronization start date" msgstr "crwdns133184:0crwdne133184:0" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "crwdns66758:0crwdne66758:0" +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "crwdns205585:0{0}crwdnd205585:0{1}crwdne205585:0" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10212,8 +10253,8 @@ msgstr "crwdns154764:0crwdne154764:0" msgid "Channel Partner" msgstr "crwdns133188:0crwdne133188:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "crwdns66766:0{0}crwdne66766:0" @@ -10407,7 +10448,7 @@ msgstr "crwdns133228:0crwdne133228:0" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "crwdns66844:0crwdne66844:0" @@ -10465,7 +10506,7 @@ msgstr "crwdns133230:0crwdne133230:0" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "crwdns152086:0crwdne152086:0" @@ -10475,8 +10516,8 @@ msgid "Child Table Not Allowed" msgstr "crwdns194958:0crwdne194958:0" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "crwdns66858:0crwdne66858:0" +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "crwdns205587:0crwdne205587:0" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10654,7 +10695,7 @@ msgstr "crwdns66922:0crwdne66922:0" msgid "Close Replied Opportunity After Days" msgstr "crwdns133252:0crwdne133252:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "crwdns66926:0crwdne66926:0" @@ -10668,7 +10709,7 @@ msgstr "crwdns66960:0crwdne66960:0" msgid "Closed Documents" msgstr "crwdns133254:0crwdne133254:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "crwdns66964:0crwdne66964:0" @@ -10898,9 +10939,9 @@ msgstr "crwdns67044:0crwdne67044:0" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11337,7 +11378,7 @@ msgstr "crwdns133292:0crwdne133292:0" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11407,7 +11448,7 @@ msgstr "crwdns133292:0crwdne133292:0" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11447,10 +11488,6 @@ msgstr "crwdns67090:0crwdne67090:0" msgid "Company Abbreviation" msgstr "crwdns67340:0crwdne67340:0" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "crwdns200736:0crwdne200736:0" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "crwdns67342:0crwdne67342:0" @@ -11615,7 +11652,7 @@ msgstr "crwdns133318:0crwdne133318:0" msgid "Company Tax ID" msgstr "crwdns133320:0crwdne133320:0" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "crwdns67420:0crwdne67420:0" @@ -11659,12 +11696,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "crwdns194966:0crwdne194966:0" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "crwdns67430:0crwdne67430:0" +msgid "Company name does not match" +msgstr "crwdns205589:0crwdne205589:0" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "crwdns67432:0{0}crwdnd67432:0{1}crwdne67432:0" +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "crwdns205591:0{0}crwdnd205591:0{1}crwdne205591:0" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11702,6 +11739,14 @@ msgstr "crwdns154238:0{0}crwdne154238:0" msgid "Company {0} does not exist" msgstr "crwdns67444:0{0}crwdne67444:0" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "crwdns205593:0{0}crwdne205593:0" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "crwdns205595:0{0}crwdnd205595:0{1}crwdne205595:0" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "crwdns67446:0{0}crwdne67446:0" @@ -11710,14 +11755,6 @@ msgstr "crwdns67446:0{0}crwdne67446:0" msgid "Company {0} is not in South Africa." msgstr "crwdns200190:0{0}crwdne200190:0" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "crwdns67448:0crwdne67448:0" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "crwdns67450:0crwdne67450:0" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11739,7 +11776,7 @@ msgstr "crwdns133330:0crwdne133330:0" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "crwdns67462:0crwdne67462:0" @@ -12183,8 +12220,8 @@ msgid "Consumed Qty" msgstr "crwdns67708:0crwdne67708:0" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "crwdns152336:0{0}crwdne152336:0" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "crwdns205597:0{0}crwdnd205597:0{1}crwdnd205597:0{2}crwdne205597:0" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12499,7 +12536,7 @@ msgstr "crwdns201963:0crwdne201963:0" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12799,7 +12836,7 @@ msgstr "crwdns200526:0crwdne200526:0" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12824,7 +12861,7 @@ msgstr "crwdns200526:0crwdne200526:0" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12882,7 +12919,7 @@ msgstr "crwdns68158:0crwdne68158:0" msgid "Cost Center and Budgeting" msgstr "crwdns68162:0crwdne68162:0" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "crwdns154383:0{0}crwdne154383:0" @@ -12894,7 +12931,7 @@ msgstr "crwdns68164:0crwdne68164:0" msgid "Cost Center is required" msgstr "crwdns201023:0crwdne201023:0" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "crwdns68166:0{0}crwdnd68166:0{1}crwdne68166:0" @@ -12916,12 +12953,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "crwdns68174:0{0}crwdne68174:0" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "crwdns68176:0crwdne68176:0" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "crwdns205599:0{0}crwdnd205599:0{1}crwdne205599:0" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "crwdns68178:0crwdne68178:0" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "crwdns205601:0{0}crwdne205601:0" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13045,14 +13082,14 @@ msgid "Costing and Billing" msgstr "crwdns133486:0crwdne133486:0" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "crwdns156058:0crwdne156058:0" +msgid "Costing and Billing fields have been updated" +msgstr "crwdns205603:0crwdne205603:0" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "crwdns68232:0crwdne68232:0" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "crwdns68234:0crwdne68234:0" @@ -13064,7 +13101,7 @@ msgstr "crwdns68238:0crwdne68238:0" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "crwdns202107:0crwdne202107:0" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "crwdns68240:0crwdne68240:0" @@ -13074,8 +13111,8 @@ msgstr "crwdns154868:0{0}crwdne154868:0" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "crwdns68242:0crwdne68242:0" +msgid "Could not find path for {0}" +msgstr "crwdns205605:0{0}crwdne205605:0" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13098,7 +13135,7 @@ msgstr "crwdns202113:0crwdne202113:0" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "crwdns68246:0{0}crwdne68246:0" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "crwdns68248:0crwdne68248:0" @@ -13328,10 +13365,6 @@ msgstr "crwdns68342:0crwdne68342:0" msgid "Create New Lead" msgstr "crwdns68344:0crwdne68344:0" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "crwdns202701:0crwdne202701:0" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "crwdns201027:0{0}crwdne201027:0" @@ -13350,7 +13383,7 @@ msgstr "crwdns197132:0crwdne197132:0" msgid "Create Opportunity" msgstr "crwdns68346:0crwdne68346:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "crwdns68348:0crwdne68348:0" @@ -13365,7 +13398,7 @@ msgstr "crwdns68352:0crwdne68352:0" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "crwdns155628:0crwdne155628:0" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "crwdns197134:0crwdne197134:0" @@ -13593,7 +13626,7 @@ msgstr "crwdns201033:0crwdne201033:0" msgid "Create a variant with the template image." msgstr "crwdns142938:0crwdne142938:0" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "crwdns68438:0crwdne68438:0" @@ -13627,7 +13660,7 @@ msgstr "crwdns68456:0{0}crwdnd68456:0{1}crwdne68456:0" msgid "Created By Migration" msgstr "crwdns164164:0crwdne164164:0" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "crwdns68460:0{0}crwdnd68460:0{1}crwdne68460:0" @@ -13722,7 +13755,7 @@ msgstr "crwdns68482:0crwdne68482:0" msgid "Creating demo data" msgstr "crwdns199548:0crwdne199548:0" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "crwdns68486:0crwdne68486:0" @@ -13732,16 +13765,16 @@ msgstr "crwdns68486:0crwdne68486:0" msgid "Creation" msgstr "crwdns68488:0crwdne68488:0" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "crwdns68492:0{0}crwdnd68492:0{1}crwdne68492:0" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "crwdns68494:0{0}crwdne68494:0" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "crwdns68496:0{0}crwdne68496:0" @@ -13775,11 +13808,11 @@ msgstr "crwdns68496:0{0}crwdne68496:0" msgid "Credit" msgstr "crwdns68498:0crwdne68498:0" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "crwdns68504:0crwdne68504:0" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "crwdns68506:0{0}crwdne68506:0" @@ -13860,7 +13893,7 @@ msgstr "crwdns133528:0crwdne133528:0" msgid "Credit Limit" msgstr "crwdns68532:0crwdne68532:0" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "crwdns68544:0crwdne68544:0" @@ -13940,16 +13973,16 @@ msgstr "crwdns133540:0crwdne133540:0" msgid "Credit in Company Currency" msgstr "crwdns133542:0crwdne133542:0" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "crwdns68580:0{0}crwdnd68580:0{1}crwdnd68580:0{2}crwdne68580:0" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "crwdns68582:0{0}crwdne68582:0" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "crwdns68584:0{0}crwdne68584:0" @@ -14008,12 +14041,12 @@ msgstr "crwdns133552:0crwdne133552:0" msgid "Criteria Weight" msgstr "crwdns133554:0crwdne133554:0" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "crwdns68606:0crwdne68606:0" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "crwdns152204:0crwdne152204:0" @@ -14136,7 +14169,7 @@ msgstr "crwdns133558:0crwdne133558:0" msgid "Currency can not be changed after making entries using some other currency" msgstr "crwdns68708:0crwdne68708:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "crwdns161070:0crwdne161070:0" @@ -14201,8 +14234,8 @@ msgid "Current BOM" msgstr "crwdns133570:0crwdne133570:0" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "crwdns68736:0crwdne68736:0" +msgid "Current BOM and New BOM cannot be the same" +msgstr "crwdns205607:0crwdne205607:0" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14264,10 +14297,6 @@ msgstr "crwdns133586:0crwdne133586:0" msgid "Current Serial No" msgstr "crwdns133588:0crwdne133588:0" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "crwdns200750:0crwdne200750:0" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15098,7 +15127,7 @@ msgstr "crwdns69136:0crwdne69136:0" msgid "DFS" msgstr "crwdns133668:0crwdne133668:0" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "crwdns69160:0{0}crwdne69160:0" @@ -15243,10 +15272,6 @@ msgstr "crwdns160652:0crwdne160652:0" msgid "Day Of Week" msgstr "crwdns133698:0crwdne133698:0" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "crwdns200752:0crwdne200752:0" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15353,11 +15378,11 @@ msgstr "crwdns143396:0crwdne143396:0" msgid "Debit" msgstr "crwdns69316:0crwdne69316:0" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "crwdns69322:0crwdne69322:0" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "crwdns69324:0{0}crwdne69324:0" @@ -15519,7 +15544,7 @@ msgstr "crwdns112302:0crwdne112302:0" msgid "Decimeter" msgstr "crwdns112304:0crwdne112304:0" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "crwdns69368:0crwdne69368:0" @@ -16200,8 +16225,8 @@ msgstr "crwdns201045:0crwdne201045:0" msgid "Deleting {0} and all associated Common Code documents..." msgstr "crwdns151674:0{0}crwdne151674:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "crwdns111692:0crwdne111692:0" @@ -16295,7 +16320,7 @@ msgstr "crwdns69704:0crwdne69704:0" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16353,7 +16378,7 @@ msgstr "crwdns69724:0crwdne69724:0" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16683,7 +16708,7 @@ msgstr "crwdns69866:0crwdne69866:0" msgid "Depreciation Amount" msgstr "crwdns69872:0crwdne69872:0" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "crwdns69876:0crwdne69876:0" @@ -16699,7 +16724,7 @@ msgstr "crwdns69878:0crwdne69878:0" msgid "Depreciation Details" msgstr "crwdns133952:0crwdne133952:0" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "crwdns69882:0crwdne69882:0" @@ -16769,7 +16794,7 @@ msgstr "crwdns142940:0crwdne142940:0" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "crwdns142942:0{0}crwdne142942:0" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "crwdns69910:0{0}crwdnd69910:0{1}crwdne69910:0" @@ -16798,11 +16823,11 @@ msgstr "crwdns69916:0crwdne69916:0" msgid "Depreciation Schedule View" msgstr "crwdns133964:0crwdne133964:0" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "crwdns69926:0crwdne69926:0" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "crwdns154183:0crwdne154183:0" @@ -16830,7 +16855,7 @@ msgstr "crwdns143408:0crwdne143408:0" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "crwdns70108:0crwdne70108:0" @@ -16933,12 +16958,12 @@ msgid "Difference Account in Items Table" msgstr "crwdns154878:0crwdne154878:0" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "crwdns154766:0crwdne154766:0" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "crwdns205609:0crwdne205609:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "crwdns70160:0crwdne70160:0" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "crwdns205611:0crwdne205611:0" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17000,7 +17025,7 @@ msgstr "crwdns70184:0crwdne70184:0" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "crwdns70186:0crwdne70186:0" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "crwdns70188:0crwdne70188:0" @@ -17173,7 +17198,7 @@ msgstr "crwdns201067:0crwdne201067:0" msgid "Disabled Product Bundle" msgstr "crwdns202707:0crwdne202707:0" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "crwdns70304:0{0}crwdne70304:0" @@ -17182,18 +17207,18 @@ msgstr "crwdns70304:0{0}crwdne70304:0" msgid "Disabled items cannot be selected in any transaction." msgstr "crwdns200756:0crwdne200756:0" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "crwdns70306:0crwdne70306:0" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "crwdns205613:0{0}crwdne205613:0" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "crwdns202133:0crwdne202133:0" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "crwdns70308:0crwdne70308:0" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "crwdns205615:0{0}crwdne205615:0" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17442,9 +17467,9 @@ msgstr "crwdns152022:0crwdne152022:0" msgid "Discount must be less than 100" msgstr "crwdns70410:0crwdne70410:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "crwdns70412:0crwdne70412:0" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "crwdns205617:0{0}crwdne205617:0" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17808,11 +17833,11 @@ msgstr "crwdns156060:0crwdne156060:0" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" -msgstr "crwdns200532:0{0}crwdne200532:0" +msgid "DocType can be one of {0}" +msgstr "crwdns205619:0{0}crwdne205619:0" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "crwdns194972:0{0}crwdne194972:0" @@ -17850,22 +17875,6 @@ msgstr "crwdns70518:0crwdne70518:0" msgid "Document Count" msgstr "crwdns194984:0crwdne194984:0" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "crwdns200758:0crwdne200758:0" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "crwdns195840:0crwdne195840:0" @@ -18171,7 +18180,7 @@ msgstr "crwdns70782:0crwdne70782:0" msgid "Duplicate Sales Invoices found" msgstr "crwdns154640:0crwdne154640:0" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "crwdns163864:0crwdne163864:0" @@ -18325,7 +18334,7 @@ msgstr "crwdns111712:0crwdne111712:0" msgid "Edit Cart" msgstr "crwdns111714:0crwdne111714:0" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "crwdns70834:0crwdne70834:0" @@ -18549,8 +18558,8 @@ msgid "Email verification failed." msgstr "crwdns70974:0crwdne70974:0" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "crwdns70976:0crwdne70976:0" +msgid "Emails queued" +msgstr "crwdns205621:0crwdne205621:0" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18737,7 +18746,7 @@ msgstr "crwdns134198:0crwdne134198:0" msgid "Empty" msgstr "crwdns71054:0crwdne71054:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "crwdns194990:0crwdne194990:0" @@ -18746,7 +18755,7 @@ msgstr "crwdns194990:0crwdne194990:0" msgid "Ems(Pica)" msgstr "crwdns112320:0crwdne112320:0" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "crwdns202143:0{0}crwdnd202143:0{1}crwdne202143:0" @@ -18825,6 +18834,12 @@ msgstr "crwdns195150:0crwdne195150:0" msgid "Enable European Access" msgstr "crwdns134218:0crwdne134218:0" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "crwdns205623:0crwdne205623:0" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19096,7 +19111,7 @@ msgstr "crwdns111720:0crwdne111720:0" msgid "End Transit" msgstr "crwdns71152:0crwdne71152:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19219,7 +19234,7 @@ msgstr "crwdns71192:0crwdne71192:0" msgid "Enter date to scrap asset" msgstr "crwdns148778:0crwdne148778:0" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "crwdns71194:0crwdne71194:0" @@ -19274,6 +19289,10 @@ msgstr "crwdns71212:0crwdne71212:0" msgid "Enter {0} amount." msgstr "crwdns71214:0{0}crwdne71214:0" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "crwdns205625:0{0}crwdne205625:0" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "crwdns143416:0crwdne143416:0" @@ -19309,7 +19328,7 @@ msgstr "crwdns134260:0crwdne134260:0" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "crwdns71228:0crwdne71228:0" @@ -19333,7 +19352,7 @@ msgstr "crwdns112322:0crwdne112322:0" msgid "Error Description" msgstr "crwdns134264:0crwdne134264:0" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "crwdns104570:0crwdne104570:0" @@ -19365,19 +19384,21 @@ msgstr "crwdns71268:0crwdne71268:0" msgid "Error while processing deferred accounting for {0}" msgstr "crwdns71270:0{0}crwdne71270:0" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "crwdns71272:0crwdne71272:0" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "crwdns154884:0{0}crwdnd154884:0{1}crwdne154884:0" +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "crwdns205627:0{0}crwdnd205627:0{1}crwdne205627:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "crwdns71274:0{0}crwdne71274:0" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "crwdns205629:0{0}crwdne205629:0" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "crwdns205631:0{0}crwdne205631:0" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19391,7 +19412,7 @@ msgid "Estimated Arrival" msgstr "crwdns134272:0crwdne134272:0" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "crwdns71280:0crwdne71280:0" @@ -19440,7 +19461,7 @@ msgstr "crwdns134284:0crwdne134284:0" msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "crwdns201093:0crwdne201093:0" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "crwdns71298:0{0}crwdnd71298:0{1}crwdne71298:0" @@ -19721,7 +19742,7 @@ msgstr "crwdns134314:0crwdne134314:0" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19808,7 +19829,7 @@ msgstr "crwdns134320:0crwdne134320:0" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "crwdns71456:0crwdne71456:0" @@ -20067,9 +20088,9 @@ msgstr "crwdns112324:0crwdne112324:0" msgid "Failed Entries" msgstr "crwdns71626:0crwdne71626:0" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "crwdns71630:0crwdne71630:0" +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "crwdns205633:0crwdne205633:0" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20266,7 +20287,7 @@ msgid "Fetching Sales Orders..." msgstr "crwdns159824:0crwdne159824:0" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "crwdns71690:0crwdne71690:0" @@ -20304,15 +20325,15 @@ msgstr "crwdns201855:0{0}crwdnd201855:0{1}crwdne201855:0" msgid "Fields will be copied over only at time of creation." msgstr "crwdns134370:0crwdne134370:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "crwdns194996:0crwdne194996:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "crwdns194998:0crwdne194998:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "crwdns195000:0crwdne195000:0" @@ -20321,7 +20342,7 @@ msgstr "crwdns195000:0crwdne195000:0" msgid "File to Rename" msgstr "crwdns134374:0crwdne134374:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20480,11 +20501,11 @@ msgstr "crwdns161088:0crwdne161088:0" msgid "Financial Report Template" msgstr "crwdns161090:0crwdne161090:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "crwdns161092:0{0}crwdne161092:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "crwdns161094:0{0}crwdne161094:0" @@ -20553,7 +20574,7 @@ msgstr "crwdns134402:0crwdne134402:0" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20566,7 +20587,7 @@ msgstr "crwdns71808:0crwdne71808:0" msgid "Finished Good Item Code" msgstr "crwdns71812:0crwdne71812:0" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "crwdns71814:0crwdne71814:0" @@ -20674,7 +20695,7 @@ msgstr "crwdns71842:0crwdne71842:0" msgid "Finished Goods based Operating Cost" msgstr "crwdns134426:0crwdne134426:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "crwdns71844:0{0}crwdnd71844:0{1}crwdne71844:0" @@ -20773,10 +20794,6 @@ msgstr "crwdns71872:0{0}crwdne71872:0" msgid "Fiscal Year" msgstr "crwdns71874:0crwdne71874:0" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "crwdns200776:0crwdne200776:0" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20790,11 +20807,8 @@ msgstr "crwdns195848:0crwdne195848:0" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "crwdns71892:0crwdne71892:0" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "crwdns71896:0{0}crwdne71896:0" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "crwdns71898:0{0}crwdne71898:0" @@ -20827,7 +20841,7 @@ msgstr "crwdns71904:0crwdne71904:0" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20963,7 +20977,7 @@ msgstr "crwdns112340:0crwdne112340:0" msgid "For" msgstr "crwdns71946:0crwdne71946:0" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "crwdns71948:0crwdne71948:0" @@ -20988,10 +21002,6 @@ msgstr "crwdns134460:0crwdne134460:0" msgid "For Item" msgstr "crwdns111740:0crwdne111740:0" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "crwdns104576:0{0}crwdnd104576:0{1}crwdnd104576:0{2}crwdnd104576:0{3}crwdne104576:0" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21058,12 +21068,12 @@ msgid "For Work Order" msgstr "crwdns71978:0crwdne71978:0" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "crwdns71980:0{0}crwdne71980:0" +msgid "For an item {0}, quantity must be a negative number" +msgstr "crwdns205635:0{0}crwdne205635:0" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "crwdns71982:0{0}crwdne71982:0" +msgid "For an item {0}, quantity must be a positive number" +msgstr "crwdns205637:0{0}crwdne205637:0" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21095,13 +21105,13 @@ msgstr "crwdns134474:0crwdne134474:0" msgid "For individual supplier" msgstr "crwdns134476:0crwdne134476:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "crwdns154774:0{0}crwdnd154774:0{1}crwdnd154774:0{2}crwdnd154774:0{3}crwdne154774:0" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "crwdns205639:0{0}crwdnd205639:0{1}crwdnd205639:0{2}crwdnd205639:0{3}crwdne205639:0" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "crwdns71992:0{0}crwdnd71992:0{1}crwdnd71992:0{2}crwdne71992:0" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "crwdns205641:0{0}crwdnd205641:0{1}crwdnd205641:0{2}crwdne205641:0" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21113,9 +21123,9 @@ msgstr "crwdns201769:0crwdne201769:0" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "crwdns195160:0{0}crwdnd195160:0{1}crwdne195160:0" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "crwdns104578:0{0}crwdnd104578:0{1}crwdnd104578:0{2}crwdne104578:0" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "crwdns205643:0{0}crwdnd205643:0{1}crwdnd205643:0{2}crwdne205643:0" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21130,21 +21140,17 @@ msgstr "crwdns197182:0{0}crwdne197182:0" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "crwdns159832:0crwdne159832:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "crwdns71998:0{0}crwdnd71998:0{1}crwdne71998:0" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "crwdns134478:0crwdne134478:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "crwdns72002:0{0}crwdnd72002:0{1}crwdnd72002:0{2}crwdnd72002:0{3}crwdne72002:0" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "crwdns72004:0{0}crwdne72004:0" @@ -21163,11 +21169,15 @@ msgstr "crwdns72006:0{0}crwdne72006:0" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "crwdns111744:0crwdne111744:0" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "crwdns205645:0{0}crwdnd205645:0{1}crwdnd205645:0{2}crwdnd205645:0{3}crwdne205645:0" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "crwdns195002:0{0}crwdnd195002:0{1}crwdnd195002:0{2}crwdne195002:0" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "crwdns154502:0{0}crwdnd154502:0{1}crwdne154502:0" @@ -21255,6 +21265,21 @@ msgstr "crwdns134488:0crwdne134488:0" msgid "Forum URL" msgstr "crwdns134490:0crwdne134490:0" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "crwdns205647:0crwdne205647:0" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "crwdns205649:0crwdne205649:0" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "crwdns205651:0crwdne205651:0" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "crwdns161098:0crwdne161098:0" @@ -21798,7 +21823,7 @@ msgstr "crwdns72314:0crwdne72314:0" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "crwdns72316:0crwdne72316:0" @@ -21923,6 +21948,10 @@ msgstr "crwdns72356:0crwdne72356:0" msgid "General Ledger remarks length" msgstr "crwdns202161:0crwdne202161:0" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "crwdns205653:0{0}crwdne205653:0" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21976,7 +22005,7 @@ msgstr "crwdns152032:0crwdne152032:0" msgid "Generate To Delete List" msgstr "crwdns195006:0crwdne195006:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "crwdns195008:0crwdne195008:0" @@ -22319,7 +22348,7 @@ msgstr "crwdns72490:0crwdne72490:0" msgid "Goods Transferred" msgstr "crwdns72492:0crwdne72492:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "crwdns72494:0{0}crwdne72494:0" @@ -22502,7 +22531,7 @@ msgstr "crwdns197184:0crwdne197184:0" msgid "Grant Commission" msgstr "crwdns134672:0crwdne134672:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "crwdns72570:0crwdne72570:0" @@ -22642,7 +22671,7 @@ msgstr "crwdns72646:0crwdne72646:0" msgid "Group by Voucher" msgstr "crwdns72650:0crwdne72650:0" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "crwdns72658:0crwdne72658:0" @@ -22945,7 +22974,7 @@ msgstr "crwdns111754:0crwdne111754:0" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "crwdns72768:0{0}crwdne72768:0" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "crwdns72770:0crwdne72770:0" @@ -22973,7 +23002,7 @@ msgstr "crwdns72778:0crwdne72778:0" msgid "Hertz" msgstr "crwdns112384:0crwdne112384:0" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "crwdns72786:0crwdne72786:0" @@ -23009,7 +23038,7 @@ msgstr "crwdns161102:0crwdne161102:0" msgid "Hide Images" msgstr "crwdns134742:0crwdne134742:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "crwdns155152:0crwdne155152:0" @@ -23592,15 +23621,15 @@ msgstr "crwdns200554:0crwdne200554:0" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "crwdns155632:0crwdne155632:0" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "crwdns72958:0crwdne72958:0" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "crwdns200014:0crwdne200014:0" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "crwdns200016:0crwdne200016:0" @@ -23638,7 +23667,7 @@ msgstr "crwdns72964:0crwdne72964:0" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "crwdns134836:0crwdne134836:0" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "crwdns72968:0{0}crwdne72968:0" @@ -23739,7 +23768,7 @@ msgstr "crwdns134854:0crwdne134854:0" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "crwdns202171:0{0}crwdne202171:0" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "crwdns73000:0{0}crwdne73000:0" @@ -23957,14 +23986,14 @@ msgstr "crwdns134882:0crwdne134882:0" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "crwdns155634:0crwdne155634:0" +msgid "Import MT940 Format" +msgstr "crwdns205655:0crwdne205655:0" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "crwdns73182:0crwdne73182:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "crwdns195016:0crwdne195016:0" @@ -24441,7 +24470,7 @@ msgstr "crwdns134946:0crwdne134946:0" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "crwdns73406:0crwdne73406:0" @@ -24527,7 +24556,7 @@ msgstr "crwdns73452:0{0}crwdne73452:0" msgid "Incompatible Setting Detected" msgstr "crwdns154902:0crwdne154902:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "crwdns197188:0crwdne197188:0" @@ -24536,7 +24565,7 @@ msgstr "crwdns197188:0crwdne197188:0" msgid "Incorrect Balance Qty After Transaction" msgstr "crwdns73454:0crwdne73454:0" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "crwdns73456:0crwdne73456:0" @@ -24544,11 +24573,11 @@ msgstr "crwdns73456:0crwdne73456:0" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "crwdns127834:0crwdne127834:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "crwdns197190:0crwdne197190:0" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "crwdns148794:0crwdne148794:0" @@ -24557,7 +24586,7 @@ msgstr "crwdns148794:0crwdne148794:0" msgid "Incorrect Date" msgstr "crwdns73458:0crwdne73458:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "crwdns73460:0crwdne73460:0" @@ -24574,7 +24603,7 @@ msgstr "crwdns111780:0crwdne111780:0" msgid "Incorrect Serial No Valuation" msgstr "crwdns73466:0crwdne73466:0" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "crwdns73468:0crwdne73468:0" @@ -24657,7 +24686,7 @@ msgstr "crwdns134952:0crwdne134952:0" msgid "Increment cannot be 0" msgstr "crwdns73506:0crwdne73506:0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "crwdns73508:0{0}crwdne73508:0" @@ -24854,7 +24883,7 @@ msgid "Instruction" msgstr "crwdns134982:0crwdne134982:0" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "crwdns73606:0crwdne73606:0" @@ -24870,12 +24899,12 @@ msgstr "crwdns73608:0crwdne73608:0" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "crwdns73610:0crwdne73610:0" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "crwdns73612:0crwdne73612:0" @@ -25005,7 +25034,7 @@ msgstr "crwdns161120:0crwdne161120:0" msgid "Interest Income" msgstr "crwdns161122:0crwdne161122:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "crwdns73660:0crwdne73660:0" @@ -25030,7 +25059,7 @@ msgstr "crwdns73666:0crwdne73666:0" msgid "Internal Customer Accounting" msgstr "crwdns195164:0crwdne195164:0" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "crwdns73670:0{0}crwdne73670:0" @@ -25056,7 +25085,7 @@ msgstr "crwdns73674:0crwdne73674:0" msgid "Internal Supplier Details" msgstr "crwdns202181:0crwdne202181:0" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "crwdns73678:0{0}crwdne73678:0" @@ -25077,7 +25106,7 @@ msgstr "crwdns73678:0{0}crwdne73678:0" msgid "Internal Transfer" msgstr "crwdns73680:0crwdne73680:0" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "crwdns73692:0crwdne73692:0" @@ -25119,8 +25148,8 @@ msgstr "crwdns152212:0crwdne152212:0" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25139,7 +25168,7 @@ msgstr "crwdns148866:0crwdne148866:0" msgid "Invalid Amount" msgstr "crwdns148868:0crwdne148868:0" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "crwdns73714:0crwdne73714:0" @@ -25156,11 +25185,11 @@ msgstr "crwdns201163:0crwdne201163:0" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "crwdns73718:0crwdne73718:0" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "crwdns73720:0crwdne73720:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "crwdns195020:0crwdne195020:0" @@ -25180,13 +25209,13 @@ msgstr "crwdns73724:0crwdne73724:0" msgid "Invalid Configuration" msgstr "crwdns202719:0crwdne202719:0" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "crwdns73726:0crwdne73726:0" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "crwdns200018:0crwdne200018:0" @@ -25207,11 +25236,11 @@ msgstr "crwdns202723:0crwdne202723:0" msgid "Invalid Discount" msgstr "crwdns152034:0crwdne152034:0" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "crwdns161126:0crwdne161126:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "crwdns73732:0crwdne73732:0" @@ -25241,7 +25270,7 @@ msgstr "crwdns73740:0crwdne73740:0" msgid "Invalid Item" msgstr "crwdns73742:0crwdne73742:0" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "crwdns73744:0crwdne73744:0" @@ -25250,7 +25279,7 @@ msgstr "crwdns73744:0crwdne73744:0" msgid "Invalid Ledger Entries" msgstr "crwdns148796:0crwdne148796:0" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "crwdns160218:0crwdne160218:0" @@ -25289,7 +25318,7 @@ msgstr "crwdns159258:0crwdne159258:0" msgid "Invalid Priority" msgstr "crwdns73758:0crwdne73758:0" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "crwdns73760:0crwdne73760:0" @@ -25306,7 +25335,7 @@ msgstr "crwdns73764:0crwdne73764:0" msgid "Invalid Quantity" msgstr "crwdns73766:0crwdne73766:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "crwdns157202:0crwdne157202:0" @@ -25318,8 +25347,8 @@ msgstr "crwdns152583:0crwdne152583:0" msgid "Invalid Sales Invoices" msgstr "crwdns154646:0crwdne154646:0" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "crwdns73768:0crwdne73768:0" @@ -25327,7 +25356,7 @@ msgstr "crwdns73768:0crwdne73768:0" msgid "Invalid Selling Price" msgstr "crwdns73770:0crwdne73770:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "crwdns127484:0crwdne127484:0" @@ -25344,7 +25373,7 @@ msgstr "crwdns202187:0{0}crwdne202187:0" msgid "Invalid Upload" msgstr "crwdns200196:0crwdne200196:0" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "crwdns73774:0crwdne73774:0" @@ -25354,14 +25383,14 @@ msgid "Invalid Warehouse" msgstr "crwdns73776:0crwdne73776:0" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "crwdns154421:0crwdne154421:0" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "crwdns205657:0{0}crwdnd205657:0{1}crwdnd205657:0{2}crwdnd205657:0{3}crwdne205657:0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "crwdns73778:0crwdne73778:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "crwdns195024:0crwdne195024:0" @@ -25393,7 +25422,7 @@ msgstr "crwdns201167:0crwdne201167:0" msgid "Invalid result key. Response:" msgstr "crwdns73786:0crwdne73786:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "crwdns157204:0crwdne157204:0" @@ -26356,10 +26385,6 @@ msgstr "crwdns135184:0crwdne135184:0" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "crwdns74220:0crwdne74220:0" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "crwdns74222:0crwdne74222:0" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "crwdns201177:0crwdne201177:0" @@ -26368,7 +26393,7 @@ msgstr "crwdns201177:0crwdne201177:0" msgid "It's all good!" msgstr "crwdns201179:0crwdne201179:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "crwdns74224:0crwdne74224:0" @@ -26417,12 +26442,12 @@ msgstr "crwdns161132:0crwdne161132:0" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26455,7 +26480,7 @@ msgstr "crwdns161132:0crwdne161132:0" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26529,7 +26554,7 @@ msgstr "crwdns74266:0crwdne74266:0" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26690,7 +26715,7 @@ msgstr "crwdns111786:0crwdne111786:0" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26722,7 +26747,7 @@ msgstr "crwdns111786:0crwdne111786:0" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26731,12 +26756,12 @@ msgstr "crwdns111786:0crwdne111786:0" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26832,7 +26857,7 @@ msgstr "crwdns74422:0crwdne74422:0" msgid "Item Code required at Row No {0}" msgstr "crwdns74424:0{0}crwdne74424:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "crwdns74426:0{0}crwdnd74426:0{1}crwdne74426:0" @@ -27028,7 +27053,7 @@ msgstr "crwdns202195:0crwdne202195:0" msgid "Item Group Tree" msgstr "crwdns74520:0crwdne74520:0" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "crwdns74522:0{0}crwdne74522:0" @@ -27182,7 +27207,7 @@ msgstr "crwdns74534:0crwdne74534:0" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27213,7 +27238,7 @@ msgstr "crwdns74534:0crwdne74534:0" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27221,8 +27246,8 @@ msgstr "crwdns74534:0crwdne74534:0" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27279,7 +27304,7 @@ msgstr "crwdns74534:0crwdne74534:0" msgid "Item Name" msgstr "crwdns74538:0crwdne74538:0" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "crwdns197196:0crwdne197196:0" @@ -27326,8 +27351,8 @@ msgstr "crwdns135206:0crwdne135206:0" msgid "Item Price Stock" msgstr "crwdns74662:0crwdne74662:0" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "crwdns201861:0{0}crwdnd201861:0{1}crwdne201861:0" @@ -27339,7 +27364,7 @@ msgstr "crwdns74666:0crwdne74666:0" msgid "Item Price created at rate {0}" msgstr "crwdns200784:0{0}crwdne200784:0" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "crwdns74668:0{0}crwdnd74668:0{1}crwdne74668:0" @@ -27384,7 +27409,7 @@ msgstr "crwdns74682:0crwdne74682:0" msgid "Item Row" msgstr "crwdns161292:0crwdne161292:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "crwdns74684:0{0}crwdnd74684:0{1}crwdnd74684:0{2}crwdnd74684:0{1}crwdne74684:0" @@ -27500,7 +27525,7 @@ msgstr "crwdns135216:0crwdne135216:0" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "crwdns74752:0crwdne74752:0" @@ -27619,7 +27644,7 @@ msgstr "crwdns135222:0crwdne135222:0" msgid "Item Wise Tax Details" msgstr "crwdns161294:0crwdne161294:0" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "crwdns161296:0crwdne161296:0" @@ -27655,7 +27680,7 @@ msgstr "crwdns149094:0crwdne149094:0" msgid "Item is removed since no serial / batch no selected." msgstr "crwdns74800:0crwdne74800:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "crwdns74802:0crwdne74802:0" @@ -27669,7 +27694,7 @@ msgstr "crwdns74804:0crwdne74804:0" msgid "Item operation" msgstr "crwdns135230:0crwdne135230:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "crwdns74810:0{0}crwdne74810:0" @@ -27684,7 +27709,7 @@ msgstr "crwdns154385:0crwdne154385:0" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "crwdns111790:0crwdne111790:0" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "crwdns74814:0crwdne74814:0" @@ -27700,10 +27725,6 @@ msgstr "crwdns201779:0{0}crwdne201779:0" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "crwdns164208:0{0}crwdnd164208:0{1}crwdnd164208:0{2}crwdnd164208:0{3}crwdne164208:0" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "crwdns202729:0{0}crwdnd202729:0{1}crwdnd202729:0{1}crwdne202729:0" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "crwdns74818:0{0}crwdne74818:0" @@ -27712,6 +27733,10 @@ msgstr "crwdns74818:0{0}crwdne74818:0" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "crwdns74820:0{0}crwdnd74820:0{1}crwdnd74820:0{2}crwdne74820:0" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "crwdns205659:0{0}crwdnd205659:0{1}crwdnd205659:0{2}crwdnd205659:0{3}crwdne205659:0" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27721,6 +27746,7 @@ msgstr "crwdns74822:0{0}crwdne74822:0" msgid "Item {0} does not exist in the system or has expired" msgstr "crwdns74824:0{0}crwdne74824:0" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "crwdns149136:0{0}crwdne149136:0" @@ -27753,6 +27779,10 @@ msgstr "crwdns74834:0{0}crwdnd74834:0{1}crwdne74834:0" msgid "Item {0} ignored since it is not a stock item" msgstr "crwdns74836:0{0}crwdne74836:0" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "crwdns205661:0{0}crwdne205661:0" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "crwdns74838:0{0}crwdnd74838:0{1}crwdne74838:0" @@ -27785,7 +27815,7 @@ msgstr "crwdns152154:0{0}crwdne152154:0" msgid "Item {0} is not a template item." msgstr "crwdns201783:0{0}crwdne201783:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "crwdns74848:0{0}crwdne74848:0" @@ -27817,10 +27847,6 @@ msgstr "crwdns74862:0{0}crwdnd74862:0{1}crwdnd74862:0{2}crwdne74862:0" msgid "Item {0}: {1} qty produced. " msgstr "crwdns74864:0{0}crwdnd74864:0{1}crwdne74864:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "crwdns74866:0crwdne74866:0" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27871,6 +27897,10 @@ msgstr "crwdns155382:0crwdne155382:0" msgid "Item: {0} does not exist in the system" msgstr "crwdns74880:0{0}crwdne74880:0" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "crwdns205663:0{0}crwdnd205663:0{1}crwdnd205663:0{2}crwdne205663:0" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27887,7 +27917,7 @@ msgstr "crwdns74934:0crwdne74934:0" msgid "Items Filter" msgstr "crwdns74936:0crwdne74936:0" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "crwdns74938:0crwdne74938:0" @@ -27927,7 +27957,7 @@ msgstr "crwdns74946:0crwdne74946:0" msgid "Items not found." msgstr "crwdns164210:0crwdne164210:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "crwdns74948:0{0}crwdne74948:0" @@ -27937,7 +27967,7 @@ msgstr "crwdns74948:0{0}crwdne74948:0" msgid "Items to Be Repost" msgstr "crwdns135234:0crwdne135234:0" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "crwdns74952:0crwdne74952:0" @@ -28007,7 +28037,7 @@ msgstr "crwdns135242:0crwdne135242:0" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28070,20 +28100,19 @@ msgstr "crwdns75000:0crwdne75000:0" msgid "Job Card and Capacity Planning" msgstr "crwdns148798:0crwdne148798:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "crwdns135246:0{0}crwdne135246:0" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "crwdns205665:0{0}crwdnd205665:0{1}crwdnd205665:0{2}crwdnd205665:0{3}crwdne205665:0" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "crwdns135248:0crwdne135248:0" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "crwdns75002:0crwdne75002:0" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "crwdns75004:0crwdne75004:0" @@ -28146,11 +28175,19 @@ msgstr "crwdns142956:0crwdne142956:0" msgid "Job Worker Warehouse" msgstr "crwdns142958:0crwdne142958:0" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "crwdns75012:0{0}crwdne75012:0" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "crwdns205667:0crwdne205667:0" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "crwdns205669:0crwdne205669:0" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "crwdns75014:0{0}crwdne75014:0" @@ -28496,8 +28533,8 @@ msgid "Last Fiscal Year" msgstr "crwdns201185:0crwdne201185:0" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "crwdns152585:0crwdne152585:0" +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "crwdns205671:0{0}crwdne205671:0" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28617,7 +28654,7 @@ msgstr "crwdns135284:0crwdne135284:0" msgid "Lead" msgstr "crwdns75150:0crwdne75150:0" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "crwdns75162:0crwdne75162:0" @@ -28711,7 +28748,7 @@ msgstr "crwdns135290:0crwdne135290:0" msgid "Lead Type" msgstr "crwdns135292:0crwdne135292:0" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "crwdns75204:0{0}crwdnd75204:0{1}crwdne75204:0" @@ -28859,7 +28896,7 @@ msgstr "crwdns75264:0crwdne75264:0" msgid "Length (cm)" msgstr "crwdns135312:0crwdne135312:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "crwdns75272:0crwdne75272:0" @@ -28888,7 +28925,7 @@ msgstr "crwdns135324:0crwdne135324:0" msgid "Lft" msgstr "crwdns135326:0crwdne135326:0" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "crwdns75386:0crwdne75386:0" @@ -28918,7 +28955,7 @@ msgstr "crwdns135330:0crwdne135330:0" msgid "License Plate" msgstr "crwdns135332:0crwdne135332:0" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "crwdns75404:0crwdne75404:0" @@ -29014,8 +29051,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "crwdns75440:0crwdne75440:0" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "crwdns75442:0crwdne75442:0" +msgid "Linking to Supplier failed. Please try again." +msgstr "crwdns205673:0crwdne205673:0" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29181,7 +29218,7 @@ msgstr "crwdns75518:0crwdne75518:0" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "crwdns75520:0crwdne75520:0" @@ -29267,7 +29304,7 @@ msgstr "crwdns135378:0crwdne135378:0" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "crwdns111802:0crwdne111802:0" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "crwdns75572:0{0}crwdne75572:0" @@ -29505,7 +29542,7 @@ msgstr "crwdns75692:0crwdne75692:0" msgid "Maintenance Schedule Item" msgstr "crwdns75698:0crwdne75698:0" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "crwdns75700:0crwdne75700:0" @@ -29602,7 +29639,7 @@ msgstr "crwdns75736:0crwdne75736:0" msgid "Maintenance Visit Purpose" msgstr "crwdns75742:0crwdne75742:0" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "crwdns75744:0{0}crwdne75744:0" @@ -29749,7 +29786,7 @@ msgstr "crwdns135446:0crwdne135446:0" msgid "Mandatory For Profit and Loss Account" msgstr "crwdns135448:0crwdne135448:0" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "crwdns75808:0crwdne75808:0" @@ -29832,8 +29869,8 @@ msgstr "crwdns75834:0crwdne75834:0" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30055,7 +30092,7 @@ msgstr "crwdns160320:0crwdne160320:0" msgid "Mapping Subcontracting Order ..." msgstr "crwdns75938:0crwdne75938:0" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "crwdns75940:0{0}crwdne75940:0" @@ -30233,10 +30270,6 @@ msgstr "crwdns201197:0crwdne201197:0" msgid "Matched" msgstr "crwdns201199:0crwdne201199:0" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "crwdns202733:0crwdne202733:0" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30263,7 +30296,7 @@ msgstr "crwdns76016:0crwdne76016:0" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "crwdns135480:0crwdne135480:0" @@ -30374,7 +30407,7 @@ msgstr "crwdns76042:0crwdne76042:0" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "crwdns76078:0crwdne76078:0" @@ -30424,7 +30457,7 @@ msgstr "crwdns135484:0crwdne135484:0" msgid "Material Request Item" msgstr "crwdns76084:0crwdne76084:0" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "crwdns76108:0crwdne76108:0" @@ -30446,7 +30479,7 @@ msgstr "crwdns111814:0crwdne111814:0" msgid "Material Request already created for the ordered quantity" msgstr "crwdns199154:0crwdne199154:0" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "crwdns76118:0crwdne76118:0" @@ -30460,7 +30493,7 @@ msgstr "crwdns76120:0{0}crwdnd76120:0{1}crwdnd76120:0{2}crwdne76120:0" msgid "Material Request used to make this Stock Entry" msgstr "crwdns135488:0crwdne135488:0" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "crwdns76124:0{0}crwdne76124:0" @@ -30580,14 +30613,14 @@ msgstr "crwdns76170:0crwdne76170:0" msgid "Materials To Be Transferred" msgstr "crwdns195862:0crwdne195862:0" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "crwdns76174:0{0}crwdnd76174:0{1}crwdne76174:0" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "crwdns76176:0{0}crwdne76176:0" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "crwdns205675:0{0}crwdne205675:0" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30755,7 +30788,7 @@ msgstr "crwdns112464:0crwdne112464:0" msgid "Megawatt" msgstr "crwdns112466:0crwdne112466:0" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "crwdns76238:0crwdne76238:0" @@ -30790,7 +30823,7 @@ msgstr "crwdns76254:0crwdne76254:0" msgid "Merge similar Account Heads" msgstr "crwdns202207:0crwdne202207:0" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "crwdns76258:0crwdne76258:0" @@ -31136,7 +31169,7 @@ msgstr "crwdns76346:0crwdne76346:0" msgid "Mismatch" msgstr "crwdns76348:0crwdne76348:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "crwdns76350:0crwdne76350:0" @@ -31145,11 +31178,11 @@ msgstr "crwdns76350:0crwdne76350:0" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "crwdns76352:0crwdne76352:0" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "crwdns195866:0crwdne195866:0" @@ -31174,11 +31207,11 @@ msgstr "crwdns202209:0crwdne202209:0" msgid "Missing Filters" msgstr "crwdns157474:0crwdne157474:0" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "crwdns76358:0crwdne76358:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "crwdns76360:0crwdne76360:0" @@ -31186,7 +31219,7 @@ msgstr "crwdns76360:0crwdne76360:0" msgid "Missing Formula" msgstr "crwdns76362:0crwdne76362:0" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "crwdns152088:0crwdne152088:0" @@ -31198,7 +31231,7 @@ msgstr "crwdns197204:0crwdne197204:0" msgid "Missing Payments App" msgstr "crwdns76366:0crwdne76366:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "crwdns200792:0crwdne200792:0" @@ -31210,7 +31243,7 @@ msgstr "crwdns76368:0crwdne76368:0" msgid "Missing Warehouse" msgstr "crwdns199156:0crwdne199156:0" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "crwdns195868:0{0}crwdne195868:0" @@ -31218,12 +31251,12 @@ msgstr "crwdns195868:0{0}crwdne195868:0" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "crwdns76374:0crwdne76374:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "crwdns161144:0{0}crwdne161144:0" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "crwdns76376:0crwdne76376:0" @@ -31472,17 +31505,17 @@ msgstr "crwdns201213:0crwdne201213:0" msgid "Multiple Accounts (Journal Template)" msgstr "crwdns201215:0crwdne201215:0" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "crwdns76630:0crwdne76630:0" +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "crwdns205677:0{0}crwdne205677:0" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "crwdns155640:0crwdne155640:0" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "crwdns76632:0{0}crwdne76632:0" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "crwdns205679:0{0}crwdne205679:0" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31502,7 +31535,7 @@ msgstr "crwdns195028:0{0}crwdne195028:0" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "crwdns76640:0{0}crwdne76640:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "crwdns76642:0crwdne76642:0" @@ -31511,10 +31544,10 @@ msgid "Music" msgstr "crwdns143476:0crwdne143476:0" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "crwdns76644:0crwdne76644:0" @@ -31599,11 +31632,7 @@ msgstr "crwdns152587:0crwdne152587:0" msgid "Naming Series options" msgstr "crwdns200796:0crwdne200796:0" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "crwdns200798:0crwdne200798:0" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "crwdns195030:0{0}crwdnd195030:0{1}crwdne195030:0" @@ -31647,7 +31676,7 @@ msgstr "crwdns76732:0crwdne76732:0" msgid "Negative Batch Report" msgstr "crwdns195870:0crwdne195870:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "crwdns76734:0crwdne76734:0" @@ -31657,12 +31686,12 @@ msgstr "crwdns76734:0crwdne76734:0" msgid "Negative Stock" msgstr "crwdns202211:0crwdne202211:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "crwdns160326:0crwdne160326:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "crwdns76736:0crwdne76736:0" @@ -31740,8 +31769,8 @@ msgstr "crwdns135644:0crwdne135644:0" msgid "Net Amount (Company Currency)" msgstr "crwdns135646:0crwdne135646:0" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "crwdns76778:0crwdne76778:0" @@ -31791,7 +31820,7 @@ msgstr "crwdns135648:0crwdne135648:0" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "crwdns76802:0crwdne76802:0" @@ -31799,7 +31828,7 @@ msgstr "crwdns76802:0crwdne76802:0" msgid "Net Profit Ratio" msgstr "crwdns160084:0crwdne160084:0" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "crwdns76804:0crwdne76804:0" @@ -31813,11 +31842,11 @@ msgstr "crwdns76804:0crwdne76804:0" msgid "Net Purchase Amount" msgstr "crwdns154191:0crwdne154191:0" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "crwdns160220:0crwdne160220:0" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "crwdns160222:0crwdne160222:0" @@ -32061,7 +32090,7 @@ msgstr "crwdns195872:0{0}crwdne195872:0" msgid "New Income" msgstr "crwdns135670:0crwdne135670:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "crwdns155158:0crwdne155158:0" @@ -32134,6 +32163,7 @@ msgid "New Task" msgstr "crwdns76960:0crwdne76960:0" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "crwdns76962:0crwdne76962:0" @@ -32146,9 +32176,9 @@ msgstr "crwdns76964:0crwdne76964:0" msgid "New Workplace" msgstr "crwdns135682:0crwdne135682:0" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "crwdns76968:0{0}crwdne76968:0" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "crwdns205681:0{0}crwdne205681:0" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32156,6 +32186,10 @@ msgstr "crwdns76968:0{0}crwdne76968:0" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "crwdns135684:0crwdne135684:0" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "crwdns205683:0{0}crwdne205683:0" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "crwdns76972:0crwdne76972:0" @@ -32168,7 +32202,7 @@ msgstr "crwdns161298:0crwdne161298:0" msgid "New task" msgstr "crwdns76974:0crwdne76974:0" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "crwdns76976:0{0}crwdne76976:0" @@ -32232,16 +32266,15 @@ msgstr "crwdns204365:0crwdne204365:0" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "crwdns77026:0{0}crwdne77026:0" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "crwdns77028:0crwdne77028:0" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "crwdns77032:0crwdne77032:0" +msgid "No Delivery Note selected for Customer {0}" +msgstr "crwdns205685:0{0}crwdne205685:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "crwdns195032:0crwdne195032:0" @@ -32249,15 +32282,15 @@ msgstr "crwdns195032:0crwdne195032:0" msgid "No Impact on Accounting Ledger" msgstr "crwdns155922:0crwdne155922:0" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "crwdns77034:0{0}crwdne77034:0" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "crwdns77036:0{0}crwdne77036:0" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "crwdns77038:0crwdne77038:0" @@ -32300,11 +32333,6 @@ msgstr "crwdns77048:0crwdne77048:0" msgid "No Purchase Orders were created" msgstr "crwdns152156:0crwdne152156:0" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "crwdns77050:0crwdne77050:0" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "crwdns154423:0crwdne154423:0" @@ -32407,6 +32435,10 @@ msgstr "crwdns201231:0crwdne201231:0" msgid "No contacts with email IDs found." msgstr "crwdns77076:0crwdne77076:0" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "crwdns205687:0crwdne205687:0" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "crwdns77078:0crwdne77078:0" @@ -32452,7 +32484,7 @@ msgstr "crwdns200198:0crwdne200198:0" msgid "No invoice linked" msgstr "crwdns201237:0crwdne201237:0" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "crwdns77090:0crwdne77090:0" @@ -32489,10 +32521,6 @@ msgstr "crwdns77104:0crwdne77104:0" msgid "No more children on Right" msgstr "crwdns77106:0crwdne77106:0" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "crwdns200800:0crwdne200800:0" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "crwdns159878:0crwdne159878:0" @@ -32589,7 +32617,7 @@ msgstr "crwdns77126:0crwdne77126:0" msgid "No outstanding invoices require exchange rate revaluation" msgstr "crwdns77128:0crwdne77128:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "crwdns77130:0{0}crwdnd77130:0{1}crwdnd77130:0{2}crwdne77130:0" @@ -32627,15 +32655,20 @@ msgstr "crwdns201239:0crwdne201239:0" msgid "No record found" msgstr "crwdns77138:0crwdne77138:0" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "crwdns205689:0crwdne205689:0" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "crwdns77140:0crwdne77140:0" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "crwdns77142:0crwdne77142:0" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "crwdns77144:0crwdne77144:0" @@ -32664,7 +32697,7 @@ msgstr "crwdns201245:0crwdne201245:0" msgid "No stock available for this batch." msgstr "crwdns200200:0crwdne200200:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "crwdns154776:0crwdne154776:0" @@ -32701,7 +32734,7 @@ msgstr "crwdns77150:0crwdne77150:0" msgid "No vouchers found for this transaction" msgstr "crwdns201253:0crwdne201253:0" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "crwdns204369:0{0}crwdne204369:0" @@ -32709,11 +32742,6 @@ msgstr "crwdns204369:0{0}crwdne204369:0" msgid "No {0} found for Inter Company Transactions." msgstr "crwdns77154:0{0}crwdne77154:0" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "crwdns77156:0crwdne77156:0" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32765,7 +32793,7 @@ msgstr "crwdns135710:0crwdne135710:0" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "crwdns200202:0{0}crwdne200202:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "crwdns77174:0crwdne77174:0" @@ -32776,8 +32804,8 @@ msgid "Normal Balances" msgstr "crwdns202221:0crwdne202221:0" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "crwdns77176:0crwdne77176:0" @@ -32791,8 +32819,8 @@ msgstr "crwdns77176:0crwdne77176:0" msgid "Not Applicable" msgstr "crwdns135714:0crwdne135714:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "crwdns77184:0crwdne77184:0" @@ -32855,10 +32883,6 @@ msgstr "crwdns77194:0crwdne77194:0" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "crwdns157214:0crwdne157214:0" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "crwdns77204:0{0}crwdne77204:0" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "crwdns77206:0{0}crwdne77206:0" @@ -32875,10 +32899,6 @@ msgstr "crwdns104614:0{0}crwdne104614:0" msgid "Not authorized to edit frozen Account {0}" msgstr "crwdns77210:0{0}crwdne77210:0" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "crwdns200802:0crwdne200802:0" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "crwdns111842:0crwdne111842:0" @@ -32891,7 +32911,7 @@ msgstr "crwdns77214:0crwdne77214:0" msgid "Not permitted to make Purchase Orders" msgstr "crwdns159890:0crwdne159890:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "crwdns202223:0crwdne202223:0" @@ -33136,8 +33156,8 @@ msgid "Numeric Values" msgstr "crwdns135760:0crwdne135760:0" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "crwdns77340:0crwdne77340:0" +msgid "Numero has not been set in the XML file" +msgstr "crwdns205691:0crwdne205691:0" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33312,12 +33332,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "crwdns135798:0crwdne135798:0" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "crwdns77432:0crwdne77432:0" +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "crwdns205693:0crwdne205693:0" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "crwdns111848:0crwdne111848:0" +msgid "One customer can be part of only a single Loyalty Program." +msgstr "crwdns205695:0crwdne205695:0" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33351,7 +33371,7 @@ msgstr "crwdns135800:0crwdne135800:0" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "crwdns77436:0crwdne77436:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "crwdns195038:0crwdne195038:0" @@ -33416,7 +33436,7 @@ msgstr "crwdns195174:0crwdne195174:0" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "crwdns202741:0crwdne202741:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "crwdns111850:0{0}crwdnd111850:0{1}crwdne111850:0" @@ -33482,7 +33502,7 @@ msgstr "crwdns111856:0crwdne111856:0" msgid "Open Events" msgstr "crwdns111858:0crwdne111858:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "crwdns77508:0crwdne77508:0" @@ -33635,7 +33655,7 @@ msgstr "crwdns161152:0crwdne161152:0" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "crwdns135828:0crwdne135828:0" @@ -33665,7 +33685,7 @@ msgstr "crwdns135830:0crwdne135830:0" msgid "Opening Entry" msgstr "crwdns135832:0crwdne135832:0" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "crwdns77570:0crwdne77570:0" @@ -33693,7 +33713,7 @@ msgstr "crwdns77578:0crwdne77578:0" msgid "Opening Invoice Tool" msgstr "crwdns195874:0crwdne195874:0" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "crwdns148804:0{0}crwdnd148804:0{1}crwdnd148804:0{2}crwdnd148804:0{3}crwdne148804:0" @@ -33702,7 +33722,7 @@ msgstr "crwdns148804:0{0}crwdnd148804:0{1}crwdnd148804:0{2}crwdnd148804:0{3}crwd msgid "Opening Invoices" msgstr "crwdns111868:0crwdne111868:0" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "crwdns77580:0crwdne77580:0" @@ -33732,20 +33752,20 @@ msgstr "crwdns148808:0crwdne148808:0" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "crwdns77584:0crwdne77584:0" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "crwdns204373:0crwdne204373:0" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "crwdns204375:0{0}crwdne204375:0" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "crwdns204377:0crwdne204377:0" @@ -33754,7 +33774,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "crwdns204379:0{0}crwdne204379:0" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "crwdns204381:0{0}crwdne204381:0" @@ -33797,7 +33817,7 @@ msgstr "crwdns158400:0crwdne158400:0" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "crwdns77598:0crwdne77598:0" @@ -33888,7 +33908,7 @@ msgstr "crwdns135858:0crwdne135858:0" msgid "Operation Time" msgstr "crwdns135860:0crwdne135860:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "crwdns77658:0{0}crwdne77658:0" @@ -33912,8 +33932,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "crwdns77666:0{0}crwdnd77666:0{1}crwdne77666:0" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "crwdns77668:0{0}crwdnd77668:0{1}crwdne77668:0" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "crwdns205697:0{0}crwdnd205697:0{1}crwdne205697:0" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34098,6 +34118,10 @@ msgstr "crwdns77750:0{0}crwdne77750:0" msgid "Optimize Route" msgstr "crwdns135876:0crwdne135876:0" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "crwdns205699:0crwdne205699:0" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "crwdns200034:0crwdne200034:0" @@ -34114,10 +34138,6 @@ msgstr "crwdns77756:0crwdne77756:0" msgid "Optional. Used with Financial Report Template" msgstr "crwdns161486:0crwdne161486:0" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "crwdns200808:0crwdne200808:0" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "crwdns77764:0crwdne77764:0" @@ -34403,7 +34423,7 @@ msgid "Out of stock" msgstr "crwdns77880:0crwdne77880:0" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "crwdns155642:0crwdne155642:0" @@ -34457,7 +34477,7 @@ msgstr "crwdns154389:0crwdne154389:0" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34538,11 +34558,11 @@ msgstr "crwdns201981:0crwdne201981:0" msgid "Over Picking Allowance (%)" msgstr "crwdns202229:0crwdne202229:0" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "crwdns77934:0crwdne77934:0" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "crwdns77936:0{0}crwdnd77936:0{1}crwdnd77936:0{2}crwdnd77936:0{3}crwdne77936:0" @@ -34559,14 +34579,14 @@ msgstr "crwdns135920:0crwdne135920:0" msgid "Over Withheld" msgstr "crwdns164230:0crwdne164230:0" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "crwdns205701:0{0}crwdnd205701:0{1}crwdne205701:0" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "crwdns77942:0{0}crwdnd77942:0{1}crwdnd77942:0{2}crwdnd77942:0{3}crwdne77942:0" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "crwdns77944:0crwdne77944:0" - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34615,10 +34635,6 @@ msgstr "crwdns77966:0crwdne77966:0" msgid "Overdue and Discounted" msgstr "crwdns135926:0crwdne135926:0" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "crwdns77972:0{0}crwdnd77972:0{1}crwdne77972:0" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "crwdns77974:0crwdne77974:0" @@ -34684,6 +34700,11 @@ msgstr "crwdns135938:0crwdne135938:0" msgid "PCV" msgstr "crwdns160664:0crwdne160664:0" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "crwdns205703:0crwdne205703:0" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "crwdns160666:0crwdne160666:0" @@ -34731,7 +34752,7 @@ msgstr "crwdns195878:0crwdne195878:0" msgid "POS Additional Fields" msgstr "crwdns155384:0crwdne155384:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "crwdns154425:0crwdne154425:0" @@ -34829,8 +34850,8 @@ msgid "POS Invoice is not submitted" msgstr "crwdns143484:0crwdne143484:0" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "crwdns78050:0crwdne78050:0" +msgid "POS Invoice isn't created by user {0}" +msgstr "crwdns205705:0{0}crwdne205705:0" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -34889,7 +34910,7 @@ msgstr "crwdns155644:0{0}crwdne155644:0" msgid "POS Opening Entry Cancellation Error" msgstr "crwdns155646:0crwdne155646:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "crwdns155648:0crwdne155648:0" @@ -34910,7 +34931,7 @@ msgstr "crwdns154506:0crwdne154506:0" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "crwdns155652:0crwdne155652:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "crwdns155654:0crwdne155654:0" @@ -34933,7 +34954,7 @@ msgstr "crwdns78072:0crwdne78072:0" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "crwdns78074:0crwdne78074:0" @@ -34953,8 +34974,8 @@ msgstr "crwdns78084:0crwdne78084:0" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "crwdns143488:0crwdne143488:0" +msgid "POS Profile doesn't match {0}" +msgstr "crwdns205707:0{0}crwdne205707:0" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -34965,20 +34986,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "crwdns161154:0{0}crwdne161154:0" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "crwdns78090:0crwdne78090:0" +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "crwdns205709:0{0}crwdnd205709:0{1}crwdne205709:0" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "crwdns161156:0crwdne161156:0" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "crwdns205711:0{0}crwdnd205711:0{1}crwdne205711:0" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "crwdns161158:0crwdne161158:0" +msgid "POS Profile {0} does not exist." +msgstr "crwdns205713:0{0}crwdne205713:0" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "crwdns161160:0crwdne161160:0" +msgid "POS Profile {0} is disabled." +msgstr "crwdns205715:0{0}crwdne205715:0" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35007,11 +35028,11 @@ msgstr "crwdns78102:0crwdne78102:0" msgid "POS Transactions" msgstr "crwdns135952:0crwdne135952:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "crwdns154427:0{0}crwdne154427:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "crwdns104620:0{0}crwdne104620:0" @@ -35030,7 +35051,7 @@ msgstr "crwdns78118:0crwdne78118:0" msgid "PZN" msgstr "crwdns135954:0crwdne135954:0" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "crwdns78130:0{0}crwdne78130:0" @@ -35655,7 +35676,7 @@ msgstr "crwdns112550:0crwdne112550:0" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35782,7 +35803,7 @@ msgstr "crwdns156064:0crwdne156064:0" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35868,7 +35889,7 @@ msgstr "crwdns78486:0crwdne78486:0" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35889,7 +35910,7 @@ msgstr "crwdns78492:0crwdne78492:0" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "crwdns152094:0{0}crwdne152094:0" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "crwdns78526:0{0}crwdne78526:0" @@ -35925,8 +35946,8 @@ msgid "Party is required" msgstr "crwdns201291:0crwdne201291:0" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." -msgstr "crwdns201293:0crwdne201293:0" +msgid "Party is required to create a payment entry." +msgstr "crwdns205717:0crwdne205717:0" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 msgid "Party type is required to create a payment entry." @@ -36435,7 +36456,7 @@ msgstr "crwdns136134:0crwdne136134:0" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36510,7 +36531,7 @@ msgstr "crwdns78746:0crwdne78746:0" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "crwdns197210:0crwdne197210:0" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "crwdns197212:0crwdne197212:0" @@ -36532,7 +36553,7 @@ msgstr "crwdns197212:0crwdne197212:0" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36632,8 +36653,8 @@ msgid "Payment Type" msgstr "crwdns78816:0crwdne78816:0" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "crwdns78820:0crwdne78820:0" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "crwdns205719:0crwdne205719:0" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36839,11 +36860,11 @@ msgstr "crwdns78900:0crwdne78900:0" msgid "Pending processing" msgstr "crwdns78902:0crwdne78902:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "crwdns201867:0crwdne201867:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "crwdns201869:0crwdne201869:0" @@ -37359,12 +37380,12 @@ msgstr "crwdns136226:0crwdne136226:0" msgid "Plaid Environment" msgstr "crwdns136228:0crwdne136228:0" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "crwdns79104:0crwdne79104:0" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "crwdns79106:0crwdne79106:0" @@ -37386,7 +37407,7 @@ msgstr "crwdns136230:0crwdne136230:0" msgid "Plaid Settings" msgstr "crwdns79112:0crwdne79112:0" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "crwdns79116:0crwdne79116:0" @@ -37537,15 +37558,6 @@ msgstr "crwdns79170:0crwdne79170:0" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "crwdns79172:0crwdne79172:0" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "crwdns79174:0crwdne79174:0" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "crwdns79176:0crwdne79176:0" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37553,7 +37565,6 @@ msgstr "crwdns79178:0crwdne79178:0" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "crwdns79180:0crwdne79180:0" @@ -37561,19 +37572,19 @@ msgstr "crwdns79180:0crwdne79180:0" msgid "Please Set Priority" msgstr "crwdns127838:0crwdne127838:0" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "crwdns79182:0crwdne79182:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "crwdns79184:0crwdne79184:0" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "crwdns79186:0{0}crwdne79186:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "crwdns79188:0crwdne79188:0" @@ -37589,7 +37600,7 @@ msgstr "crwdns79190:0crwdne79190:0" msgid "Please add Root Account for - {0}" msgstr "crwdns79192:0{0}crwdne79192:0" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "crwdns79194:0crwdne79194:0" @@ -37597,35 +37608,32 @@ msgstr "crwdns79194:0crwdne79194:0" msgid "Please add an account for the Bank Entry rule." msgstr "crwdns201309:0crwdne201309:0" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." -msgstr "crwdns200814:0crwdne200814:0" +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" +msgstr "crwdns205721:0crwdne205721:0" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "crwdns204387:0crwdne204387:0" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "crwdns79196:0crwdne79196:0" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "crwdns205723:0crwdne205723:0" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "crwdns79198:0crwdne79198:0" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "crwdns79200:0{0}crwdne79200:0" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "crwdns79202:0crwdne79202:0" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "crwdns79204:0{1}crwdnd79204:0{0}crwdne79204:0" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "crwdns79206:0{0}crwdne79206:0" @@ -37667,7 +37675,7 @@ msgstr "crwdns79220:0crwdne79220:0" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "crwdns200206:0{0}crwdne200206:0" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "crwdns79222:0crwdne79222:0" @@ -37680,11 +37688,11 @@ msgstr "crwdns79224:0crwdne79224:0" msgid "Please check your email to confirm the appointment" msgstr "crwdns79226:0crwdne79226:0" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "crwdns79230:0crwdne79230:0" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "crwdns79232:0{0}crwdne79232:0" @@ -37700,15 +37708,15 @@ msgstr "crwdns201871:0crwdne201871:0" msgid "Please configure accounts for the Bank Entry rule." msgstr "crwdns201311:0crwdne201311:0" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "crwdns205725:0crwdne205725:0" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "crwdns79236:0{0}crwdnd79236:0{1}crwdne79236:0" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "crwdns79238:0crwdne79238:0" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "crwdns79240:0{0}crwdne79240:0" @@ -37716,11 +37724,11 @@ msgstr "crwdns79240:0{0}crwdne79240:0" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "crwdns79242:0crwdne79242:0" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "crwdns79244:0{0}crwdne79244:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "crwdns79246:0crwdne79246:0" @@ -37732,7 +37740,7 @@ msgstr "crwdns79248:0crwdne79248:0" msgid "Please create purchase from internal sale or delivery document itself" msgstr "crwdns79250:0crwdne79250:0" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "crwdns79252:0{0}crwdne79252:0" @@ -37744,11 +37752,11 @@ msgstr "crwdns79254:0{0}crwdnd79254:0{1}crwdnd79254:0{2}crwdne79254:0" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "crwdns154920:0{0}crwdne154920:0" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "crwdns79256:0crwdne79256:0" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "crwdns79258:0crwdne79258:0" @@ -37773,8 +37781,8 @@ msgid "Please enable {0} in the {1}." msgstr "crwdns79266:0{0}crwdnd79266:0{1}crwdne79266:0" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "crwdns79268:0crwdne79268:0" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "crwdns205727:0{0}crwdnd205727:0{1}crwdne205727:0" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37785,12 +37793,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "crwdns143496:0{0}crwdnd143496:0{1}crwdne143496:0" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "crwdns79270:0crwdne79270:0" +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "crwdns205729:0{0}crwdne205729:0" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "crwdns79276:0crwdne79276:0" +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "crwdns205731:0{0}crwdnd205731:0{1}crwdne205731:0" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37805,7 +37813,7 @@ msgstr "crwdns79280:0crwdne79280:0" msgid "Please enter Approving Role or Approving User" msgstr "crwdns79282:0crwdne79282:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "crwdns195040:0crwdne195040:0" @@ -37821,7 +37829,7 @@ msgstr "crwdns79286:0crwdne79286:0" msgid "Please enter Employee Id of this sales person" msgstr "crwdns79288:0crwdne79288:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "crwdns79290:0crwdne79290:0" @@ -37830,7 +37838,7 @@ msgstr "crwdns79290:0crwdne79290:0" msgid "Please enter Item Code to get Batch Number" msgstr "crwdns79292:0crwdne79292:0" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "crwdns79294:0crwdne79294:0" @@ -37866,7 +37874,7 @@ msgstr "crwdns79310:0crwdne79310:0" msgid "Please enter Root Type for account- {0}" msgstr "crwdns79314:0{0}crwdne79314:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "crwdns195042:0crwdne195042:0" @@ -37996,8 +38004,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "crwdns195048:0crwdne195048:0" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "crwdns79364:0crwdne79364:0" +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "crwdns205733:0{0}crwdne205733:0" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38032,11 +38040,7 @@ msgstr "crwdns79380:0crwdne79380:0" msgid "Please pull items from Delivery Note" msgstr "crwdns79382:0crwdne79382:0" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "crwdns79384:0crwdne79384:0" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "crwdns79386:0crwdne79386:0" @@ -38065,12 +38069,12 @@ msgstr "crwdns161168:0crwdne161168:0" msgid "Please select Template Type to download template" msgstr "crwdns79392:0crwdne79392:0" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "crwdns79394:0crwdne79394:0" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "crwdns79396:0{0}crwdne79396:0" @@ -38086,9 +38090,9 @@ msgstr "crwdns136256:0crwdne136256:0" msgid "Please select Category first" msgstr "crwdns79402:0crwdne79402:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "crwdns79404:0crwdne79404:0" @@ -38098,8 +38102,8 @@ msgstr "crwdns79406:0crwdne79406:0" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "crwdns79408:0crwdne79408:0" +msgid "Please select Company and Posting Date to get entries" +msgstr "crwdns205735:0crwdne205735:0" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38121,7 +38125,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "crwdns79416:0crwdne79416:0" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "crwdns79418:0{0}crwdne79418:0" @@ -38130,6 +38134,10 @@ msgstr "crwdns79418:0{0}crwdne79418:0" msgid "Please select Item Code first" msgstr "crwdns79420:0crwdne79420:0" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "crwdns205737:0crwdne205737:0" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "crwdns79422:0crwdne79422:0" @@ -38154,11 +38162,11 @@ msgstr "crwdns79426:0crwdne79426:0" msgid "Please select Posting Date first" msgstr "crwdns79428:0crwdne79428:0" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "crwdns79430:0crwdne79430:0" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "crwdns79432:0{0}crwdne79432:0" @@ -38187,6 +38195,7 @@ msgid "Please select a BOM" msgstr "crwdns79444:0crwdne79444:0" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "crwdns79446:0crwdne79446:0" @@ -38194,11 +38203,12 @@ msgstr "crwdns79446:0crwdne79446:0" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "crwdns79448:0crwdne79448:0" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "crwdns79450:0crwdne79450:0" @@ -38207,7 +38217,7 @@ msgstr "crwdns79450:0crwdne79450:0" msgid "Please select a Delivery Note" msgstr "crwdns79452:0crwdne79452:0" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "crwdns79454:0crwdne79454:0" @@ -38219,7 +38229,7 @@ msgstr "crwdns79456:0crwdne79456:0" msgid "Please select a Warehouse" msgstr "crwdns111900:0crwdne111900:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "crwdns79458:0crwdne79458:0" @@ -38235,6 +38245,7 @@ msgstr "crwdns201317:0crwdne201317:0" msgid "Please select a bank and set the date range" msgstr "crwdns201319:0crwdne201319:0" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "crwdns200564:0crwdne200564:0" @@ -38268,22 +38279,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "crwdns159916:0crwdne159916:0" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "crwdns79472:0crwdne79472:0" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "crwdns205739:0crwdne205739:0" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "crwdns79474:0crwdne79474:0" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "crwdns200816:0crwdne200816:0" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "crwdns79478:0crwdne79478:0" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "crwdns205741:0crwdne205741:0" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "crwdns79480:0{0}crwdnd79480:0{1}crwdne79480:0" @@ -38292,7 +38307,7 @@ msgstr "crwdns79480:0{0}crwdnd79480:0{1}crwdne79480:0" msgid "Please select an item code before setting the warehouse." msgstr "crwdns142838:0crwdne142838:0" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "crwdns201925:0crwdne201925:0" @@ -38300,10 +38315,18 @@ msgstr "crwdns201925:0crwdne201925:0" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "crwdns157478:0crwdne157478:0" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "crwdns205743:0crwdne205743:0" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "crwdns201321:0crwdne201321:0" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "crwdns205745:0crwdne205745:0" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "crwdns160618:0crwdne160618:0" @@ -38312,18 +38335,10 @@ msgstr "crwdns160618:0crwdne160618:0" msgid "Please select at least one row with difference value" msgstr "crwdns163962:0crwdne163962:0" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "crwdns197216:0crwdne197216:0" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "crwdns155386:0crwdne155386:0" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "crwdns157216:0crwdne157216:0" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "crwdns79482:0crwdne79482:0" @@ -38361,12 +38376,12 @@ msgstr "crwdns127506:0crwdne127506:0" msgid "Please select items to unreserve." msgstr "crwdns127508:0crwdne127508:0" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "crwdns79490:0crwdne79490:0" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "crwdns79492:0crwdne79492:0" @@ -38375,8 +38390,8 @@ msgid "Please select the Company" msgstr "crwdns79494:0crwdne79494:0" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "crwdns79496:0crwdne79496:0" +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "crwdns205747:0crwdne205747:0" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38399,20 +38414,16 @@ msgstr "crwdns200566:0crwdne200566:0" msgid "Please select the required filters" msgstr "crwdns79502:0crwdne79502:0" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "crwdns79504:0crwdne79504:0" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "crwdns79506:0crwdne79506:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "crwdns79510:0{0}crwdne79510:0" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "crwdns79512:0crwdne79512:0" @@ -38441,8 +38452,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "crwdns79520:0{0}crwdnd79520:0{1}crwdne79520:0" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "crwdns79522:0crwdne79522:0" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "crwdns205749:0{0}crwdnd205749:0{1}crwdne205749:0" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38471,22 +38482,20 @@ msgid "Please set Email/Phone for the contact" msgstr "crwdns79528:0crwdne79528:0" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "crwdns79530:0%scrwdne79530:0" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "crwdns205751:0{0}crwdne205751:0" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "crwdns79532:0%scrwdne79532:0" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "crwdns205753:0{0}crwdne205753:0" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "crwdns154922:0{0}crwdne154922:0" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "crwdns79534:0crwdne79534:0" +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "crwdns205755:0{0}crwdnd205755:0{1}crwdne205755:0" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38502,9 +38511,8 @@ msgid "Please set Root Type" msgstr "crwdns79538:0crwdne79538:0" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "crwdns79540:0%scrwdne79540:0" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "crwdns205757:0{0}crwdne205757:0" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38523,15 +38531,15 @@ msgid "Please set a Company" msgstr "crwdns79548:0crwdne79548:0" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "crwdns79550:0crwdne79550:0" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "crwdns205759:0{0}crwdne205759:0" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "crwdns204391:0{0}crwdne204391:0" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "crwdns79554:0{0}crwdne79554:0" @@ -38548,9 +38556,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "crwdns161170:0crwdne161170:0" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "crwdns79560:0%scrwdne79560:0" +msgid "Please set an Address on the Company '{0}'" +msgstr "crwdns205761:0{0}crwdne205761:0" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38568,25 +38575,22 @@ msgstr "crwdns79566:0crwdne79566:0" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "crwdns154248:0{0}crwdne154248:0" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "crwdns79568:0{0}crwdne79568:0" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "crwdns79570:0crwdne79570:0" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "crwdns79568:0{0}crwdne79568:0" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "crwdns79572:0crwdne79572:0" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "crwdns205763:0{0}crwdne205763:0" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "crwdns79574:0crwdne79574:0" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "crwdns205765:0{0}crwdne205765:0" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38617,11 +38621,11 @@ msgstr "crwdns79586:0crwdne79586:0" msgid "Please set one of the following:" msgstr "crwdns79590:0crwdne79590:0" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "crwdns154924:0crwdne154924:0" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "crwdns79592:0crwdne79592:0" @@ -38629,7 +38633,7 @@ msgstr "crwdns79592:0crwdne79592:0" msgid "Please set the Customer Address" msgstr "crwdns79594:0crwdne79594:0" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "crwdns79596:0{0}crwdne79596:0" @@ -38684,7 +38688,7 @@ msgstr "crwdns151910:0{0}crwdnd151910:0{1}crwdne151910:0" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "crwdns151138:0{0}crwdnd151138:0{1}crwdnd151138:0{2}crwdne151138:0" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "crwdns111904:0{0}crwdnd111904:0{1}crwdne111904:0" @@ -38692,7 +38696,7 @@ msgstr "crwdns111904:0{0}crwdnd111904:0{1}crwdne111904:0" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "crwdns79616:0crwdne79616:0" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "crwdns79620:0crwdne79620:0" @@ -38702,8 +38706,8 @@ msgstr "crwdns79620:0crwdne79620:0" msgid "Please specify Company to proceed" msgstr "crwdns79622:0crwdne79622:0" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "crwdns79624:0{0}crwdnd79624:0{1}crwdne79624:0" @@ -38711,11 +38715,11 @@ msgstr "crwdns79624:0{0}crwdnd79624:0{1}crwdne79624:0" msgid "Please specify a {0} first." msgstr "crwdns152324:0{0}crwdne152324:0" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "crwdns79628:0crwdne79628:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "crwdns79630:0crwdne79630:0" @@ -38723,6 +38727,14 @@ msgstr "crwdns79630:0crwdne79630:0" msgid "Please specify from/to range" msgstr "crwdns79632:0crwdne79632:0" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "crwdns205767:0{0}crwdne205767:0" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "crwdns205769:0{0}crwdne205769:0" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "crwdns79636:0crwdne79636:0" @@ -38886,7 +38898,7 @@ msgstr "crwdns201327:0crwdne201327:0" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38911,7 +38923,7 @@ msgstr "crwdns201327:0crwdne201327:0" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38954,8 +38966,8 @@ msgstr "crwdns79680:0crwdne79680:0" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "crwdns79740:0crwdne79740:0" +msgid "Posting Date cannot be a future date" +msgstr "crwdns205771:0crwdne205771:0" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -38963,7 +38975,7 @@ msgstr "crwdns79740:0crwdne79740:0" msgid "Posting Date inheritance for exchange gain / loss" msgstr "crwdns202253:0crwdne202253:0" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "crwdns155388:0crwdne155388:0" @@ -39156,6 +39168,10 @@ msgstr "crwdns202745:0crwdne202745:0" msgid "Prepaid Expenses" msgstr "crwdns161172:0crwdne161172:0" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "crwdns205773:0{0}crwdnd205773:0{1}crwdne205773:0" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "crwdns143498:0crwdne143498:0" @@ -39245,7 +39261,7 @@ msgstr "crwdns201343:0crwdne201343:0" msgid "Preview mode" msgstr "crwdns202255:0crwdne202255:0" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "crwdns79820:0crwdne79820:0" @@ -39387,7 +39403,7 @@ msgstr "crwdns79870:0crwdne79870:0" msgid "Price List Currency" msgstr "crwdns136308:0crwdne136308:0" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "crwdns79894:0crwdne79894:0" @@ -39508,7 +39524,7 @@ msgstr "crwdns136320:0crwdne136320:0" msgid "Price Per Unit ({0})" msgstr "crwdns79964:0{0}crwdne79964:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "crwdns79966:0crwdne79966:0" @@ -39619,7 +39635,7 @@ msgstr "crwdns157480:0crwdne157480:0" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "crwdns157482:0crwdne157482:0" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "crwdns80018:0{0}crwdne80018:0" @@ -39827,8 +39843,8 @@ msgid "Priorities" msgstr "crwdns136356:0crwdne136356:0" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "crwdns80240:0crwdne80240:0" +msgid "Priority cannot be less than 1." +msgstr "crwdns205775:0crwdne205775:0" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40009,7 +40025,7 @@ msgstr "crwdns80310:0crwdne80310:0" msgid "Process in Single Transaction" msgstr "crwdns136374:0crwdne136374:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "crwdns201873:0crwdne201873:0" @@ -40135,7 +40151,7 @@ msgstr "crwdns80352:0crwdne80352:0" msgid "Product Bundle Balance" msgstr "crwdns80362:0crwdne80362:0" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "crwdns202747:0crwdne202747:0" @@ -40160,7 +40176,7 @@ msgstr "crwdns136384:0crwdne136384:0" msgid "Product Bundle Item" msgstr "crwdns80370:0crwdne80370:0" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "crwdns202749:0crwdne202749:0" @@ -40363,7 +40379,7 @@ msgstr "crwdns80444:0crwdne80444:0" msgid "Profit & Loss" msgstr "crwdns136400:0crwdne136400:0" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "crwdns80456:0crwdne80456:0" @@ -40392,6 +40408,10 @@ msgstr "crwdns80458:0crwdne80458:0" msgid "Profit and Loss Statement" msgstr "crwdns80462:0crwdne80462:0" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "crwdns205777:0{0}crwdne205777:0" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40400,8 +40420,8 @@ msgstr "crwdns80462:0crwdne80462:0" msgid "Profit and Loss Summary" msgstr "crwdns136402:0crwdne136402:0" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "crwdns80468:0crwdne80468:0" @@ -40474,7 +40494,7 @@ msgstr "crwdns80596:0crwdne80596:0" msgid "Project Summary" msgstr "crwdns80600:0crwdne80600:0" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "crwdns80602:0{0}crwdne80602:0" @@ -40554,7 +40574,7 @@ msgstr "crwdns80634:0crwdne80634:0" msgid "Project wise Stock Tracking " msgstr "crwdns80636:0crwdne80636:0" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "crwdns80638:0crwdne80638:0" @@ -40605,7 +40625,7 @@ msgstr "crwdns80658:0crwdne80658:0" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40751,7 +40771,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "crwdns80714:0crwdne80714:0" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "crwdns195052:0crwdne195052:0" @@ -40784,9 +40804,9 @@ msgstr "crwdns202261:0crwdne202261:0" msgid "Provisional Expense Account" msgstr "crwdns136424:0crwdne136424:0" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "crwdns80726:0crwdne80726:0" @@ -41014,8 +41034,8 @@ msgstr "crwdns80800:0crwdne80800:0" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "crwdns80802:0{0}crwdne80802:0" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "crwdns80804:0{0}crwdne80804:0" @@ -41056,7 +41076,7 @@ msgstr "crwdns80806:0crwdne80806:0" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41080,11 +41100,11 @@ msgstr "crwdns80806:0crwdne80806:0" msgid "Purchase Order" msgstr "crwdns80812:0crwdne80812:0" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "crwdns80842:0crwdne80842:0" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "crwdns80844:0crwdne80844:0" @@ -41099,7 +41119,7 @@ msgstr "crwdns80844:0crwdne80844:0" msgid "Purchase Order Analysis" msgstr "crwdns80846:0crwdne80846:0" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "crwdns80848:0crwdne80848:0" @@ -41148,8 +41168,8 @@ msgid "Purchase Order Required" msgstr "crwdns80876:0crwdne80876:0" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "crwdns80878:0crwdne80878:0" +msgid "Purchase Order Required for item {0}" +msgstr "crwdns205779:0{0}crwdne205779:0" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41208,8 +41228,8 @@ msgid "Purchase Orders to Receive" msgstr "crwdns136438:0crwdne136438:0" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "crwdns80898:0{0}crwdne80898:0" +msgid "Purchase Orders {0} are unlinked" +msgstr "crwdns205781:0{0}crwdne205781:0" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41298,8 +41318,8 @@ msgid "Purchase Receipt Required" msgstr "crwdns80940:0crwdne80940:0" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "crwdns80942:0crwdne80942:0" +msgid "Purchase Receipt Required for item {0}" +msgstr "crwdns205783:0{0}crwdne205783:0" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41318,8 +41338,8 @@ msgid "Purchase Receipt Trends " msgstr "crwdns195888:0crwdne195888:0" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "crwdns80946:0crwdne80946:0" +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "crwdns205785:0crwdne205785:0" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41546,7 +41566,7 @@ msgstr "crwdns201353:0crwdne201353:0" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41565,7 +41585,7 @@ msgstr "crwdns201353:0crwdne201353:0" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41630,7 +41650,7 @@ msgstr "crwdns136456:0crwdne136456:0" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41667,7 +41687,7 @@ msgstr "crwdns81106:0crwdne81106:0" msgid "Qty To Manufacture" msgstr "crwdns81108:0crwdne81108:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "crwdns127510:0{0}crwdnd127510:0{2}crwdnd127510:0{1}crwdnd127510:0{2}crwdne127510:0" @@ -41762,7 +41782,7 @@ msgstr "crwdns136476:0crwdne136476:0" msgid "Qty to Bill" msgstr "crwdns81156:0crwdne81156:0" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "crwdns81158:0crwdne81158:0" @@ -41948,7 +41968,7 @@ msgstr "crwdns81228:0crwdne81228:0" msgid "Quality Inspection Analysis" msgstr "crwdns81252:0crwdne81252:0" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "crwdns202263:0crwdne202263:0" @@ -42025,7 +42045,7 @@ msgstr "crwdns195190:0{0}crwdnd195190:0{1}crwdne195190:0" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "crwdns195192:0{0}crwdnd195192:0{1}crwdne195192:0" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "crwdns81282:0crwdne81282:0" @@ -42108,7 +42128,7 @@ msgstr "crwdns81302:0crwdne81302:0" msgid "Quality Review Objective" msgstr "crwdns81312:0crwdne81312:0" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "crwdns201355:0crwdne201355:0" @@ -42152,12 +42172,12 @@ msgstr "crwdns201355:0crwdne201355:0" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42308,7 +42328,7 @@ msgstr "crwdns111924:0crwdne111924:0" msgid "Quantity must be greater than zero" msgstr "crwdns199588:0crwdne199588:0" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "crwdns204393:0crwdne204393:0" @@ -42336,11 +42356,11 @@ msgstr "crwdns81404:0crwdne81404:0" msgid "Quantity to Manufacture" msgstr "crwdns81408:0crwdne81408:0" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "crwdns81410:0{0}crwdne81410:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "crwdns81412:0crwdne81412:0" @@ -42348,6 +42368,10 @@ msgstr "crwdns81412:0crwdne81412:0" msgid "Quantity to Scan" msgstr "crwdns81418:0crwdne81418:0" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "crwdns205787:0{0}crwdnd205787:0{1}crwdne205787:0" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42373,7 +42397,7 @@ msgstr "crwdns81420:0{0}crwdnd81420:0{1}crwdne81420:0" msgid "Query Route String" msgstr "crwdns136510:0crwdne136510:0" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "crwdns152218:0crwdne152218:0" @@ -42613,7 +42637,7 @@ msgstr "crwdns136526:0crwdne136526:0" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42797,8 +42821,8 @@ msgid "Rate at which this tax is applied" msgstr "crwdns136558:0crwdne136558:0" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "crwdns160678:0crwdne160678:0" +msgid "Rate of '{0}' items cannot be changed" +msgstr "crwdns205789:0{0}crwdne205789:0" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43116,7 +43140,7 @@ msgstr "crwdns81838:0crwdne81838:0" msgid "Reason for Failure" msgstr "crwdns136622:0crwdne136622:0" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "crwdns81842:0crwdne81842:0" @@ -43358,8 +43382,8 @@ msgstr "crwdns81946:0crwdne81946:0" msgid "Receiving" msgstr "crwdns136654:0crwdne136654:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "crwdns111930:0crwdne111930:0" @@ -43535,6 +43559,10 @@ msgstr "crwdns201377:0crwdne201377:0" msgid "Record a transfer between two bank accounts" msgstr "crwdns201379:0crwdne201379:0" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "crwdns205791:0{0}crwdne205791:0" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43585,7 +43613,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "crwdns81994:0crwdne81994:0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "crwdns142840:0crwdne142840:0" @@ -43665,7 +43693,7 @@ msgstr "crwdns201389:0crwdne201389:0" msgid "Reference #{0} dated {1}" msgstr "crwdns82078:0#{0}crwdnd82078:0{1}crwdne82078:0" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "crwdns82084:0crwdne82084:0" @@ -43957,8 +43985,8 @@ msgid "Rejected Warehouse" msgstr "crwdns136744:0crwdne136744:0" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "crwdns149138:0crwdne149138:0" +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "crwdns205793:0crwdne205793:0" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44064,7 +44092,7 @@ msgstr "crwdns82292:0crwdne82292:0" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44103,7 +44131,7 @@ msgstr "crwdns195056:0crwdne195056:0" msgid "Remove item if charges is not applicable to that item" msgstr "crwdns111940:0crwdne111940:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "crwdns82338:0crwdne82338:0" @@ -44254,7 +44282,7 @@ msgstr "crwdns82408:0crwdne82408:0" msgid "Report Line Items" msgstr "crwdns161174:0crwdne161174:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44337,7 +44365,7 @@ msgstr "crwdns136784:0crwdne136784:0" msgid "Repost Item Valuation" msgstr "crwdns82434:0crwdne82434:0" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "crwdns161304:0crwdne161304:0" @@ -44383,6 +44411,15 @@ msgstr "crwdns82450:0crwdne82450:0" msgid "Reposting Data File" msgstr "crwdns136790:0crwdne136790:0" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "crwdns205795:0crwdne205795:0" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "crwdns205797:0crwdne205797:0" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44467,7 +44504,7 @@ msgstr "crwdns111948:0crwdne111948:0" msgid "Reqd Qty (BOM)" msgstr "crwdns154932:0crwdne154932:0" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "crwdns82486:0crwdne82486:0" @@ -44583,11 +44620,11 @@ msgstr "crwdns82524:0crwdne82524:0" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "crwdns111950:0crwdne111950:0" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "crwdns82532:0crwdne82532:0" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "crwdns82534:0crwdne82534:0" @@ -44766,6 +44803,10 @@ msgstr "crwdns82606:0crwdne82606:0" msgid "Reserve Warehouse" msgstr "crwdns136818:0crwdne136818:0" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "crwdns205799:0{0}crwdne205799:0" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "crwdns154936:0crwdne154936:0" @@ -44804,8 +44845,8 @@ msgid "Reserved Qty" msgstr "crwdns82618:0crwdne82618:0" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "crwdns82624:0{0}crwdnd82624:0{1}crwdnd82624:0{3}crwdne82624:0" +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "crwdns205801:0{0}crwdnd205801:0{1}crwdnd205801:0{2}crwdne205801:0" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44849,7 +44890,7 @@ msgstr "crwdns82636:0crwdne82636:0" msgid "Reserved Quantity for Production" msgstr "crwdns82638:0crwdne82638:0" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "crwdns82640:0crwdne82640:0" @@ -44865,13 +44906,13 @@ msgstr "crwdns82640:0crwdne82640:0" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "crwdns82642:0crwdne82642:0" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "crwdns82646:0crwdne82646:0" @@ -45365,6 +45406,10 @@ msgstr "crwdns82842:0crwdne82842:0" msgid "Returns" msgstr "crwdns82844:0crwdne82844:0" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "crwdns205803:0{0}crwdne205803:0" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45789,11 +45834,11 @@ msgstr "crwdns136952:0crwdne136952:0" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "crwdns83036:0{0}crwdnd83036:0{1}crwdnd83036:0{2}crwdne83036:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "crwdns151918:0{0}crwdnd151918:0{1}crwdne151918:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "crwdns154946:0{0}crwdnd154946:0{1}crwdne154946:0" @@ -45877,23 +45922,23 @@ msgstr "crwdns160342:0#{0}crwdnd160342:0{1}crwdne160342:0" msgid "Row #{0}: Batch No {1} is already selected." msgstr "crwdns83070:0#{0}crwdnd83070:0{1}crwdne83070:0" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "crwdns160344:0#{0}crwdnd160344:0{1}crwdne160344:0" +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "crwdns205805:0#{0}crwdnd205805:0{1}crwdne205805:0" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "crwdns83072:0#{0}crwdnd83072:0{1}crwdnd83072:0{2}crwdne83072:0" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "crwdns160346:0#{0}crwdnd160346:0{1}crwdne160346:0" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "crwdns198336:0#{0}crwdnd198336:0{1}crwdne198336:0" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "crwdns160350:0#{0}crwdnd160350:0{1}crwdne160350:0" @@ -45969,13 +46014,16 @@ msgstr "crwdns164246:0#{0}crwdnd164246:0{1}crwdnd164246:0{2}crwdne164246:0" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "crwdns83106:0#{0}crwdne83106:0" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "crwdns205807:0#{0}crwdnd205807:0{1}crwdnd205807:0{2}crwdne205807:0" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "crwdns160454:0#{0}crwdnd160454:0{1}crwdnd160454:0{2}crwdnd160454:0{3}crwdne160454:0" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "crwdns160456:0#{0}crwdnd160456:0{1}crwdne160456:0" @@ -45987,7 +46035,7 @@ msgstr "crwdns160458:0#{0}crwdnd160458:0{1}crwdne160458:0" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "crwdns160460:0#{0}crwdnd160460:0{1}crwdne160460:0" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "crwdns160352:0#{0}crwdnd160352:0{1}crwdne160352:0" @@ -45995,12 +46043,12 @@ msgstr "crwdns160352:0#{0}crwdnd160352:0{1}crwdne160352:0" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "crwdns160462:0#{0}crwdnd160462:0{1}crwdnd160462:0{2}crwdne160462:0" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "crwdns160354:0#{0}crwdnd160354:0{1}crwdnd160354:0{2}crwdne160354:0" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "crwdns160464:0#{0}crwdnd160464:0{1}crwdnd160464:0{2}crwdne160464:0" @@ -46012,7 +46060,7 @@ msgstr "crwdns164248:0#{0}crwdnd164248:0{1}crwdne164248:0" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "crwdns83110:0#{0}crwdnd83110:0{1}crwdne83110:0" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "crwdns154954:0#{0}crwdne154954:0" @@ -46020,6 +46068,10 @@ msgstr "crwdns154954:0#{0}crwdne154954:0" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "crwdns83112:0#{0}crwdnd83112:0{1}crwdnd83112:0{2}crwdne83112:0" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "crwdns205809:0#{0}crwdne205809:0" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "crwdns83114:0#{0}crwdne83114:0" @@ -46032,11 +46084,18 @@ msgstr "crwdns83116:0#{0}crwdnd83116:0{1}crwdnd83116:0{2}crwdne83116:0" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "crwdns163866:0#{0}crwdnd163866:0{1}crwdnd163866:0{2}crwdne163866:0" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "crwdns205811:0#{0}crwdne205811:0" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "crwdns83118:0#{0}crwdne83118:0" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "crwdns205813:0#{0}crwdne205813:0" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46059,8 +46118,8 @@ msgstr "crwdns136954:0#{0}crwdnd136954:0{1}crwdne136954:0" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "crwdns198338:0#{0}crwdnd198338:0{1}crwdne198338:0" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "crwdns160356:0#{0}crwdnd160356:0{1}crwdnd160356:0{2}crwdne160356:0" @@ -46072,7 +46131,7 @@ msgstr "crwdns83126:0#{0}crwdnd83126:0{1}crwdne83126:0" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "crwdns83128:0#{0}crwdnd83128:0{1}crwdne83128:0" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "crwdns164250:0#{0}crwdne164250:0" @@ -46084,6 +46143,10 @@ msgstr "crwdns83130:0#{0}crwdne83130:0" msgid "Row #{0}: From Time and To Time fields are required" msgstr "crwdns154780:0#{0}crwdne154780:0" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "crwdns205815:0#{0}crwdne205815:0" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "crwdns83132:0#{0}crwdne83132:0" @@ -46112,16 +46175,16 @@ msgstr "crwdns200210:0#{0}crwdnd200210:0{1}crwdnd200210:0{2}crwdne200210:0" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "crwdns162016:0#{0}crwdnd162016:0{1}crwdnd162016:0{2}crwdnd162016:0{3}crwdnd162016:0{4}crwdne162016:0" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "crwdns160466:0#{0}crwdnd160466:0{1}crwdne160466:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "crwdns83138:0#{0}crwdnd83138:0{1}crwdne83138:0" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "crwdns160360:0#{0}crwdnd160360:0{1}crwdnd160360:0{2}crwdne160360:0" @@ -46137,13 +46200,17 @@ msgstr "crwdns83142:0#{0}crwdnd83142:0{1}crwdne83142:0" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "crwdns202763:0#{0}crwdnd202763:0{1}crwdne202763:0" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "crwdns160362:0#{0}crwdnd160362:0{1}crwdne160362:0" +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "crwdns205817:0#{0}crwdnd205817:0{1}crwdne205817:0" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "crwdns160364:0#{0}crwdnd160364:0{1}crwdne160364:0" +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "crwdns205819:0#{0}crwdnd205819:0{1}crwdne205819:0" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "crwdns205821:0#{0}crwdnd205821:0{1}crwdnd205821:0{2}crwdnd205821:0{3}crwdne205821:0" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46153,15 +46220,15 @@ msgstr "crwdns202765:0#{0}crwdnd202765:0{1}crwdnd202765:0{2}crwdnd202765:0{3}crw msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "crwdns83144:0#{0}crwdnd83144:0{1}crwdnd83144:0{2}crwdne83144:0" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "crwdns195894:0#{0}crwdnd195894:0{1}crwdnd195894:0{2}crwdne195894:0" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "crwdns154958:0#{0}crwdne154958:0" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "crwdns154960:0#{0}crwdne154960:0" @@ -46173,24 +46240,48 @@ msgstr "crwdns83148:0#{0}crwdne83148:0" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "crwdns83150:0#{0}crwdnd83150:0{1}crwdnd83150:0{2}crwdne83150:0" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "crwdns154962:0#{0}crwdnd154962:0{1}crwdne154962:0" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "crwdns160468:0#{0}crwdnd160468:0{1}crwdnd160468:0{2}crwdne160468:0" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "crwdns205823:0#{0}crwdnd205823:0{1}crwdnd205823:0{2}crwdne205823:0" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "crwdns205825:0#{0}crwdnd205825:0{1}crwdnd205825:0{2}crwdne205825:0" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "crwdns205827:0#{0}crwdnd205827:0{1}crwdne205827:0" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "crwdns205829:0#{0}crwdne205829:0" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "crwdns83156:0#{0}crwdne83156:0" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "crwdns205831:0#{0}crwdnd205831:0{1}crwdne205831:0" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "crwdns205833:0#{0}crwdnd205833:0{1}crwdnd205833:0{2}crwdne205833:0" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "crwdns83158:0#{0}crwdne83158:0" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "crwdns160470:0#{0}crwdne160470:0" @@ -46206,6 +46297,10 @@ msgstr "crwdns83162:0#{0}crwdne83162:0" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "crwdns83164:0#{0}crwdne83164:0" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "crwdns205835:0#{0}crwdne205835:0" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46225,8 +46320,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "crwdns83168:0#{0}crwdne83168:0" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "crwdns83170:0#{0}crwdnd83170:0{1}crwdnd83170:0{2}crwdnd83170:0{3}crwdnd83170:0{4}crwdne83170:0" +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "crwdns205837:0#{0}crwdnd205837:0{1}crwdnd205837:0{2}crwdnd205837:0{3}crwdnd205837:0{4}crwdne205837:0" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46248,7 +46343,7 @@ msgstr "crwdns158348:0#{0}crwdnd158348:0{1}crwdne158348:0" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "crwdns83172:0#{0}crwdnd83172:0{1}crwdne83172:0" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "crwdns160366:0#{0}crwdnd160366:0{1}crwdnd160366:0{2}crwdnd160366:0{3}crwdnd160366:0{4}crwdne160366:0" @@ -46256,17 +46351,17 @@ msgstr "crwdns160366:0#{0}crwdnd160366:0{1}crwdnd160366:0{2}crwdnd160366:0{3}crw msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "crwdns83174:0#{0}crwdnd83174:0{1}crwdne83174:0" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "crwdns83176:0#{0}crwdnd83176:0{1}crwdnd83176:0{2}crwdnd83176:0{3}crwdnd83176:0{4}crwdne83176:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "crwdns83180:0#{0}crwdne83180:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "crwdns83182:0#{0}crwdne83182:0" @@ -46286,11 +46381,11 @@ msgstr "crwdns163868:0#{0}crwdnd163868:0{1}crwdnd163868:0{2}crwdnd163868:0{3}crw msgid "Row #{0}: Return Against is required for returning asset" msgstr "crwdns154964:0#{0}crwdne154964:0" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "crwdns160368:0#{0}crwdnd160368:0{1}crwdne160368:0" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "crwdns160370:0#{0}crwdnd160370:0{1}crwdne160370:0" @@ -46300,15 +46395,19 @@ msgstr "crwdns198346:0#{0}crwdne198346:0" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "crwdns195196:0#{0}crwdnd195196:0{1}crwdnd195196:0{2}crwdnd195196:0{3}crwdnd195196:0{4}crwdnd195196:0{5}crwdnd195196:0{6}crwdne195196:0" +msgstr "crwdns205839:0#{0}crwdnd205839:0{1}crwdnd205839:0{2}crwdnd205839:0{3}crwdnd205839:0{4}crwdnd205839:0{5}crwdnd205839:0{6}crwdne205839:0" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "crwdns156068:0#{0}crwdnd156068:0{1}crwdnd156068:0{2}crwdnd156068:0{3}crwdne156068:0" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "crwdns205841:0#{0}crwdnd205841:0{1}crwdnd205841:0{2}crwdne205841:0" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "crwdns83196:0#{0}crwdnd83196:0{1}crwdnd83196:0{2}crwdne83196:0" @@ -46321,7 +46420,7 @@ msgstr "crwdns83198:0#{0}crwdnd83198:0{1}crwdnd83198:0{2}crwdnd83198:0{3}crwdnd8 msgid "Row #{0}: Serial No {1} is already selected." msgstr "crwdns83200:0#{0}crwdnd83200:0{1}crwdne83200:0" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "crwdns160372:0#{0}crwdnd160372:0{1}crwdne160372:0" @@ -46345,7 +46444,7 @@ msgstr "crwdns83208:0#{0}crwdnd83208:0{1}crwdne83208:0" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "crwdns158350:0#{0}crwdnd158350:0{1}crwdne158350:0" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "crwdns160374:0#{0}crwdnd160374:0{1}crwdne160374:0" @@ -46414,7 +46513,7 @@ msgstr "crwdns83226:0#{0}crwdnd83226:0{1}crwdnd83226:0{2}crwdne83226:0" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "crwdns160378:0#{0}crwdnd160378:0{1}crwdnd160378:0{2}crwdnd160378:0{3}crwdnd160378:0{4}crwdne160378:0" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "crwdns160380:0#{0}crwdnd160380:0{1}crwdne160380:0" @@ -46422,19 +46521,27 @@ msgstr "crwdns160380:0#{0}crwdnd160380:0{1}crwdne160380:0" msgid "Row #{0}: The batch {1} has already expired." msgstr "crwdns83228:0#{0}crwdnd83228:0{1}crwdne83228:0" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "crwdns205843:0#{0}crwdne205843:0" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "crwdns205845:0#{0}crwdnd205845:0{1}crwdnd205845:0{2}crwdne205845:0" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "crwdns127848:0#{0}crwdnd127848:0{1}crwdnd127848:0{2}crwdne127848:0" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "crwdns83232:0#{0}crwdnd83232:0{1}crwdne83232:0" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "crwdns205847:0#{0}crwdnd205847:0{1}crwdne205847:0" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "crwdns154966:0#{0}crwdne154966:0" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "crwdns164254:0#{0}crwdne164254:0" @@ -46446,11 +46553,15 @@ msgstr "crwdns197234:0#{0}crwdnd197234:0{1}crwdnd197234:0{2}crwdnd197234:0{3}crw msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "crwdns164256:0#{0}crwdnd164256:0{1}crwdnd164256:0{2}crwdne164256:0" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "crwdns160382:0#{0}crwdnd160382:0{1}crwdne160382:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "crwdns205849:0#{0}crwdnd205849:0{1}crwdne205849:0" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "crwdns83234:0#{0}crwdnd83234:0{1}crwdne83234:0" @@ -46458,6 +46569,19 @@ msgstr "crwdns83234:0#{0}crwdnd83234:0{1}crwdne83234:0" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "crwdns83236:0#{0}crwdnd83236:0{1}crwdne83236:0" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "crwdns205851:0#{0}crwdnd205851:0{1}crwdne205851:0" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "crwdns205853:0#{0}crwdnd205853:0{1}crwdne205853:0" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "crwdns205855:0#{0}crwdnd205855:0{1}crwdnd205855:0{2}crwdne205855:0" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "crwdns83240:0#{0}crwdnd83240:0{1}crwdnd83240:0{2}crwdne83240:0" @@ -46474,6 +46598,14 @@ msgstr "crwdns83244:0#{0}crwdnd83244:0{1}crwdnd83244:0{2}crwdne83244:0" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "crwdns83246:0#{0}crwdnd83246:0{1}crwdnd83246:0{2}crwdnd83246:0{3}crwdnd83246:0{1}crwdne83246:0" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "crwdns205857:0#{0}crwdnd205857:0{1}crwdnd205857:0{2}crwdnd205857:0{3}crwdnd205857:0{4}crwdne205857:0" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "crwdns205859:0#{0}crwdnd205859:0{1}crwdnd205859:0{2}crwdne205859:0" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "crwdns197236:0#{0}crwdnd197236:0{1}crwdne197236:0" @@ -46514,71 +46646,10 @@ msgstr "crwdns154266:0#{idx}crwdnd154266:0{from_warehouse_field}crwdnd154266:0{t msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "crwdns154268:0#{idx}crwdnd154268:0{schedule_date}crwdnd154268:0{transaction_date}crwdne154268:0" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "crwdns83250:0crwdne83250:0" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "crwdns199602:0crwdne199602:0" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "crwdns83254:0crwdne83254:0" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "crwdns83260:0crwdne83260:0" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "crwdns83262:0crwdne83262:0" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "crwdns83264:0crwdne83264:0" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "crwdns199604:0crwdne199604:0" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "crwdns104646:0crwdne104646:0" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "crwdns83268:0crwdne83268:0" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "crwdns83270:0crwdne83270:0" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "crwdns143520:0crwdne143520:0" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "crwdns104648:0crwdne104648:0" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "crwdns83276:0crwdne83276:0" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "crwdns83278:0crwdne83278:0" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "crwdns83280:0crwdne83280:0" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "crwdns83282:0crwdne83282:0" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "crwdns83284:0{0}crwdnd83284:0{1}crwdnd83284:0{2}crwdne83284:0" @@ -46591,10 +46662,6 @@ msgstr "crwdns83286:0{0}crwdnd83286:0{1}crwdne83286:0" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "crwdns83288:0{0}crwdnd83288:0{1}crwdnd83288:0{2}crwdne83288:0" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "crwdns83292:0{0}crwdnd83292:0{1}crwdnd83292:0{2}crwdnd83292:0{3}crwdne83292:0" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "crwdns83294:0{0}crwdne83294:0" @@ -46615,19 +46682,19 @@ msgstr "crwdns83302:0{0}crwdne83302:0" msgid "Row {0}: Advance against Supplier must be debit" msgstr "crwdns83304:0{0}crwdne83304:0" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "crwdns83306:0{0}crwdnd83306:0{1}crwdnd83306:0{2}crwdne83306:0" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "crwdns83308:0{0}crwdnd83308:0{1}crwdnd83308:0{2}crwdne83308:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "crwdns111976:0{0}crwdnd111976:0{1}crwdnd111976:0{2}crwdnd111976:0{3}crwdne111976:0" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "crwdns83310:0{0}crwdnd83310:0{1}crwdne83310:0" @@ -46643,11 +46710,11 @@ msgstr "crwdns202289:0{0}crwdnd202289:0{1}crwdnd202289:0{2}crwdne202289:0" msgid "Row {0}: Conversion Factor is mandatory" msgstr "crwdns83314:0{0}crwdne83314:0" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "crwdns83316:0{0}crwdnd83316:0{1}crwdnd83316:0{2}crwdne83316:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "crwdns83318:0{0}crwdnd83318:0{1}crwdne83318:0" @@ -46675,24 +46742,24 @@ msgstr "crwdns160384:0{0}crwdnd160384:0{1}crwdne160384:0" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "crwdns83330:0{0}crwdne83330:0" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "crwdns83332:0{0}crwdne83332:0" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "crwdns83336:0{0}crwdne83336:0" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "crwdns164258:0{0}crwdne164258:0" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "crwdns160238:0{0}crwdne160238:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "crwdns197238:0{0}crwdnd197238:0{1}crwdnd197238:0{2}crwdnd197238:0{3}crwdne197238:0" @@ -46713,6 +46780,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "crwdns83348:0{0}crwdne83348:0" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "crwdns205861:0{0}crwdnd205861:0{1}crwdnd205861:0{2}crwdne205861:0" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "crwdns83350:0{0}crwdnd83350:0{1}crwdnd83350:0{2}crwdne83350:0" @@ -46734,8 +46804,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "crwdns83358:0{0}crwdnd83358:0{1}crwdne83358:0" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "crwdns83360:0{0}crwdne83360:0" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "crwdns205863:0{0}crwdnd205863:0{1}crwdne205863:0" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46765,7 +46835,7 @@ msgstr "crwdns199162:0{0}crwdnd199162:0{1}crwdne199162:0" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "crwdns83368:0{0}crwdnd83368:0{1}crwdne83368:0" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "crwdns83370:0{0}crwdnd83370:0{1}crwdne83370:0" @@ -46789,7 +46859,7 @@ msgstr "crwdns83378:0{0}crwdne83378:0" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "crwdns83380:0{0}crwdnd83380:0{1}crwdne83380:0" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "crwdns83382:0{0}crwdne83382:0" @@ -46797,14 +46867,14 @@ msgstr "crwdns83382:0{0}crwdne83382:0" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "crwdns83384:0{0}crwdnd83384:0{1}crwdne83384:0" +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "crwdns205865:0{0}crwdnd205865:0{1}crwdne205865:0" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "crwdns83386:0{0}crwdnd83386:0{1}crwdne83386:0" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "crwdns83388:0{0}crwdnd83388:0{1}crwdne83388:0" - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "crwdns83390:0{0}crwdne83390:0" @@ -46821,11 +46891,11 @@ msgstr "crwdns83394:0{0}crwdnd83394:0{1}crwdne83394:0" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "crwdns83396:0{0}crwdnd83396:0{1}crwdne83396:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "crwdns83398:0{0}crwdnd83398:0{1}crwdne83398:0" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "crwdns83400:0{0}crwdnd83400:0{1}crwdnd83400:0{2}crwdne83400:0" @@ -46833,7 +46903,7 @@ msgstr "crwdns83400:0{0}crwdnd83400:0{1}crwdnd83400:0{2}crwdne83400:0" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "crwdns83402:0{0}crwdne83402:0" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "crwdns83404:0{0}crwdne83404:0" @@ -46845,7 +46915,7 @@ msgstr "crwdns152228:0{0}crwdne152228:0" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "crwdns164260:0{0}crwdnd164260:0{1}crwdnd164260:0{2}crwdne164260:0" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "crwdns202291:0{0}crwdnd202291:0{1}crwdne202291:0" @@ -46870,10 +46940,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "crwdns163870:0{0}crwdnd163870:0{1}crwdnd163870:0{2}crwdne163870:0" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "crwdns83414:0{0}crwdnd83414:0{1}crwdne83414:0" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "crwdns205867:0{0}crwdnd205867:0{1}crwdne205867:0" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "crwdns149102:0{0}crwdnd149102:0{3}crwdnd149102:0{1}crwdnd149102:0{2}crwdne149102:0" @@ -46926,15 +46996,19 @@ msgstr "crwdns83428:0{0}crwdnd83428:0{1}crwdnd83428:0{2}crwdnd83428:0{3}crwdnd83 msgid "Row {0}: {1} {2} does not match with {3}" msgstr "crwdns83430:0{0}crwdnd83430:0{1}crwdnd83430:0{2}crwdnd83430:0{3}crwdne83430:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "crwdns197240:0{0}crwdnd197240:0{1}crwdnd197240:0{2}crwdnd197240:0{3}crwdnd197240:0{4}crwdne197240:0" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "crwdns205869:0{0}crwdnd205869:0{1}crwdnd205869:0{2}crwdne205869:0" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "crwdns111978:0{0}crwdnd111978:0{2}crwdnd111978:0{1}crwdnd111978:0{2}crwdnd111978:0{3}crwdne111978:0" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "crwdns83434:0{1}crwdnd83434:0{0}crwdnd83434:0{2}crwdnd83434:0{3}crwdne83434:0" @@ -46973,8 +47047,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "crwdns83450:0{0}crwdne83450:0" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "crwdns83452:0{0}crwdnd83452:0{1}crwdne83452:0" +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "crwdns205871:0{0}crwdnd205871:0{1}crwdne205871:0" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47034,10 +47108,6 @@ msgstr "crwdns201423:0crwdne201423:0" msgid "Rules evaluation started" msgstr "crwdns201425:0crwdne201425:0" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "crwdns200822:0crwdne200822:0" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "crwdns201427:0crwdne201427:0" @@ -47105,7 +47175,7 @@ msgstr "crwdns83484:0crwdne83484:0" msgid "SLA Paused On" msgstr "crwdns136972:0crwdne136972:0" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "crwdns83488:0{0}crwdne83488:0" @@ -47404,8 +47474,8 @@ msgid "Sales Invoice is not submitted" msgstr "crwdns154672:0crwdne154672:0" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "crwdns154674:0crwdne154674:0" +msgid "Sales Invoice isn't created by user {0}" +msgstr "crwdns205873:0{0}crwdne205873:0" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47621,8 +47691,8 @@ msgstr "crwdns83694:0{0}crwdnd83694:0{1}crwdnd83694:0{2}crwdnd83694:0{3}crwdne83 msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "crwdns204401:0{0}crwdnd204401:0{1}crwdne204401:0" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "crwdns200212:0{0}crwdne200212:0" @@ -48029,7 +48099,7 @@ msgstr "crwdns137018:0crwdne137018:0" msgid "Same day" msgstr "crwdns201441:0crwdne201441:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "crwdns83872:0crwdne83872:0" @@ -48061,7 +48131,7 @@ msgstr "crwdns137022:0crwdne137022:0" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "crwdns83884:0crwdne83884:0" @@ -48171,7 +48241,7 @@ msgstr "crwdns83960:0crwdne83960:0" msgid "Schedule Date" msgstr "crwdns83964:0crwdne83964:0" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "crwdns197244:0crwdne197244:0" @@ -48182,7 +48252,7 @@ msgstr "crwdns197244:0crwdne197244:0" msgid "Scheduled Date" msgstr "crwdns83976:0crwdne83976:0" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "crwdns197246:0crwdne197246:0" @@ -48468,7 +48538,7 @@ msgstr "crwdns201455:0crwdne201455:0" msgid "Select Accounting Dimension." msgstr "crwdns84084:0crwdne84084:0" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "crwdns84086:0crwdne84086:0" @@ -48489,7 +48559,7 @@ msgid "Select BOM and Qty for Production" msgstr "crwdns84094:0crwdne84094:0" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "crwdns84098:0crwdne84098:0" @@ -48554,7 +48624,7 @@ msgstr "crwdns84120:0crwdne84120:0" msgid "Select Dispatch Address " msgstr "crwdns154782:0crwdne154782:0" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "crwdns84124:0crwdne84124:0" @@ -48579,7 +48649,7 @@ msgstr "crwdns84128:0crwdne84128:0" msgid "Select Items based on Delivery Date" msgstr "crwdns84130:0crwdne84130:0" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "crwdns84132:0crwdne84132:0" @@ -48609,7 +48679,7 @@ msgstr "crwdns142964:0crwdne142964:0" msgid "Select Loyalty Program" msgstr "crwdns84138:0crwdne84138:0" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "crwdns197248:0crwdne197248:0" @@ -48623,13 +48693,13 @@ msgid "Select Quantity" msgstr "crwdns84142:0crwdne84142:0" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "crwdns84144:0crwdne84144:0" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "crwdns84146:0crwdne84146:0" @@ -48720,6 +48790,7 @@ msgid "Select an Item Group." msgstr "crwdns84180:0crwdne84180:0" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "crwdns84182:0crwdne84182:0" @@ -48861,10 +48932,14 @@ msgstr "crwdns137102:0crwdne137102:0" msgid "Selected date is" msgstr "crwdns84228:0crwdne84228:0" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "crwdns84230:0crwdne84230:0" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "crwdns205875:0{0}crwdnd205875:0{1}crwdne205875:0" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49012,7 +49087,7 @@ msgid "Send Emails to Suppliers" msgstr "crwdns84282:0crwdne84282:0" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "crwdns84286:0crwdne84286:0" @@ -49096,7 +49171,7 @@ msgstr "crwdns84326:0crwdne84326:0" msgid "Serial / Batch No" msgstr "crwdns137142:0crwdne137142:0" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "crwdns84330:0crwdne84330:0" @@ -49153,10 +49228,11 @@ msgstr "crwdns202301:0crwdne202301:0" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49198,6 +49274,10 @@ msgstr "crwdns137144:0crwdne137144:0" msgid "Serial No Already Assigned" msgstr "crwdns156070:0crwdne156070:0" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "crwdns205877:0{0}crwdne205877:0" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "crwdns84382:0crwdne84382:0" @@ -49215,7 +49295,7 @@ msgstr "crwdns84384:0crwdne84384:0" msgid "Serial No Range" msgstr "crwdns149104:0crwdne149104:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "crwdns152348:0crwdne152348:0" @@ -49260,8 +49340,8 @@ msgid "Serial No and Batch" msgstr "crwdns84392:0crwdne84392:0" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "crwdns137146:0crwdne137146:0" +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "crwdns205879:0crwdne205879:0" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49272,7 +49352,7 @@ msgstr "crwdns137146:0crwdne137146:0" msgid "Serial No and Batch Traceability" msgstr "crwdns157486:0crwdne157486:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "crwdns84400:0crwdne84400:0" @@ -49292,22 +49372,19 @@ msgstr "crwdns84406:0{0}crwdne84406:0" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "crwdns84408:0{0}crwdnd84408:0{1}crwdne84408:0" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "crwdns84410:0{0}crwdnd84410:0{1}crwdne84410:0" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "crwdns84412:0{0}crwdne84412:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "crwdns104656:0{0}crwdne104656:0" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "crwdns160684:0{0}crwdne160684:0" +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "crwdns205881:0{0}crwdne205881:0" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49321,25 +49398,26 @@ msgstr "crwdns156072:0{0}crwdnd156072:0{1}crwdnd156072:0{1}crwdne156072:0" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "crwdns151940:0{0}crwdnd151940:0{1}crwdnd151940:0{2}crwdnd151940:0{1}crwdnd151940:0{2}crwdne151940:0" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "crwdns84418:0{0}crwdnd84418:0{1}crwdne84418:0" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "crwdns205883:0{0}crwdnd205883:0{1}crwdne205883:0" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "crwdns84420:0{0}crwdnd84420:0{1}crwdne84420:0" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "crwdns205885:0{0}crwdnd205885:0{1}crwdne205885:0" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "crwdns84422:0{0}crwdne84422:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "crwdns84424:0{0}crwdne84424:0" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49359,7 +49437,7 @@ msgstr "crwdns200214:0crwdne200214:0" msgid "Serial Nos are created successfully" msgstr "crwdns84434:0crwdne84434:0" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "crwdns84436:0crwdne84436:0" @@ -49460,6 +49538,10 @@ msgstr "crwdns159170:0{0}crwdne159170:0" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "crwdns202769:0{0}crwdne202769:0" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "crwdns205887:0{0}crwdne205887:0" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49508,7 +49590,7 @@ msgstr "crwdns137162:0crwdne137162:0" msgid "Serial and Batch Summary" msgstr "crwdns84496:0crwdne84496:0" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "crwdns84498:0{0}crwdne84498:0" @@ -49516,122 +49598,12 @@ msgstr "crwdns84498:0{0}crwdne84498:0" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "crwdns154195:0{0}crwdnd154195:0{1}crwdne154195:0" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "crwdns84500:0crwdne84500:0" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "crwdns137164:0crwdne137164:0" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "crwdns84602:0crwdne84602:0" @@ -49713,7 +49685,7 @@ msgid "Service Item {0} is disabled." msgstr "crwdns84634:0{0}crwdne84634:0" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "crwdns84636:0{0}crwdne84636:0" @@ -49822,12 +49794,12 @@ msgid "Service Stop Date" msgstr "crwdns137202:0crwdne137202:0" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "crwdns84684:0crwdne84684:0" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "crwdns84686:0crwdne84686:0" @@ -49851,7 +49823,7 @@ msgstr "crwdns137206:0crwdne137206:0" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "crwdns137208:0crwdne137208:0" @@ -49866,7 +49838,7 @@ msgstr "crwdns84698:0crwdne84698:0" msgid "Set Delivery Warehouse" msgstr "crwdns160390:0crwdne160390:0" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "crwdns201471:0crwdne201471:0" @@ -49971,7 +49943,7 @@ msgstr "crwdns152591:0crwdne152591:0" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -49989,7 +49961,7 @@ msgstr "crwdns161492:0crwdne161492:0" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50015,7 +49987,7 @@ msgstr "crwdns84760:0crwdne84760:0" msgid "Set as Completed" msgstr "crwdns84762:0crwdne84762:0" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "crwdns84764:0crwdne84764:0" @@ -50113,15 +50085,15 @@ msgstr "crwdns201477:0crwdne201477:0" msgid "Set valuation rate for rejected Materials" msgstr "crwdns201791:0crwdne201791:0" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "crwdns84788:0{0}crwdnd84788:0{1}crwdnd84788:0{2}crwdne84788:0" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "crwdns84790:0{0}crwdnd84790:0{1}crwdnd84790:0{2}crwdne84790:0" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "crwdns84792:0{0}crwdnd84792:0{1}crwdne84792:0" @@ -50189,7 +50161,7 @@ msgid "Setting up company" msgstr "crwdns84818:0crwdne84818:0" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "crwdns155928:0{0}crwdne155928:0" @@ -50617,6 +50589,7 @@ msgid "Show Completed" msgstr "crwdns85014:0crwdne85014:0" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "crwdns157488:0crwdne157488:0" @@ -50819,7 +50792,7 @@ msgstr "crwdns85080:0crwdne85080:0" msgid "Show pay button in Purchase Order portal" msgstr "crwdns201793:0crwdne201793:0" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "crwdns85082:0crwdne85082:0" @@ -50922,11 +50895,11 @@ msgstr "crwdns137354:0crwdne137354:0" msgid "Simultaneous" msgstr "crwdns137356:0crwdne137356:0" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "crwdns195896:0crwdne195896:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "crwdns85116:0{0}crwdnd85116:0{1}crwdnd85116:0{0}crwdnd85116:0{1}crwdne85116:0" @@ -50987,7 +50960,7 @@ msgstr "crwdns137370:0crwdne137370:0" msgid "Skip Material Transfer to WIP Warehouse" msgstr "crwdns137372:0crwdne137372:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "crwdns195064:0{0}crwdnd195064:0{1}crwdne195064:0" @@ -51043,8 +51016,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "crwdns160392:0crwdne160392:0" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "crwdns85154:0crwdne85154:0" +msgid "Something went wrong, please try again" +msgstr "crwdns205889:0crwdne205889:0" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51111,7 +51084,7 @@ msgstr "crwdns200042:0crwdne200042:0" msgid "Source Stock Entry (Manufacture)" msgstr "crwdns200044:0crwdne200044:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "crwdns200046:0{0}crwdnd200046:0{1}crwdnd200046:0{2}crwdne200046:0" @@ -51148,8 +51121,8 @@ msgstr "crwdns137392:0crwdne137392:0" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51279,7 +51252,7 @@ msgstr "crwdns85254:0crwdne85254:0" msgid "Split Qty" msgstr "crwdns85256:0crwdne85256:0" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "crwdns154974:0crwdne154974:0" @@ -51292,7 +51265,12 @@ msgstr "crwdns201487:0crwdne201487:0" msgid "Split commission credit across multiple sales persons." msgstr "crwdns201989:0crwdne201989:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "crwdns205891:0{0}crwdnd205891:0{1}crwdne205891:0" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "crwdns85260:0{0}crwdnd85260:0{1}crwdnd85260:0{2}crwdne85260:0" @@ -51345,7 +51323,7 @@ msgstr "crwdns137406:0crwdne137406:0" msgid "Stale Days" msgstr "crwdns137408:0crwdne137408:0" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "crwdns85270:0crwdne85270:0" @@ -51410,10 +51388,26 @@ msgstr "crwdns112018:0crwdne112018:0" msgid "Standing Name" msgstr "crwdns137414:0crwdne137414:0" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "crwdns205893:0crwdne205893:0" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "crwdns205895:0crwdne205895:0" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "crwdns205897:0{0}crwdne205897:0" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "crwdns85292:0crwdne85292:0" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "crwdns205899:0crwdne205899:0" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "crwdns85318:0crwdne85318:0" @@ -51443,7 +51437,7 @@ msgstr "crwdns85336:0{0}crwdne85336:0" msgid "Start Timer" msgstr "crwdns151920:0crwdne151920:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51472,10 +51466,14 @@ msgstr "crwdns85346:0{0}crwdne85346:0" msgid "Start date should be less than end date for task {0}" msgstr "crwdns85348:0{0}crwdne85348:0" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "crwdns162020:0{1}crwdnd162020:0{0}crwdnd162020:0{2}crwdne162020:0" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "crwdns205901:0{0}crwdnd205901:0{1}crwdne205901:0" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51556,7 +51554,7 @@ msgstr "crwdns137430:0crwdne137430:0" msgid "Status and Reference" msgstr "crwdns195792:0crwdne195792:0" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "crwdns85524:0crwdne85524:0" @@ -51684,8 +51682,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "crwdns152046:0{0}crwdne152046:0" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "crwdns152048:0{0}crwdne152048:0" +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "crwdns205903:0{0}crwdne205903:0" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51766,17 +51764,21 @@ msgstr "crwdns155498:0crwdne155498:0" msgid "Stock Entry Type" msgstr "crwdns85588:0crwdne85588:0" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "crwdns85592:0crwdne85592:0" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "crwdns205905:0{0}crwdne205905:0" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "crwdns205907:0crwdne205907:0" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "crwdns85594:0{0}crwdne85594:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "crwdns137448:0{0}crwdne137448:0" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "crwdns205909:0{0}crwdne205909:0" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -51942,7 +51944,7 @@ msgstr "crwdns85630:0crwdne85630:0" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52025,7 +52027,7 @@ msgstr "crwdns85662:0crwdne85662:0" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52050,15 +52052,15 @@ msgstr "crwdns85664:0crwdne85664:0" msgid "Stock Reservation Entries Cancelled" msgstr "crwdns85668:0crwdne85668:0" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "crwdns85670:0crwdne85670:0" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "crwdns161186:0crwdne161186:0" @@ -52228,7 +52230,7 @@ msgstr "crwdns85696:0crwdne85696:0" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52387,9 +52389,9 @@ msgstr "crwdns152358:0{0}crwdne152358:0" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "crwdns85790:0{0}crwdnd85790:0{1}crwdne85790:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "crwdns85792:0{0}crwdnd85792:0{1}crwdnd85792:0{2}crwdnd85792:0{3}crwdne85792:0" +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "crwdns205911:0{0}crwdnd205911:0{1}crwdnd205911:0{2}crwdnd205911:0{3}crwdne205911:0" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52407,7 +52409,7 @@ msgstr "crwdns137468:0crwdne137468:0" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "crwdns137470:0crwdne137470:0" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "crwdns85800:0crwdne85800:0" @@ -52422,7 +52424,7 @@ msgstr "crwdns112624:0crwdne112624:0" msgid "Stop Reason" msgstr "crwdns85812:0crwdne85812:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "crwdns85824:0crwdne85824:0" @@ -52430,7 +52432,7 @@ msgstr "crwdns85824:0crwdne85824:0" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "crwdns85826:0crwdne85826:0" @@ -52644,7 +52646,7 @@ msgstr "crwdns154199:0crwdne154199:0" msgid "Subcontracting Delivery" msgstr "crwdns160396:0crwdne160396:0" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "crwdns202771:0crwdne202771:0" @@ -52716,7 +52718,7 @@ msgstr "crwdns160408:0crwdne160408:0" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52754,7 +52756,7 @@ msgstr "crwdns85894:0crwdne85894:0" msgid "Subcontracting Order Supplied Item" msgstr "crwdns85896:0crwdne85896:0" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "crwdns85898:0{0}crwdne85898:0" @@ -52828,7 +52830,7 @@ msgstr "crwdns160412:0crwdne160412:0" msgid "Subcontracting Sales Order" msgstr "crwdns160414:0crwdne160414:0" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "crwdns202773:0crwdne202773:0" @@ -52847,7 +52849,7 @@ msgstr "crwdns197270:0crwdne197270:0" msgid "Subdivision" msgstr "crwdns137496:0crwdne137496:0" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "crwdns85940:0crwdne85940:0" @@ -52876,7 +52878,7 @@ msgstr "crwdns85950:0crwdne85950:0" msgid "Submit your Quotation" msgstr "crwdns112042:0crwdne112042:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "crwdns202775:0crwdne202775:0" @@ -53018,7 +53020,7 @@ msgstr "crwdns137522:0crwdne137522:0" msgid "Successful" msgstr "crwdns137524:0crwdne137524:0" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "crwdns86058:0crwdne86058:0" @@ -53196,7 +53198,7 @@ msgstr "crwdns86128:0crwdne86128:0" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53378,7 +53380,7 @@ msgstr "crwdns86258:0crwdne86258:0" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "crwdns86264:0crwdne86264:0" @@ -53526,7 +53528,7 @@ msgstr "crwdns86336:0crwdne86336:0" msgid "Supplier Quotation Item" msgstr "crwdns86338:0crwdne86338:0" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "crwdns86342:0{0}crwdne86342:0" @@ -53711,10 +53713,6 @@ msgstr "crwdns86412:0crwdne86412:0" msgid "Support Tickets" msgstr "crwdns86414:0crwdne86414:0" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "crwdns200828:0crwdne200828:0" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "crwdns155390:0crwdne155390:0" @@ -53800,7 +53798,7 @@ msgstr "crwdns202321:0crwdne202321:0" msgid "TDS Computation Summary" msgstr "crwdns86444:0crwdne86444:0" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "crwdns151582:0crwdne151582:0" @@ -53861,8 +53859,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "crwdns86490:0{0}crwdnd86490:0{1}crwdne86490:0" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "crwdns86492:0{0}crwdne86492:0" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "crwdns205913:0{0}crwdne205913:0" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -53971,11 +53969,11 @@ msgstr "crwdns143542:0crwdne143542:0" msgid "Target Warehouse Reservation Error" msgstr "crwdns152360:0crwdne152360:0" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "crwdns160476:0{1}crwdnd160476:0{2}crwdne160476:0" +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "crwdns205915:0{0}crwdnd205915:0{1}crwdne205915:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "crwdns137638:0crwdne137638:0" @@ -54450,7 +54448,7 @@ msgstr "crwdns164284:0crwdne164284:0" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "crwdns86794:0crwdne86794:0" @@ -54662,7 +54660,7 @@ msgstr "crwdns143550:0crwdne143550:0" msgid "Template Item" msgstr "crwdns86894:0crwdne86894:0" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "crwdns86896:0crwdne86896:0" @@ -54969,23 +54967,27 @@ msgstr "crwdns112634:0crwdne112634:0" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "crwdns161194:0crwdne161194:0" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "crwdns87054:0crwdne87054:0" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "crwdns87056:0crwdne87056:0" +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "crwdns205917:0crwdne205917:0" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "crwdns137726:0crwdne137726:0" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "crwdns205919:0{0}crwdnd205919:0{1}crwdnd205919:0{2}crwdne205919:0" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "crwdns160242:0{0}crwdnd160242:0{1}crwdne160242:0" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "crwdns205921:0{0}crwdnd205921:0{1}crwdnd205921:0{2}crwdnd205921:0{3}crwdnd205921:0{4}crwdnd205921:0{0}crwdne205921:0" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "crwdns87068:0{0}crwdnd87068:0{1}crwdnd87068:0{2}crwdne87068:0" @@ -55010,6 +55012,10 @@ msgstr "crwdns151142:0crwdne151142:0" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "crwdns87074:0crwdne87074:0" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "crwdns205923:0{0}crwdne205923:0" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "crwdns87078:0crwdne87078:0" @@ -55027,9 +55033,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "crwdns87084:0crwdne87084:0" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "crwdns87086:0crwdne87086:0" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "crwdns205925:0crwdne205925:0" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "crwdns205927:0crwdne205927:0" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55039,11 +55048,15 @@ msgstr "crwdns152328:0{0}crwdne152328:0" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "crwdns142842:0#{0}crwdnd142842:0{1}crwdnd142842:0{2}crwdne142842:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "crwdns152364:0{0}crwdnd152364:0{1}crwdnd152364:0{2}crwdne152364:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "crwdns205929:0{0}crwdnd205929:0{1}crwdnd205929:0{2}crwdne205929:0" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "crwdns127518:0{0}crwdnd127518:0{0}crwdne127518:0" @@ -55091,15 +55104,15 @@ msgstr "crwdns200216:0{0}crwdne200216:0" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "crwdns201889:0{0}crwdne201889:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "crwdns162022:0{0}crwdnd162022:0{1}crwdnd162022:0{2}crwdnd162022:0{3}crwdne162022:0" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "crwdns87100:0crwdne87100:0" +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "crwdns205931:0{0}crwdnd205931:0{1}crwdnd205931:0{2}crwdne205931:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "crwdns155674:0crwdne155674:0" @@ -55148,6 +55161,10 @@ msgstr "crwdns87112:0crwdne87112:0" msgid "The field {0} in row {1} is not set" msgstr "crwdns148838:0{0}crwdnd148838:0{1}crwdne148838:0" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "crwdns205933:0{0}crwdne205933:0" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "crwdns87114:0crwdne87114:0" @@ -55169,9 +55186,9 @@ msgstr "crwdns195904:0crwdne195904:0" msgid "The folio numbers are not matching" msgstr "crwdns87116:0crwdne87116:0" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "crwdns87118:0crwdne87118:0" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "crwdns205935:0crwdne205935:0" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55198,8 +55215,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "crwdns87124:0{0}crwdne87124:0" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "crwdns149166:0crwdne149166:0" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "crwdns205937:0{0}crwdne205937:0" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55210,7 +55227,7 @@ msgstr "crwdns197272:0{0}crwdne197272:0" msgid "The following rows are duplicates:" msgstr "crwdns163876:0crwdne163876:0" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "crwdns87126:0{0}crwdnd87126:0{1}crwdne87126:0" @@ -55246,8 +55263,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "crwdns154276:0{items}crwdnd154276:0{type_of}crwdnd154276:0{type_of}crwdne154276:0" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "crwdns137734:0{0}crwdnd137734:0{1}crwdne137734:0" +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "crwdns205939:0{0}crwdnd205939:0{1}crwdne205939:0" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55284,12 +55301,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "crwdns201529:0crwdne201529:0" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "crwdns87140:0{0}crwdne87140:0" +msgid "The operation {0} cannot be added multiple times" +msgstr "crwdns205941:0{0}crwdne205941:0" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "crwdns87142:0{0}crwdne87142:0" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "crwdns205943:0{0}crwdne205943:0" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55337,6 +55354,10 @@ msgstr "crwdns137744:0crwdne137744:0" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "crwdns137746:0crwdne137746:0" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "crwdns205945:0{0}crwdne205945:0" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55346,7 +55367,7 @@ msgstr "crwdns200830:0crwdne200830:0" msgid "The reference number of the transaction" msgstr "crwdns201531:0crwdne201531:0" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "crwdns87154:0crwdne87154:0" @@ -55363,8 +55384,8 @@ msgid "The selected BOMs are not for the same item" msgstr "crwdns87160:0crwdne87160:0" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "crwdns87162:0crwdne87162:0" +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "crwdns205947:0{0}crwdnd205947:0{1}crwdne205947:0" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55380,8 +55401,8 @@ msgstr "crwdns87168:0crwdne87168:0" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "crwdns152366:0{0}crwdnd152366:0{1}crwdnd152366:0{2}crwdne152366:0" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "crwdns205949:0{0}crwdnd205949:0{1}crwdnd205949:0{2}crwdne205949:0" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55399,11 +55420,11 @@ msgstr "crwdns87174:0crwdne87174:0" msgid "The shares don't exist with the {0}" msgstr "crwdns87176:0{0}crwdne87176:0" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "crwdns143554:0{0}crwdnd143554:0{1}crwdnd143554:0{2}crwdnd143554:0{3}crwdnd143554:0{4}crwdnd143554:0{5}crwdne143554:0" +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "crwdns205951:0{0}crwdnd205951:0{1}crwdnd205951:0{2}crwdnd205951:0{3}crwdnd205951:0{4}crwdnd205951:0{5}crwdne205951:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "crwdns87178:0{0}crwdnd87178:0{1}crwdne87178:0" @@ -55425,17 +55446,17 @@ msgstr "crwdns201535:0crwdne201535:0" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "crwdns155396:0crwdne155396:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "crwdns87186:0crwdne87186:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "crwdns87188:0crwdne87188:0" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "crwdns87190:0{0}crwdnd87190:0{1}crwdnd87190:0{2}crwdnd87190:0{3}crwdne87190:0" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "crwdns205953:0{0}crwdnd205953:0{1}crwdnd205953:0{2}crwdnd205953:0{3}crwdne205953:0" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55473,7 +55494,7 @@ msgstr "crwdns137748:0crwdne137748:0" msgid "The value of {0} differs between Items {1} and {2}" msgstr "crwdns87196:0{0}crwdnd87196:0{1}crwdnd87196:0{2}crwdne87196:0" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "crwdns87198:0{0}crwdnd87198:0{1}crwdne87198:0" @@ -55497,7 +55518,7 @@ msgstr "crwdns201537:0crwdne201537:0" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "crwdns87206:0{0}crwdnd87206:0{1}crwdnd87206:0{2}crwdnd87206:0{3}crwdne87206:0" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "crwdns154984:0{0}crwdne154984:0" @@ -55505,7 +55526,7 @@ msgstr "crwdns154984:0{0}crwdne154984:0" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "crwdns163878:0{0}crwdnd163878:0{1}crwdne163878:0" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "crwdns104670:0{0}crwdnd104670:0{1}crwdne104670:0" @@ -55513,6 +55534,10 @@ msgstr "crwdns104670:0{0}crwdnd104670:0{1}crwdne104670:0" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "crwdns156074:0{0}crwdnd156074:0{1}crwdnd156074:0{0}crwdnd156074:0{2}crwdnd156074:0{3}crwdnd156074:0{4}crwdne156074:0" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "crwdns205955:0{0}crwdnd205955:0{1}crwdne205955:0" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "crwdns87210:0{0}crwdnd87210:0{1}crwdnd87210:0{2}crwdne87210:0" @@ -55521,7 +55546,7 @@ msgstr "crwdns87210:0{0}crwdnd87210:0{1}crwdnd87210:0{2}crwdne87210:0" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "crwdns157496:0crwdne157496:0" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "crwdns87212:0crwdne87212:0" @@ -55533,7 +55558,7 @@ msgstr "crwdns87214:0crwdne87214:0" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "crwdns112056:0{0}crwdnd112056:0{1}crwdnd112056:0{2}crwdne112056:0" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "crwdns87216:0crwdne87216:0" @@ -55550,6 +55575,10 @@ msgstr "crwdns112058:0crwdne112058:0" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "crwdns201541:0crwdne201541:0" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "crwdns205957:0crwdne205957:0" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "crwdns87218:0crwdne87218:0" @@ -55566,10 +55595,6 @@ msgstr "crwdns164294:0crwdne164294:0" msgid "There are {0} unreconciled transactions before {1}." msgstr "crwdns201545:0{0}crwdnd201545:0{1}crwdne201545:0" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "crwdns87226:0crwdne87226:0" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "crwdns112060:0crwdne112060:0" @@ -55598,21 +55623,21 @@ msgstr "crwdns87236:0{0}crwdnd87236:0{1}crwdne87236:0" msgid "There is one unreconciled transaction before {0}." msgstr "crwdns201547:0{0}crwdne201547:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "crwdns87240:0crwdne87240:0" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "crwdns205959:0crwdne205959:0" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "crwdns87242:0crwdne87242:0" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "crwdns87246:0crwdne87246:0" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "crwdns87248:0crwdne87248:0" +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "crwdns205961:0{0}crwdne205961:0" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55662,15 +55687,19 @@ msgstr "crwdns87262:0crwdne87262:0" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "crwdns202329:0crwdne202329:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "crwdns202331:0{0}crwdne202331:0" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "crwdns205963:0{0}crwdne205963:0" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "crwdns160416:0crwdne160416:0" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "crwdns160418:0crwdne160418:0" @@ -55692,7 +55721,7 @@ msgstr "crwdns87272:0crwdne87272:0" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "crwdns200584:0crwdne200584:0" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "crwdns154986:0crwdne154986:0" @@ -55710,7 +55739,7 @@ msgstr "crwdns201555:0crwdne201555:0" msgid "This covers all scorecards tied to this Setup" msgstr "crwdns87274:0crwdne87274:0" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "crwdns87276:0{0}crwdnd87276:0{1}crwdnd87276:0{4}crwdnd87276:0{3}crwdnd87276:0{2}crwdne87276:0" @@ -55852,7 +55881,7 @@ msgstr "crwdns201569:0crwdne201569:0" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "crwdns201571:0crwdne201571:0" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "crwdns87326:0{0}crwdne87326:0" @@ -55916,7 +55945,7 @@ msgstr "crwdns87340:0{0}crwdnd87340:0{1}crwdne87340:0" msgid "This schedule was created when Asset {0} was scrapped." msgstr "crwdns87342:0{0}crwdne87342:0" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "crwdns154990:0{0}crwdnd154990:0{1}crwdnd154990:0{2}crwdne154990:0" @@ -55943,10 +55972,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "crwdns137762:0crwdne137762:0" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "crwdns202339:0crwdne202339:0" @@ -56004,8 +56033,8 @@ msgid "This will restrict user access to other employee records" msgstr "crwdns137766:0crwdne137766:0" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "crwdns87364:0crwdne87364:0" +msgid "This {0} will be treated as material transfer." +msgstr "crwdns205965:0{0}crwdne205965:0" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56133,6 +56162,12 @@ msgstr "crwdns87444:0crwdne87444:0" msgid "Timeline" msgstr "crwdns197274:0crwdne197274:0" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "crwdns205967:0crwdne205967:0" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56419,8 +56454,8 @@ msgid "To Time" msgstr "crwdns87670:0crwdne87670:0" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "crwdns151456:0crwdne151456:0" +msgid "To Time cannot be before From Time" +msgstr "crwdns205969:0crwdne205969:0" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56450,15 +56485,15 @@ msgstr "crwdns87702:0crwdne87702:0" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "crwdns87704:0crwdne87704:0" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "crwdns87706:0crwdne87706:0" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "crwdns201995:0crwdne201995:0" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "crwdns87708:0crwdne87708:0" @@ -56475,8 +56510,8 @@ msgid "To be Delivered to Customer" msgstr "crwdns137836:0crwdne137836:0" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "crwdns87714:0crwdne87714:0" +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "crwdns205971:0{0}crwdnd205971:0{1}crwdne205971:0" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56487,8 +56522,8 @@ msgid "To create a Payment Request reference document is required" msgstr "crwdns87716:0crwdne87716:0" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "crwdns87720:0crwdne87720:0" +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "crwdns205973:0crwdne205973:0" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56500,8 +56535,8 @@ msgstr "crwdns87722:0crwdne87722:0" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "crwdns198372:0crwdne198372:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "crwdns87724:0{0}crwdnd87724:0{1}crwdne87724:0" @@ -56521,7 +56556,7 @@ msgstr "crwdns87728:0{0}crwdnd87728:0{1}crwdne87728:0" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "crwdns201587:0crwdne201587:0" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "crwdns87730:0{0}crwdne87730:0" @@ -56538,10 +56573,12 @@ msgstr "crwdns87734:0{0}crwdnd87734:0{1}crwdnd87734:0{2}crwdne87734:0" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "crwdns87736:0crwdne87736:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "crwdns87738:0crwdne87738:0" @@ -56620,8 +56657,8 @@ msgstr "crwdns112648:0crwdne112648:0" msgid "Total (Company Currency)" msgstr "crwdns137840:0crwdne137840:0" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "crwdns87806:0crwdne87806:0" @@ -56663,6 +56700,22 @@ msgstr "crwdns137842:0crwdne137842:0" msgid "Total Advance" msgstr "crwdns137844:0crwdne137844:0" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "crwdns205975:0crwdne205975:0" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "crwdns205977:0{0}crwdne205977:0" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "crwdns205979:0crwdne205979:0" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "crwdns205981:0{0}crwdne205981:0" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56710,11 +56763,11 @@ msgstr "crwdns160116:0crwdne160116:0" msgid "Total Amount in Words" msgstr "crwdns137854:0crwdne137854:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "crwdns87846:0crwdne87846:0" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "crwdns87848:0crwdne87848:0" @@ -56896,7 +56949,7 @@ msgstr "crwdns87918:0crwdne87918:0" msgid "Total Demand (Past Data)" msgstr "crwdns87920:0crwdne87920:0" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "crwdns87922:0crwdne87922:0" @@ -56905,11 +56958,11 @@ msgstr "crwdns87922:0crwdne87922:0" msgid "Total Estimated Distance" msgstr "crwdns137890:0crwdne137890:0" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "crwdns87926:0crwdne87926:0" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "crwdns87928:0crwdne87928:0" @@ -56947,11 +57000,11 @@ msgstr "crwdns137896:0crwdne137896:0" msgid "Total Holidays" msgstr "crwdns137898:0crwdne137898:0" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "crwdns87942:0crwdne87942:0" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "crwdns87944:0crwdne87944:0" @@ -56994,7 +57047,7 @@ msgstr "crwdns157230:0crwdne157230:0" msgid "Total Ledgers" msgstr "crwdns199608:0crwdne199608:0" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "crwdns87954:0crwdne87954:0" @@ -57309,7 +57362,7 @@ msgstr "crwdns137938:0crwdne137938:0" msgid "Total Taxes and Charges (Company Currency)" msgstr "crwdns137940:0crwdne137940:0" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "crwdns88118:0crwdne88118:0" @@ -57318,7 +57371,11 @@ msgstr "crwdns88118:0crwdne88118:0" msgid "Total Time in Mins" msgstr "crwdns137942:0crwdne137942:0" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "crwdns205983:0crwdne205983:0" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "crwdns88122:0{0}crwdne88122:0" @@ -57397,7 +57454,7 @@ msgstr "crwdns159948:0crwdne159948:0" msgid "Total allocated percentage for sales team should be 100" msgstr "crwdns88156:0crwdne88156:0" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "crwdns88158:0crwdne88158:0" @@ -57415,8 +57472,8 @@ msgstr "crwdns112086:0{0}crwdne112086:0" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "crwdns88160:0crwdne88160:0" +msgid "Total payments amount can't be greater than {0}" +msgstr "crwdns205985:0{0}crwdne205985:0" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57433,9 +57490,9 @@ msgstr "crwdns159950:0crwdne159950:0" msgid "Total {0} ({1})" msgstr "crwdns88164:0{0}crwdnd88164:0{1}crwdne88164:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "crwdns88166:0{0}crwdne88166:0" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "crwdns205987:0{0}crwdne205987:0" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57523,27 +57580,11 @@ msgstr "crwdns137960:0crwdne137960:0" msgid "Tracking URL" msgstr "crwdns137962:0crwdne137962:0" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "crwdns88208:0crwdne88208:0" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "crwdns137964:0crwdne137964:0" @@ -57596,11 +57637,11 @@ msgstr "crwdns88238:0crwdne88238:0" msgid "Transaction Deletion Record To Delete" msgstr "crwdns195072:0crwdne195072:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "crwdns195074:0{0}crwdnd195074:0{1}crwdne195074:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "crwdns195076:0{0}crwdnd195076:0{1}crwdne195076:0" @@ -57990,6 +58031,10 @@ msgstr "crwdns88346:0crwdne88346:0" msgid "Trial Balance for Party" msgstr "crwdns88348:0crwdne88348:0" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "crwdns205989:0{0}crwdne205989:0" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58174,7 +58219,7 @@ msgstr "crwdns88430:0crwdne88430:0" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58196,7 +58241,7 @@ msgstr "crwdns88430:0crwdne88430:0" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58226,7 +58271,7 @@ msgstr "crwdns88430:0crwdne88430:0" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58290,7 +58335,7 @@ msgstr "crwdns200838:0crwdne200838:0" msgid "UOM Conversion Factor" msgstr "crwdns88514:0crwdne88514:0" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "crwdns88540:0{0}crwdnd88540:0{1}crwdnd88540:0{2}crwdne88540:0" @@ -58364,7 +58409,7 @@ msgstr "crwdns88562:0crwdne88562:0" msgid "UnReconcile Allocations" msgstr "crwdns154433:0crwdne154433:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "crwdns195078:0crwdne195078:0" @@ -58377,10 +58422,6 @@ msgstr "crwdns88566:0{0}crwdnd88566:0{1}crwdnd88566:0{2}crwdne88566:0" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "crwdns159272:0{0}crwdnd159272:0{1}crwdnd159272:0{2}crwdne159272:0" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "crwdns88568:0{0}crwdne88568:0" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "crwdns112094:0{0}crwdnd112094:0{1}crwdnd112094:0{2}crwdne112094:0" @@ -58405,7 +58446,7 @@ msgstr "crwdns201629:0crwdne201629:0" msgid "Unallocated Amount" msgstr "crwdns88574:0crwdne88574:0" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "crwdns88580:0crwdne88580:0" @@ -58417,8 +58458,10 @@ msgstr "crwdns157502:0crwdne157502:0" msgid "Unblock Invoice" msgstr "crwdns88582:0crwdne88582:0" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58468,7 +58511,7 @@ msgstr "crwdns201631:0crwdne201631:0" msgid "Undo {}?" msgstr "crwdns201633:0crwdne201633:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "crwdns195080:0crwdne195080:0" @@ -58491,7 +58534,7 @@ msgstr "crwdns200586:0crwdne200586:0" msgid "Unit Price" msgstr "crwdns160688:0crwdne160688:0" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "crwdns88602:0crwdne88602:0" @@ -58694,7 +58737,7 @@ msgstr "crwdns138070:0crwdne138070:0" msgid "Unsecured Loans" msgstr "crwdns88680:0crwdne88680:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "crwdns148884:0crwdne148884:0" @@ -58707,7 +58750,7 @@ msgstr "crwdns138072:0crwdne138072:0" msgid "Unsubscribe from this Email Digest" msgstr "crwdns88684:0crwdne88684:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "crwdns200840:0crwdne200840:0" @@ -58851,7 +58894,7 @@ msgstr "crwdns88750:0crwdne88750:0" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58915,7 +58958,7 @@ msgstr "crwdns202353:0crwdne202353:0" msgid "Update latest price in all BOMs" msgstr "crwdns138108:0crwdne138108:0" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "crwdns88782:0{0}crwdne88782:0" @@ -59143,7 +59186,7 @@ msgstr "crwdns201649:0crwdne201649:0" msgid "Use Transaction Date Exchange Rate" msgstr "crwdns138138:0crwdne138138:0" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "crwdns88824:0crwdne88824:0" @@ -59232,6 +59275,10 @@ msgstr "crwdns138150:0crwdne138150:0" msgid "User has not applied rule on the invoice {0}" msgstr "crwdns88868:0{0}crwdne88868:0" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "crwdns205991:0crwdne205991:0" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "crwdns88870:0{0}crwdne88870:0" @@ -59244,6 +59291,10 @@ msgstr "crwdns88872:0{0}crwdnd88872:0{1}crwdne88872:0" msgid "User {0} is already assigned to Employee {1}" msgstr "crwdns88874:0{0}crwdnd88874:0{1}crwdne88874:0" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "crwdns205993:0{0}crwdne205993:0" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "crwdns88878:0{0}crwdne88878:0" @@ -59252,10 +59303,6 @@ msgstr "crwdns88878:0{0}crwdne88878:0" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "crwdns88880:0{0}crwdne88880:0" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "crwdns88882:0crwdne88882:0" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59548,15 +59595,15 @@ msgstr "crwdns88992:0crwdne88992:0" msgid "Valuation Rate (In / Out)" msgstr "crwdns89020:0crwdne89020:0" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "crwdns89022:0crwdne89022:0" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "crwdns204407:0crwdne204407:0" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "crwdns89024:0{0}crwdnd89024:0{1}crwdnd89024:0{2}crwdne89024:0" @@ -59564,7 +59611,7 @@ msgstr "crwdns89024:0{0}crwdnd89024:0{1}crwdnd89024:0{2}crwdne89024:0" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "crwdns89026:0crwdne89026:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "crwdns89028:0{0}crwdnd89028:0{1}crwdne89028:0" @@ -59574,7 +59621,7 @@ msgstr "crwdns89028:0{0}crwdnd89028:0{1}crwdne89028:0" msgid "Valuation and Total" msgstr "crwdns138192:0crwdne138192:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "crwdns89032:0crwdne89032:0" @@ -59587,14 +59634,14 @@ msgstr "crwdns89032:0crwdne89032:0" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "crwdns142970:0crwdne142970:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "crwdns89034:0crwdne89034:0" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "crwdns89036:0crwdne89036:0" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "crwdns205995:0crwdne205995:0" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59644,12 +59691,12 @@ msgstr "crwdns89066:0crwdne89066:0" msgid "Value Type" msgstr "crwdns161206:0crwdne161206:0" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "crwdns151944:0crwdne151944:0" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "crwdns89068:0{0}crwdnd89068:0{1}crwdnd89068:0{2}crwdnd89068:0{3}crwdnd89068:0{4}crwdne89068:0" @@ -59658,19 +59705,19 @@ msgstr "crwdns89068:0{0}crwdnd89068:0{1}crwdnd89068:0{2}crwdnd89068:0{3}crwdnd89 msgid "Value of Goods" msgstr "crwdns138198:0crwdne138198:0" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "crwdns151946:0crwdne151946:0" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "crwdns151948:0crwdne151948:0" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "crwdns151950:0crwdne151950:0" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "crwdns151952:0crwdne151952:0" @@ -60146,7 +60193,7 @@ msgstr "crwdns201669:0crwdne201669:0" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60174,7 +60221,7 @@ msgstr "crwdns201669:0crwdne201669:0" msgid "Voucher No" msgstr "crwdns89206:0crwdne89206:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "crwdns127524:0crwdne127524:0" @@ -60186,7 +60233,7 @@ msgstr "crwdns89226:0crwdne89226:0" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "crwdns89230:0crwdne89230:0" @@ -60218,7 +60265,7 @@ msgstr "crwdns89230:0crwdne89230:0" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60425,7 +60472,7 @@ msgstr "crwdns89400:0crwdne89400:0" msgid "Warehouse is required to get producible FG Items" msgstr "crwdns199610:0crwdne199610:0" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "crwdns89402:0{0}crwdne89402:0" @@ -60443,16 +60490,16 @@ msgstr "crwdns89408:0crwdne89408:0" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "crwdns89412:0{0}crwdnd89412:0{1}crwdne89412:0" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "crwdns89414:0{0}crwdnd89414:0{1}crwdne89414:0" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "crwdns89416:0{0}crwdnd89416:0{1}crwdne89416:0" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "crwdns162028:0{0}crwdne162028:0" @@ -60573,7 +60620,7 @@ msgstr "crwdns201799:0crwdne201799:0" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "crwdns89460:0{0}crwdne89460:0" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "crwdns143566:0crwdne143566:0" @@ -60593,7 +60640,7 @@ msgstr "crwdns89464:0{0}crwdnd89464:0{1}crwdnd89464:0{2}crwdne89464:0" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "crwdns89466:0crwdne89466:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "crwdns160422:0{0}crwdne160422:0" @@ -60747,10 +60794,6 @@ msgstr "crwdns89524:0crwdne89524:0" msgid "Website Specifications" msgstr "crwdns138286:0crwdne138286:0" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "crwdns200846:0crwdne200846:0" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60896,7 +60939,7 @@ msgstr "crwdns200596:0crwdne200596:0" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "crwdns202379:0crwdne202379:0" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "crwdns195094:0{0}crwdne195094:0" @@ -61072,17 +61115,17 @@ msgstr "crwdns89678:0crwdne89678:0" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61121,7 +61164,7 @@ msgstr "crwdns89708:0crwdne89708:0" msgid "Work Order Item" msgstr "crwdns89710:0crwdne89710:0" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "crwdns200054:0crwdne200054:0" @@ -61162,20 +61205,20 @@ msgstr "crwdns89720:0crwdne89720:0" msgid "Work Order Summary Report" msgstr "crwdns197294:0crwdne197294:0" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "crwdns89722:0{0}crwdne89722:0" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "crwdns205997:0{0}crwdne205997:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "crwdns89724:0crwdne89724:0" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "crwdns205999:0crwdne205999:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "crwdns89726:0{0}crwdne89726:0" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "crwdns201891:0crwdne201891:0" @@ -61196,7 +61239,7 @@ msgid "Work Order {0} must be submitted" msgstr "crwdns201893:0{0}crwdne201893:0" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "crwdns89732:0crwdne89732:0" @@ -61221,7 +61264,7 @@ msgstr "crwdns138332:0crwdne138332:0" msgid "Work-in-Progress Warehouse" msgstr "crwdns138334:0crwdne138334:0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "crwdns89744:0crwdne89744:0" @@ -61274,7 +61317,7 @@ msgstr "crwdns89760:0crwdne89760:0" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61506,14 +61549,6 @@ msgstr "crwdns138372:0crwdne138372:0" msgid "Year Start Date" msgstr "crwdns138374:0crwdne138374:0" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "crwdns200850:0crwdne200850:0" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "crwdns200852:0crwdne200852:0" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61528,8 +61563,8 @@ msgid "You are importing data for the code list:" msgstr "crwdns151712:0crwdne151712:0" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "crwdns89926:0crwdne89926:0" +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "crwdns206001:0{0}crwdne206001:0" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61548,8 +61583,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "crwdns89934:0{0}crwdnd89934:0{1}crwdne89934:0" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "crwdns143568:0crwdne143568:0" +msgid "You can add the original invoice {0} manually to proceed." +msgstr "crwdns206003:0{0}crwdne206003:0" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61559,19 +61594,15 @@ msgstr "crwdns201693:0crwdne201693:0" msgid "You can also copy-paste this link in your browser" msgstr "crwdns89938:0crwdne89938:0" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "crwdns89940:0crwdne89940:0" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" -msgstr "crwdns200854:0crwdne200854:0" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" +msgstr "crwdns206005:0{0}crwdne206005:0" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "crwdns89942:0crwdne89942:0" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "crwdns195908:0crwdne195908:0" @@ -61593,8 +61624,8 @@ msgid "You can only select one mode of payment as default" msgstr "crwdns89952:0crwdne89952:0" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "crwdns89954:0{0}crwdne89954:0" +msgid "You can redeem up to {0}." +msgstr "crwdns206007:0{0}crwdne206007:0" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61612,14 +61643,6 @@ msgstr "crwdns201697:0crwdne201697:0" msgid "You can use {0} to reconcile against {1} later." msgstr "crwdns195096:0{0}crwdnd195096:0{1}crwdne195096:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "crwdns89960:0crwdne89960:0" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "crwdns151954:0{0}crwdnd151954:0{1}crwdnd151954:0{2}crwdnd151954:0{3}crwdne151954:0" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "crwdns155010:0crwdne155010:0" @@ -61628,17 +61651,17 @@ msgstr "crwdns155010:0crwdne155010:0" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "crwdns89964:0crwdne89964:0" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "crwdns89966:0{0}crwdnd89966:0{1}crwdne89966:0" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "crwdns89968:0{0}crwdne89968:0" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "crwdns206009:0{0}crwdne206009:0" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "crwdns89970:0crwdne89970:0" +msgid "You cannot create/amend any accounting entries until this date." +msgstr "crwdns206011:0crwdne206011:0" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61649,32 +61672,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "crwdns89974:0crwdne89974:0" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "crwdns89976:0crwdne89976:0" +msgid "You cannot edit the root node." +msgstr "crwdns206013:0crwdne206013:0" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "crwdns155682:0{0}crwdnd155682:0{1}crwdne155682:0" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "crwdns206015:0crwdne206015:0" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "crwdns164336:0{0}crwdne164336:0" +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "crwdns206017:0{0}crwdne206017:0" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "crwdns206019:0{0}crwdnd206019:0{1}crwdnd206019:0{2}crwdnd206019:0{3}crwdne206019:0" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "crwdns89978:0{0}crwdne89978:0" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "crwdns89980:0crwdne89980:0" +msgid "You cannot repost item valuation before {0}" +msgstr "crwdns206021:0{0}crwdne206021:0" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "crwdns89982:0crwdne89982:0" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "crwdns89984:0crwdne89984:0" +msgid "You cannot submit an empty order." +msgstr "crwdns206023:0crwdne206023:0" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61688,6 +61719,10 @@ msgstr "crwdns202777:0crwdne202777:0" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "crwdns151146:0{0}crwdnd151146:0{1}crwdnd151146:0{2}crwdne151146:0" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "crwdns206025:0{0}crwdnd206025:0{1}crwdne206025:0" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "crwdns201699:0crwdne201699:0" @@ -61698,8 +61733,8 @@ msgid "You do not have permission to import bank transactions" msgstr "crwdns201701:0crwdne201701:0" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "crwdns89988:0crwdne89988:0" +msgid "You do not have permissions to {0} items in a {1}." +msgstr "crwdns206027:0{0}crwdnd206027:0{1}crwdne206027:0" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61725,11 +61760,11 @@ msgstr "crwdns201801:0{0}crwdne201801:0" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "crwdns200226:0crwdne200226:0" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "crwdns89994:0crwdne89994:0" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "crwdns206029:0{0}crwdnd206029:0{1}crwdne206029:0" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "crwdns89996:0{0}crwdnd89996:0{1}crwdne89996:0" @@ -61746,8 +61781,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "crwdns159966:0{0}crwdnd159966:0{1}crwdnd159966:0{2}crwdne159966:0" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "crwdns90000:0crwdne90000:0" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "crwdns206031:0{0}crwdne206031:0" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61761,19 +61796,19 @@ msgstr "crwdns201705:0crwdne201705:0" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "crwdns90002:0crwdne90002:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "crwdns155164:0crwdne155164:0" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "crwdns90008:0crwdne90008:0" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "crwdns90010:0crwdne90010:0" +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "crwdns206033:0{0}crwdne206033:0" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "crwdns149108:0{1}crwdnd149108:0{2}crwdnd149108:0{0}crwdne149108:0" @@ -61825,6 +61860,10 @@ msgstr "crwdns90034:0crwdne90034:0" msgid "Zero Balance" msgstr "crwdns138390:0crwdne138390:0" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "crwdns206035:0{0}crwdne206035:0" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "crwdns90038:0crwdne90038:0" @@ -61855,7 +61894,7 @@ msgstr "crwdns90044:0crwdne90044:0" msgid "`Allow Negative rates for Items`" msgstr "crwdns90046:0crwdne90046:0" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "crwdns112160:0crwdne112160:0" @@ -61875,7 +61914,7 @@ msgstr "crwdns151718:0crwdne151718:0" msgid "as a percentage of finished item quantity" msgstr "crwdns90052:0crwdne90052:0" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "crwdns195910:0{0}crwdne195910:0" @@ -61891,10 +61930,6 @@ msgstr "crwdns90056:0crwdne90056:0" msgid "by {}" msgstr "crwdns151720:0crwdne151720:0" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "crwdns112162:0crwdne112162:0" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61949,9 +61984,9 @@ msgstr "crwdns138402:0crwdne138402:0" msgid "fieldname" msgstr "crwdns112166:0crwdne112166:0" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." -msgstr "crwdns200856:0crwdne200856:0" +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" +msgstr "crwdns206037:0{0}crwdne206037:0" #. Option for the 'Service Provider' (Select) field in DocType 'Currency #. Exchange Settings' @@ -62030,14 +62065,10 @@ msgstr "crwdns90122:0crwdne90122:0" msgid "paid to" msgstr "crwdns127528:0crwdne127528:0" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "crwdns90124:0{0}crwdnd90124:0{1}crwdne90124:0" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "crwdns90126:0crwdne90126:0" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62051,7 +62082,7 @@ msgstr "crwdns90126:0crwdne90126:0" msgid "per hour" msgstr "crwdns138414:0crwdne138414:0" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "crwdns90134:0crwdne90134:0" @@ -62127,8 +62158,8 @@ msgstr "crwdns155014:0crwdne155014:0" msgid "subscription is already cancelled." msgstr "crwdns90172:0crwdne90172:0" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "crwdns90174:0crwdne90174:0" @@ -62191,10 +62222,6 @@ msgstr "crwdns155016:0crwdne155016:0" msgid "via BOM Update Tool" msgstr "crwdns90190:0crwdne90190:0" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "crwdns90194:0crwdne90194:0" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "crwdns90198:0{0}crwdnd90198:0{1}crwdne90198:0" @@ -62207,7 +62234,7 @@ msgstr "crwdns90200:0{0}crwdnd90200:0{1}crwdnd90200:0{2}crwdne90200:0" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "crwdns90202:0{0}crwdnd90202:0{1}crwdnd90202:0{2}crwdnd90202:0{3}crwdne90202:0" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "crwdns90206:0{0}crwdnd90206:0{1}crwdnd90206:0{2}crwdne90206:0" @@ -62227,7 +62254,7 @@ msgstr "crwdns160692:0{0}crwdnd160692:0{1}crwdnd160692:0{2}crwdnd160692:0{3}crwd msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "crwdns160694:0{0}crwdnd160694:0{1}crwdnd160694:0{2}crwdnd160694:0{3}crwdnd160694:0{4}crwdnd160694:0{5}crwdne160694:0" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "crwdns90212:0{0}crwdnd90212:0{1}crwdne90212:0" @@ -62235,11 +62262,6 @@ msgstr "crwdns90212:0{0}crwdnd90212:0{1}crwdne90212:0" msgid "{0} Digest" msgstr "crwdns90214:0{0}crwdne90214:0" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "crwdns200858:0{0}crwdne200858:0" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "crwdns90216:0{0}crwdnd90216:0{1}crwdnd90216:0{2}crwdnd90216:0{3}crwdne90216:0" @@ -62321,10 +62343,18 @@ msgstr "crwdns199616:0{0}crwdnd199616:0{1}crwdnd199616:0{2}crwdne199616:0" msgid "{0} can not be negative" msgstr "crwdns90246:0{0}crwdne90246:0" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "crwdns206039:0{0}crwdnd206039:0{1}crwdnd206039:0{2}crwdne206039:0" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "crwdns155402:0{0}crwdne155402:0" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "crwdns206041:0{0}crwdne206041:0" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "crwdns90248:0{0}crwdnd90248:0{1}crwdne90248:0" @@ -62340,7 +62370,7 @@ msgstr "crwdns148886:0{0}crwdne148886:0" msgid "{0} created" msgstr "crwdns90250:0{0}crwdne90250:0" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "crwdns162030:0{0}crwdne162030:0" @@ -62382,7 +62412,7 @@ msgstr "crwdns90264:0{0}crwdnd90264:0{1}crwdne90264:0" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "crwdns90266:0{0}crwdnd90266:0#{1}crwdne90266:0" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "crwdns162034:0{0}crwdne162034:0" @@ -62390,6 +62420,10 @@ msgstr "crwdns162034:0{0}crwdne162034:0" msgid "{0} has been submitted successfully" msgstr "crwdns90268:0{0}crwdne90268:0" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "crwdns206043:0{0}crwdne206043:0" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "crwdns112174:0{0}crwdne112174:0" @@ -62398,7 +62432,11 @@ msgstr "crwdns112174:0{0}crwdne112174:0" msgid "{0} in row {1}" msgstr "crwdns90270:0{0}crwdnd90270:0{1}crwdne90270:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "crwdns206045:0{0}crwdne206045:0" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "crwdns195098:0{0}crwdne195098:0" @@ -62412,7 +62450,7 @@ msgstr "crwdns90272:0{0}crwdnd90272:0{0}crwdne90272:0" msgid "{0} is added multiple times on rows: {1}" msgstr "crwdns138434:0{0}crwdnd138434:0{1}crwdne138434:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "crwdns112176:0{0}crwdnd112176:0{1}crwdne112176:0" @@ -62420,7 +62458,7 @@ msgstr "crwdns112176:0{0}crwdnd112176:0{1}crwdne112176:0" msgid "{0} is blocked so this transaction cannot proceed" msgstr "crwdns90274:0{0}crwdne90274:0" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "crwdns162036:0{0}crwdne162036:0" @@ -62433,11 +62471,11 @@ msgstr "crwdns90278:0{0}crwdnd90278:0{1}crwdne90278:0" msgid "{0} is mandatory for account {1}" msgstr "crwdns90280:0{0}crwdnd90280:0{1}crwdne90280:0" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "crwdns90282:0{0}crwdnd90282:0{1}crwdnd90282:0{2}crwdne90282:0" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "crwdns90284:0{0}crwdnd90284:0{1}crwdnd90284:0{2}crwdne90284:0" @@ -62445,7 +62483,7 @@ msgstr "crwdns90284:0{0}crwdnd90284:0{1}crwdnd90284:0{2}crwdne90284:0" msgid "{0} is not a CSV file." msgstr "crwdns198376:0{0}crwdne198376:0" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "crwdns90286:0{0}crwdne90286:0" @@ -62461,7 +62499,7 @@ msgstr "crwdns90290:0{0}crwdne90290:0" msgid "{0} is not a valid Accounting Dimension." msgstr "crwdns197296:0{0}crwdne197296:0" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "crwdns90292:0{0}crwdnd90292:0{1}crwdnd90292:0{2}crwdne90292:0" @@ -62477,17 +62515,17 @@ msgstr "crwdns90294:0{0}crwdne90294:0" msgid "{0} is not enabled in {1}" msgstr "crwdns90296:0{0}crwdnd90296:0{1}crwdne90296:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "crwdns112178:0{0}crwdne112178:0" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "crwdns206047:0{0}crwdne206047:0" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "crwdns90298:0{0}crwdne90298:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "crwdns90300:0{0}crwdnd90300:0{1}crwdne90300:0" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "crwdns206049:0{0}crwdnd206049:0{1}crwdne206049:0" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62537,7 +62575,7 @@ msgstr "crwdns90314:0{0}crwdne90314:0" msgid "{0} payment entries can not be filtered by {1}" msgstr "crwdns90316:0{0}crwdnd90316:0{1}crwdne90316:0" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "crwdns90318:0{0}crwdnd90318:0{1}crwdnd90318:0{2}crwdnd90318:0{3}crwdne90318:0" @@ -62550,7 +62588,7 @@ msgstr "crwdns201719:0{0}crwdnd201719:0{1}crwdne201719:0" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "crwdns201721:0{0}crwdne201721:0" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "crwdns90320:0{0}crwdnd90320:0{1}crwdnd90320:0{2}crwdnd90320:0{3}crwdne90320:0" @@ -62566,16 +62604,16 @@ msgstr "crwdns195912:0{0}crwdnd195912:0{1}crwdne195912:0" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "crwdns162038:0{0}crwdnd162038:0{1}crwdnd162038:0{2}crwdnd162038:0{3}crwdnd162038:0{4}crwdnd162038:0{5}crwdnd162038:0{6}crwdne162038:0" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "crwdns90328:0{0}crwdnd90328:0{1}crwdnd90328:0{2}crwdnd90328:0{3}crwdnd90328:0{4}crwdnd90328:0{5}crwdne90328:0" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "crwdns90330:0{0}crwdnd90330:0{1}crwdnd90330:0{2}crwdnd90330:0{3}crwdnd90330:0{4}crwdne90330:0" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "crwdns90332:0{0}crwdnd90332:0{1}crwdnd90332:0{2}crwdne90332:0" @@ -62583,7 +62621,7 @@ msgstr "crwdns90332:0{0}crwdnd90332:0{1}crwdnd90332:0{2}crwdne90332:0" msgid "{0} until {1}" msgstr "crwdns148638:0{0}crwdnd148638:0{1}crwdne148638:0" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "crwdns90334:0{0}crwdnd90334:0{1}crwdne90334:0" @@ -62591,7 +62629,7 @@ msgstr "crwdns90334:0{0}crwdnd90334:0{1}crwdne90334:0" msgid "{0} variants created." msgstr "crwdns90336:0{0}crwdne90336:0" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "crwdns161212:0{0}crwdne161212:0" @@ -62625,7 +62663,7 @@ msgstr "crwdns90346:0{0}crwdnd90346:0{1}crwdne90346:0" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "crwdns90348:0{0}crwdnd90348:0{1}crwdne90348:0" @@ -62659,12 +62697,21 @@ msgstr "crwdns90360:0{0}crwdnd90360:0{1}crwdne90360:0" msgid "{0} {1} is already linked to Common Code {2}." msgstr "crwdns151722:0{0}crwdnd151722:0{1}crwdnd151722:0{2}crwdne151722:0" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "crwdns206051:0{0}crwdnd206051:0{1}crwdnd206051:0{2}crwdne206051:0" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "crwdns206053:0{0}crwdnd206053:0{1}crwdnd206053:0{2}crwdnd206053:0{3}crwdne206053:0" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "crwdns90362:0{0}crwdnd90362:0{1}crwdnd90362:0{2}crwdnd90362:0{3}crwdne90362:0" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "crwdns90364:0{0}crwdnd90364:0{1}crwdne90364:0" @@ -62696,6 +62743,10 @@ msgstr "crwdns90376:0{0}crwdnd90376:0{1}crwdne90376:0" msgid "{0} {1} is not active" msgstr "crwdns90378:0{0}crwdnd90378:0{1}crwdne90378:0" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "crwdns206055:0{0}crwdnd206055:0{1}crwdnd206055:0{2}crwdne206055:0" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "crwdns90380:0{0}crwdnd90380:0{1}crwdnd90380:0{2}crwdnd90380:0{3}crwdne90380:0" @@ -62801,27 +62852,23 @@ msgstr "crwdns90428:0{0}crwdne90428:0" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "crwdns90430:0{0}crwdnd90430:0{1}crwdnd90430:0{2}crwdne90430:0" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "crwdns90432:0{0}crwdnd90432:0{1}crwdnd90432:0{2}crwdne90432:0" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "crwdns202779:0{0}crwdnd202779:0{1}crwdnd202779:0{2}crwdne202779:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "crwdns195100:0{0}crwdne195100:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "crwdns195102:0{0}crwdne195102:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "crwdns195104:0{0}crwdne195104:0" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "crwdns195106:0{0}crwdne195106:0" @@ -62837,7 +62884,7 @@ msgstr "crwdns197298:0{0}crwdnd197298:0{1}crwdne197298:0" msgid "{0}: {1} is a group account." msgstr "crwdns160624:0{0}crwdnd160624:0{1}crwdne160624:0" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "crwdns90436:0{0}crwdnd90436:0{1}crwdnd90436:0{2}crwdne90436:0" @@ -62849,7 +62896,7 @@ msgstr "crwdns154278:0{count}crwdnd154278:0{item_code}crwdne154278:0" msgid "{doctype} {name} is cancelled or closed." msgstr "crwdns154280:0{doctype}crwdnd154280:0{name}crwdne154280:0" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "crwdns90442:0{item_name}crwdnd90442:0{sample_size}crwdnd90442:0{accepted_quantity}crwdne90442:0" @@ -62861,32 +62908,7 @@ msgstr "crwdns202385:0{ref_doctype}crwdnd202385:0{ref_name}crwdnd202385:0{status msgid "{}" msgstr "crwdns90446:0crwdne90446:0" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "crwdns90450:0crwdne90450:0" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "crwdns90452:0crwdne90452:0" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "crwdns201723:0crwdne201723:0" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "crwdns90454:0crwdne90454:0" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "crwdns90460:0crwdne90460:0" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "crwdns90462:0crwdne90462:0" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "crwdns154435:0crwdne154435:0" - diff --git a/erpnext/locale/es.po b/erpnext/locale/es.po index 8bca37e5ea8..ffd6c8a6e79 100644 --- a/erpnext/locale/es.po +++ b/erpnext/locale/es.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: es_ES\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "\"Es activo fijo\" no puede estar sin marcar, ya que existe registro de msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" para \"SN-01\" a \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# En stock" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Artículos Requeridos" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'Permitir múltiples órdenes de venta contra la orden de compra de un cliente'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Basado en' y 'Agrupar por' no pueden ser iguales" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Desde la fecha' debe ser después de 'Hasta Fecha'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Posee numero de serie' no puede ser \"Sí\" para los productos que NO son de stock" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "'Inspección requerida antes de la entrega' se ha desactivado para el artículo {0}, no es necesario crear el QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "'Inspección requerida antes de la compra' se ha desactivado para el artículo {0}, no es necesario crear el QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Apertura'" @@ -326,13 +317,13 @@ msgstr "'Apertura'" msgid "'To Date' is required" msgstr "'Hasta la fecha' es requerido" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'Al paquete n.°' no puede ser menor que 'Desde el paquete n.°'" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Actualizar existencias' no puede marcarse porque los artículos no se han entregado mediante {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "Superior a 90" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "No se puede crear el activo.

                    Está intentando crear {0} activo(s) de {2} {3}.
                    Sin embargo, sólo se han comprado {1} artículo(s) y {4} activo(s) ya existe(n) contra {5}." @@ -826,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Documento de pago requerido para la(s) fila(s): {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    No se puede facturar de más los siguientes artículos:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Los siguientes {0} no pertenecen a la Compañía {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1055,9 +1046,9 @@ msgstr "A-B" msgid "A - C" msgstr "A-C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Existe una categoría de cliente con el mismo nombre. Por favor cambie el nombre de cliente o renombre la categoría de cliente" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1067,9 +1058,9 @@ msgstr "Se puede añadir una lista de días festivos para excluir el cómputo de msgid "A Lead requires either a person's name or an organization's name" msgstr "Un cliente potencial requiere el nombre de una persona o el nombre de una organización" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Solo se puede crear un albarán para un borrador de nota de entrega." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1085,7 +1076,7 @@ msgstr "Una lista de precios es una colección de Precios de Productos, ya sea d msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Un Producto o Servicio que se compra, vende o mantiene en stock." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Se está ejecutando un trabajo de reconciliación {0} para los mismos filtros. No se puede reconciliar ahora." @@ -1118,7 +1109,7 @@ msgstr "Debe seleccionar un conductor antes de confirmar." msgid "A logical Warehouse against which stock entries are made." msgstr "Almacén lógico contra el que se realizan las entradas de existencias." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1294,7 +1285,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Cantidad Aceptada en UdM de Stock" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Cantidad Aceptada" @@ -1325,12 +1316,16 @@ msgstr "Clave de Acceso" msgid "Access Key is required for Service Provider: {0}" msgstr "Se requiere clave de acceso para el proveedor de servicios: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "Según CEFACT/ICG/2010/IC013 o CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "Según la BOM{0}, falta el artículo '{1}' en la entrada de stock." @@ -1583,7 +1578,7 @@ msgstr "La cuenta es obligatoria para obtener entradas de pago" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Cuenta no encontrada" @@ -1713,11 +1708,11 @@ msgstr "Cuenta: {0} es capital Trabajo en progreso y no puede actualizars msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Cuenta: {0} sólo puede ser actualizada mediante transacciones de inventario" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Cuenta: {0} no está permitido en Entrada de pago" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Cuenta: {0} con divisa: {1} no puede ser seleccionada" @@ -1996,8 +1991,8 @@ msgstr "Filtro de dimensiones contables" msgid "Accounting Entries" msgstr "Asientos contables" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Entrada Contable para Activos" @@ -2022,8 +2017,8 @@ msgstr "Entrada contable para servicio" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2071,7 +2066,11 @@ msgstr "" msgid "Accounting Period" msgstr "Período Contable" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "El período contable se superpone con {0}" @@ -2269,8 +2268,8 @@ msgstr "Cuenta de depreciación acumulada" msgid "Accumulated Depreciation Amount" msgstr "Depreciación acumulada Importe" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "La depreciación acumulada como en" @@ -2498,7 +2497,7 @@ msgstr "Cantidad de Saldo Actual" msgid "Actual Batch Quantity" msgstr "Cantidad de lote real" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Costo real" @@ -2508,7 +2507,7 @@ msgstr "Costo real" msgid "Actual Date" msgstr "Fecha Real" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2658,8 +2657,8 @@ msgstr "Tiempo real (en horas)" msgid "Actual qty in stock" msgstr "Cantidad real en stock" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "El tipo de impuesto real no puede incluirse en la tarifa del artículo en la fila {0}" @@ -2824,10 +2823,6 @@ msgstr "Añadir Nro Serie/Lote" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Añadir Nro Serie/Lote (Cant Rechazada)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Añadir Inventario" @@ -2926,13 +2921,13 @@ msgstr "Añadido por" msgid "Added On" msgstr "Añadido el" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Añadido el Rol de Proveedor al Usuario {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Se agregó el Rol {1} al Usuario {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3074,7 +3069,7 @@ msgstr "Cantidad de descuento adicional" msgid "Additional Discount Amount (Company Currency)" msgstr "Monto adicional de descuento (Divisa por defecto)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "El monto de descuento adicional ({discount_amount}) no puede exceder el total antes de dicho descuento ({total_before_discount})" @@ -3193,16 +3188,8 @@ msgid "Additional Transferred Qty" msgstr "Cantidad adicional transferida" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "La cantidad transferida adicional {0}\n" -"\t\t\t\t\tno puede ser mayor que {1}.\n" -"\t\t\t\t\tPara solucionar esto, aumente el valor porcentual\n" -"\t\t\t\t\tdel campo 'Transferir materias primas adicionales a WIP'\n" -"\t\t\t\t\ten la configuración de fabricación." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3466,7 +3453,7 @@ msgstr "Tipo de Comprobante de Anticipo" msgid "Advance amount" msgstr "Importe Anticipado" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Cantidad de avance no puede ser mayor que {0} {1}" @@ -3535,7 +3522,7 @@ msgstr "Contra" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Contra la cuenta" @@ -3655,7 +3642,7 @@ msgstr "Contra factura del proveedor {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Contra comprobante" @@ -3679,7 +3666,7 @@ msgstr "Contra el Número de Comprobante" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Tipo de comprobante" @@ -3793,6 +3780,13 @@ msgstr "Aerolínea" msgid "Algorithm" msgstr "Algoritmo" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3969,7 +3963,7 @@ msgstr "" msgid "All items are already requested" msgstr "Todos los artículos ya están solicitados" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Todos los artículos ya han sido facturados / devueltos" @@ -3981,7 +3975,7 @@ msgstr "Ya se han recibido todos los artículos" msgid "All items have already been transferred for this Work Order." msgstr "Todos los artículos ya han sido transferidos para esta Orden de Trabajo." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Todos los artículos de este documento ya tienen una Inspección de Calidad vinculada." @@ -4000,16 +3994,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Todos los comentarios y correos electrónicos se copiarán de un documento a otro recién creado (Cliente potencial → Oportunidad → Oferta) en todos los documentos del CRM." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Todos los artículos ya han sido devueltos." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Todos los artículos necesarios (LdM) se obtendrán de la lista de materiales y se rellenarán en esta tabla. Aquí también puede cambiar el Almacén de Origen para cualquier artículo. Y durante la producción, puede hacer un seguimiento de las materias primas transferidas desde esta tabla." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Todos estos artículos ya han sido facturados / devueltos" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4032,7 +4026,7 @@ msgstr "Asignar adelantos automáticamente (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Distribuir el Importe de Pago" @@ -4042,7 +4036,7 @@ msgstr "Distribuir el Importe de Pago" msgid "Allocate Payment Based On Payment Terms" msgstr "Asignar el pago según las condiciones de pago" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Asignar solicitud de pago" @@ -4072,7 +4066,7 @@ msgstr "Numerado" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4155,8 +4149,8 @@ msgid "Allow Alternative Item" msgstr "Permitir Elemento Alternativo" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Permitir Artículo alternativo debe estar marcado en Artículo {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4263,7 +4257,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Permitir Cambiar el Nombre del Valor del Atributo" @@ -4544,14 +4538,16 @@ msgstr "Productos Permitidos" msgid "Allowed To Transact With" msgstr "Permitido para realizar Transacciones con" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "Los roles permitidos son 'Cliente' y 'Proveedor'. Por favor, seleccione uno de estos roles." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4584,10 +4580,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "Permite a los usuarios validar cotizaciones de proveedores sin cantidad. Resulta útil cuando las tarifas son fijas, pero las cantidades no. Por ejemplo, en contratos de tarifas." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4595,10 +4591,6 @@ msgstr "" msgid "Already Picked" msgstr "Ya recogido" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Ya existe un registro para el artículo {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Ya se configuró por defecto en el perfil de pos {0} para el usuario {1}, amablemente desactivado por defecto" @@ -4614,12 +4606,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Artículo Alternativo" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4824,7 +4816,7 @@ msgstr "Preguntar siempre" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5050,12 +5042,12 @@ msgstr "Un Grupo de Producto es una forma de clasificar Productos según sus tip msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Se ha producido un error al volver a recalcular la valoración del artículo a través de {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Se produjo un error durante el proceso de actualización" @@ -5269,7 +5261,7 @@ msgstr "Código de cupón aplicado" msgid "Applied on each reading." msgstr "Aplicado en cada lectura." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Reglas de almacenamiento aplicadas." @@ -5446,10 +5438,6 @@ msgstr "Ranuras de reserva de citas" msgid "Appointment Confirmation" msgstr "Confirmación de la cita" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Cita creada exitosamente" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5475,6 +5463,10 @@ msgstr "Se desactivó la programación de citas en este sitio" msgid "Appointment With" msgstr "Cita con" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Se creó la cita, pero no se encontró ningún cliente potencial. Por favor, revise el correo electrónico para confirmar." @@ -5516,6 +5508,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "¿Está seguro de que desea borrar todos los datos de la demostración?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "¿Está seguro de que desea eliminar este artículo?" @@ -5598,18 +5599,18 @@ msgstr "Como el campo {0} está habilitado, el valor del campo {1} debe ser supe msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Como ya existen transacciones validadas contra el artículo {0}, no puede cambiar el valor de {1}." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "No puedes desactivarlo porque hay stock reservado {0}." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Dado que hay suficientes artículos de sub ensamblaje, no se requiere una orden de trabajo para el almacén {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Como hay suficientes materias primas, la Solicitud de material no es necesaria para Almacén {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5648,7 +5649,7 @@ msgstr "Artículos de montaje" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5720,7 +5721,7 @@ msgstr "Capitalización de Activo Articulo de Stock" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5886,7 +5887,7 @@ msgstr "Elemento de movimiento de activos" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6018,7 +6019,7 @@ msgstr "Análisis de valor de activos" msgid "Asset cancelled" msgstr "Activo cancelado" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Activo no se puede cancelar, como ya es {0}" @@ -6034,7 +6035,7 @@ msgstr "El Activo capitalizado fue validado después de la Capitalización de Ac msgid "Asset created" msgstr "Activo creado" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Activo creado después de ser separado del Activo {0}" @@ -6087,7 +6088,7 @@ msgstr "Activo validado" msgid "Asset transferred to Location {0}" msgstr "Activo transferido a la ubicación {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Activo actualizado tras ser dividido en Activo {0}" @@ -6165,7 +6166,7 @@ msgstr "Valor del activo ajustado tras el envío del ajuste del valor del activo #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6186,7 +6187,7 @@ msgstr "Activos no creados para {item_code}. Tendrá que crear el activo manualm msgid "Assets {assets_link} created for {item_code}" msgstr "Activos {assets_link} creados para {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Asignar trabajo a empleado" @@ -6196,6 +6197,11 @@ msgstr "Asignar trabajo a empleado" msgid "Assign to Name" msgstr "Asignar a nombre" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6214,19 +6220,23 @@ msgstr "En la fila #{0}: La cantidad recolectada {1} del artículo {2} es mayor msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "En la fila #{0}: La cantidad seleccionada {1} para el artículo {2} es mayor que el stock disponible {3} en el almacén {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "En la fila {0}: en el paquete serial y por lotes {1} debe tener docstatus como 1 y no 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "Se requiere al menos una cuenta con ganancias o pérdidas por cambio" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "Al menos un activo tiene que ser seleccionado." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "Debe seleccionarse al menos una factura." @@ -6247,6 +6257,10 @@ msgstr "Se debe seleccionar al menos uno de los módulos aplicables." msgid "At least one of the Selling or Buying must be selected" msgstr "Debe seleccionarse al menos una de las opciones de Venta o Compra" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6267,7 +6281,7 @@ msgstr "En la fila n.º {0}: el ID de secuencia {1} no puede ser menor que el ID msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "En la fila {0}: el Núm. de Lote es obligatorio para el Producto {1}" @@ -6275,26 +6289,22 @@ msgstr "En la fila {0}: el Núm. de Lote es obligatorio para el Producto {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "En la fila {0}: No se puede establecer el nº de fila padre para el artículo {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "En la fila {0}: La cant. es obligatoria para el lote {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "En la fila {0}: el Núm. Serial es obligatorio para el Producto {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "En la fila {0}: El paquete de serie y lote {1} ya está creado. Por favor, elimine los valores de los campos nº de serie o nº de lote." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "En la fila {0}: establezca el nº de fila padre para el artículo {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6506,7 +6516,7 @@ msgstr "Reconciliación automática de pagos ha sido desactivada. Habilítelo a msgid "Auto Repeat Detail" msgstr "Detalle de Repetición Automática" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "Error en la configuración de impuestos automáticos" @@ -6567,7 +6577,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Documento automático editado" @@ -6692,7 +6702,7 @@ msgstr "Disponible para uso Fecha" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6788,7 +6798,7 @@ msgstr "Disponible para la fecha de uso es obligatorio" msgid "Available {0}" msgstr "Disponible {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "La fecha de uso disponible debe ser posterior a la fecha de compra." @@ -6906,7 +6916,7 @@ msgstr "Cant. BIN" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6925,8 +6935,8 @@ msgid "BOM 1" msgstr "LdM 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "BOM 1 {0} y BOM 2 {1} no deben ser iguales" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6940,7 +6950,7 @@ msgstr "LdM 2" msgid "BOM Comparison Tool" msgstr "Herramienta de comparación de lista de materiales" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7071,7 +7081,7 @@ msgstr "Operación de la lista de materiales (LdM)" msgid "BOM Operations Time" msgstr "Tiempo de operaciones de la lista de materiales" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7092,7 +7102,7 @@ msgstr "Buscar listas de materiales (LdM)" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7144,10 +7154,6 @@ msgstr "Registro de la herramienta de actualización de lista de materiales con msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "La actualización de la lista de materiales ya está en curso. Espere hasta que se complete {0} ." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "La actualización de la lista de materiales está en cola y puede tardar unos minutos. Verifique {0} para ver el progreso." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7186,15 +7192,19 @@ msgstr "Recursión de la lista de materiales: {0} no puede ser secundario de {1} msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Recursión de la LdM: {1} no puede ser principal o secundaria de {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "La lista de materiales (LdM) {0} no pertenece al producto {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "La lista de materiales (LdM) {0} debe estar activa" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "La lista de materiales (LdM) {0} debe ser validada" @@ -7275,7 +7285,7 @@ msgstr "Balance" msgid "Balance (Dr - Cr)" msgstr "Balance (Debe - Haber)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Balance ({0})" @@ -7345,6 +7355,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "Resumen del balance general" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Cantidad de stock" @@ -7405,7 +7419,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7505,8 +7519,8 @@ msgid "Bank Account Type" msgstr "Tipo de cuenta bancaria" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "La cuenta bancaria {} en la transacción bancaria {} no coincide con la cuenta bancaria {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7750,7 +7764,7 @@ msgstr "Transacción bancaria {0} actualizada" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "La cuenta bancaria no puede nombrarse como {0}" @@ -7762,7 +7776,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "La cuenta bancaria {0} ya existe y no se pudo volver a crear" @@ -7774,7 +7788,7 @@ msgstr "Cuentas bancarias agregadas" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Error de creación de transacción bancaria" @@ -8050,8 +8064,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8082,15 +8096,15 @@ msgstr "" msgid "Batch No" msgstr "Lote Nro." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "El número de lote es obligatorio" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Lote núm. {0} no existe" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "El lote número {0} está vinculado con el artículo {1} que tiene número de serie. Por favor, escanee el número de serie en su lugar." @@ -8098,6 +8112,10 @@ msgstr "El lote número {0} está vinculado con el artículo {1} que tiene núme msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "El número de lote {0} no está presente en el original {1} {2}, por lo tanto no puede devolverlo contra el {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8163,9 +8181,9 @@ msgstr "Unidad de medida por lotes" msgid "Batch and Serial No" msgstr "Núm. de Lote y Serie" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Lote no creado para el artículo {}, ya que no tiene serie de lote." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8277,7 +8295,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8752,8 +8770,8 @@ msgid "Booked Fixed Asset" msgstr "Activo Fijo Reservado" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "Los libros estarán cerrados hasta el período que finaliza el {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8980,8 +8998,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "El presupuesto no se puede asignar contra el grupo de cuentas {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "El presupuesto no se puede asignar contra {0}, ya que no es una cuenta de ingresos o gastos" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8998,7 +9016,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "Cursor con búfer" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "¿Construir todo?" @@ -9006,7 +9024,7 @@ msgstr "¿Construir todo?" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Cant. producible" @@ -9333,6 +9351,10 @@ msgstr "Balance calculado del estado de cuenta bancario" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9504,7 +9526,7 @@ msgstr "Campaña {0} no encontrada" msgid "Can be approved by {0}" msgstr "Puede ser aprobado por {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "No se puede cerrar la Orden de Trabajo. Ya que {0} Las fichas de trabajo están en estado Trabajo en curso." @@ -9533,21 +9555,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "No se puede filtrar en función al 'No. de comprobante', si esta agrupado por el nombre" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Sólo se puede crear el pago contra {0} impagado" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Puede referirse a la línea, sólo si el tipo de importe es 'previo al importe' o 'previo al total'" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "No se puede cambiar el método de valoración, ya que hay transacciones contra algunos artículos que no tienen su propio método de valoración" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Cancelar visita {0} antes de cancelar este reclamo de garantía" @@ -9576,7 +9601,7 @@ msgstr "" msgid "Cancelation Date" msgstr "Fecha de Cancelación" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9584,11 +9609,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "No se puede asignar cajero" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "No se puede calcular la hora de llegada porque falta la dirección del conductor." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "No se puede cambiar la configuración de la cuenta de inventario" @@ -9603,10 +9623,6 @@ msgstr "No se puede crear una devolución" msgid "Cannot Merge" msgstr "No se puede fusionar" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "No se puede optimizar la ruta porque falta la dirección del conductor." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "No se puede relevar al empleado" @@ -9631,6 +9647,11 @@ msgstr "No se puede aplicar Retención de impuestos en origen contra varias part msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "No puede ser un elemento de Activo Fijo ya que se creo un Libro de Stock ." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "No se puede cancelar el programa de depreciación de activos {0} porque tiene un borrador de entrada de diario {1}." @@ -9640,14 +9661,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "No se puede cancelar la entrada de reserva de stock {0}, ya que se utilizó en la orden de trabajo {1}. Cancele primero la orden de trabajo o desactive la reserva de stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "No se puede cancelar porque el procesamiento de los documentos cancelados está pendiente." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "No se puede cancelar debido a que existe una entrada de Stock validada en el almacén {0}" @@ -9655,7 +9676,7 @@ msgstr "No se puede cancelar debido a que existe una entrada de Stock validada e msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "No se puede cancelar la transacción. La validación del traspaso de la valoración del artículo, aún no se ha completado." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "No se puede cancelar esta entrada de stock de fabricación ya que la cantidad de producto terminado producido no puede ser menor que la cantidad entregada en la orden de entrada de subcontratación vinculada." @@ -9667,7 +9688,7 @@ msgstr "No se puede cancelar este documento porque está vinculado con el Ajuste msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "No se puede cancelar este documento porque está vinculado al recurso enviado {asset_link}. Cancele el recurso para continuar." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "No se puede cancelar la transacción para la orden de trabajo completada." @@ -9692,8 +9713,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "No se puede cambiar la divisa/moneda por defecto de la compañía, porque existen transacciones, estas deben ser canceladas antes de cambiarla" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "No se puede completar la tarea {0} porque su tarea dependiente {1} no está completada / cancelada." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9719,7 +9740,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "No se pueden crear entradas de reserva de stock para recibos de compra con fecha futura." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "No se puede crear una lista de selección para la orden de venta {0} porque tiene stock reservado. Anule la reserva del stock para crear una lista de selección." @@ -9728,6 +9749,10 @@ msgstr "No se puede crear una lista de selección para la orden de venta {0} por msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "No se pueden crear asientos contables contra cuentas desactivadas: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "No se puede crear una devolución para la factura consolidada {0}." @@ -9745,7 +9770,7 @@ msgstr "No se puede declarar como perdida, porque se ha hecho el Presupuesto" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "No se puede deducir cuando categoría es para ' Valoración ' o ' de Valoración y Total '" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "No se puede eliminar la fila de ganancias/pérdidas de cambio" @@ -9758,7 +9783,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "No se puede eliminar un artículo que ya se ha pedido" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9790,7 +9815,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "No se puede habilitar la cuenta de inventario por artículo, ya que existen asientos contables de stock para la empresa {0} con cuenta de inventario por almacén. Cancele las transacciones de stock primero y vuelva a intentarlo." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9815,19 +9840,23 @@ msgstr "No se puede encontrar el artículo con este código de barras" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "No se puede encontrar un almacén predeterminado para el artículo {0}. Establezca uno en el Maestro de artículos o en la Configuración de existencias." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "No se puede fusionar {0} '{1}' en '{2}' ya que ambos tienen entradas contables existentes en diferentes monedas para la empresa '{3}'." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "No se pueden producir más artículos {0} que la cantidad del pedido de venta {1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "No se puede producir más productos por {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "No se pueden producir más de {0} productos por {1}" @@ -9839,12 +9868,16 @@ msgstr "No se puede recibir del cliente contra saldos pendientes negativos" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "No se puede reducir la cantidad a la cantidad pedida o comprada" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "No se puede referenciar a una línea mayor o igual al numero de línea actual." +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "No se puede recuperar el token de enlace para la actualización. Consulte el registro de errores para obtener más información" @@ -9853,19 +9886,23 @@ msgstr "No se puede recuperar el token de enlace para la actualización. Consult msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "No se puede recuperar el token de enlace. Compruebe el registro de errores para obtener más información" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "No se puede seleccionar el tipo de cargo como 'Importe de línea anterior' o ' Total de línea anterior' para la primera linea" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "No se puede definir como pérdida, cuando la orden de venta esta hecha." @@ -10292,9 +10329,9 @@ msgstr "Cambie el tipo de cuenta a Cobrar o seleccione una cuenta diferente." msgid "Change this date manually to setup the next synchronization start date" msgstr "Cambie esta fecha manualmente para configurar la próxima fecha de inicio de sincronización" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "Se cambió el nombre del Cliente a '{}' porque '{}' ya existe." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10320,8 +10357,8 @@ msgstr "" msgid "Channel Partner" msgstr "Canal de socio" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "El cargo de tipo 'Real' en la fila {0} no puede incluirse en la Tarifa del artículo o en el Importe pagado" @@ -10515,7 +10552,7 @@ msgstr "Ancho Cheque" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Cheque / Fecha de referencia" @@ -10573,7 +10610,7 @@ msgstr "Nombre del documento secundario" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Referencia de filas hijas" @@ -10583,8 +10620,8 @@ msgid "Child Table Not Allowed" msgstr "Tabla secundaria no permitida" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Existe Tarea Hija para esta Tarea. No puedes eliminar esta Tarea." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10762,7 +10799,7 @@ msgstr "Préstamo cerrado" msgid "Close Replied Opportunity After Days" msgstr "Cerrar oportunidad respondida después de días" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Cierre el POS" @@ -10776,7 +10813,7 @@ msgstr "Documento Cerrado" msgid "Closed Documents" msgstr "Documentos Cerrados" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "La orden de trabajo cerrada no puede detenerse ni reabrirse" @@ -11006,9 +11043,9 @@ msgstr "Comisión" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11445,7 +11482,7 @@ msgstr "Compañías" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11515,7 +11552,7 @@ msgstr "Compañías" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11555,10 +11592,6 @@ msgstr "Compañía" msgid "Company Abbreviation" msgstr "Abreviatura de la compañia" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "La abreviatura de la Empresa no puede tener más de 5 caracteres" @@ -11723,7 +11756,7 @@ msgstr "Dirección de envío de la compañía" msgid "Company Tax ID" msgstr "Número de Identificación Fiscal de la Compañía" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "La Empresa y la Fecha de Publicación son obligatorias" @@ -11767,12 +11800,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "Nombre del campo de enlace de la empresa utilizado para filtrar (opcional: déjelo vacío para eliminar todos los registros)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "El nombre de la empresa no es el mismo" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "La empresa del activo {0} y el documento de compra {1} no coinciden." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11810,6 +11843,14 @@ msgstr "Empresa {0} añadida varias veces" msgid "Company {0} does not exist" msgstr "Compañía {0} no existe" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "La empresa {0} se agrega más de una vez" @@ -11818,14 +11859,6 @@ msgstr "La empresa {0} se agrega más de una vez" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "La empresa {} aún no existe. Configuración de impuestos abortada." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "La empresa {} no coincide con el perfil de POS {}" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11847,7 +11880,7 @@ msgstr "Nombre del Competidor" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Competidores" @@ -12291,8 +12324,8 @@ msgid "Consumed Qty" msgstr "Cantidad consumida" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "La cantidad consumida no puede ser mayor que la cantidad reservada para el artículo {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12607,7 +12640,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12907,7 +12940,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12932,7 +12965,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12990,7 +13023,7 @@ msgstr "Número de centro de costo" msgid "Cost Center and Budgeting" msgstr "Centro de costos y presupuesto" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "El centro de costos para las filas de artículos se ha actualizado a {0}" @@ -13002,7 +13035,7 @@ msgstr "El centro de costes forma parte de la asignación de centros de costes, msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Centro de costos requerido para la línea {0} en la tabla Impuestos para el tipo {1}" @@ -13024,12 +13057,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "El centro de costes {0} no puede utilizarse para la asignación, ya que se utiliza como centro de costes principal en otro registro de asignación." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Centro de costos {} no pertenece a la empresa {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "El centro de costes {} es un centro de costes de grupo y los centros de costes de grupo no pueden utilizarse en las transacciones" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13153,14 +13186,14 @@ msgid "Costing and Billing" msgstr "Cálculo de Costos y Facturación" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "Se han actualizado los campos de Costos y Facturación" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "No se pueden borrar los datos de la demostración" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "No se pudo crear automáticamente el Cliente debido a que faltan los siguientes campos obligatorios:" @@ -13172,7 +13205,7 @@ msgstr "No se pudo crear una Nota de Crédito automáticamente, desmarque 'Emiti msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "No se ha podido detectar la empresa para actualizar las cuentas bancarias" @@ -13182,8 +13215,8 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "No se pudo encontrar la ruta para " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13206,7 +13239,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "No se pudo resolver la función de puntuación de criterios para {0}. Asegúrese de que la fórmula es válida." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "No se pudo resolver la función de puntuación ponderada. Asegúrese de que la fórmula es válida." @@ -13436,10 +13469,6 @@ msgstr "Crear Nuevo Cliente" msgid "Create New Lead" msgstr "Crear nuevo cliente potencial" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13458,7 +13487,7 @@ msgstr "Crear operaciones" msgid "Create Opportunity" msgstr "Crear Oportunidad" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Crear entrada de apertura de punto de venta" @@ -13473,7 +13502,7 @@ msgstr "Crear entrada de pago" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "Crear entrada de pago para facturas TPV consolidadas." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Crear solicitud de pago" @@ -13701,7 +13730,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "Cree una variante con la imagen de la plantilla." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Cree una transacción de stock entrante para el artículo." @@ -13735,7 +13764,7 @@ msgstr "¿Crear {0} {1} ?" msgid "Created By Migration" msgstr "Creado por migración" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "Se crearon {0} tarjetas de puntos para {1} entre:" @@ -13830,7 +13859,7 @@ msgstr "Creando usuario..." msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Creando {} a partir de {} {}" @@ -13840,17 +13869,17 @@ msgstr "Creando {} a partir de {} {}" msgid "Creation" msgstr "Creación" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "Creación de {1}(s) exitosa" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "La creación de {0} falló.\n" "\t\t\t\tVerificar Registro de transacciones masivas" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Creación de {0} parcialmente satisfactoria.\n" @@ -13885,11 +13914,11 @@ msgstr "Creación de {0} parcialmente satisfactoria.\n" msgid "Credit" msgstr "Haber" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Crédito (Transacción)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Crédito ({0})" @@ -13970,7 +13999,7 @@ msgstr "Días de Crédito" msgid "Credit Limit" msgstr "Límite de crédito" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Límite de crédito sobrepasado" @@ -14050,16 +14079,16 @@ msgstr "Acreditar en" msgid "Credit in Company Currency" msgstr "Divisa por defecto de la cuenta de credito" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Se ha cruzado el límite de crédito para el Cliente {0} ({1} / {2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "El límite de crédito ya está definido para la Compañía {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Se alcanzó el límite de crédito para el cliente {0}" @@ -14118,12 +14147,12 @@ msgstr "Configuración de los Criterios" msgid "Criteria Weight" msgstr "Peso del Criterio" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Las ponderaciones de los criterios deben sumar 100%." -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14246,7 +14275,7 @@ msgstr "Divisa y listas de precios" msgid "Currency can not be changed after making entries using some other currency" msgstr "El tipo de moneda/divisa no se puede cambiar después de crear la entrada contable" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "Actualmente, los filtros de moneda no son compatibles con el Informe financiero personalizado." @@ -14311,8 +14340,8 @@ msgid "Current BOM" msgstr "Lista de materiales (LdM) actual" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "La lista de materiales (LdM) actual y la nueva no pueden ser las mismas" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14374,10 +14403,6 @@ msgstr "Paquete de serie / lote actual" msgid "Current Serial No" msgstr "Número de serie actual" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15208,7 +15233,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Resumen diario del proyecto para {0}" @@ -15353,10 +15378,6 @@ msgstr "Fechas de procesamiento" msgid "Day Of Week" msgstr "Día de la semana" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15463,11 +15484,11 @@ msgstr "Distribuidor" msgid "Debit" msgstr "Debe" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Débito (Transacción)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Débito ({0})" @@ -15629,7 +15650,7 @@ msgstr "Decilitro" msgid "Decimeter" msgstr "Decímetro" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Declarar perdido" @@ -16310,8 +16331,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "Eliminando {0} y todos los documentos de Código Común asociados..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "¡Eliminación en progreso!" @@ -16405,7 +16426,7 @@ msgstr "Envios por facturar" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16463,7 +16484,7 @@ msgstr "Entregar" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16793,7 +16814,7 @@ msgstr "DEPRECIACIONES" msgid "Depreciation Amount" msgstr "Monto de la depreciación" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Monto de la depreciación durante el período" @@ -16809,7 +16830,7 @@ msgstr "Fecha de depreciación" msgid "Depreciation Details" msgstr "Detalles de la depreciación" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Depreciación Eliminada debido a la venta de activos" @@ -16879,7 +16900,7 @@ msgstr "La fecha de contabilización de la depreciación no puede ser anterior a msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Fila de depreciación {0}: La fecha de contabilización de la depreciación no puede ser anterior a la fecha de disponibilidad para uso" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Fila de Depreciación {0}: el valor esperado después de la vida útil debe ser mayor o igual que {1}" @@ -16908,11 +16929,11 @@ msgstr "Programación de la depreciación" msgid "Depreciation Schedule View" msgstr "Vista del calendario de amortización" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "La amortización no puede calcularse para los activos totalmente amortizados" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16940,7 +16961,7 @@ msgstr "Diseñador" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Motivo detallado" @@ -17043,12 +17064,12 @@ msgid "Difference Account in Items Table" msgstr "Cuenta de Diferencia en la Tabla de Artículos" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Una cuenta distinta debe ser del tipo Activo / Pasivo, ya que la reconciliación del stock es una entrada de apertura" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17110,7 +17131,7 @@ msgstr "Valor de diferencia" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "Se pueden configurar diferentes 'Almacén de origen' y 'Almacén de destino' para cada fila." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Unidad de Medida diferente para elementos dará lugar a Peso Neto (Total) incorrecto. Asegúrese de que el peso neto de cada artículo esté en la misma Unidad de Medida." @@ -17283,7 +17304,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "El almacén deshabilitado {0} no se puede utilizar para esta transacción." @@ -17292,18 +17313,18 @@ msgstr "El almacén deshabilitado {0} no se puede utilizar para esta transacció msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Deshabilitado las reglas de precios, ya que esta {} es una transferencia interna" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "Precios con impuestos incluidos, ya que este {} es un traslado interno" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17552,9 +17573,9 @@ msgstr "El descuento no puede ser superior al 100%." msgid "Discount must be less than 100" msgstr "El descuento debe ser inferior a 100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Descuento de {} aplicado según la Condición de Pago" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17918,11 +17939,11 @@ msgstr "¿Desea validar la entrada de stock?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} no existe" @@ -17960,22 +17981,6 @@ msgstr "Búsqueda de documentos" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "No. de documento" @@ -18281,7 +18286,7 @@ msgstr "Proyecto duplicado con tareas" msgid "Duplicate Sales Invoices found" msgstr "Se encontraron facturas de venta duplicadas" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "Error de número de serie duplicado" @@ -18435,7 +18440,7 @@ msgstr "Editar capacidad" msgid "Edit Cart" msgstr "Editar carrito" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Editar no permitido" @@ -18659,8 +18664,8 @@ msgid "Email verification failed." msgstr "Error en la verificación del correo electrónico." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "Correos electrónicos en cola" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18847,7 +18852,7 @@ msgstr "Empleados" msgid "Empty" msgstr "Vacío" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "Lista vacía para eliminar" @@ -18856,7 +18861,7 @@ msgstr "Lista vacía para eliminar" msgid "Ems(Pica)" msgstr "Ems(Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18935,6 +18940,12 @@ msgstr "Habilitar descuentos y márgenes" msgid "Enable European Access" msgstr "Habilitar el acceso europeo" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19206,7 +19217,7 @@ msgstr "Hora de finalización" msgid "End Transit" msgstr "Fin del tránsito" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19329,7 +19340,7 @@ msgstr "Introduzca el número de teléfono del cliente" msgid "Enter date to scrap asset" msgstr "Introduce la fecha para dar de baja el activo." -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Introduzca los detalles de la depreciación" @@ -19385,6 +19396,10 @@ msgstr "Introduzca la cantidad a fabricar. Los artículos de materia prima sólo msgid "Enter {0} amount." msgstr "Introduzca el importe {0}" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Entretenimiento y Ocio" @@ -19420,7 +19435,7 @@ msgstr "Tipo de entrada" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Patrimonio" @@ -19444,7 +19459,7 @@ msgstr "" msgid "Error Description" msgstr "Descripción del Error" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Ocurrió un error" @@ -19476,21 +19491,21 @@ msgstr "Error al contabilizar asientos de amortización" msgid "Error while processing deferred accounting for {0}" msgstr "Error al procesar la contabilidad diferida para {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Error al volver a publicar la valoración del artículo" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Error: Este activo ya tiene contabilizados {0} periodos de amortización.\n" -"\t\t\t\t\tLa fecha de `inicio de la amortización` debe ser al menos {1} periodos después de la fecha de `disponible para su uso`.\n" -"\t\t\t\t\tPor favor, corrija las fechas en consecuencia." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Error: {0} es un campo obligatorio" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "Error: {0}" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19504,7 +19519,7 @@ msgid "Estimated Arrival" msgstr "Llegada Estimada" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Costo estimado" @@ -19553,7 +19568,7 @@ msgstr "Ejemplo: ABCD. #####. Si se establece una serie y no se menciona el No d msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Ejemplo: Número de serie {0} reservado en {1}." @@ -19834,7 +19849,7 @@ msgstr "Fecha de cierre prevista" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19921,7 +19936,7 @@ msgstr "Valor esperado después de la Vida Útil" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Gastos" @@ -20180,9 +20195,9 @@ msgstr "Fahrenheit" msgid "Failed Entries" msgstr "Entradas fallidas" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Error al autenticar la clave de API." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20379,7 +20394,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Obteniendo tipos de cambio..." @@ -20417,15 +20432,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "Los campos se copiarán solo al momento de la creación." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20434,7 +20449,7 @@ msgstr "" msgid "File to Rename" msgstr "Archivo a renombrar" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20593,11 +20608,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20666,7 +20681,7 @@ msgstr "Lista de materiales de productos terminados" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20679,7 +20694,7 @@ msgstr "Artículo de Producto Terminado" msgid "Finished Good Item Code" msgstr "Código de artículo bueno terminado" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Cantidad de artículos acabados" @@ -20787,7 +20802,7 @@ msgstr "Almacén de productos terminados" msgid "Finished Goods based Operating Cost" msgstr "Costo operativo basado en productos terminados" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Artículo terminado {0} no coincide con la orden de trabajo {1}" @@ -20886,10 +20901,6 @@ msgstr "El régimen fiscal es obligatorio, establezca amablemente el régimen fi msgid "Fiscal Year" msgstr "Año fiscal" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20903,11 +20914,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "La fecha de finalización del año fiscal debe ser un año después de la fecha de inicio del año fiscal" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "El año fiscal {0} no existe" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Año Fiscal {0} no existe" @@ -20940,7 +20948,7 @@ msgstr "Activo fijo" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21076,7 +21084,7 @@ msgstr "Pie/Segundo" msgid "For" msgstr "por" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "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'" @@ -21101,10 +21109,6 @@ msgstr "Para la empresa" msgid "For Item" msgstr "Para artículo" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "Para el artículo {0} no se puede recibir más de {1} cantidad contra {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21171,12 +21175,12 @@ msgid "For Work Order" msgstr "Para Orden de Trabajo" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Para un artículo {0}, la cantidad debe ser un número negativo" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Para un Artículo {0}, la cantidad debe ser número positivo" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21208,13 +21212,13 @@ msgstr "Por cuánto gasto = 1 punto de lealtad" msgid "For individual supplier" msgstr "Por proveedor individual" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "Para el producto {0}, el precio debe ser un número positivo. Para permitir precios negativos, habilite {1} en {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21226,9 +21230,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "Para la operación {0}: la cantidad ({1}) no puede ser mayor que la cantidad pendiente ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21243,21 +21247,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "Para la cantidad {0} no debe ser mayor que la cantidad permitida {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Para referencia" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Para la línea {0} en {1}. incluir {2} en la tasa del producto, las lineas {3} también deben ser incluidas" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Para la fila {0}: Introduzca la cantidad prevista" @@ -21276,11 +21276,15 @@ msgstr "Para la condición "Aplicar regla a otros", el campo {0} es ob msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Para comodidad de los clientes, estos códigos se pueden utilizar en formatos de impresión como facturas y notas de entrega." -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21368,6 +21372,21 @@ msgstr "Publicaciones del Foro" msgid "Forum URL" msgstr "URL del Foro" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21911,7 +21930,7 @@ msgstr "Balance GL" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Entrada GL" @@ -22036,6 +22055,10 @@ msgstr "Balance general" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22089,7 +22112,7 @@ msgstr "Generar entrada de cierre de stock" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22432,7 +22455,7 @@ msgstr "Las mercancías en tránsito" msgid "Goods Transferred" msgstr "Bienes transferidos" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Las mercancías ya se reciben contra la entrada exterior {0}" @@ -22615,7 +22638,7 @@ msgstr "" msgid "Grant Commission" msgstr "Conceder Comisión" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Mayor que la cantidad" @@ -22755,7 +22778,7 @@ msgstr "Agrupar por orden de venta" msgid "Group by Voucher" msgstr "Agrupar por Comprobante" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "No se permite seleccionar el almacén de nodos de grupo para operaciones" @@ -23058,7 +23081,7 @@ msgstr "Le ayuda a distribuir el Presupuesto/Objetivo a lo largo de los meses si msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "A continuación se muestran los registros de errores de las entradas de depreciación fallidas mencionadas anteriormente: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "Estas son las opciones para proceder:" @@ -23086,7 +23109,7 @@ msgstr "Aquí, los días libres semanales se rellenan previamente en función de msgid "Hertz" msgstr "Hertz" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Hola," @@ -23122,7 +23145,7 @@ msgstr "" msgid "Hide Images" msgstr "Ocultar Imágenes" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23707,15 +23730,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "En caso contrario, puedes Cancelar/Validar esta entrada" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23753,7 +23776,7 @@ msgstr "Si la lista de materiales arroja como resultado material de desecho, se msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Si la cuenta está congelado, las entradas estarán permitidas a los usuarios restringidos." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Si el artículo está realizando transacciones como un artículo de tasa de valoración cero en esta entrada, habilite "Permitir tasa de valoración cero" en la {0} tabla de artículos." @@ -23854,7 +23877,7 @@ msgstr "Si necesita conciliar transacciones específicas entre sí, seleccione l msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "Si aún desea continuar, habilite {0}." @@ -24072,14 +24095,14 @@ msgstr "Importar facturas" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Importación Exitosa" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24556,7 +24579,7 @@ msgstr "Incluir productos para subconjuntos" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Ingresos" @@ -24642,7 +24665,7 @@ msgstr "Llamada entrante de {0}" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24651,7 +24674,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "Cantidad de saldo incorrecta tras la transacción" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Lote incorrecto consumido" @@ -24659,11 +24682,11 @@ msgstr "Lote incorrecto consumido" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Comprobación incorrecta en (grupo) Almacén para Reordenar" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Cantidad incorrecta de componentes" @@ -24672,7 +24695,7 @@ msgstr "Cantidad incorrecta de componentes" msgid "Incorrect Date" msgstr "Fecha incorrecta" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Factura incorrecta" @@ -24689,7 +24712,7 @@ msgstr "Documento de referencia incorrecto (partida de recibo de compra)" msgid "Incorrect Serial No Valuation" msgstr "Valoración incorrecta del número de serie" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Número de serie incorrecto Consumido" @@ -24772,7 +24795,7 @@ msgstr "Incremento" msgid "Increment cannot be 0" msgstr "Incremento no puede ser 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Incremento de Atributo {0} no puede ser 0" @@ -24969,7 +24992,7 @@ msgid "Instruction" msgstr "Instrucción" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Capacidad Insuficiente" @@ -24985,12 +25008,12 @@ msgstr "Permisos Insuficientes" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Insuficiente Stock" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Stock insuficiente para el lote" @@ -25120,7 +25143,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Intereses y/o gastos de reclamación" @@ -25145,7 +25168,7 @@ msgstr "Interno" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Cliente Interno para empresa {0} ya existe" @@ -25171,7 +25194,7 @@ msgstr "Falta la referencia de ventas internas" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "Ya existe el proveedor interno de la empresa {0}" @@ -25192,7 +25215,7 @@ msgstr "Ya existe el proveedor interno de la empresa {0}" msgid "Internal Transfer" msgstr "Transferencia Interna" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Falta referencia de transferencia interna" @@ -25234,8 +25257,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25254,7 +25277,7 @@ msgstr "Importe asignado no válido" msgid "Invalid Amount" msgstr "Importe no válido" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Atributo Inválido" @@ -25271,11 +25294,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Código de barras inválido. No hay ningún elemento adjunto a este código de barras." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Pedido abierto inválido para el cliente y el artículo seleccionado" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25295,13 +25318,13 @@ msgstr "Empresa inválida para transacciones entre empresas." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Centro de Costo Inválido" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25322,11 +25345,11 @@ msgstr "" msgid "Invalid Discount" msgstr "Descuento no válido" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Documento inválido" @@ -25356,7 +25379,7 @@ msgstr "Agrupar por no válido" msgid "Invalid Item" msgstr "Artículo Inválido" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Artículos por defecto no válidos" @@ -25365,7 +25388,7 @@ msgstr "Artículos por defecto no válidos" msgid "Invalid Ledger Entries" msgstr "Entradas no válidas en el libro mayor" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25404,7 +25427,7 @@ msgstr "" msgid "Invalid Priority" msgstr "Prioridad inválida" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Configuración de pérdida de proceso no válida" @@ -25421,7 +25444,7 @@ msgstr "Cant. inválida" msgid "Invalid Quantity" msgstr "Cantidad inválida" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25433,8 +25456,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Programación no válida" @@ -25442,7 +25465,7 @@ msgstr "Programación no válida" msgid "Invalid Selling Price" msgstr "Precio de venta no válido" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Paquete de serie y lote no válidos" @@ -25459,7 +25482,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Valor no válido" @@ -25469,14 +25492,14 @@ msgid "Invalid Warehouse" msgstr "Almacén inválido" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Expresión de condición no válida" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25508,7 +25531,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "Clave de resultado no válida. Respuesta:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26471,10 +26494,6 @@ msgstr "Fecha de Emisión" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Pueden pasar algunas horas hasta que los valores de stock precisos sean visibles después de fusionar los elementos." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Se necesita a buscar Detalles del artículo." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26483,7 +26502,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "No es posible distribuir los cargos equitativamente cuando el importe total es cero, por favor configure 'Distribuir cargos basados en' como 'Cantidad'" @@ -26532,12 +26551,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26570,7 +26589,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26644,7 +26663,7 @@ msgstr "Elemento 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26805,7 +26824,7 @@ msgstr "Carrito de Productos" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26837,7 +26856,7 @@ msgstr "Carrito de Productos" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26846,12 +26865,12 @@ msgstr "Carrito de Productos" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26947,7 +26966,7 @@ msgstr "El código del producto no se puede cambiar por un número de serie" msgid "Item Code required at Row No {0}" msgstr "Código del producto requerido en la línea: {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Código de artículo: {0} no está disponible en el almacén {1}." @@ -27143,7 +27162,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Árbol de Productos" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "El grupo del artículo no se menciona en producto maestro para el elemento {0}" @@ -27297,7 +27316,7 @@ msgstr "Fabricante del artículo" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27328,7 +27347,7 @@ msgstr "Fabricante del artículo" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27336,8 +27355,8 @@ msgstr "Fabricante del artículo" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27394,7 +27413,7 @@ msgstr "Fabricante del artículo" msgid "Item Name" msgstr "Nombre del Producto" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27441,8 +27460,8 @@ msgstr "Configuración del precio del Producto" msgid "Item Price Stock" msgstr "Artículo Stock de Precios" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27454,7 +27473,7 @@ msgstr "El precio del producto aparece varias veces según la lista de precios, msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Precio del producto actualizado para {0} en Lista de Precios {1}" @@ -27499,7 +27518,7 @@ msgstr "Reabastecer producto" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "La fila de elemento {0}: {1} {2} no existe en la tabla '{1}' anterior" @@ -27615,7 +27634,7 @@ msgstr "Producto para Manufactura" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Variante del Producto" @@ -27734,7 +27753,7 @@ msgstr "Detalle de Impuestos" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27770,7 +27789,7 @@ msgstr "El elemento es obligatorio en la tabla de materias primas." msgid "Item is removed since no serial / batch no selected." msgstr "El artículo se elimina al no haberse seleccionado ningún número de serie / lote." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "El producto debe ser agregado utilizando el botón 'Obtener productos desde recibos de compra'" @@ -27784,7 +27803,7 @@ msgstr "Nombre del producto" msgid "Item operation" msgstr "Operación del artículo" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "La tasa del artículo se ha actualizado a cero ya que la opción Permitir tasa de valoración cero está marcada para el artículo {0}" @@ -27799,7 +27818,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "La tasa de valoración del artículo se recalcula teniendo en cuenta el importe del comprobante del costo de aterrizaje" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Traspaso de valoración de artículos en curso. El informe podría mostrar una valoración de artículos incorrecta." @@ -27815,10 +27834,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "El artículo {0} no puede añadirse como subconjunto de sí mismo" @@ -27827,6 +27842,10 @@ msgstr "El artículo {0} no puede añadirse como subconjunto de sí mismo" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Artículo {0} no puede ser pedido más que {1} contra pedido abierto {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27836,6 +27855,7 @@ msgstr "El elemento {0} no existe" msgid "Item {0} does not exist in the system or has expired" msgstr "El elemento {0} no existe en el sistema o ha expirado" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "El artículo {0} no existe." @@ -27868,6 +27888,10 @@ msgstr "El producto {0} ha llegado al fin de la vida útil el {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "El producto {0} ha sido ignorado ya que no es un elemento de stock" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "El artículo {0} ya está reservado/entregado contra el pedido de venta {1}." @@ -27900,7 +27924,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "El producto {0} no está activo o ha llegado al final de la vida útil" @@ -27932,10 +27956,6 @@ msgstr "El producto {0}: Con la cantidad ordenada {1} no puede ser menor que el msgid "Item {0}: {1} qty produced. " msgstr "Elemento {0}: {1} cantidad producida." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "Producto {0} no existe." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27986,6 +28006,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "El producto: {0} no existe en el sistema" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -28002,7 +28026,7 @@ msgstr "Catálogo de Productos" msgid "Items Filter" msgstr "Artículos Filtra" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Elementos requeridos" @@ -28042,7 +28066,7 @@ msgstr "Artículos para solicitud de materia prima" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "La tasa de artículos se ha actualizado a cero, ya que la opción Permitir tasa de valoración cero está marcada para los siguientes artículos: {0}" @@ -28052,7 +28076,7 @@ msgstr "La tasa de artículos se ha actualizado a cero, ya que la opción Permit msgid "Items to Be Repost" msgstr "Artículos a reenviar" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Los artículos a fabricar están obligados a extraer las materias primas asociadas." @@ -28122,7 +28146,7 @@ msgstr "Capacidad de Trabajo" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28185,20 +28209,19 @@ msgstr "Registro de tiempo de tarjeta de trabajo" msgid "Job Card and Capacity Planning" msgstr "Ficha de trabajo y planificación de capacidad" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "La ficha de trabajo {0} se ha completado" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "Tarjetas de Trabajo" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "Trabajo en pausa" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Trabajo comenzó" @@ -28261,11 +28284,19 @@ msgstr "Nombre del trabajador" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Tarjeta de trabajo {0} creada" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "Trabajo: {0} se ha activado para procesar transacciones fallidas" @@ -28611,7 +28642,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28732,7 +28763,7 @@ msgstr "Latitud" msgid "Lead" msgstr "Iniciativa" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Cliente potencial -> Prospecto" @@ -28826,7 +28857,7 @@ msgstr "Plazo de ejecución en días" msgid "Lead Type" msgstr "Tipo de iniciativa" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "El cliente potencial {0} se ha agregado al prospecto {1}." @@ -28975,7 +29006,7 @@ msgstr "Leyenda" msgid "Length (cm)" msgstr "Longitud (cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Menos de la cantidad" @@ -29004,7 +29035,7 @@ msgstr "Nivel (lista de materiales)" msgid "Lft" msgstr "Lft" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Pasivo" @@ -29034,7 +29065,7 @@ msgstr "Número de Licencia" msgid "License Plate" msgstr "Matrículas" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Límite cruzado" @@ -29130,8 +29161,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Error al vincular al cliente. Inténtalo de nuevo." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Error al vincular al proveedor. Inténtalo nuevamente." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29297,7 +29328,7 @@ msgstr "Detalle de razón perdida" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Razones perdidas" @@ -29383,7 +29414,7 @@ msgstr "Redención de Puntos de Lealtad" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Los Puntos de Fidelidad se calcularán a partir del gasto realizado (a través de la Factura de Venta), en base al factor de cobro mencionado." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Puntos de fidelidad: {0}" @@ -29621,7 +29652,7 @@ msgstr "Detalles del calendario de mantenimiento" msgid "Maintenance Schedule Item" msgstr "Programa de mantenimiento de artículos" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "El programa de mantenimiento no se genera para todos los productos. Por favor, haga clic en 'Generar programación'" @@ -29718,7 +29749,7 @@ msgstr "Visita de mantenimiento" msgid "Maintenance Visit Purpose" msgstr "Propósito de Visita de Mantenimiento" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "La fecha de inicio del mantenimiento no puede ser anterior de la fecha de entrega para {0}" @@ -29865,7 +29896,7 @@ msgstr "Obligatorio para el balance general" msgid "Mandatory For Profit and Loss Account" msgstr "Obligatorio para la cuenta de pérdidas y ganancias" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Falta obligatoria" @@ -29948,8 +29979,8 @@ msgstr "¡No se puede crear una entrada manual! Deshabilite la entrada automáti #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30171,7 +30202,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "Mapeando órdenes de subcontratación..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Mapeando {0} ..." @@ -30349,10 +30380,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30379,7 +30406,7 @@ msgstr "Material de consumo" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Consumo de Material para Fabricación" @@ -30490,7 +30517,7 @@ msgstr "Solicitud de Materiales" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Fecha de Solicitud de materiales" @@ -30540,7 +30567,7 @@ msgstr "Detalle de Solicitud de Material" msgid "Material Request Item" msgstr "Requisición de Materiales del Producto" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Requisición de materiales Nº" @@ -30562,7 +30589,7 @@ msgstr "Tipo de Requisición" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Requerimiento de material no creado, debido a que la cantidad de materia prima ya está disponible." @@ -30576,7 +30603,7 @@ msgstr "Máxima requisición de materiales {0} es posible para el producto {1} e msgid "Material Request used to make this Stock Entry" msgstr "Solicitud de materiales usados para crear esta entrada del inventario" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Requisición de materiales {0} cancelada o detenida" @@ -30696,14 +30723,14 @@ msgstr "Materiales de Proveedor" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Los materiales ya se recibieron contra el {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "Es necesario transferir los materiales al almacén de trabajos en curso para la ficha de trabajo {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30871,7 +30898,7 @@ msgstr "Megajulio" msgid "Megawatt" msgstr "Megavatio" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Mencione Tasa de valoración en el maestro de artículos." @@ -30906,7 +30933,7 @@ msgstr "Fusionar progreso" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Fusionar impuestos de varios documentos" @@ -31252,7 +31279,7 @@ msgstr "Gastos varios" msgid "Mismatch" msgstr "Discordancia" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Faltante" @@ -31261,11 +31288,11 @@ msgstr "Faltante" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Cuenta faltante" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31290,11 +31317,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Libro de finanzas faltante" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Bien terminado faltante" @@ -31302,7 +31329,7 @@ msgstr "Bien terminado faltante" msgid "Missing Formula" msgstr "Fórmula faltante" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Artículo faltante" @@ -31314,7 +31341,7 @@ msgstr "" msgid "Missing Payments App" msgstr "Aplicación de pagos faltantes" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31326,7 +31353,7 @@ msgstr "Número de serie del paquete faltante" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31334,12 +31361,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Falta la plantilla de correo electrónico para el envío. Por favor, establezca uno en la configuración de entrega." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Valor faltante" @@ -31588,17 +31615,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Se encontraron varios programas de fidelización para el cliente {}. Seleccione manualmente." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Reglas Precio múltiples existe con el mismo criterio, por favor, resolver los conflictos mediante la asignación de prioridad. Reglas de precios: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31618,7 +31645,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Existen varios ejercicios para la fecha {0}. Por favor, establece la compañía en el año fiscal" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "No se pueden marcar varios artículos como artículo terminado" @@ -31627,10 +31654,10 @@ msgid "Music" msgstr "Música" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Debe ser un número entero" @@ -31715,11 +31742,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31763,7 +31786,7 @@ msgstr "Necesita Anáisis" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "No se permiten cantidades negativas" @@ -31773,12 +31796,12 @@ msgstr "No se permiten cantidades negativas" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "La valoración negativa no está permitida" @@ -31856,8 +31879,8 @@ msgstr "Importe Neto" msgid "Net Amount (Company Currency)" msgstr "Importe neto (Divisa de la empresa)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Valor neto de activos como en" @@ -31907,7 +31930,7 @@ msgstr "Tasa neta por hora" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Beneficio neto" @@ -31915,7 +31938,7 @@ msgstr "Beneficio neto" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Beneficio neto (pérdidas" @@ -31929,11 +31952,11 @@ msgstr "Beneficio neto (pérdidas" msgid "Net Purchase Amount" msgstr "Cantidad de Compra Neto" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32177,7 +32200,7 @@ msgstr "" msgid "New Income" msgstr "Nuevo Ingreso" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32250,6 +32273,7 @@ msgid "New Task" msgstr "Nueva Tarea" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Nueva versión" @@ -32262,9 +32286,9 @@ msgstr "Almacén nuevo nombre" msgid "New Workplace" msgstr "Nuevo lugar de trabajo" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Nuevo límite de crédito es menor que la cantidad pendiente actual para el cliente. límite de crédito tiene que ser al menos {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32272,6 +32296,10 @@ msgstr "Nuevo límite de crédito es menor que la cantidad pendiente actual para msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Las nuevas facturas se generarán según el cronograma incluso si las facturas actuales están impagas o vencidas" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "La nueva fecha de lanzamiento debe estar en el futuro" @@ -32284,7 +32312,7 @@ msgstr "" msgid "New task" msgstr "Nueva tarea" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Se crean nuevas {0} reglas de precios" @@ -32348,16 +32376,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "No se encontró ningún cliente para transacciones entre empresas que representen a la empresa {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "No se encontraron clientes con las opciones seleccionadas." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "No se ha seleccionado ninguna Nota de Entrega para el Cliente {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32365,15 +32392,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Ningún producto con código de barras {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Ningún producto con numero de serie {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "No hay artículos seleccionados para transferir." @@ -32416,11 +32443,6 @@ msgstr "Sin permiso" msgid "No Purchase Orders were created" msgstr "No se crearon Órdenes de Compra" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "No hay registros para estas configuraciones." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Ninguna selección" @@ -32523,6 +32545,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "No se encontraron contactos con ID de correo electrónico." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "No hay datos para este período." @@ -32568,7 +32594,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "No hay ningún artículo disponible para transferencia." @@ -32605,10 +32631,6 @@ msgstr "No más secundarios en la izquierda" msgid "No more children on Right" msgstr "No más secundarios en la derecha" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32705,7 +32727,7 @@ msgstr "No se encontraron facturas pendientes" msgid "No outstanding invoices require exchange rate revaluation" msgstr "No hay facturas pendientes requieren revalorización del tipo de cambio" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "No se encontraron {0} pendientes para los {1} {2} que califican para los filtros que ha especificado." @@ -32743,15 +32765,20 @@ msgstr "" msgid "No record found" msgstr "No se han encontraron registros" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "No se encontraron registros en la tabla de asignación" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "No se encontraron registros en la tabla Facturas" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "No se encontraron registros en la tabla Pagos" @@ -32780,7 +32807,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32817,7 +32844,7 @@ msgstr "Sin valores" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32825,11 +32852,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "No se ha encontrado {0} para transacciones entre empresas." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "Nº" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32881,7 +32903,7 @@ msgstr "No ceros" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Ninguno de los productos tiene cambios en el valor o en la existencias." @@ -32892,8 +32914,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "Nos." @@ -32907,8 +32929,8 @@ msgstr "Nos." msgid "Not Applicable" msgstr "No aplicable" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "No disponible" @@ -32971,10 +32993,6 @@ msgstr "No iniciado" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "No permitir establecer un elemento alternativo para el Artículo {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "No se permite crear una dimensión contable para {0}" @@ -32991,10 +33009,6 @@ msgstr "No autorizado porque {0} excede los límites" msgid "Not authorized to edit frozen Account {0}" msgstr "No autorizado para editar la cuenta congelada {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "No en stock" @@ -33007,7 +33021,7 @@ msgstr "No disponible en stock" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33252,8 +33266,8 @@ msgid "Numeric Values" msgstr "Valores Numéricos" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Numero no se ha establecido en el archivo XML" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33428,12 +33442,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Una vez configurado, esta factura estará en espera hasta la fecha establecida" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "Una vez cerrada la Orden de Trabajo. No se puede reanudar." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Un cliente sólo puede formar parte de un único Programa de Fidelización." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33467,7 +33481,7 @@ msgstr "Sólo se admiten 'Entradas de pago' realizadas contra esta cuenta de ant msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Sólo se pueden utilizar archivos CSV y Excel para importar datos. Por favor, compruebe el formato de archivo que está intentando cargar" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33532,7 +33546,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "Sólo puede crearse una entrada {0} contra la orden de trabajo {1}" @@ -33599,7 +33613,7 @@ msgstr "Abrir Evento" msgid "Open Events" msgstr "Eventos abiertos" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Abrir vista de formulario" @@ -33752,7 +33766,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Detalles del saldo inicial" @@ -33782,7 +33796,7 @@ msgstr "Fecha de apertura" msgid "Opening Entry" msgstr "Asiento de apertura" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Creación de factura de apertura en curso" @@ -33810,7 +33824,7 @@ msgstr "Abrir el Artículo de la Factura" msgid "Opening Invoice Tool" msgstr "Herramienta de apertura de facturas" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "La factura de apertura tiene un ajuste de redondeo de {0}.

                    Se requiere la cuenta '{1}' para contabilizar estos valores. Por favor, configúrela en Empresa: {2}.

                    O bien, '{3}' puede habilitarse para no contabilizar ningún ajuste de redondeo." @@ -33819,7 +33833,7 @@ msgstr "La factura de apertura tiene un ajuste de redondeo de {0}.

                    Se re msgid "Opening Invoices" msgstr "Facturas de Apertura" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Resumen de Facturas de Apertura" @@ -33849,20 +33863,20 @@ msgstr "Se han creado facturas de venta de apertura." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Stock de apertura" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33871,7 +33885,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33914,7 +33928,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Costo de Operación" @@ -34005,7 +34019,7 @@ msgstr "Número de fila de operación" msgid "Operation Time" msgstr "Tiempo de Operación" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "El tiempo de operación debe ser mayor que 0 para {0}" @@ -34029,8 +34043,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "La operación {0} no pertenece a la orden de trabajo {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "La operación {0} tomará mas tiempo que la capacidad de producción de la estación {1}, por favor divida la tarea en varias operaciones" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34215,6 +34229,10 @@ msgstr "Oportunidad {0} creada" msgid "Optimize Route" msgstr "Optimizar Ruta" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34231,10 +34249,6 @@ msgstr "Opcional. Esta configuración es utilizada para filtrar la cuenta de otr msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Total de la orden" @@ -34520,7 +34534,7 @@ msgid "Out of stock" msgstr "Agotado" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34574,7 +34588,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34655,11 +34669,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Exceso de recolección permitido (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "Sobre recibo" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "Se ignora la recepción/entrega excesiva de {0} {1} para el artículo {2} porque tiene el rol {3} ." @@ -34676,14 +34690,14 @@ msgstr "Tolerancia de transferencia permitida (%)" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "Sobrefacturación de {0} {1} ignorada para el artículo {2} porque tiene el rol {3} ." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "Se ignora la sobrefacturación de {} porque tiene el rol {}." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34732,10 +34746,6 @@ msgstr "Tareas atrasadas" msgid "Overdue and Discounted" msgstr "Atrasado y con descuento" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Se superponen las puntuaciones entre {0} y {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Condiciones traslapadas entre:" @@ -34801,6 +34811,11 @@ msgstr "PAN No" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34848,7 +34863,7 @@ msgstr "Punto de venta POS" msgid "POS Additional Fields" msgstr "Campos adicionales del PdV" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "PdV cerrado" @@ -34946,8 +34961,8 @@ msgid "POS Invoice is not submitted" msgstr "La Factura de PdV no está validada" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "La factura de punto de venta no la crea el usuario {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35006,7 +35021,7 @@ msgstr "Entrada de Apertura de PdV - {0} está desactualizada. Cierre el PdV y c msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "Entrada de apertura de PdV cancelada" @@ -35027,7 +35042,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -35050,7 +35065,7 @@ msgstr "Método de Pago PdV" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "Perfil de PdV" @@ -35070,8 +35085,8 @@ msgstr "Usuario de Perfil PdV" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "El perfil de PdV no coincide con {}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35082,20 +35097,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "El perfil de punto de venta {} contiene el modo de pago {}. Por favor, elimínelos para desactivar este modo." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "El Perfil de PdV {} no pertenece a la Empresa {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "El Perfil de PdV {} no existe." +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "El perfil PdV {} está deshabilitado." +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35124,11 +35139,11 @@ msgstr "Configuración de PdV" msgid "POS Transactions" msgstr "Transacciones de PdV" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "Factura PdV {0} creada exitosamente" @@ -35147,7 +35162,7 @@ msgstr "Proyecto PSOA" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "Los números de paquete ya están en uso. Pruebe desde el número de paquete {0}" @@ -35772,7 +35787,7 @@ msgstr "Partes por millón" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35899,7 +35914,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35985,7 +36000,7 @@ msgstr "Producto específico de la Parte" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36006,7 +36021,7 @@ msgstr "Tipo de entidad" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Tipo de Tercero y Tercero es obligatorio para la Cuenta {0}" @@ -36042,7 +36057,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36552,7 +36567,7 @@ msgstr "Referencias del Pago" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36627,7 +36642,7 @@ msgstr "Calendario de Pago" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36649,7 +36664,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36749,8 +36764,8 @@ msgid "Payment Type" msgstr "Tipo de pago" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Tipo de pago debe ser uno de Recibir, Pagar y Transferencia Interna" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36956,11 +36971,11 @@ msgstr "Actividades pendientes para hoy" msgid "Pending processing" msgstr "Pendiente de procesamiento" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37476,12 +37491,12 @@ msgstr "ID de cliente a cuadros" msgid "Plaid Environment" msgstr "Ambiente a cuadros" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37503,7 +37518,7 @@ msgstr "Secreto a cuadros" msgid "Plaid Settings" msgstr "Configuración de cuadros" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Error de sincronización de transacciones a cuadros" @@ -37654,15 +37669,6 @@ msgstr "Plantas y maquinarias" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Reponga artículos y actualice la lista de selección para continuar. Para descontinuar, cancele la Lista de selección." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Seleccione una empresa" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Seleccione una empresa." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37670,7 +37676,6 @@ msgstr "Seleccione un cliente" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Seleccione un proveedor" @@ -37678,19 +37683,19 @@ msgstr "Seleccione un proveedor" msgid "Please Set Priority" msgstr "Por favor, establezca la prioridad" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Por favor, configure el grupo de proveedores en las configuraciones de compra." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Por favor especifique la cuenta" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Por favor, añada el rol 'Proveedor' al usuario {0}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Agregue el modo de pago y los detalles del saldo inicial." @@ -37706,7 +37711,7 @@ msgstr "Por favor, añada la Solicitud de Presupuesto a la barra lateral en los msgid "Please add Root Account for - {0}" msgstr "Por favor, añada una cuenta raíz para - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Agregue una Cuenta de Apertura Temporal en el Plan de Cuentas" @@ -37714,35 +37719,32 @@ msgstr "Agregue una Cuenta de Apertura Temporal en el Plan de Cuentas" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Por favor, añada al menos un nº de serie / nº de lote" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Por favor, añada la columna Cuenta bancaria" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Por favor, añada la cuenta al nivel raíz Empresa - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Agregue la cuenta a la empresa de nivel raíz - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Por favor, añada el rol {1} al usuario {0}." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Ajuste la cantidad o edite {0} para continuar." @@ -37784,7 +37786,7 @@ msgstr "Consulte con operaciones o con el costo operativo basado en FG." msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Por favor, compruebe el mensaje de error y tome las medidas necesarias para solucionar el error y luego reinicie el reenvío de nuevo." @@ -37797,11 +37799,11 @@ msgstr "Verifique su ID de cliente de Plaid y sus valores secretos" msgid "Please check your email to confirm the appointment" msgstr "Por favor, compruebe su correo electrónico para confirmar la cita" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Por favor, haga clic en 'Generar planificación'" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Por favor, haga clic en 'Generar planificación' para obtener el no. de serie del producto {0}" @@ -37817,15 +37819,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Comuníquese con cualquiera de los siguientes usuarios para ampliar los límites de crédito para {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Por favor, póngase en contacto con cualquiera de los siguientes usuarios para {} esta transacción." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Póngase en contacto con su administrador para ampliar los límites de crédito de {0}." @@ -37833,11 +37835,11 @@ msgstr "Póngase en contacto con su administrador para ampliar los límites de c msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Convierta la cuenta principal de la empresa secundaria correspondiente en una cuenta de grupo." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Cree un cliente a partir de un cliente potencial {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Por favor, cree comprobantes de desembolso contra facturas que tengan activada la opción \"Actualizar existencias\"." @@ -37849,7 +37851,7 @@ msgstr "Por favor, cree una nueva Dimensión Contable si es necesario." msgid "Please create purchase from internal sale or delivery document itself" msgstr "Por favor, cree la compra a partir de la venta interna o del propio documento de entrega" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Cree un recibo de compra o una factura de compra para el artículo {0}" @@ -37861,11 +37863,11 @@ msgstr "Por favor, elimine el paquete de productos {0}, antes de fusionar {1} en msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Por favor, no contabilice gastos de múltiples activos contra un único Activo." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "No cree más de 500 artículos a la vez." @@ -37890,8 +37892,8 @@ msgid "Please enable {0} in the {1}." msgstr "Por favor, habilite {0} en {1}." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Por favor, active {} en {} para permitir el mismo elemento en varias filas" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37902,12 +37904,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Asegúrese de que la cuenta {0} {1} sea una cuenta de pago. Puede cambiar el tipo de cuenta a pago o seleccionar una cuenta diferente." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Asegúrese de que la cuenta {} sea una cuenta de balance general." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Asegúrese de que {} cuenta {} sea una cuenta por cobrar." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37922,7 +37924,7 @@ msgstr "Por favor, introduzca la cuenta para el importe de cambio" msgid "Please enter Approving Role or Approving User" msgstr "Por favor, introduzca 'Función para aprobar' o 'Usuario de aprobación'---" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37938,7 +37940,7 @@ msgstr "Por favor, introduzca la Fecha de Entrega" msgid "Please enter Employee Id of this sales person" msgstr "Por favor, Introduzca ID de empleado para este vendedor" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Introduzca la cuenta de gastos" @@ -37947,7 +37949,7 @@ msgstr "Introduzca la cuenta de gastos" msgid "Please enter Item Code to get Batch Number" msgstr "Por favor, introduzca el código de artículo para obtener el número de lote" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Introduzca el código de artículo para obtener el número de lote" @@ -37983,7 +37985,7 @@ msgstr "Por favor, introduzca la fecha de referencia" msgid "Please enter Root Type for account- {0}" msgstr "Por favor, introduzca el tipo de cuenta- {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38113,8 +38115,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Por favor, importe las cuentas contra la empresa principal o habilite {} en el maestro de empresas." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38149,11 +38151,7 @@ msgstr "Por favor, mencione la lista de materiales actual y la nueva para la sus msgid "Please pull items from Delivery Note" msgstr "Por favor, extraiga los productos de la nota de entrega" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Por favor, corrija y vuelva a intentarlo." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38182,12 +38180,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "Seleccione Tipo de plantilla para descargar la plantilla" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Por favor seleccione 'Aplicar descuento en'" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Seleccione la Lista de Materiales contra el Artículo {0}" @@ -38203,9 +38201,9 @@ msgstr "Por favor, seleccione Cuenta Bancaria" msgid "Please select Category first" msgstr "Por favor, seleccione primero la categoría" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Por favor, seleccione primero el tipo de cargo" @@ -38215,8 +38213,8 @@ msgstr "Por favor, seleccione la empresa" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Seleccione Empresa y Fecha de publicación para obtener entradas" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38238,7 +38236,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Por favor, seleccione empresa ya existente para la creación del plan de cuentas" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Por favor, seleccione el Artículo Terminado para el Servicio {0}" @@ -38247,6 +38245,10 @@ msgstr "Por favor, seleccione el Artículo Terminado para el Servicio {0}" msgid "Please select Item Code first" msgstr "Seleccione primero el código del artículo" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Seleccione Estado de Mantenimiento como Completado o elimine Fecha de Finalización" @@ -38271,11 +38273,11 @@ msgstr "Por favor, seleccione fecha de publicación antes de seleccionar la Part msgid "Please select Posting Date first" msgstr "Por favor, seleccione fecha de publicación primero" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Por favor, seleccione la lista de precios" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Seleccione Cant. contra el Elemento {0}" @@ -38304,6 +38306,7 @@ msgid "Please select a BOM" msgstr "Seleccione una Lista de Materiales" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Por favor, seleccione la compañía" @@ -38311,11 +38314,12 @@ msgstr "Por favor, seleccione la compañía" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Primero seleccione una empresa." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Seleccione un Cliente" @@ -38324,7 +38328,7 @@ msgstr "Seleccione un Cliente" msgid "Please select a Delivery Note" msgstr "Por favor seleccione una nota de entrega" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Seleccione una orden de compra de subcontratación." @@ -38336,7 +38340,7 @@ msgstr "Seleccione un proveedor" msgid "Please select a Warehouse" msgstr "Por favor seleccione un almacén" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Seleccione primero una orden de trabajo." @@ -38352,6 +38356,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38385,22 +38390,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Por favor, seleccione una fila para crear una entrada de reenvío" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Por favor, seleccione un proveedor para obtener los pagos." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Por favor, seleccione un Pedido válido que esté configurado para Subcontratación." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Por favor, seleccione un valor para {0} quotation_to {1}" @@ -38409,7 +38418,7 @@ msgstr "Por favor, seleccione un valor para {0} quotation_to {1}" msgid "Please select an item code before setting the warehouse." msgstr "Por favor, seleccione un código de artículo antes de establecer el almacén." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38417,10 +38426,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38429,18 +38446,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Por favor, seleccione la cuenta correcta" @@ -38478,12 +38487,12 @@ msgstr "Por favor, seleccione los artículos que desea reservar." msgid "Please select items to unreserve." msgstr "Por favor, seleccione los artículos que desea cancelar la reserva." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Por favor, seleccione solo una fila para crear una entrada de reenvío" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Seleccione filas para crear entradas de reenvío" @@ -38492,8 +38501,8 @@ msgid "Please select the Company" msgstr "Por favor seleccione la Compañía" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Seleccione el tipo de Programa de niveles múltiples para más de una reglas de recopilación." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38516,20 +38525,16 @@ msgstr "Por favor, seleccione primero el tipo de documento." msgid "Please select the required filters" msgstr "Por favor, seleccione los filtros requeridos" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Por favor, seleccione un tipo de documento válido." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Por favor seleccione el día libre de la semana" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Por favor, seleccione primero {0}" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Por favor, establece \"Aplicar descuento adicional en\"" @@ -38558,8 +38563,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Configure la cuenta en el almacén {0} o la cuenta de inventario predeterminada en la compañía {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Por favor, establezca la dimensión contable {} en {}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38588,22 +38593,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Por favor, establezca Email/Teléfono para el contacto" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Por favor, establezca el código fiscal para el cliente '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Por favor, establezca el código fiscal para el cliente '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Por favor, establezca el código fiscal para la administración pública '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Por favor, establezca el código fiscal para la administración pública '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Por favor, ajuste la cuenta de activos fijos en {} contra {}." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38619,9 +38622,8 @@ msgid "Please set Root Type" msgstr "Por favor, configure el tipo de raíz" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Por favor, establezca el número de identificación fiscal para el cliente '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Por favor, establezca el número de identificación fiscal para el cliente '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38640,15 +38642,15 @@ msgid "Please set a Company" msgstr "Establezca una empresa" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Por favor, establezca un Centro de Costo para el Activo o establezca un Centro de Costo de Amortización del Activo para la Empresa {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Por favor, establezca una lista de vacaciones por defecto para la empresa {0}" @@ -38665,9 +38667,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Por favor, establezca una dirección en la empresa '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "Por favor, establezca una dirección en la empresa '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38685,25 +38686,22 @@ msgstr "Establezca al menos una fila en la Tabla de impuestos y cargos" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Por favor, defina la cuenta de bancos o caja predeterminados en el método de pago {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Establezca una cuenta bancaria o en efectivo predeterminada en el modo de pago {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Por favor, defina la cuenta de bancos o caja predeterminados en el método de pago {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Establezca la cuenta bancaria o en efectivo predeterminada en el modo de pago {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Por favor, establezca por defecto la Cuenta de Ganancias/Pérdidas de Cambio en la Empresa {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38734,11 +38732,11 @@ msgstr "Por favor, configurar el filtro basado en Elemento o Almacén" msgid "Please set one of the following:" msgstr "Establezca una de las siguientes opciones:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Por favor configura recurrente después de guardar" @@ -38746,7 +38744,7 @@ msgstr "Por favor configura recurrente después de guardar" msgid "Please set the Customer Address" msgstr "Por favor, configure la dirección del cliente" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Configure el Centro de Costo predeterminado en la empresa {0}." @@ -38801,7 +38799,7 @@ msgstr "Por favor, configure {0} en la empresa {1} para contabilizar las Gananci msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Por favor, establezca {0} en {1}, la misma cuenta que se utilizó en la factura original {2}." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Por favor, configura y habilita una cuenta de grupo con el tipo de cuenta - {0} para la empresa {1}." @@ -38809,7 +38807,7 @@ msgstr "Por favor, configura y habilita una cuenta de grupo con el tipo de cuent msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Comparta este correo electrónico con su equipo de soporte para que puedan encontrar y solucionar el problema." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Por favor, especifique la compañía" @@ -38819,8 +38817,8 @@ msgstr "Por favor, especifique la compañía" msgid "Please specify Company to proceed" msgstr "Por favor, especifique la compañía para continuar" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Por favor, especifique un ID de fila válida para la línea {0} en la tabla {1}" @@ -38828,11 +38826,11 @@ msgstr "Por favor, especifique un ID de fila válida para la línea {0} en la ta msgid "Please specify a {0} first." msgstr "Por favor, especifique un {0} primero." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Por favor, especifique al menos un atributo en la tabla" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Por favor indique la Cantidad o el Tipo de Valoración, o ambos" @@ -38840,6 +38838,14 @@ msgstr "Por favor indique la Cantidad o el Tipo de Valoración, o ambos" msgid "Please specify from/to range" msgstr "Por favor, especifique el rango (desde / hasta)" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Vuelve a intentarlo en 1 hora." @@ -39003,7 +39009,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39028,7 +39034,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39071,8 +39077,8 @@ msgstr "Fecha de Contabilización" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Fecha de entrada no puede ser fecha futura" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39080,7 +39086,7 @@ msgstr "Fecha de entrada no puede ser fecha futura" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39273,6 +39279,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "Presidente" @@ -39362,7 +39372,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Ejercicio anterior no está cerrado" @@ -39504,7 +39514,7 @@ msgstr "Lista de precios del país" msgid "Price List Currency" msgstr "Divisa de la lista de precios" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "El tipo de divisa para la lista de precios no ha sido seleccionado" @@ -39625,7 +39635,7 @@ msgstr "Precio no dependiente de UOM" msgid "Price Per Unit ({0})" msgstr "Precio por Unidad ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "El precio no está establecido para el artículo." @@ -39736,7 +39746,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "La regla de precios {0} se actualiza" @@ -39944,8 +39954,8 @@ msgid "Priorities" msgstr "Prioridades" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "La prioridad no puede ser menor a 1." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40126,7 +40136,7 @@ msgstr "Proceso de suscripción" msgid "Process in Single Transaction" msgstr "Proceso en Transacción Única" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40252,7 +40262,7 @@ msgstr "Conjunto / paquete de productos" msgid "Product Bundle Balance" msgstr "Balance de paquete de productos" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40277,7 +40287,7 @@ msgstr "Ayuda de 'conjunto / paquete de productos'" msgid "Product Bundle Item" msgstr "Artículo del conjunto de productos" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40480,7 +40490,7 @@ msgstr "Productos" msgid "Profit & Loss" msgstr "Perdidas & Ganancias" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Beneficio este año" @@ -40509,6 +40519,10 @@ msgstr "Pérdidas y ganancias" msgid "Profit and Loss Statement" msgstr "Cuenta de pérdidas y ganancias" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40517,8 +40531,8 @@ msgstr "Cuenta de pérdidas y ganancias" msgid "Profit and Loss Summary" msgstr "Resumen de pérdidas y ganancias" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Ganancias del año" @@ -40591,7 +40605,7 @@ msgstr "Estado del proyecto" msgid "Project Summary" msgstr "Resumen del proyecto" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Resumen del proyecto para {0}" @@ -40671,7 +40685,7 @@ msgstr "Seguimiento de stock por proyecto" msgid "Project wise Stock Tracking " msgstr "Seguimiento preciso del stock--" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Los datos del proyecto no están disponibles para el presupuesto" @@ -40722,7 +40736,7 @@ msgstr "Cantidad proyectada" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40868,7 +40882,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Perspectivas comprometidas pero no convertidas" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40901,9 +40915,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "Cuenta de Gastos Provisionales" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Beneficio provisional / pérdida (Crédito)" @@ -41131,8 +41145,8 @@ msgstr "Tendencias de compras" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "La factura de compra no se puede realizar contra un activo existente {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "La Factura de Compra {0} ya existe o se encuentra validada" @@ -41173,7 +41187,7 @@ msgstr "Facturas de compra" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41197,11 +41211,11 @@ msgstr "Facturas de compra" msgid "Purchase Order" msgstr "Orden de compra (OC)" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Monto de orden de compra" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Monto del pedido de compra (moneda de la compañía)" @@ -41216,7 +41230,7 @@ msgstr "Monto del pedido de compra (moneda de la compañía)" msgid "Purchase Order Analysis" msgstr "Análisis de órdenes de compra" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Fecha de Orden de Compra" @@ -41265,8 +41279,8 @@ msgid "Purchase Order Required" msgstr "Orden de compra requerida" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Se requiere orden de compra para el artículo {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41325,8 +41339,8 @@ msgid "Purchase Orders to Receive" msgstr "Órdenes de compra para recibir" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Las órdenes de compra {0} no están vinculadas" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41415,8 +41429,8 @@ msgid "Purchase Receipt Required" msgstr "Recibo de compra requerido" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Se requiere recibo de compra para el artículo {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41435,8 +41449,8 @@ msgid "Purchase Receipt Trends " msgstr "Tendencias de recibos de compra " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "El recibo de compra no tiene ningún artículo para el que esté habilitada la opción Conservar muestra." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41663,7 +41677,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41682,7 +41696,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41747,7 +41761,7 @@ msgstr "Cant. después de la transacción" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41784,7 +41798,7 @@ msgstr "Cant. por unidad" msgid "Qty To Manufacture" msgstr "Cantidad para producción" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "La Cant. a fabricar ({0}) no puede ser una fracción para la UdM {2}. Para permitir esto, deshabilite '{1}' en la UdM {2}." @@ -41879,7 +41893,7 @@ msgstr "Cantidad para ser consumida" msgid "Qty to Bill" msgstr "Cantidad a facturar" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Cant. a construir" @@ -42065,7 +42079,7 @@ msgstr "Inspeccion de calidad" msgid "Quality Inspection Analysis" msgstr "Análisis de inspección de calidad" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42142,7 +42156,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Inspección(es) de calidad" @@ -42225,7 +42239,7 @@ msgstr "Revisión de calidad" msgid "Quality Review Objective" msgstr "Objetivo de revisión de calidad" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42269,12 +42283,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42425,7 +42439,7 @@ msgstr "Se requiere cantidad" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42453,11 +42467,11 @@ msgstr "Cantidad debe ser mayor que 0" msgid "Quantity to Manufacture" msgstr "Cantidad a fabricar" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "La cantidad a fabricar no puede ser cero para la operación {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "La cantidad a producir debe ser mayor que 0." @@ -42465,6 +42479,10 @@ msgstr "La cantidad a producir debe ser mayor que 0." msgid "Quantity to Scan" msgstr "Cantidad a escanear" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42490,7 +42508,7 @@ msgstr "Trimestre {0} {1}" msgid "Query Route String" msgstr "Cadena de Ruta de Consulta" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42730,7 +42748,7 @@ msgstr "Propuesto por (Email)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42914,7 +42932,7 @@ msgid "Rate at which this tax is applied" msgstr "Valor por el cual el impuesto es aplicado" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43233,7 +43251,7 @@ msgstr "Motivo de Poner en Espera" msgid "Reason for Failure" msgstr "Motivo del fracaso" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Motivo de espera" @@ -43475,8 +43493,8 @@ msgstr "La lista de receptores se encuentra vacía. Por favor, cree una lista de msgid "Receiving" msgstr "Recepción" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Pedidos recientes" @@ -43652,6 +43670,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43702,7 +43724,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "El recursivo sobre cantidad no puede ser menor que 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "El sistema no admite descuentos recursivos con condiciones mixtas" @@ -43782,7 +43804,7 @@ msgstr "Referencia #" msgid "Reference #{0} dated {1}" msgstr "Referencia #{0} con fecha {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Fecha de referencia para el descuento por pronto pago" @@ -44074,8 +44096,8 @@ msgid "Rejected Warehouse" msgstr "Almacén rechazado" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Almacén Rechazado y Almacén Aceptado no pueden ser el mismo." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44181,7 +44203,7 @@ msgstr "Observación" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44220,7 +44242,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "Remover el artículo si los cargos no son aplicables a ese artículo" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Elementos eliminados que no han sido afectados en cantidad y valor" @@ -44372,7 +44394,7 @@ msgstr "Reportar Error" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44455,7 +44477,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44501,6 +44523,15 @@ msgstr "Traspaso iniciado en segundo plano" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44585,7 +44616,7 @@ msgstr "Solicitado por fecha" msgid "Reqd Qty (BOM)" msgstr "Cant. requerida (LdM)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Requerido por fecha" @@ -44701,11 +44732,11 @@ msgstr "Cant. Solicitada" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Cant. solicitada: Cantidad solicitada para la compra, pero no ordenada." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Sitio solicitante" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Solicitante" @@ -44884,6 +44915,10 @@ msgstr "Reservar stock" msgid "Reserve Warehouse" msgstr "Almacén de reserva" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44922,8 +44957,8 @@ msgid "Reserved Qty" msgstr "Cant. Reservada" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "La cantidad reservada ({0}) no puede ser una fracción. Para permitirlo, deshabilite '{1}' en la UdM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "La cantidad reservada ({0}) no puede ser una fracción. Para permitirlo, deshabilite '{1}' en la UdM {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44967,7 +45002,7 @@ msgstr "Cantidad Reservada" msgid "Reserved Quantity for Production" msgstr "Cantidad reservada para producción" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Número de serie reservado." @@ -44983,13 +45018,13 @@ msgstr "Número de serie reservado." #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Existencias Reservadas" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Stock reservado para lote" @@ -45483,6 +45518,10 @@ msgstr "El tipo de cambio devuelto no es ni entero ni flotante." msgid "Returns" msgstr "Devoluciones" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45907,11 +45946,11 @@ msgstr "Nombre de Enrutamiento" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Fila #{0}: No se puede devolver más de {1} para el producto {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Fila # {0}: Por favor, añada la serie y el lote para el artículo {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45995,23 +46034,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "Fila #{0}: El lote nº {1} ya está seleccionado." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Fila #{0}: No se puede asignar más de {1} contra la condición de pago {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -46087,13 +46126,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Fila #{0}: El umbral acumulativo no puede ser menor que el umbral de transacción única" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46105,7 +46147,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46113,12 +46155,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46130,7 +46172,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Fila #{0}: No se encontró la lista de materiales predeterminada para el artículo FG {1}" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Fila #{0}: se requiere la Fecha de Inicio de Depreciación" @@ -46138,6 +46180,10 @@ msgstr "Fila #{0}: se requiere la Fecha de Inicio de Depreciación" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Fila #{0}: Entrada duplicada en Referencias {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Fila #{0}: La fecha de entrega esperada no puede ser anterior a la fecha de la orden de compra" @@ -46150,11 +46196,18 @@ msgstr "Fila #{0}: Cuenta de gastos no configurada para el artículo {1}. {2}" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Fila #{0}: La cantidad de artículos terminados no puede ser cero" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46177,8 +46230,8 @@ msgstr "Fila #{0}: El Artículo terminado debe ser {1}" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46190,7 +46243,7 @@ msgstr "Fila #{0}: Para {1}, puede seleccionar el documento de referencia solo s msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Fila #{0}: Para {1}, puede seleccionar el documento de referencia solo si se debita la cuenta" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46202,6 +46255,10 @@ msgstr "Fila #{0}: La fecha de inicio no puede ser anterior a la fecha de finali msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Fila # {0}: Elemento agregado" @@ -46230,16 +46287,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Fila # {0}: el artículo {1} no es un artículo serializado / en lote. No puede tener un No de serie / No de lote en su contra." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46255,12 +46312,16 @@ msgstr "Fila #{0}: El artículo {1} no es un artículo de stock" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46271,15 +46332,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Fila #{0}: Asiento {1} no tiene cuenta {2} o ya compara con otro bono" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46291,24 +46352,48 @@ msgstr "Fila #{0}: No se permite cambiar de proveedores debido a que la Orden de msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Fila #{0}: Solo {1} disponible para reservar para el artículo {2}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Fila #{0}: Por favor, seleccione el código del artículo en Artículos de ensamblaje" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Fila #{0}: Por favor, seleccione el nº de lista de materiales en Artículos de ensamblaje" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46324,6 +46409,10 @@ msgstr "Fila #{0}: Configure la cantidad de pedido" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Fila #{0}: Por favor, actualice la cuenta de ingresos/gastos diferidos en la fila de artículos o la cuenta por defecto en el maestro de empresas" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46343,8 +46432,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Fila #{0}: La cantidad debe ser un número positivo" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Fila #{0}: La cantidad debe ser menor o igual a la cantidad disponible para reservar (cantidad real - cantidad reservada) {1} para Artículo {2} contra el lote {3} en el almacén {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46366,7 +46455,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Fila # {0}: La cantidad del artículo {1} no puede ser cero." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46374,17 +46463,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Fila #{0}: La cantidad a reservar para el artículo {1} debe ser superior a 0." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Fila #{0}: La tasa debe ser la misma que {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Fila #{0}: Tipo de documento de referencia debe ser uno de la orden de compra, factura de compra o de entrada de diario" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Fila # {0}: el tipo de documento de referencia debe ser pedido de cliente, factura de venta, asiento de diario o reclamación." @@ -46404,11 +46493,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46418,7 +46507,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46427,6 +46516,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Fila # {0}: El número de serie {1} no pertenece al lote {2}" @@ -46439,7 +46532,7 @@ msgstr "Fila #{0}: El número de serie {1} del artículo {2} no está disponible msgid "Row #{0}: Serial No {1} is already selected." msgstr "Fila #{0}: El número de serie {1} ya está seleccionado." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46463,7 +46556,7 @@ msgstr "Fila #{0}: Asignar Proveedor para el elemento {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46532,7 +46625,7 @@ msgstr "Fila #{0}: Stock no disponible para reservar para el artículo {1} en el msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46540,19 +46633,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "Fila nº {0}: el lote {1} ya ha caducado." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Fila #{0}: El almacén {1} no es un almacén secundario de un almacén de grupo {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Línea #{0}: tiene conflictos de tiempo con la linea {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Fila #{0}: El número total de amortizaciones no puede ser menor o igual al número inicial de amortizaciones contabilizadas" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46564,11 +46665,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Fila #{0}: No se puede utilizar la dimensión de inventario '{1}' en la conciliación de stock para modificar la cantidad o la tasa de valoración. La conciliación de stock con las dimensiones de inventario está destinada únicamente a realizar asientos de apertura." @@ -46576,6 +46681,19 @@ msgstr "Fila #{0}: No se puede utilizar la dimensión de inventario '{1}' en la msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Fila #{0}: Debe seleccionar un activo para el artículo {1}." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Fila #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Fila #{0}: {1} no puede ser negativo para el elemento {2}" @@ -46592,6 +46710,14 @@ msgstr "Fila # {0}: {1} es obligatorio para crear las {2} facturas de apertura." msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Fila #{0}: {1} de {2} debería ser {3}. Por favor, actualice {1} o seleccione una cuenta diferente." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46632,71 +46758,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Fila # {}: la moneda de {} - {} no coincide con la moneda de la empresa." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Fila #{}: Libro de Finanzas no debe estar vacío, ya que está utilizando múltiples." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Fila n.° {}: La Factura de PdV {} ha sido {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Fila # {}: Factura de PdV {} no es contra el cliente {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Fila # {}: la Factura de PdV {} aún no se ha validado" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Fila #{}: Por favor, asigne la tarea a un miembro." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Fila #{}: Por favor, utilice un Libro de Finanzas diferente." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Fila # {}: No de serie {} no se puede devolver porque no se tramitó en la factura original {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Fila #{}: La factura original {} de la factura de devolución {} no está consolidada." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Fila #{}: No puede añadir cantidades positivas en una factura de devolución. Por favor, elimine el artículo {} para completar la devolución." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Fila #{}: el artículo {} ya ha sido seleccionado." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Fila #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Fila # {}: {} {} no existe." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Fila #{}: {} {} no pertenece a la empresa {}. Por favor, seleccione una {} válida." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Fila n.° {0}: Se requiere almacén. Establezca un almacén predeterminado para el artículo {1} y la empresa {2}" @@ -46709,10 +46774,6 @@ msgstr "Fila {0}: se requiere operación contra el artículo de materia prima {1 msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "Fila {0} la cantidad recogida es menor a la requerida, se requiere {1} {2} adicional." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Fila {0}# El artículo {1} no se encontró en la tabla 'Materias primas suministradas' en {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Fila {0}: La cantidad aceptada y la cantidad rechazada no pueden ser cero al mismo tiempo." @@ -46733,19 +46794,19 @@ msgstr "Fila {0}: Avance contra el Cliente debe ser de crédito" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Fila {0}: Avance contra el Proveedor debe ser debito" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Fila {0}: El importe asignado {1} debe ser menor o igual al importe pendiente de la factura {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Fila {0}: El importe asignado {1} debe ser menor o igual al importe de pago restante {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Fila {0}: Como {1} está activada, no se pueden añadir materias primas a la entrada {2} . Utilice la entrada {3} para consumir materias primas." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Fila {0}: Lista de materiales no se encuentra para el elemento {1}" @@ -46761,11 +46822,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Línea {0}: El factor de conversión es obligatorio" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Fila {0}: El centro de costes {1} no pertenece a la empresa {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Fila {0}: Centro de Costos es necesario para un elemento {1}" @@ -46793,24 +46854,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Fila {0}: la fecha de vencimiento en la tabla de condiciones de pago no puede ser anterior a la fecha de publicación." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Fila {0}: La referencia del artículo de la nota de entrega o del artículo empaquetado es obligatoria." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Fila {0}: Tipo de cambio es obligatorio" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46831,6 +46892,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Fila {0}: Tiempo Desde y Tiempo Hasta es obligatorio." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Fila {0}: Tiempo Desde y Tiempo Hasta de {1} se solapan con {2}" @@ -46852,8 +46916,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Fila {0}: Referencia no válida {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Fila {0}: Plantilla de impuesto del artículo actualizada según la validez y la tasa aplicada" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46883,7 +46947,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Fila {0}: La cantidad embalada debe ser igual a la cantidad {1} ." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Fila {0}: Ya se creó el albarán para el artículo {1}." @@ -46907,7 +46971,7 @@ msgstr "Línea {0}: El pago para la compra/venta siempre debe estar marcado como msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Línea {0}: Por favor, verifique 'Es un anticipo' para la cuenta {1} si se trata de una entrada de pago anticipado." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Fila {0}: proporcione una referencia de artículo de nota de entrega o artículo empaquetado válida." @@ -46915,14 +46979,14 @@ msgstr "Fila {0}: proporcione una referencia de artículo de nota de entrega o a msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Fila {0}: Por favor, seleccione una lista de materiales para el artículo {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Fila {0}: Por favor, seleccione una lista de materiales activa para el artículo {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Fila {0}: Por favor, seleccione una lista de materiales válida para el artículo {1}." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Fila {0}: establezca el Motivo de exención de impuestos en Impuestos y cargos de ventas" @@ -46939,11 +47003,11 @@ msgstr "Fila {0}: establezca el código correcto en Modo de pago {1}" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Fila {0}: El proyecto debe ser el mismo que el establecido en la hoja de horas: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Fila {0}: La factura de compra {1} no tiene impacto en el stock." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Fila {0}: La cantidad no puede ser mayor que {1} para el artículo {2}." @@ -46951,7 +47015,7 @@ msgstr "Fila {0}: La cantidad no puede ser mayor que {1} para el artículo {2}." msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Fila {0}: La UdM de cantidad en stock no puede ser cero." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Fila {0}: La cantidad debe ser mayor que 0." @@ -46963,7 +47027,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46988,10 +47052,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Fila {0}: el artículo {1}, la cantidad debe ser un número positivo" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Fila {0}: La cuenta {3} {1} no pertenece a la empresa {2}" @@ -47044,15 +47108,19 @@ msgstr "Fila {0}: {1} {2} no puede ser la misma que {3} (Cuenta de la tercera pa msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Línea {0}: {1} {2} no coincide con {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Fila {0}: {2} El elemento {1} no existe en {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Fila {1}: la cantidad ({0}) no puede ser una fracción. Para permitir esto, deshabilite '{2}' en UOM {3}." @@ -47091,8 +47159,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Filas: {0} tienen 'Entrada de pago' como reference_type. No debe establecerse manualmente." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Las filas {0} en la sección {1} no son válidas. El nombre de referencia debe apuntar a una entrada de pago o de diario válida." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47152,10 +47220,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47223,7 +47287,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "El SLA está en espera desde {0}" @@ -47522,7 +47586,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47739,8 +47803,8 @@ msgstr "El Pedido de Venta {0} ya existe contra el Pedido de Compra del Cliente msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48147,7 +48211,7 @@ msgstr "Mismo articulo" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Ya se ha introducido la misma combinación de artículo y almacén." @@ -48179,7 +48243,7 @@ msgstr "Almacenamiento de Muestras de Retención" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Tamaño de muestra" @@ -48289,7 +48353,7 @@ msgstr "Cantidad escaneada" msgid "Schedule Date" msgstr "Fecha de programa" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48300,7 +48364,7 @@ msgstr "" msgid "Scheduled Date" msgstr "Fecha prevista" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48588,7 +48652,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "Seleccione Dimensión Contable." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Seleccionar artículo alternativo" @@ -48609,7 +48673,7 @@ msgid "Select BOM and Qty for Production" msgstr "Seleccione la lista de materiales y Cantidad para Producción" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Seleccione el número de lote" @@ -48674,7 +48738,7 @@ msgstr "Seleccionar dimensión" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Seleccione los empleados" @@ -48699,7 +48763,7 @@ msgstr "Seleccionar articulos" msgid "Select Items based on Delivery Date" msgstr "Seleccionar Elementos según la Fecha de Entrega" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "Seleccionar artículos para inspección de calidad" @@ -48729,7 +48793,7 @@ msgstr "Seleccione la dirección del trabajador" msgid "Select Loyalty Program" msgstr "Seleccionar un Programa de Lealtad" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48743,13 +48807,13 @@ msgid "Select Quantity" msgstr "Seleccione cantidad" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Seleccione el número de serie" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Seleccione Serie y Lote" @@ -48840,6 +48904,7 @@ msgid "Select an Item Group." msgstr "Seleccione un grupo de artículos." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Seleccione una cuenta para imprimir en la moneda de la cuenta" @@ -48982,10 +49047,14 @@ msgstr "Comprobantes seleccionados" msgid "Selected date is" msgstr "La fecha seleccionada es" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "El documento seleccionado debe estar en estado validado" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49133,7 +49202,7 @@ msgid "Send Emails to Suppliers" msgstr "Enviar correos electrónicos a proveedores" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Enviar mensaje SMS" @@ -49217,7 +49286,7 @@ msgstr "Falta el paquete de serie / lote" msgid "Serial / Batch No" msgstr "Número de serie / lote" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Números de serie / lote" @@ -49274,10 +49343,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49319,6 +49389,10 @@ msgstr "No. de serie / lote" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Serie sin recuento" @@ -49336,7 +49410,7 @@ msgstr "Número de serie del libro mayor" msgid "Serial No Range" msgstr "Rango de números de serie" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49381,8 +49455,8 @@ msgid "Serial No and Batch" msgstr "Número de serie y de lote" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "El número de serie y el selector de lote no se pueden utilizar cuando está activada la opción Utilizar campos de serie / lote." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49393,7 +49467,7 @@ msgstr "El número de serie y el selector de lote no se pueden utilizar cuando e msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "El número de serie es obligatorio" @@ -49413,21 +49487,18 @@ msgstr "Número de serie {0} ya escaneado" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "El número de serie {0} no pertenece a la Nota de entrega {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Número de serie {0} no pertenece al producto {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "El número de serie {0} no existe" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "El número de serie {0} no existe" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49442,25 +49513,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "El número de serie {0} no está presente en el {1} {2}, por lo tanto no puede devolverlo contra el {1} {2}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Número de serie {0} tiene un contrato de mantenimiento hasta {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Número de serie {0} está en garantía hasta {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Número de serie {0} no encontrado" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Número de serie: {0} ya se ha transferido a otra factura de punto de venta." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49480,7 +49552,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "Los números de serie se crearon correctamente" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Los números de serie se reservan en las entradas de reserva de existencias, debe anular su reserva antes de continuar." @@ -49581,6 +49653,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49629,7 +49705,7 @@ msgstr "Reserva de series y lotes" msgid "Serial and Batch Summary" msgstr "Resumen de serie y lote" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Número de serie {0} ha sido ingresado mas de una vez" @@ -49637,122 +49713,12 @@ msgstr "Número de serie {0} ha sido ingresado mas de una vez" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Secuencia" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Series para la Entrada de Depreciación de Activos (Entrada de Diario)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "La secuencia es obligatoria" @@ -49834,7 +49800,7 @@ msgid "Service Item {0} is disabled." msgstr "El artículo de servicio {0} está deshabilitado." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "El artículo de servicio {0} debe ser un artículo que no es de stock." @@ -49943,12 +49909,12 @@ msgid "Service Stop Date" msgstr "Fecha de Finalización del Servicio" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "La Fecha de Detención del Servicio no puede ser posterior a la Fecha de Finalización del Servicio" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "La Fecha de Detención del Servicio no puede ser anterior a la Decha de Inicio del Servicio" @@ -49972,7 +49938,7 @@ msgstr "Establecer avances y asignar (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Establecer tarifa básica manualmente" @@ -49987,7 +49953,7 @@ msgstr "Establecer Proveedor Predeterminado" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50092,7 +50058,7 @@ msgstr "Establecer nombres seriales y de lotes basados en la serie de nombres" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50110,7 +50076,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50136,7 +50102,7 @@ msgstr "Establecer como cerrado/a" msgid "Set as Completed" msgstr "Establecer como completado" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Establecer como perdido" @@ -50234,15 +50200,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Establezca {0} en la categoría de activos {1} para la empresa {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Establezca {0} en la categoría de activos {1} o en la empresa {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Establecer {0} en la empresa {1}" @@ -50310,7 +50276,7 @@ msgid "Setting up company" msgstr "Creando compañía" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50738,6 +50704,7 @@ msgid "Show Completed" msgstr "Mostrar completado" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50940,7 +50907,7 @@ msgstr "Mostrar solo el término próximo inmediato" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Mostrar entradas pendientes" @@ -51043,11 +51010,11 @@ msgstr "" msgid "Simultaneous" msgstr "Simultáneo" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Dado que hay una pérdida de proceso de {0} unidades para el producto terminado {1}, debe reducir la cantidad en {0} unidades para el producto terminado {1} en la Tabla de Artículos." @@ -51108,7 +51075,7 @@ msgstr "Omitir transferencia de material a WIP" msgid "Skip Material Transfer to WIP Warehouse" msgstr "Saltar transferencia de material al almacén de WIP" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51164,8 +51131,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Algo salió mal, por favor inténtalo de nuevo." +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51232,7 +51199,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51269,8 +51236,8 @@ msgstr "Tipo de Fuente" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51400,7 +51367,7 @@ msgstr "Problema de División" msgid "Split Qty" msgstr "Cantidad dividida" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51413,7 +51380,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Dividir {0} {1} en {2} filas según las condiciones de pago" @@ -51466,7 +51438,7 @@ msgstr "Nombre del Escenario" msgid "Stale Days" msgstr "Días Pasados" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Los días de inactividad deben comenzar desde 1" @@ -51531,10 +51503,26 @@ msgstr "Plantilla de impuestos estándar que puede aplicarse a todas las transac msgid "Standing Name" msgstr "Nombre en uso" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Iniciar / Reanudar" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "La fecha de inicio no puede ser anterior a la fecha actual" @@ -51564,7 +51552,7 @@ msgstr "La hora de inicio no puede ser mayor o igual que la hora de finalizació msgid "Start Timer" msgstr "Iniciar Temporizador" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51593,10 +51581,14 @@ msgstr "La fecha de inicio debe ser menor que la fecha de finalización para el msgid "Start date should be less than end date for task {0}" msgstr "La fecha de inicio debe ser menor que la fecha de finalización para la tarea {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51677,7 +51669,7 @@ msgstr "Ilustración de estado" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "El estado debe ser cancelado o completado" @@ -51805,7 +51797,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51887,17 +51879,21 @@ msgstr "" msgid "Stock Entry Type" msgstr "Tipo de entrada de stock" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "La entrada de stock ya se ha creado para esta lista de selección" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Entrada de stock {0} creada" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Se ha creado la entrada de stock {0}" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52063,7 +52059,7 @@ msgstr "Cantidad de inventario proyectado" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52146,7 +52142,7 @@ msgstr "Configuración de ajuste de valoración de stock" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52171,15 +52167,15 @@ msgstr "Reservas de stock" msgid "Stock Reservation Entries Cancelled" msgstr "Entradas de reserva de stock canceladas" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Entradas de reserva de stock creadas" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52349,7 +52345,7 @@ msgstr "Transacciones de Stock" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52508,9 +52504,9 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "Stock no disponible para el artículo {0} en el almacén {1}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "No hay suficiente stock para el código de artículo: {0} en el almacén {1}. Hay una cantidad disponible de {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52528,7 +52524,7 @@ msgstr "Las transacciones de existencias anteriores a los días mencionados no p msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "El stock se reservará tras la presentación del Recibo de compra creado contra la Solicitud de material para la Orden de venta." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "No es posible congelar las existencias ni las cuentas porque se están procesando las entradas retroactivas. Inténtelo de nuevo más tarde." @@ -52543,7 +52539,7 @@ msgstr "Piedra" msgid "Stop Reason" msgstr "Detener la razón" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "La Órden de Trabajo detenida no se puede cancelar, desactívela primero para cancelarla" @@ -52551,7 +52547,7 @@ msgstr "La Órden de Trabajo detenida no se puede cancelar, desactívela primero #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Sucursales" @@ -52765,7 +52761,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52837,7 +52833,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52875,7 +52871,7 @@ msgstr "Artículo de servicio de orden de subcontratación" msgid "Subcontracting Order Supplied Item" msgstr "Orden de subcontratación Artículo suministrado" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Orden de subcontratación {0} creada." @@ -52949,7 +52945,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52968,7 +52964,7 @@ msgstr "" msgid "Subdivision" msgstr "Subdivisión" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Fallo al validar" @@ -52997,7 +52993,7 @@ msgstr "Valide esta Orden de Trabajo para su posterior procesamiento." msgid "Submit your Quotation" msgstr "Validar su presupuesto" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53139,7 +53135,7 @@ msgstr "Configuraciones exitosas" msgid "Successful" msgstr "Exitoso" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Reconciliado exitosamente" @@ -53317,7 +53313,7 @@ msgstr "Cant. Suministrada" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53499,7 +53495,7 @@ msgstr "Fecha de factura de proveedor" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Factura de proveedor No." @@ -53647,7 +53643,7 @@ msgstr "Comparación de cotizaciones de proveedores" msgid "Supplier Quotation Item" msgstr "Ítem de Presupuesto de Proveedor" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Cotización de proveedor {0} creada" @@ -53832,10 +53828,6 @@ msgstr "Equipo de soporte" msgid "Support Tickets" msgstr "Tickets de Soporte" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53922,7 +53914,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "Resumen de Computación TDS" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53983,8 +53975,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "El activo objetivo {0} no pertenece a la empresa {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "El activo objetivo {0} debe ser un activo compuesto" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54093,11 +54085,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54573,7 +54565,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Base imponible" @@ -54785,7 +54777,7 @@ msgstr "Televisión" msgid "Template Item" msgstr "Elemento de plantilla" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Elemento de plantilla seleccionado" @@ -55092,23 +55084,27 @@ msgstr "Tesla" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "El campo 'Desde Paquete Nro' no debe estar vacío ni su valor es menor a 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "El acceso a la solicitud de cotización del portal está deshabilitado. Para permitir el acceso, habilítelo en la configuración del portal." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "La lista de materiales que será sustituida" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "La campaña '{0}' ya existe para {1} '{2}'" @@ -55133,6 +55129,10 @@ msgstr "Las entradas del libro mayor y los saldos de cierre se procesarán en se msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Las entradas de libro mayor se cancelarán en segundo plano, lo que puede tardar unos minutos." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "El Programa de Lealtad no es válido para la Empresa seleccionada" @@ -55150,8 +55150,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "La lista de selección que tiene entradas de reserva de existencias no se puede actualizar. Si necesita realizar cambios, le recomendamos cancelar las entradas de reserva de existencias existentes antes de actualizar la lista de selección." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55162,11 +55165,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "El número de serie en la fila #{0}: {1} no está disponible en el almacén {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "El paquete de serie y lote {0} no es válido para esta transacción. El \"Tipo de transacción\" debería ser \"Saliente\" en lugar de \"Entrante\" en el paquete de serie y lote {0}" @@ -55214,15 +55221,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "La moneda de la factura {} ({}) es diferente de la moneda de esta reclamación ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55271,6 +55278,10 @@ msgstr "El campo Para el accionista no puede estar en blanco" msgid "The field {0} in row {1} is not set" msgstr "El campo {0} en la fila {1} no está configurado" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Los campos De Accionista y Para Accionista no pueden estar en blanco" @@ -55292,9 +55303,9 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "Los números de folio no coinciden" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "Los siguientes artículos, que tienen reglas de almacenamiento, no se pudieron acomodar:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55321,8 +55332,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Los siguientes empleados todavía están reportando a {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "Se eliminan las siguientes reglas de precios no válidas:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55333,7 +55344,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Se crearon los siguientes {0}: {1}" @@ -55369,8 +55380,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "La ficha de trabajo {0} está en estado {1} y no puedes completarla." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55407,12 +55418,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "La operación {0} no se puede sumar varias veces" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "La operación {0} no puede ser la suboperación" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55460,6 +55471,10 @@ msgstr "El porcentaje que se le permite recibir o entregar de más respecto de l msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "El porcentaje que se le permite transferir de más respecto de la cantidad solicitada. Por ejemplo, si ha solicitado 100 unidades y su franquicia es del 10 %, se le permite transferir 110 unidades." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55469,7 +55484,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "El stock reservado se liberará cuando actualices los artículos. ¿Estás seguro de que deseas continuar?" @@ -55486,8 +55501,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Las listas de materiales seleccionados no son para el mismo artículo" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "La cuenta de cambio seleccionada {} no pertenece a la empresa {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55503,7 +55518,7 @@ msgstr "El vendedor y el comprador no pueden ser el mismo" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55522,11 +55537,11 @@ msgstr "Las acciones ya existen" msgid "The shares don't exist with the {0}" msgstr "Las acciones no existen con el {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "El stock del artículo {0} en el almacén {1} era negativo el {2}. Debe crear una entrada positiva {3} antes de la fecha {4} y la hora {5} para registrar la tasa de valoración correcta. Para obtener más detalles, lea la documentación ." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "El stock del artículo {0} en el almacén {1} era negativo el {2}. Debe crear una entrada positiva {3} antes de la fecha {4} y la hora {5} para registrar la tasa de valoración correcta. Para obtener más detalles, lea la documentación ." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55548,16 +55563,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "El sistema creará una Factura de Venta o una Factura de PdV desde la interfaz de PdV según esta configuración. Para transacciones de gran volumen, se recomienda usar la Factura de PdV." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "La tarea se ha puesto en cola como un trabajo en segundo plano. En caso de que haya algún problema con el procesamiento en segundo plano, el sistema agregará un comentario sobre el error en esta Reconciliación de inventario y volverá a la etapa Borrador" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55596,7 +55611,7 @@ msgstr "Los usuarios con este rol pueden crear/modificar una transacción de sto msgid "The value of {0} differs between Items {1} and {2}" msgstr "El valor de {0} difiere entre los elementos {1} y {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "El valor {0} ya está asignado a un artículo existente {1}." @@ -55620,7 +55635,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "El {0} ({1}) debe ser igual a {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55628,7 +55643,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "El {0} {1} creado exitosamente" @@ -55636,6 +55651,10 @@ msgstr "El {0} {1} creado exitosamente" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55644,7 +55663,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Hay mantenimiento activo o reparaciones contra el activo. Debes completarlos todos antes de cancelar el activo." @@ -55656,7 +55675,7 @@ msgstr "Hay inconsistencias entre la tasa, numero de acciones y la cantidad calc msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55673,6 +55692,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55689,10 +55712,6 @@ msgstr "Existen dos opciones para mantener la valoración de las existencias: FI msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55721,20 +55740,20 @@ msgstr "No se ha encontrado ningún lote en {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55785,15 +55804,19 @@ msgstr "Resumen de este mes" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55815,7 +55838,7 @@ msgstr "Esta acción desvinculará esta cuenta de cualquier servicio externo que msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55833,7 +55856,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "Esto cubre todas las tarjetas de puntuación vinculadas a esta configuración" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Este documento está por encima del límite de {0} {1} para el elemento {4}. ¿Estás haciendo otra {3} contra el mismo {2}?" @@ -55975,7 +55998,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "El filtro ya se había usado para el tipo {0}" @@ -56039,7 +56062,7 @@ msgstr "Este cronograma se creó cuando el activo {0} se devolvió a través de msgid "This schedule was created when Asset {0} was scrapped." msgstr "Este cronograma se creó cuando se descartó el activo {0} ." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -56066,10 +56089,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "Esta sección permite al usuario configurar el cuerpo y el texto de cierre de la carta de reclamación para el tipo de reclamación según el idioma, que se puede utilizar en impresión." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56127,8 +56150,8 @@ msgid "This will restrict user access to other employee records" msgstr "Esto restringirá el acceso del usuario a otros registros de empleados" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "Este {} se tratará como transferencia de material." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56256,6 +56279,12 @@ msgstr "Tiempo (en minutos)" msgid "Timeline" msgstr "Línea de tiempo" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56542,8 +56571,8 @@ msgid "To Time" msgstr "Hasta hora" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "Hasta la Hora no puede ser anterior a Desde la Fecha" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56573,15 +56602,15 @@ msgstr "Para agregar operaciones, marque la casilla de verificación \"Con opera msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Para agregar materias primas de artículos subcontratados si la opción de incluir artículos explotados está deshabilitada." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Para permitir la facturación excesiva, actualice "Asignación de facturación excesiva" en la Configuración de cuentas o el Artículo." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Para permitir sobre recibo / entrega, actualice "Recibo sobre recibo / entrega" en la Configuración de inventario o en el Artículo." @@ -56598,8 +56627,8 @@ msgid "To be Delivered to Customer" msgstr "Para ser entregado al cliente" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "Para cancelar un {} es necesario cancelar la Entrada de Cierre de POS {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56610,8 +56639,8 @@ msgid "To create a Payment Request reference document is required" msgstr "Para crear una Solicitud de Pago se requiere el documento de referencia" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Para habilitar la contabilidad de trabajos de capital en curso," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56623,8 +56652,8 @@ msgstr "Para incluir artículos que no están en stock en la planificación de s msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Para incluir el impuesto en la línea {0} los impuestos de las lineas {1} tambien deben ser incluidos" @@ -56644,7 +56673,7 @@ msgstr "Para anular esto, habilite "{0}" en la empresa {1}" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Para continuar con la edición de este valor de atributo, habilite {0} en Configuración de variantes de artículo." @@ -56661,10 +56690,12 @@ msgstr "Para enviar la factura sin recibo de compra, configure {0} como {1} en { msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Para utilizar un libro de finanzas diferente, desmarque la opción \"Incluir activos de FB predeterminados\"" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Para utilizar un libro de finanzas diferente, desmarque la opción \"Incluir entradas de FB predeterminadas\"" @@ -56743,8 +56774,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "Total (Divisa por defecto)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Total (Crédito)" @@ -56786,6 +56817,22 @@ msgstr "Total de costos adicionales" msgid "Total Advance" msgstr "Total anticipo" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56833,11 +56880,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "Importe total en letras" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Total de comisiones aplicables en la compra Tabla de recibos Los artículos deben ser iguales que las tasas totales y cargos" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Activo total" @@ -57019,7 +57066,7 @@ msgstr "Importe total entregado" msgid "Total Demand (Past Data)" msgstr "Demanda total (datos anteriores)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -57028,11 +57075,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "Distancia Total Estimada" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Gasto total" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Gastos totales este año" @@ -57070,11 +57117,11 @@ msgstr "Tiempo total de espera" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Ingresos totales" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Ingresos totales este año" @@ -57117,7 +57164,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57432,7 +57479,7 @@ msgstr "Total Impuestos y Cargos" msgid "Total Taxes and Charges (Company Currency)" msgstr "Total impuestos y cargos (Divisa por defecto)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Tiempo total (en minutos)" @@ -57441,7 +57488,11 @@ msgstr "Tiempo total (en minutos)" msgid "Total Time in Mins" msgstr "Tiempo total en minutos" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Total no pagado: {0}" @@ -57520,7 +57571,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "Porcentaje del total asignado para el equipo de ventas debe ser de 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "El porcentaje de contribución total debe ser igual a 100" @@ -57538,8 +57589,8 @@ msgstr "Horas totales: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "El monto total de los pagos no puede ser mayor que {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57556,9 +57607,9 @@ msgstr "" msgid "Total {0} ({1})" msgstr "Total {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Total de {0} para todos los elementos es cero, puede ser que usted debe cambiar en "Distribuir los cargos basados en '" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57646,27 +57697,11 @@ msgstr "Información de estado de seguimiento" msgid "Tracking URL" msgstr "URL de Seguimiento" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Transacción" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "moneda de la transacción" @@ -57719,11 +57754,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58113,6 +58148,10 @@ msgstr "Balance de Sumas y Saldos (Simple)" msgid "Trial Balance for Party" msgstr "Balance de Terceros" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58297,7 +58336,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58319,7 +58358,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58349,7 +58388,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58413,7 +58452,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Factor de Conversión de Unidad de Medida" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Factor de conversión de UOM ({0} -> {1}) no encontrado para el artículo: {2}" @@ -58487,7 +58526,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58500,10 +58539,6 @@ msgstr "No se puede encontrar el tipo de cambio para {0} a {1} para la fecha cla msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "No se puede encontrar el tipo de cambio para {0} a {1} para la fecha clave {2}. Crea un registro de cambio de divisas manualmente." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "No se puede encontrar la puntuación a partir de {0}. Usted necesita tener puntuaciones en pie que cubren 0 a 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58528,7 +58563,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Monto sin asignar" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Cant. Sin asignar" @@ -58540,8 +58575,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "Desbloquear factura" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58591,7 +58628,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58614,7 +58651,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Unidad de Medida (UdM)" @@ -58817,7 +58854,7 @@ msgstr "Sin programación" msgid "Unsecured Loans" msgstr "Préstamos sin garantía" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58830,7 +58867,7 @@ msgstr "No Firmado" msgid "Unsubscribe from this Email Digest" msgstr "Darse de baja de este boletín por correo electrónico" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58974,7 +59011,7 @@ msgstr "Actualizar stock actual" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59038,7 +59075,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "Actualizar el último precio en todas las listas de materiales" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59266,7 +59303,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "Usar el tipo de cambio de fecha de la transacción" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Use un nombre que sea diferente del nombre del proyecto anterior" @@ -59355,6 +59392,10 @@ msgstr "Tiempo de resolución de usuario" msgid "User has not applied rule on the invoice {0}" msgstr "El usuario no ha aplicado la regla en la factura {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "El usuario {0} no existe" @@ -59367,6 +59408,10 @@ msgstr "El usuario {0} no tiene ningún perfil POS predeterminado. Verifique el msgid "User {0} is already assigned to Employee {1}" msgstr "El usuario {0} ya está asignado al empleado {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Usuario {0}: Eliminado el rol de Autoservicio del Empleado, ya que no hay ningún empleado mapeado." @@ -59375,10 +59420,6 @@ msgstr "Usuario {0}: Eliminado el rol de Autoservicio del Empleado, ya que no ha msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Usuario {0}: Se eliminó el rol de Empleado, ya que no hay ningún empleado asignado." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "El usuario {} está inhabilitado. Seleccione un usuario / cajero válido" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59671,15 +59712,15 @@ msgstr "Tasa de valoración" msgid "Valuation Rate (In / Out)" msgstr "Tasa de Valoración (Entrada/Salida)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Falta la tasa de valoración" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Tasa de valoración para el artículo {0}, se requiere para realizar asientos contables para {1} {2}." @@ -59687,7 +59728,7 @@ msgstr "Tasa de valoración para el artículo {0}, se requiere para realizar asi msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Rango de Valoración es obligatorio si se ha ingresado una Apertura de Almacén" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Tasa de valoración requerida para el artículo {0} en la fila {1}" @@ -59697,7 +59738,7 @@ msgstr "Tasa de valoración requerida para el artículo {0} en la fila {1}" msgid "Valuation and Total" msgstr "Valuación y Total" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "La tasa de valoración de los artículos proporcionados por el cliente se ha establecido en cero." @@ -59710,14 +59751,14 @@ msgstr "La tasa de valoración de los artículos proporcionados por el cliente s msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Tasa de valoración del artículo según factura de venta (solo para transferencias internas)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Los cargos por tipo de valoración no se pueden marcar como inclusivos" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Cargos de tipo de valoración no pueden marcado como Incluido" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59767,12 +59808,12 @@ msgstr "Propuesta de valor" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Valor del atributo {0} debe estar dentro del rango de {1} a {2} en los incrementos de {3} para el artículo {4}" @@ -59781,19 +59822,19 @@ msgstr "Valor del atributo {0} debe estar dentro del rango de {1} a {2} en los i msgid "Value of Goods" msgstr "Valor de los bienes" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Valor del nuevo activo capitalizado" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Valor de la nueva compra" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Costo del Activo Desechado" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Valor del activo vendido" @@ -60269,7 +60310,7 @@ msgstr "Nombre del comprobante" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60297,7 +60338,7 @@ msgstr "Nombre del comprobante" msgid "Voucher No" msgstr "Comprobante No." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60309,7 +60350,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60341,7 +60382,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60548,7 +60589,7 @@ msgstr "Almacén es Obligatorio" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Almacén no encontrado en la cuenta {0}" @@ -60566,16 +60607,16 @@ msgstr "Balance de Edad y Valor de Item por Almacén" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "El almacén {0} no se puede eliminar ya que existen elementos para el Producto {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Almacén {0} no pertenece a la Compañía {1}." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "El almacén {0} no pertenece a la compañía {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60696,7 +60737,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60716,7 +60757,7 @@ msgstr "Advertencia: Existe otra {0} # {1} para la entrada de inventario {2}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Advertencia: La requisición de materiales es menor que la orden mínima establecida" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60870,10 +60911,6 @@ msgstr "Grupo de productos en el sitio web" msgid "Website Specifications" msgstr "Especificaciones del sitio web" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61019,7 +61056,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61195,17 +61232,17 @@ msgstr "Trabajo en Proceso" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61244,7 +61281,7 @@ msgstr "" msgid "Work Order Item" msgstr "Artículo de Órden de Trabajo" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61285,20 +61322,20 @@ msgstr "Resumen de la orden de trabajo" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "No se puede crear una orden de trabajo por el siguiente motivo:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "La Órden de Trabajo no puede levantarse contra una Plantilla de Artículo" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "La orden de trabajo ha sido {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61319,7 +61356,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Órdenes de trabajo" @@ -61344,7 +61381,7 @@ msgstr "Trabajo en proceso" msgid "Work-in-Progress Warehouse" msgstr "Almacén de trabajos en proceso" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Se requiere un almacén de trabajos en proceso antes de validar" @@ -61397,7 +61434,7 @@ msgstr "Horas de Trabajo" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61629,14 +61666,6 @@ msgstr "Nombre del Año" msgid "Year Start Date" msgstr "Fecha de Inicio de Año" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61651,8 +61680,8 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "No se le permite actualizar según las condiciones establecidas en {} Flujo de trabajo." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61671,7 +61700,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61682,19 +61711,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "Usted puede copiar y pegar este enlace en su navegador" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "También puede configurar una cuenta CWIP predeterminada en la empresa {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Puede cambiar la cuenta principal a una cuenta de balance o seleccionar una cuenta diferente." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61716,8 +61741,8 @@ msgid "You can only select one mode of payment as default" msgstr "Solo puede seleccionar un modo de pago por defecto" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Puede canjear hasta {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61735,14 +61760,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61751,16 +61768,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "No puede crear ni cancelar ningún asiento contable dentro del período contable cerrado {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61772,15 +61789,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "No puede eliminar Tipo de proyecto 'Externo'" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "No puedes editar el nodo raíz." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61788,7 +61813,7 @@ msgid "You cannot redeem more than {0}." msgstr "No puede canjear más de {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61796,8 +61821,8 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "No puede reiniciar una suscripción que no está cancelada." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "No puede validar un pedido vacío." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61811,6 +61836,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61821,8 +61850,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "No tienes permisos para {} elementos en un {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61848,11 +61877,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Tuvo {} errores al crear facturas de apertura. Consulte {} para obtener más detalles" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Ya ha seleccionado artículos de {0} {1}" @@ -61869,7 +61898,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61884,19 +61913,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Debe habilitar el reordenamiento automático en la Configuración de inventario para mantener los niveles de reordenamiento." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Debe seleccionar un cliente antes de agregar un artículo." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61948,6 +61977,10 @@ msgstr "Código postal" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61978,7 +62011,7 @@ msgstr "[Importante] [ERPNext] Errores de reorden automático" msgid "`Allow Negative rates for Items`" msgstr "`Permitir precios Negativos para los Productos`" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "después" @@ -61998,7 +62031,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -62014,10 +62047,6 @@ msgstr "basado_en" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "no puede ser mayor que 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62072,8 +62101,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62153,14 +62182,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62174,7 +62199,7 @@ msgstr "" msgid "per hour" msgstr "por hora" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62250,8 +62275,8 @@ msgstr "vendido" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62314,10 +62339,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "debe seleccionar Cuenta Capital Work in Progress en la tabla de cuentas" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' está deshabilitado" @@ -62330,7 +62351,7 @@ msgstr "{0} '{1}' no esta en el año fiscal {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) no puede ser mayor que la cantidad planificada ({2}) en la Orden de trabajo {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62350,7 +62371,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "Los cupones {0} utilizados son {1}. La cantidad permitida se agota" @@ -62358,11 +62379,6 @@ msgstr "Los cupones {0} utilizados son {1}. La cantidad permitida se agota" msgid "{0} Digest" msgstr "{0} Resumen" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Número {1} ya se usa en {2} {3}" @@ -62444,10 +62460,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "{0} no puede ser negativo" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62463,7 +62487,7 @@ msgstr "" msgid "{0} created" msgstr "{0} creado" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62505,7 +62529,7 @@ msgstr "{0} de {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62513,6 +62537,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "{0} se ha validado correctamente" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} horas" @@ -62521,7 +62549,11 @@ msgstr "{0} horas" msgid "{0} in row {1}" msgstr "{0} en la fila {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62535,7 +62567,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} ya se está ejecutando por {1}" @@ -62543,7 +62575,7 @@ msgstr "{0} ya se está ejecutando por {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} está bloqueado por lo que esta transacción no puede continuar" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62556,11 +62588,11 @@ msgstr "{0} es obligatorio para el artículo {1}" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} es obligatorio. Quizás no se crea el registro de cambio de moneda para {1} a {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} es obligatorio. Posiblemente el registro de cambio de moneda no ha sido creado para {1} hasta {2}." @@ -62568,7 +62600,7 @@ msgstr "{0} es obligatorio. Posiblemente el registro de cambio de moneda no ha s msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} no es una cuenta bancaria de la empresa" @@ -62584,7 +62616,7 @@ msgstr "{0} no es un artículo en existencia" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} no es un valor válido para el atributo {1} del artículo {2}." @@ -62600,17 +62632,17 @@ msgstr "{0} no se agrega a la tabla" msgid "{0} is not enabled in {1}" msgstr "{0} no está habilitado en {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} no es el proveedor predeterminado para ningún artículo." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} está en espera hasta {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62660,7 +62692,7 @@ msgstr "El parámetro {0} no es válido" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} entradas de pago no pueden ser filtradas por {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62673,7 +62705,7 @@ msgstr "{0} a {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62689,16 +62721,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} unidades de {1} necesaria en {2} sobre {3} {4} {5} para completar esta transacción." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} unidades de {1} necesaria en {2} para completar esta transacción." @@ -62706,7 +62738,7 @@ msgstr "{0} unidades de {1} necesaria en {2} para completar esta transacción." msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} núms. de serie válidos para el artículo {1}" @@ -62714,7 +62746,7 @@ msgstr "{0} núms. de serie válidos para el artículo {1}" msgid "{0} variants created." msgstr "{0} variantes creadas" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62748,7 +62780,7 @@ msgstr "{0} {1} creado" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} no existe" @@ -62782,12 +62814,21 @@ msgstr "{0} {1} se asigna dos veces en esta transacción bancaria" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} está asociado con {2}, pero la cuenta de grupo es {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} está cancelado o cerrado" @@ -62819,6 +62860,10 @@ msgstr "{0} {1} está totalmente facturado" msgid "{0} {1} is not active" msgstr "{0} {1} no está activo" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} no está asociado con {2} {3}" @@ -62924,27 +62969,23 @@ msgstr "{0}% del valor total de la factura se otorgará como descuento." msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, complete la operación {1} antes de la operación {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62960,7 +63001,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} debe ser menor que {2}" @@ -62972,7 +63013,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} está cancelado o cerrado." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62984,32 +63025,7 @@ msgstr "{ref_doctype} {ref_name} el estado es {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} no se puede cancelar ya que se canjearon los puntos de fidelidad ganados. Primero cancele el {} No {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} tiene validados elementos vinculados a él. Debe cancelar los activos para crear una devolución de compra." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} facturas" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} ya está vinculado con otro {}" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} ya está vinculado con {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/fa.po b/erpnext/locale/fa.po index f32898dedc9..49933991d17 100644 --- a/erpnext/locale/fa.po +++ b/erpnext/locale/fa.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-23 19:26\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: fa_IR\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "علامت \"دارایی ثابت است\" را نمی‌توان بر msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" برای \"SN-01\" تا \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# در موجودی" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# آیتم‌های درخواست شده" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "اجازه ایجاد چندین سفارش فروش برای یک سفارش خرید مشتری" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "بر اساس و \"گروه بر اساس\" نمی‌توانند یکسان باشند" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "«از تاریخ» باید پس از «تا امروز» باشد" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "دارای شماره سریال نمی‌تواند \"بله\" برای کالاهای غیر موجودی باشد" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "«بازرسی قبل از تحویل لازم است» برای آیتم {0} غیرفعال شده است، نیازی به ایجاد QI نیست" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "«بازرسی قبل از خرید لازم است» برای آیتم {0} غیرفعال شده است، نیازی به ایجاد QI نیست" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'افتتاحیه'" @@ -326,13 +317,13 @@ msgstr "'افتتاحیه'" msgid "'To Date' is required" msgstr "«تا تاریخ» مورد نیاز است" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'به شماره بسته.' نمی‌تواند کمتر از \"از شماره بسته\" باشد." #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "«به‌روزرسانی موجودی» قابل بررسی نیست زیرا آیتم‌ها از طریق {0} تحویل داده نمی‌شوند" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90 بالا" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -787,16 +778,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -968,9 +959,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "یک گروه مشتری با همین نام وجود دارد، لطفا نام مشتری را تغییر دهید یا نام گروه مشتری را تغییر دهید" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -980,9 +971,9 @@ msgstr "فهرست تعطیلات را می‌توان اضافه کرد تا ش msgid "A Lead requires either a person's name or an organization's name" msgstr "یک Lead یا به نام شخص یا نام سازمان نیاز دارد" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "یک برگه بسته بندی فقط می‌تواند برای پیش‌نویس یادداشت تحویل ایجاد شود." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -998,7 +989,7 @@ msgstr "لیست قیمت مجموعه ای از قیمت های آیتم‌ها msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "محصول یا خدماتی که خریداری، فروخته یا در انبار نگهداری می‌شود." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "یک کار تطبیق {0} برای همین فیلترها در حال اجرا است. الان نمی‌توان تطبیق کرد" @@ -1031,7 +1022,7 @@ msgstr "یک راننده باید برای ثبت نهایی تنظیم شود. msgid "A logical Warehouse against which stock entries are made." msgstr "یک انبار منطقی که در مقابل آن ثبت موجودی انجام می‌شود." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1207,7 +1198,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "مقدار پذیرفته شده بر حسب واحد اندازه‌گیری موجودی" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "مقدار پذیرفته شده" @@ -1238,12 +1229,16 @@ msgstr "کلید دسترسی" msgid "Access Key is required for Service Provider: {0}" msgstr "کلید دسترسی برای ارائه‌دهنده خدمات لازم است: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "طبق CEFACT/ICG/2010/IC013 یا CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "طبق BOM {0}، آیتم '{1}' در ثبت موجودی وجود ندارد." @@ -1496,7 +1491,7 @@ msgstr "حساب برای دریافت ثبت پرداخت‌ها اجباری msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "حساب پیدا نشد" @@ -1626,11 +1621,11 @@ msgstr "حساب: {0} یک کار سرمایه ای در حال انجا msgid "Account: {0} can only be updated via Stock Transactions" msgstr "حساب: {0} فقط از طریق تراکنش‌های موجودی قابل به‌روزرسانی است" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "حساب: {0} در قسمت ثبت پرداخت مجاز نیست" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "حساب: {0} با واحد پول: {1} قابل انتخاب نیست" @@ -1909,8 +1904,8 @@ msgstr "فیلتر ابعاد حسابداری" msgid "Accounting Entries" msgstr "ثبت‌های حسابداری" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "ثبت حسابداری برای دارایی" @@ -1935,8 +1930,8 @@ msgstr "ثبت حسابداری برای خدمات" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1984,7 +1979,11 @@ msgstr "" msgid "Accounting Period" msgstr "دوره حسابرسی" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "دوره حسابداری با {0} همپوشانی دارد" @@ -2182,8 +2181,8 @@ msgstr "حساب استهلاک انباشته" msgid "Accumulated Depreciation Amount" msgstr "مبلغ استهلاک انباشته" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "استهلاک انباشته به عنوان" @@ -2411,7 +2410,7 @@ msgstr "مقدار تراز واقعی" msgid "Actual Batch Quantity" msgstr "مقدار واقعی دسته" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2421,7 +2420,7 @@ msgstr "" msgid "Actual Date" msgstr "تاریخ واقعی" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2571,8 +2570,8 @@ msgstr "زمان واقعی به ساعت (از طریق جدول زمانی)" msgid "Actual qty in stock" msgstr "مقدار واقعی موجود در انبار" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "مالیات نوع واقعی را نمی‌توان در نرخ آیتم در ردیف {0} لحاظ کرد" @@ -2737,10 +2736,6 @@ msgstr "افزودن سریال / شماره دسته" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "افزودن سریال / شماره دسته (تعداد رد شده)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "افزودن پیشوند سری" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "افزودن موجودی" @@ -2839,13 +2834,13 @@ msgstr "اضافه شده توسط" msgid "Added On" msgstr "اضافه شده در" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "نقش تامین کننده به کاربر {0} اضافه شد." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "نقش {1} به کاربر {0} اضافه شد." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -2987,7 +2982,7 @@ msgstr "مبلغ تخفیف اضافی" msgid "Additional Discount Amount (Company Currency)" msgstr "مبلغ تخفیف اضافی (ارز شرکت)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3106,11 +3101,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3375,7 +3366,7 @@ msgstr "نوع سند مالی پیش‌پرداخت" msgid "Advance amount" msgstr "مبلغ پیش‌پرداخت" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "مبلغ پیش‌پرداخت نمی‌تواند بیشتر از {0} {1} باشد" @@ -3444,7 +3435,7 @@ msgstr "در برابر" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "در مقابل حساب" @@ -3564,7 +3555,7 @@ msgstr "در مقابل فاکتور تامین کننده {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "در مقابل سند مالی" @@ -3588,7 +3579,7 @@ msgstr "در مقابل سند مالی شماره" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "در مقابل نوع سند مالی" @@ -3702,6 +3693,13 @@ msgstr "شرکت هواپیمایی" msgid "Algorithm" msgstr "الگوریتم" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3878,7 +3876,7 @@ msgstr "" msgid "All items are already requested" msgstr "همه آیتم‌ها قبلا درخواست شده است" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "همه آیتم‌ها قبلاً صورتحساب/بازگردانده شده اند" @@ -3890,7 +3888,7 @@ msgstr "همه آیتم‌ها قبلاً دریافت شده است" msgid "All items have already been transferred for this Work Order." msgstr "همه آیتم‌ها قبلاً برای این دستور کار منتقل شده اند." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "همه آیتم‌ها در این سند قبلاً دارای یک بازرسی کیفیت مرتبط هستند." @@ -3909,16 +3907,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "تمام دیدگاه‌ها و ایمیل ها از یک سند به سند جدید ایجاد شده دیگر (سرنخ -> فرصت -> پیش‌فاکتور) در سراسر اسناد CRM کپی می‌شوند." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "همه آیتم‌ها قبلاً بازگردانده شده اند." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "تمام آیتم‌های مورد نیاز (مواد اولیه) از BOM واکشی شده و در این جدول پر می‌شود. در اینجا شما همچنین می‌توانید انبار منبع را برای هر آیتم تغییر دهید. و در حین تولید می‌توانید مواد اولیه انتقال یافته را از این جدول ردیابی کنید." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "همه این آیتم‌ها قبلاً صورتحساب/بازگردانده شده اند" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -3941,7 +3939,7 @@ msgstr "تخصیص خودکار پیش‌پرداخت‌ها (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "تخصیص مبلغ پرداختی" @@ -3951,7 +3949,7 @@ msgstr "تخصیص مبلغ پرداختی" msgid "Allocate Payment Based On Payment Terms" msgstr "تخصیص پرداخت بر اساس شرایط پرداخت" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "تخصیص درخواست پرداخت" @@ -3981,7 +3979,7 @@ msgstr "اختصاص داده شده است" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4064,8 +4062,8 @@ msgid "Allow Alternative Item" msgstr "آیتم جایگزین مجاز است" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "آیتم جایگزین مجاز است باید برای آیتم {} علامت زده شود" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4172,7 +4170,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "اجازه تغییر نام مقدار ویژگی" @@ -4453,14 +4451,16 @@ msgstr "آیتم‌های مجاز" msgid "Allowed To Transact With" msgstr "مجاز به تراکنش با" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "نقش‌های اصلی مجاز عبارتند از «مشتری» و «تامین‌کننده». لطفا فقط یکی از این نقش‌ها را انتخاب کنید." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "کاراکترهای ویژه مجاز عبارتند از '/' و '-'" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4493,10 +4493,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "اجازه می‌دهد کاربران پیش‌فاکتور تامین کننده با مقدار صفر ثبت کنند. این ویژگی زمانی مفید است که نرخ‌ها ثابت هستند اما مقادیر هنوز مشخص نشده‌اند. مثلاً در قراردادهای نرخ‌گذاری." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4504,10 +4504,6 @@ msgstr "" msgid "Already Picked" msgstr "قبلاً انتخاب شده است" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "رکورد برای آیتم {0} از قبل وجود دارد" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "قبلاً پیش‌فرض در نمایه pos {0} برای کاربر {1} تنظیم شده است، لطفاً پیش‌فرض غیرفعال شده است" @@ -4523,12 +4519,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "آیتم جایگزین" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "جایگزین برای آیتم" @@ -4733,7 +4729,7 @@ msgstr "همیشه بپرس" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4959,12 +4955,12 @@ msgstr "گروه آیتم راهی برای دسته‌بندی آیتم‌ها msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "هنگام ارسال مجدد ارزیابی مورد از طریق {0} خطایی ظاهر شد" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "در طول فرآیند به‌روزرسانی خطایی رخ داد" @@ -5178,7 +5174,7 @@ msgstr "کد تخفیف اعمال شده" msgid "Applied on each reading." msgstr "در هر خواندن اعمال می‌شود." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "قوانین جانمایی اعمال شده." @@ -5355,10 +5351,6 @@ msgstr "اسلات رزرو قرار" msgid "Appointment Confirmation" msgstr "تأیید قرار ملاقات" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "قرار ملاقات با موفقیت ایجاد شد" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5384,6 +5376,10 @@ msgstr "زمان‌بندی قرار برای این سایت غیرفعال ش msgid "Appointment With" msgstr "ملاقات با" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "قرار ملاقات ایجاد شد. اما سرنخی پیدا نشد. لطفا برای تأیید ایمیل را بررسی کنید" @@ -5425,6 +5421,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "آیا مطمئن هستید که می‌خواهید تمام داده‌های نمایشی را پاک کنید؟" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "آیا مطمئن هستید که می‌خواهید این آیتم را حذف کنید؟" @@ -5507,18 +5512,18 @@ msgstr "از آنجایی که فیلد {0} فعال است، مقدار فیل msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "از آنجایی که تراکنش‌های ارسالی موجود در مقابل آیتم {0} وجود دارد، نمی‌توانید مقدار {1} را تغییر دهید." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "از آنجایی که موجودی رزرو شده وجود دارد، نمی‌توانید {0} را غیرفعال کنید." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "از آنجایی که آیتم‌های زیر مونتاژ کافی وجود دارد، برای انبار {0} نیازی به دستور کار نیست." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "از آنجایی که مواد اولیه کافی وجود دارد، درخواست مواد برای انبار {0} لازم نیست." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5557,7 +5562,7 @@ msgstr "آیتم‌های مونتاژ" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5629,7 +5634,7 @@ msgstr "آیتم موجودی سرمایه گذاری دارایی" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5795,7 +5800,7 @@ msgstr "آیتم جابجایی دارایی" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5927,7 +5932,7 @@ msgstr "تجزیه و تحلیل ارزش دارایی" msgid "Asset cancelled" msgstr "دارایی لغو شد" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "دارایی را نمی‌توان لغو کرد، زیرا قبلاً {0} است" @@ -5943,7 +5948,7 @@ msgstr "دارایی پس از ثبت فرآیند سرمایه‌ای کردن msgid "Asset created" msgstr "دارایی ایجاد شد" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "دارایی پس از جدا شدن از دارایی {0} ایجاد شد" @@ -5996,7 +6001,7 @@ msgstr "دارایی ارسال شد" msgid "Asset transferred to Location {0}" msgstr "دارایی به مکان {0} منتقل شد" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "دارایی پس از تقسیم به دارایی {0} به روز شد" @@ -6074,7 +6079,7 @@ msgstr "ارزش دارایی پس از ارسال تعدیل ارزش دارا #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6095,7 +6100,7 @@ msgstr "دارایی برای {item_code} ایجاد نشده است. شما ب msgid "Assets {assets_link} created for {item_code}" msgstr "دارایی‌های {assets_link} برای {item_code} ایجاد شد" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "کار را به کارمند واگذار کنید" @@ -6105,6 +6110,11 @@ msgstr "کار را به کارمند واگذار کنید" msgid "Assign to Name" msgstr "تخصیص به نام" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6123,19 +6133,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "در ردیف #{0}: مقدار انتخاب شده {1} برای آیتم {2} بیشتر از موجودی در دسترس {3} در انبار {4} است." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "حداقل یک حساب با سود یا زیان تبدیل مورد نیاز است" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "حداقل یک دارایی باید انتخاب شود." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "حداقل یک فاکتور باید انتخاب شود." @@ -6156,6 +6170,10 @@ msgstr "حداقل یکی از ماژول‌های کاربردی باید ان msgid "At least one of the Selling or Buying must be selected" msgstr "حداقل یکی از موارد فروش یا خرید باید انتخاب شود" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6176,7 +6194,7 @@ msgstr "در ردیف #{0}: شناسه توالی {1} نمی‌تواند کمت msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "در ردیف {0}: شماره دسته برای مورد {1} اجباری است" @@ -6184,26 +6202,22 @@ msgstr "در ردیف {0}: شماره دسته برای مورد {1} اجبار msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "در ردیف {0}: ردیف والد برای آیتم {1} قابل تنظیم نیست" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "در ردیف {0}: مقدار برای دسته {1} اجباری است" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "در ردیف {0}: شماره سریال برای آیتم {1} اجباری است" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "در ردیف {0}: باندل سریال و دسته {1} قبلا ایجاد شده است. لطفاً مقادیر را از فیلدهای شماره سریال یا شماره دسته حذف کنید." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "در ردیف {0}: تنظیم شماره ردیف والد برای آیتم {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "حداقل یک ماده اولیه برای آیتم کالای تمام شده {0} باید توسط مشتری تهیه شود." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6415,7 +6429,7 @@ msgstr "تطبیق خودکار پرداخت‌ها غیرفعال شده است msgid "Auto Repeat Detail" msgstr "جزئیات تکرار خودکار" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "خطای تنظیمات مالیات خودکار" @@ -6476,7 +6490,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "سند تکرار خودکار به روز شد" @@ -6601,7 +6615,7 @@ msgstr "تاریخ استفاده در دسترس است" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6697,7 +6711,7 @@ msgstr "تاریخ در دسترس برای استفاده الزامی است" msgid "Available {0}" msgstr "موجود {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "تاریخ در دسترس برای استفاده باید پس از تاریخ خرید باشد" @@ -6815,7 +6829,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6834,8 +6848,8 @@ msgid "BOM 1" msgstr "BOM 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "BOM 1 {0} و BOM 2 {1} نباید یکسان باشند" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6849,7 +6863,7 @@ msgstr "BOM 2" msgid "BOM Comparison Tool" msgstr "ابزار مقایسه BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "مولفه BOM" @@ -6980,7 +6994,7 @@ msgstr "عملیات BOM" msgid "BOM Operations Time" msgstr "زمان عملیات BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "خروجی BOM" @@ -7001,7 +7015,7 @@ msgstr "جستجوی BOM" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "آیتم ثانویه BOM" @@ -7053,10 +7067,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "به‌روزرسانی BOM در حال انجام است. لطفاً صبر کنید تا {0} کامل شود." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "به‌روزرسانی BOM در صف است و ممکن است چند دقیقه طول بکشد. برای پیشرفت، {0} را بررسی کنید." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7095,15 +7105,19 @@ msgstr "بازگشت BOM: {0} نمی‌تواند فرزند {1} باشد" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "بازگشت BOM: {1} نمی‌تواند والد یا فرزند {0} باشد" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "BOM {0} به آیتم {1} تعلق ندارد" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "BOM {0} باید فعال باشد" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "BOM {0} باید ارسال شود" @@ -7184,7 +7198,7 @@ msgstr "تراز" msgid "Balance (Dr - Cr)" msgstr "تراز (Dr - Cr)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "تراز ({0})" @@ -7254,6 +7268,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "خلاصه ترازنامه" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "تراز مقدار موجودی" @@ -7314,7 +7332,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7414,7 +7432,7 @@ msgid "Bank Account Type" msgstr "نوع حساب بانکی" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7659,7 +7677,7 @@ msgstr "تراکنش بانکی {0} به روز شد" msgid "Bank Transactions" msgstr "تراکنش‌های بانکی" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "حساب بانکی نمی‌تواند به عنوان {0} نام‌گذاری شود" @@ -7671,7 +7689,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "حساب بانکی {0} از قبل وجود دارد و نمی‌توان دوباره ایجاد کرد" @@ -7683,7 +7701,7 @@ msgstr "حساب‌های بانکی اضافه شد" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "خطای ایجاد تراکنش بانکی" @@ -7959,8 +7977,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7991,15 +8009,15 @@ msgstr "" msgid "Batch No" msgstr "شماره دسته" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "شماره دسته اجباری است" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "شماره دسته {0} وجود ندارد" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "شماره دسته {0} با آیتم {1} که دارای شماره سریال است پیوند داده شده است. لطفاً شماره سریال را اسکن کنید." @@ -8007,6 +8025,10 @@ msgstr "شماره دسته {0} با آیتم {1} که دارای شماره س msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8072,9 +8094,9 @@ msgstr "UOM دسته" msgid "Batch and Serial No" msgstr "شماره دسته و سریال" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "دسته ای برای آیتم {} ایجاد نشده است زیرا سری دسته ای ندارد." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8186,7 +8208,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8661,8 +8683,8 @@ msgid "Booked Fixed Asset" msgstr "دارایی ثابت رزرو شده" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "رزروها تا پایان دوره {0} بسته شده‌اند" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8889,8 +8911,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "بودجه را نمی‌توان به حساب گروهی {0} اختصاص داد" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "بودجه را نمی‌توان به {0} اختصاص داد، زیرا این حساب درآمد یا هزینه نیست" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8907,7 +8929,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "ساخت همه؟" @@ -8915,7 +8937,7 @@ msgstr "ساخت همه؟" msgid "Build Tree" msgstr "ساختار درختی را بساز" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "مقدار قابل ساخت" @@ -9242,6 +9264,10 @@ msgstr "موجودی صورتحساب بانکی محاسبه شده" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9413,7 +9439,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "قابل تأیید توسط {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "نمی‌توان دستور کار را بست. از آنجایی که کارت کارهای {0} در حالت در جریان تولید هستند." @@ -9442,21 +9468,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "اگر بر اساس سند مالی گروه بندی شود، نمی‌توان بر اساس شماره سند مالی فیلتر کرد" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "فقط می‌توانید با {0} پرداخت نشده انجام دهید" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "فقط در صورتی می‌توان ردیف را ارجاع داد که نوع شارژ «بر مبلغ ردیف قبلی» یا «مجموع ردیف قبلی» باشد" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "نمی‌توان روش ارزش گذاری را تغییر داد، زیرا تراکنش‌هایی در برابر برخی آیتم‌ها وجود دارد که روش ارزش گذاری خاص خود را ندارند" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "قبل از لغو این مطالبه گارانتی، بازدید از {0} را لغو کنید" @@ -9485,7 +9514,7 @@ msgstr "لغو هنگام پایان دوره" msgid "Cancelation Date" msgstr "تاریخ لغو" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9493,11 +9522,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "نمی‌توان زمان رسیدن را محاسبه کرد زیرا آدرس راننده جا افتاده است." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9512,10 +9536,6 @@ msgstr "" msgid "Cannot Merge" msgstr "نمی‌توان ادغام کرد" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "نمی‌توان مسیر را بهینه کرد زیرا آدرس راننده وجود ندارد." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "امکان برکناری کارمند وجود ندارد" @@ -9540,6 +9560,11 @@ msgstr "نمی‌توان TDS را در یک ثبت در مقابل چندین msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "نمی‌تواند یک آیتم دارایی ثابت باشد زیرا دفتر موجودی ایجاد شده است." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9549,14 +9574,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "نمی‌توان لغو کرد زیرا ثبت موجودی ارسال شده {0} وجود دارد" @@ -9564,7 +9589,7 @@ msgstr "نمی‌توان لغو کرد زیرا ثبت موجودی ارسال msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "نمی‌توان تراکنش را لغو کرد. ارسال مجدد ارزیابی اقلام هنگام ارسال هنوز تکمیل نشده است." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9576,7 +9601,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "نمی‌توان تراکنش را برای دستور کار تکمیل شده لغو کرد." @@ -9601,8 +9626,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "نمی‌توان ارز پیش‌فرض شرکت را تغییر داد، زیرا تراکنش‌های موجود وجود دارد. برای تغییر واحد پول پیش‌فرض، تراکنش‌ها باید لغو شوند." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "نمی‌توان کار {0} را تکمیل کرد زیرا تسک وابسته آن {1} تکمیل نشده / لغو شد." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9628,7 +9653,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "نمی‌توان ورودی های رزرو موجودی را برای رسیدهای خرید با تاریخ آینده ایجاد کرد." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "نمی‌توان لیست انتخاب برای سفارش فروش {0} ایجاد کرد زیرا موجودی رزرو کرده است. لطفاً برای ایجاد لیست انتخاب، موجودی را لغو رزرو کنید." @@ -9637,6 +9662,10 @@ msgstr "نمی‌توان لیست انتخاب برای سفارش فروش {0} msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "نمی‌توان ثبت‌های حسابداری را در برابر حساب‌های غیرفعال ایجاد کرد: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9654,7 +9683,7 @@ msgstr "نمی‌توان به عنوان از دست رفته علام کرد، msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "وقتی دسته برای «ارزش‌گذاری» یا «ارزش‌گذاری و کل» است، نمی‌توان کسر کرد" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9667,7 +9696,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "نمی‌توان DocType هسته محافظت‌شده: {0} را حذف کرد" @@ -9699,7 +9728,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9724,19 +9753,23 @@ msgstr "نمی‌توان آیتمی را با این بارکد پیدا کرد msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "نمی‌توان یک انبار پیش‌فرض برای آیتم {0} پیدا کرد. لطفاً یکی را در مدیریت آیتم یا در تنظیمات موجودی تنظیم کنید." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "نمی‌توان مورد بیشتری برای {0} تولید کرد" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "نمی‌توان بیش از {0} مورد برای {1} تولید کرد" @@ -9748,12 +9781,16 @@ msgstr "نمی‌توان از مشتری در برابر معوقات منفی msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "نمی‌توان شماره ردیف را بزرگتر یا مساوی با شماره ردیف فعلی برای این نوع شارژ ارجاع داد" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "نمی‌توان توکن پیوند را برای به‌روزرسانی بازیابی کرد. برای اطلاعات بیشتر Log خطا را بررسی کنید" @@ -9762,19 +9799,23 @@ msgstr "نمی‌توان توکن پیوند را برای به‌روزرسا msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "توکن پیوند بازیابی نمی‌شود. برای اطلاعات بیشتر Log خطا را بررسی کنید" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "نمی‌توان نوع شارژ را به عنوان «بر مقدار ردیف قبلی» یا «بر مجموع ردیف قبلی» برای ردیف اول انتخاب کرد" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "نمی‌توان آن را به عنوان گمشده تنظیم کرد زیرا سفارش فروش انجام می‌شود." @@ -10201,9 +10242,9 @@ msgstr "نوع حساب را به دریافتنی تغییر دهید یا حس msgid "Change this date manually to setup the next synchronization start date" msgstr "برای تنظیم تاریخ شروع همگام سازی بعدی، این تاریخ را به صورت دستی تغییر دهید" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "نام مشتری به \"{}\" به عنوان \"{}\" تغییر کرده است." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10229,8 +10270,8 @@ msgstr "تغییر روش ارزش‌گذاری به میانگین متحرک، msgid "Channel Partner" msgstr "شریک کانال" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "هزینه از نوع \"واقعی\" در ردیف {0} نمی‌تواند در نرخ مورد یا مبلغ پرداختی لحاظ شود" @@ -10424,7 +10465,7 @@ msgstr "عرض چک" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "تاریخ چک / مرجع" @@ -10482,7 +10523,7 @@ msgstr "نام سند فرزند" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10492,8 +10533,8 @@ msgid "Child Table Not Allowed" msgstr "جدول فرزند مجاز نیست" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Child Task برای این Task وجود دارد. شما نمی‌توانید این Task را حذف کنید." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10671,7 +10712,7 @@ msgstr "بستن وام" msgid "Close Replied Opportunity After Days" msgstr "بستن فرصت پاسخ داده شده پس از چند روز" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "POS را ببندید" @@ -10685,7 +10726,7 @@ msgstr "سند بسته" msgid "Closed Documents" msgstr "اسناد بسته" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "دستور کار بسته را نمی‌توان متوقف کرد یا دوباره باز کرد" @@ -10915,9 +10956,9 @@ msgstr "کمیسیون" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11354,7 +11395,7 @@ msgstr "شرکت ها" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11424,7 +11465,7 @@ msgstr "شرکت ها" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11464,10 +11505,6 @@ msgstr "شرکت" msgid "Company Abbreviation" msgstr "مخفف شرکت" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "مخفف شرکت نمی‌تواند بیش از 5 کاراکتر داشته باشد" @@ -11632,7 +11669,7 @@ msgstr "آدرس حمل و نقل شرکت" msgid "Company Tax ID" msgstr "شناسه مالیاتی شرکت" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "شرکت و تاریخ ارسال الزامی است" @@ -11676,12 +11713,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "نام شرکت یکسان نیست" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "شرکت دارایی {0} و سند خرید {1} مطابقت ندارد." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11719,6 +11756,14 @@ msgstr "شرکت {0} چندین بار اضافه شد" msgid "Company {0} does not exist" msgstr "شرکت {0} وجود ندارد" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "شرکت {0} بیش از یک بار اضافه شده است" @@ -11727,14 +11772,6 @@ msgstr "شرکت {0} بیش از یک بار اضافه شده است" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "شرکت {} هنوز وجود ندارد. تنظیم مالیات لغو شد." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "شرکت {} با نمایه POS شرکت {} مطابقت ندارد" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11756,7 +11793,7 @@ msgstr "نام رقیب" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "رقبا" @@ -12200,8 +12237,8 @@ msgid "Consumed Qty" msgstr "مقدار مصرف شده" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "تعداد مصرف شده نمی‌تواند بیشتر از مقدار رزرو شده برای آیتم {0} باشد" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12516,7 +12553,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12816,7 +12853,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12841,7 +12878,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12899,7 +12936,7 @@ msgstr "شماره مرکز هزینه" msgid "Cost Center and Budgeting" msgstr "مرکز هزینه و بودجه" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "مرکز هزینه برای ردیف های آیتم به {0} به روز شده است" @@ -12911,7 +12948,7 @@ msgstr "مرکز هزینه بخشی از تخصیص مرکز هزینه است msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "مرکز هزینه در ردیف {0} جدول مالیات برای نوع {1} لازم است" @@ -12933,12 +12970,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "مرکز هزینه {0} را نمی‌توان برای تخصیص استفاده کرد زیرا به عنوان مرکز هزینه اصلی در سایر رکوردهای تخصیص استفاده می‌شود." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "مرکز هزینه {} متعلق به شرکت {} نیست" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "مرکز هزینه {} یک مرکز هزینه گروهی است و مراکز هزینه گروهی را نمی‌توان در تراکنش‌ها استفاده کرد" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13062,14 +13099,14 @@ msgid "Costing and Billing" msgstr "هزینه‌یابی و صورتحساب" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "داده‌های نسخه ی نمایشی حذف نشد" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "به دلیل عدم وجود فیلد(های) الزامی زیر، امکان ایجاد خودکار مشتری وجود ندارد:" @@ -13081,7 +13118,7 @@ msgstr "یادداشت بستانکاری به‌طور خودکار ایجاد msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "شرکت برای به‌روزرسانی حساب‌های بانکی شناسایی نشد" @@ -13091,8 +13128,8 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr " مسیری برای پیدا نشد" +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13115,7 +13152,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "تابع امتیاز معیار برای {0} حل نشد. اطمینان حاصل کنید که فرمول معتبر است." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "تابع نمره وزنی حل نشد. اطمینان حاصل کنید که فرمول معتبر است." @@ -13345,10 +13382,6 @@ msgstr "ایجاد مشتری جدید" msgid "Create New Lead" msgstr "ایجاد سرنخ جدید" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "ایجاد نسخه جدید" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13367,7 +13400,7 @@ msgstr "ایجاد عملیات" msgid "Create Opportunity" msgstr "ایجاد فرصت" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "ایجاد ثبت افتتاحیه POS" @@ -13382,7 +13415,7 @@ msgstr "ایجاد ثبت پرداخت" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "ایجاد درخواست پرداخت" @@ -13610,7 +13643,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "ایجاد یک گونه با تصویر الگو." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "یک تراکنش موجودی ورودی برای آیتم ایجاد کنید." @@ -13644,7 +13677,7 @@ msgstr "{0} {1} ایجاد شود؟" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "ایجاد {0} کارت امتیازی برای {1} بین:" @@ -13739,7 +13772,7 @@ msgstr "ایجاد کاربر..." msgid "Creating demo data" msgstr "ایجاد داده‌های آزمایشی" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "ایجاد {} از {} {}" @@ -13749,17 +13782,17 @@ msgstr "ایجاد {} از {} {}" msgid "Creation" msgstr "ایجاد" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "ایجاد {1}(ها) با موفقیت" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "ایجاد {0} ناموفق بود.\n" "\t\t\t\tبررسی لاگ تراکنش‌های انبوه" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "ایجاد {0} تا حدودی موفقیت‌آمیز بود.\n" @@ -13794,11 +13827,11 @@ msgstr "ایجاد {0} تا حدودی موفقیت‌آمیز بود.\n" msgid "Credit" msgstr "بستانکار" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "بستانکار (تراکنش)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "بستانکار ({0})" @@ -13879,7 +13912,7 @@ msgstr "روزهای اعتباری" msgid "Credit Limit" msgstr "محدودیت اعتبار" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "از حد اعتبار عبور کرد" @@ -13959,16 +13992,16 @@ msgstr "بستانکار به" msgid "Credit in Company Currency" msgstr "بستانکار به ارز شرکت" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "محدودیت اعتبار برای مشتری {0} ({1}/{2}) رد شده است" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "محدودیت اعتبار از قبل برای شرکت تعریف شده است {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "به سقف اعتبار مشتری {0} رسیده است" @@ -14027,12 +14060,12 @@ msgstr "تنظیم معیارها" msgid "Criteria Weight" msgstr "وزن معیارها" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14155,7 +14188,7 @@ msgstr "ارز و لیست قیمت" msgid "Currency can not be changed after making entries using some other currency" msgstr "پس از ثبت نام با استفاده از ارزهای دیگر، ارز را نمی‌توان تغییر داد" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14220,8 +14253,8 @@ msgid "Current BOM" msgstr "BOM فعلی" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "BOM فعلی و BOM جدید نمی‌توانند یکسان باشند" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14283,10 +14316,6 @@ msgstr "باندل سریال / دسته فعلی" msgid "Current Serial No" msgstr "شماره سریال فعلی" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "سری فعلی" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15117,7 +15146,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "خلاصه پروژه روزانه برای {0}" @@ -15262,10 +15291,6 @@ msgstr "" msgid "Day Of Week" msgstr "روز هفته" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "روز ماه" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15372,11 +15397,11 @@ msgstr "فروشنده" msgid "Debit" msgstr "بدهکار" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "بدهکار (تراکنش)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "بدهکار ({0})" @@ -15538,7 +15563,7 @@ msgstr "دسی لیتر" msgid "Decimeter" msgstr "دسی متر" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "اعلام از دست رفتن" @@ -16219,8 +16244,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "حذف در حال انجام است!" @@ -16314,7 +16339,7 @@ msgstr "آیتم‌های تحویل شده برای صدور صورتحساب" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16372,7 +16397,7 @@ msgstr "تحویل" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16702,7 +16727,7 @@ msgstr "استهلاک" msgid "Depreciation Amount" msgstr "مبلغ استهلاک" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "مبلغ استهلاک در طول دوره" @@ -16718,7 +16743,7 @@ msgstr "تاریخ استهلاک" msgid "Depreciation Details" msgstr "جزئیات استهلاک" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "استهلاک به دلیل واگذاری دارایی‌ها حذف می‌شود" @@ -16788,7 +16813,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "ردیف استهلاک {0}: مقدار مورد انتظار پس از عمر مفید باید بزرگتر یا مساوی با {1} باشد." @@ -16817,11 +16842,11 @@ msgstr "زمان‌بندی استهلاک" msgid "Depreciation Schedule View" msgstr "مشاهده برنامه زمان‌بندی استهلاک" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "استهلاک برای دارایی‌های کاملا مستهلک شده قابل محاسبه نیست" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "استهلاک از طریق معکوس کردن حذف می‌شود" @@ -16849,7 +16874,7 @@ msgstr "طراح" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "دلیل تفصیلی" @@ -16952,12 +16977,12 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "حساب تفاوت باید یک حساب از نوع دارایی/بدهی باشد، زیرا این تطبیق موجودی یک ثبت افتتاحیه است" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17019,7 +17044,7 @@ msgstr "ارزش تفاوت" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "برای هر ردیف می‌توان «انبار منبع» و «انبار هدف» متفاوتی را تنظیم کرد." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "UOM های مختلف برای آیتم‌ها منجر به مقدار نادرست (کل) خالص وزن می‌شود. مطمئن شوید که وزن خالص هر آیتم در همان UOM باشد." @@ -17192,7 +17217,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "بسته محصول غیرفعال" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "از انبار غیرفعال شده {0} نمی‌توان برای این تراکنش استفاده کرد." @@ -17201,18 +17226,18 @@ msgstr "از انبار غیرفعال شده {0} نمی‌توان برای ا msgid "Disabled items cannot be selected in any transaction." msgstr "اقلام غیرفعال را نمی‌توان در هیچ تراکنشی انتخاب کرد." -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "قوانین قیمت گذاری غیرفعال شده است زیرا این {} یک انتقال داخلی است" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "مالیات غیرفعال شامل قیمت‌ها می‌شود زیرا این {} یک انتقال داخلی است" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17461,9 +17486,9 @@ msgstr "تخفیف نمی‌تواند بیشتر از 100٪ باشد." msgid "Discount must be less than 100" msgstr "تخفیف باید کمتر از 100 باشد" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "تخفیف {} طبق شرایط پرداخت اعمال شد" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17827,11 +17852,11 @@ msgstr "آیا می‌خواهید ثبت موجودی را ارسال کنید #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} وجود ندارد" @@ -17869,22 +17894,6 @@ msgstr "جستجوی اسناد" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "نامگذاری سند" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18190,7 +18199,7 @@ msgstr "تکرار پروژه با تسک‌ها" msgid "Duplicate Sales Invoices found" msgstr "فاکتورهای فروش تکراری پیدا شد" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18344,7 +18353,7 @@ msgstr "ویرایش ظرفیت" msgid "Edit Cart" msgstr "ویرایش سبد خرید" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "ویرایش مجاز نیست" @@ -18568,8 +18577,8 @@ msgid "Email verification failed." msgstr "تأیید ایمیل انجام نشد." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "ایمیل ها در صف قرار گرفتند" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18756,7 +18765,7 @@ msgstr "کارمندان" msgid "Empty" msgstr "خالی" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18765,7 +18774,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "امز (پیکا)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18844,6 +18853,12 @@ msgstr "" msgid "Enable European Access" msgstr "دسترسی اروپایی را فعال کنید" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19115,7 +19130,7 @@ msgstr "زمان پایان" msgid "End Transit" msgstr "پایان حمل و نقل" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19238,7 +19253,7 @@ msgstr "شماره تلفن مشتری را وارد کنید" msgid "Enter date to scrap asset" msgstr "تاریخ اسقاط دارایی را وارد کنید" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "جزئیات استهلاک را وارد کنید" @@ -19293,6 +19308,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "مبلغ {0} را وارد کنید." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "سرگرمی و تفریح" @@ -19328,7 +19347,7 @@ msgstr "نوع ثبت" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "حقوق صاحبان سهام" @@ -19352,7 +19371,7 @@ msgstr "ارگ" msgid "Error Description" msgstr "شرح خطا" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "خطا رخ داده است" @@ -19384,19 +19403,21 @@ msgstr "خطا هنگام ارسال ثبت‌های استهلاک" msgid "Error while processing deferred accounting for {0}" msgstr "خطا هنگام پردازش حسابداری معوق برای {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "خطا هنگام ارسال مجدد ارزش‌گذاری آیتم" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "خطا: {0} فیلد اجباری است" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "خطا: {0}" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19410,7 +19431,7 @@ msgid "Estimated Arrival" msgstr "زمان تقریبی رسیدن به مقصد" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "هزینه تخمینی" @@ -19459,7 +19480,7 @@ msgstr "مثال: ABCD.#####. اگر سری تنظیم شده باشد و Batch msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "مثال: شماره سریال {0} در {1} رزرو شده است." @@ -19740,7 +19761,7 @@ msgstr "تاریخ بسته شدن مورد انتظار" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19827,7 +19848,7 @@ msgstr "ارزش مورد انتظار پس از عمر مفید" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "هزینه" @@ -20086,9 +20107,9 @@ msgstr "فارنهایت" msgid "Failed Entries" msgstr "ثبت‌های ناموفق" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "تأیید اعتبار کلید API انجام نشد." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20285,7 +20306,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "واکشی نرخ ارز ..." @@ -20323,15 +20344,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "فیلدها فقط در زمان ایجاد کپی می‌شوند." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "فایل یافت نشد" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "فایلی در سرور یافت نشد" @@ -20340,7 +20361,7 @@ msgstr "فایلی در سرور یافت نشد" msgid "File to Rename" msgstr "فایل برای تغییر نام" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20499,11 +20520,11 @@ msgstr "ردیف گزارش مالی" msgid "Financial Report Template" msgstr "الگوی گزارش مالی" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "الگوی گزارش مالی {0} غیرفعال است" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "الگوی گزارش مالی {0} یافت نشد" @@ -20572,7 +20593,7 @@ msgstr "BOM کالای تمام شده" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20585,7 +20606,7 @@ msgstr "آیتم کالای تمام شده" msgid "Finished Good Item Code" msgstr "کد آیتم کالای تمام شده" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "تعداد آیتم کالای تمام شده" @@ -20693,7 +20714,7 @@ msgstr "انبار کالاهای تمام شده" msgid "Finished Goods based Operating Cost" msgstr "هزینه عملیاتی بر اساس کالاهای تمام شده" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "آیتم تمام شده {0} با دستور کار {1} مطابقت ندارد" @@ -20792,10 +20813,6 @@ msgstr "رژیم مالی اجباری است، لطفاً رژیم مالی ر msgid "Fiscal Year" msgstr "سال مالی" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "سال مالی (نیازمند نصب ERPNext است)" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20809,11 +20826,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "تاریخ پایان سال مالی باید یک سال پس از تاریخ شروع سال مالی باشد" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "سال مالی {0} وجود ندارد" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "سال مالی {0} وجود ندارد" @@ -20846,7 +20860,7 @@ msgstr "دارایی ثابت" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20982,7 +20996,7 @@ msgstr "فوت/ثانیه" msgid "For" msgstr "برای" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "برای آیتم‌های \"باندل محصول\"، انبار، شماره سریال و شماره دسته از جدول \"لیست بسته بندی\" در نظر گرفته می‌شود. اگر انبار و شماره دسته‌ برای همه آیتم‌های بسته‌بندی برای هر آیتم «باندل محصول» یکسان باشد، آن مقادیر را می‌توان در جدول کالای اصلی وارد کرد، مقادیر در جدول «فهرست بسته‌بندی» کپی می‌شوند." @@ -21007,10 +21021,6 @@ msgstr "برای شرکت" msgid "For Item" msgstr "برای آیتم" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21077,12 +21087,12 @@ msgid "For Work Order" msgstr "برای دستور کار" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "برای یک آیتم {0}، مقدار باید عدد منفی باشد" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "برای یک آیتم {0}، مقدار باید عدد مثبت باشد" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21114,13 +21124,13 @@ msgstr "برای مقدار هزینه = 1 امتیاز وفاداری" msgid "For individual supplier" msgstr "برای تامین کننده فردی" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "برای مورد {0}، نرخ باید یک عدد مثبت باشد. برای مجاز کردن نرخ‌های منفی، {1} را در {2} فعال کنید" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21132,8 +21142,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21149,21 +21159,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "برای مقدار {0} نباید بیشتر از مقدار مجاز {1} باشد" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "برای مرجع" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "برای ردیف {0} در {1}. برای گنجاندن {2} در نرخ آیتم، ردیف‌های {3} نیز باید گنجانده شوند" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "برای ردیف {0}: تعداد برنامه‌ریزی شده را وارد کنید" @@ -21182,11 +21188,15 @@ msgstr "برای شرط «اعمال قانون روی موارد دیگر» ف msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21274,6 +21284,21 @@ msgstr "پست های انجمن" msgid "Forum URL" msgstr "آدرس انجمن" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "مدرسه Frappe" @@ -21817,7 +21842,7 @@ msgstr "تراز دفتر کل" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "ثبت در دفتر کل" @@ -21942,6 +21967,10 @@ msgstr "دفتر کل" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21995,7 +22024,7 @@ msgstr "ایجاد ثبت اختتامیه موجودی" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22338,7 +22367,7 @@ msgstr "کالاهای در حال حمل و نقل" msgid "Goods Transferred" msgstr "کالاهای منتقل شده" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "کالاها قبلاً در مقابل ثبت خروجی {0} دریافت شده اند" @@ -22521,7 +22550,7 @@ msgstr "" msgid "Grant Commission" msgstr "اعطاء کمیسیون" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "بیشتر از مبلغ" @@ -22661,7 +22690,7 @@ msgstr "گروه بندی بر اساس سفارش فروش" msgid "Group by Voucher" msgstr "گروه بندی بر اساس سند مالی" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "انبار گره گروه مجاز به انتخاب برای تراکنش‌ها نیست" @@ -22964,7 +22993,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "در اینجا گزارش‌های خطا برای ثبت‌های استهلاک ناموفق فوق الذکر آمده است: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "در اینجا گزینه‌هایی برای ادامه وجود دارد:" @@ -22992,7 +23021,7 @@ msgstr "در اینجا، تخفیف‌های هفتگی شما بر اساس ا msgid "Hertz" msgstr "هرتز" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "سلام،" @@ -23028,7 +23057,7 @@ msgstr "" msgid "Hide Images" msgstr "مخفی کردن تصاویر" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "پنهان کردن سفارش‌های اخیر" @@ -23612,15 +23641,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "اگر نه، می‌توانید این ثبت را لغو / ارسال کنید" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23658,7 +23687,7 @@ msgstr "اگر BOM منجر به مواد ضایعات شود، انبار ضا msgid "If the account is frozen, entries are allowed to restricted users." msgstr "اگر حساب مسدود شود، ورود به کاربران محدود مجاز است." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "اگر آیتم به عنوان یک آیتم نرخ ارزش‌گذاری صفر در این ثبت تراکنش می‌شود، لطفاً \"نرخ ارزش‌گذاری صفر مجاز\" را در جدول آیتم {0} فعال کنید." @@ -23759,7 +23788,7 @@ msgstr "اگر نیاز به تطبیق معاملات خاصی با یکدیگ msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "اگر همچنان می‌خواهید ادامه دهید، لطفاً {0} را فعال کنید." @@ -23977,14 +24006,14 @@ msgstr "درون‌بُرد فاکتورها" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "درون‌بُرد با موفقیت انجام شد" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "خلاصه درون‌بُرد" @@ -24461,7 +24490,7 @@ msgstr "شامل آیتم‌های زیر مونتاژ ها" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "درآمد" @@ -24547,7 +24576,7 @@ msgstr "تماس ورودی از {0}" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "حساب نادرست" @@ -24556,7 +24585,7 @@ msgstr "حساب نادرست" msgid "Incorrect Balance Qty After Transaction" msgstr "تعداد موجودی نادرست پس از تراکنش" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "دسته نادرست مصرف شده است" @@ -24564,11 +24593,11 @@ msgstr "دسته نادرست مصرف شده است" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "شرکت نادرست" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24577,7 +24606,7 @@ msgstr "" msgid "Incorrect Date" msgstr "تاریخ نادرست" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "فاکتور نادرست" @@ -24594,7 +24623,7 @@ msgstr "سند مرجع نادرست (آیتم رسید خرید)" msgid "Incorrect Serial No Valuation" msgstr "ارزش گذاری شماره سریال نادرست است" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "شماره سریال نادرست مصرف شده است" @@ -24677,7 +24706,7 @@ msgstr "افزایش" msgid "Increment cannot be 0" msgstr "افزایش نمی‌تواند 0 باشد" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "افزایش برای ویژگی {0} نمی‌تواند 0 باشد" @@ -24874,7 +24903,7 @@ msgid "Instruction" msgstr "دستورالعمل" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "ظرفیت ناکافی" @@ -24890,12 +24919,12 @@ msgstr "مجوزهای ناکافی" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "موجودی ناکافی" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "موجودی ناکافی برای دسته" @@ -25025,7 +25054,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "بهره و/یا هزینه اخطار بدهی" @@ -25050,7 +25079,7 @@ msgstr "داخلی" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "مشتری داخلی برای شرکت {0} از قبل وجود دارد" @@ -25076,7 +25105,7 @@ msgstr "مرجع فروش داخلی وجود ندارد" msgid "Internal Supplier Details" msgstr "جزئیات تأمین‌کننده داخلی" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "تامین کننده داخلی برای شرکت {0} از قبل وجود دارد" @@ -25097,7 +25126,7 @@ msgstr "تامین کننده داخلی برای شرکت {0} از قبل وج msgid "Internal Transfer" msgstr "انتقال داخلی" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "مرجع انتقال داخلی وجود ندارد" @@ -25139,8 +25168,8 @@ msgstr "بازه زمانی باید بین 1 تا 59 دقیقه باشد" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25159,7 +25188,7 @@ msgstr "" msgid "Invalid Amount" msgstr "مبلغ نامعتبر" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "ویژگی نامعتبر است" @@ -25176,11 +25205,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "بارکد نامعتبر هیچ موردی به این بارکد متصل نیست." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "سفارش کلی نامعتبر برای مشتری و آیتم انتخاب شده" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "قالب CSV نامعتبر است. ستون مورد انتظار: doctype_name" @@ -25200,13 +25229,13 @@ msgstr "شرکت نامعتبر برای معاملات بین شرکتی." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "مرکز هزینه نامعتبر است" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "گروه مشتری نامعتبر" @@ -25227,11 +25256,11 @@ msgstr "" msgid "Invalid Discount" msgstr "تخفیف نامعتبر" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "مبلغ تخفیف نامعتبر است" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "سند نامعتبر" @@ -25261,7 +25290,7 @@ msgstr "گروه نامعتبر توسط" msgid "Invalid Item" msgstr "آیتم نامعتبر" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "پیش‌فرض‌های آیتم نامعتبر" @@ -25270,7 +25299,7 @@ msgstr "پیش‌فرض‌های آیتم نامعتبر" msgid "Invalid Ledger Entries" msgstr "ثبت‌های دفتر نامعتبر" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "مبلغ خالص خرید نامعتبر است" @@ -25309,7 +25338,7 @@ msgstr "قالب چاپ نامعتبر" msgid "Invalid Priority" msgstr "اولویت نامعتبر است" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "پیکربندی هدررفت فرآیند نامعتبر است" @@ -25326,7 +25355,7 @@ msgstr "تعداد نامعتبر است" msgid "Invalid Quantity" msgstr "مقدار نامعتبر" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "پرسمان نامعتبر" @@ -25338,8 +25367,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "فاکتورهای فروش نامعتبر" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "زمان‌بندی نامعتبر است" @@ -25347,7 +25376,7 @@ msgstr "زمان‌بندی نامعتبر است" msgid "Invalid Selling Price" msgstr "قیمت فروش نامعتبر" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "باندل سریال و دسته نامعتبر" @@ -25364,7 +25393,7 @@ msgstr "نوع درخت نامعتبر {0}" msgid "Invalid Upload" msgstr "آپلود نامعتبر" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "مقدار نامعتبر است" @@ -25374,14 +25403,14 @@ msgid "Invalid Warehouse" msgstr "انبار نامعتبر" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "مبلغ نامعتبر در ثبت‌های حسابداری {} {} برای حساب {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "عبارت شرط نامعتبر است" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "URL فایل نامعتبر است" @@ -25413,7 +25442,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "کلید نتیجه نامعتبر است. واکنش:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "پرسمان جستجوی نامعتبر" @@ -26376,10 +26405,6 @@ msgstr "تاریخ صادر شدن" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "ممکن است چند ساعت طول بکشد تا ارزش موجودی دقیق پس از ادغام اقلام قابل مشاهده باشد." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "برای واکشی جزئیات آیتم نیاز است." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26388,7 +26413,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26437,12 +26462,12 @@ msgstr "متن ایتالیک برای جمع‌های جزئی یا یاددا #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26475,7 +26500,7 @@ msgstr "متن ایتالیک برای جمع‌های جزئی یا یاددا #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26549,7 +26574,7 @@ msgstr "آیتم 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26710,7 +26735,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26742,7 +26767,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26751,12 +26776,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26852,7 +26877,7 @@ msgstr "کد آیتم را نمی‌توان برای شماره سریال تغ msgid "Item Code required at Row No {0}" msgstr "کد آیتم در ردیف شماره {0} مورد نیاز است" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "کد آیتم: {0} در انبار {1} موجود نیست." @@ -27048,7 +27073,7 @@ msgstr "بازتعریف گروه آیتم" msgid "Item Group Tree" msgstr "درخت گروه آیتم" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "گروه آیتم در مدیر آیتم برای آیتم {0} ذکر نشده است" @@ -27202,7 +27227,7 @@ msgstr "تولید کننده آیتم" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27233,7 +27258,7 @@ msgstr "تولید کننده آیتم" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27241,8 +27266,8 @@ msgstr "تولید کننده آیتم" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27299,7 +27324,7 @@ msgstr "تولید کننده آیتم" msgid "Item Name" msgstr "نام آیتم" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "نام آیتم الزامی است." @@ -27346,8 +27371,8 @@ msgstr "تنظیمات قیمت آیتم" msgid "Item Price Stock" msgstr "موجودی قیمت آیتم" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27359,7 +27384,7 @@ msgstr "قیمت آیتم چندین بار بر اساس لیست قیمت، ت msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "قیمت مورد برای {0} در لیست قیمت {1} به روز شد" @@ -27404,7 +27429,7 @@ msgstr "سفارش مجدد آیتم" msgid "Item Row" msgstr "ردیف آیتم" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "ردیف مورد {0}: {1} {2} در جدول بالا \"{1}\" وجود ندارد" @@ -27520,7 +27545,7 @@ msgstr "آیتم برای تولید" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "گونه آیتم" @@ -27639,7 +27664,7 @@ msgstr "جزئیات مالیاتی مبتنی بر آیتم" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27675,7 +27700,7 @@ msgstr "آیتم در جدول مواد اولیه اجباری است." msgid "Item is removed since no serial / batch no selected." msgstr "مورد حذف شده است زیرا هیچ سریال / دسته ای انتخاب نشده است." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "آیتم باید با استفاده از دکمه «دریافت آیتم‌ها از رسید خرید» اضافه شود" @@ -27689,7 +27714,7 @@ msgstr "نام آیتم" msgid "Item operation" msgstr "عملیات آیتم" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "نرخ آیتم به صفر به‌روزرسانی شده است زیرا نرخ ارزش‌گذاری مجاز صفر برای آیتم صفر {0} بررسی می‌شود" @@ -27704,7 +27729,7 @@ msgstr "آیتم برای تولید" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "ارسال مجدد ارزیابی آیتم در حال انجام است. گزارش ممکن است ارزش گذاری اقلام نادرست را نشان دهد." @@ -27720,10 +27745,6 @@ msgstr "آیتم با نام {0} در سفارش خرید یافت نشد" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "آیتم {0} را نمی‌توان به عنوان یک زیر مونتاژ از خودش اضافه کرد" @@ -27732,6 +27753,10 @@ msgstr "آیتم {0} را نمی‌توان به عنوان یک زیر مونت msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "آیتم {0} را نمی‌توان بیش از {1} در مقابل سفارش کلی {2} سفارش داد." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27741,6 +27766,7 @@ msgstr "آیتم {0} وجود ندارد" msgid "Item {0} does not exist in the system or has expired" msgstr "مورد {0} در سیستم وجود ندارد یا منقضی شده است" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "آیتم {0} وجود ندارد." @@ -27773,6 +27799,10 @@ msgstr "مورد {0} در تاریخ {1} به پایان عمر خود رسید msgid "Item {0} ignored since it is not a stock item" msgstr "مورد {0} نادیده گرفته شد زیرا کالای موجودی نیست" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "مورد {0} قبلاً در برابر سفارش فروش {1} رزرو شده/تحویل شده است." @@ -27805,7 +27835,7 @@ msgstr "آیتم {0} یک آیتم قرارداد فرعی شده نیست" msgid "Item {0} is not a template item." msgstr "آیتم {0} یک آیتم الگو نیست." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "آیتم {0} فعال نیست یا به پایان عمر رسیده است" @@ -27837,10 +27867,6 @@ msgstr "مورد {0}: تعداد سفارش‌شده {1} نمی‌تواند ک msgid "Item {0}: {1} qty produced. " msgstr "آیتم {0}: مقدار {1} تولید شده است. " -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "آیتم {} وجود ندارد." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27891,6 +27917,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "آیتم: {0} در سیستم وجود ندارد" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27907,7 +27937,7 @@ msgstr "کاتالوگ آیتم‌ها" msgid "Items Filter" msgstr "فیلتر آیتم‌ها" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "آیتم‌های مورد نیاز" @@ -27947,7 +27977,7 @@ msgstr "آیتم‌ها برای درخواست مواد اولیه" msgid "Items not found." msgstr "آیتم‌ها یافت نشدند." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "نرخ آیتم‌ها به صفر به‌روزرسانی شده است زیرا نرخ ارزش‌گذاری مجاز صفر برای آیتم‌های زیر بررسی می‌شود: {0}" @@ -27957,7 +27987,7 @@ msgstr "نرخ آیتم‌ها به صفر به‌روزرسانی شده است msgid "Items to Be Repost" msgstr "مواردی که باید بازنشر شوند" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "آیتم برای تولید برای دریافت مواد اولیه مرتبط با آن مورد نیاز است." @@ -28027,7 +28057,7 @@ msgstr "ظرفیت کاری" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28090,20 +28120,19 @@ msgstr "لاگ زمان کارت کار" msgid "Job Card and Capacity Planning" msgstr "برنامه‌ریزی کارت کار و ظرفیت" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "کارت کار {0} تکمیل شده است" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "کارت کارها" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "کار متوقف شد" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "کار شروع شد" @@ -28166,11 +28195,19 @@ msgstr "نام پیمانکار" msgid "Job Worker Warehouse" msgstr "انبار پیمانکار" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "کارت کار {0} ایجاد شد" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "شغل: {0} برای پردازش تراکنش‌های ناموفق فعال شده است" @@ -28516,7 +28553,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28637,7 +28674,7 @@ msgstr "عرض جغرافیایی" msgid "Lead" msgstr "سرنخ" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "سرنخ -> مشتری بالقوه" @@ -28731,7 +28768,7 @@ msgstr "زمان سرنخ بر حسب روز" msgid "Lead Type" msgstr "نوع سرنخ" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "سرنخ {0} به مشتری بالقوه {1} اضافه شده است." @@ -28879,7 +28916,7 @@ msgstr "افسانه" msgid "Length (cm)" msgstr "طول (سانتی متر)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "کمتر از مبلغ" @@ -28908,7 +28945,7 @@ msgstr "سطح (BOM)" msgid "Lft" msgstr "Lft" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "بدهی ها" @@ -28938,7 +28975,7 @@ msgstr "شماره پروانه" msgid "License Plate" msgstr "پلاک وسیله نقلیه" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "از حد عبور کرد" @@ -29034,8 +29071,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "پیوند به مشتری انجام نشد. لطفا دوباره تلاش کنید." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "پیوند به تامین کننده انجام نشد. لطفا دوباره تلاش کنید." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29201,7 +29238,7 @@ msgstr "جزئیات دلیل از دست دادن" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "دلایل از دست رفتن" @@ -29287,7 +29324,7 @@ msgstr "بازخرید امتیازات وفاداری" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "امتیازات وفاداری: {0}" @@ -29525,7 +29562,7 @@ msgstr "جزئیات زمان‌بندی تعمیر و نگهداری" msgid "Maintenance Schedule Item" msgstr "آیتم زمان‌بندی نگهداری" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "برنامه تعمیر و نگهداری برای همه موارد ایجاد نشده است. لطفا بر روی \"ایجاد برنامه زمانی\" کلیک کنید" @@ -29622,7 +29659,7 @@ msgstr "بازدید تعمیر و نگهداری" msgid "Maintenance Visit Purpose" msgstr "هدف بازدید از تعمیر و نگهداری" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "تاریخ شروع تعمیر و نگهداری نمی‌تواند قبل از تاریخ تحویل برای شماره سریال {0} باشد" @@ -29769,7 +29806,7 @@ msgstr "اجباری برای ترازنامه" msgid "Mandatory For Profit and Loss Account" msgstr "اجباری برای حساب سود و زیان" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "گمشده اجباری" @@ -29852,8 +29889,8 @@ msgstr "ثبت دستی ایجاد نمی‌شود! ثبت خودکار برای #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30075,7 +30112,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "نگاشت سفارش پیمانکاری فرعی ..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "نگاشت {0}..." @@ -30253,10 +30290,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30283,7 +30316,7 @@ msgstr "مصرف مواد" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "مصرف مواد برای تولید" @@ -30394,7 +30427,7 @@ msgstr "درخواست مواد" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "تاریخ درخواست مواد" @@ -30444,7 +30477,7 @@ msgstr "جزئیات درخواست مواد" msgid "Material Request Item" msgstr "آیتم درخواست مواد" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "شماره درخواست مواد" @@ -30466,7 +30499,7 @@ msgstr "نوع درخواست مواد" msgid "Material Request already created for the ordered quantity" msgstr "درخواست مواد از قبل برای مقدار سفارش داده شده ایجاد شده است" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "درخواست مواد ایجاد نشد، زیرا مقدار مواد اولیه از قبل موجود است." @@ -30480,7 +30513,7 @@ msgstr "درخواست مواد حداکثر {0} را می‌توان برای msgid "Material Request used to make this Stock Entry" msgstr "درخواست مواد برای ایجاد این ثبت موجودی استفاده شده است" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "درخواست مواد {0} لغو یا متوقف شده است" @@ -30600,14 +30633,14 @@ msgstr "مواد به تامین کننده" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "مواد قبلاً در مقابل {0} {1} دریافت شده است" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "برای کارت کار باید مواد به انبار در جریان تولید انتقال داده شود {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30775,7 +30808,7 @@ msgstr "مگاژول" msgid "Megawatt" msgstr "مگاوات" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "نرخ ارزش‌گذاری را در آیتم اصلی ذکر کنید." @@ -30810,7 +30843,7 @@ msgstr "ادغام پیشرفت" msgid "Merge similar Account Heads" msgstr "ادغام سر فصل‌های حساب مشابه" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "ادغام مالیات از اسناد متعدد" @@ -31156,7 +31189,7 @@ msgstr "هزینه های متفرقه" msgid "Mismatch" msgstr "عدم تطابق" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "جا افتاده" @@ -31165,11 +31198,11 @@ msgstr "جا افتاده" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "حساب جا افتاده" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31194,11 +31227,11 @@ msgstr "وابستگی گمشده" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "دفتر مالی جا افتاده" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "از دست رفته به پایان رسید" @@ -31206,7 +31239,7 @@ msgstr "از دست رفته به پایان رسید" msgid "Missing Formula" msgstr "فرمول جا افتاده" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "آیتم جا افتاده" @@ -31218,7 +31251,7 @@ msgstr "" msgid "Missing Payments App" msgstr "برنامه پرداخت وجود ندارد" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "فیلتر مورد نیاز وجود ندارد" @@ -31230,7 +31263,7 @@ msgstr "باندل شماره سریال جا افتاده" msgid "Missing Warehouse" msgstr "انبار گم شده" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31238,12 +31271,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "الگوی ایمیل برای ارسال وجود ندارد. لطفاً یکی را در تنظیمات تحویل تنظیم کنید." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "فیلتر مورد نیاز موجود نیست: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "مقدار از دست رفته" @@ -31492,17 +31525,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "چندین برنامه وفاداری برای مشتری {} پیدا شد. لطفا به صورت دستی انتخاب کنید" +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "قوانین قیمت چندگانه با معیارهای یکسان وجود دارد، لطفاً با اختصاص اولویت، تضاد را حل کنید. قوانین قیمت: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31522,7 +31555,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "چندین سال مالی برای تاریخ {0} وجود دارد. لطفا شرکت را در سال مالی تعیین کنید" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "چند مورد را نمی‌توان به عنوان مورد تمام شده علامت گذاری کرد" @@ -31531,10 +31564,10 @@ msgid "Music" msgstr "موسیقی" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "باید عدد کامل باشد" @@ -31619,11 +31652,7 @@ msgstr "سری نام‌گذاری اجباری است" msgid "Naming Series options" msgstr "گزینه‌های سری نامگذاری" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "سری نام‌گذاری به‌روزرسانی شد" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31667,7 +31696,7 @@ msgstr "نیاز به تحلیل دارد" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "مقدار منفی مجاز نیست" @@ -31677,12 +31706,12 @@ msgstr "مقدار منفی مجاز نیست" msgid "Negative Stock" msgstr "موجودی منفی" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "خطای موجودی منفی" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "نرخ ارزش‌گذاری منفی مجاز نیست" @@ -31760,8 +31789,8 @@ msgstr "مبلغ خالص" msgid "Net Amount (Company Currency)" msgstr "مبلغ خالص (ارز شرکت)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "ارزش خالص دارایی به عنوان" @@ -31811,7 +31840,7 @@ msgstr "نرخ خالص ساعت" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "سود خالص" @@ -31819,7 +31848,7 @@ msgstr "سود خالص" msgid "Net Profit Ratio" msgstr "نسبت سود خالص" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "سود/زیان خالص" @@ -31833,11 +31862,11 @@ msgstr "سود/زیان خالص" msgid "Net Purchase Amount" msgstr "مبلغ خالص خرید" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "مبلغ خالص خرید الزامی است" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32081,7 +32110,7 @@ msgstr "" msgid "New Income" msgstr "درآمد جدید" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "فاکتور جدید" @@ -32154,6 +32183,7 @@ msgid "New Task" msgstr "تسک جدید" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "نسخه جدید" @@ -32166,9 +32196,9 @@ msgstr "نام انبار جدید" msgid "New Workplace" msgstr "محل کار جدید" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "سقف اعتبار جدید کمتر از مبلغ معوقه فعلی برای مشتری است. حد اعتبار باید حداقل {0} باشد" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32176,6 +32206,10 @@ msgstr "سقف اعتبار جدید کمتر از مبلغ معوقه فعلی msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "فاکتورهای جدید طبق برنامه زمانی تولید می‌شود حتی اگر فاکتورهای فعلی پرداخت نشده یا سررسید گذشته باشد" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "تاریخ انتشار جدید باید در آینده باشد" @@ -32188,7 +32222,7 @@ msgstr "" msgid "New task" msgstr "تسک جدید" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "قوانین قیمت گذاری جدید {0} ایجاد شده است" @@ -32252,16 +32286,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "هیچ مشتری برای Inter Company Transactions که نماینده شرکت {0} است یافت نشد" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "هیچ مشتری با گزینه‌های انتخاب شده یافت نشد." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "هیچ یادداشت تحویلی برای مشتری انتخاب نشده است {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32269,15 +32302,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "بدون تأثیر بر دفتر حسابداری" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "هیچ موردی با بارکد {0} وجود ندارد" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "آیتمی با شماره سریال {0} وجود ندارد" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "هیچ موردی برای انتقال انتخاب نشده است." @@ -32320,11 +32353,6 @@ msgstr "بدون مجوز و اجازه" msgid "No Purchase Orders were created" msgstr "هیچ سفارش خریدی ایجاد نشد" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "هیچ رکوردی برای این تنظیمات وجود ندارد." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "بدون انتخاب" @@ -32427,6 +32455,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "هیچ مخاطبی با شناسه ایمیل پیدا نشد." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "هیچ داده ای برای این دوره وجود ندارد" @@ -32472,7 +32504,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "هیچ آیتمی برای انتقال موجود نیست." @@ -32509,10 +32541,6 @@ msgstr "دیگر هیچ فرزندی در سمت چپ وجود ندارد" msgid "No more children on Right" msgstr "دیگر هیچ فرزندی در سمت راست وجود ندارد" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "هیچ سری نام‌گذاری تعریف نشده است" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "تعداد تحویل‌ها" @@ -32609,7 +32637,7 @@ msgstr "فاکتور معوقی پیدا نشد" msgid "No outstanding invoices require exchange rate revaluation" msgstr "هیچ فاکتور معوقی نیاز به تجدید ارزیابی نرخ ارز ندارد" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "هیچ {0} معوقاتی برای {1} {2} که واجد شرایط فیلترهایی است که شما مشخص کرده اید، یافت نشد." @@ -32647,15 +32675,20 @@ msgstr "" msgid "No record found" msgstr "هیچ رکوردی پیدا نشد" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "هیچ رکوردی در جدول تخصیص یافت نشد" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "هیچ رکوردی در جدول فاکتورها یافت نشد" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "هیچ رکوردی در جدول پرداخت‌ها یافت نشد" @@ -32684,7 +32717,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "هیچ ثبت در دفتر موجودی ایجاد نشد. لطفاً مقدار یا نرخ ارزش‌گذاری آیتم‌ها را به درستی تنظیم کرده و دوباره امتحان کنید." @@ -32721,7 +32754,7 @@ msgstr "بدون ارزش" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32729,11 +32762,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "هیچ {0} برای معاملات بین شرکتی یافت نشد." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "شماره" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32785,7 +32813,7 @@ msgstr "غیر صفرها" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "هیچ یک از آیتم‌ها هیچ تغییری در مقدار یا ارزش ندارند." @@ -32796,8 +32824,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "عدد" @@ -32811,8 +32839,8 @@ msgstr "عدد" msgid "Not Applicable" msgstr "قابل اجرا نیست" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "در دسترس نیست" @@ -32875,10 +32903,6 @@ msgstr "شروع نشده است" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "اجازه تنظیم آیتم جایگزین برای آیتم {0} داده نشود" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "ایجاد بعد حسابداری برای {0} مجاز نیست" @@ -32895,10 +32919,6 @@ msgstr "مجاز نیست زیرا {0} بیش از حد مجاز است" msgid "Not authorized to edit frozen Account {0}" msgstr "مجاز به ویرایش حساب ثابت {0} نیست" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "پیکربندی نشده" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "موجود نیست" @@ -32911,7 +32931,7 @@ msgstr "موجود نیست" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33156,8 +33176,8 @@ msgid "Numeric Values" msgstr "مقادیر عددی" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Numero در فایل XML تنظیم نشده است" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33332,11 +33352,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "پس از تنظیم، این فاکتور تا تاریخ تعیین شده در حالت تعلیق خواهد بود" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "هنگامی که دستور کار بسته شد. نمی‌توان آن را از سر گرفت." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33371,7 +33391,7 @@ msgstr "فقط «ثبت‌های پرداخت» انجام‌شده در برا msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "برای درون‌بُرد داده‌ها فقط می‌توان از فایل های CSV و Excel استفاده کرد. لطفاً فرمت فایلی را که می‌خواهید آپلود کنید بررسی کنید" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "فقط فایل‌های CSV مجاز هستند" @@ -33436,7 +33456,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "فقط یک ثبت {0} می‌تواند در برابر دستور کار {1} ایجاد شود" @@ -33503,7 +33523,7 @@ msgstr "" msgid "Open Events" msgstr "رویدادهای باز" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "نمای فرم را باز کنید" @@ -33656,7 +33676,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "جزئیات تراز افتتاحیه" @@ -33686,7 +33706,7 @@ msgstr "تاریخ افتتاحیه" msgid "Opening Entry" msgstr "ثبت افتتاحیه" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "افتتاح فاکتور ایجاد در حال انجام است" @@ -33714,7 +33734,7 @@ msgstr "باز شدن مورد فاکتور" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33723,7 +33743,7 @@ msgstr "" msgid "Opening Invoices" msgstr "فاکتورهای افتتاحیه" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "خلاصه فاکتورهای افتتاحیه" @@ -33753,20 +33773,20 @@ msgstr "فاکتورهای فروش افتتاحیه ایجاد شده است." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "موجودی اولیه" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33775,7 +33795,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33818,7 +33838,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "هزینه های عملیاتی" @@ -33909,7 +33929,7 @@ msgstr "شماره ردیف عملیات" msgid "Operation Time" msgstr "زمان عملیات" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "زمان عملیات برای عملیات {0} باید بیشتر از 0 باشد" @@ -33933,8 +33953,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "عملیات {0} به دستور کار {1} تعلق ندارد" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "عملیات {0} طولانی‌تر از هر ساعت کاری موجود در ایستگاه کاری {1}، عملیات را به چندین عملیات تقسیم کنید" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34119,6 +34139,10 @@ msgstr "فرصت {0} ایجاد شد" msgid "Optimize Route" msgstr "بهینه سازی مسیر" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34135,10 +34159,6 @@ msgstr "اختیاری. این تنظیم برای فیلتر کردن در تر msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "مبلغ سفارش" @@ -34424,7 +34444,7 @@ msgid "Out of stock" msgstr "موجود نیست" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34478,7 +34498,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34559,11 +34579,11 @@ msgstr "سفارش مازاد مجاز (٪)" msgid "Over Picking Allowance (%)" msgstr "اجازه برداشت بیش از حد (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "بیش از رسید" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "بیش از رسید/تحویل {0} {1} برای مورد {2} نادیده گرفته شد زیرا شما نقش {3} را دارید." @@ -34580,14 +34600,14 @@ msgstr "مجاز به انتقال بیش از حد (%)" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "اضافه صورتحساب {0} {1} برای مورد {2} نادیده گرفته شد زیرا شما نقش {3} را دارید." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "پرداخت بیش از حد {} نادیده گرفته شد زیرا شما نقش {} را دارید." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34636,10 +34656,6 @@ msgstr "تسک‌های معوقه" msgid "Overdue and Discounted" msgstr "معوقه و با تخفیف" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "همپوشانی در امتیازدهی بین {0} و {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "شرایط همپوشانی یافت شده بین:" @@ -34705,6 +34721,11 @@ msgstr "شماره PAN" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34752,7 +34773,7 @@ msgstr "POS" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34850,8 +34871,8 @@ msgid "POS Invoice is not submitted" msgstr "فاکتور POS ارسال نشده است" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "فاکتور POS توسط کاربر {} ایجاد نشده است" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -34910,7 +34931,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34931,7 +34952,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34954,7 +34975,7 @@ msgstr "روش پرداخت POS" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "نمایه POS" @@ -34974,7 +34995,7 @@ msgstr "کاربر نمایه POS" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34986,19 +35007,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "نمایه POS {} شامل حالت پرداخت {} است. لطفاً آنها را حذف کنید تا این حالت غیرفعال شود." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35028,11 +35049,11 @@ msgstr "تنظیمات POS" msgid "POS Transactions" msgstr "معاملات POS" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "POS در ساعت {0} بسته شده است. لطفاً صفحه را رفرش کنید." -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "فاکتور POS {0} با موفقیت ایجاد شد" @@ -35051,7 +35072,7 @@ msgstr "پروژه PSOA" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "شماره (های) بسته در حال حاضر در حال استفاده است. از بسته شماره {0} امتحان کنید" @@ -35676,7 +35697,7 @@ msgstr "قطعات در میلیون" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35803,7 +35824,7 @@ msgstr "عدم تطابق طرف" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35889,7 +35910,7 @@ msgstr "آیتم خاص طرف" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35910,7 +35931,7 @@ msgstr "نوع طرف" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "نوع طرف و طرف برای حساب {0} اجباری است" @@ -35946,7 +35967,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36456,7 +36477,7 @@ msgstr "مراجع پرداخت" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36531,7 +36552,7 @@ msgstr "زمان‌بندی پرداخت" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "زمان‌بندی‌های پرداخت" @@ -36553,7 +36574,7 @@ msgstr "زمان‌بندی‌های پرداخت" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36653,8 +36674,8 @@ msgid "Payment Type" msgstr "نوع پرداخت" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "نوع پرداخت باید یکی از دریافت، پرداخت و انتقال داخلی باشد" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36860,11 +36881,11 @@ msgstr "فعالیت های در انتظار برای امروز" msgid "Pending processing" msgstr "در انتظار پردازش" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37380,12 +37401,12 @@ msgstr "شناسه مشتری Plaid" msgid "Plaid Environment" msgstr "محیط شطرنجی" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "پیوند Plaid ناموفق بود" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "بازخوانی پیوند شطرنجی مورد نیاز است" @@ -37407,7 +37428,7 @@ msgstr "راز شطرنجی" msgid "Plaid Settings" msgstr "تنظیمات شطرنجی" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "خطای همگام سازی تراکنش‌های پرداخت شده" @@ -37558,15 +37579,6 @@ msgstr "کارخانه‌ها و ماشین‌آلات" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "لطفاً موارد را مجدداً ذخیره کنید و لیست انتخاب را برای ادامه به‌روزرسانی کنید. برای توقف، فهرست انتخاب را لغو کنید." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "لطفا یک شرکت را انتخاب کنید" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "لطفا یک شرکت را انتخاب کنید" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37574,7 +37586,6 @@ msgstr "لطفا یک مشتری انتخاب کنید" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "لطفا یک تامین کننده انتخاب کنید" @@ -37582,19 +37593,19 @@ msgstr "لطفا یک تامین کننده انتخاب کنید" msgid "Please Set Priority" msgstr "لطفا اولویت را تعیین کنید" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "لطفاً گروه تامین کننده را در تنظیمات خرید تنظیم کنید." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "لطفا حساب را مشخص کنید" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "لطفا نقش \"تامین کننده\" را به کاربر {0} اضافه کنید." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "لطفا نحوه پرداخت و جزئیات موجودی افتتاح را اضافه کنید." @@ -37610,7 +37621,7 @@ msgstr "لطفاً درخواست برای پیش‌فاکتور را به نو msgid "Please add Root Account for - {0}" msgstr "لطفاً حساب ریشه برای - {0} اضافه کنید" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "لطفاً یک حساب افتتاحیه موقت در نمودار حسابها اضافه کنید" @@ -37618,35 +37629,32 @@ msgstr "لطفاً یک حساب افتتاحیه موقت در نمودار ح msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." -msgstr "لطفا حداقل یک سری نامگذاری اضافه کنید." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" +msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "لطفاً حداقل یک شماره سریال / شماره دسته اضافه کنید" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "لطفا ستون حساب بانکی را اضافه کنید" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "لطفاً حساب را به شرکت سطح ریشه اضافه کنید - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "لطفاً حساب را به شرکت سطح ریشه اضافه کنید - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "لطفاً نقش {1} را به کاربر {0} اضافه کنید." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "لطفاً تعداد را تنظیم کنید یا برای ادامه {0} را ویرایش کنید." @@ -37688,7 +37696,7 @@ msgstr "لطفاً با عملیات یا هزینه عملیاتی مبتنی msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "لطفاً پیام خطا را بررسی کنید و اقدامات لازم را برای رفع خطا انجام دهید و سپس ارسال مجدد را مجدداً راه‌اندازی کنید." @@ -37701,11 +37709,11 @@ msgstr "لطفاً شناسه مشتری Plaid و مقادیر مخفی خود msgid "Please check your email to confirm the appointment" msgstr "لطفا ایمیل خود را برای تأیید قرار ملاقات بررسی کنید" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "لطفا روی \"ایجاد برنامه زمانی\" کلیک کنید" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "لطفاً برای واکشی شماره سریال اضافه شده برای آیتم {0} روی \"ایجاد زمان‌بندی\" کلیک کنید" @@ -37721,15 +37729,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "لطفاً برای تمدید محدودیت اعتبار برای {0} با هر یک از کاربران زیر تماس بگیرید: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "لطفاً با هر یک از کاربران زیر برای {} این تراکنش تماس بگیرید." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "لطفاً برای تمدید محدودیت اعتبار برای {0} با ادمین خود تماس بگیرید." @@ -37737,11 +37745,11 @@ msgstr "لطفاً برای تمدید محدودیت اعتبار برای {0} msgid "Please convert the parent account in corresponding child company to a group account." msgstr "لطفاً حساب مادر در شرکت فرزند مربوطه را به یک حساب گروهی تبدیل کنید." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "لطفاً مشتری از سرنخ {0} ایجاد کنید." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "لطفاً در برابر فاکتورهایی که «به‌روزرسانی موجودی» را فعال کرده‌اند، اسناد مالی بهای تمام‌شده در مقصد ایجاد کنید." @@ -37753,7 +37761,7 @@ msgstr "لطفاً در صورت نیاز یک بعد حسابداری جدید msgid "Please create purchase from internal sale or delivery document itself" msgstr "لطفا خرید را از فروش داخلی یا سند تحویل خود ایجاد کنید" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "لطفاً رسید خرید یا فاکتور خرید برای آیتم {0} ایجاد کنید" @@ -37765,11 +37773,11 @@ msgstr "لطفاً قبل از ادغام {1} در {2}، باندل محصول { msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "لطفا هزینه چند دارایی را در مقابل یک دارایی ثبت نکنید." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "لطفا بیش از 500 آیتم را همزمان ایجاد نکنید" @@ -37794,8 +37802,8 @@ msgid "Please enable {0} in the {1}." msgstr "لطفاً {0} را در {1} فعال کنید." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "لطفاً {} را در {} فعال کنید تا یک مورد در چندین ردیف مجاز باشد" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37806,12 +37814,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "لطفاً مطمئن شوید که حساب {} یک حساب ترازنامه است." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "لطفاً مطمئن شوید که {} حساب {} یک حساب دریافتنی است." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37826,7 +37834,7 @@ msgstr "لطفاً حساب را برای تغییر مبلغ وارد کنید" msgid "Please enter Approving Role or Approving User" msgstr "لطفاً نقش تأیید یا کاربر تأیید را وارد کنید" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "لطفا شماره دسته را وارد کنید" @@ -37842,7 +37850,7 @@ msgstr "لطفا تاریخ تحویل را وارد کنید" msgid "Please enter Employee Id of this sales person" msgstr "لطفا شناسه کارمند این فروشنده را وارد کنید" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "لطفا حساب هزینه را وارد کنید" @@ -37851,7 +37859,7 @@ msgstr "لطفا حساب هزینه را وارد کنید" msgid "Please enter Item Code to get Batch Number" msgstr "لطفا کد آیتم را برای دریافت شماره دسته وارد کنید" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "لطفا کد آیتم را برای دریافت شماره دسته وارد کنید" @@ -37887,7 +37895,7 @@ msgstr "لطفا تاریخ مرجع را وارد کنید" msgid "Please enter Root Type for account- {0}" msgstr "لطفاً نوع ریشه را برای حساب وارد کنید- {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "لطفا شماره سریال را وارد کنید" @@ -38017,8 +38025,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "لطفاً حساب‌ها را در مقابل شرکت مادر وارد کنید یا {} را در شرکت اصلی فعال کنید." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38053,11 +38061,7 @@ msgstr "لطفاً BOM فعلی و جدید را برای جایگزینی ذک msgid "Please pull items from Delivery Note" msgstr "لطفا آیتم‌ها را از یادداشت تحویل بردارید" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "لطفاً اصلاح کنید و دوباره امتحان کنید." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "لطفاً پیوند Plaid بانک {} را بازخوانی یا بازنشانی کنید." @@ -38086,12 +38090,12 @@ msgstr "لطفا قبل از اضافه کردن زمان‌بندی تحویل msgid "Please select Template Type to download template" msgstr "لطفاً نوع الگو را برای دانلود الگو انتخاب کنید" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "لطفاً Apply Discount On را انتخاب کنید" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "لطفاً BOM را در مقابل مورد {0} انتخاب کنید" @@ -38107,9 +38111,9 @@ msgstr "لطفا حساب بانکی را انتخاب کنید" msgid "Please select Category first" msgstr "لطفاً ابتدا دسته را انتخاب کنید" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "لطفاً ابتدا نوع شارژ را انتخاب کنید" @@ -38119,8 +38123,8 @@ msgstr "لطفا شرکت را انتخاب کنید" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "لطفاً شرکت و تاریخ ارسال را برای دریافت ورودی انتخاب کنید" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38142,7 +38146,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "لطفاً شرکت موجود را برای ایجاد نمودار حساب انتخاب کنید" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "لطفاً آیتم کالای تمام شده را برای آیتم سرویس {0} انتخاب کنید" @@ -38151,6 +38155,10 @@ msgstr "لطفاً آیتم کالای تمام شده را برای آیتم س msgid "Please select Item Code first" msgstr "لطفا ابتدا کد آیتم را انتخاب کنید" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "لطفاً وضعیت تعمیر و نگهداری را به عنوان تکمیل شده انتخاب کنید یا تاریخ تکمیل را حذف کنید" @@ -38175,11 +38183,11 @@ msgstr "لطفاً قبل از انتخاب طرف، تاریخ ارسال را msgid "Please select Posting Date first" msgstr "لطفا ابتدا تاریخ ارسال را انتخاب کنید" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "لطفا لیست قیمت را انتخاب کنید" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "لطفاً تعداد را در برابر مورد {0} انتخاب کنید" @@ -38208,6 +38216,7 @@ msgid "Please select a BOM" msgstr "لطفا یک BOM را انتخاب کنید" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "لطفا یک شرکت را انتخاب کنید" @@ -38215,11 +38224,12 @@ msgstr "لطفا یک شرکت را انتخاب کنید" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "لطفا ابتدا یک شرکت را انتخاب کنید." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "لطفا یک مشتری انتخاب کنید" @@ -38228,7 +38238,7 @@ msgstr "لطفا یک مشتری انتخاب کنید" msgid "Please select a Delivery Note" msgstr "لطفاً یک یادداشت تحویل را انتخاب کنید" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "لطفاً سفارش خرید پیمانکاری فرعی را انتخاب کنید." @@ -38240,7 +38250,7 @@ msgstr "لطفا یک تامین کننده انتخاب کنید" msgid "Please select a Warehouse" msgstr "لطفاً یک انبار انتخاب کنید" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "لطفاً ابتدا یک دستور کار را انتخاب کنید." @@ -38256,6 +38266,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38289,22 +38300,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "لطفاً یک ردیف برای ایجاد یک ورودی ارسال مجدد انتخاب کنید" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "لطفاً یک تامین کننده برای واکشی پرداخت‌ها انتخاب کنید." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "لطفا یک تراکنش را انتخاب کنید." - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "لطفاً یک سفارش خرید معتبر که برای پیمانکاری فرعی پیکربندی شده است، انتخاب کنید." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "لطفاً یک مقدار برای {0} quotation_to {1} انتخاب کنید" @@ -38313,7 +38328,7 @@ msgstr "لطفاً یک مقدار برای {0} quotation_to {1} انتخاب ک msgid "Please select an item code before setting the warehouse." msgstr "لطفاً قبل از تنظیم انبار یک کد آیتم را انتخاب کنید." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "لطفا حداقل یک مقدار ویژگی انتخاب کنید" @@ -38321,10 +38336,18 @@ msgstr "لطفا حداقل یک مقدار ویژگی انتخاب کنید" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "لطفا حداقل یک ردیف را برای اصلاح انتخاب کنید" @@ -38333,18 +38356,10 @@ msgstr "لطفا حداقل یک ردیف را برای اصلاح انتخاب msgid "Please select at least one row with difference value" msgstr "لطفا حداقل یک ردیف با مقدار متفاوت انتخاب کنید" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "لطفاً حداقل یک زمان‌بندی را انتخاب کنید." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "لطفا حداقل یک عملیات برای ایجاد کارت کار انتخاب کنید" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "لطفا حساب صحیح را انتخاب کنید" @@ -38382,12 +38397,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "لطفا آیتم‌ها را برای لغو رزرو انتخاب کنید." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "لطفاً فقط یک ردیف را برای ایجاد یک ورودی ارسال مجدد انتخاب کنید" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "لطفاً ردیف‌هایی را برای ایجاد ورودی‌های ارسال مجدد انتخاب کنید" @@ -38396,8 +38411,8 @@ msgid "Please select the Company" msgstr "لطفا شرکت را انتخاب کنید" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "لطفاً نوع برنامه چند لایه را برای بیش از یک قانون مجموعه انتخاب کنید." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38420,20 +38435,16 @@ msgstr "لطفا ابتدا نوع سند را انتخاب کردن کنید." msgid "Please select the required filters" msgstr "لطفا فیلترهای مورد نیاز را انتخاب کنید" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "لطفا نوع سند معتبر را انتخاب کنید." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "لطفاً روز تعطیل هفتگی را انتخاب کنید" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "لطفاً ابتدا {0} را انتخاب کنید" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "لطفاً \"اعمال تخفیف اضافی\" را تنظیم کنید" @@ -38462,8 +38473,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "لطفاً حساب را در انبار {0} یا حساب موجودی پیش‌فرض را در شرکت {1} تنظیم کنید" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "لطفاً بعد حسابداری {} را در {} تنظیم کنید" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38492,13 +38503,11 @@ msgid "Please set Email/Phone for the contact" msgstr "لطفا ایمیل/تلفن را برای مخاطب تنظیم کنید" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "لطفاً کد مالی را برای مشتری \"%s\" تنظیم کنید" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "لطفاً کد مالی را برای مشتری \"{0}\" تنظیم کنید" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38506,8 +38515,8 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "لطفاً حساب دارایی ثابت را در {} در مقابل {} تنظیم کنید." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38523,9 +38532,8 @@ msgid "Please set Root Type" msgstr "لطفا Root Type را تنظیم کنید" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "لطفاً شناسه مالیاتی را برای مشتری \"%s\" تنظیم کنید" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "لطفاً شناسه مالیاتی را برای مشتری \"{0}\" تنظیم کنید" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38544,15 +38552,15 @@ msgid "Please set a Company" msgstr "لطفا یک شرکت تعیین کنید" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "لطفاً یک مرکز هزینه برای دارایی یا یک مرکز هزینه استهلاک دارایی برای شرکت تنظیم کنید {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "لطفاً یک فهرست تعطیلات پیش‌فرض برای شرکت {0} تنظیم کنید" @@ -38569,9 +38577,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "لطفاً یک آدرس در شرکت \"%s\" تنظیم کنید" +msgid "Please set an Address on the Company '{0}'" +msgstr "لطفاً یک آدرس در شرکت \"{0}\" تنظیم کنید" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38589,25 +38596,22 @@ msgstr "لطفاً حداقل یک ردیف در جدول مالیات ها و msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "لطفاً شناسه مالیاتی و کد مالی شرکت {0} را تنظیم کنید" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "لطفاً حساب پیش‌فرض نقدی یا بانکی را در حالت پرداخت تنظیم کنید {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "لطفاً حساب پیش‌فرض نقدی یا بانکی را در حالت پرداخت تنظیم کنید {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "لطفاً حساب پیش‌فرض نقدی یا بانکی را در حالت پرداخت تنظیم کنید {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "لطفاً حساب پیش‌فرض نقدی یا بانکی را در حالت پرداخت تنظیم کنید {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "لطفاً حساب سود/زیان تبدیل پیش‌فرض را در شرکت تنظیم کنید {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38638,11 +38642,11 @@ msgstr "لطفاً فیلتر را بر اساس کالا یا انبار تنظ msgid "Please set one of the following:" msgstr "لطفا یکی از موارد زیر را تنظیم کنید:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "لطفاً پس از ذخیره، تکرار شونده را تنظیم کنید" @@ -38650,7 +38654,7 @@ msgstr "لطفاً پس از ذخیره، تکرار شونده را تنظیم msgid "Please set the Customer Address" msgstr "لطفا آدرس مشتری را تنظیم کنید" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "لطفاً مرکز هزینه پیش‌فرض را در شرکت {0} تنظیم کنید." @@ -38705,7 +38709,7 @@ msgstr "لطفاً {0} را در شرکت {1} برای محاسبه سود / ز msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38713,7 +38717,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "لطفاً این ایمیل را با تیم پشتیبانی خود به اشتراک بگذارید تا آنها بتوانند مشکل را پیدا کرده و برطرف کنند." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "لطفا شرکت را مشخص کنید" @@ -38723,8 +38727,8 @@ msgstr "لطفا شرکت را مشخص کنید" msgid "Please specify Company to proceed" msgstr "لطفاً شرکت را برای ادامه مشخص کنید" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "لطفاً یک شناسه ردیف معتبر برای ردیف {0} در جدول {1} مشخص کنید" @@ -38732,11 +38736,11 @@ msgstr "لطفاً یک شناسه ردیف معتبر برای ردیف {0} د msgid "Please specify a {0} first." msgstr "لطفا ابتدا یک {0} را مشخص کنید." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "لطفا حداقل یک ویژگی را در جدول Attributes مشخص کنید" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "لطفاً مقدار یا نرخ ارزش‌گذاری یا هر دو را مشخص کنید" @@ -38744,6 +38748,14 @@ msgstr "لطفاً مقدار یا نرخ ارزش‌گذاری یا هر دو msgid "Please specify from/to range" msgstr "لطفاً از/به محدوده را مشخص کنید" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "لطفا یک ساعت دیگر دوباره امتحان کنید." @@ -38907,7 +38919,7 @@ msgstr "نوشته شده در" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38932,7 +38944,7 @@ msgstr "نوشته شده در" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38975,8 +38987,8 @@ msgstr "تاریخ ارسال" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "تاریخ ارسال نمی‌تواند تاریخ آینده باشد" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -38984,7 +38996,7 @@ msgstr "تاریخ ارسال نمی‌تواند تاریخ آینده باشد msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39177,6 +39189,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "رئیس کل" @@ -39266,7 +39282,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "سال مالی گذشته بسته نشده است" @@ -39408,7 +39424,7 @@ msgstr "لیست قیمت کشور" msgid "Price List Currency" msgstr "لیست قیمت ارز" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "لیست قیمت ارز انتخاب نشده است" @@ -39529,7 +39545,7 @@ msgstr "قیمت به UOM وابسته نیست" msgid "Price Per Unit ({0})" msgstr "قیمت هر واحد ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "قیمت برای آیتم تعیین نشده است." @@ -39640,7 +39656,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "قانون قیمت گذاری {0} به روز شده است" @@ -39848,8 +39864,8 @@ msgid "Priorities" msgstr "اولویت های" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "اولویت نمی‌تواند کمتر از 1 باشد." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40030,7 +40046,7 @@ msgstr "فرآیند اشتراک" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "مقدار تلفات فرآیند نمی‌تواند منفی باشد." @@ -40156,7 +40172,7 @@ msgstr "باندل محصول" msgid "Product Bundle Balance" msgstr "تراز باندل محصول" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40181,7 +40197,7 @@ msgstr "راهنمای باندل محصول" msgid "Product Bundle Item" msgstr "آیتم باندل محصول" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40384,7 +40400,7 @@ msgstr "محصولات" msgid "Profit & Loss" msgstr "سود و زیان" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "سود امسال" @@ -40413,6 +40429,10 @@ msgstr "سود و زیان" msgid "Profit and Loss Statement" msgstr "صورت سود و زیان" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40421,8 +40441,8 @@ msgstr "صورت سود و زیان" msgid "Profit and Loss Summary" msgstr "خلاصه سود و زیان" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "سود سال" @@ -40495,7 +40515,7 @@ msgstr "وضعیت پروژه" msgid "Project Summary" msgstr "خلاصه ی پروژه" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "خلاصه پروژه برای {0}" @@ -40575,7 +40595,7 @@ msgstr "ردیابی موجودی مبتنی بر پروژه" msgid "Project wise Stock Tracking " msgstr "ردیابی موجودی از نظر پروژه " -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "داده‌های پروژه محور برای پیش‌فاکتور در دسترس نیست" @@ -40626,7 +40646,7 @@ msgstr "مقدار پیش‌بینی شده" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40772,7 +40792,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "مشتری های بالقوه مورد توجه قرار گرفته اما تبدیل نشده" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40805,9 +40825,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "حساب هزینه موقت" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "سود / زیان موقت (بستانکار)" @@ -41035,8 +41055,8 @@ msgstr "روندهای فاکتور خرید" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "فاکتور خرید نمی‌تواند در مقابل دارایی موجود {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "فاکتور خرید {0} قبلا ارسال شده است" @@ -41077,7 +41097,7 @@ msgstr "فاکتورهای خرید" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41101,11 +41121,11 @@ msgstr "فاکتورهای خرید" msgid "Purchase Order" msgstr "سفارش خرید" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "مبلغ سفارش خرید" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "مبلغ سفارش خرید (ارز شرکت)" @@ -41120,7 +41140,7 @@ msgstr "مبلغ سفارش خرید (ارز شرکت)" msgid "Purchase Order Analysis" msgstr "تجزیه و تحلیل سفارش خرید" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "تاریخ سفارش خرید" @@ -41169,8 +41189,8 @@ msgid "Purchase Order Required" msgstr "سفارش خرید الزامی است" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "سفارش خرید برای مورد {} لازم است" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41229,8 +41249,8 @@ msgid "Purchase Orders to Receive" msgstr "سفارش خرید برای دریافت" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "سفارش‌های خرید {0} لغو پیوند هستند" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41319,8 +41339,8 @@ msgid "Purchase Receipt Required" msgstr "رسید خرید الزامی است" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "رسید خرید برای کالای {} مورد نیاز است" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41339,8 +41359,8 @@ msgid "Purchase Receipt Trends " msgstr "روند رسید خرید " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "رسید خرید هیچ موردی ندارد که حفظ نمونه برای آن فعال باشد." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41567,7 +41587,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41586,7 +41606,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41651,7 +41671,7 @@ msgstr "مقدار پس از تراکنش" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41688,7 +41708,7 @@ msgstr "تعداد در هر واحد" msgid "Qty To Manufacture" msgstr "تعداد برای تولید" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "مقدار برای تولید ({0}) نمی‌تواند کسری از UOM {2} باشد. برای مجاز کردن این امر، '{1}' را در UOM {2} غیرفعال کنید." @@ -41783,7 +41803,7 @@ msgstr "مقدار قابل مصرف" msgid "Qty to Bill" msgstr "مقدار برای صورتحساب" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "تعداد برای ساخت" @@ -41969,7 +41989,7 @@ msgstr "بازرسی کیفیت" msgid "Quality Inspection Analysis" msgstr "تجزیه و تحلیل بازرسی کیفیت" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42046,7 +42066,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "بازرسی(های) کیفیت" @@ -42129,7 +42149,7 @@ msgstr "بررسی کیفیت" msgid "Quality Review Objective" msgstr "هدف بررسی کیفیت" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42173,12 +42193,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42329,7 +42349,7 @@ msgstr "مقدار مورد نیاز است" msgid "Quantity must be greater than zero" msgstr "مقدار باید بزرگتر از صفر باشد" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "مقدار باید بزرگتر از صفر باشد." @@ -42357,11 +42377,11 @@ msgstr "مقدار باید بیشتر از 0 باشد" msgid "Quantity to Manufacture" msgstr "مقدار برای تولید" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "مقدار برای تولید نمی‌تواند برای عملیات صفر باشد {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "مقدار تولید باید بیشتر از 0 باشد." @@ -42369,6 +42389,10 @@ msgstr "مقدار تولید باید بیشتر از 0 باشد." msgid "Quantity to Scan" msgstr "مقدار برای اسکن" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42394,7 +42418,7 @@ msgstr "سه ماهه {0} {1}" msgid "Query Route String" msgstr "رشته مسیر پرسمان" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "اندازه صف باید بین 5 تا 100 باشد" @@ -42634,7 +42658,7 @@ msgstr "مطرح شده توسط (ایمیل)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42818,7 +42842,7 @@ msgid "Rate at which this tax is applied" msgstr "نرخی که این مالیات اعمال می‌شود" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43137,7 +43161,7 @@ msgstr "دلیل تعلیق" msgid "Reason for Failure" msgstr "دلیل شکست" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "دلیل منتظر گذاشتن" @@ -43379,8 +43403,8 @@ msgstr "لیست گیرنده خالی است لطفا لیست گیرنده ا msgid "Receiving" msgstr "دریافت کننده" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "سفارش‌های اخیر" @@ -43556,6 +43580,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43606,7 +43634,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Recurse Over Qty نمی‌تواند کمتر از 0 باشد" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43686,7 +43714,7 @@ msgstr "مرجع #" msgid "Reference #{0} dated {1}" msgstr "مرجع #{0} به تاریخ {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "تاریخ مرجع برای تخفیف پرداخت زودهنگام" @@ -43978,8 +44006,8 @@ msgid "Rejected Warehouse" msgstr "انبار مرجوعی" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "انبار رد شده و انبار پذیرفته شده نمی‌توانند یکسان باشند." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44085,7 +44113,7 @@ msgstr "ملاحظات" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44124,7 +44152,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "آیتم‌های بدون تغییر در مقدار یا ارزش حذف شدند." @@ -44275,7 +44303,7 @@ msgstr "گزارش خطا" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44358,7 +44386,7 @@ msgstr "لاگ خطای ارسال مجدد" msgid "Repost Item Valuation" msgstr "ارسال مجدد ارزش گذاری آیتم" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44404,6 +44432,15 @@ msgstr "بازنشر در پس‌زمینه شروع شد" msgid "Reposting Data File" msgstr "ارسال مجدد فایل داده" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44488,7 +44525,7 @@ msgstr "درخواست بر اساس تاریخ" msgid "Reqd Qty (BOM)" msgstr "مقدار مورد نیاز (BOM)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "درخواست بر اساس تاریخ" @@ -44604,11 +44641,11 @@ msgstr "تعداد درخواستی" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "مقدار درخواستی: مقدار درخواستی برای خرید، اما سفارش داده نشده." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "سایت درخواستی" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "درخواست کننده" @@ -44787,6 +44824,10 @@ msgstr "رزرو موجودی" msgid "Reserve Warehouse" msgstr "انبار رزرو" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "رزرو برای مواد اولیه" @@ -44825,8 +44866,8 @@ msgid "Reserved Qty" msgstr "تعداد رزرو شده" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "تعداد رزرو شده ({0}) نمی‌تواند کسری باشد. برای اجازه دادن به این کار، \"{1}\" را در UOM {3} غیرفعال کنید." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "تعداد رزرو شده ({0}) نمی‌تواند کسری باشد. برای اجازه دادن به این کار، \"{1}\" را در UOM {2} غیرفعال کنید." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44870,7 +44911,7 @@ msgstr "مقدار رزرو شده" msgid "Reserved Quantity for Production" msgstr "مقدار رزرو شده برای تولید" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "شماره سریال رزرو شده" @@ -44886,13 +44927,13 @@ msgstr "شماره سریال رزرو شده" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "موجودی رزرو شده" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "موجودی رزرو شده برای دسته" @@ -45386,6 +45427,10 @@ msgstr "نرخ ارز برگشتی نه عدد صحیح است و نه شناو msgid "Returns" msgstr "برمی گرداند" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45810,11 +45855,11 @@ msgstr "نام مسیریابی" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "ردیف # {0}: نمی‌توان بیش از {1} را برای مورد {2} برگرداند" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "ردیف # {0}: لطفاً باندل سریال و دسته را برای آیتم {1} اضافه کنید" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45898,23 +45943,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "ردیف #{0}: شماره دسته {1} قبلاً انتخاب شده است." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "ردیف #{0}: نمی‌توان بیش از {1} را در مقابل مدت پرداخت {2} تخصیص داد" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45990,13 +46035,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "ردیف #{0}: آستانه تجمعی نمی‌تواند کمتر از آستانه یک تراکنش باشد" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46008,7 +46056,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46016,12 +46064,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46033,7 +46081,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "ردیف #{0}: BOM پیش‌فرض برای آیتم کالای تمام شده {1} یافت نشد" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "ردیف #{0}: تاریخ شروع استهلاک الزامی است" @@ -46041,6 +46089,10 @@ msgstr "ردیف #{0}: تاریخ شروع استهلاک الزامی است" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "ردیف #{0}: ورودی تکراری در منابع {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "ردیف #{0}: تاریخ تحویل مورد انتظار نمی‌تواند قبل از تاریخ سفارش خرید باشد" @@ -46053,11 +46105,18 @@ msgstr "ردیف #{0}: حساب هزینه برای مورد {1} تنظیم نش msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "ردیف #{0}: مقدار آیتم کالای تمام شده نمی‌تواند صفر باشد" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46080,8 +46139,8 @@ msgstr "ردیف #{0}: کالای تمام شده باید {1} باشد" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "ردیف #{0}: مرجع کالای تمام شده برای آیتم ثانویه {1} الزامی است." -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46093,7 +46152,7 @@ msgstr "ردیف #{0}: برای {1}، فقط در صورتی می‌توانید msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "ردیف #{0}: برای {1}، فقط در صورتی می‌توانید سند مرجع را انتخاب کنید که حساب بدهکار شود" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46105,6 +46164,10 @@ msgstr "ردیف #{0}: از تاریخ نمی‌تواند قبل از تا تا msgid "Row #{0}: From Time and To Time fields are required" msgstr "ردیف #{0}: فیلدهای «از زمان» و «تا زمان» الزامی هستند" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "ردیف #{0}: مورد اضافه شد" @@ -46133,16 +46196,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "ردیف #{0}: آیتم {1} یک آیتم ارائه شده توسط مشتری نیست." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "ردیف #{0}: آیتم {1} یک آیتم سریال/دسته‌ای نیست. نمی‌تواند یک شماره سریال / شماره دسته در مقابل آن داشته باشد." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46158,12 +46221,16 @@ msgstr "ردیف #{0}: مورد {1} یک کالای موجودی نیست" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46174,15 +46241,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "ردیف #{0}: ثبت دفتر روزنامه {1} دارای حساب {2} نیست یا قبلاً با سند مالی دیگری مطابقت دارد" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46194,24 +46261,48 @@ msgstr "ردیف #{0}: به دلیل وجود سفارش خرید، مجاز ب msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "ردیف #{0}: فقط {1} برای رزرو مورد {2} موجود است" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "ردیف #{0}: لطفاً کد آیتم را در آیتم‌های اسمبلی انتخاب کنید" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "ردیف #{0}: لطفاً شماره BOM را در آیتم‌های اسمبلی انتخاب کنید" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46227,6 +46318,10 @@ msgstr "ردیف #{0}: لطفاً مقدار سفارش مجدد را تنظیم msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "ردیف #{0}: لطفاً حساب درآمد/هزینه معوق را در ردیف آیتم یا حساب پیش‌فرض در اصلی شرکت به‌روزرسانی کنید." +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46246,8 +46341,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "ردیف #{0}: تعداد باید یک عدد مثبت باشد" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "ردیف #{0}: تعداد باید کمتر یا برابر با تعداد موجود برای رزرو (تعداد واقعی - تعداد رزرو شده) {1} برای Iem {2} در مقابل دسته {3} در انبار {4} باشد." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46269,7 +46364,7 @@ msgstr "ردیف #{0}: مقدار نمی‌تواند عدد غیرمثبت با msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "ردیف #{0}: مقدار آیتم {1} نمی‌تواند صفر باشد." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46277,17 +46372,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "ردیف #{0}: مقدار قابل رزرو برای مورد {1} باید بیشتر از 0 باشد." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "ردیف #{0}: نرخ باید مانند {1} باشد: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "ردیف #{0}: نوع سند مرجع باید یکی از سفارش خرید، فاکتور خرید یا ورودی روزنامه باشد." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "ردیف #{0}: نوع سند مرجع باید یکی از سفارش‌های فروش، فاکتور فروش، ثبت دفتر روزنامه یا اخطار بدهی باشد" @@ -46307,11 +46402,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46321,7 +46416,7 @@ msgstr "ردیف #{0}: مقدار آیتم ثانویه نمی‌تواند صف #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46330,6 +46425,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "ردیف #{0}: شناسه توالی برای عملیات {3} باید {1} یا {2} باشد." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "ردیف #{0}: شماره سریال {1} به دسته {2} تعلق ندارد" @@ -46342,7 +46441,7 @@ msgstr "ردیف #{0}: شماره سریال {1} برای آیتم {2} در {3} msgid "Row #{0}: Serial No {1} is already selected." msgstr "ردیف #{0}: شماره سریال {1} قبلاً انتخاب شده است." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46366,7 +46465,7 @@ msgstr "ردیف #{0}: تنظیم تامین کننده برای مورد {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "ردیف #{0}: از آنجایی که «ردیابی کالاهای نیمه‌ساخته» فعال است، نمی‌توان از BOM {1} برای آیتم‌های زیر مونتاژ استفاده کرد" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46435,7 +46534,7 @@ msgstr "ردیف #{0}: موجودی برای رزرو مورد {1} در انبا msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46443,19 +46542,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "ردیف #{0}: دسته {1} قبلاً منقضی شده است." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "ردیف #{0}: زمان‌بندی با ردیف {1} در تضاد است" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46467,11 +46574,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "ردیف #{0}: نمی‌توانید از بعد موجودی «{1}» در تطبیق موجودی برای تغییر مقدار یا نرخ ارزش‌گذاری استفاده کنید. تطبیق موجودی با ابعاد موجودی صرفاً برای انجام ورودی های افتتاحیه در نظر گرفته شده است." @@ -46479,6 +46590,19 @@ msgstr "ردیف #{0}: نمی‌توانید از بعد موجودی «{1}» د msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "ردیف #{0}: باید یک دارایی برای آیتم {1} انتخاب کنید." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "ردیف #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "ردیف #{0}: {1} نمی‌تواند برای مورد {2} منفی باشد" @@ -46495,6 +46619,14 @@ msgstr "ردیف #{0}: {1} برای ایجاد فاکتورهای افتتاحی msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "ردیف #{0}: {1} از {2} باید {3} باشد. لطفاً {1} را به روز کنید یا حساب دیگری را انتخاب کنید." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "ردیف #{0}: مقدار برای آیتم {1} نمی‌تواند صفر باشد." @@ -46535,71 +46667,10 @@ msgstr "ردیف #{idx}: {from_warehouse_field} و {to_warehouse_field} نمی msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "ردیف #{idx}: {schedule_date} نمی‌تواند قبل از {transaction_date} باشد." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "ردیف #{}: واحد پول {} - {} با واحد پول شرکت مطابقت ندارد." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "ردیف #{}: دفتر مالی نباید خالی باشد زیرا از چندگانه استفاده می‌کنید." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "ردیف #{}: فاکتور POS {} شده است {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "ردیف #{}: فاکتور POS {} در مقابل مشتری {} نیست" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "ردیف #{}: فاکتور POS {} هنوز ارسال نشده است" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "ردیف #{}: لطفاً کار را به یک عضو اختصاص دهید." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "ردیف #{}: لطفاً از دفتر مالی دیگری استفاده کنید." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "ردیف #{}: شماره سریال {} قابل بازگشت نیست زیرا در صورتحساب اصلی تراکنش نشده است." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "ردیف #{}: نمی‌توانید مقادیر مثبت را در فاکتور برگشتی اضافه کنید. لطفاً مورد {} را برای تکمیل بازگشت حذف کنید." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "ردیف #{}: مورد {} قبلاً انتخاب شده است." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "ردیف #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "ردیف #{}: {} {} وجود ندارد." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "ردیف #{}: {} {} به شرکت {} تعلق ندارد. لطفاً {} معتبر را انتخاب کنید." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "ردیف شماره {0}: انبار مورد نیاز است. لطفاً یک انبار پیش‌فرض برای مورد {1} و شرکت {2} تنظیم کنید" @@ -46612,10 +46683,6 @@ msgstr "ردیف {0} : عملیات در برابر مواد اولیه {1} مو msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "مقدار انتخابی ردیف {0} کمتر از مقدار مورد نیاز است، {1} {2} اضافی مورد نیاز است." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "ردیف {0}# آیتم {1} در جدول «مواد اولیه تامین شده» در {2} {3} یافت نشد" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "ردیف {0}: تعداد پذیرفته شده و تعداد رد شده نمی‌توانند همزمان صفر باشند." @@ -46636,19 +46703,19 @@ msgstr "ردیف {0}: پیش‌پرداخت در برابر مشتری باید msgid "Row {0}: Advance against Supplier must be debit" msgstr "ردیف {0}: پیش‌پرداخت در مقابل تامین کننده باید بدهکار باشد" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "ردیف {0}: مبلغ تخصیص یافته {1} باید کمتر یا برابر با مبلغ معوق فاکتور {2} باشد." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "ردیف {0}: مبلغ تخصیص یافته {1} باید کمتر یا مساوی با مبلغ پرداخت باقی مانده باشد {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "ردیف {0}: صورتحساب مواد برای آیتم {1} یافت نشد" @@ -46664,11 +46731,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "ردیف {0}: ضریب تبدیل اجباری است" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "ردیف {0}: مرکز هزینه {1} به شرکت {2} تعلق ندارد" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "ردیف {0}: مرکز هزینه برای یک مورد {1} لازم است" @@ -46696,24 +46763,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "ردیف {0}: تاریخ سررسید در جدول شرایط پرداخت نمی‌تواند قبل از تاریخ ارسال باشد" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "ردیف {0}: مرجع مورد یادداشت تحویل یا کالای بسته بندی شده اجباری است." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "ردیف {0}: نرخ ارز اجباری است" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46734,6 +46801,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "ردیف {0}: از زمان و تا زمان اجباری است." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "ردیف {0}: از زمان و تا زمان {1} با {2} همپوشانی دارد" @@ -46755,8 +46825,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "ردیف {0}: مرجع نامعتبر {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "ردیف {0}: الگوی مالیات آیتم بر اساس اعتبار و نرخ اعمال شده به روز شد" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46786,7 +46856,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "ردیف {0}: تعداد بسته بندی شده باید برابر با {1} تعداد باشد." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "ردیف {0}: برگه بسته بندی قبلاً برای مورد {1} ایجاد شده است." @@ -46810,7 +46880,7 @@ msgstr "ردیف {0}: پرداخت در برابر سفارش فروش/خرید msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "ردیف {0}: اگر این یک ثبت پیش‌پرداخت است، لطفاً «پیش‌پرداخت است» را در مقابل حساب {1} علامت بزنید." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "ردیف {0}: لطفاً یک مورد یادداشت تحویل معتبر یا مرجع کالای بسته بندی شده ارائه دهید." @@ -46818,14 +46888,14 @@ msgstr "ردیف {0}: لطفاً یک مورد یادداشت تحویل معت msgid "Row {0}: Please select a BOM for Item {1}." msgstr "ردیف {0}: لطفاً یک BOM برای مورد {1} انتخاب کنید." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "ردیف {0}: لطفاً یک BOM فعال برای مورد {1} انتخاب کنید." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "ردیف {0}: لطفاً یک BOM معتبر برای مورد {1} انتخاب کنید." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "ردیف {0}: لطفاً در مالیات و هزینه‌های فروش، دلیل معافیت مالیاتی را تنظیم کنید" @@ -46842,11 +46912,11 @@ msgstr "ردیف {0}: لطفاً کد صحیح را در حالت پرداخت { msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "ردیف {0}: پروژه باید مانند آنچه در صفحه زمان تنظیم شده است: {1} باشد." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "ردیف {0}: فاکتور خرید {1} تأثیری بر موجودی ندارد." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "ردیف {0}: تعداد نمی‌تواند بیشتر از {1} برای مورد {2} باشد." @@ -46854,7 +46924,7 @@ msgstr "ردیف {0}: تعداد نمی‌تواند بیشتر از {1} برا msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "ردیف {0}: مقدار بر حسب واحد اندازه‌گیری موجودی نمی‌تواند صفر باشد." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "ردیف {0}: تعداد باید بیشتر از 0 باشد." @@ -46866,7 +46936,7 @@ msgstr "ردیف {0}: مقدار نمی‌تواند منفی باشد." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46891,10 +46961,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "ردیف {0}: مورد {1}، مقدار باید عدد مثبت باشد" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46947,15 +47017,19 @@ msgstr "ردیف {0}: {1} {2} نمی‌تواند مانند {3} (حساب طر msgid "Row {0}: {1} {2} does not match with {3}" msgstr "ردیف {0}: {1} {2} با {3} مطابقت ندارد" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "ردیف {0}: {2} آیتم {1} در {2} {3} وجود ندارد" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "ردیف {1}: مقدار ({0}) نمی‌تواند کسری باشد. برای اجازه دادن به این کار، \"{2}\" را در UOM {3} غیرفعال کنید." @@ -46994,8 +47068,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "ردیف‌ها: {0} دارای \"ثبت پرداخت\" به عنوان reference_type هستند. این نباید به صورت دستی تنظیم شود." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "ردیف‌ها: {0} در بخش {1} نامعتبر است. نام مرجع باید به یک ثبت پرداخت معتبر یا ثبت دفتر روزنامه اشاره کند." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47055,10 +47129,6 @@ msgstr "ارزیابی قوانین تکمیل شد" msgid "Rules evaluation started" msgstr "ارزیابی قوانین آغاز شد" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "قوانین پیکربندی سری‌ها" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47126,7 +47196,7 @@ msgstr "SLA در وضعیت تکمیل شد" msgid "SLA Paused On" msgstr "SLA متوقف شد" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "SLA از {0} در حالت تعلیق است" @@ -47425,8 +47495,8 @@ msgid "Sales Invoice is not submitted" msgstr "فاکتور فروش ارسال نشده است" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "فاکتور فروش توسط کاربر {} ایجاد نشده است" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47642,8 +47712,8 @@ msgstr "سفارش فروش {0} در مقابل سفارش خرید مشتری { msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48050,7 +48120,7 @@ msgstr "آیتم مشابه" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "همان کالا و ترکیب انبار قبلا وارد شده است." @@ -48082,7 +48152,7 @@ msgstr "انبار نگهداری نمونه" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "اندازه‌ی نمونه" @@ -48192,7 +48262,7 @@ msgstr "مقدار اسکن شده" msgid "Schedule Date" msgstr "تاریخ زمان‌بندی" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48203,7 +48273,7 @@ msgstr "" msgid "Scheduled Date" msgstr "تاریخ برنامه‌ریزی شده" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48489,7 +48559,7 @@ msgstr "انتخاب حساب" msgid "Select Accounting Dimension." msgstr "انتخاب بعد حسابداری." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "انتخاب آیتم جایگزین" @@ -48510,7 +48580,7 @@ msgid "Select BOM and Qty for Production" msgstr "انتخاب BOM و مقدار برای تولید" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "انتخاب شماره دسته" @@ -48575,7 +48645,7 @@ msgstr "Dimension را انتخاب کنید" msgid "Select Dispatch Address " msgstr "انتخاب آدرس اعزام " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "کارکنان را انتخاب کنید" @@ -48600,7 +48670,7 @@ msgstr "انتخاب آیتم‌ها" msgid "Select Items based on Delivery Date" msgstr "آیتم‌ها را بر اساس تاریخ تحویل انتخاب کنید" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "انتخاب آیتم‌ها برای بازرسی کیفیت" @@ -48630,7 +48700,7 @@ msgstr "انتخاب آدرس پیمانکار" msgid "Select Loyalty Program" msgstr "برنامه وفاداری را انتخاب کنید" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48644,13 +48714,13 @@ msgid "Select Quantity" msgstr "انتخاب مقدار" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "شماره سریال را انتخاب کنید" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "سریال و دسته را انتخاب کنید" @@ -48741,6 +48811,7 @@ msgid "Select an Item Group." msgstr "یک گروه آیتم را انتخاب کنید." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "حسابی را برای چاپ با ارز حساب انتخاب کنید" @@ -48883,10 +48954,14 @@ msgstr "اسناد مالی انتخاب شده" msgid "Selected date is" msgstr "تاریخ انتخاب شده است" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "سند انتخاب شده باید در حالت ارسال شده باشد" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49034,7 +49109,7 @@ msgid "Send Emails to Suppliers" msgstr "ارسال ایمیل به تامین کنندگان" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "ارسال پیامک" @@ -49118,7 +49193,7 @@ msgstr "باندل سریال / دسته جا افتاده" msgid "Serial / Batch No" msgstr "شماره سریال / دسته" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "شماره های سریال / دسته ای" @@ -49175,10 +49250,11 @@ msgstr "تنظیمات آیتم سریال" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49220,6 +49296,10 @@ msgstr "شماره سریال / دسته" msgid "Serial No Already Assigned" msgstr "شماره سریال قبلاً اختصاص داده شده است" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "شمارش شماره سریال" @@ -49237,7 +49317,7 @@ msgstr "دفتر شماره سریال" msgid "Serial No Range" msgstr "محدوده شماره سریال" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "شماره سریال رزرو شده" @@ -49282,8 +49362,8 @@ msgid "Serial No and Batch" msgstr "شماره سریال و دسته" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "انتخاب‌گر شماره سریال و دسته زمانی که فیلدهای شماره سریال / دسته فعال شده‌اند، قابل استفاده نیست." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49294,7 +49374,7 @@ msgstr "انتخاب‌گر شماره سریال و دسته زمانی که ف msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "شماره سریال اجباری است" @@ -49314,22 +49394,19 @@ msgstr "شماره سریال {0} قبلاً اسکن شده است" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "شماره سریال {0} به یادداشت تحویل {1} تعلق ندارد" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "شماره سریال {0} به آیتم {1} تعلق ندارد" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "شماره سریال {0} وجود ندارد" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "شماره سریال {0} وجود ندارد" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "شماره سریال {0} قبلاً تحویل داده شده است. شما نمی‌توانید دوباره از آنها در قسمت تولید / بسته‌بندی مجدد استفاده کنید." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49343,25 +49420,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "شماره سریال {0} در {1} {2} وجود ندارد، بنابراین نمی‌توانید آن را در برابر {1} {2} برگردانید" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "شماره سریال {0} تحت قرارداد تعمیر و نگهداری تا {1} است" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "شماره سریال {0} تا {1} تحت ضمانت است" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "شماره سریال {0} یافت نشد" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "شماره سریال: {0} قبلاً در صورتحساب POS دیگری تراکنش شده است." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49381,7 +49459,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "شماره های سریال با موفقیت ایجاد شد" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "شماره های سریال در ورودی های رزرو موجودی رزرو شده اند، قبل از ادامه باید آنها را لغو رزرو کنید." @@ -49482,6 +49560,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49530,7 +49612,7 @@ msgstr "رزرو سریال و دسته" msgid "Serial and Batch Summary" msgstr "خلاصه سریال و دسته ای" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "شماره سریال {0} بیش از یک بار وارد شده است" @@ -49538,122 +49620,12 @@ msgstr "شماره سریال {0} بیش از یک بار وارد شده است msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "شماره‌های سریال برای آیتم {0} در انبار {1} در دسترس نیستند. لطفاً انبار را تغییر دهید و دوباره امتحان کنید." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "سری" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "سری برای ثبت استهلاک دارایی (ثبت دفتر روزنامه)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "سریال اجباری است" @@ -49735,7 +49707,7 @@ msgid "Service Item {0} is disabled." msgstr "آیتم خدمات {0} غیرفعال است." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "آیتم خدمات {0} باید یک آیتم غیر موجودی باشد." @@ -49844,12 +49816,12 @@ msgid "Service Stop Date" msgstr "تاریخ توقف خدمات" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "تاریخ توقف سرویس نمی‌تواند پس از تاریخ پایان سرویس باشد" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "تاریخ توقف سرویس نمی‌تواند قبل از تاریخ شروع سرویس باشد" @@ -49873,7 +49845,7 @@ msgstr "تنظیم پیش‌پرداخت و تخصیص (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "تنظیم نرخ پایه به صورت دستی" @@ -49888,7 +49860,7 @@ msgstr "تامین کننده پیش‌فرض را تنظیم کنید" msgid "Set Delivery Warehouse" msgstr "تنظیم انبار تحویل" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49993,7 +49965,7 @@ msgstr "تنظیم نام‌گذاری سریال و دسته‌ای باندل #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50011,7 +49983,7 @@ msgstr "تنظیم تامین کننده" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50037,7 +50009,7 @@ msgstr "به عنوان بسته تنظیم کنید" msgid "Set as Completed" msgstr "به عنوان تکمیل شده تنظیم کنید" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "به عنوان از دست رفته ست کنید" @@ -50135,15 +50107,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "تنظیم نرخ ارزیابی برای مواد رد شده" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "تنظیم {0} در دسته دارایی {1} برای شرکت {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "تنظیم {0} در دسته دارایی {1} یا شرکت {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "تنظیم {0} در شرکت {1}" @@ -50211,7 +50183,7 @@ msgid "Setting up company" msgstr "راه‌اندازی شرکت" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "تنظیم {0} الزامی است" @@ -50639,6 +50611,7 @@ msgid "Show Completed" msgstr "نمایش کامل شد" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "نمایش بدهکاری/بستانکاری به واحد پول شرکت" @@ -50841,7 +50814,7 @@ msgstr "فقط عبارت فوری آینده را نشان دهید" msgid "Show pay button in Purchase Order portal" msgstr "نمایش دکمه پرداخت در پورتال سفارش خرید" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "نمایش ثبت‌های در انتظار" @@ -50944,11 +50917,11 @@ msgstr "" msgid "Simultaneous" msgstr "همزمان" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "از آنجایی که برای کالای نهایی {1}، اتلاف فرآیند {0} واحد وجود دارد، شما باید مقدار {0} واحد برای کالای نهایی {1} در جدول آیتم‌ها را کاهش دهید." @@ -51009,7 +50982,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "از انتقال مواد به انبار «در جریان تولید» پرش کنید" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51065,8 +51038,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "اشتباهی رخ داده لطفا دوباره تلاش کنید" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51133,7 +51106,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51170,8 +51143,8 @@ msgstr "نوع منبع" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51301,7 +51274,7 @@ msgstr "تقسیم مشکل" msgid "Split Qty" msgstr "تقسیم تعداد" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51314,7 +51287,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "تقسیم {0} {1} به ردیف‌های {2} طبق شرایط پرداخت" @@ -51367,7 +51345,7 @@ msgstr "نام مرحله" msgid "Stale Days" msgstr "روزهای کهنه" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "روزهای قدیمی باید از 1 شروع شود." @@ -51432,10 +51410,26 @@ msgstr "" msgid "Standing Name" msgstr "نام رتبه" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "شروع / از سرگیری" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "تاریخ شروع نمی‌تواند قبل از تاریخ فعلی باشد" @@ -51465,7 +51459,7 @@ msgstr "زمان شروع نمی‌تواند بزرگتر یا مساوی با msgid "Start Timer" msgstr "آغاز زمان‌سنج" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51494,10 +51488,14 @@ msgstr "تاریخ شروع باید کمتر از تاریخ پایان مور msgid "Start date should be less than end date for task {0}" msgstr "تاریخ شروع باید کمتر از تاریخ پایان کار {0} باشد" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51578,7 +51576,7 @@ msgstr "مصور سازی وضعیت" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "وضعیت باید لغو یا تکمیل شود" @@ -51706,8 +51704,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "ثبت اختتامیه موجودی {0} از قبل برای محدوده تاریخ انتخاب شده وجود دارد" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "ثبت اختتامیه موجودی {0} برای پردازش در صف قرار گرفته است، سیستم مدتی طول می کشد تا آن را تکمیل کند." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51788,17 +51786,21 @@ msgstr "آیتم ثبت موجودی" msgid "Stock Entry Type" msgstr "نوع ثبت موجودی" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "ثبت موجودی قبلاً در برابر این لیست انتخاب ایجاد شده است" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "ثبت موجودی {0} ایجاد شد" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "ثبت موجودی {0} ایجاد شد" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -51964,7 +51966,7 @@ msgstr "مقدار موجودی پیش‌بینی شده" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52047,7 +52049,7 @@ msgstr "تنظیمات ارسال مجدد موجودی" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52072,15 +52074,15 @@ msgstr "رزرو موجودی" msgid "Stock Reservation Entries Cancelled" msgstr "ثبت‌های رزرو موجودی لغو شد" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "نوشته های رزرو موجودی ایجاد شد" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52250,7 +52252,7 @@ msgstr "تراکنش‌های موجودی" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52409,9 +52411,9 @@ msgstr "موجودی برای دستور کار {0} لغو رزرو شده اس msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "موجودی برای کالای {0} در انبار {1} موجود نیست." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "مقدار موجودی برای کد آیتم کافی نیست: {0} در انبار {1}. مقدار موجود {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52429,7 +52431,7 @@ msgstr "تراکنش‌های موجودی با قدمت بیشتر از روز msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "موجودی هنگام ارسال رسید خرید ایجاد شده بر اساس درخواست مواد برای سفارش فروش رزرو خواهد شد." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "موجودی/حساب‌ها را نمی‌توان مسدود کرد زیرا پردازش ورودی‌های به‌تاریخ در حال انجام است. لطفاً بعداً دوباره امتحان کنید." @@ -52444,7 +52446,7 @@ msgstr "سنگ" msgid "Stop Reason" msgstr "دلیل توقف" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "دستور کار متوقف شده را نمی‌توان لغو کرد، برای لغو، ابتدا آن را لغو کنید" @@ -52452,7 +52454,7 @@ msgstr "دستور کار متوقف شده را نمی‌توان لغو کرد #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "مغازه ها" @@ -52666,7 +52668,7 @@ msgstr "ضریب تبدیل پیمانکاری فرعی" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "کالای نهایی پیمان‌کاری فرعی" @@ -52738,7 +52740,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52776,7 +52778,7 @@ msgstr "آیتم خدمات سفارش پیمانکاری فرعی" msgid "Subcontracting Order Supplied Item" msgstr "آیتم تامین شده سفارش پیمانکاری فرعی" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "سفارش پیمانکاری فرعی {0} ایجاد شد." @@ -52850,7 +52852,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "آیتم خدمات پیمانکاری فرعی" @@ -52869,7 +52871,7 @@ msgstr "" msgid "Subdivision" msgstr "زیر مجموعه" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "اقدام ارسال نشد" @@ -52898,7 +52900,7 @@ msgstr "این دستور کار را برای پردازش بیشتر ارسا msgid "Submit your Quotation" msgstr "پیش‌فاکتور خود را ارسال کنید" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "کارت شغلی ارسال‌شده قابل پردازش نیست." @@ -53040,7 +53042,7 @@ msgstr "تنظیمات موفقیت" msgid "Successful" msgstr "موفقیت آمیز" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "با موفقیت تطبیق کرد" @@ -53218,7 +53220,7 @@ msgstr "مقدار تامین شده" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53400,7 +53402,7 @@ msgstr "تاریخ فاکتور تامین کننده" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "شماره فاکتور تامین کننده" @@ -53548,7 +53550,7 @@ msgstr "مقایسه قیمت عرضه کننده" msgid "Supplier Quotation Item" msgstr "آیتم پیش‌فاکتور تامین کننده" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "پیش‌فاکتور تامین کننده {0} ایجاد شد" @@ -53733,10 +53735,6 @@ msgstr "تیم پشتیبانی" msgid "Support Tickets" msgstr "تیکت‌های پشتیبانی" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "متغیرهای پشتیبانی‌شده:" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53822,7 +53820,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "خلاصه محاسبات TDS" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53883,8 +53881,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "دارایی هدف {0} به شرکت {1} تعلق ندارد" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "دارایی هدف {0} باید دارایی ترکیبی باشد" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -53993,11 +53991,11 @@ msgstr "لینک آدرس انبار هدف" msgid "Target Warehouse Reservation Error" msgstr "خطای رزرو انبار هدف" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "" +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "انبار هدف برای کالای تکمیل‌شده باید با انبار کالای تکمیل‌شده {0} در دستور کار {1} که به سفارش داخلی پیمانکار فرعی مرتبط است، یکسان باشد." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "انبار هدف قبل از ارسال الزامی است" @@ -54472,7 +54470,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "مبلغ مشمول مالیات" @@ -54684,7 +54682,7 @@ msgstr "تلویزیون" msgid "Template Item" msgstr "آیتم الگو" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "آیتم الگو انتخاب شد" @@ -54991,23 +54989,27 @@ msgstr "تسلا" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "از بسته شماره. فیلد نه باید خالی باشد و نه مقدار آن کمتر از 1 باشد." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "دسترسی به درخواست پیش‌فاکتور از پورتال غیرفعال است. برای اجازه دسترسی، آن را در تنظیمات پورتال فعال کنید." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "BOM که جایگزین خواهد شد" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "کمپین \"{0}\" از قبل برای {1} \"{2}\" وجود دارد" @@ -55032,6 +55034,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "ثبت‌های دفتر کل در پس‌زمینه لغو می‌شوند، ممکن است چند دقیقه طول بکشد." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "برنامه وفاداری برای شرکت انتخابی معتبر نیست" @@ -55049,9 +55055,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "لیست انتخاب دارای ورودی های رزرو موجودی نمی‌تواند به روز شود. اگر نیاز به ایجاد تغییرات دارید، توصیه می‌کنیم قبل از به‌روزرسانی فهرست انتخاب، ورودی‌های رزرو موجودی را لغو کنید." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "مقدار هدررفت فرآیند مطابق با مقدار هدررفت فرآیند کارت کارها بازنشانی شده است" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55061,11 +55070,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "شماره سریال ردیف #{0}: {1} در انبار {2} موجود نیست." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "باندل سریال و دسته {0} برای این تراکنش معتبر نیست. «نوع تراکنش» باید به جای «ورودی» در باندل سریال و دسته {0} «خروجی» باشد" @@ -55113,15 +55126,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "واحد پول فاکتور {} ({}) با واحد پول این اخطار بدهی ({}) متفاوت است." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55170,6 +55183,10 @@ msgstr "فیلد To Shareholder نمی‌تواند خالی باشد" msgid "The field {0} in row {1} is not set" msgstr "فیلد {0} در ردیف {1} تنظیم نشده است" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "فیلدهای From Shareholder و To Shareholder نمی‌توانند خالی باشند" @@ -55191,9 +55208,9 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "اعداد برگ مطابقت ندارند" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "آیتم‌های زیر، که دارای قوانین جانمایی هستند، قابل پذیرش نیستند:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55220,8 +55237,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "کارمندان زیر در حال حاضر همچنان به {0} گزارش می دهند:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "قوانین قیمت گذاری نامعتبر زیر حذف می‌شوند:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55232,7 +55249,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "ردیف‌های زیر تکراری هستند:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "{0} زیر ایجاد شد: {1}" @@ -55268,8 +55285,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "کارت کار {0} در وضعیت {1} است و شما نمی‌توانید آن را تکمیل کنید." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55306,12 +55323,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "عملیات {0} نمی‌تواند چندین بار اضافه کند" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "عملیات {0} نمی‌تواند عملیات فرعی باشد" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55359,6 +55376,10 @@ msgstr "درصد مجاز برای دریافت یا تحویل بیشتر از msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "درصدی که مجاز به انتقال بیشتر نسبت به مقدار سفارش شده هستید. به عنوان مثال، اگر 100 عدد سفارش داده اید، و مقدار مجاز شما 10٪ است، سپس شما مجاز به انتقال 110 واحد هستید." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55368,7 +55389,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "با به‌روزرسانی موارد، موجودی رزرو شده آزاد می‌شود. آیا مطمئن هستید که می‌خواهید ادامه دهید؟" @@ -55385,8 +55406,8 @@ msgid "The selected BOMs are not for the same item" msgstr "BOM های انتخاب شده برای یک مورد نیستند" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "حساب تغییر انتخاب شده {} به شرکت {} تعلق ندارد." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55402,8 +55423,8 @@ msgstr "فروشنده و خریدار نمی‌توانند یکسان باشن #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "باندل سریال و دسته {0} به {1} {2} مرتبط نیست" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55421,11 +55442,11 @@ msgstr "سهام در حال حاضر وجود دارد" msgid "The shares don't exist with the {0}" msgstr "اشتراک‌گذاری‌ها با {0} وجود ندارند" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "موجودی آیتم {0} در انبار {1} در تاریخ {2} منفی بود. برای ثبت نرخ ارزیابی صحیح، باید یک ثبت مثبت {3} قبل از تاریخ {4} و زمان {5} ایجاد کنید. برای جزئیات بیشتر، لطفاً مستندات را مطالعه کنید." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "موجودی آیتم {0} در انبار {1} در تاریخ {2} منفی بود. برای ثبت نرخ ارزیابی صحیح، باید یک ثبت مثبت {3} قبل از تاریخ {4} و زمان {5} ایجاد کنید. برای جزئیات بیشتر، لطفاً مستندات را مطالعه کنید." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "موجودی برای اقلام و انبارهای زیر رزرو شده است، همان را در {0} تطبیق موجودی لغو کنید:

                    {1}" @@ -55447,17 +55468,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "تسک به عنوان یک کار پس‌زمینه در نوبت قرار گرفته است. در صورت وجود هرگونه مشکل در پردازش در پس‌زمینه، سیستم نظری در مورد خطا در این تطبیق موجودی اضافه می‌کند و به مرحله پیش‌نویس باز می‌گردد." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "تسک به عنوان یک کار پس‌زمینه در نوبت قرار گرفته است. در صورت وجود هرگونه مشکل در پردازش در پس‌زمینه، سیستم نظری در مورد خطا در این تطبیق موجودی اضافه می‌کند و به مرحله ارسال باز می‌گردد." #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "مجموع مقدار حواله / انتقال {0} در درخواست مواد {1} نمی‌تواند بیشتر از مقدار مجاز درخواستی {2} برای آیتم {3} باشد" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55495,7 +55516,7 @@ msgstr "کاربران دارای این نقش مجاز به ایجاد/تغی msgid "The value of {0} differs between Items {1} and {2}" msgstr "مقدار {0} بین موارد {1} و {2} متفاوت است" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "مقدار {0} قبلاً به یک مورد موجود {1} اختصاص داده شده است." @@ -55519,7 +55540,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) باید برابر با {2} ({3}) باشد" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55527,7 +55548,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} با موفقیت ایجاد شد" @@ -55535,6 +55556,10 @@ msgstr "{0} {1} با موفقیت ایجاد شد" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0} {1} با {0} {2} در {3} {4} مطابقت ندارد" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} برای محاسبه هزینه ارزیابی کالای نهایی {2} استفاده می‌شود." @@ -55543,7 +55568,7 @@ msgstr "{0} {1} برای محاسبه هزینه ارزیابی کالای نه msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "تعمیر و نگهداری یا تعمیرات فعال در برابر دارایی وجود دارد. قبل از لغو دارایی، باید همه آنها را تکمیل کنید." @@ -55555,7 +55580,7 @@ msgstr "بین نرخ، تعداد سهام و مبلغ محاسبه شده نا msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "هیچ تراکنش ناموفقی وجود ندارد" @@ -55572,6 +55597,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "هیچ اسلاتی در این تاریخ موجود نیست" @@ -55588,10 +55617,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "{0} تراکنش نطبیق‌نشده قبل از {1} وجود دارد." -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "هیچ گونه آیتمی برای آیتم انتخابی وجود ندارد" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55620,21 +55645,21 @@ msgstr "هیچ دسته ای در برابر {0} یافت نشد: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "یک تراکنش تطبیق‌نشده قبل از {0} وجود دارد." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "باید حداقل 1 کالای تمام شده در این ثبت موجودی وجود داشته باشد" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "هنگام پیوند با Plaid خطایی در ایجاد حساب بانکی روی داد." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "هنگام همگام‌سازی تراکنش‌ها خطایی روی داد." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "هنگام به‌روزرسانی حساب بانکی {} هنگام پیوند با Plaid خطایی روی داد." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55684,15 +55709,19 @@ msgstr "خلاصه این ماه" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55714,7 +55743,7 @@ msgstr "این عمل پیوند این حساب را با هر سرویس خا msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55732,7 +55761,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "این همه کارت های امتیازی مرتبط با این راه‌اندازی را پوشش می‌دهد" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "این سند توسط {0} {1} برای مورد {4} بیش از حد مجاز است. آیا در مقابل همان {2} {3} دیگری می سازید؟" @@ -55874,7 +55903,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "این فیلتر مورد قبلاً برای {0} اعمال شده است" @@ -55938,7 +55967,7 @@ msgstr "این برنامه زمانی ایجاد شد که دارایی {0} ا msgid "This schedule was created when Asset {0} was scrapped." msgstr "این برنامه زمانی ایجاد شد که دارایی {0} اسقاط شد." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55965,10 +55994,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "این بخش به کاربر اجازه می‌دهد متن Body و Closing نامه اخطار بدهی را برای اخطار بدهی Type بر اساس زبان تنظیم کند که می‌تواند در Print استفاده شود." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56026,8 +56055,8 @@ msgid "This will restrict user access to other employee records" msgstr "این امر دسترسی کاربر به سایر رکوردهای کارمندان را محدود می‌کند" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "این {} به عنوان انتقال مواد در نظر گرفته می‌شود." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56155,6 +56184,12 @@ msgstr "زمان (بر حسب دقیقه)" msgid "Timeline" msgstr "جدول زمانی" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56441,7 +56476,7 @@ msgid "To Time" msgstr "تا زمان" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56472,15 +56507,15 @@ msgstr "برای افزودن عملیات، کادر \"با عملیات\" را msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "افزودن مواد اولیه قرارداد فرعی شده در صورت وجود آیتم‌های گسترده شده غیرفعال است." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "برای مجاز کردن اضافه صورتحساب، «اضافه صورتحساب مجاز» را در تنظیمات حساب‌ها یا آیتم به‌روزرسانی کنید." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "برای اجازه دادن به اضافه دریافت / تحویل، \"اضافه دریافت / تحویل مجاز\" را در تنظیمات موجودی یا آیتم به روز کنید." @@ -56497,8 +56532,8 @@ msgid "To be Delivered to Customer" msgstr "برای تحویل به مشتری" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "برای لغو یک {}، باید ثبت اختتامیه POS {} را لغو کنید." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56509,8 +56544,8 @@ msgid "To create a Payment Request reference document is required" msgstr "برای ایجاد سند مرجع درخواست پرداخت مورد نیاز است" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "برای فعال کردن حسابداری کار سرمایه ای،" +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56522,8 +56557,8 @@ msgstr "گنجاندن آیتم‌های غیر موجودی در برنامه msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "برای گنجاندن مالیات در ردیف {0} در نرخ مورد، مالیات‌های ردیف {1} نیز باید لحاظ شود" @@ -56543,7 +56578,7 @@ msgstr "برای لغو این مورد، \"{0}\" را در شرکت {1} فعا msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "برای ادامه ویرایش این مقدار ویژگی، {0} را در تنظیمات گونه آیتم فعال کنید." @@ -56560,10 +56595,12 @@ msgstr "برای ارسال فاکتور بدون رسید خرید، لطفاً msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "برای استفاده از یک دفتر مالی متفاوت، لطفاً علامت «شامل دارایی‌های پیش‌فرض FB» را بردارید." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "برای استفاده از یک دفتر مالی متفاوت، لطفاً علامت «شامل ثبت‌های پیش‌فرض FB» را بردارید" @@ -56642,8 +56679,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "مجموع (ارز شرکت)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "مجموع (بستانکار)" @@ -56685,6 +56722,22 @@ msgstr "مجموع هزینه های اضافی" msgid "Total Advance" msgstr "کل پیش‌پرداخت" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56732,11 +56785,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "مبلغ کل به حروف" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "مجموع هزینه های قابل اعمال در جدول آیتم‌های رسید خرید باید با کل مالیات ها و هزینه ها یکسان باشد" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "کل دارایی" @@ -56918,7 +56971,7 @@ msgstr "کل مبلغ تحویل شده" msgid "Total Demand (Past Data)" msgstr "تقاضای کل (داده‌های گذشته)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "مجموع حقوق صاحبان موجودی" @@ -56927,11 +56980,11 @@ msgstr "مجموع حقوق صاحبان موجودی" msgid "Total Estimated Distance" msgstr "کل فاصله تخمینی" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "کل هزینه" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "کل هزینه امسال" @@ -56969,11 +57022,11 @@ msgstr "کل زمان نگهداری" msgid "Total Holidays" msgstr "کل تعطیلات" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "درآمد کلی" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "کل درآمد امسال" @@ -57016,7 +57069,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "کل مسئولیت" @@ -57331,7 +57384,7 @@ msgstr "کل مالیات‌ها و عوارض" msgid "Total Taxes and Charges (Company Currency)" msgstr "کل مالیات ها و هزینه ها (ارز شرکت)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "زمان کل (بر حسب دقیقه)" @@ -57340,7 +57393,11 @@ msgstr "زمان کل (بر حسب دقیقه)" msgid "Total Time in Mins" msgstr "کل زمان به دقیقه" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "مجموع پرداخت نشده: {0}" @@ -57419,7 +57476,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "کل درصد تخصیص داده شده برای تیم فروش باید 100 باشد" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "درصد کل مشارکت باید برابر با 100 باشد" @@ -57437,8 +57494,8 @@ msgstr "کل ساعات: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "مبلغ کل پرداخت‌ها نمی‌تواند بیشتر از {} باشد" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57455,9 +57512,9 @@ msgstr "" msgid "Total {0} ({1})" msgstr "مجموع {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "مجموع {0} برای همه موارد صفر است، ممکن است شما باید «توزیع هزینه‌ها بر اساس» را تغییر دهید" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57545,27 +57602,11 @@ msgstr "اطلاعات وضعیت ردیابی" msgid "Tracking URL" msgstr "URL پیگیری" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "تراکنش" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "ارز تراکنش" @@ -57618,11 +57659,11 @@ msgstr "مورد رکورد حذف تراکنش" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58012,6 +58053,10 @@ msgstr "تراز آزمایشی (ساده)" msgid "Trial Balance for Party" msgstr "تراز آزمایشی برای طرف" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58196,7 +58241,7 @@ msgstr "تنظیمات مالیات بر ارزش افزوده امارات مت #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58218,7 +58263,7 @@ msgstr "تنظیمات مالیات بر ارزش افزوده امارات مت #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58248,7 +58293,7 @@ msgstr "تنظیمات مالیات بر ارزش افزوده امارات مت #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58312,7 +58357,7 @@ msgstr "جزئیات تبدیل واحد" msgid "UOM Conversion Factor" msgstr "ضریب تبدیل UOM" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "ضریب تبدیل واحد ({0} -> {1}) برای آیتم: {2} یافت نشد" @@ -58386,7 +58431,7 @@ msgstr "تطبیق نکردن" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58399,10 +58444,6 @@ msgstr "نرخ تبدیل {0} تا {1} برای تاریخ کلیدی {2} یاف msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "نرخ تبدیل {0} تا {1} برای تاریخ کلیدی {2} یافت نشد. لطفاً یک رکورد تبدیل ارز به صورت دستی ایجاد کنید." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "نمی‌توان امتیازی را که از {0} شروع می‌شود پیدا کرد. شما باید نمرات ثابتی داشته باشید که از 0 تا 100 را پوشش دهد" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58427,7 +58468,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "مبلغ تخصیص نیافته" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "تعداد تعیین نشده" @@ -58439,8 +58480,10 @@ msgstr "سفارش‌های صورتحساب نشده" msgid "Unblock Invoice" msgstr "رفع انسداد فاکتور" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58490,7 +58533,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58513,7 +58556,7 @@ msgstr "واحد اندازه‌گیری" msgid "Unit Price" msgstr "قیمت واحد" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "واحد اندازه‌گیری" @@ -58716,7 +58759,7 @@ msgstr "برنامه‌ریزی نشده" msgid "Unsecured Loans" msgstr "وام های بدون وثیقه" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58729,7 +58772,7 @@ msgstr "بدون امضا" msgid "Unsubscribe from this Email Digest" msgstr "لغو اشتراک از این خلاصه ایمیل" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "ویژگی پشتیبانی نشده" @@ -58873,7 +58916,7 @@ msgstr "به‌روزرسانی موجودی جاری" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58937,7 +58980,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "به‌روزرسانی آخرین قیمت در همه BOMها" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "به‌روزرسانی موجودی باید برای فاکتور خرید فعال شود {0}" @@ -59165,7 +59208,7 @@ msgstr "استفاده از پیشنهاد" msgid "Use Transaction Date Exchange Rate" msgstr "استفاده از نرخ تبدیل تاریخ تراکنش" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "از نامی استفاده کنید که با نام پروژه قبلی متفاوت باشد" @@ -59254,6 +59297,10 @@ msgstr "زمان حل و فصل کاربر" msgid "User has not applied rule on the invoice {0}" msgstr "کاربر قانون روی فاکتور اعمال نکرده است {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "کاربر {0} وجود ندارد" @@ -59266,6 +59313,10 @@ msgstr "کاربر {0} هیچ نمایه POS پیش‌فرضی ندارد. پی msgid "User {0} is already assigned to Employee {1}" msgstr "کاربر {0} قبلاً به کارمند {1} اختصاص داده شده است" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "کاربر {0}: نقش خود سرویس کارمند حذف شد زیرا کارمند نگاشت شده وجود ندارد." @@ -59274,10 +59325,6 @@ msgstr "کاربر {0}: نقش خود سرویس کارمند حذف شد زیر msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "کاربر {0}: نقش کارمند حذف شد زیرا کارمند نگاشت شده وجود ندارد." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "کاربر {} غیرفعال است. لطفا کاربر/صندوقدار معتبر را انتخاب کنید" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59570,15 +59617,15 @@ msgstr "نرخ ارزش‌گذاری" msgid "Valuation Rate (In / Out)" msgstr "نرخ ارزش‌گذاری (ورودی/خروجی)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "نرخ ارزش‌گذاری وجود ندارد" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "نرخ ارزش‌گذاری برای آیتم {0}، برای انجام ثبت‌های حسابداری برای {1} {2} لازم است." @@ -59586,7 +59633,7 @@ msgstr "نرخ ارزش‌گذاری برای آیتم {0}، برای انجام msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "در صورت ثبت موجودی افتتاحیه، نرخ ارزش‌گذاری الزامی است" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "نرخ ارزش‌گذاری الزامی است برای آیتم {0} در ردیف {1}" @@ -59596,7 +59643,7 @@ msgstr "نرخ ارزش‌گذاری الزامی است برای آیتم {0} msgid "Valuation and Total" msgstr "ارزش گذاری و کل" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "نرخ ارزش‌گذاری برای آیتم‌های ارائه شده توسط مشتری صفر تعیین شده است." @@ -59609,14 +59656,14 @@ msgstr "نرخ ارزش‌گذاری برای آیتم‌های ارائه شد msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "هزینه‌های نوع ارزیابی را نمی‌توان به‌عنوان فراگیر علامت‌گذاری کرد" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "هزینه‌های نوع ارزیابی را نمی‌توان به‌عنوان فراگیر علامت‌گذاری کرد" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59666,12 +59713,12 @@ msgstr "گزاره ارزش" msgid "Value Type" msgstr "نوع مقدار" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "مقدار ویژگی {0} باید در محدوده {1} تا {2} با افزایش {3} برای آیتم{4} باشد" @@ -59680,19 +59727,19 @@ msgstr "مقدار ویژگی {0} باید در محدوده {1} تا {2} با msgid "Value of Goods" msgstr "ارزش کالاها" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "ارزش خرید جدید" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "ارزش دارایی اسقاط شده" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60168,7 +60215,7 @@ msgstr "نام سند مالی" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60196,7 +60243,7 @@ msgstr "نام سند مالی" msgid "Voucher No" msgstr "شماره سند مالی" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "شماره سند مالی الزامی است" @@ -60208,7 +60255,7 @@ msgstr "مقدار سند مالی" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "زیرنوع سند مالی" @@ -60240,7 +60287,7 @@ msgstr "زیرنوع سند مالی" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60447,7 +60494,7 @@ msgstr "انبار اجباری است" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "انبار در برابر حساب {0} پیدا نشد" @@ -60465,16 +60512,16 @@ msgstr "تراز سن و ارزش آیتم مبتنی بر انبار" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "انبار {0} را نمی‌توان حذف کرد زیرا مقدار مورد {1} وجود دارد" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "انبار {0} متعلق به شرکت {1} نیست." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "انبار {0} متعلق به شرکت {1} نیست" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "انبار {0} وجود ندارد" @@ -60595,7 +60642,7 @@ msgstr "در صورت تغییر نرخ آیتم در فاکتور خرید یا msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "هشدار - ردیف {0}: ساعات صورتحساب بیشتر از ساعت‌های واقعی است" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "هشدار در مورد موجودی منفی" @@ -60615,7 +60662,7 @@ msgstr "هشدار: یک {0} # {1} دیگر در برابر ثبت موجودی msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "هشدار: تعداد مواد درخواستی کمتر از حداقل تعداد سفارش است" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60769,10 +60816,6 @@ msgstr "گروه آیتم‌های وب سایت" msgid "Website Specifications" msgstr "مشخصات وب سایت" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "هفته سال" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60918,7 +60961,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61094,17 +61137,17 @@ msgstr "در جریان تولید" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61143,7 +61186,7 @@ msgstr "مواد مصرفی دستور کار" msgid "Work Order Item" msgstr "آیتم دستور کار" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "عدم تطابق دستور کار" @@ -61184,20 +61227,20 @@ msgstr "خلاصه دستور کار" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "دستور کار به دلایل زیر ایجاد نمی‌شود:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "دستور کار را نمی‌توان در برابر یک الگوی آیتم مطرح کرد" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "دستور کار {0} بوده است" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61218,7 +61261,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "دستور کارها" @@ -61243,7 +61286,7 @@ msgstr "در جریان تولید" msgid "Work-in-Progress Warehouse" msgstr "انبار در جریان تولید" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "قبل از ارسال، انبار در جریان تولید الزامی است" @@ -61296,7 +61339,7 @@ msgstr "ساعات کاری" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61528,14 +61571,6 @@ msgstr "نام سال" msgid "Year Start Date" msgstr "تاریخ شروع سال" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "سال به صورت ۲ رقمی" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "سال به صورت ۴ رقمی" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61550,8 +61585,8 @@ msgid "You are importing data for the code list:" msgstr "شما در حال درون‌برد داده‌ها برای لیست کد هستید:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "شما مجاز به به‌روزرسانی طبق شرایط تنظیم شده در {} گردش کار نیستید." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61570,8 +61605,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "شما در حال انتخاب بیش از مقدار مورد نیاز برای مورد {0} هستید. بررسی کنید که آیا لیست انتخاب دیگری برای سفارش فروش {1} ایجاد شده است." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "برای ادامه می‌توانید فاکتور اصلی {} را به صورت دستی اضافه کنید." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61581,19 +61616,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "همچنین می‌توانید این لینک را در مرورگر خود کپی پیست کنید" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "همچنین می‌توانید حساب پیش‌فرض «کارهای سرمایه‌ای در دست اجرا» را در شرکت {} تنظیم کنید" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" -msgstr "همچنین می‌توانید با قرار دادن متغیرها بین (.) نقطه، از آنها در نام سری استفاده کنید" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "می‌توانید حساب مادر را به حساب ترازنامه تغییر دهید یا حساب دیگری را انتخاب کنید." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61615,8 +61646,8 @@ msgid "You can only select one mode of payment as default" msgstr "شما فقط می‌توانید یک روش پرداخت را به عنوان پیش‌فرض انتخاب کنید" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "می‌توانید حداکثر تا {0} مطالبه کنید." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61634,14 +61665,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "می‌توانید از {0} برای تطبیق با {1} بعداً استفاده کنید." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "از آنجایی که دستور کار بسته شده است، نمی‌توانید هیچ تغییری در کارت کار ایجاد کنید." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "شما نمی‌توانید شماره سریال {0} را پردازش کنید زیرا قبلاً در SABB {1} استفاده شده است. {2} اگر می‌خواهید همان شماره سریال را چندین بار دریافت کنید، گزینه 'اجازه دریافت/تولید مجدد شماره سریال موجود' را در {3} فعال کنید" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61650,17 +61673,17 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "اگر BOM در برابر هر موردی ذکر شده باشد، نمی‌توانید نرخ را تغییر دهید." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "شما نمی‌توانید یک {0} در دوره حسابداری بسته {1} ایجاد کنید" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "شما نمی‌توانید هیچ ورودی حسابداری را در دوره حسابداری بسته شده ایجاد یا لغو کنید {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "تا این تاریخ نمی‌توانید هیچ ثبت حسابداری ایجاد/اصلاح کنید." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61671,15 +61694,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "شما نمی‌توانید نوع پروژه \"External\" را حذف کنید" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "شما نمی‌توانید گره ریشه را ویرایش کنید." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "شما نمی‌توانید هر دو تنظیمات '{0}' و '{1}' را همزمان فعال کنید." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61687,16 +61718,16 @@ msgid "You cannot redeem more than {0}." msgstr "شما نمی‌توانید بیش از {0} را بازخرید کنید." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "شما نمی‌توانید ارزیابی مورد را قبل از {} دوباره ارسال کنید" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "نمی‌توانید اشتراکی را که لغو نشده است راه‌اندازی مجدد کنید." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "شما نمی‌توانید سفارش خالی ارسال کنید." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61710,6 +61741,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61720,8 +61755,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "شما مجوز {} مورد در {} را ندارید." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61747,11 +61782,11 @@ msgstr "شما اجازه به‌روزرسانی فیلد تعداد دریاف msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "هنگام ایجاد فاکتورهای افتتاحیه {} خطا داشتید. برای جزئیات بیشتر {} را بررسی کنید" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "شما قبلاً مواردی را از {0} {1} انتخاب کرده اید" @@ -61768,8 +61803,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "شما {0} و {1} را در {2} فعال کرده‌اید. این می‌تواند منجر به درج قیمت‌های لیست قیمت پیش‌فرض در لیست قیمت تراکنش شود." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "شما یک یادداشت تحویل تکراری در ردیف وارد کرده اید" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61783,19 +61818,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "برای حفظ سطوح سفارش مجدد، باید سفارش مجدد خودکار را در تنظیمات موجودی فعال کنید." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "شما تغییرات ذخیره نشده دارید. آیا می‌خواهید فاکتور را ذخیره کنید؟" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "قبل از افزودن یک آیتم باید مشتری را انتخاب کنید." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "برای اینکه بتوانید این سند را لغو کنید، باید ثبت اختتامیه POS {} را لغو کنید." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61847,6 +61882,10 @@ msgstr "کد پستی" msgid "Zero Balance" msgstr "تراز صفر" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "دارای امتیاز صفر" @@ -61877,7 +61916,7 @@ msgstr "[مهم] [ERPNext] خطاهای سفارش مجدد خودکار" msgid "`Allow Negative rates for Items`" msgstr "«نرخ های منفی برای آیتم‌ها مجاز است»" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "پس از" @@ -61897,7 +61936,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "به عنوان درصدی از مقدار کالای تمام شده" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61913,10 +61952,6 @@ msgstr "بر اساس" msgid "by {}" msgstr "توسط {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "نمی‌تواند بیشتر از 100 باشد" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61971,9 +62006,9 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "fieldname" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." -msgstr "نام فیلد در سند، مثلاً" +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" +msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency #. Exchange Settings' @@ -62052,14 +62087,10 @@ msgstr "از 5" msgid "paid to" msgstr "پرداخت شده به" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "برنامه پرداخت نصب نشده است لطفاً آن را از {0} یا {1} نصب کنید" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "برنامه پرداخت نصب نشده است لطفاً آن را از {} یا {} نصب کنید" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62073,7 +62104,7 @@ msgstr "برنامه پرداخت نصب نشده است لطفاً آن را ا msgid "per hour" msgstr "در ساعت" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "انجام هر یک از موارد زیر:" @@ -62149,8 +62180,8 @@ msgstr "فروخته شد" msgid "subscription is already cancelled." msgstr "اشتراک در حال حاضر لغو شده است." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "target_ref_field" @@ -62213,10 +62244,6 @@ msgstr "از طریق تعمیر دارایی" msgid "via BOM Update Tool" msgstr "از طریق BOM ابزار به‌روزرسانی" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "باید در جدول حسابها، حساب سرمایه در جریان را انتخاب کنید" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} \"{1}\" غیرفعال است" @@ -62229,7 +62256,7 @@ msgstr "{0} «{1}» در سال مالی {2} نیست" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) نمی‌تواند بیشتر از مقدار برنامه‌ریزی شده ({2}) در دستور کار {3} باشد" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} دارایی‌ها را ارسال کرده است. برای ادامه، آیتم {2} را از جدول حذف کنید." @@ -62249,7 +62276,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} کوپن استفاده شده {1} است. مقدار مجاز تمام شده است" @@ -62257,11 +62284,6 @@ msgstr "{0} کوپن استفاده شده {1} است. مقدار مجاز تم msgid "{0} Digest" msgstr "{0} خلاصه" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "{0} سری نام‌گذاری" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} شماره {1} قبلاً در {2} {3} استفاده شده است" @@ -62343,10 +62365,18 @@ msgstr "{0} می‌تواند یا {1} یا {2} باشد." msgid "{0} can not be negative" msgstr "{0} نمی‌تواند منفی باشد" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} نمی‌تواند به‌عنوان مرکز هزینه اصلی استفاده شود زیرا به‌عنوان فرزند در تخصیص مرکز هزینه {1} استفاده شده است." @@ -62362,7 +62392,7 @@ msgstr "{0} نمی‌تواند صفر باشد" msgid "{0} created" msgstr "{0} ایجاد شد" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62404,7 +62434,7 @@ msgstr "{0} برای {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} تخصیص مبتنی بر مدت پرداخت را فعال کرده است. در بخش مراجع پرداخت، یک شرایط پرداخت برای ردیف #{1} انتخاب کنید" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62412,6 +62442,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "{0} با موفقیت ارسال شد" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} ساعت" @@ -62420,7 +62454,11 @@ msgstr "{0} ساعت" msgid "{0} in row {1}" msgstr "{0} در ردیف {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} یک جدول فرزند است و به طور خودکار به همراه جدول والدش حذف خواهد شد" @@ -62434,7 +62472,7 @@ msgstr "{0} یک بعد حسابداری اجباری است.
                    لطفاً ی msgid "{0} is added multiple times on rows: {1}" msgstr "{0} چندین بار در ردیف ها اضافه می‌شود: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} در حال حاضر برای {1} در حال اجرا است" @@ -62442,7 +62480,7 @@ msgstr "{0} در حال حاضر برای {1} در حال اجرا است" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} مسدود شده است بنابراین این تراکنش نمی‌تواند ادامه یابد" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} در پیش‌نویس است. قبل از ایجاد دارایی، آن را ارسال کنید." @@ -62455,11 +62493,11 @@ msgstr "{0} برای آیتم {1} اجباری است" msgid "{0} is mandatory for account {1}" msgstr "{0} برای حساب {1} اجباری است" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} اجباری است. شاید رکورد تبدیل ارز برای {1} تا {2} ایجاد نشده باشد" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} اجباری است. شاید رکورد تبدیل ارز برای {1} تا {2} ایجاد نشده باشد." @@ -62467,7 +62505,7 @@ msgstr "{0} اجباری است. شاید رکورد تبدیل ارز برای msgid "{0} is not a CSV file." msgstr "{0} یک فایل CSV نیست." -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} یک حساب بانکی شرکت نیست" @@ -62483,7 +62521,7 @@ msgstr "{0} یک آیتم موجودی نیست" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} یک مقدار معتبر برای ویژگی {1} آیتم {2} نیست." @@ -62499,17 +62537,17 @@ msgstr "{0} به جدول اضافه نشده است" msgid "{0} is not enabled in {1}" msgstr "{0} در {1} فعال نیست" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} تامین کننده پیش‌فرض هیچ موردی نیست." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} تا {1} در انتظار است" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62559,7 +62597,7 @@ msgstr "پارامتر {0} نامعتبر است" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} ثبت‌های پرداخت را نمی‌توان با {1} فیلتر کرد" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "{0} تعداد مورد {1} در انبار {2} با ظرفیت {3} در حال دریافت است." @@ -62572,7 +62610,7 @@ msgstr "{0} تا {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "{0} تراکنش‌ها به سیستم درون‌بُرد خواهند شد. لطفاً جزئیات زیر را بررسی کرده و برای ادامه روی دکمه «درون‌بُرد» کلیک کنید." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} واحد برای مورد {1} در انبار {2} رزرو شده است، لطفاً همان را در {3} تطبیق موجودی لغو کنید." @@ -62588,16 +62626,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} واحد از {1} در {2} با ابعاد موجودی: {3} در {4} {5} برای {6} جهت تکمیل تراکنش مورد نیاز است." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "برای تکمیل این تراکنش به {0} واحد از {1} در {2} در {3} {4} برای {5} نیاز است." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "برای تکمیل این تراکنش به {0} واحد از {1} در {2} در {3} {4} نیاز است." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "برای تکمیل این تراکنش به {0} واحد از {1} در {2} نیاز است." @@ -62605,7 +62643,7 @@ msgstr "برای تکمیل این تراکنش به {0} واحد از {1} در msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} شماره سریال های معتبر برای آیتم {1}" @@ -62613,7 +62651,7 @@ msgstr "{0} شماره سریال های معتبر برای آیتم {1}" msgid "{0} variants created." msgstr "{0} گونه ایجاد شد." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "نمای {0} در حال حاضر در گزارش مالی سفارشی پشتیبانی نمی‌شود." @@ -62647,7 +62685,7 @@ msgstr "{0} {1} ایجاد شد" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} وجود ندارد" @@ -62681,12 +62719,21 @@ msgstr "{0} {1} دو بار در این تراکنش بانکی تخصیص دا msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} با {2} مرتبط است، اما حساب طرف {3} است" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} لغو یا بسته شده است" @@ -62718,6 +62765,10 @@ msgstr "{0} {1} به طور کامل صورتحساب دارد" msgid "{0} {1} is not active" msgstr "{0} {1} فعال نیست" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} با {2} {3} مرتبط نیست" @@ -62823,27 +62874,23 @@ msgstr "{0}% از ارزش کل فاکتور به عنوان تخفیف داده msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{1} {0} نمی‌تواند پس از تاریخ پایان مورد انتظار {2} باشد." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}، عملیات {1} را قبل از عملیات {2} تکمیل کنید." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: جدول فرزند (به همراه جدول والد به صورت خودکار حذف می‌شود)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: یافت نشد" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: DocType محافظت‌شده" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: DocType مجازی (بدون جدول پایگاه داده)" @@ -62859,7 +62906,7 @@ msgstr "{0}: {1} وجود ندارد" msgid "{0}: {1} is a group account." msgstr "{0}: {1} یک حساب گروه است." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} باید کمتر از {2} باشد" @@ -62871,7 +62918,7 @@ msgstr "{count} دارایی برای {item_code} ایجاد شد" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} لغو یا بسته شدهه است." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "اندازه نمونه {item_name} ({sample_size}) نمی‌تواند بیشتر از مقدار مورد قبول ({accepted_quantity}) باشد." @@ -62883,32 +62930,7 @@ msgstr "وضعیت {ref_doctype} {ref_name} {status} است." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} را نمی‌توان لغو کرد زیرا امتیازهای وفاداری به دست آمده استفاده شده است. ابتدا {} خیر {} را لغو کنید" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} دارایی‌های مرتبط با آن را ارسال کرده است. برای ایجاد بازگشت خرید، باید دارایی‌ها را لغو کنید." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} فاکتورها" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} یک شرکت فرزند است." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} قبلاً با {} دیگری پیوند شده است" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} قبلاً با {} {} پیوند داده شده است" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/fr.po b/erpnext/locale/fr.po index d83b5f5e3c1..54e34f4c721 100644 --- a/erpnext/locale/fr.po +++ b/erpnext/locale/fr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:01\n" "Last-Translator: hello@frappe.io\n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: fr_FR\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "'Est un Actif Immobilisé’ doit être coché car il existe une entrée msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "« SN-01::10 » pour « SN-01 » à « SN-10 »" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# En stock" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Articles Requis" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "Autoriser les commandes multiples contre un bon de commande du client'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Basé sur' et 'Groupé par' ne peuvent pas être identiques" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "La ‘Du (date)’ doit être antérieure à la ‘Au (date) ’" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'A un Numéro de Série' ne peut pas être 'Oui' pour un article non géré en stock" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "L'option 'Inspection requise avant la livraison' est désactivée pour l'article {0}, il n'est pas nécessaire de créer l'inspection qualité" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "L'option 'Inspection requise avant l'achat' est désactivée pour l'article {0}, il n'est pas nécessaire de créer l'inspection qualité." +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Ouverture'" @@ -326,13 +317,13 @@ msgstr "'Ouverture'" msgid "'To Date' is required" msgstr "'Au (date)' est requise" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'Au numéro du paquet' ne peut pas être inférieur à 'À partir du paquet N°'." #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Mettre à Jour le Stock' ne peut pas être coché car les articles ne sont pas livrés par {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90 et plus" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -810,16 +801,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "" +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -980,9 +971,9 @@ msgstr "A - B" msgid "A - C" msgstr "A-C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Un Groupe de Clients existe avec le même nom, veuillez changer le nom du Client ou renommer le Groupe de Clients" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -992,9 +983,9 @@ msgstr "Une liste de jours fériés peut être ajoutée pour exclure le comptage msgid "A Lead requires either a person's name or an organization's name" msgstr "Un responsable requiert le nom d'une personne ou le nom d'une organisation" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Un bordereau d'emballage ne peut être créé que pour les brouillons de bons de livraison." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1010,7 +1001,7 @@ msgstr "Une liste de prix est une liste de prix d'articles à la vente, à l'ach msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Un Produit ou un Service acheté, vendu ou conservé en stock." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Un travail de réconciliation {0} est en cours d'exécution pour les mêmes filtres. Impossible de réconcilier maintenant" @@ -1043,7 +1034,7 @@ msgstr "Un conducteur doit être défini pour soumettre." msgid "A logical Warehouse against which stock entries are made." msgstr "Entrepôt logique pour lequel des entrées en stock sont effectuées." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1219,7 +1210,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Quantité acceptée en UOM de Stock" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Quantité Acceptée" @@ -1250,12 +1241,16 @@ msgstr "Clé d'accès" msgid "Access Key is required for Service Provider: {0}" msgstr "La clé d'accès est requise pour le fournisseur de service : {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "Selon CEFACT/ICG/2010/IC013 ou CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1508,7 +1503,7 @@ msgstr "Le compte est obligatoire pour obtenir les entrées de paiement" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Compte non trouvé" @@ -1638,11 +1633,11 @@ msgstr "Compte: {0} est un travail capital et ne peut pas être mis à jo msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Compte : {0} peut uniquement être mis à jour via les Mouvements de Stock" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Compte: {0} n'est pas autorisé sous Saisie du paiement." -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Compte : {0} avec la devise : {1} ne peut pas être sélectionné" @@ -1921,8 +1916,8 @@ msgstr "Filtre de dimensions comptables" msgid "Accounting Entries" msgstr "Écritures Comptables" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Ecriture comptable pour l'actif" @@ -1947,8 +1942,8 @@ msgstr "Écriture comptable pour le service" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1996,7 +1991,11 @@ msgstr "" msgid "Accounting Period" msgstr "Période comptable" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "La période comptable chevauche avec {0}" @@ -2194,8 +2193,8 @@ msgstr "Compte d'Amortissement Cumulé" msgid "Accumulated Depreciation Amount" msgstr "Montant d'Amortissement Cumulé" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Amortissement Cumulé depuis" @@ -2423,7 +2422,7 @@ msgstr "Quantité réelle du solde" msgid "Actual Batch Quantity" msgstr "Quantité réelle de lot" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Prix actuel" @@ -2433,7 +2432,7 @@ msgstr "Prix actuel" msgid "Actual Date" msgstr "Date Réelle" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2583,8 +2582,8 @@ msgstr "Temps Réel (en Heures)" msgid "Actual qty in stock" msgstr "Qté réelle en stock" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Le type de taxe réel ne peut pas être inclus dans le prix de l'Article à la ligne {0}" @@ -2749,10 +2748,6 @@ msgstr "Ajouter une série / numéro de lot" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Ajouter numéro de série / numéro de lot (Qté rejetée)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Ajouter du stock" @@ -2851,13 +2846,13 @@ msgstr "Ajouté par" msgid "Added On" msgstr "Ajouté le" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Ajout du rôle de fournisseur à l'utilisateur {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Ajout du rôle {1} à l'utilisateur {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -2999,7 +2994,7 @@ msgstr "Montant de la remise supplémentaire" msgid "Additional Discount Amount (Company Currency)" msgstr "Montant de la Remise Supplémentaire (Devise de la Société)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3118,11 +3113,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3387,7 +3378,7 @@ msgstr "" msgid "Advance amount" msgstr "Montant de l'Avance" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Montant de l'avance ne peut être supérieur à {0} {1}" @@ -3456,7 +3447,7 @@ msgstr "Contre" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Contrepartie" @@ -3576,7 +3567,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Pour le Bon" @@ -3600,7 +3591,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Pour le Type de Bon" @@ -3714,6 +3705,13 @@ msgstr "Compagnie aérienne" msgid "Algorithm" msgstr "Algorithme" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3890,7 +3888,7 @@ msgstr "" msgid "All items are already requested" msgstr "Tous les articles sont déjà demandés" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Tous les articles ont déjà été facturés / retournés" @@ -3902,7 +3900,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "Tous les articles ont déjà été transférés pour cet ordre de fabrication." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3921,16 +3919,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Tous les commentaires et les courriels seront copiés d'un document à un autre document nouvellement créé (Lead -> Opportunité -> Devis) dans l'ensemble des documents CRM." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Tous ces articles ont déjà été facturés / retournés" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -3953,7 +3951,7 @@ msgstr "Allouer automatiquement les avances (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Allouer le montant du paiement" @@ -3963,7 +3961,7 @@ msgstr "Allouer le montant du paiement" msgid "Allocate Payment Based On Payment Terms" msgstr "Attribuer le paiement en fonction des conditions de paiement" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3993,7 +3991,7 @@ msgstr "Alloué" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4076,8 +4074,8 @@ msgid "Allow Alternative Item" msgstr "Autoriser un article alternatif" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "L'option Autoriser l'article alternatif doit être cochée sur l'article {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4184,7 +4182,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Autoriser le renommage de la valeur de l'attribut" @@ -4465,12 +4463,14 @@ msgstr "Articles autorisés" msgid "Allowed To Transact With" msgstr "Autorisé à faire affaire avec" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4505,10 +4505,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4516,10 +4516,6 @@ msgstr "" msgid "Already Picked" msgstr "Déjà prélevé" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "L'enregistrement existe déjà pour l'article {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Déjà défini par défaut dans le profil pdv {0} pour l'utilisateur {1}, veuillez désactiver la valeur par défaut" @@ -4535,12 +4531,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Article alternatif" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4745,7 +4741,7 @@ msgstr "Toujours demander" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4971,12 +4967,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Une erreur est survenue lors de la comptabilisation de la nouvelle valorisation de l'article via {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Une erreur s'est produite lors du processus de mise à jour" @@ -5190,7 +5186,7 @@ msgstr "Code de coupon appliqué" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Règles d'entrée en stock appliquées." @@ -5367,10 +5363,6 @@ msgstr "Horaires de prise de rendez-vous" msgid "Appointment Confirmation" msgstr "Confirmation de rendez-vous" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5396,6 +5388,10 @@ msgstr "" msgid "Appointment With" msgstr "Rendez-vous avec" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5437,6 +5433,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5519,18 +5524,18 @@ msgstr "Lorsque le champ {0} est activé, la valeur du champ {1} doit être sup msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Comme il y a suffisamment d'articles de sous-assemblage, l'ordre de travail n'est pas requis pour l'entrepôt {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Comme il y a suffisamment de matières premières, la demande de matériel n'est pas requise pour l'entrepôt {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5569,7 +5574,7 @@ msgstr "Articles d'assemblage" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5641,7 +5646,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5807,7 +5812,7 @@ msgstr "Élément de mouvement d'actif" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5939,7 +5944,7 @@ msgstr "Analyse de la valeur des actifs" msgid "Asset cancelled" msgstr "Actif annulé" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "L'actif ne peut être annulé, car il est déjà {0}" @@ -5955,7 +5960,7 @@ msgstr "" msgid "Asset created" msgstr "Actif créé" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -6008,7 +6013,7 @@ msgstr "Actif validé" msgid "Asset transferred to Location {0}" msgstr "Actif transféré à l'emplacement {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Actif mis à jour après avoir été divisé dans l'actif {0}" @@ -6086,7 +6091,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6107,7 +6112,7 @@ msgstr "Éléments non créés pour {item_code}. Vous devrez créer un actif man msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Attribuer un emploi à un salarié" @@ -6117,6 +6122,11 @@ msgstr "Attribuer un emploi à un salarié" msgid "Assign to Name" msgstr "Attribuer au nom" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6135,19 +6145,23 @@ msgstr "A la ligne #{0}: La quantité prélevée {1} pour l'article {2} est sup msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "A la ligne #{0}: La quantité prélevée {1} pour l'article {2} est supérieure au stock disponible {3} dans l'entrepôt {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6168,6 +6182,10 @@ msgstr "Au moins un des modules applicables doit être sélectionné" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6188,7 +6206,7 @@ msgstr "À la ligne n ° {0}: l'ID de séquence {1} ne peut pas être inférieur msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6196,26 +6214,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6427,7 +6441,7 @@ msgstr "Le rapprochement automatique des paiements a été désactivé. Activez- msgid "Auto Repeat Detail" msgstr "Détail de la Répétition Automatique" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6488,7 +6502,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Document de répétition automatique mis à jour" @@ -6613,7 +6627,7 @@ msgstr "Date d'utilisation disponible" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6709,7 +6723,7 @@ msgstr "La date de mise en service est nécessaire" msgid "Available {0}" msgstr "Disponible {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "La date de disponibilité devrait être postérieure à la date d'achat" @@ -6827,7 +6841,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6846,8 +6860,8 @@ msgid "BOM 1" msgstr "Nomenclature 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "La nomenclature 1 {0} et la nomenclature 2 {1} ne doivent pas être identiques" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6861,7 +6875,7 @@ msgstr "Nomenclature 2" msgid "BOM Comparison Tool" msgstr "Outil de comparaison de nomenclature" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6992,7 +7006,7 @@ msgstr "Opération de la nomenclature (gamme)" msgid "BOM Operations Time" msgstr "Temps de fonctionnement de la nomenclature" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7013,7 +7027,7 @@ msgstr "Recherche nomenclature" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7065,10 +7079,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7107,15 +7117,19 @@ msgstr "Récursion de nomenclature: {0} ne peut pas être enfant de {1}" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "Nomenclature {0} n’appartient pas à l'article {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "Nomenclature {0} doit être active" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "Nomenclature {0} doit être soumise" @@ -7196,7 +7210,7 @@ msgstr "Solde" msgid "Balance (Dr - Cr)" msgstr "Solde (Debit - Crédit)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Solde ({0})" @@ -7266,6 +7280,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7326,7 +7344,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7426,7 +7444,7 @@ msgid "Bank Account Type" msgstr "Type de compte bancaire" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7671,7 +7689,7 @@ msgstr "Transaction bancaire {0} mise à jour" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Compte Bancaire ne peut pas être nommé {0}" @@ -7683,7 +7701,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Le compte bancaire {0} existe déjà et n'a pas pu être créé à nouveau." @@ -7695,7 +7713,7 @@ msgstr "Comptes bancaires ajoutés" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Erreur de création de transaction bancaire" @@ -7971,8 +7989,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8003,15 +8021,15 @@ msgstr "" msgid "Batch No" msgstr "N° du Lot" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Le numéro de lot est obligatoire" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Le lot n° {0} n'existe pas" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -8019,6 +8037,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8084,8 +8106,8 @@ msgstr "UdM par lots" msgid "Batch and Serial No" msgstr "N° de lot et de série" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8198,7 +8220,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8673,7 +8695,7 @@ msgid "Booked Fixed Asset" msgstr "Actif immobilisé comptabilisé" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8901,8 +8923,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Budget ne peut pas être attribué pour le Compte de Groupe {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Budget ne peut pas être affecté pour {0}, car ce n’est pas un compte de produits ou de charges" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8919,7 +8941,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8927,7 +8949,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9254,6 +9276,10 @@ msgstr "Solde Calculé du Relevé Bancaire" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9425,7 +9451,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "Peut être approuvé par {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9454,21 +9480,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Impossible de filtrer sur la base du N° de Coupon, si les lignes sont regroupées par Coupon" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Le paiement n'est possible qu'avec les {0} non facturés" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Peut se référer à ligne seulement si le type de charge est 'Montant de la ligne précedente' ou 'Total des lignes précedente'" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Annuler la Visite Matérielle {0} avant d'annuler cette Réclamation de Garantie" @@ -9497,7 +9526,7 @@ msgstr "" msgid "Cancelation Date" msgstr "Date d'annulation" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9505,11 +9534,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Impossible de calculer l'heure d'arrivée car l'adresse du conducteur est manquante." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9524,10 +9548,6 @@ msgstr "" msgid "Cannot Merge" msgstr "Impossible de fusionner" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Impossible d'optimiser l'itinéraire car l'adresse du pilote est manquante." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Ne peut pas soulager l'employé" @@ -9552,6 +9572,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Ne peut pas être un article immobilisé car un Journal de Stock a été créé." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9561,14 +9586,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Impossible d'annuler car l'Écriture de Stock soumise {0} existe" @@ -9576,7 +9601,7 @@ msgstr "Impossible d'annuler car l'Écriture de Stock soumise {0} existe" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9588,7 +9613,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Impossible d'annuler la transaction lorsque l'ordre de fabrication est terminé." @@ -9613,7 +9638,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Impossible de changer la devise par défaut de la société, parce qu'il y a des opérations existantes. Les transactions doivent être annulées pour changer la devise par défaut." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9640,7 +9665,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Impossible de créer une liste de prélèvement pour la Commande client {0} car il y a du stock réservé. Veuillez annuler la réservation de stock pour créer une liste de prélèvement." @@ -9649,6 +9674,10 @@ msgstr "Impossible de créer une liste de prélèvement pour la Commande client msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9666,7 +9695,7 @@ msgstr "Impossible de déclarer comme perdu, parce que le Devis a été fait." msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Déduction impossible lorsque la catégorie est pour 'Évaluation' ou 'Vaulation et Total'" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9679,7 +9708,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9711,7 +9740,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9736,19 +9765,23 @@ msgstr "Impossible de trouver l'article avec ce code-barres" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "Impossible de produire plus d'articles pour {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9760,12 +9793,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Impossible de se référer au numéro de la ligne supérieure ou égale au numéro de la ligne courante pour ce type de Charge" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9774,19 +9811,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Impossible de sélectionner le type de charge comme étant «Le Montant de la Ligne Précédente» ou «Montant Total de la Ligne Précédente» pour la première ligne" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Impossible de définir comme perdu alors qu'une Commande client a été créé." @@ -10213,8 +10254,8 @@ msgstr "Changez le type de compte en recevable ou sélectionnez un autre compte. msgid "Change this date manually to setup the next synchronization start date" msgstr "Modifiez cette date manuellement pour définir la prochaine date de début de la synchronisation." -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10241,8 +10282,8 @@ msgstr "" msgid "Channel Partner" msgstr "Partenaire de Canal" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10436,7 +10477,7 @@ msgstr "Largeur du Chèque" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Chèque/Date de Référence" @@ -10494,7 +10535,7 @@ msgstr "Nom de l'enfant" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10504,8 +10545,8 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Une tâche enfant existe pour cette tâche. Vous ne pouvez pas supprimer cette tâche." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10683,7 +10724,7 @@ msgstr "Prêt proche" msgid "Close Replied Opportunity After Days" msgstr "Fermer l'opportunité répliquée après des jours" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Clôturer le point de vente" @@ -10697,7 +10738,7 @@ msgstr "Document fermé" msgid "Closed Documents" msgstr "Documents fermés" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10927,9 +10968,9 @@ msgstr "Commission" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11366,7 +11407,7 @@ msgstr "Sociétés" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11436,7 +11477,7 @@ msgstr "Sociétés" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11476,10 +11517,6 @@ msgstr "Société" msgid "Company Abbreviation" msgstr "Abréviation de la Société" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "L'abréviation de l'entreprise ne peut pas comporter plus de 5 caractères" @@ -11644,7 +11681,7 @@ msgstr "Adresse d'expédition" msgid "Company Tax ID" msgstr "Num. TVA intra-communautaire" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11688,12 +11725,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Le nom de la société n'est pas identique" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "La société de l'actif {0} et le document d'achat {1} ne correspondent pas." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11731,6 +11768,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "Société {0} n'existe pas" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11739,14 +11784,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11768,7 +11805,7 @@ msgstr "Nom du concurrent" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Concurrents" @@ -12212,7 +12249,7 @@ msgid "Consumed Qty" msgstr "Qté Consommée" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12528,7 +12565,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12828,7 +12865,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12853,7 +12890,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12911,7 +12948,7 @@ msgstr "Numéro du centre de coûts" msgid "Cost Center and Budgeting" msgstr "Centre de coûts et budgétisation" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12923,7 +12960,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Le Centre de Coûts est requis à la ligne {0} dans le tableau des Taxes pour le type {1}" @@ -12945,11 +12982,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13074,14 +13111,14 @@ msgid "Costing and Billing" msgstr "Coûts et Facturation" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Impossible de supprimer les données de démonstration" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Impossible de créer automatiquement le client en raison du ou des champs obligatoires manquants suivants:" @@ -13093,7 +13130,7 @@ msgstr "Impossible de créer une note de crédit automatiquement, décochez la c msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Impossible de détecter l'entreprise pour la mise à jour des comptes bancaires" @@ -13103,7 +13140,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13127,7 +13164,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Impossible de résoudre la fonction de score de critères pour {0}. Assurez-vous que la formule est valide." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Impossible de résoudre la fonction de score pondéré. Assurez-vous que la formule est valide." @@ -13357,10 +13394,6 @@ msgstr "Créer un nouveau client" msgid "Create New Lead" msgstr "Créer une nouvelle lead" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13379,7 +13412,7 @@ msgstr "" msgid "Create Opportunity" msgstr "Créer une opportunité" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Créer une entrée d'ouverture de PDV" @@ -13394,7 +13427,7 @@ msgstr "Créer une entrée de paiement" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13622,7 +13655,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Créez une transaction de stock entrante pour l'article." @@ -13656,7 +13689,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13751,7 +13784,7 @@ msgstr "Création de l'utilisateur..." msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Création de {} sur {} {}" @@ -13761,16 +13794,16 @@ msgstr "Création de {} sur {} {}" msgid "Creation" msgstr "Création" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13804,11 +13837,11 @@ msgstr "" msgid "Credit" msgstr "Crédit" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Crédit (transaction)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Crédit ({0})" @@ -13889,7 +13922,7 @@ msgstr "Nombre de jours" msgid "Credit Limit" msgstr "Limite de crédit" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13969,16 +14002,16 @@ msgstr "À Créditer" msgid "Credit in Company Currency" msgstr "Crédit dans la Devise de la Société" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "La limite de crédit a été dépassée pour le client {0} ({1} / {2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "La limite de crédit est déjà définie pour la société {0}." -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Limite de crédit atteinte pour le client {0}" @@ -14037,12 +14070,12 @@ msgstr "Configuration du Critère" msgid "Criteria Weight" msgstr "Pondération du Critère" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14165,7 +14198,7 @@ msgstr "Devise et liste de prix" msgid "Currency can not be changed after making entries using some other currency" msgstr "Devise ne peut être modifiée après avoir fait des entrées en utilisant une autre devise" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14230,8 +14263,8 @@ msgid "Current BOM" msgstr "nomenclature Actuelle" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "La nomenclature actuelle et la nouvelle nomenclature ne peuvent être pareilles" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14293,10 +14326,6 @@ msgstr "" msgid "Current Serial No" msgstr "Numéro de série actuel" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15127,7 +15156,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Récapitulatif quotidien du projet pour {0}" @@ -15272,10 +15301,6 @@ msgstr "" msgid "Day Of Week" msgstr "Jour de la semaine" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15382,11 +15407,11 @@ msgstr "Revendeur" msgid "Debit" msgstr "Débit" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Débit (Transaction)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Débit ({0})" @@ -15548,7 +15573,7 @@ msgstr "Décilitre" msgid "Decimeter" msgstr "Décimètre" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Déclarer perdu" @@ -16229,8 +16254,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Suppression en cours !" @@ -16324,7 +16349,7 @@ msgstr "Articles Livrés à Facturer" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16382,7 +16407,7 @@ msgstr "Livraison" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16712,7 +16737,7 @@ msgstr "Amortissement" msgid "Depreciation Amount" msgstr "Montant d'Amortissement" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Montant d'Amortissement au cours de la période" @@ -16728,7 +16753,7 @@ msgstr "Date d’Amortissement" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Amortissement Eliminé en raison de cessions d'actifs" @@ -16798,7 +16823,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Ligne d'amortissement {0}: la valeur attendue après la durée de vie utile doit être supérieure ou égale à {1}" @@ -16827,11 +16852,11 @@ msgstr "Calendrier d'Amortissement" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16859,7 +16884,7 @@ msgstr "Concepteur" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Raison détaillée" @@ -16962,12 +16987,12 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Le Compte d’Écart doit être un compte de type Actif / Passif, puisque cette Réconciliation de Stock est une écriture d'à-nouveau" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17029,7 +17054,7 @@ msgstr "Valeur de différence" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Différentes UdM pour les articles conduira à un Poids Net (Total) incorrect . Assurez-vous que le Poids Net de chaque article a la même unité de mesure ." @@ -17202,7 +17227,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17211,17 +17236,17 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Règles de tarification désactivées car {} est un transfert interne" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17471,8 +17496,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "La remise doit être inférieure à 100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17837,11 +17862,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "Le type de document {0} n'existe pas" @@ -17879,22 +17904,6 @@ msgstr "Recherche de documents" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18200,7 +18209,7 @@ msgstr "Projet en double avec tâches" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18354,7 +18363,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Modification non autorisée" @@ -18578,8 +18587,8 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "E-mails en file d'attente" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18766,7 +18775,7 @@ msgstr "Employés" msgid "Empty" msgstr "Vide" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18775,7 +18784,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18854,6 +18863,12 @@ msgstr "" msgid "Enable European Access" msgstr "Activer l'accès européen" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19125,7 +19140,7 @@ msgstr "Heure de Fin" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19248,7 +19263,7 @@ msgstr "Entrez le numéro de téléphone du client" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Veuillez entrer les détails de l'amortissement" @@ -19303,6 +19318,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "Saisissez le montant de {0}." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19338,7 +19357,7 @@ msgstr "Type d'Écriture" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Capitaux Propres" @@ -19362,7 +19381,7 @@ msgstr "" msgid "Error Description" msgstr "Erreur de description" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Une erreur s'est produite" @@ -19394,19 +19413,21 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "Erreur lors du traitement de la comptabilité différée pour {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Erreur: {0} est un champ obligatoire" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19420,7 +19441,7 @@ msgid "Estimated Arrival" msgstr "Arrivée estimée" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Coût estimé" @@ -19469,7 +19490,7 @@ msgstr "Exemple: ABCD. #####. Si le masque est définie et que le numéro de lot msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19750,7 +19771,7 @@ msgstr "Date de clôture prévue" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19837,7 +19858,7 @@ msgstr "Valeur Attendue Après Utilisation Complète" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Charges" @@ -20096,9 +20117,9 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Échec de l'authentification de la clé API." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20295,7 +20316,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20333,15 +20354,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "Les champs seront copiés uniquement au moment de la création." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20350,7 +20371,7 @@ msgstr "" msgid "File to Rename" msgstr "Fichier à Renommer" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20509,11 +20530,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20582,7 +20603,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20595,7 +20616,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "Code d'article fini" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20703,7 +20724,7 @@ msgstr "Entrepôt de produits finis" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20802,10 +20823,6 @@ msgstr "Le régime fiscal est obligatoire, veuillez définir le régime fiscal d msgid "Fiscal Year" msgstr "Exercice fiscal" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20819,11 +20836,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "La date de fin d'exercice doit être un an après la date de début d'exercice" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "L'exercice budgétaire {0} n'existe pas" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Exercice Fiscal {0} n'existe pas" @@ -20856,7 +20870,7 @@ msgstr "Actif Immobilisé" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20992,7 +21006,7 @@ msgstr "" msgid "For" msgstr "Pour" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "Pour les articles \"Ensembles de Produits\", l’Entrepôt, le N° de Série et le N° de Lot proviendront de la table \"Liste de Colisage\". Si l’Entrepôt et le N° de Lot sont les mêmes pour tous les produits colisés d’un même article 'Produit Groupé', ces valeurs peuvent être entrées dans la table principale de l’article et elles seront copiées dans la table \"Liste de Colisage\"." @@ -21017,10 +21031,6 @@ msgstr "Pour la Société" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21087,12 +21097,12 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Pour l'article {0}, la quantité doit être un nombre négatif" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Pour un article {0}, la quantité doit être un nombre positif" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21124,12 +21134,12 @@ msgstr "Pour quel montant dépensé = 1 point de fidélité" msgid "For individual supplier" msgstr "Pour un fournisseur individuel" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21142,8 +21152,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21159,21 +21169,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Pour référence" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Pour la ligne {0} dans {1}. Pour inclure {2} dans le prix de l'article, les lignes {3} doivent également être incluses" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Pour la ligne {0}: entrez la quantité planifiée" @@ -21192,11 +21198,15 @@ msgstr "Pour la condition "Appliquer la règle à l'autre", le champ { msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21284,6 +21294,21 @@ msgstr "Messages du forum" msgid "Forum URL" msgstr "URL du forum" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21827,7 +21852,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Écriture GL" @@ -21952,6 +21977,10 @@ msgstr "Grand Livre" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22005,7 +22034,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22348,7 +22377,7 @@ msgstr "Les marchandises en transit" msgid "Goods Transferred" msgstr "Marchandises transférées" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Les marchandises sont déjà reçues pour l'entrée sortante {0}" @@ -22531,7 +22560,7 @@ msgstr "" msgid "Grant Commission" msgstr "Eligible aux commissions" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Plus grand que le montant" @@ -22671,7 +22700,7 @@ msgstr "Regrouper par commande client" msgid "Group by Voucher" msgstr "Groupe par Bon" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Un noeud de groupe d'entrepôt ne peut pas être sélectionné pour les transactions" @@ -22974,7 +23003,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -23002,7 +23031,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23038,7 +23067,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23621,15 +23650,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23667,7 +23696,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Si le compte est gelé, les écritures ne sont autorisés que pour un nombre restreint d'utilisateurs." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Si l'article est traité comme un article à taux de valorisation nul dans cette entrée, veuillez activer "Autoriser le taux de valorisation nul" dans le {0} tableau des articles." @@ -23768,7 +23797,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23986,14 +24015,14 @@ msgstr "Importer des factures" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Importation réussie" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24470,7 +24499,7 @@ msgstr "Incluant les articles pour des sous-ensembles" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Revenus" @@ -24556,7 +24585,7 @@ msgstr "Appel entrant du {0}" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24565,7 +24594,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "Equilibre des quantités aprés une transaction" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24573,11 +24602,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24586,7 +24615,7 @@ msgstr "" msgid "Incorrect Date" msgstr "Date incorrecte" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24603,7 +24632,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "Valorisation inccorecte par Num. Série / Lots" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24686,7 +24715,7 @@ msgstr "Incrément" msgid "Increment cannot be 0" msgstr "Incrément ne peut pas être 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Incrément pour l'Attribut {0} ne peut pas être 0" @@ -24883,7 +24912,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Capacité insuffisante" @@ -24899,12 +24928,12 @@ msgstr "Permissions insuffisantes" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Stock insuffisant" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25034,7 +25063,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25059,7 +25088,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25085,7 +25114,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25106,7 +25135,7 @@ msgstr "" msgid "Internal Transfer" msgstr "Transfert Interne" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25148,8 +25177,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25168,7 +25197,7 @@ msgstr "" msgid "Invalid Amount" msgstr "Montant Invalide" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Attribut invalide" @@ -25185,11 +25214,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Code à barres invalide. Il n'y a pas d'article attaché à ce code à barres." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Commande avec limites non valide pour le client et l'article sélectionnés" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25209,13 +25238,13 @@ msgstr "Société non valide pour une transaction inter-sociétés." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25236,11 +25265,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25270,7 +25299,7 @@ msgstr "" msgid "Invalid Item" msgstr "Élément non valide" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25279,7 +25308,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25318,7 +25347,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25335,7 +25364,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "Quantité invalide" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25347,8 +25376,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25356,7 +25385,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "Prix de vente invalide" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25373,7 +25402,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Valeur invalide" @@ -25383,14 +25412,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Expression de condition non valide" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25422,7 +25451,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26385,10 +26414,6 @@ msgstr "Date d'émission" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Nécessaire pour aller chercher les Détails de l'Article." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26397,7 +26422,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26446,12 +26471,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26484,7 +26509,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26558,7 +26583,7 @@ msgstr "Article 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26719,7 +26744,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26751,7 +26776,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26760,12 +26785,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26861,7 +26886,7 @@ msgstr "Code de l'Article ne peut pas être modifié pour le Numéro de Série" msgid "Item Code required at Row No {0}" msgstr "Code de l'Article est requis à la Ligne No {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Code d'article: {0} n'est pas disponible dans l'entrepôt {1}." @@ -27057,7 +27082,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Arborescence de Groupe d'Article" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Le Groupe d'Articles n'est pas mentionné dans la fiche de l'article pour l'article {0}" @@ -27211,7 +27236,7 @@ msgstr "Fabricant d'Article" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27242,7 +27267,7 @@ msgstr "Fabricant d'Article" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27250,8 +27275,8 @@ msgstr "Fabricant d'Article" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27308,7 +27333,7 @@ msgstr "Fabricant d'Article" msgid "Item Name" msgstr "Nom de l'article" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27355,8 +27380,8 @@ msgstr "Paramètres du prix de l'article" msgid "Item Price Stock" msgstr "Stock et prix de l'article" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27368,7 +27393,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Prix de l'Article mis à jour pour {0} dans la Liste des Prix {1}" @@ -27413,7 +27438,7 @@ msgstr "Réorganiser les Articles" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Ligne d'objet {0}: {1} {2} n'existe pas dans la table '{1}' ci-dessus" @@ -27529,7 +27554,7 @@ msgstr "Article à produire" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Variante de l'Article" @@ -27648,7 +27673,7 @@ msgstr "Détail des Taxes par Article" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27684,7 +27709,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "L'article doit être ajouté à l'aide du bouton 'Obtenir des éléments de Reçus d'Achat'" @@ -27698,7 +27723,7 @@ msgstr "Libellé de l'article" msgid "Item operation" msgstr "Opération de l'article" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27713,7 +27738,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27729,10 +27754,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27741,6 +27762,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27750,6 +27775,7 @@ msgstr "Article {0} n'existe pas" msgid "Item {0} does not exist in the system or has expired" msgstr "L'article {0} n'existe pas dans le système ou a expiré" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Article {0} n'existe pas." @@ -27782,6 +27808,10 @@ msgstr "L'article {0} a atteint sa fin de vie le {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "L'article {0} est ignoré puisqu'il n'est pas en stock" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27814,7 +27844,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "L'article {0} n’est pas actif ou sa fin de vie a été atteinte" @@ -27846,10 +27876,6 @@ msgstr "L'article {0} : Qté commandée {1} ne peut pas être inférieure à la msgid "Item {0}: {1} qty produced. " msgstr "Article {0}: {1} quantité produite." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27900,6 +27926,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "Article : {0} n'existe pas dans le système" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27916,7 +27946,7 @@ msgstr "" msgid "Items Filter" msgstr "Filtre d'articles" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Articles requis" @@ -27956,7 +27986,7 @@ msgstr "Articles pour demande de matière première" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27966,7 +27996,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Les articles à fabriquer doivent extraire les matières premières qui leur sont associées." @@ -28036,7 +28066,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28099,20 +28129,19 @@ msgstr "Journal de temps de la carte de travail" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Travail commencé" @@ -28175,11 +28204,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Job card {0} créée" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28525,7 +28562,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28646,7 +28683,7 @@ msgstr "" msgid "Lead" msgstr "Lead" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28740,7 +28777,7 @@ msgstr "Délai en Jours" msgid "Lead Type" msgstr "Type de Lead" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28888,7 +28925,7 @@ msgstr "" msgid "Length (cm)" msgstr "Longueur (cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Moins que le montant" @@ -28917,7 +28954,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Passifs" @@ -28947,7 +28984,7 @@ msgstr "Numéro de licence" msgid "License Plate" msgstr "Plaque d'Immatriculation" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Limite Dépassée" @@ -29043,7 +29080,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29210,7 +29247,7 @@ msgstr "Motif perdu" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Raisons perdues" @@ -29296,7 +29333,7 @@ msgstr "Utilisation des points de fidélité" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Points de fidélité: {0}" @@ -29534,7 +29571,7 @@ msgstr "Détails de l'Échéancier d'Entretien" msgid "Maintenance Schedule Item" msgstr "Article de Calendrier d'Entretien" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "L'Échéancier d'Entretien n'est pas créé pour tous les articles. Veuillez clicker sur 'Créer un Échéancier'" @@ -29631,7 +29668,7 @@ msgstr "Visite d'Entretien" msgid "Maintenance Visit Purpose" msgstr "Objectif de la Visite d'Entretien" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "La date de début d'entretien ne peut pas être antérieure à la date de livraison pour le N° de Série {0}" @@ -29778,7 +29815,7 @@ msgstr "Obligatoire pour le bilan" msgid "Mandatory For Profit and Loss Account" msgstr "Compte de résultat obligatoire" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Obligatoire manquant" @@ -29861,8 +29898,8 @@ msgstr "La saisie manuelle ne peut pas être créée! Désactivez la saisie auto #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30084,7 +30121,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30262,10 +30299,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30292,7 +30325,7 @@ msgstr "Consommation de matériel" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Consommation de matériaux pour la production" @@ -30403,7 +30436,7 @@ msgstr "Demande de matériel" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Date de la Demande de Matériel" @@ -30453,7 +30486,7 @@ msgstr "Détail de la demande de matériel" msgid "Material Request Item" msgstr "Article de Demande de Matériel" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Demande matériel No" @@ -30475,7 +30508,7 @@ msgstr "Type de Demande de Matériel" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Demande de matériel non créée, car la quantité de matières premières est déjà disponible." @@ -30489,7 +30522,7 @@ msgstr "Demande de Matériel d'un maximum de {0} peut être faite pour l'article msgid "Material Request used to make this Stock Entry" msgstr "Demande de Matériel utilisée pour réaliser cette Écriture de Stock" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Demande de Matériel {0} est annulé ou arrêté" @@ -30609,13 +30642,13 @@ msgstr "Du Matériel au Fournisseur" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30784,7 +30817,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Mentionnez le taux de valorisation dans la fiche article." @@ -30819,7 +30852,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31165,7 +31198,7 @@ msgstr "Charges Diverses" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31174,11 +31207,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Compte manquant" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31203,11 +31236,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31215,7 +31248,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31227,7 +31260,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31239,7 +31272,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31247,12 +31280,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Modèle de courrier électronique manquant pour l'envoi. Veuillez en définir un dans les paramètres de livraison." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31501,8 +31534,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31510,8 +31543,8 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Plusieurs Règles de Prix existent avec les mêmes critères, veuillez résoudre les conflits en attribuant des priorités. Règles de Prix : {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31531,7 +31564,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Plusieurs Exercices existent pour la date {0}. Veuillez définir la société dans l'Exercice" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31540,10 +31573,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Doit être un Nombre Entier" @@ -31628,11 +31661,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31676,7 +31705,7 @@ msgstr "Analyse des besoins" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Quantité Négative n'est pas autorisée" @@ -31686,12 +31715,12 @@ msgstr "Quantité Négative n'est pas autorisée" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Taux de Valorisation Négatif n'est pas autorisé" @@ -31769,8 +31798,8 @@ msgstr "Montant Net" msgid "Net Amount (Company Currency)" msgstr "Montant Net (Devise Société)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Valeur Nette des Actifs au" @@ -31820,7 +31849,7 @@ msgstr "Taux Horaire Net" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Bénéfice net" @@ -31828,7 +31857,7 @@ msgstr "Bénéfice net" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Résultat net" @@ -31842,11 +31871,11 @@ msgstr "Résultat net" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32090,7 +32119,7 @@ msgstr "" msgid "New Income" msgstr "Nouveaux Revenus" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32163,6 +32192,7 @@ msgid "New Task" msgstr "Nv. Tâche à faire" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32175,9 +32205,9 @@ msgstr "Nouveau Nom d'Entrepôt" msgid "New Workplace" msgstr "Nouveau Lieu de Travail" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Nouvelle limite de crédit est inférieure à l'encours actuel pour le client. Limite de crédit doit être au moins de {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32185,6 +32215,10 @@ msgstr "Nouvelle limite de crédit est inférieure à l'encours actuel pour le c msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "De nouvelles factures seront générées selon le calendrier, même si les factures actuelles sont impayées ou en retard" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "La nouvelle date de sortie devrait être dans le futur" @@ -32197,7 +32231,7 @@ msgstr "" msgid "New task" msgstr "Nouvelle tâche" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "De nouvelles règles de tarification {0} sont créées." @@ -32261,16 +32295,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Aucun client trouvé pour les transactions intersociétés qui représentent l'entreprise {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Aucun bon de livraison sélectionné pour le client {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32278,15 +32311,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Aucun Article avec le Code Barre {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Aucun Article avec le N° de Série {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32329,11 +32362,6 @@ msgstr "Aucune autorisation" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32436,6 +32464,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "Aucun contact avec des identifiants de messagerie trouvés." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Aucune donnée pour cette période" @@ -32481,7 +32513,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32518,10 +32550,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32618,7 +32646,7 @@ msgstr "Aucune facture en attente trouvée" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Aucune facture en attente ne nécessite une réévaluation du taux de change" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32656,15 +32684,20 @@ msgstr "" msgid "No record found" msgstr "Aucun Enregistrement Trouvé" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32693,7 +32726,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32730,7 +32763,7 @@ msgstr "Pas de valeurs" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32738,11 +32771,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "Aucun {0} n'a été trouvé pour les transactions inter-sociétés." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "N°." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32794,7 +32822,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Aucun des Articles n’a de changement en quantité ou en valeur." @@ -32805,8 +32833,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "N°" @@ -32820,8 +32848,8 @@ msgstr "N°" msgid "Not Applicable" msgstr "Non Applicable" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Indisponible" @@ -32884,10 +32912,6 @@ msgstr "Non Commencé" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Ne permet pas de définir un autre article pour l'article {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Non autorisé à créer une dimension comptable pour {0}" @@ -32904,10 +32928,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "Vous n'êtes pas autorisé à modifier le compte gelé {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32920,7 +32940,7 @@ msgstr "En rupture" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33165,8 +33185,8 @@ msgid "Numeric Values" msgstr "Valeurs Numériques" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Numero n'a pas été défini dans le fichier XML" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33341,11 +33361,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Une fois définie, cette facture sera mise en attente jusqu'à la date fixée" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33380,7 +33400,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33445,7 +33465,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33511,7 +33531,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Ouvrir la vue formulaire" @@ -33664,7 +33684,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Détails du solde d'ouverture" @@ -33694,7 +33714,7 @@ msgstr "Date d'Ouverture" msgid "Opening Entry" msgstr "Écriture d'Ouverture" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Ouverture de la création de facture en cours" @@ -33722,7 +33742,7 @@ msgstr "Ouverture d'un poste de facture" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33731,7 +33751,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Ouverture des factures Résumé" @@ -33761,20 +33781,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Stock d'Ouverture" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33783,7 +33803,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33826,7 +33846,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Coût d'Exploitation" @@ -33917,7 +33937,7 @@ msgstr "Numéro de ligne d'opération" msgid "Operation Time" msgstr "Durée de l'Opération" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Temps de l'Opération doit être supérieur à 0 pour l'Opération {0}" @@ -33941,8 +33961,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "L'opération {0} ne fait pas partie de l'ordre de fabrication {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Opération {0} plus longue que toute heure de travail disponible dans la station de travail {1}, veuillez séparer l'opération en plusieurs opérations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34127,6 +34147,10 @@ msgstr "Opportunité {0} créée" msgid "Optimize Route" msgstr "Optimiser l'itinéraire" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34143,10 +34167,6 @@ msgstr "Facultatif. Ce paramètre sera utilisé pour filtrer différentes transa msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Montant de la commande" @@ -34432,7 +34452,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34486,7 +34506,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34567,11 +34587,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Tolérance de sur-prélèvement (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34588,12 +34608,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34644,10 +34664,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "En retard et à prix réduit" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Chevauchement dans la notation entre {0} et {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Conditions qui coincident touvées entre :" @@ -34713,6 +34729,11 @@ msgstr "PAN Non" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34760,7 +34781,7 @@ msgstr "PDV" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34858,8 +34879,8 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "La facture PDV n'est pas créée par l'utilisateur {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -34918,7 +34939,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34939,7 +34960,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34962,7 +34983,7 @@ msgstr "Mode de paiement POS" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "Profil PDV" @@ -34982,7 +35003,7 @@ msgstr "Utilisateur du profil PDV" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34994,19 +35015,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35036,11 +35057,11 @@ msgstr "Paramètres PDV" msgid "POS Transactions" msgstr "Transactions POS" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35059,7 +35080,7 @@ msgstr "Projet PSOA" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35684,7 +35705,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35811,7 +35832,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35897,7 +35918,7 @@ msgstr "Restriction d'article disponible" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35918,7 +35939,7 @@ msgstr "Type de Tiers" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Le type de tiers et le tiers sont obligatoires pour le compte {0}" @@ -35954,7 +35975,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36464,7 +36485,7 @@ msgstr "Références de Paiement" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36539,7 +36560,7 @@ msgstr "Calendrier de paiement" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36561,7 +36582,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36661,8 +36682,8 @@ msgid "Payment Type" msgstr "Type de paiement" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Type de Paiement doit être Recevoir, Payer ou Transfert Interne" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36868,11 +36889,11 @@ msgstr "Activités en Attente pour aujourd'hui" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37388,12 +37409,12 @@ msgstr "ID client plaid" msgid "Plaid Environment" msgstr "Environnement écossais" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37415,7 +37436,7 @@ msgstr "Secret de plaid" msgid "Plaid Settings" msgstr "Paramètres de plaid" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Erreur de synchronisation des transactions plaid" @@ -37566,15 +37587,6 @@ msgstr "Usines et Machines" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Veuillez réapprovisionner les articles et mettre à jour la liste de prélèvement pour continuer. Pour interrompre, annulez la liste de liste prélèvement." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Veuillez sélectionner une entreprise" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Veuillez sélectionner une entreprise." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37582,7 +37594,6 @@ msgstr "Veuillez sélectionner un client" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Veuillez sélectionner un fournisseur" @@ -37590,19 +37601,19 @@ msgstr "Veuillez sélectionner un fournisseur" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Veuillez définir un groupe de fournisseurs par défaut dans les paramètres d'achat." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Veuillez ajouter le mode de paiement et les détails du solde d'ouverture." @@ -37618,7 +37629,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Veuillez ajouter un compte d'ouverture temporaire dans le plan comptable" @@ -37626,35 +37637,32 @@ msgstr "Veuillez ajouter un compte d'ouverture temporaire dans le plan comptable msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Veuillez ajouter le compte à la société au niveau racine - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37696,7 +37704,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37709,11 +37717,11 @@ msgstr "Veuillez vérifier votre identifiant client Plaid et vos valeurs secrèt msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Veuillez cliquer sur \"Générer calendrier''" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Veuillez cliquer sur ‘Générer Calendrier’ pour récupérer le N° Série ajouté à l'article {0}" @@ -37729,15 +37737,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37745,11 +37753,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Veuillez convertir le compte parent de l'entreprise enfant correspondante en compte de groupe." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Veuillez créer un client à partir du lead {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37761,7 +37769,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Veuillez créer un reçu d'achat ou une facture d'achat pour l'article {0}" @@ -37773,11 +37781,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Ne créez pas plus de 500 objets à la fois." @@ -37802,7 +37810,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37814,11 +37822,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37834,7 +37842,7 @@ msgstr "Veuillez entrez un Compte pour le Montant de Change" msgid "Please enter Approving Role or Approving User" msgstr "Veuillez entrer un Rôle Approbateur ou un Rôle Utilisateur" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37850,7 +37858,7 @@ msgstr "Entrez la Date de Livraison" msgid "Please enter Employee Id of this sales person" msgstr "Veuillez entrer l’ID Employé de ce commercial" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Veuillez entrer un Compte de Charges" @@ -37859,7 +37867,7 @@ msgstr "Veuillez entrer un Compte de Charges" msgid "Please enter Item Code to get Batch Number" msgstr "Veuillez entrer le Code d'Article pour obtenir le Numéro de Lot" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Veuillez entrer le Code d'Article pour obtenir n° de lot" @@ -37895,7 +37903,7 @@ msgstr "Veuillez entrer la date de Référence" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38025,7 +38033,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38061,11 +38069,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "Veuillez récupérer les articles des Bons de Livraison" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38094,12 +38098,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "Veuillez sélectionner le type de modèle pour télécharger le modèle" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Veuillez sélectionnez Appliquer Remise Sur" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Veuillez sélectionner la nomenclature pour l'article {0}" @@ -38115,9 +38119,9 @@ msgstr "" msgid "Please select Category first" msgstr "Veuillez d’abord sélectionner une Catégorie" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Veuillez d’abord sélectionner le Type de Facturation" @@ -38127,8 +38131,8 @@ msgstr "Veuillez sélectionner une Société" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Veuillez sélectionner la société et la date de comptabilisation pour obtenir les écritures" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38150,7 +38154,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Veuillez sélectionner une Société Existante pour créer un Plan de Compte" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38159,6 +38163,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "Veuillez d'abord sélectionner le code d'article" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Veuillez sélectionner le statut de maintenance comme terminé ou supprimer la date de fin" @@ -38183,11 +38191,11 @@ msgstr "Veuillez sélectionner la Date de Comptabilisation avant de sélectionne msgid "Please select Posting Date first" msgstr "Veuillez d’abord sélectionner la Date de Comptabilisation" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Veuillez sélectionner une Liste de Prix" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Veuillez sélectionner Qté par rapport à l'élément {0}" @@ -38216,6 +38224,7 @@ msgid "Please select a BOM" msgstr "Veuillez sélectionner une nomenclature" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Veuillez sélectionner une Société" @@ -38223,11 +38232,12 @@ msgstr "Veuillez sélectionner une Société" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Veuillez d'abord sélectionner une entreprise." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "S'il vous plaît sélectionner un client" @@ -38236,7 +38246,7 @@ msgstr "S'il vous plaît sélectionner un client" msgid "Please select a Delivery Note" msgstr "Veuillez sélectionner un bon de livraison" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38248,7 +38258,7 @@ msgstr "Veuillez sélectionner un fournisseur" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38264,6 +38274,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38297,22 +38308,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Veuillez sélectionner une ligne pour créer une écriture de recomptabilisation" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Veuillez sélectionner une valeur pour {0} devis à {1}" @@ -38321,7 +38336,7 @@ msgstr "Veuillez sélectionner une valeur pour {0} devis à {1}" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38329,10 +38344,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38341,18 +38364,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Veuillez sélectionner un compte correct" @@ -38390,12 +38405,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38404,8 +38419,8 @@ msgid "Please select the Company" msgstr "Veuillez sélectionner la société" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Veuillez sélectionner le type de programme à plusieurs niveaux pour plus d'une règle de collecte." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38428,20 +38443,16 @@ msgstr "Veuillez d’abord sélectionner le type de document." msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Veuillez sélectionnez les jours de congé hebdomadaires" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Veuillez d’abord sélectionner {0}" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Veuillez définir ‘Appliquer Réduction Supplémentaire Sur ‘" @@ -38470,7 +38481,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Veuillez définir le compte dans l’entrepôt {0} ou le compte d’inventaire par défaut dans la société {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38500,21 +38511,19 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Veuillez définir le code fiscal pour le client « {0} »" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Veuillez définir le code fiscal pour l'administration publique « {0} »" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38531,9 +38540,8 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Veuillez définir le numéro de TVA pour le client « {0} »" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38552,15 +38560,15 @@ msgid "Please set a Company" msgstr "Veuillez définir une entreprise" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38577,9 +38585,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "" +msgid "Please set an Address on the Company '{0}'" +msgstr "Veuillez définir une adresse pour la société « {0} »" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38597,24 +38604,21 @@ msgstr "Veuillez définir au moins une ligne dans le tableau des taxes et des fr msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Veuillez définir un compte de Caisse ou de Banque par défaut pour le Mode de Paiement {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Veuillez définir le compte de trésorerie ou bancaire par défaut dans le mode de paiement {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Veuillez définir un compte de Caisse ou de Banque par défaut pour le Mode de Paiement {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Veuillez définir le compte par défaut en espèces ou en banque dans Mode de paiement {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38646,11 +38650,11 @@ msgstr "Veuillez définir un filtre basé sur l'Article ou l'Entrepôt" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Veuillez définir la récurrence après avoir sauvegardé" @@ -38658,7 +38662,7 @@ msgstr "Veuillez définir la récurrence après avoir sauvegardé" msgid "Please set the Customer Address" msgstr "Veuillez définir l'adresse du client" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Veuillez définir un centre de coûts par défaut pour la société {0}." @@ -38713,7 +38717,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38721,7 +38725,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Veuillez spécifier la Société" @@ -38731,8 +38735,8 @@ msgstr "Veuillez spécifier la Société" msgid "Please specify Company to proceed" msgstr "Veuillez spécifier la Société pour continuer" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Veuillez spécifier un N° de Ligne valide pour la ligne {0} de la table {1}" @@ -38740,11 +38744,11 @@ msgstr "Veuillez spécifier un N° de Ligne valide pour la ligne {0} de la table msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Veuillez spécifier au moins un attribut dans la table Attributs" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Veuillez spécifier la Quantité, le Taux de Valorisation ou les deux" @@ -38752,6 +38756,14 @@ msgstr "Veuillez spécifier la Quantité, le Taux de Valorisation ou les deux" msgid "Please specify from/to range" msgstr "Veuillez préciser la plage de / à" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38915,7 +38927,7 @@ msgstr "Publié le" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38940,7 +38952,7 @@ msgstr "Publié le" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38983,8 +38995,8 @@ msgstr "Date de Comptabilisation" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "La Date de Publication ne peut pas être une date future" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -38992,7 +39004,7 @@ msgstr "La Date de Publication ne peut pas être une date future" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39185,6 +39197,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39274,7 +39290,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "L’Exercice Financier Précédent n’est pas fermé" @@ -39416,7 +39432,7 @@ msgstr "Pays de la Liste des Prix" msgid "Price List Currency" msgstr "Devise de la Liste de Prix" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Devise de la Liste de Prix non sélectionnée" @@ -39537,7 +39553,7 @@ msgstr "Prix non dépendant de l'UdM" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39648,7 +39664,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "La règle de tarification {0} est mise à jour" @@ -39856,7 +39872,7 @@ msgid "Priorities" msgstr "Les priorités" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40038,7 +40054,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40164,7 +40180,7 @@ msgstr "Ensemble de Produits" msgid "Product Bundle Balance" msgstr "Balance de produit" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40189,7 +40205,7 @@ msgstr "Aide pour les Ensembles de Produits" msgid "Product Bundle Item" msgstr "Article d'un Ensemble de Produits" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40392,7 +40408,7 @@ msgstr "Produits" msgid "Profit & Loss" msgstr "Profits & Pertes" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Bénéfice cette année" @@ -40421,6 +40437,10 @@ msgstr "Pertes et Profits" msgid "Profit and Loss Statement" msgstr "Compte de Résultat" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40429,8 +40449,8 @@ msgstr "Compte de Résultat" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Bénéfice de l'exercice" @@ -40503,7 +40523,7 @@ msgstr "Statut du Projet" msgid "Project Summary" msgstr "Résumé du projet" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Résumé du projet pour {0}" @@ -40583,7 +40603,7 @@ msgstr "Suivi des stocks par projet" msgid "Project wise Stock Tracking " msgstr "Suivi des Stocks par Projet" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Les données par projet ne sont pas disponibles pour un devis" @@ -40634,7 +40654,7 @@ msgstr "Qté Projetée" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40780,7 +40800,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Prospects Contactés mais non Convertis" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40813,9 +40833,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Gain / Perte (Crédit) Provisoire" @@ -41043,8 +41063,8 @@ msgstr "Tendances des Factures d'Achat" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "La facture d'achat ne peut pas être effectuée sur un élément existant {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "La Facture d’Achat {0} est déjà soumise" @@ -41085,7 +41105,7 @@ msgstr "Factures d'achat" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41109,11 +41129,11 @@ msgstr "Factures d'achat" msgid "Purchase Order" msgstr "Commande d'Achat" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Montant de la Commande d'Achat" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Montant de la Commande d'Achat (devise de la société)" @@ -41128,7 +41148,7 @@ msgstr "Montant de la Commande d'Achat (devise de la société)" msgid "Purchase Order Analysis" msgstr "Analyse des bons de commande" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Date de la commande d'achat" @@ -41177,8 +41197,8 @@ msgid "Purchase Order Required" msgstr "Commande d'Achat requise" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Commande d'Achat requise pour l'article {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41237,7 +41257,7 @@ msgid "Purchase Orders to Receive" msgstr "Commandes d'achat à recevoir" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41327,8 +41347,8 @@ msgid "Purchase Receipt Required" msgstr "Reçu d’Achat Requis" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Reçu d'achat requis pour l'article {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41347,8 +41367,8 @@ msgid "Purchase Receipt Trends " msgstr "Tendances des Reçus d'Achats " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Le reçu d’achat ne contient aucun élément pour lequel Conserver échantillon est activé." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41575,7 +41595,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41594,7 +41614,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41659,7 +41679,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41696,7 +41716,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "Quantité À Produire" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41791,7 +41811,7 @@ msgstr "" msgid "Qty to Bill" msgstr "Qté à facturer" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -41977,7 +41997,7 @@ msgstr "Inspection de la Qualité" msgid "Quality Inspection Analysis" msgstr "Analyse d'inspection de la qualité" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42054,7 +42074,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Inspection(s) Qualite" @@ -42137,7 +42157,7 @@ msgstr "Examen de la qualité" msgid "Quality Review Objective" msgstr "Objectif de revue de qualité" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42181,12 +42201,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42337,7 +42357,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "La quantité doit être supérieure à zéro." @@ -42365,11 +42385,11 @@ msgstr "Quantité doit être supérieure à 0" msgid "Quantity to Manufacture" msgstr "Quantité à fabriquer" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "La quantité à fabriquer ne peut pas être nulle pour l'opération {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "La quantité à produire doit être supérieur à 0." @@ -42377,6 +42397,10 @@ msgstr "La quantité à produire doit être supérieur à 0." msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42402,7 +42426,7 @@ msgstr "" msgid "Query Route String" msgstr "Chaîne de caractères du lien de requête" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42642,7 +42666,7 @@ msgstr "Créé par (Email)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42826,7 +42850,7 @@ msgid "Rate at which this tax is applied" msgstr "Taux auquel cette taxe est appliquée" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43145,7 +43169,7 @@ msgstr "Raison de la mise en attente" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Raison de tenir" @@ -43387,8 +43411,8 @@ msgstr "La Liste de Destinataires est vide. Veuillez créer une Liste de Destina msgid "Receiving" msgstr "Reçue" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43564,6 +43588,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43614,7 +43642,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43694,7 +43722,7 @@ msgstr "Référence #" msgid "Reference #{0} dated {1}" msgstr "Référence #{0} datée du {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -43986,7 +44014,7 @@ msgid "Rejected Warehouse" msgstr "Entrepôt Rejeté" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44093,7 +44121,7 @@ msgstr "Remarque" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44132,7 +44160,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Les articles avec aucune modification de quantité ou de valeur ont étés retirés." @@ -44283,7 +44311,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44366,7 +44394,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44412,6 +44440,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44496,7 +44533,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Reqd par date" @@ -44612,11 +44649,11 @@ msgstr "Qté demandée" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Site demandeur" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Demandeur" @@ -44795,6 +44832,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "Entrepôt de réserve" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44833,8 +44874,8 @@ msgid "Reserved Qty" msgstr "Qté Réservées" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "" +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "La quantité réservée ({0}) ne peut pas être fractionnaire. Pour permettre cela, désactivez '{1}' dans l'UOM {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44878,7 +44919,7 @@ msgstr "Quantité Réservée" msgid "Reserved Quantity for Production" msgstr "Quantité réservée pour la production" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44894,13 +44935,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Stock réservé" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45394,6 +45435,10 @@ msgstr "" msgid "Returns" msgstr "Retours" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45818,11 +45863,11 @@ msgstr "Nom d'acheminement" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Ligne # {0} : Vous ne pouvez pas retourner plus de {1} pour l’Article {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45906,23 +45951,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45998,13 +46043,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46016,7 +46064,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46024,12 +46072,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46041,7 +46089,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Ligne #{0}: la date de début de l'amortissement est obligatoire" @@ -46049,6 +46097,10 @@ msgstr "Ligne #{0}: la date de début de l'amortissement est obligatoire" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Ligne # {0}: entrée en double dans les références {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Ligne {0}: la date de livraison prévue ne peut pas être avant la date de commande" @@ -46061,11 +46113,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46088,8 +46147,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46101,7 +46160,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46113,6 +46172,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Ligne n ° {0}: élément ajouté" @@ -46141,16 +46204,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Ligne # {0}: l'article {1} n'est pas un article sérialisé / en lot. Il ne peut pas avoir de numéro de série / de lot contre lui." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46166,12 +46229,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46182,15 +46249,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Ligne #{0} : L’Écriture de Journal {1} n'a pas le compte {2} ou est déjà réconciliée avec une autre référence" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46202,24 +46269,48 @@ msgstr "Ligne #{0} : Changement de Fournisseur non autorisé car une Commande d' msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46235,6 +46326,10 @@ msgstr "Ligne #{0} : Veuillez définir la quantité de réapprovisionnement" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46254,7 +46349,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46277,7 +46372,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Ligne n° {0}: La quantité de l'article {1} ne peut être nulle" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46285,17 +46380,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Ligne #{0} : Type de Document de Référence doit être une Commande d'Achat, une Facture d'Achat ou une Écriture de Journal" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Ligne n ° {0}: le type de document de référence doit être l'un des suivants: Commande client, facture client, écriture de journal ou relance" @@ -46315,11 +46410,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46329,7 +46424,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46338,6 +46433,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Ligne # {0}: le numéro de série {1} n'appartient pas au lot {2}" @@ -46350,7 +46449,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46374,7 +46473,7 @@ msgstr "Ligne #{0} : Définir Fournisseur pour l’article {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46443,7 +46542,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46451,19 +46550,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "Ligne n ° {0}: le lot {1} a déjà expiré." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Ligne #{0}: Minutage en conflit avec la ligne {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46475,11 +46582,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Ligne #{0}: Vous ne pouvez pas utiliser la dimension de stock '{1}' dans l'inventaire pour modifier la quantité ou le taux de valorisation. L'inventaire avec les dimensions du stock est destiné uniquement à effectuer les écritures d'ouverture." @@ -46487,6 +46598,19 @@ msgstr "Ligne #{0}: Vous ne pouvez pas utiliser la dimension de stock '{1}' dans msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Ligne #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Ligne #{0} : {1} ne peut pas être négatif pour l’article {2}" @@ -46503,6 +46627,14 @@ msgstr "Ligne n ° {0}: {1} est requise pour créer les {2} factures d'ouverture msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46543,71 +46675,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Ligne n ° {}: la devise de {} - {} ne correspond pas à la devise de l'entreprise." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Ligne n ° {}: Facture PDV {} a été {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Ligne n ° {}: la facture PDV {} n'est pas contre le client {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Ligne n ° {}: La facture PDV {} n'est pas encore envoyée" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Ligne n ° {}: le numéro de série {} ne peut pas être renvoyé car il n'a pas été traité dans la facture d'origine {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Ligne #{}: l'article {} a déjà été prélevé." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Rangée #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Ligne n ° {}: {} {} n'existe pas." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46620,10 +46691,6 @@ msgstr "Ligne {0}: l'opération est requise pour l'article de matière première msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46644,19 +46711,19 @@ msgstr "Ligne {0} : L’Avance du Client doit être un crédit" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Ligne {0} : L’Avance du Fournisseur doit être un débit" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Ligne {0} : Nomenclature non trouvée pour l’Article {1}" @@ -46672,11 +46739,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Ligne {0} : Le Facteur de Conversion est obligatoire" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Ligne {0}: le Centre de Coûts est requis pour un article {1}" @@ -46704,24 +46771,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Ligne {0}: la date d'échéance dans le tableau des conditions de paiement ne peut pas être antérieure à la date comptable" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Ligne {0} : Le Taux de Change est obligatoire" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46742,6 +46809,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Ligne {0} : Heure de Début et Heure de Fin obligatoires." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Ligne {0} : Heure de Début et Heure de Fin de {1} sont en conflit avec {2}" @@ -46763,8 +46833,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Ligne {0} : Référence {1} non valide" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Ligne {0}: Modèle de taxe d'article mis à jour selon la validité et le taux appliqué" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46794,7 +46864,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46818,7 +46888,7 @@ msgstr "Ligne {0} : Paiements contre Commandes Client / Fournisseur doivent touj msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Ligne {0} : Veuillez vérifier 'Est Avance' sur le compte {1} si c'est une avance." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46826,12 +46896,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46850,11 +46920,11 @@ msgstr "Ligne {0}: définissez le code correct sur le mode de paiement {1}." msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46862,7 +46932,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46874,7 +46944,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46899,10 +46969,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Ligne {0}: l'article {1}, la quantité doit être un nombre positif" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46955,15 +47025,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Ligne {0} : {1} {2} ne correspond pas à {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Ligne {1}: la quantité ({0}) ne peut pas être une fraction. Pour autoriser cela, désactivez «{2}» dans UdM {3}." @@ -47002,7 +47076,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47063,10 +47137,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47134,7 +47204,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "SLA est en attente depuis le {0}" @@ -47433,7 +47503,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47650,8 +47720,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48058,7 +48128,7 @@ msgstr "Même article" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48090,7 +48160,7 @@ msgstr "Entrepôt de stockage des échantillons" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Taille de l'Échantillon" @@ -48200,7 +48270,7 @@ msgstr "" msgid "Schedule Date" msgstr "Date du Calendrier" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48211,7 +48281,7 @@ msgstr "" msgid "Scheduled Date" msgstr "Date Prévue" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48497,7 +48567,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Sélectionnez un autre élément" @@ -48518,7 +48588,7 @@ msgid "Select BOM and Qty for Production" msgstr "Sélectionner la nomenclature et la Qté pour la Production" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Sélectionner le Lot" @@ -48583,7 +48653,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Sélectionner les Employés" @@ -48608,7 +48678,7 @@ msgstr "Sélectionner des éléments" msgid "Select Items based on Delivery Date" msgstr "Sélectionnez les articles en fonction de la Date de Livraison" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48638,7 +48708,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "Sélectionner un programme de fidélité" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48652,13 +48722,13 @@ msgid "Select Quantity" msgstr "Sélectionner Quantité" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Sélectionner le n° de série" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Sélectionner le lot et le n° de série" @@ -48749,6 +48819,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Sélectionnez un compte à imprimer dans la devise du compte" @@ -48890,10 +48961,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49041,7 +49116,7 @@ msgid "Send Emails to Suppliers" msgstr "Envoyer des e-mails aux fournisseurs" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Envoyer un SMS" @@ -49125,7 +49200,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49182,10 +49257,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49227,6 +49303,10 @@ msgstr "N° de Série / Lot" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Numéro de série" @@ -49244,7 +49324,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49289,7 +49369,7 @@ msgid "Serial No and Batch" msgstr "N° de Série et lot" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49301,7 +49381,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49321,21 +49401,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "N° de Série {0} ne fait pas partie du Bon de Livraison {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "N° de Série {0} n'appartient pas à l'Article {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "N° de Série {0} n’existe pas" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49350,25 +49427,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "N° de Série {0} est sous contrat de maintenance jusqu'à {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "N° de Série {0} est sous garantie jusqu'au {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "N° de Série {0} introuvable" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Numéro de série: {0} a déjà été traité sur une autre facture PDV." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49388,7 +49466,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49489,6 +49567,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49537,7 +49619,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Numéro de série {0} est entré plus d'une fois" @@ -49545,122 +49627,12 @@ msgstr "Numéro de série {0} est entré plus d'une fois" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Séries" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Série pour la Dépréciation d'Actifs (Entrée de Journal)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Série est obligatoire" @@ -49742,7 +49714,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49851,12 +49823,12 @@ msgid "Service Stop Date" msgstr "Date d'arrêt du service" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "La date d'arrêt du service ne peut pas être postérieure à la date de fin du service" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "La date d'arrêt du service ne peut pas être antérieure à la date de début du service" @@ -49880,7 +49852,7 @@ msgstr "Affecter les encours au réglement" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Définir manuellement le prix de base" @@ -49895,7 +49867,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50000,7 +49972,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50018,7 +49990,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50044,7 +50016,7 @@ msgstr "Définir comme fermé" msgid "Set as Completed" msgstr "Définir comme terminé" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Définir comme perdu" @@ -50142,15 +50114,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Définissez {0} dans la catégorie d'actifs {1} ou la société {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Définissez {0} dans l'entreprise {1}" @@ -50218,7 +50190,7 @@ msgid "Setting up company" msgstr "Création d'entreprise" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50646,6 +50618,7 @@ msgid "Show Completed" msgstr "Montrer terminé" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50848,7 +50821,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50951,11 +50924,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -51016,7 +50989,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "Ignorer le transfert de matériel vers l'entrepôt WIP" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51072,7 +51045,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51140,7 +51113,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51177,8 +51150,8 @@ msgstr "Type de source" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51308,7 +51281,7 @@ msgstr "Diviser le ticket" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51321,7 +51294,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51374,7 +51352,7 @@ msgstr "Nom de scène" msgid "Stale Days" msgstr "Journées Passées" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51439,10 +51417,26 @@ msgstr "" msgid "Standing Name" msgstr "Nom du Classement" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "La date de début ne peut pas être antérieure à la date du jour" @@ -51472,7 +51466,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51501,10 +51495,14 @@ msgstr "La date de début doit être antérieure à la date de fin pour l'Articl msgid "Start date should be less than end date for task {0}" msgstr "La date de début doit être inférieure à la date de fin de la tâche {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51585,7 +51583,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Le statut doit être annulé ou complété" @@ -51713,7 +51711,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51795,16 +51793,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "Type d'entrée de stock" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Une entrée de stock a déjà été créée dans cette liste de prélèvement" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Écriture de Stock {0} créée" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51971,7 +51973,7 @@ msgstr "Qté de Stock Projeté" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52054,7 +52056,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52079,15 +52081,15 @@ msgstr "Réservation de stock" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52257,7 +52259,7 @@ msgstr "Transactions du Stock" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52416,8 +52418,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52436,7 +52438,7 @@ msgstr "Les transactions de stock plus ancienne que le nombre de jours ci-dessus msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52451,7 +52453,7 @@ msgstr "" msgid "Stop Reason" msgstr "Arrêter la raison" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Un ordre de fabrication arrêté ne peut être annulé, Re-démarrez le pour pouvoir l'annuler" @@ -52459,7 +52461,7 @@ msgstr "Un ordre de fabrication arrêté ne peut être annulé, Re-démarrez le #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Magasins" @@ -52673,7 +52675,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52745,7 +52747,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52783,7 +52785,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52857,7 +52859,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52876,7 +52878,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52905,7 +52907,7 @@ msgstr "Valider cet ordre de fabrication pour continuer son traitement." msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53047,7 +53049,7 @@ msgstr "Paramètres de réussite" msgid "Successful" msgstr "Réussi" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Réconcilié avec succès" @@ -53225,7 +53227,7 @@ msgstr "Qté Fournie" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53407,7 +53409,7 @@ msgstr "Date de la Facture du Fournisseur" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "N° de Facture du Fournisseur" @@ -53555,7 +53557,7 @@ msgstr "Comparaison des devis fournisseurs" msgid "Supplier Quotation Item" msgstr "Article Devis Fournisseur" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Devis fournisseur {0} créé" @@ -53740,10 +53742,6 @@ msgstr "Équipe de Support" msgid "Support Tickets" msgstr "Ticket d'assistance" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53829,7 +53827,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "Résumé des calculs TDS" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53890,7 +53888,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -54000,11 +53998,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "" +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "L'entrepôt cible pour le produit fini doit être le même que l'entrepôt de produit fini {0} dans l'ordre de fabrication {1} lié à la commande entrante de sous-traitance." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54479,7 +54477,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Montant Taxable" @@ -54691,7 +54689,7 @@ msgstr "" msgid "Template Item" msgstr "Élément de modèle" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -54998,23 +54996,27 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "Le champ 'N° de Paquet' ne doit pas être vide ni sa valeur être inférieure à 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "L'accès à la demande de devis du portail est désactivé. Pour autoriser l'accès, activez-le dans les paramètres du portail." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "La nomenclature qui sera remplacée" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "La campagne '{0}' existe déjà pour le {1} '{2}'." @@ -55039,6 +55041,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Le programme de fidélité n'est pas valable pour la société sélectionnée" @@ -55056,8 +55062,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "Une liste de prélèvement avec une écriture de réservation de stock ne peut être modifié. Si vous souhaitez la modifier, nous recommandons d'annuler l'écriture de réservation de stock et avant de modifier la liste de prélèvement." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55068,11 +55077,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55120,15 +55133,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55177,6 +55190,10 @@ msgstr "Le champ 'A l'actionnaire' ne peut pas être vide" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Les champs 'De l'actionnaire' et 'A l'actionnaire' ne peuvent pas être vides" @@ -55198,8 +55215,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "Les numéros de folio ne correspondent pas" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55227,7 +55244,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Les employés suivants relèvent toujours de {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55239,7 +55256,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Les {0} suivants ont été créés: {1}" @@ -55275,7 +55292,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55313,11 +55330,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55366,6 +55383,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55375,7 +55396,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55392,8 +55413,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Les nomenclatures sélectionnées ne sont pas pour le même article" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Le compte de modification sélectionné {} n'appartient pas à l'entreprise {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55409,7 +55430,7 @@ msgstr "Le vendeur et l'acheteur ne peuvent pas être les mêmes" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55428,11 +55449,11 @@ msgstr "Les actions existent déjà" msgid "The shares don't exist with the {0}" msgstr "Les actions n'existent pas pour {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "" +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Le stock de l'article {0} dans l'entrepôt {1} était négatif le {2}. Vous devez créer une entrée positive {3} avant la date {4} et l'heure {5} pour enregistrer le bon taux de valorisation. Pour plus de détails, consultez la documentation." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "Le stock a été réservé pour les articles et entrepôts suivants, annulez-le pour {0} l'inventaire:

                    {1}" @@ -55454,16 +55475,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "La tâche a été mise en file d'attente en tant que tâche en arrière-plan. En cas de problème de traitement en arrière-plan, le système ajoute un commentaire concernant l'erreur sur ce rapprochement des stocks et revient au stade de brouillon." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55502,7 +55523,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "La valeur de {0} diffère entre les éléments {1} et {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "La valeur {0} est déjà attribuée à un élément existant {1}." @@ -55526,7 +55547,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "Le {0} ({1}) doit être égal à {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55534,7 +55555,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55542,6 +55563,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55550,7 +55575,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Il y a une maintenance active ou des réparations sur l'actif. Vous devez les compléter tous avant d'annuler l'élément." @@ -55562,7 +55587,7 @@ msgstr "Il existe des incohérences entre le prix unitaire, le nombre d'actions msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55579,6 +55604,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55595,10 +55624,6 @@ msgstr "Il existe deux options pour gérer la valorisation du stock. FIFO (premi msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55627,20 +55652,20 @@ msgstr "Aucun lot trouvé pour {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55691,15 +55716,19 @@ msgstr "Résumé Mensuel" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55721,7 +55750,7 @@ msgstr "Cette action dissociera ce compte de tout service externe intégrant ERP msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55739,7 +55768,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "Cela couvre toutes les fiches d'Évaluation liées à cette Configuration" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Ce document excède la limite de {0} {1} pour l’article {4}. Faites-vous un autre {3} contre le même {2} ?" @@ -55881,7 +55910,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55945,7 +55974,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55972,10 +56001,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "Cette section permet à l'utilisateur de définir le corps et le texte de clôture de la lettre de relance pour le type de relance en fonction de la langue, qui peut être utilisée dans l'impression." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56033,7 +56062,7 @@ msgid "This will restrict user access to other employee records" msgstr "Cela limitera l'accès des utilisateurs aux données des autres employés" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56162,6 +56191,12 @@ msgstr "Temps (en min)" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56448,7 +56483,7 @@ msgid "To Time" msgstr "Horaire de Fin" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56479,15 +56514,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Pour autoriser la facturation excédentaire, mettez à jour "Provision de facturation excédentaire" dans les paramètres de compte ou le poste." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Pour autoriser le dépassement de réception / livraison, mettez à jour "Limite de dépassement de réception / livraison" dans les paramètres de stock ou le poste." @@ -56504,7 +56539,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56516,7 +56551,7 @@ msgid "To create a Payment Request reference document is required" msgstr "Pour créer une Demande de Paiement, un document de référence est requis" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56529,8 +56564,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Pour inclure la taxe de la ligne {0} dans le prix de l'Article, les taxes des lignes {1} doivent également être incluses" @@ -56550,7 +56585,7 @@ msgstr "Pour contourner ce problème, activez «{0}» dans l'entreprise {1}" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Pour continuer à modifier cette valeur d'attribut, activez {0} dans les paramètres de variante d'article." @@ -56567,10 +56602,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56649,8 +56686,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "Total (Devise Société)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Total (Crédit)" @@ -56692,6 +56729,22 @@ msgstr "Total des Coûts Additionnels" msgid "Total Advance" msgstr "Total Avance" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56739,11 +56792,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "Montant Total En Toutes Lettres" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Total des Frais Applicables dans la Table des Articles de Reçus d’Achat doit être égal au Total des Taxes et Frais" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Total des actifs" @@ -56925,7 +56978,7 @@ msgstr "Montant total livré" msgid "Total Demand (Past Data)" msgstr "Demande totale (données antérieures)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56934,11 +56987,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "Distance totale estimée" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Dépense totale" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Dépenses totales cette année" @@ -56976,11 +57029,11 @@ msgstr "Temps de maintien total" msgid "Total Holidays" msgstr "Total des vacances" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Revenu total" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Revenu total cette année" @@ -57023,7 +57076,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57338,7 +57391,7 @@ msgstr "Total des Taxes et Frais" msgid "Total Taxes and Charges (Company Currency)" msgstr "Total des Taxes et Frais (Devise Société)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57347,7 +57400,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "Temps total en minutes" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Total des Impayés : {0}" @@ -57426,7 +57483,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "Pourcentage total attribué à l'équipe commerciale devrait être de 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Le pourcentage total de contribution devrait être égal à 100" @@ -57444,8 +57501,8 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Le montant total des paiements ne peut être supérieur à {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57462,9 +57519,9 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Le Total {0} pour tous les articles est nul, peut-être devriez-vous modifier ‘Distribuez les Frais sur la Base de’" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57552,27 +57609,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "Devise de la Transaction" @@ -57625,11 +57666,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58019,6 +58060,10 @@ msgstr "Balance d'essai (simple)" msgid "Trial Balance for Party" msgstr "Balance Auxiliaire" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58203,7 +58248,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58225,7 +58270,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58255,7 +58300,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58319,7 +58364,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Facteur de Conversion de l'UdM" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Facteur de conversion UdM ({0} -> {1}) introuvable pour l'article: {2}" @@ -58393,7 +58438,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58406,10 +58451,6 @@ msgstr "Impossible de trouver le taux de change pour {0} à {1} pour la date cl msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Impossible de trouver le taux de change pour {0} à {1} pour la date clé {2}. Veuillez créer une entrée de taux de change manuellement." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Impossible de trouver un score démarrant à {0}. Vous devez avoir des scores couvrant 0 à 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58434,7 +58475,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Montant Non Alloué" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Qté non affectée" @@ -58446,8 +58487,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "Débloquer la facture" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58497,7 +58540,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58520,7 +58563,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Unité de mesure" @@ -58723,7 +58766,7 @@ msgstr "Non programmé" msgid "Unsecured Loans" msgstr "Prêts non garantis" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58736,7 +58779,7 @@ msgstr "Non signé" msgid "Unsubscribe from this Email Digest" msgstr "Se Désinscire de ce Compte Rendu par Email" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58880,7 +58923,7 @@ msgstr "Mettre à jour le stock actuel" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58944,7 +58987,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "Mettre à jour le prix le plus récent dans toutes les nomenclatures" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59172,7 +59215,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Utilisez un nom différent du nom du projet précédent" @@ -59261,6 +59304,10 @@ msgstr "Temps de résolution utilisateur" msgid "User has not applied rule on the invoice {0}" msgstr "L'utilisateur n'a pas appliqué la règle sur la facture {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Utilisateur {0} n'existe pas" @@ -59273,6 +59320,10 @@ msgstr "L'utilisateur {0} n'a aucun profil POS par défaut. Vérifiez par défau msgid "User {0} is already assigned to Employee {1}" msgstr "Utilisateur {0} est déjà attribué à l'Employé {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59281,10 +59332,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "L'utilisateur {} est désactivé. Veuillez sélectionner un utilisateur / caissier valide" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59577,15 +59624,15 @@ msgstr "Taux de Valorisation" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Taux de valorisation manquant" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Le taux de valorisation de l'article {0} est requis pour effectuer des écritures comptables pour {1} {2}." @@ -59593,7 +59640,7 @@ msgstr "Le taux de valorisation de l'article {0} est requis pour effectuer des msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Le Taux de Valorisation est obligatoire si un Stock Initial est entré" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Taux de valorisation requis pour le poste {0} à la ligne {1}" @@ -59603,7 +59650,7 @@ msgstr "Taux de valorisation requis pour le poste {0} à la ligne {1}" msgid "Valuation and Total" msgstr "Valorisation et Total" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59616,14 +59663,14 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Les frais de type d'évaluation ne peuvent pas être marqués comme inclusifs" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Frais de type valorisation ne peuvent pas être marqués comme inclus" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59673,12 +59720,12 @@ msgstr "Proposition de valeur" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Valeur pour l'attribut {0} doit être dans la gamme de {1} à {2} dans les incréments de {3} pour le poste {4}" @@ -59687,19 +59734,19 @@ msgstr "Valeur pour l'attribut {0} doit être dans la gamme de {1} à {2} dans l msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60175,7 +60222,7 @@ msgstr "Nom du bon" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60203,7 +60250,7 @@ msgstr "Nom du bon" msgid "Voucher No" msgstr "N° de Référence" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60215,7 +60262,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60247,7 +60294,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60454,7 +60501,7 @@ msgstr "L'entrepôt est obligatoire" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Entrepôt introuvable sur le compte {0}" @@ -60472,16 +60519,16 @@ msgstr "Balance des articles par entrepôt" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "L'entrepôt {0} ne peut pas être supprimé car il existe une quantité pour l'Article {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "L'entrepôt {0} n'appartient pas à la société {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60602,7 +60649,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60622,7 +60669,7 @@ msgstr "Attention : Un autre {0} {1} # existe pour l'écriture de stock {2}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Attention : La Quantité de Matériel Commandé est inférieure à la Qté Minimum de Commande" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60776,10 +60823,6 @@ msgstr "Groupe d'Articles du Site Web" msgid "Website Specifications" msgstr "Spécifications du Site Web" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60925,7 +60968,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61101,17 +61144,17 @@ msgstr "Travaux en cours" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61150,7 +61193,7 @@ msgstr "" msgid "Work Order Item" msgstr "Article d'ordre de fabrication" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61191,20 +61234,20 @@ msgstr "Résumé de l'ordre de fabrication" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "L'ordre de fabrication ne peut pas être créé pour la raison suivante:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Un ordre de fabrication ne peut pas être créé pour un modèle d'article" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "L'ordre de fabrication a été {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61225,7 +61268,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Bons de travail" @@ -61250,7 +61293,7 @@ msgstr "Travaux En Cours" msgid "Work-in-Progress Warehouse" msgstr "Entrepôt des Travaux en Cours" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "L'entrepôt des Travaux en Cours est nécessaire avant de Valider" @@ -61303,7 +61346,7 @@ msgstr "Heures de travail" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61535,14 +61578,6 @@ msgstr "Nom de l'Année" msgid "Year Start Date" msgstr "Date de Début de l'Exercice" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61557,8 +61592,8 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Vous n'êtes pas autorisé à effectuer la mise à jour selon les conditions définies dans {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61577,7 +61612,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "Vous choisissez une quantité supérieure à la quantité requise pour l'article {0}. Vérifiez si une autre liste de prélèvement a été créée pour la commande client {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61588,19 +61623,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "Vous pouvez également copier-coller ce lien dans votre navigateur" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Vous pouvez également définir le compte CWIP par défaut dans Entreprise {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Vous pouvez changer le compte parent en compte de bilan ou sélectionner un autre compte." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61622,8 +61653,8 @@ msgid "You can only select one mode of payment as default" msgstr "Vous ne pouvez sélectionner qu'un seul mode de paiement par défaut" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Vous pouvez utiliser jusqu'à {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61641,14 +61672,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61657,16 +61680,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Vous ne pouvez pas créer ou annuler des écritures comptables dans la période comptable clôturée {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61678,15 +61701,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "Vous ne pouvez pas supprimer le Type de Projet 'Externe'" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Vous ne pouvez pas modifier le nœud racine." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61694,7 +61725,7 @@ msgid "You cannot redeem more than {0}." msgstr "Vous ne pouvez pas utiliser plus de {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61702,8 +61733,8 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "Vous ne pouvez pas redémarrer un abonnement qui n'est pas annulé." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Vous ne pouvez pas valider de commande vide." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61717,6 +61748,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61727,8 +61762,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "Vous ne disposez pas des autorisations nécessaires pour {} éléments dans un {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61754,11 +61789,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Vous avez rencontré {} erreurs lors de la création des factures d'ouverture. Consultez {} pour plus de détails" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Vous avez déjà choisi des articles de {0} {1}" @@ -61775,7 +61810,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61790,19 +61825,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Vous devez activer la re-commande automatique dans les paramètres de stock pour maintenir les niveaux de ré-commande." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Vous devez sélectionner un client avant d'ajouter un article." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61854,6 +61889,10 @@ msgstr "Code postal" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61884,7 +61923,7 @@ msgstr "[Important] [ERPNext] Erreurs de réorganisation automatique" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61904,7 +61943,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61920,10 +61959,6 @@ msgstr "basé sur" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61978,8 +62013,8 @@ msgstr "" msgid "fieldname" msgstr "nom du Champ" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62059,14 +62094,10 @@ msgstr "sur 5" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62080,7 +62111,7 @@ msgstr "" msgid "per hour" msgstr "par heure" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62156,8 +62187,8 @@ msgstr "vendu" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62220,10 +62251,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "vous devez sélectionner le compte des travaux d'immobilisations en cours dans le tableau des comptes" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' est désactivé(e)" @@ -62236,7 +62263,7 @@ msgstr "{0} '{1}' n'est pas dans l’Exercice {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) ne peut pas être supérieur à la quantité planifiée ({2}) dans l'ordre de fabrication {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62256,7 +62283,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "Le {0} coupon utilisé est {1}. La quantité autorisée est épuisée" @@ -62264,11 +62291,6 @@ msgstr "Le {0} coupon utilisé est {1}. La quantité autorisée est épuisée" msgid "{0} Digest" msgstr "Résumé {0}" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "Le {0} numéro {1} est déjà utilisé dans {2} {3}" @@ -62350,10 +62372,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "{0} ne peut pas être négatif" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62369,7 +62399,7 @@ msgstr "" msgid "{0} created" msgstr "{0} créé" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62411,7 +62441,7 @@ msgstr "{0} pour {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62419,6 +62449,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "{0} a été envoyé avec succès" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62427,7 +62461,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "{0} dans la ligne {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62441,7 +62479,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62449,7 +62487,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} est bloqué donc cette transaction ne peut pas continuer" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62462,11 +62500,11 @@ msgstr "{0} est obligatoire pour l’Article {1}" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} est obligatoire. L'enregistrement de change de devises n'est peut-être pas créé pour le {1} au {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} est obligatoire. Peut-être qu’un enregistrement de Taux de Change n'est pas créé pour {1} et {2}." @@ -62474,7 +62512,7 @@ msgstr "{0} est obligatoire. Peut-être qu’un enregistrement de Taux de Change msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} n'est pas un compte bancaire d'entreprise" @@ -62490,7 +62528,7 @@ msgstr "{0} n'est pas un Article de stock" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} n'est pas une valeur valide pour l'attribut {1} de l'article {2}." @@ -62506,17 +62544,17 @@ msgstr "{0} n'est pas ajouté dans la table" msgid "{0} is not enabled in {1}" msgstr "{0} n'est pas activé dans {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} n'est le fournisseur par défaut d'aucun élément." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} est en attente jusqu'à {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62566,7 +62604,7 @@ msgstr "Le paramètre {0} n'est pas valide" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} écritures de paiement ne peuvent pas être filtrées par {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62579,7 +62617,7 @@ msgstr "{0} à {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62595,16 +62633,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} unités de {1} nécessaires dans {2} sur {3} {4} pour {5} pour compléter cette transaction." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} unités de {1} nécessaires dans {2} pour compléter cette transaction." @@ -62612,7 +62650,7 @@ msgstr "{0} unités de {1} nécessaires dans {2} pour compléter cette transacti msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} numéro de série valide pour l'objet {1}" @@ -62620,7 +62658,7 @@ msgstr "{0} numéro de série valide pour l'objet {1}" msgid "{0} variants created." msgstr "{0} variantes créées." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62654,7 +62692,7 @@ msgstr "{0} {1} créé" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} n'existe pas" @@ -62688,12 +62726,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} est associé à {2}, mais le compte tiers est {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} est annulé ou fermé" @@ -62725,6 +62772,10 @@ msgstr "{0} {1} est entièrement facturé" msgid "{0} {1} is not active" msgstr "{0} {1} n'est pas actif" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} n'est pas associé à {2} {3}" @@ -62830,27 +62881,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, terminez l'opération {1} avant l'opération {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62866,7 +62913,7 @@ msgstr "{0} : {1} n'existe pas" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} doit être inférieur à {2}" @@ -62878,7 +62925,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} est annulé ou fermé." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62890,32 +62937,7 @@ msgstr "Le Statut de {ref_doctype} {ref_name} est {status}." msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} ne peut pas être annulé car les points de fidélité gagnés ont été utilisés. Annulez d'abord le {} Non {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} a soumis des éléments qui lui sont associés. Vous devez annuler les actifs pour créer un retour d'achat." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} factures" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/hi.po b/erpnext/locale/hi.po index 4d8eede6d72..25b61a2813f 100644 --- a/erpnext/locale/hi.po +++ b/erpnext/locale/hi.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Hindi\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: hi_IN\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" का अर्थ है \"SN-01\" से \"SN-10\" तक" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# आवश्यक वस्तुएँ" @@ -277,7 +268,7 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" +msgid "'Based On' and 'Group By' can not be the same" msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "" @@ -326,12 +317,12 @@ msgstr "" msgid "'To Date' is required" msgstr "'आज तक' आवश्यक है" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 @@ -617,7 +608,7 @@ msgstr "90 से ऊपर" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -781,16 +772,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -951,8 +942,8 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 @@ -963,8 +954,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -981,7 +972,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1014,7 +1005,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1190,7 +1181,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "स्वीकृत मात्रा" @@ -1221,12 +1212,16 @@ msgstr "प्रवेश की चाबी" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "CEFACT/ICG/2010/IC013 या CEFACT/ICG/2010/IC010 के अनुसार" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1479,7 +1474,7 @@ msgstr "" msgid "Account is required" msgstr "खाता आवश्यक है" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "खाता नहीं मिला" @@ -1609,11 +1604,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1892,8 +1887,8 @@ msgstr "" msgid "Accounting Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "" @@ -1918,8 +1913,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1967,7 +1962,11 @@ msgstr "" msgid "Accounting Period" msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2165,8 +2164,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2394,7 +2393,7 @@ msgstr "वास्तविक शेष मात्रा" msgid "Actual Batch Quantity" msgstr "वास्तविक बैच मात्रा" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "वास्तविक कीमत" @@ -2404,7 +2403,7 @@ msgstr "वास्तविक कीमत" msgid "Actual Date" msgstr "वास्तविक तिथि" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2554,8 +2553,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2720,10 +2719,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2822,12 +2817,12 @@ msgstr "द्वारा जोड़ा गया" msgid "Added On" msgstr "जोड़ा गया" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -2970,7 +2965,7 @@ msgstr "अतिरिक्त छूट राशि" msgid "Additional Discount Amount (Company Currency)" msgstr "अतिरिक्त छूट राशि (कंपनी की मुद्रा में)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3089,11 +3084,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3358,7 +3349,7 @@ msgstr "" msgid "Advance amount" msgstr "अग्रिम राशि" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "" @@ -3427,7 +3418,7 @@ msgstr "ख़िलाफ़" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "खाते के विरुद्ध" @@ -3547,7 +3538,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3571,7 +3562,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3685,6 +3676,13 @@ msgstr "" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3861,7 +3859,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3873,7 +3871,7 @@ msgstr "सभी सामान प्राप्त हो चुके ह msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3892,15 +3890,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3924,7 +3922,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "" @@ -3934,7 +3932,7 @@ msgstr "" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3964,7 +3962,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4047,7 +4045,7 @@ msgid "Allow Alternative Item" msgstr "वैकल्पिक वस्तु की अनुमति दें" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4155,7 +4153,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4436,12 +4434,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "जिनके साथ लेन-देन करने की अनुमति है" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4476,10 +4476,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4487,10 +4487,6 @@ msgstr "" msgid "Already Picked" msgstr "पहले से ही चुना गया" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4506,12 +4502,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "वैकल्पिक वस्तु" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4716,7 +4712,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4942,12 +4938,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5161,7 +5157,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5338,10 +5334,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "नियुक्ति सफलतापूर्वक बन गई" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5367,6 +5359,10 @@ msgstr "" msgid "Appointment With" msgstr "साथ नियुक्ति" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5408,6 +5404,15 @@ msgstr "क्या आप वाकई इसे रद्द करना च msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5490,18 +5495,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5540,7 +5545,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5612,7 +5617,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5778,7 +5783,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5910,7 +5915,7 @@ msgstr "" msgid "Asset cancelled" msgstr "संपत्ति रद्द कर दी गई" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5926,7 +5931,7 @@ msgstr "" msgid "Asset created" msgstr "संपत्ति बनाई गई" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -5979,7 +5984,7 @@ msgstr "प्रस्तुत की गई संपत्ति" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6057,7 +6062,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6078,7 +6083,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6088,6 +6093,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6106,19 +6116,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6139,6 +6153,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6159,7 +6177,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6167,26 +6185,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6398,7 +6412,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6459,7 +6473,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "दस्तावेज़ अपडेट होने पर स्वतः दोहराया गया" @@ -6584,7 +6598,7 @@ msgstr "उपयोग के लिए उपलब्ध तिथि" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6680,7 +6694,7 @@ msgstr "उपयोग के लिए उपलब्ध तिथि आव msgid "Available {0}" msgstr "उपलब्ध {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6798,7 +6812,7 @@ msgstr "बिन मात्रा" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6817,7 +6831,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6832,7 +6846,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6963,7 +6977,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -6984,7 +6998,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7036,10 +7050,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7078,15 +7088,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "BOM {0} सक्रिय होना चाहिए" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7167,7 +7181,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7237,6 +7251,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7297,7 +7315,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7397,7 +7415,7 @@ msgid "Bank Account Type" msgstr "बैंक खाते का प्रकार" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7642,7 +7660,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "बैंक खाते का नाम {0} नहीं रखा जा सकता है" @@ -7654,7 +7672,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7666,7 +7684,7 @@ msgstr "बैंक खाते जोड़े गए" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7942,8 +7960,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7974,15 +7992,15 @@ msgstr "" msgid "Batch No" msgstr "दल संख्या" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "बैच नंबर अनिवार्य है" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "बैच संख्या {0} मौजूद नहीं है" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -7990,6 +8008,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8055,8 +8077,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "बैच और सीरियल नंबर" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8169,7 +8191,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8644,8 +8666,8 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "{0} को समाप्त होने वाली अवधि तक पुस्तकें बंद रहेंगी" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8872,7 +8894,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8890,7 +8912,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "क्या सभी का निर्माण करें?" @@ -8898,7 +8920,7 @@ msgstr "क्या सभी का निर्माण करें?" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "निर्माण योग्य मात्रा" @@ -9225,6 +9247,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9396,7 +9422,7 @@ msgstr "अभियान {0} नहीं मिला" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9425,21 +9451,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9468,7 +9497,7 @@ msgstr "" msgid "Cancelation Date" msgstr "रद्द करने की तिथि" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9476,11 +9505,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9495,10 +9519,6 @@ msgstr "रिटर्न नहीं बनाया जा सकता" msgid "Cannot Merge" msgstr "विलय नहीं किया जा सकता" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9523,6 +9543,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9532,14 +9557,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9547,7 +9572,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9559,7 +9584,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9584,7 +9609,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9611,7 +9636,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9620,6 +9645,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9637,7 +9666,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9650,7 +9679,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9682,7 +9711,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9707,19 +9736,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9731,12 +9764,16 @@ msgstr "ग्राहक से बकाया राशि के बदल msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9745,19 +9782,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10184,8 +10225,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10212,8 +10253,8 @@ msgstr "" msgid "Channel Partner" msgstr "चैनल पार्टनर" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10407,7 +10448,7 @@ msgstr "चेक की चौड़ाई" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "चेक/संदर्भ तिथि" @@ -10465,7 +10506,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10475,7 +10516,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10654,7 +10695,7 @@ msgstr "ऋण बंद करें" msgid "Close Replied Opportunity After Days" msgstr "कुछ दिनों बाद जवाब देने का अवसर बंद करें" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10668,7 +10709,7 @@ msgstr "बंद दस्तावेज़" msgid "Closed Documents" msgstr "बंद दस्तावेज़" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10898,9 +10939,9 @@ msgstr "आयोग" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11337,7 +11378,7 @@ msgstr "कंपनियों" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11407,7 +11448,7 @@ msgstr "कंपनियों" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11447,10 +11488,6 @@ msgstr "कंपनी" msgid "Company Abbreviation" msgstr "कंपनी का संक्षिप्त नाम" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11615,7 +11652,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11659,11 +11696,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "कंपनी का नाम एक जैसा नहीं है" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11702,6 +11739,14 @@ msgstr "कंपनी {0} को कई बार जोड़ा गया" msgid "Company {0} does not exist" msgstr "कंपनी {0} का अस्तित्व नहीं है" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "कंपनी {0} को एक से अधिक बार जोड़ा गया है" @@ -11710,14 +11755,6 @@ msgstr "कंपनी {0} को एक से अधिक बार जो msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11739,7 +11776,7 @@ msgstr "प्रतियोगी का नाम" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "प्रतियोगियों" @@ -12183,7 +12220,7 @@ msgid "Consumed Qty" msgstr "खपत की गई मात्रा" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12499,7 +12536,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12799,7 +12836,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12824,7 +12861,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12882,7 +12919,7 @@ msgstr "लागत केंद्र संख्या" msgid "Cost Center and Budgeting" msgstr "लागत केंद्र और बजट" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12894,7 +12931,7 @@ msgstr "" msgid "Cost Center is required" msgstr "लागत केंद्र आवश्यक है" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12916,11 +12953,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13045,14 +13082,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13064,7 +13101,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13074,8 +13111,8 @@ msgstr "अंतर से मेल खाने वाला उपयुक #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "पथ नहीं मिल सका " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13098,7 +13135,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13328,10 +13365,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "नया बनाएँ {0}" @@ -13350,7 +13383,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13365,7 +13398,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13593,7 +13626,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13627,7 +13660,7 @@ msgstr "{0} {1} बनाएँ?" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "{1} के बीच {0} स्कोरकार्ड बनाए गए:" @@ -13722,7 +13755,7 @@ msgstr "उपयोगकर्ता बनाया जा रहा है.. msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "{} में से {} बनाना {}" @@ -13732,16 +13765,16 @@ msgstr "{} में से {} बनाना {}" msgid "Creation" msgstr "निर्माण" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13775,11 +13808,11 @@ msgstr "" msgid "Credit" msgstr "श्रेय" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "क्रेडिट ({0})" @@ -13860,7 +13893,7 @@ msgstr "क्रेडिट दिन" msgid "Credit Limit" msgstr "क्रेडिट सीमा" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "क्रेडिट सीमा पार हो गई" @@ -13940,16 +13973,16 @@ msgstr "श्रेय" msgid "Credit in Company Currency" msgstr "कंपनी की मुद्रा में क्रेडिट" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14008,12 +14041,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14136,7 +14169,7 @@ msgstr "मुद्रा और मूल्य सूची" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14201,7 +14234,7 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14264,10 +14297,6 @@ msgstr "" msgid "Current Serial No" msgstr "वर्तमान सीरियल नंबर" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "वर्तमान श्रृंखला" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15098,7 +15127,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15243,10 +15272,6 @@ msgstr "" msgid "Day Of Week" msgstr "सप्ताह का दिन" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "महीने का दिन" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15353,11 +15378,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15519,7 +15544,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "खो जाने की घोषणा करें" @@ -16200,8 +16225,8 @@ msgstr "नियम हटाया जा रहा है..." msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "हटाने की प्रक्रिया जारी है!" @@ -16295,7 +16320,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16353,7 +16378,7 @@ msgstr "वितरण" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16683,7 +16708,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16699,7 +16724,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16769,7 +16794,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16798,11 +16823,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16830,7 +16855,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "विस्तृत कारण" @@ -16933,11 +16958,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17000,7 +17025,7 @@ msgstr "अंतर मान" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17173,7 +17198,7 @@ msgstr "विकलांग बैंक खाता" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17182,8 +17207,8 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' @@ -17191,9 +17216,9 @@ msgstr "" msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "विकलांग कर सहित कीमतें क्योंकि यह एक आंतरिक हस्तांतरण है" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17442,9 +17467,9 @@ msgstr "" msgid "Discount must be less than 100" msgstr "छूट 100 से कम होनी चाहिए" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "भुगतान शर्तों के अनुसार {} की छूट लागू है" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17808,11 +17833,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "" @@ -17850,22 +17875,6 @@ msgstr "दस्तावेज़ खोजें" msgid "Document Count" msgstr "दस्तावेज़ गणना" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "दस्तावेज़ संख्या" @@ -18171,7 +18180,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18325,7 +18334,7 @@ msgstr "संपादन क्षमता" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "संपादन की अनुमति नहीं है" @@ -18549,8 +18558,8 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "ईमेल कतार में हैं" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18737,7 +18746,7 @@ msgstr "कर्मचारी" msgid "Empty" msgstr "खाली" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "हटाने के लिए खाली सूची" @@ -18746,7 +18755,7 @@ msgstr "हटाने के लिए खाली सूची" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18825,6 +18834,12 @@ msgstr "" msgid "Enable European Access" msgstr "यूरोपीय पहुँच को सक्षम करें" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19096,7 +19111,7 @@ msgstr "अंत समय" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19219,7 +19234,7 @@ msgstr "ग्राहक का फ़ोन नंबर दर्ज कर msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19274,6 +19289,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "मनोरंजन और अवकाश" @@ -19309,7 +19328,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "हिस्सेदारी" @@ -19333,7 +19352,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19365,18 +19384,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19391,7 +19412,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "अनुमानित लागत" @@ -19440,7 +19461,7 @@ msgstr "" msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "उदाहरण: यदि लेन-देन की राशि 200 है, तो इसकी गणना इस प्रकार की जाएगी: {} = {}" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19721,7 +19742,7 @@ msgstr "अपेक्षित समापन तिथि" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19808,7 +19829,7 @@ msgstr "उपयोगी जीवन के बाद अपेक्षि #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "व्यय" @@ -20067,8 +20088,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20266,7 +20287,7 @@ msgid "Fetching Sales Orders..." msgstr "बिक्री ऑर्डर प्राप्त किए जा रहे हैं..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20304,15 +20325,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "फ़ाइल प्राप्त नहीं हुई" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "सर्वर पर फ़ाइल नहीं मिली" @@ -20321,7 +20342,7 @@ msgstr "सर्वर पर फ़ाइल नहीं मिली" msgid "File to Rename" msgstr "नाम बदलने के लिए फ़ाइल" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20480,11 +20501,11 @@ msgstr "वित्तीय रिपोर्ट विवाद" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20553,7 +20574,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20566,7 +20587,7 @@ msgstr "अच्छी तरह से तैयार वस्तु" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "तैयार माल, वस्तु की मात्रा" @@ -20674,7 +20695,7 @@ msgstr "तैयार माल गोदाम" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20773,10 +20794,6 @@ msgstr "वित्तीय व्यवस्था अनिवार्य msgid "Fiscal Year" msgstr "वित्तीय वर्ष" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20790,11 +20807,8 @@ msgstr "वित्तीय वर्ष का विवरण" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "वित्तीय वर्ष {0} अस्तित्व में नहीं है" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "वित्तीय वर्ष {0} अस्तित्व में नहीं है" @@ -20827,7 +20841,7 @@ msgstr "निश्चित संपत्ति" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20963,7 +20977,7 @@ msgstr "फुट/सेकंड" msgid "For" msgstr "के लिए" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -20988,10 +21002,6 @@ msgstr "साथ के लिए" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21058,11 +21068,11 @@ msgid "For Work Order" msgstr "कार्य आदेश के लिए" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21095,12 +21105,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21113,8 +21123,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21130,21 +21140,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "संदर्भ के लिए" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21163,11 +21169,15 @@ msgstr "'अन्य पर नियम लागू करें' शर् msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "नए {0} के प्रभावी होने के लिए, क्या आप वर्तमान {1} को साफ़ करना चाहेंगे?" @@ -21255,6 +21265,21 @@ msgstr "फ़ोरम पोस्ट" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21798,7 +21823,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21923,6 +21948,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21976,7 +22005,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22319,7 +22348,7 @@ msgstr "दूसरी जगह ले जाया जाता सामा msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22502,7 +22531,7 @@ msgstr "" msgid "Grant Commission" msgstr "अनुदान आयोग" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "राशि से अधिक" @@ -22642,7 +22671,7 @@ msgstr "बिक्री आदेश के अनुसार समूह" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22945,7 +22974,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "आगे बढ़ने के लिए ये विकल्प उपलब्ध हैं:" @@ -22973,7 +23002,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23009,7 +23038,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23592,15 +23621,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23638,7 +23667,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23739,7 +23768,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23957,14 +23986,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "आयात सफल रहा" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24441,7 +24470,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "आय" @@ -24527,7 +24556,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "गलत खाता" @@ -24536,7 +24565,7 @@ msgstr "गलत खाता" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "गलत बैच का सेवन किया गया" @@ -24544,11 +24573,11 @@ msgstr "गलत बैच का सेवन किया गया" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "गलत कंपनी" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "घटक की मात्रा गलत है" @@ -24557,7 +24586,7 @@ msgstr "घटक की मात्रा गलत है" msgid "Incorrect Date" msgstr "गलत तिथि" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24574,7 +24603,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "गलत सीरियल नंबर का उपयोग किया गया" @@ -24657,7 +24686,7 @@ msgstr "वेतन वृद्धि" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24854,7 +24883,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "अपर्याप्त क्षमता" @@ -24870,12 +24899,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25005,7 +25034,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25030,7 +25059,7 @@ msgstr "आंतरिक" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "कंपनी {0} के लिए आंतरिक ग्राहक पहले से मौजूद है" @@ -25056,7 +25085,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25077,7 +25106,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25119,8 +25148,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25139,7 +25168,7 @@ msgstr "" msgid "Invalid Amount" msgstr "अमान्य राशि" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25156,11 +25185,11 @@ msgstr "अमान्य बैंक खाता" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25180,13 +25209,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "अमान्य लागत केंद्र" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "अमान्य ग्राहक समूह" @@ -25207,11 +25236,11 @@ msgstr "" msgid "Invalid Discount" msgstr "अमान्य छूट" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "अमान्य छूट राशि" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "अमान्य दस्तावेज़" @@ -25241,7 +25270,7 @@ msgstr "" msgid "Invalid Item" msgstr "अमान्य वस्तु" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25250,7 +25279,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25289,7 +25318,7 @@ msgstr "" msgid "Invalid Priority" msgstr "अमान्य प्राथमिकता" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25306,7 +25335,7 @@ msgstr "अमान्य मात्रा" msgid "Invalid Quantity" msgstr "अमान्य मात्रा" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25318,8 +25347,8 @@ msgstr "अमान्य वापसी" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25327,7 +25356,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25344,7 +25373,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "अमान्य मान" @@ -25354,14 +25383,14 @@ msgid "Invalid Warehouse" msgstr "अमान्य गोदाम" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "अमान्य शर्त अभिव्यक्ति" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "अमान्य फ़ाइल URL" @@ -25393,7 +25422,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26356,10 +26385,6 @@ msgstr "जारी करने की तिथि" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26368,7 +26393,7 @@ msgstr "" msgid "It's all good!" msgstr "यह सब अच्छा है!" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26417,12 +26442,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26455,7 +26480,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26529,7 +26554,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26690,7 +26715,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26722,7 +26747,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26731,12 +26756,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26832,7 +26857,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27028,7 +27053,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27182,7 +27207,7 @@ msgstr "वस्तु निर्माता" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27213,7 +27238,7 @@ msgstr "वस्तु निर्माता" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27221,8 +27246,8 @@ msgstr "वस्तु निर्माता" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27279,7 +27304,7 @@ msgstr "वस्तु निर्माता" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27326,8 +27351,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27339,7 +27364,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27384,7 +27409,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27500,7 +27525,7 @@ msgstr "निर्माण के लिए वस्तु" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27619,7 +27644,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27655,7 +27680,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27669,7 +27694,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27684,7 +27709,7 @@ msgstr "निर्माण के लिए वस्तु" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27700,10 +27725,6 @@ msgstr "क्रय आदेश में {0} नाम की वस्तु msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27712,6 +27733,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27721,6 +27746,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27753,6 +27779,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27785,7 +27815,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27817,10 +27847,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27871,6 +27897,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27887,7 +27917,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "आवश्यक सामग्री" @@ -27927,7 +27957,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27937,7 +27967,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "पुनः पोस्ट की जाने वाली वस्तुएँ" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28007,7 +28037,7 @@ msgstr "नौकरी क्षमता" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28070,20 +28100,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "नौकरी रोक दी गई" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "नौकरी शुरू हो गई" @@ -28146,11 +28175,19 @@ msgstr "नौकरी कर्मचारी का नाम" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28496,7 +28533,7 @@ msgid "Last Fiscal Year" msgstr "पिछले वित्तीय वर्ष" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28617,7 +28654,7 @@ msgstr "" msgid "Lead" msgstr "नेतृत्व करना" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28711,7 +28748,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28859,7 +28896,7 @@ msgstr "" msgid "Length (cm)" msgstr "लंबाई (सेमी)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "राशि से कम" @@ -28888,7 +28925,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28918,7 +28955,7 @@ msgstr "लाइसेंस संख्या" msgid "License Plate" msgstr "लाइसेंस प्लेट" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "सीमा पार हो गई" @@ -29014,7 +29051,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29181,7 +29218,7 @@ msgstr "खोया हुआ कारण विवरण" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29267,7 +29304,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29505,7 +29542,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29602,7 +29639,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29749,7 +29786,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29832,8 +29869,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30055,7 +30092,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30233,10 +30270,6 @@ msgstr "" msgid "Matched" msgstr "मेल खाने वाले" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30263,7 +30296,7 @@ msgstr "माल की खपत" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30374,7 +30407,7 @@ msgstr "भौतिक अनुरोध" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "सामग्री अनुरोध तिथि" @@ -30424,7 +30457,7 @@ msgstr "सामग्री अनुरोध विवरण" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "सामग्री अनुरोध संख्या" @@ -30446,7 +30479,7 @@ msgstr "सामग्री अनुरोध प्रकार" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30460,7 +30493,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "सामग्री अनुरोध {0} रद्द या रोक दिया गया है" @@ -30580,13 +30613,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "सामग्री पहले ही {0} {1} के विरुद्ध प्राप्त हो चुकी है" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30755,7 +30788,7 @@ msgstr "" msgid "Megawatt" msgstr "मेगावाट" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30790,7 +30823,7 @@ msgstr "विलय की प्रगति" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31136,7 +31169,7 @@ msgstr "विविध व्यय" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31145,11 +31178,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31174,11 +31207,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31186,7 +31219,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31198,7 +31231,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31210,7 +31243,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "लापता गोदाम" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31218,12 +31251,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31472,8 +31505,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31481,7 +31514,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31502,7 +31535,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31511,10 +31544,10 @@ msgid "Music" msgstr "संगीत" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "यह एक पूर्ण संख्या होनी चाहिए" @@ -31599,11 +31632,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31647,7 +31676,7 @@ msgstr "आवश्यकता विश्लेषण" msgid "Negative Batch Report" msgstr "नकारात्मक बैच रिपोर्ट" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31657,12 +31686,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31740,8 +31769,8 @@ msgstr "शुद्ध राशि" msgid "Net Amount (Company Currency)" msgstr "शुद्ध राशि (कंपनी की मुद्रा में)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31791,7 +31820,7 @@ msgstr "शुद्ध प्रति घंटा दर" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "शुद्ध लाभ" @@ -31799,7 +31828,7 @@ msgstr "शुद्ध लाभ" msgid "Net Profit Ratio" msgstr "शुद्ध लाभ अनुपात" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31813,11 +31842,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32061,7 +32090,7 @@ msgstr "नया वित्तीय वर्ष - {0}" msgid "New Income" msgstr "नई आय" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32134,6 +32163,7 @@ msgid "New Task" msgstr "नया कार्य" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "नया संस्करण" @@ -32146,8 +32176,8 @@ msgstr "नए गोदाम का नाम" msgid "New Workplace" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32156,6 +32186,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32168,7 +32202,7 @@ msgstr "" msgid "New task" msgstr "नया कार्य" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "नए {0} मूल्य निर्धारण नियम बनाए गए हैं" @@ -32232,16 +32266,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "ग्राहक के लिए कोई डिलीवरी नोट नहीं चुना गया है {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32249,15 +32282,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32300,11 +32333,6 @@ msgstr "अनुमति नहीं है" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "कोई चयन नहीं" @@ -32407,6 +32435,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32452,7 +32484,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32489,10 +32521,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "डिलीवरी की संख्या" @@ -32589,7 +32617,7 @@ msgstr "कोई बकाया बिल नहीं मिला" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32627,15 +32655,20 @@ msgstr "कोई सुलह संबंधी कार्रवाई न msgid "No record found" msgstr "कोई रिकॉर्ड नहीं मिला" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32664,7 +32697,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32701,7 +32734,7 @@ msgstr "कोई मान नहीं" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32709,11 +32742,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32765,7 +32793,7 @@ msgstr "गैर-शून्य" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32776,8 +32804,8 @@ msgid "Normal Balances" msgstr "सामान्य शेष राशि" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32791,8 +32819,8 @@ msgstr "" msgid "Not Applicable" msgstr "लागू नहीं" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "उपलब्ध नहीं है" @@ -32855,10 +32883,6 @@ msgstr "शुरू नहीं" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32875,10 +32899,6 @@ msgstr "अधिकृत नहीं है क्योंकि {0} सी msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32891,7 +32911,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "क्रय आदेश बनाने की अनुमति नहीं है" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33136,7 +33156,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33312,11 +33332,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33351,7 +33371,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33416,7 +33436,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33482,7 +33502,7 @@ msgstr "खुला कार्यक्रम" msgid "Open Events" msgstr "खुले आयोजन" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33635,7 +33655,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "प्रारंभिक शेष राशि का विवरण" @@ -33665,7 +33685,7 @@ msgstr "" msgid "Opening Entry" msgstr "प्रवेश द्वार" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33693,7 +33713,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33702,7 +33722,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33732,20 +33752,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33754,7 +33774,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33797,7 +33817,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "संचालन लागत" @@ -33888,7 +33908,7 @@ msgstr "" msgid "Operation Time" msgstr "संचालन समय" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33912,7 +33932,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "ऑपरेशन {0} कार्य आदेश {1} से संबंधित नहीं है" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34098,6 +34118,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34114,10 +34138,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "ऑर्डर राशि" @@ -34403,7 +34423,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34457,7 +34477,7 @@ msgstr "बकाया (कंपनी की मुद्रा)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34538,11 +34558,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34559,12 +34579,12 @@ msgstr "" msgid "Over Withheld" msgstr "रोके गए" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34615,10 +34635,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "बकाया और छूट प्राप्त" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34684,6 +34700,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34731,7 +34752,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34829,7 +34850,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34889,7 +34910,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34910,7 +34931,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34933,7 +34954,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -34953,7 +34974,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34965,19 +34986,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35007,11 +35028,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35030,7 +35051,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35655,7 +35676,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35782,7 +35803,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35868,7 +35889,7 @@ msgstr "पार्टी के लिए विशेष वस्तु" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35889,7 +35910,7 @@ msgstr "पार्टी का प्रकार" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "पार्टी प्रकार और पार्टी केवल प्राप्य/देय खाते के लिए ही निर्धारित किए जा सकते हैं

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "{0} खाते के लिए पार्टी का प्रकार और पार्टी अनिवार्य है" @@ -35925,7 +35946,7 @@ msgid "Party is required" msgstr "पार्टी आवश्यक है" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36435,7 +36456,7 @@ msgstr "भुगतान संदर्भ" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36510,7 +36531,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36532,7 +36553,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36632,7 +36653,7 @@ msgid "Payment Type" msgstr "भुगतान प्रकार" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36839,11 +36860,11 @@ msgstr "आज के लिए लंबित गतिविधियाँ" msgid "Pending processing" msgstr "प्रक्रिया लंबित है" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37359,12 +37380,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37386,7 +37407,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37537,15 +37558,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "कृपया एक कंपनी का चयन करें" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37553,7 +37565,6 @@ msgstr "कृपया एक ग्राहक का चयन करें" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37561,19 +37572,19 @@ msgstr "" msgid "Please Set Priority" msgstr "कृपया प्राथमिकता निर्धारित करें" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37589,7 +37600,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37597,35 +37608,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37667,7 +37675,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37680,11 +37688,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37700,15 +37708,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37716,11 +37724,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37732,7 +37740,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37744,11 +37752,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37773,7 +37781,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37785,11 +37793,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37805,7 +37813,7 @@ msgstr "कृपया परिवर्तन राशि के लिए msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "कृपया बैच नंबर दर्ज करें" @@ -37821,7 +37829,7 @@ msgstr "कृपया डिलीवरी की तारीख दर् msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "कृपया व्यय खाता दर्ज करें" @@ -37830,7 +37838,7 @@ msgstr "कृपया व्यय खाता दर्ज करें" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37866,7 +37874,7 @@ msgstr "कृपया संदर्भ तिथि दर्ज करे msgid "Please enter Root Type for account- {0}" msgstr "कृपया खाते के लिए रूट प्रकार दर्ज करें- {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "कृपया सीरियल नंबर दर्ज करें" @@ -37996,7 +38004,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38032,11 +38040,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38065,12 +38069,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "कृपया छूट लागू करें विकल्प चुनें" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38086,9 +38090,9 @@ msgstr "कृपया बैंक खाता चुनें" msgid "Please select Category first" msgstr "कृपया पहले श्रेणी का चयन करें" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "कृपया पहले शुल्क प्रकार का चयन करें" @@ -38098,7 +38102,7 @@ msgstr "कृपया कंपनी का चयन करें" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38121,7 +38125,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38130,6 +38134,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38154,11 +38162,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "कृपया मूल्य सूची का चयन करें" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38187,6 +38195,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "कृपया एक कंपनी का चयन करें" @@ -38194,11 +38203,12 @@ msgstr "कृपया एक कंपनी का चयन करें" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "कृपया एक ग्राहक का चयन करें" @@ -38207,7 +38217,7 @@ msgstr "कृपया एक ग्राहक का चयन करें" msgid "Please select a Delivery Note" msgstr "कृपया डिलीवरी नोट चुनें" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38219,7 +38229,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "कृपया एक गोदाम का चयन करें" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38235,6 +38245,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38268,22 +38279,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "कृपया {0} quotation_to {1} के लिए एक मान चुनें" @@ -38292,7 +38307,7 @@ msgstr "कृपया {0} quotation_to {1} के लिए एक मान msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38300,10 +38315,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38312,18 +38335,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "कृपया सही खाता चुनें" @@ -38361,12 +38376,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38375,7 +38390,7 @@ msgid "Please select the Company" msgstr "कृपया कंपनी का चयन करें" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38399,20 +38414,16 @@ msgstr "" msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "कृपया साप्ताहिक अवकाश का दिन चुनें" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "कृपया पहले {0} का चयन करें" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38441,7 +38452,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38471,13 +38482,11 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "कृपया ग्राहक '%s ' के लिए वित्तीय कोड सेट करें" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "कृपया ग्राहक '{0} ' के लिए वित्तीय कोड सेट करें" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38485,7 +38494,7 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38502,8 +38511,7 @@ msgid "Please set Root Type" msgstr "कृपया रूट प्रकार सेट करें" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" +msgid "Please set Tax ID for the customer '{0}'" msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 @@ -38523,15 +38531,15 @@ msgid "Please set a Company" msgstr "कृपया एक कंपनी निर्धारित करें" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38548,9 +38556,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "कृपया कंपनी '%s ' पर एक पता सेट करें" +msgid "Please set an Address on the Company '{0}'" +msgstr "कृपया कंपनी '{0} ' पर एक पता सेट करें" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38568,24 +38575,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38617,11 +38621,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38629,7 +38633,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "कृपया ग्राहक का पता सेट करें" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38684,7 +38688,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38692,7 +38696,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "कृपया कंपनी का नाम बताएं" @@ -38702,8 +38706,8 @@ msgstr "कृपया कंपनी का नाम बताएं" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38711,11 +38715,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38723,6 +38727,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38886,7 +38898,7 @@ msgstr "प्रकाशित किया गया" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38911,7 +38923,7 @@ msgstr "प्रकाशित किया गया" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38954,7 +38966,7 @@ msgstr "पोस्ट करने की तारीख" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -38963,7 +38975,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39156,6 +39168,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "अध्यक्ष" @@ -39245,7 +39261,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39387,7 +39403,7 @@ msgstr "मूल्य सूची देश" msgid "Price List Currency" msgstr "मूल्य सूची मुद्रा" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "मूल्य सूची में मुद्रा का चयन नहीं किया गया है" @@ -39508,7 +39524,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "प्रति इकाई मूल्य ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39619,7 +39635,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "मूल्य निर्धारण नियम {0} अपडेट किया गया है" @@ -39827,7 +39843,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40009,7 +40025,7 @@ msgstr "सदस्यता प्रक्रिया" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40135,7 +40151,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40160,7 +40176,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40363,7 +40379,7 @@ msgstr "उत्पादों" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "इस वर्ष का लाभ" @@ -40392,6 +40408,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40400,8 +40420,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "वर्ष का लाभ" @@ -40474,7 +40494,7 @@ msgstr "परियोजना की स्थिति" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40554,7 +40574,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40605,7 +40625,7 @@ msgstr "अनुमानित मात्रा" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40751,7 +40771,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "संभावित ग्राहक संपर्क में आए लेकिन ग्राहक नहीं बने" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "संरक्षित दस्तावेज़ प्रकार" @@ -40784,9 +40804,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41014,8 +41034,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41056,7 +41076,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41080,11 +41100,11 @@ msgstr "" msgid "Purchase Order" msgstr "क्रय आदेश" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "क्रय आदेश राशि" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "क्रय आदेश राशि (कंपनी की मुद्रा में)" @@ -41099,7 +41119,7 @@ msgstr "क्रय आदेश राशि (कंपनी की मुद msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "क्रय आदेश तिथि" @@ -41148,8 +41168,8 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "वस्तु {} के लिए क्रय आदेश आवश्यक है" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41208,7 +41228,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41298,7 +41318,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41318,7 +41338,7 @@ msgid "Purchase Receipt Trends " msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41546,7 +41566,7 @@ msgstr "प्रश्न4" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41565,7 +41585,7 @@ msgstr "प्रश्न4" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41630,7 +41650,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41667,7 +41687,7 @@ msgstr "प्रति इकाई मात्रा" msgid "Qty To Manufacture" msgstr "उत्पादन के लिए मात्रा" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41762,7 +41782,7 @@ msgstr "उपभोग की जाने वाली मात्रा" msgid "Qty to Bill" msgstr "बिल करने की मात्रा" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "निर्माण की मात्रा" @@ -41948,7 +41968,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42025,7 +42045,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42108,7 +42128,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42152,12 +42172,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42308,7 +42328,7 @@ msgstr "मात्रा आवश्यक है" msgid "Quantity must be greater than zero" msgstr "मात्रा शून्य से अधिक होनी चाहिए" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "मात्रा शून्य से अधिक होनी चाहिए." @@ -42336,11 +42356,11 @@ msgstr "मात्रा 0 से अधिक होनी चाहिए" msgid "Quantity to Manufacture" msgstr "उत्पादन के लिए आवश्यक मात्रा" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42348,6 +42368,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "स्कैन करने की मात्रा" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42373,7 +42397,7 @@ msgstr "तिमाही {0} {1}" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42613,7 +42637,7 @@ msgstr "(ईमेल) द्वारा जुटाया गया" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42797,7 +42821,7 @@ msgid "Rate at which this tax is applied" msgstr "जिस दर पर यह कर लागू होता है" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43116,7 +43140,7 @@ msgstr "रोक लगाने का कारण" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "रोके रखने का कारण" @@ -43358,8 +43382,8 @@ msgstr "" msgid "Receiving" msgstr "प्राप्त" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "हालिया आदेश" @@ -43535,6 +43559,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "दो बैंक खातों के बीच धन हस्तांतरण दर्ज करें" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43585,7 +43613,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43665,7 +43693,7 @@ msgstr "संदर्भ #" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "जल्दी भुगतान पर छूट के लिए संदर्भ तिथि" @@ -43957,7 +43985,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44064,7 +44092,7 @@ msgstr "टिप्पणी" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44103,7 +44131,7 @@ msgstr "शून्य की गिनती हटाएँ" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44254,7 +44282,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44337,7 +44365,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44383,6 +44411,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44467,7 +44504,7 @@ msgstr "आवश्यक तिथि" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "आवश्यक तिथि" @@ -44583,11 +44620,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "अनुरोध करने वाली साइट" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44766,6 +44803,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "आरक्षित गोदाम" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "कच्चे माल के लिए आरक्षित" @@ -44804,7 +44845,7 @@ msgid "Reserved Qty" msgstr "आरक्षित मात्रा" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." msgstr "" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material @@ -44849,7 +44890,7 @@ msgstr "आरक्षित मात्रा" msgid "Reserved Quantity for Production" msgstr "उत्पादन के लिए आरक्षित मात्रा" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44865,13 +44906,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45365,6 +45406,10 @@ msgstr "" msgid "Returns" msgstr "रिटर्न" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45789,11 +45834,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45877,23 +45922,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45969,13 +46014,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -45987,7 +46035,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -45995,12 +46043,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46012,7 +46060,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46020,6 +46068,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46032,11 +46084,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46059,8 +46118,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46072,7 +46131,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46084,6 +46143,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46112,16 +46175,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46137,12 +46200,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46153,15 +46220,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46173,24 +46240,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46206,6 +46297,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46225,7 +46320,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46248,7 +46343,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46256,17 +46351,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46286,11 +46381,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46300,7 +46395,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46309,6 +46404,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46321,7 +46420,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46345,7 +46444,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46414,7 +46513,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46422,19 +46521,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46446,11 +46553,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46458,6 +46569,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46474,6 +46598,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46514,71 +46646,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46591,10 +46662,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46615,19 +46682,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46643,11 +46710,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46675,24 +46742,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46713,6 +46780,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46734,7 +46804,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46765,7 +46835,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46789,7 +46859,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46797,12 +46867,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46821,11 +46891,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46833,7 +46903,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46845,7 +46915,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46870,10 +46940,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46926,15 +46996,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -46973,7 +47047,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47034,10 +47108,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47105,7 +47175,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47404,7 +47474,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47621,8 +47691,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "बिक्री आदेश {0} उत्पादन के लिए उपलब्ध नहीं है" @@ -48029,7 +48099,7 @@ msgstr "वही वस्तु" msgid "Same day" msgstr "एक ही दिन" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48061,7 +48131,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "नमूने का आकार" @@ -48171,7 +48241,7 @@ msgstr "स्कैन की गई मात्रा" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48182,7 +48252,7 @@ msgstr "" msgid "Scheduled Date" msgstr "निर्धारित तिथि" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48468,7 +48538,7 @@ msgstr "खाता चुनें" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "वैकल्पिक वस्तु चुनें" @@ -48489,7 +48559,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "बैच संख्या चुनें" @@ -48554,7 +48624,7 @@ msgstr "आयाम चुनें" msgid "Select Dispatch Address " msgstr "प्रेषण पता चुनें " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "चयनित कर्मचारी" @@ -48579,7 +48649,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48609,7 +48679,7 @@ msgstr "नौकरीपेशा व्यक्ति का पता च msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48623,13 +48693,13 @@ msgid "Select Quantity" msgstr "मात्रा चुनें" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "सीरियल नंबर चुनें" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "सीरियल और बैच का चयन करें" @@ -48720,6 +48790,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "खाता मुद्रा में प्रिंट करने के लिए खाता चुनें" @@ -48861,10 +48932,14 @@ msgstr "" msgid "Selected date is" msgstr "चुनी गई तिथि है" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49012,7 +49087,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "एसएमएस भेजें" @@ -49096,7 +49171,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "क्रम संख्या / बैच संख्या" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "क्रम संख्या / बैच संख्या" @@ -49153,10 +49228,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49198,6 +49274,10 @@ msgstr "क्रम संख्या / बैच" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "क्रम संख्या" @@ -49215,7 +49295,7 @@ msgstr "" msgid "Serial No Range" msgstr "क्रम संख्या श्रेणी" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "क्रम संख्या आरक्षित" @@ -49260,7 +49340,7 @@ msgid "Serial No and Batch" msgstr "सीरियल नंबर और बैच" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49272,7 +49352,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "क्रम संख्या अनिवार्य है" @@ -49292,21 +49372,18 @@ msgstr "सीरियल नंबर {0} पहले ही स्कैन msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "क्रम संख्या {0} वस्तु {1} से संबंधित नहीं है" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "सीरियल नंबर {0} मौजूद नहीं है" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "सीरियल नंबर {0} मौजूद नहीं है" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49321,25 +49398,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "सीरियल नंबर {0} नहीं मिला" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49359,7 +49437,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "सीरियल नंबर सफलतापूर्वक बन गए हैं" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49460,6 +49538,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49508,7 +49590,7 @@ msgstr "सीरियल और बैच आरक्षण" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "सीरियल नंबर {0} एक से अधिक बार दर्ज किया गया है" @@ -49516,122 +49598,12 @@ msgstr "सीरियल नंबर {0} एक से अधिक बार msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "शृंखला" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "यह श्रृंखला अनिवार्य है" @@ -49713,7 +49685,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49822,12 +49794,12 @@ msgid "Service Stop Date" msgstr "सेवा बंद होने की तिथि" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49851,7 +49823,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49866,7 +49838,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49971,7 +49943,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -49989,7 +49961,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50015,7 +49987,7 @@ msgstr "बंद के रूप में सेट करें" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "खोया हुआ के रूप में सेट करें" @@ -50113,15 +50085,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "कंपनी {1} में सेट {0}" @@ -50189,7 +50161,7 @@ msgid "Setting up company" msgstr "कंपनी की स्थापना" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "सेटिंग {0} आवश्यक है" @@ -50617,6 +50589,7 @@ msgid "Show Completed" msgstr "शो पूरा हुआ" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50819,7 +50792,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50922,11 +50895,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -50987,7 +50960,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51043,7 +51016,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51111,7 +51084,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51148,8 +51121,8 @@ msgstr "स्रोत प्रकार" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51279,7 +51252,7 @@ msgstr "विभाजित मुद्दा" msgid "Split Qty" msgstr "विभाजित मात्रा" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51292,7 +51265,12 @@ msgstr "{} खातों में विभाजित" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51345,7 +51323,7 @@ msgstr "मंच नाम" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51410,10 +51388,26 @@ msgstr "" msgid "Standing Name" msgstr "स्थायी नाम" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "शुरू करें / पुनः जारी रखें" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51443,7 +51437,7 @@ msgstr "" msgid "Start Timer" msgstr "टाइमर शुरू करें" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51472,10 +51466,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51556,7 +51554,7 @@ msgstr "स्थिति चित्रण" msgid "Status and Reference" msgstr "स्थिति और संदर्भ" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "स्थिति रद्द या पूर्ण होनी चाहिए" @@ -51684,7 +51682,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51766,16 +51764,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51942,7 +51944,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52025,7 +52027,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52050,15 +52052,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52228,7 +52230,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52387,8 +52389,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52407,7 +52409,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52422,7 +52424,7 @@ msgstr "पत्थर" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52430,7 +52432,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "स्टोर" @@ -52644,7 +52646,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "उप-अनुबंध वितरण" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52716,7 +52718,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52754,7 +52756,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "उप-अनुबंध आदेश आपूर्ति की गई वस्तु" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52828,7 +52830,7 @@ msgstr "उप-अनुबंध वापसी" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52847,7 +52849,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52876,7 +52878,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53018,7 +53020,7 @@ msgstr "" msgid "Successful" msgstr "सफल" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "सफलतापूर्वक सुलह हो गई" @@ -53196,7 +53198,7 @@ msgstr "आपूर्ति की गई मात्रा" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53378,7 +53380,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53526,7 +53528,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53711,10 +53713,6 @@ msgstr "सहायता दल" msgid "Support Tickets" msgstr "सहायता टिकट" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "संभावित छूट राशि" @@ -53800,7 +53798,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53861,7 +53859,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -53971,11 +53969,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54450,7 +54448,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "कर योग्य राशि" @@ -54662,7 +54660,7 @@ msgstr "टेलीविजन" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -54969,12 +54967,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -54982,10 +54976,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "'{0}' अभियान पहले से ही {1} '{2} ' के लिए मौजूद है" @@ -55010,6 +55012,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55027,8 +55033,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55039,11 +55048,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55091,15 +55104,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55148,6 +55161,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55169,8 +55186,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55198,7 +55215,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55210,7 +55227,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55246,7 +55263,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55284,11 +55301,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "ऑपरेशन {0} को एक से अधिक बार नहीं जोड़ा जा सकता है" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55337,6 +55354,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55346,7 +55367,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55363,7 +55384,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55380,7 +55401,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55399,11 +55420,11 @@ msgstr "शेयर पहले से मौजूद हैं" msgid "The shares don't exist with the {0}" msgstr "ये शेयर {0} के साथ मौजूद नहीं हैं" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55425,16 +55446,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55473,7 +55494,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55497,7 +55518,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55505,7 +55526,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} सफलतापूर्वक बनाया गया" @@ -55513,6 +55534,10 @@ msgstr "{0} {1} सफलतापूर्वक बनाया गया" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55521,7 +55546,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55533,7 +55558,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55550,6 +55575,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55566,10 +55595,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55598,20 +55623,20 @@ msgstr "{0}: {1} के विरुद्ध कोई बैच नहीं msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55662,15 +55687,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55692,7 +55721,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55710,7 +55739,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "" @@ -55852,7 +55881,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55916,7 +55945,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55943,10 +55972,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56004,7 +56033,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56133,6 +56162,12 @@ msgstr "समय (मिनटों में)" msgid "Timeline" msgstr "समय" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56419,8 +56454,8 @@ msgid "To Time" msgstr "समय पर" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "समय तिथि से पहले का नहीं हो सकता" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56450,15 +56485,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56475,7 +56510,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56487,7 +56522,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56500,8 +56535,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56521,7 +56556,7 @@ msgstr "इसे रद्द करने के लिए, कंपनी {1 msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56538,10 +56573,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56620,8 +56657,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "कुल (कंपनी की मुद्रा)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "कुल (क्रेडिट)" @@ -56663,6 +56700,22 @@ msgstr "कुल अतिरिक्त लागत" msgid "Total Advance" msgstr "कुल अग्रिम" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56710,11 +56763,11 @@ msgstr "कुल शेष राशि" msgid "Total Amount in Words" msgstr "शब्दों में कुल राशि" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "कुल संपत्ति" @@ -56896,7 +56949,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "कुल मांग (पूर्व आंकड़े)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56905,11 +56958,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "कुल अनुमानित दूरी" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "कुल व्यय" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "इस वर्ष का कुल व्यय" @@ -56947,11 +57000,11 @@ msgstr "कुल प्रतीक्षा समय" msgid "Total Holidays" msgstr "कुल छुट्टियाँ" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "कुल आय" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "इस वर्ष की कुल आय" @@ -56994,7 +57047,7 @@ msgstr "कुल भूमि लागत (कंपनी की मुद् msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57309,7 +57362,7 @@ msgstr "कुल कर और शुल्क" msgid "Total Taxes and Charges (Company Currency)" msgstr "कुल कर और शुल्क (कंपनी की मुद्रा में)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "कुल समय (मिनटों में)" @@ -57318,7 +57371,11 @@ msgstr "कुल समय (मिनटों में)" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "कुल बकाया: {0}" @@ -57397,7 +57454,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57415,7 +57472,7 @@ msgstr "कुल घंटे: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57433,8 +57490,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "कुल {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57523,27 +57580,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "लेन-देन" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "कारोबारी मुद्रा" @@ -57596,11 +57637,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -57990,6 +58031,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58174,7 +58219,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58196,7 +58241,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58226,7 +58271,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58290,7 +58335,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58364,7 +58409,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58377,10 +58422,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58405,7 +58446,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58417,8 +58458,10 @@ msgstr "बिना बिल वाले ऑर्डर" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58468,7 +58511,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58491,7 +58534,7 @@ msgstr "" msgid "Unit Price" msgstr "यूनिट मूल्य" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58694,7 +58737,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "असुरक्षित ऋण" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "मिलान किए गए भुगतान अनुरोध को रद्द करें" @@ -58707,7 +58750,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58851,7 +58894,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58915,7 +58958,7 @@ msgstr "मौजूदा मूल्य सूची दर को अपड msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59143,7 +59186,7 @@ msgstr "सुझाव का उपयोग करें" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59232,6 +59275,10 @@ msgstr "उपयोगकर्ता समाधान समय" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "उपयोगकर्ता {0} मौजूद नहीं है" @@ -59244,6 +59291,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59252,10 +59303,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59548,15 +59595,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59564,7 +59611,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59574,7 +59621,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59587,13 +59634,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59644,12 +59691,12 @@ msgstr "मूल्य प्रस्ताव" msgid "Value Type" msgstr "मान प्रकार" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "मूल्य के अनुसार" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59658,19 +59705,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "बेची गई संपत्ति का मूल्य" @@ -60146,7 +60193,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60174,7 +60221,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60186,7 +60233,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60218,7 +60265,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60425,7 +60472,7 @@ msgstr "गोदाम अनिवार्य है" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "खाते {0} के लिए गोदाम नहीं मिला" @@ -60443,16 +60490,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "गोदाम {0} कंपनी {1} से संबंधित नहीं है" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "गोदाम {0} मौजूद नहीं है" @@ -60573,7 +60620,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60593,7 +60640,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60747,10 +60794,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "साल का सप्ताह" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60896,7 +60939,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61072,17 +61115,17 @@ msgstr "काम जारी है" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61121,7 +61164,7 @@ msgstr "कार्य आदेश में प्रयुक्त सा msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61162,20 +61205,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "कार्य आदेश {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "कार्य आदेश अनिवार्य है" @@ -61196,7 +61239,7 @@ msgid "Work Order {0} must be submitted" msgstr "कार्य आदेश {0} जमा करना होगा" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "कार्य आदेश" @@ -61221,7 +61264,7 @@ msgstr "काम जारी है" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61274,7 +61317,7 @@ msgstr "कार्य के घंटे" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61506,14 +61549,6 @@ msgstr "वर्ष नाम" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "वर्ष को 2 अंकों में लिखें" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61528,7 +61563,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61548,7 +61583,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61559,19 +61594,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61593,7 +61624,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61612,14 +61643,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61628,16 +61651,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61649,15 +61672,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61665,7 +61696,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61673,7 +61704,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61688,6 +61719,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61698,7 +61733,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61725,11 +61760,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61746,7 +61781,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61761,19 +61796,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61825,6 +61860,10 @@ msgstr "" msgid "Zero Balance" msgstr "शून्य शेष" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "शून्य रेटिंग" @@ -61855,7 +61894,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "बाद" @@ -61875,7 +61914,7 @@ msgstr "शीर्षक के रूप में" msgid "as a percentage of finished item quantity" msgstr "तैयार वस्तु की मात्रा के प्रतिशत के रूप में" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61891,10 +61930,6 @@ msgstr "पर आधारित" msgid "by {}" msgstr "द्वारा {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "100 से अधिक नहीं हो सकता" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61949,8 +61984,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62030,14 +62065,10 @@ msgstr "5 में से" msgid "paid to" msgstr "को भुगतान किया" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62051,7 +62082,7 @@ msgstr "" msgid "per hour" msgstr "घंटे से" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "नीचे दिए गए विकल्पों में से किसी एक को पूरा करें:" @@ -62127,8 +62158,8 @@ msgstr "" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "लक्ष्य_रेफ़_फ़ील्ड" @@ -62191,10 +62222,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' अक्षम है" @@ -62207,7 +62234,7 @@ msgstr "{0} '{1}' वित्तीय वर्ष {2} में नहीं msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62227,7 +62254,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62235,11 +62262,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} संख्या {1} पहले से ही {2} {3} में उपयोग की जा चुकी है" @@ -62321,10 +62343,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62340,7 +62370,7 @@ msgstr "{0} शून्य नहीं हो सकता" msgid "{0} created" msgstr "{0} निर्मित" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62382,7 +62412,7 @@ msgstr "{0} के लिए {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62390,6 +62420,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} घंटे" @@ -62398,7 +62432,11 @@ msgstr "{0} घंटे" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62412,7 +62450,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} पहले से ही {1} के लिए चल रहा है" @@ -62420,7 +62458,7 @@ msgstr "{0} पहले से ही {1} के लिए चल रहा ह msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62433,11 +62471,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "खाता {1} के लिए {0} अनिवार्य है" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62445,7 +62483,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} कंपनी का बैंक खाता नहीं है" @@ -62461,7 +62499,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62477,17 +62515,17 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "{0} {1} में सक्षम नहीं है" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} को {1} तक रोक कर रखा गया है" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62537,7 +62575,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62550,7 +62588,7 @@ msgstr "{0} से {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62566,16 +62604,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62583,7 +62621,7 @@ msgstr "" msgid "{0} until {1}" msgstr "{0} से लेकर {1} तक" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62591,7 +62629,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62625,7 +62663,7 @@ msgstr "{0} {1} निर्मित" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} मौजूद नहीं है" @@ -62659,12 +62697,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} रद्द या बंद कर दिया गया है" @@ -62696,6 +62743,10 @@ msgstr "{0} {1} का पूरा बिल बन चुका है" msgid "{0} {1} is not active" msgstr "{0} {1} सक्रिय नहीं है" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} {2} {3} से संबद्ध नहीं है" @@ -62801,27 +62852,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: नहीं मिला" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: संरक्षित दस्तावेज़ प्रकार" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62837,7 +62884,7 @@ msgstr "{0}: {1} मौजूद नहीं है" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} {2} से कम होना चाहिए" @@ -62849,7 +62896,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62861,32 +62908,7 @@ msgstr "" msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} पहले से ही दूसरे {} से जुड़ा हुआ है" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} पहले से ही {} {} से जुड़ा हुआ है" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/hr.po b/erpnext/locale/hr.po index 581c9d294ae..71ebf3f6525 100644 --- a/erpnext/locale/hr.po +++ b/erpnext/locale/hr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-24 19:23\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -18,20 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: hr_HR\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "\n" -"\t\t\tŠarža {0} artikla {1} ima negativne zalihe u skladištu {2}{3}.\n" -"\t\t\tDodaj količinu zaliha od {4} da biste nastavili s ovim unosom.\n" -"\t\t\tAko nije moguće izvršiti unos prilagođavanja, omogućite 'Dozvoli Negativne Zalihe za Šaržu' za Šaržu {0} ili u Postavkama Zaliha da biste nastavili.\n" -"\t\t\tMeđutim, omogućavanje ove postavke može dovesti do negativnih zaliha u ssustavu.\n" -"\t\t\tStoga, molimo vas da osigurate da se razina zaliha što prije prilagode kako bi se održala ispravna stopa vrednovanja." - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -116,11 +102,11 @@ msgstr "Ne može se poništiti izbor opcije \"Fiksna Imovina\", jer postoji zapi msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SB-01::10\" za \"SB-01\" do \"SB-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Na Zalihama" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Obavezni Artikli" @@ -282,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'Dozvoli višestruke Prodajne Naloge naspram Nabavnog Naloga Klijenta'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Na Temelju' i 'Grupiraj Po' ne mogu biti isti" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -308,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Od datuma' mora biti nakon 'Do datuma'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Ima Serijski Broj' ne može biti 'Da' za artikal koji nije na zalihama" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "'Kontrola Obavezna prije Dostave' je onemogućena za artikal {0}, nema potrebe za kreiranjem Kontrole Kvaliteta" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "'Kontrola Obavezna prije Nabave' je onemogućena za artikal {0}, nema potrebe za izradom Kontrole Kvaliteta" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Početno'" @@ -331,13 +317,13 @@ msgstr "'Početno'" msgid "'To Date' is required" msgstr "'Do Datuma' je obavezno" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'Do Paketa Broj' ne može biti manje od 'Od Paketa Broj.'" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Ažuriraj Zalihe' se ne može provjeriti jer se artikli ne isporučuju putem {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -622,7 +608,7 @@ msgstr "Preko 90" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "Nije moguće kreirati imovinu.

                    Pokušavate kreirati {0} imovinu od {2} {3}.
                    Međutim, nabavljeno je samo {1} artikala i {4} imovina već postoji za {5}." @@ -831,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Potreban dokument o plaćanju za redak(e): {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Ne možese fakturisati više od predviđenog iznosa za sljedeće artikle:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Slijedeći {0}ne pripadaju tvrtki {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1054,9 +1040,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Grupa Klijenta postoji sa istim imenom, molimo promijenite naziv klijenta ili preimenujte Grupu Klijenta" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1066,9 +1052,9 @@ msgstr "Lista Praznika se može dodati kako bi se isključilo brojanje praznika msgid "A Lead requires either a person's name or an organization's name" msgstr "Potencijalni Klijent zahtijeva ili ime osobe ili ime tvrtke" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Otpremnica se može kreirati samo za nacrt Dostavnice." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1084,7 +1070,7 @@ msgstr "Cjenik je skup cijena artikala za Prodaju, Nabavu ili oboje" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Proizvod ili Usluga koja se kupuje, nabavlja ili drži na zalihama." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Posao usaglašavanja {0} radi za iste filtere. Ne mogu se sada usglasiti" @@ -1117,7 +1103,7 @@ msgstr "Vozač mora biti naveden da bi se podnijelo." msgid "A logical Warehouse against which stock entries are made." msgstr "Logičko skladište naspram kojeg se vrše knjiženja zaliha." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "Došlo je do sukoba imenovanja serije prilikom stvaranja serijskih brojeva. Molimo promijenite imenovanje serije za stavku {0}." @@ -1293,7 +1279,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Prihvaćena Količina u Jedinici Zaliha" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Prihvaćena količina" @@ -1324,12 +1310,16 @@ msgstr "Pristupni Ključ" msgid "Access Key is required for Service Provider: {0}" msgstr "Pristupni ključ je potreban za davaoca usluga: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "Prema CEFACT/ICG/2010/IC013 ili CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "Prema Sastavnici {0}, artikal '{1}' nedostaje u unosu zaliha." @@ -1582,7 +1572,7 @@ msgstr "Račun je obavezan za unos uplate" msgid "Account is required" msgstr "Račun je obavezan" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Račun nije pronađen" @@ -1712,11 +1702,11 @@ msgstr "Račun: {0} je Kapitalni Rad u toku i ne može se ažurirati Nalo msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Račun: {0} se može ažurirati samo putem Transakcija Zaliha" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Račun: {0} nije dozvoljen pod Unos plaćanja" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Račun: {0} sa valutom: {1} se ne može odabrati" @@ -1995,8 +1985,8 @@ msgstr "Filter Knjigovodstvenih Dimenzija" msgid "Accounting Entries" msgstr "Knjigovodstveni Unosi" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Knjigovodstveni Unos za Imovinu" @@ -2021,8 +2011,8 @@ msgstr "Knjigovodstveni Unos za Servis" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2070,7 +2060,11 @@ msgstr "Knjigovodstveno Uvođenje" msgid "Accounting Period" msgstr "Knjigovodstveni Period" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Knjigovodstveni Period se preklapa sa {0}" @@ -2268,8 +2262,8 @@ msgstr "Račun Akumulirane Amortizacije" msgid "Accumulated Depreciation Amount" msgstr "Iznos Akumulirane Amortizacije" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Akumulirana Amortizacija na dan" @@ -2497,7 +2491,7 @@ msgstr "Stvarni Saldo Količinski" msgid "Actual Batch Quantity" msgstr "Stvarna Šaržna Količina" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Stvarni Trošak" @@ -2507,7 +2501,7 @@ msgstr "Stvarni Trošak" msgid "Actual Date" msgstr "Stvarni Datum" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2657,8 +2651,8 @@ msgstr "Stvarno vrijeme u satima (preko rasporeda vremena)" msgid "Actual qty in stock" msgstr "Stvarna Količina na Zalihama" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Stvarni tip PDV-a ne može se uključiti u cijenu Artikla u redu {0}" @@ -2823,10 +2817,6 @@ msgstr "Dodaj Serijski / Šaržni Broj" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Dodaj Serijski / Šaržni Broj (Odbijena Količina)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "Dodaj Prefiks Serije Imenovanja" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Dodaj zalihe" @@ -2925,13 +2915,13 @@ msgstr "Dodano Od" msgid "Added On" msgstr "Dodato" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Dodata uloga dobavljača korisniku {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Dodata {1} uloga korisniku {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3073,7 +3063,7 @@ msgstr "Iznos dodatnog popusta" msgid "Additional Discount Amount (Company Currency)" msgstr "Dodatni iznos popusta (Valuta Tvrtke)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "Dodatni Iznos Popusta ({discount_amount}) ne može premašiti ukupan iznos prije takvog popusta ({total_before_discount})" @@ -3192,16 +3182,8 @@ msgid "Additional Transferred Qty" msgstr "Dodatna Prenesena Količina" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "Dodatna Prenesena Količina {0}\n" -"\t\t\t\t\tne može biti veća od {1}.\n" -"\t\t\t\t\tDa biste ovo ispravili, povećajte procentualnu vrijednost\n" -"\t\t\t\t\tpolja 'Prenesi Dodatne Sirovine u Nedovršenu Proizvodnju'\n" -"\t\t\t\t\tu Postavkama Proizvodnje." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3465,7 +3447,7 @@ msgstr "Tip Verifikata Predujma" msgid "Advance amount" msgstr "Iznos Predujma" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Iznos Predujma ne može biti veći od {0} {1}" @@ -3534,7 +3516,7 @@ msgstr "Naspram" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Naspram Računa" @@ -3654,7 +3636,7 @@ msgstr "Naspram Fakture Dobavljača {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Naspram Verifikata" @@ -3678,7 +3660,7 @@ msgstr "Naspram Verifikata Broj" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Naspram Verifikata Tipa" @@ -3792,6 +3774,13 @@ msgstr "Zrakoplovna Tvrtka" msgid "Algorithm" msgstr "Algoritam" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3968,7 +3957,7 @@ msgstr "Sve fakture i narudžbe za ovog klijenta bit će izrađene u ovoj valuti msgid "All items are already requested" msgstr "Svi artikli su već traženi" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Svi Artikli su već Fakturisani/Vraćeni" @@ -3980,7 +3969,7 @@ msgstr "Svi Artikli su već primljeni" msgid "All items have already been transferred for this Work Order." msgstr "Svi Artikli su već prenesen za ovaj Radni Nalog." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Svi Artiklie u ovom dokumentu već imaju povezanu Kontrolu Kvaliteta." @@ -3999,16 +3988,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Svi komentari i e-pošta kopirat će se iz jednog dokumenta u drugi novostvoreni dokument (Potencijalni Klijent -> Prilika-> Ponuda) kroz dokumente Prodajne Podrške." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Svi artikli su već vraćeni." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Svi obavezni Artikli (sirovine) bit će preuzeti iz Sastavnice i popunjene u ovoj tabeli. Ovdje također možete promijeniti izvorno skladište za bilo koji artikal. A tokom proizvodnje možete pratiti prenesene sirovine iz ove tabele." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Svi ovi Artikli su već Fakturisani/Vraćeni" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4031,7 +4020,7 @@ msgstr "Automatski Dodjeli Predujam (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "Dodijeli Puni Iznos Artiklima Zaliha" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Alociraj iznos uplate" @@ -4041,7 +4030,7 @@ msgstr "Alociraj iznos uplate" msgid "Allocate Payment Based On Payment Terms" msgstr "Dodjeli Plaćanje na osnovu Uvjeta Plaćanja" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Dodijeli zahtjev za plaćanje" @@ -4071,7 +4060,7 @@ msgstr "Dodjeljeno" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4154,8 +4143,8 @@ msgid "Allow Alternative Item" msgstr "Dozvoli Alternativni Artikal" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Dozvoli Alternativni Artikal mora biti označena za Artikal {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4262,7 +4251,7 @@ msgstr "Dopusti Ponudu s nultom količinom" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Dozvoli Preimenovanje Vrijednosti Atributa" @@ -4543,14 +4532,16 @@ msgstr "Dozvoljeni Artikli" msgid "Allowed To Transact With" msgstr "Dozvoljena Transakcija sa" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "Dozvoljene primarne uloge su 'Klijent' i 'Dobavljač'. Molimo odaberite samo jednu od ovih uloga." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "Dopušteni posebni znakovi su '/' i '-'" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4583,10 +4574,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "Omogućuje korisnicima podnošenje Ponuda Dobavljača s nultom količinom. Korisno kada su cijene fiksne, ali količine nisu. Npr. ugovori o cijenama." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "Već Uvezeno" @@ -4594,10 +4585,6 @@ msgstr "Već Uvezeno" msgid "Already Picked" msgstr "Već odabrano" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Već postoji zapis za artikal {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Već postavljeni standard u profilu blagajne {0} za korisnika {1}, onemogući standard u profilu blagajne" @@ -4613,12 +4600,12 @@ msgstr "Alternativna Jedinica" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Alternativni Artikal" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "Artikal Alternativa" @@ -4823,7 +4810,7 @@ msgstr "Uvijek Pitaj" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5049,12 +5036,12 @@ msgstr "Grupa Artikla je način za klasifikaciju Artikala na temelju tipa." msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "Korisniku s ulogom 'Odgovorni Nabave' bit će poslana e-pošta s obavijesti kada se kreira automatski Materijalni Zahtjev." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Pojavila se greška prilikom ponovnog knjiženja vrijednosti artikla preko {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Došlo je do greške tokom obrade ažuriranja" @@ -5268,7 +5255,7 @@ msgstr "Primijenjen Kod Kupona" msgid "Applied on each reading." msgstr "Primjenjuje se na svako čitanje." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Primijenjena pravila odlaganja." @@ -5445,10 +5432,6 @@ msgstr "Vremena za zakazivanje Termina" msgid "Appointment Confirmation" msgstr "Potvrda Termina" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Termin je uspješno zakazan" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5474,6 +5457,10 @@ msgstr "Zakazivanje termina je onemogućeno za ovu stranicu" msgid "Appointment With" msgstr "Termin s" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Termin je kreiran. Ali Potencijalni Klijent nije pronađen. Provjeri e-poštu da potvrdite" @@ -5515,6 +5502,15 @@ msgstr "Jeste li sigurni da želite otkazati ovo {} {}?" msgid "Are you sure you want to clear all demo data?" msgstr "Jeste li sigurni da želite izbrisati sve demo podatke?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "Jeste li sigurni da želite izbrisati ovaj Artikal?" @@ -5597,18 +5593,18 @@ msgstr "Pošto je polje {0} omogućeno, vrijednost polja {1} bi trebala biti ve msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Pošto postoje postojeće podnešene transakcije naspram artikla {0}, ne možete promijeniti vrijednost {1}." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "Pošto postoje rezervisane zalihe, ne možete onemogućiti {0}." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Pošto ima dovoljno artikala podsklopa, radni nalog nije potreban za Skladište {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Pošto ima dovoljno sirovina, Materijalni Nalog nije potreban za Skladište {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5647,7 +5643,7 @@ msgstr "Artikli za Motiranje" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5719,7 +5715,7 @@ msgstr "Kapitalizacija Imovine Artikal Zalihe" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5885,7 +5881,7 @@ msgstr "Artikal Kretanja Imovine" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6017,7 +6013,7 @@ msgstr "Analiza Vrijednosti Imovine" msgid "Asset cancelled" msgstr "Imovina otkazana" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Imovina se ne može otkazati, jer je već {0}" @@ -6033,7 +6029,7 @@ msgstr "Imovina kapitalizirana nakon podnošenja Kapitalizacije Imovine {0}" msgid "Asset created" msgstr "Imovina kreirana" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Imovina kreirana nakon odvajanja od imovine {0}" @@ -6086,7 +6082,7 @@ msgstr "Imovina Podnešena" msgid "Asset transferred to Location {0}" msgstr "Imovina prebačena na lokaciju {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Imovina je ažurirana nakon što je podijeljena na Imovinu {0}" @@ -6164,7 +6160,7 @@ msgstr "Vrijednost imovine prilagođena nakon podnošenja Ispravke Vrijednosti I #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6185,7 +6181,7 @@ msgstr "Imovina nije kreirana za {item_code}. Morat ćete kreirati Imovinu ručn msgid "Assets {assets_link} created for {item_code}" msgstr "Sredstva {assets_link} stvorena za {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Dodijeli Posao Osoblju" @@ -6195,6 +6191,11 @@ msgstr "Dodijeli Posao Osoblju" msgid "Assign to Name" msgstr "Dodijeli Imenu" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6213,19 +6214,23 @@ msgstr "Red #{0}: Izabrana količina {1} za artikl {2} je veća od raspoloživih msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "Red #{0}: Izabrana količina {1} za artikal {2} je veća od raspoloživih zaliha {3} u skladištu {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "U Redu {0}: U Serijskom i Šaržnom Paketu {1} mora imati status dokumenta kao 1, a ne 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "Najmanje jedan račun sa dobitkom ili gubitkom na kursu je obavezan" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "Najmanje jedno Sredstvo mora biti odabrano." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "Najmanje jedna Faktura mora biti odabrana." @@ -6246,6 +6251,10 @@ msgstr "Najmanje jedan od primjenjivih modula treba odabrati" msgid "At least one of the Selling or Buying must be selected" msgstr "Najmanje jedno od Prodaje ili Nabave mora biti odabrano" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "U zalihi tipa {0} mora biti prisutna barem jedna sirovina" @@ -6266,7 +6275,7 @@ msgstr "U redu #{0}: id sekvence {1} ne može biti manji od id-a sekvence pretho msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "U redu #{0}: odabrali ste Račun Razlike {1}..." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "Red {0}: Broj Šarće je obavezan za Artikal {1}" @@ -6274,26 +6283,22 @@ msgstr "Red {0}: Broj Šarće je obavezan za Artikal {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "Red {0}: Nadređeni Redni Broj ne može se postaviti za artikal {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "Red {0}: Količina je obavezna za Šaržu {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "Red {0}: Serijski Broj je obavezan za Artikal {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "Red {0}: Serijski i Šaržni Paket {1} je već kreiran. Molimo uklonite vrijednosti iz polja serijski broj ili šarža." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "Red {0}: postavite Nadređeni Redni Broj za Artikal {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "Klijent treba osigurati barem jednu sirovinu za gotov proizvod {0}." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6505,7 +6510,7 @@ msgstr "Automatsko Usglašavanje Plaćanja je onemogućeno. Omogući preko {0}" msgid "Auto Repeat Detail" msgstr "Detalji Automatskog Ponavljanja" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "Pogreška u postavkama automatskog PDV-a" @@ -6566,7 +6571,7 @@ msgid "Auto reconcile Payments" msgstr "Automatski Uskladi Plaćanja" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Automatsko ponavljanje dokumenta je ažurirano" @@ -6691,7 +6696,7 @@ msgstr "Datum Dostupnosti za Upotrebu" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6787,7 +6792,7 @@ msgstr "Datum dostupnosti za upotrebu je obavezan" msgid "Available {0}" msgstr "Dostupno {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Datum dostupnosti za upotrebu bi trebao biti nakon datuma nabave" @@ -6905,7 +6910,7 @@ msgstr "Spremnička Količina" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6924,8 +6929,8 @@ msgid "BOM 1" msgstr "Sastavnica 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "Sastavnica 1 {0} i Sastavnica 2 {1} ne bi trebali biti isti" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6939,7 +6944,7 @@ msgstr "Sastavnica 2" msgid "BOM Comparison Tool" msgstr "Alat Poređenja Sastavnica" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "Komponenta Sastavnice" @@ -7070,7 +7075,7 @@ msgstr "Operacija Sastavnice" msgid "BOM Operations Time" msgstr "Operativno Vrijeme Sastavnice" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "Sastavnica" @@ -7091,7 +7096,7 @@ msgstr "Pretraga Sastavnice" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "Sekundarni Artikal Sastavnice" @@ -7143,10 +7148,6 @@ msgstr "Zapisnik Alata Ažuriranja Sastavnice sa očuvanim statusom posla" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Ažuriranje Sastavnica je već u toku. Pričekaj dok {0} ne završi." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "Ažuriranje Sastavnice je na čekanju i može potrajati nekoliko minuta. Provjeri {0} za napredak." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7185,15 +7186,19 @@ msgstr "Rekurzija Sastavnice: {0} ne može biti podređena {1}" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Rekurzija Sastavnice: {1} ne može biti nadređena ili podređena {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "Sastavnica {0} ne pripada Artiklu {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "Sastavnica {0} mora biti aktivana" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "Sastavnica {0} se mora podnijeti" @@ -7274,7 +7279,7 @@ msgstr "Stanje" msgid "Balance (Dr - Cr)" msgstr "Stanje (Dr - Cr)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Stanje ({0})" @@ -7344,6 +7349,10 @@ msgstr "Završno Stanje Bilansa Stanja" msgid "Balance Sheet Summary" msgstr "Sažetak Bilansa Stanja" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Količinsko Stanje Zaliha" @@ -7404,7 +7413,7 @@ msgstr "Stanje prema bankovnom izvodu prije {0}" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7504,8 +7513,8 @@ msgid "Bank Account Type" msgstr "Tip Bankovnog Računa" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "Bankovni račun {} u bankovnoj transakciji {} ne odgovara bankovnom računu {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7749,7 +7758,7 @@ msgstr "Bankovna Transakcija {0} ažurirana" msgid "Bank Transactions" msgstr "Bankovne Transakcije" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Bankovni račun se ne može imenovati kao {0}" @@ -7761,7 +7770,7 @@ msgstr "Bankovni račun kredit za isplatu" msgid "Bank account debit for deposit" msgstr "Bankovnog računa debit za uplate" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Bankovni račun {0} već postoji i nije ga moguće ponovo kreirati" @@ -7773,7 +7782,7 @@ msgstr "Bankovni računi dodani" msgid "Bank statement imported." msgstr "Bankovni Izvod uvezen." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Greška u kreiranju bankovne transakcije" @@ -8049,8 +8058,8 @@ msgstr "Postavke Artikla Šarže" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8081,15 +8090,15 @@ msgstr "Postavke Artikla Šarže" msgid "Batch No" msgstr "Broj Šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Broj Šarže je obavezan" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Broj Šarže {0} ne postoji" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Broj Šarže {0} je povezan sa artiklom {1} koji ima serijski broj. Umjesto toga, skenirajte serijski broj." @@ -8097,6 +8106,10 @@ msgstr "Broj Šarže {0} je povezan sa artiklom {1} koji ima serijski broj. Umje msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Broj Šarže {0} nije prisutan u originalnom {1} {2}, stoga ga ne možete vratiti naspram {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8162,9 +8175,9 @@ msgstr "Jedinica Šarže" msgid "Batch and Serial No" msgstr "Šarža i Serijski Broj" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Šarža nije kreirana za artikal {} jer nema Šaržu." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8276,7 +8289,7 @@ msgstr "Račun za odbijenu količinu u Nabavnoj Fakturi" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8751,8 +8764,8 @@ msgid "Booked Fixed Asset" msgstr "Proknjižena Osnovna Imovina" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "Knjigovodstvo je zatvoreno do perioda koji se završava {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8979,8 +8992,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Proračun se ne može dodijeliti naspram Grupnog Računu {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Proračun se ne može dodijeliti naspram {0} jer to nije račun Prihoda ili Rashoda" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8997,7 +9010,7 @@ msgstr "Međuspremničko Vrijeme" msgid "Buffered Cursor" msgstr "Baferovani Kursor" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Kompiliraj Sve?" @@ -9005,7 +9018,7 @@ msgstr "Kompiliraj Sve?" msgid "Build Tree" msgstr "Ažuriraj Stablo" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Količina za Proizvodnju" @@ -9332,6 +9345,10 @@ msgstr "Obračunato Stanje Bankovnog Izvoda" msgid "Calculated Discount Mismatch" msgstr "Izračunata Razlika Popusta" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9503,7 +9520,7 @@ msgstr "Kampanja {0} nije pronađena" msgid "Can be approved by {0}" msgstr "Može biti odobreno od {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "Ne mogu zatvoriti Radni Nalog. Budući da su {0} Kartice Poslova u stanju Radovi u Toku." @@ -9532,21 +9549,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Ne može se filtrirati na osnovu broja verifikata, ako je grupiran prema verifikatu" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Plaćanje se može izvršiti samo protiv nefakturisanog(e) {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Može upućivati na red samo ako je tip naplate \"Na iznos prethodnog reda\" ili \"Ukupni prethodni red\"" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "Ne može se promijeniti način vrijednovanja, jer postoje transakcije naspram nekih artikala koji nemaju svoj metod vrijednovanja" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Otkažite Materijal Posjetite {0} prije nego otkažete ovu garanciju" @@ -9575,7 +9595,7 @@ msgstr "Otkaži po završetku razdoblja" msgid "Cancelation Date" msgstr "Datum Otkazivanja" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "Otkazani Radni Nalog ne može se obraditi." @@ -9583,11 +9603,6 @@ msgstr "Otkazani Radni Nalog ne može se obraditi." msgid "Cannot Assign Cashier" msgstr "Ne može se dodijeliti Blagajnik/ca" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Nije moguće izračunati vrijeme dolaska jer nedostaje adresa vozača." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "Nije moguće promijeniti Postavke Računa Zaliha" @@ -9602,10 +9617,6 @@ msgstr "Nije moguće stvoriti Povrat" msgid "Cannot Merge" msgstr "Nije moguće spojiti" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Nije moguće optimizirati put jer nedostaje adresa vozača." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Nije moguće razriješiti Osoblje" @@ -9630,6 +9641,11 @@ msgstr "Ne može se primijeniti TDS naspram više strana u jednom unosu" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Ne može biti artikal fiksne imovine jer je kreiran Registar Zaliha." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "Nije moguće otkazati Raspored Amortizacije Imovine {0} jer postoji nacrt naloga knjiženja {1}." @@ -9639,14 +9655,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "Ne može se otkazati Unos Zatvaranja Blagajne" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "Ne može se otkazati unos rezervacije zaliha {0} jer je korišten u radnom nalogu {1}. Prvo otkažite radni nalog ili odrezervirajte zalihe" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "Nije moguće otkazati jer je obrada otkazanih dokumenata na čekanju." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Nije moguće otkazati jer postoji podnešeni Unos Zaliha {0}" @@ -9654,7 +9670,7 @@ msgstr "Nije moguće otkazati jer postoji podnešeni Unos Zaliha {0}" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "Nije moguće otkazati transakciju. Ponovno knjiženje procjene vrijednosti artikla prilikom podnošenja još nije završeno." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "Nije moguće otkazati ovaj Unos Proizvodnih Zaliha jer količina proizvedene gotove robe ne može biti manja od količine isporučene u povezanim Podizvođačkim Nalogom." @@ -9666,7 +9682,7 @@ msgstr "Ne može se poništiti ovaj dokument jer je povezan s podnesenim Usklađ msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Nije moguće poništiti ovaj dokument jer je povezan s poslanim materijalom {asset_link}. Za nastavak otkažite sredstvo." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Nije moguće otkazati transakciju za Završeni Radni Nalog." @@ -9691,8 +9707,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Nije moguće promijeniti standard valutu tvrtke, jer postoje postojeće transakcije. Transakcije se moraju otkazati da bi se promijenila zadana valuta." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "Ne može završiti zadatak {0} jer njegov zavisni zadatak {1} nije dovršen/poništen." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9718,7 +9734,7 @@ msgstr "Nije moguće stvoriti međutvrtku {0}. Svi artikli u izvoru {1} već su msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "Nije moguće kreirati Unose Rezervisanja Zaliha za buduće datume Nabavnih Računa." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Nije moguće kreirati Listu Odabira za Prodajni Nalog {0} jer ima rezervisane zalihe. Poništi rezervacije zaliha kako biste kreirali Listu Odabira." @@ -9727,6 +9743,10 @@ msgstr "Nije moguće kreirati Listu Odabira za Prodajni Nalog {0} jer ima rezerv msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Nije moguće kreirati knjigovodstvene unose naspram onemogućenih računa: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "Nije moguće stvoriti povrat za objedinjenu fakturu {0}." @@ -9744,7 +9764,7 @@ msgstr "Ne može se proglasiti izgubljenim, jer je Ponuda napravljena." msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Ne može se odbiti kada je kategorija za 'Vrednovanje' ili 'Vrednovanje i Ukupno'" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Nije moguće izbrisati red Dobitka/Gubitka Deviznog Kursa" @@ -9757,7 +9777,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Ne možete izbrisati naručeni artikal" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "Nije moguće izbrisati zaštićenu osnovni tip dokumenta: {0}" @@ -9789,7 +9809,7 @@ msgstr "Ne može se demontirati {0} količine u odnosu na unos zaliha {1}. Samo msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "Nije moguće omogućiti račun zaliha po stavkama jer postoje postojeći unosi u glavnu knjigu zaliha za tvrtku {0} s računom zaliha po skladištu. Prvo otkažite transakcije zaliha i pokušajte ponovno." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "Nije moguće omogućiti stvaranje prilike iz Kontaktirajte Nas jer je obrazac Kontaktirajte Nas onemogućen." @@ -9814,19 +9834,23 @@ msgstr "Ne mogu pronaći artikal s ovim Barkodom" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "Ne može se pronaći zadano skladište za artikal {0}. Molimo vas da postavite jedan u Postavke Artikla ili u Postavke Zaliha." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "Nije moguće spojiti {0} '{1}' u '{2}' jer oba imaju postojeće knjigovodstvene unose u različitim valutama za '{3}'." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "Ne može se proizvesti više artikala {0} od količine Prodajnog Naloga{1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "Ne može se proizvesti više artikala za {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "Ne može se proizvesti više od {0} artikla za {1}" @@ -9838,12 +9862,16 @@ msgstr "Ne može se primiti od klijenta naspram negativnog nepodmirenog" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "Ne može se smanjiti količina naručene ili nabavljene količine" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Ne može se upućivati na broj reda veći ili jednak trenutnom broju reda za ovaj tip naknade" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "Nije moguće preuzeti oznaku veze za ažuriranje. Provjerite zapisnik grešaka za više informacija" @@ -9852,19 +9880,23 @@ msgstr "Nije moguće preuzeti oznaku veze za ažuriranje. Provjerite zapisnik gr msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Nije moguće preuzeti oznaku veze. Provjerite zapisnik grešaka za više informacija" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "Nije moguće odabrati tip grupe \"Klijent Grupa\". Odaberi klijent grupu koja nije grupa." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Nije moguće odabrati tip naknade kao 'Iznos na Prethodnom Redu' ili 'Ukupno na Prethodnom Redu' za prvi red" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Ne može se postaviti kao Izgubljeno pošto je Prodajni Nalog napravljen." @@ -10291,9 +10323,9 @@ msgstr "Promijenite vrstu računa u Potraživanje ili odaberite drugi račun." msgid "Change this date manually to setup the next synchronization start date" msgstr "Ručno promijenite ovaj datum da postavite sljedeći datum početka sinhronizacije" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "Ime klijenta je promijenjeno u '{}' jer '{}' već postoji." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10319,8 +10351,8 @@ msgstr "Promjena metode vrednovanja na MA utjecat će na nove transakcije. Ako s msgid "Channel Partner" msgstr "Partner" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "Naknada tipa 'Stvarni' u redu {0} ne može se uključiti u Cijenu Artikla ili Plaćeni Iznos" @@ -10514,7 +10546,7 @@ msgstr "Širina Čeka" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Referentni Datum" @@ -10572,7 +10604,7 @@ msgstr "Podređeni DocType" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Referenca za Podređeni Red" @@ -10582,8 +10614,8 @@ msgid "Child Table Not Allowed" msgstr "Podređena tablica nije dopuštena" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Podređeni Zadatak postoji za ovaj Zadatak. Ne možete izbrisati ovaj Zadatak." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10761,7 +10793,7 @@ msgstr "Zatvori Zajam" msgid "Close Replied Opportunity After Days" msgstr "Zatvori Odgovor na Priliku nakon dana" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Zatvori Kasu" @@ -10775,7 +10807,7 @@ msgstr "Zatvoreni Dokument" msgid "Closed Documents" msgstr "Zatvoreni Dokumenti" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Zatvoreni Radni Nalog se ne može zaustaviti ili ponovo otvoriti" @@ -11005,9 +11037,9 @@ msgstr "Provizija" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11444,7 +11476,7 @@ msgstr "Tvrtke" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11514,7 +11546,7 @@ msgstr "Tvrtke" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11554,10 +11586,6 @@ msgstr "Tvrtka" msgid "Company Abbreviation" msgstr "Kratica Tvrtke" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "Kratica Tvrtke (potrebno je instalirati Sustav)" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Kratica tvrtke ne može imati više od 5 znakova" @@ -11722,7 +11750,7 @@ msgstr "Dostavna Adresa Tvrtke" msgid "Company Tax ID" msgstr "Fiskalni Broj Tvrtke" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "Tvrtka i Datum Knjiženja su obavezni" @@ -11766,12 +11794,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "Naziv polja poveznice tvrtke koje se koristi za filtriranje (neobavezno - ostavite prazno za brisanje svih zapisa)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Naziv Tvrtke nije isti" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "Tvrtka imovine {0} i dokument o nabavi {1} se ne poklapaju." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11809,6 +11837,14 @@ msgstr "Tvrtka {0} dodana više puta" msgid "Company {0} does not exist" msgstr "Tvrtka {0} ne postoji" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Tvrtka {0} je dodana više puta" @@ -11817,14 +11853,6 @@ msgstr "Tvrtka {0} je dodana više puta" msgid "Company {0} is not in South Africa." msgstr "Tvrtka {0} nije registrirana u Južnoj Africi." -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "Tvrtka {} još ne postoji. Postavljanje poreza je prekinuto." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "Tvrtka {} nije usklađena s Kasa Profilom Tvrtke {}" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11846,7 +11874,7 @@ msgstr "Ime Konkurenta" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Konkurenti" @@ -12290,8 +12318,8 @@ msgid "Consumed Qty" msgstr "Potrošena Količina" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "Potrošena količina ne može biti veća od rezervisane količine za artikal {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12606,7 +12634,7 @@ msgstr "Kontrolira koji se porezni predložak automatski primjenjuje kada se ova #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12906,7 +12934,7 @@ msgstr "Raspodjela Troškova / Gubitak Procesa" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12931,7 +12959,7 @@ msgstr "Raspodjela Troškova / Gubitak Procesa" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12989,7 +13017,7 @@ msgstr "Broj Centra Troškova" msgid "Cost Center and Budgeting" msgstr "Centar Troškova i Proračuna" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "Centar Troškova za artikal redove je ažuriran na {0}" @@ -13001,7 +13029,7 @@ msgstr "Centar Troškova je dio dodjele Centra Troškova, stoga se ne može konv msgid "Cost Center is required" msgstr "Centar Troškova je obavezan" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Centar Troškova je obavezan u redu {0} u tabeli PDV za tip {1}" @@ -13023,12 +13051,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "Centar Troškova {0} ne može se koristiti za dodjelu jer se koristi kao matični centar troškova u drugom zapisu dodjele." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Centar Troškova {} ne pripada Tvrtki {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "Centar Troškova {} je grupni centar troškova a grupni centri troškova ne mogu se koristiti u transakcijama" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13152,14 +13180,14 @@ msgid "Costing and Billing" msgstr "Obračun Troškova i Fakturisanje" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "Polja Troškova i Fakturisanje su ažurirana" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Nije moguće izbrisati demo podatke" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Nije moguće automatski kreirati klijenta zbog sljedećih nedostajućih obaveznih polja:" @@ -13171,7 +13199,7 @@ msgstr "Nije moguće automatski kreirati Kreditnu Fakturu, poništi oznaku \"Izd msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "Nije moguće pronaći tablice u ovom PDF-u. Moguće je da se radi o skeniranoj ili slikovnoj izjavi, što nije podržano (nema OCR-a)." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Nije moguće otkriti tvrtku za ažuriranje Bankovnih Računa" @@ -13181,8 +13209,8 @@ msgstr "Nije moguće pronaći odgovarajuću promjenu koja bi odgovarala razlici: #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "Nije moguće pronaći put za " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13205,7 +13233,7 @@ msgstr "Nije moguće spremiti postavke tablice." msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Nije moguće riješiti kriterij funkcije bodovanja za {0}. Provjerite je li formula valjana." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Nije moguće riješiti funkciju ponderirane ocjene. Provjerite je li formula valjana." @@ -13435,10 +13463,6 @@ msgstr "Kreiraj Novog Klijenta" msgid "Create New Lead" msgstr "Kreiraj novi trag" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "Stvori novu verziju" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "Stvori novo {0}" @@ -13457,7 +13481,7 @@ msgstr "Kreiraj Operacije" msgid "Create Opportunity" msgstr "Kreiraj Priliku" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Kreiraj unos otvaranja Kase" @@ -13472,7 +13496,7 @@ msgstr "Kreiraj unos Plaćanja" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "Kreiraj Unos Plaćanja za Konsolidovane Fakture Blagajne." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Kreiraj Zahtjev Plaćanja" @@ -13700,7 +13724,7 @@ msgstr "Stvorite novo pravilo za automatsku klasifikaciju transakcija." msgid "Create a variant with the template image." msgstr "Kreiraj Varijantu sa slikom šablona." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Kreirajte dolaznu transakciju zaliha za artikal." @@ -13734,7 +13758,7 @@ msgstr "Kreiraj {0} {1}?" msgid "Created By Migration" msgstr "Izrađeno Migracijom" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "Kreirano {0} tablica bodova za {1} između:" @@ -13829,7 +13853,7 @@ msgstr "Kreiranje Korisnika u toku..." msgid "Creating demo data" msgstr "Izrada demo podataka" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Kreiranje {} od {} {}" @@ -13839,17 +13863,17 @@ msgstr "Kreiranje {} od {} {}" msgid "Creation" msgstr "Kreacija" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "Kreiranje {1}(s) uspješno" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Kreiranje {0} nije uspjelo.\n" "\t\t\t\tProvjerite Zapisnik Masovnih Transakcija" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Kreiranje {0} nije uspjelo.\n" @@ -13884,11 +13908,11 @@ msgstr "Kreiranje {0} nije uspjelo.\n" msgid "Credit" msgstr "Kredit" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Kredit (Transakcija)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Kredit ({0})" @@ -13969,7 +13993,7 @@ msgstr "Kreditni Dani" msgid "Credit Limit" msgstr "Kreditno Ograničenje" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Kreditno Ograničenje je probijeno" @@ -14049,16 +14073,16 @@ msgstr "Kredit Za" msgid "Credit in Company Currency" msgstr "Kredit u Valuti Tvrtke" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Kreditno ograničenje je premašeno za klijenta {0} ({1}/{2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Kreditno ograničenje je već definisano za Tvrtku {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Kreditno Ograničenje je dostignuto za Klijenta {0}" @@ -14117,12 +14141,12 @@ msgstr "Postavljanje Kriterija" msgid "Criteria Weight" msgstr "Prioritet Kriterija" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Prioriteti Kriterija moraju iznositi do 100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Cron interval bi trebao biti između 1 i 59 min" @@ -14245,7 +14269,7 @@ msgstr "Valuta i Cijenovnik" msgid "Currency can not be changed after making entries using some other currency" msgstr "Valuta se ne može mijenjati nakon unosa u nekoj drugoj valuti" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "Filtri valuta trenutno nisu podržani u Prilagođenom Financijskom Izvješću." @@ -14310,8 +14334,8 @@ msgid "Current BOM" msgstr "Trenutna Sastavnica" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "Trenutna i Nova Sastavnica ne mogu biti iste" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14373,10 +14397,6 @@ msgstr "Trenutni Serijski / Šarža Paket" msgid "Current Serial No" msgstr "Trenutni Serijski Broj" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "Trenutna Serija Imenovanja" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15207,7 +15227,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Dnevni sažetak projekta za {0}" @@ -15352,10 +15372,6 @@ msgstr "Datumi za Obradu" msgid "Day Of Week" msgstr "Dan u Sedmici" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "Dan u mjesecu" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15462,11 +15478,11 @@ msgstr "Diler" msgid "Debit" msgstr "Debit" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Debit (Transakcija)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Debit ({0})" @@ -15628,7 +15644,7 @@ msgstr "Decilitar" msgid "Decimeter" msgstr "Decimetar" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Prijavi Gubitak" @@ -16309,8 +16325,8 @@ msgstr "Brisanje pravila..." msgid "Deleting {0} and all associated Common Code documents..." msgstr "Brisanje {0} u toku i svih povezanih dokumenata Zajedničkog Koda..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Brisanje u toku!" @@ -16404,7 +16420,7 @@ msgstr "Isporučeni Artikli za Fakturisanje" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16462,7 +16478,7 @@ msgstr "Dostava" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16792,7 +16808,7 @@ msgstr "Amortizacija" msgid "Depreciation Amount" msgstr "Iznos Amortizacije" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Iznos Amortizacije tokom perioda" @@ -16808,7 +16824,7 @@ msgstr "Datum Amortizacije" msgid "Depreciation Details" msgstr "Detalji Amortizacije" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Amortizacija Eliminisana zbog otuđenja Imovine" @@ -16878,7 +16894,7 @@ msgstr "Datum knjiženja amortizacije ne može biti prije Datuma raspoloživosti msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Amortizacija Red {0}: Datum knjiženja amortizacije ne može biti prije datuma raspoloživosti za upotrebu" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Amortizacija Red {0}: Očekivana vrijednost nakon korisnog vijeka trajanja mora biti veća ili jednaka {1}" @@ -16907,11 +16923,11 @@ msgstr "Raspored Amortizacije" msgid "Depreciation Schedule View" msgstr "Pregled Rasporeda Amortizacije" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "Amortizacija se ne može obračunati za potpuno amortizovanu imovinu" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "Amortizacija eliminirana storniranjem" @@ -16939,7 +16955,7 @@ msgstr "Dizajner" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Detaljan Razlog" @@ -17042,12 +17058,12 @@ msgid "Difference Account in Items Table" msgstr "Razlika u kontu stavki u tablici" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "Razlika u računu mora biti račun tipa Imovina/Obveza (Privremeno otvaranje), budući da je ovaj unos zaliha početni unos" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Račun razlike mora biti račun tipa Imovina/Obaveze, budući da je ovo usaglašavanje Zaliha Početni Unos" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17109,7 +17125,7 @@ msgstr "Vrijednost Razlike" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "Za svaki red se mogu postaviti različiti 'Izvorno skladište' i 'Ciljano Skladište'." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Različiti Jedinice za artikle će dovesti do netačne (ukupne) vrijednosti neto težine. Uvjerite se da je neto težina svakog artikla u istoj Jedinici." @@ -17282,7 +17298,7 @@ msgstr "Onemogućeni Bankovni Račun" msgid "Disabled Product Bundle" msgstr "Onemogući Paket Artikala" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "Onemogućeno Skladište {0} se ne može koristiti za ovu transakciju." @@ -17291,18 +17307,18 @@ msgstr "Onemogućeno Skladište {0} se ne može koristiti za ovu transakciju." msgid "Disabled items cannot be selected in any transaction." msgstr "Onemogućeni artikli se ne mogu odabrati ni u jednoj transakciji." -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Onemogućena pravila određivanja cijena jer je ovo {} interni prijenos" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "Onemogućeni dobavljači su skriveni od odabira u novim transakcijama, ali ostaju u povijesnim zapisima" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "Cijene bez PDV budući da je ovo {} interni prijenos" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17551,9 +17567,9 @@ msgstr "Popust ne može biti veći od 100%." msgid "Discount must be less than 100" msgstr "Popust mora biti manji od 100%" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Popust od {} se primjenjuje prema Uslovima Plaćanja" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17917,11 +17933,11 @@ msgstr "Želiš li podnijeti unos zaliha?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" -msgstr "DocType može biti jedan od {0}" +msgid "DocType can be one of {0}" +msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} ne postoji" @@ -17959,22 +17975,6 @@ msgstr "Pretraga Dokumenata" msgid "Document Count" msgstr "Broj Dokumenata" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "Imenovanje Dokumenata" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "Broj Dokumenta" @@ -18280,7 +18280,7 @@ msgstr "Kopiraj Projekt sa Zadatcima" msgid "Duplicate Sales Invoices found" msgstr "Pronađeni duplikati Prodajnih Faktura" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "Pogreška dupliciranog serijskog broja" @@ -18434,7 +18434,7 @@ msgstr "Uredi Kapacitet" msgid "Edit Cart" msgstr "Uredi Korpu" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Uređivanje nije dozvoljeno" @@ -18658,8 +18658,8 @@ msgid "Email verification failed." msgstr "Verifikacija e-pošte nije uspjela." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "E-pošta u redu čekanja" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18846,7 +18846,7 @@ msgstr "Osoblje" msgid "Empty" msgstr "Prazno" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "Isprazni za brisanje popisa" @@ -18855,7 +18855,7 @@ msgstr "Isprazni za brisanje popisa" msgid "Ems(Pica)" msgstr "Ems (Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "Omogući {0} u Postavkama Artikla da biste nastavili s {1} kontrolom." @@ -18934,6 +18934,12 @@ msgstr "Omogući Popust i Maržu" msgid "Enable European Access" msgstr "Omogući Evropski Pristup" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19210,7 +19216,7 @@ msgstr "Vrijeme Završetka" msgid "End Transit" msgstr "Završi Tranzit" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19333,7 +19339,7 @@ msgstr "Unesi broj telefona Klijenta" msgid "Enter date to scrap asset" msgstr "Unesi datum za rashodovanje Imovine" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Unesi podatke Amortizacije" @@ -19389,6 +19395,10 @@ msgstr "Unesi količinu za proizvodnju. Artikal sirovina će se preuzimati samo msgid "Enter {0} amount." msgstr "Unesi {0} iznos." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Zabava i Slobodno vrijeme" @@ -19424,7 +19434,7 @@ msgstr "Tip Unosa" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Kapital" @@ -19448,7 +19458,7 @@ msgstr "Erg" msgid "Error Description" msgstr "Opis Greške" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Došlo je do Greške" @@ -19480,21 +19490,21 @@ msgstr "Greška prilikom knjiženja unosa amortizacije" msgid "Error while processing deferred accounting for {0}" msgstr "Greška prilikom obrade odgođenog knjiženja za {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Greška prilikom ponovnog knjiženja vrijednosti artikla" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Greška: Ova imovina već ima {0} periode amortizacije.\n" -"\t\t\t\t\tDatum `početka amortizacije` mora biti najmanje {1} perioda nakon datuma `dostupno za upotrebu`.\n" -"\t\t\t\t\tMolimo ispravite datume u skladu s tim." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Greška: {0} je obavezno polje" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19508,7 +19518,7 @@ msgid "Estimated Arrival" msgstr "Predviđeni Dolazak" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Očekivani Trošak" @@ -19558,7 +19568,7 @@ msgstr "Primjer: ABCD.#####. Ako je serija postavljena, a broj šarže nije post msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "Primjer: Ako je iznos transakcije 200, tada će se to izračunati kao {} = {}" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Primjer: Serijski Broj {0} je rezervisan u {1}." @@ -19839,7 +19849,7 @@ msgstr "Očekivani Datum Zatvaranja" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19926,7 +19936,7 @@ msgstr "Očekivana vrijednost nakon korisnog vijeka trajanja" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Troškovi" @@ -20185,9 +20195,9 @@ msgstr "Farenhajt" msgid "Failed Entries" msgstr "Neuspješni Unosi" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Provjera autentičnosti API ključa nije uspjela." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20384,7 +20394,7 @@ msgid "Fetching Sales Orders..." msgstr "Preuzmaju se Prodajni Nalozi..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Preuzimaju se Devizni Kursevi..." @@ -20422,15 +20432,15 @@ msgstr "Naziv polja {0} već postoji u sljedećim tipovima dokumenata: {1}. Zase msgid "Fields will be copied over only at time of creation." msgstr "Polja će se kopirati samo u vrijeme kreiranja." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "Datoteka ne pripada ovom zapisu o brisanju transakcije" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Datoteka nije pronađena" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Datoteka nije pronađena na serveru" @@ -20439,7 +20449,7 @@ msgstr "Datoteka nije pronađena na serveru" msgid "File to Rename" msgstr "Datoteka za Preimenovanje" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20598,11 +20608,11 @@ msgstr "Redak Financijskog Izvješća" msgid "Financial Report Template" msgstr "Predložak Financijskog Izvješća" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "Predložak Financijskog Izvješća {0} je onemogućen" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "Predložak Financijskog Izvješća {0} nije pronađen" @@ -20671,7 +20681,7 @@ msgstr "Sastavnica Gotovog Proizvoda" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20684,7 +20694,7 @@ msgstr "Artikal Gotovog Proizvoda" msgid "Finished Good Item Code" msgstr "Gotov Proizvod Artikal Kod" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Količina Artikla Gotovog Proizvoda" @@ -20792,7 +20802,7 @@ msgstr "Skladište Gotovog Proizvoda" msgid "Finished Goods based Operating Cost" msgstr "Operativni troškovi zasnovani na Gotovom Proizvodu" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Gotov Proizvod {0} ne odgovara Radnom Nalogu {1}" @@ -20891,10 +20901,6 @@ msgstr "Fiskalni režim je obavezan, postavi fiskalni režim u tvrtki {0}" msgid "Fiscal Year" msgstr "Fiskalna Godina" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "Fiskalna Godina (potrebno je instalirati Sustav)" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20908,11 +20914,8 @@ msgstr "Detalji Fiskalne Godine" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Datum završetka fiskalne godine trebao bi biti godinu dana nakon datuma početka fiskalne godine" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Fiskalna Godina {0} nema u sustavu" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Fiskalna Godina {0} nema u sustavu" @@ -20945,7 +20948,7 @@ msgstr "Fiksna Imovina" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21081,7 +21084,7 @@ msgstr "Foot/Second" msgid "For" msgstr "Za" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "Za artikel 'Artikal Paket ', skladište, serijski broj i šaržu će se uzeti u obzir iz tabele 'Lista Pakovanja'. Ako su Skladište i Šaržni Broj isti za sve artikle pakovanja za bilo koji 'Artikal Paket', te vrijednosti se mogu unijeti u glavnu tabelu Artikala, vrijednosti će se kopirati u tabelu 'Lista Pakovanja'." @@ -21106,10 +21109,6 @@ msgstr "Za Tvrtku" msgid "For Item" msgstr "Za Artikal" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "Za Artikal {0} ne može se primiti više od {1} količine naspram {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21176,12 +21175,12 @@ msgid "For Work Order" msgstr "Za Radni Nalog" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Za Artikal {0}, količina mora biti negativan broj" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Za Artikal {0}, količina mora biti pozitivan broj" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21213,13 +21212,13 @@ msgstr "Za koliko potrošeno = 1 bod lojalnosti" msgid "For individual supplier" msgstr "Za individualnog Dobavljača" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "Za stavku {0}, samo {1} elemenata je kreirano ili povezano s {2}. Molimo kreirajte ili povežite još {3} elemenata s odgovarajućim dokumentom." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "Za artikal {0}, cijena mora biti pozitivan broj. Da biste omogućili negativne cijene, omogućite {1} u {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21231,9 +21230,9 @@ msgstr "Za stare serijske brojeve, nemojte preuzimati nabvnu cijenu iz serijskog msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "Za operaciju {0} u redu {1}, molimo dodajte sirovine ili postavite Sastavnicu naspram nje." -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "Za Operaciju {0}: Količina ({1}) ne može biti veća od količine na čekanju ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21248,21 +21247,17 @@ msgstr "Za projekat - {0}, ažuriraj vaš status" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "Za projicirane i prognozirane količine, sustav će uzeti u obzir sva podređena skladišta unutar odabranog nadređenog skladišta." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "Za količinu {0} ne bi trebalo da bude veća od dozvoljene količine {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Za Referencu" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Za red {0} u {1}. Da biste uključili {2} u cijenu artikla, redovi {3} također moraju biti uključeni" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Za red {0}: Unesi Planiranu Količinu" @@ -21281,11 +21276,15 @@ msgstr "Za uslov 'Primijeni Pravilo na Drugo' polje {0} je obavezno" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Za praktičnost Klienta, ovi kodovi se mogu koristiti u formatima za ispisivanje kao što su Fakture i Dostavnice" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "Za artikal {0}, potrošena količina bi trebala biti {1} prema Sastavnici {2}." -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "Kako bi novi {0} stupio na snagu, želite li izbrisati trenutni {1}?" @@ -21373,6 +21372,21 @@ msgstr "Forum Postovi" msgid "Forum URL" msgstr "URL Foruma" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Podrška Prodaje" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "Frappe Škola" @@ -21916,7 +21930,7 @@ msgstr "Stanje Knjigovodstvenog Registra" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Stavka Knjigovodstvenog Registra" @@ -22041,6 +22055,10 @@ msgstr "Registar Knjigovodstva" msgid "General Ledger remarks length" msgstr "Dužina napomena Knjigovodstvenog Registra" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22094,7 +22112,7 @@ msgstr "Generiši upis za zatvaranje Zaliha" msgid "Generate To Delete List" msgstr "Generiraj za brisanje popisa" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "Prvo generiraj popis za brisanje" @@ -22437,7 +22455,7 @@ msgstr "Proizvod u Tranzitu" msgid "Goods Transferred" msgstr "Proizvod je Prenesen" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Proizvod je već primljen naspram unosa izlaza {0}" @@ -22620,7 +22638,7 @@ msgstr "Ukupni iznos mora odgovarati zbroju referenci plaćanja" msgid "Grant Commission" msgstr "Odobri Proviziju" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Veće od Iznosa" @@ -22760,7 +22778,7 @@ msgstr "Grupiši po Prodajnom Nalogu" msgid "Group by Voucher" msgstr "Grupiši po Verifikatu" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Grupno Skladište nije dozvoljeno da se bira za transakcije" @@ -23063,7 +23081,7 @@ msgstr "Pomaže vam da raspodijelite Proračun/Cilj po mjesecima ako imate sezon msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Ovdje su zapisi grešaka za gore navedene neuspjele unose amortizacije: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "Ovdje su opcije za nastavak:" @@ -23091,7 +23109,7 @@ msgstr "Ovdje su vaši sedmični neradni dani unaprijed popunjeni na osnovu pret msgid "Hertz" msgstr "Herc" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Zdravo," @@ -23127,7 +23145,7 @@ msgstr "Sakrij ako je nula" msgid "Hide Images" msgstr "Sakrij Slike" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "Sakrij nedavne Naloge Nabave" @@ -23714,15 +23732,15 @@ msgstr "Ako se za artikl u cjeniku postavljenom u transakciji ne pronađe cijena msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "Ako PDV nije postavljen i Predložak PDV i Naknada je odabran, sustav će automatski primijeniti PDV iz odabranog predloška." -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "Ako ne, možete Otkazati / Podnijeti ovaj unos" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "Ako stranka ne postoji, kreirajte je pomoću polja Ime Klijenta." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "Ako stranka ne postoji, kreirajte je pomoću polja Ime Dobavljača." @@ -23760,7 +23778,7 @@ msgstr "Ako Sastavnica rezultira otpadnim materijalom, potrebno je odabrati Skla msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Ako je račun zamrznut, unosi su dozvoljeni ograničenim korisnicima." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Ako se transakcije artikla vrši kao artikal nulte stope vrijednosti u ovom unosu, omogućite 'Dozvoli Nultu Stopu Vrednovanja' u {0} Postavkama Artikla." @@ -23861,7 +23879,7 @@ msgstr "Ako trebate usaglasiti određene transakcije jedne s drugima, odaberite msgid "If you still want to proceed, please disable {0} checkbox." msgstr "Ako i dalje želite nastaviti, molimo onemogućite \" {0}\"." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "Ako i dalje želite da nastavite, omogućite {0}." @@ -24079,14 +24097,14 @@ msgstr "Uvezi Fakture" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "Uvoz MT940 Fromata" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Uvoz Uspješan" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Sažetak Uvoza" @@ -24563,7 +24581,7 @@ msgstr "Uključujući artikle za podsklopove" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Prihod" @@ -24649,7 +24667,7 @@ msgstr "Dolazni poziv od {0}" msgid "Incompatible Setting Detected" msgstr "Otkrivena nekompatibilna postavka" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "Netočan Račun" @@ -24658,7 +24676,7 @@ msgstr "Netočan Račun" msgid "Incorrect Balance Qty After Transaction" msgstr "Netačna količina stanja nakon transakcije" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Potrošena Pogrešna Šarža" @@ -24666,11 +24684,11 @@ msgstr "Potrošena Pogrešna Šarža" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Netačno prijavljivanje (grupno) skladište za ponovnu narudžbu" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "Netočna Tvrtka" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Netačna Količina Komponenti" @@ -24679,7 +24697,7 @@ msgstr "Netačna Količina Komponenti" msgid "Incorrect Date" msgstr "Netačan Datum" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Netočna Faktura" @@ -24696,7 +24714,7 @@ msgstr "Netačan Referentni Dokument (Artikal Računa Nabave)" msgid "Incorrect Serial No Valuation" msgstr "Netačno Vrijednovanje Serijskog Broja" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Pogrešan Serijski Broj Potrošen" @@ -24779,7 +24797,7 @@ msgstr "Povećanje" msgid "Increment cannot be 0" msgstr "Povećanje ne može biti 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Povećanje za Atribut {0} ne može biti 0" @@ -24976,7 +24994,7 @@ msgid "Instruction" msgstr "Uputstvo" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Nedovoljan Kapacitet" @@ -24992,12 +25010,12 @@ msgstr "Nedovoljne Dozvole" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Nedovoljne Zalihe" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Nedovoljne Zalihe Šarže" @@ -25127,7 +25145,7 @@ msgstr "Troškovi Kamata" msgid "Interest Income" msgstr "Prihod od Kamata" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Kamata i/ili Naknada Opomene" @@ -25152,7 +25170,7 @@ msgstr "Interni" msgid "Internal Customer Accounting" msgstr "Knjigovodstvo Internog Klijenta" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Interni Klijent za tvrtku {0} već postoji" @@ -25178,7 +25196,7 @@ msgstr "Nedostaje Interna Prodajna Referenca" msgid "Internal Supplier Details" msgstr "Detalji Internog Dobavljača" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "Interni Dobavljač za tvrtku {0} već postoji" @@ -25199,7 +25217,7 @@ msgstr "Interni Dobavljač za tvrtku {0} već postoji" msgid "Internal Transfer" msgstr "Interni Prijenos" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Nedostaje Referenca Internog Prijenosa" @@ -25241,8 +25259,8 @@ msgstr "Interval bi trebao biti između 1 i 59 minuta" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25261,7 +25279,7 @@ msgstr "Nevažeći Dodijeljeni Iznos" msgid "Invalid Amount" msgstr "Nevažeći Iznos" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Nevažeći Atribut" @@ -25278,11 +25296,11 @@ msgstr "Nevažeći bankovni račun" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Nevažeći Barkod. Nema artikla priloženog ovom barkodu." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Nevažeća narudžba za odabranog Klijenta i Artikal" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "Nevažeći CSV format. Očekivani stupac: doctype_name" @@ -25302,13 +25320,13 @@ msgstr "Nevažeća Tvrtka za transakcije između tvrtki." msgid "Invalid Configuration" msgstr "Nevažeća Konfiguracija" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Nevažeći Centar Troškova" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "Nevažeća Klijent Grupa" @@ -25329,11 +25347,11 @@ msgstr "Nevažeća Količina za Rastavljanje" msgid "Invalid Discount" msgstr "Nevažeći Popust" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "Nevažeći Iznos Popusta" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Nevažeći Dokument" @@ -25363,7 +25381,7 @@ msgstr "Nevažeća Grupa po" msgid "Invalid Item" msgstr "Nevažeći Artikal" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Nevažeće Standard Postavke Artikla" @@ -25372,7 +25390,7 @@ msgstr "Nevažeće Standard Postavke Artikla" msgid "Invalid Ledger Entries" msgstr "Nevažeći unosi u Registar" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "Nevažeći Neto Iznos Nabave" @@ -25411,7 +25429,7 @@ msgstr "Nevažeći Format Ispisa" msgid "Invalid Priority" msgstr "Nevažeći Prioritet" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Nevažeća Konfiguracija Gubitka Procesa" @@ -25428,7 +25446,7 @@ msgstr "Nevažeća Količina" msgid "Invalid Quantity" msgstr "Nevažeća Količina" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "Nevažeći Upit" @@ -25440,8 +25458,8 @@ msgstr "Nevažeći Povrat" msgid "Invalid Sales Invoices" msgstr "Nevažeće Prodajne Fakture" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Nevažeći Raspored" @@ -25449,7 +25467,7 @@ msgstr "Nevažeći Raspored" msgid "Invalid Selling Price" msgstr "Nevažeća Prodajna Cijena" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Nevažeći Serijski i Šaržni Paket" @@ -25466,7 +25484,7 @@ msgstr "Nevažeći Tip Stabla {0}" msgid "Invalid Upload" msgstr "Nevažeće Otpremljenje" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Nevažeća Vrijednost" @@ -25476,14 +25494,14 @@ msgid "Invalid Warehouse" msgstr "Nevažeće Skladište" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "Nevažeći iznos u knjigovodstvenim unosima od {} {} za Račun {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Nevažeći Izraz Uvjeta" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "Nevažeći URL datoteke" @@ -25515,7 +25533,7 @@ msgstr "Nevažeći uzorak regularnog izraza." msgid "Invalid result key. Response:" msgstr "Nevažeći ključ rezultata. Odgovor:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Nevažeći upit pretraživanja" @@ -26478,10 +26496,6 @@ msgstr "Datum Izdavanja" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Može potrajati i do nekoliko sati da tačne vrijednosti zaliha budu vidljive nakon spajanja artikala." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Potreban je za preuzimanje Detalja Artikla." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "Uzima u obzir sve proknjižene transakcije i oduzima transakcije koje još nisu obračunate." @@ -26490,7 +26504,7 @@ msgstr "Uzima u obzir sve proknjižene transakcije i oduzima transakcije koje jo msgid "It's all good!" msgstr "Sve je u redu!" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "Nije moguće ravnomjerno raspodijeliti troškove kada je ukupan iznos nula, postavite 'Distribuiraj Naknade na Osnovu' kao 'Količina'" @@ -26539,12 +26553,12 @@ msgstr "Kurzivni tekst za međuzbrojeve ili bilješke" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26577,7 +26591,7 @@ msgstr "Kurzivni tekst za međuzbrojeve ili bilješke" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26651,7 +26665,7 @@ msgstr "Artikal 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26812,7 +26826,7 @@ msgstr "Artikal Korpe" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26844,7 +26858,7 @@ msgstr "Artikal Korpe" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26853,12 +26867,12 @@ msgstr "Artikal Korpe" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26954,7 +26968,7 @@ msgstr "Kod Artikla ne može se promijeniti za serijski broj." msgid "Item Code required at Row No {0}" msgstr "Kod Artikla je obavezan u redu broj {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Kod Artikla: {0} nije dostupan u skladištu {1}." @@ -27150,7 +27164,7 @@ msgstr "Nadjačavanje Grupe Artikla" msgid "Item Group Tree" msgstr "Stablo Grupe Artikla" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Grupa Artikla nije postavljena u Postavci Artikla za Artikal {0}" @@ -27304,7 +27318,7 @@ msgstr "Proizvođač Artikla" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27335,7 +27349,7 @@ msgstr "Proizvođač Artikla" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27343,8 +27357,8 @@ msgstr "Proizvođač Artikla" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27401,7 +27415,7 @@ msgstr "Proizvođač Artikla" msgid "Item Name" msgstr "Naziv Artikla" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "Naziv Artikla je obavezan." @@ -27448,8 +27462,8 @@ msgstr "Postavke Cijene Artikla" msgid "Item Price Stock" msgstr "Cijena Artikla na Zalihama" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "Cijena artikla dodana za {0} u Cjeniku - {1}" @@ -27461,7 +27475,7 @@ msgstr "Cijena Artikla se pojavljuje više puta na osnovu Cijenika, Dobavljača/ msgid "Item Price created at rate {0}" msgstr "Cijena Artikla stvorena po stopi {0}" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Cijena Artikla je ažurirana za {0} u Cjenovniku {1}" @@ -27506,7 +27520,7 @@ msgstr "Ponovna Narudžba Artikla" msgid "Item Row" msgstr "Redak Stavke" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Artikla Red {0}: {1} {2} ne postoji u gornjoj '{1}' tabeli" @@ -27622,7 +27636,7 @@ msgstr "Artikal za Proizvodnju" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Varijanta Artikla" @@ -27741,7 +27755,7 @@ msgstr "PDV Detalji po Artiklu" msgid "Item Wise Tax Details" msgstr "PDV Detalji po Stavki" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "PDV Detalji po Artiklu nisu uskađeni se s PDV i Naknadama u sljedećim redovima:" @@ -27777,7 +27791,7 @@ msgstr "Artikal je obavezan u tabeli Sirovine." msgid "Item is removed since no serial / batch no selected." msgstr "Artikal je uklonjen jer nije odabrana Šarža / Serijski Broj." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Artikal se mora dodati pomoću dugmeta 'Preuzmi Artikle iz Nabavnog Računa'" @@ -27791,7 +27805,7 @@ msgstr "Naziv Artikla" msgid "Item operation" msgstr "Artikal Operacija" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "Cijena Artikla je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednovanja označena za artikal {0}" @@ -27806,7 +27820,7 @@ msgstr "Artikal za Proizvodnju" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "Stopa vrednovanja artikla se preračunava s obzirom na iznos verifikata obračuna troškova" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Ponovno knjiženje vrijednosti artikla je u toku. Izvještaj može prikazati netačnu procjenu artikla." @@ -27822,10 +27836,6 @@ msgstr "Artikal s nazivom {0} nije pronađena u Nalogu Nabave" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "Artikal {0} dodan je više puta pod isti nadređeni artikal {1} u redovima {2} i {3}" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "{0} već ima aktivan Paket Artikala ({1}). Podnošenjem ovog stvorit će se nova verzija i deaktivirati {1}." - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "Artikal {0} nemože se dodati kao sam podsklop" @@ -27834,6 +27844,10 @@ msgstr "Artikal {0} nemože se dodati kao sam podsklop" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Artikal {0} se nemože naručiti više od {1} u odnosu na Ugovorni Nalog {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27843,6 +27857,7 @@ msgstr "Artikal {0} ne postoji" msgid "Item {0} does not exist in the system or has expired" msgstr "Artikal {0} ne postoji u sustavu ili je istekao" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Artikal {0} ne postoji." @@ -27875,6 +27890,10 @@ msgstr "Artikal {0} je dosego kraj svog vijeka trajanja {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "Artikal {0} zanemaren jer nije artikal na zalihama" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Artikal {0} je već rezervisan/dostavljen naspram Prodajnog Naloga {1}." @@ -27907,7 +27926,7 @@ msgstr "Artikal {0} nije podugovoreni artikal" msgid "Item {0} is not a template item." msgstr "Artikal {0} nije predložak artikla." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "Artikal {0} nije aktivan ili je dostignut kraj životnog vijeka" @@ -27939,10 +27958,6 @@ msgstr "Artikal {0}: Količina Naloga {1} ne može biti manja od minimalne koli msgid "Item {0}: {1} qty produced. " msgstr "Artikal {0}: {1} količina proizvedena. " -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "Atikal {} ne postoji." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27993,6 +28008,10 @@ msgstr "Artikal/Artikal Šifra je obavezan pri preuzimanju PDV Predloška Artikl msgid "Item: {0} does not exist in the system" msgstr "Artikal: {0} ne postoji u sustavu" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -28009,7 +28028,7 @@ msgstr "Katalog Artikala" msgid "Items Filter" msgstr "Filter Artikala" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Artikli Obavezni" @@ -28049,7 +28068,7 @@ msgstr "Artikli Materijalnog Naloga Sirovina" msgid "Items not found." msgstr "Artikli nisu pronađeni." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "Cijena Artikala je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednovanja izabrana za sljedeće artikle: {0}" @@ -28059,7 +28078,7 @@ msgstr "Cijena Artikala je ažurirana na nulu jer je Dozvoli Nultu Stopu Vrednov msgid "Items to Be Repost" msgstr "Artikli koje treba ponovo objaviti" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Artikli za Proizvodnju potrebni za povlačenje sirovina povezanih s njima." @@ -28129,7 +28148,7 @@ msgstr "Radni Kapacitet" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28192,20 +28211,19 @@ msgstr "Zapisnik Vremana Radnog Naloga" msgid "Job Card and Capacity Planning" msgstr "Radne Kartice i Planiranje Kapaciteta" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "Radne Kartice {0} je završen" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "Radne Kartice" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "Posao Pauziran" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Posao Započet" @@ -28268,11 +28286,19 @@ msgstr "Naziv Podizvođača" msgid "Job Worker Warehouse" msgstr "Skladište Podizvođača" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Radna Kartica {0} kreirana" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "Posao: {0} je pokrenut za obradu neuspjelih transakcija" @@ -28618,8 +28644,8 @@ msgid "Last Fiscal Year" msgstr "Prošla Fiskalna Godina" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "Posljednje ažuriranje Knjigovodstvenog Registra je obavljeno {}. Ova operacija nije dopuštena dok se sustav aktivno koristi. Pričekaj 5 minuta prije ponovnog pokušaja." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28739,7 +28765,7 @@ msgstr "Geografska Širina" msgid "Lead" msgstr "Potencijalni Klijent" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Potencijalni Klijent-> Prospekt" @@ -28833,7 +28859,7 @@ msgstr "Vrijeme Isporuke u Danima" msgid "Lead Type" msgstr "Tip Potencijalnog Klijenta" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "Potencijalni Klijent {0} je dodat Prospektu {1}." @@ -28981,7 +29007,7 @@ msgstr "Legenda" msgid "Length (cm)" msgstr "Dužina (cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Manje od Iznosa" @@ -29010,7 +29036,7 @@ msgstr "Nivo (Sastavnica)" msgid "Lft" msgstr "Lijevo" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Obaveze" @@ -29040,7 +29066,7 @@ msgstr "Broj Vozačke Dozvole" msgid "License Plate" msgstr "Registarski Broj" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Prekoračeno Ograničenje" @@ -29136,8 +29162,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Povezivanje s klijentom nije uspjelo. Molimo pokušajte ponovo." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Povezivanje sa dobavljačem nije uspjelo. Molimo pokušajte ponovo." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29303,7 +29329,7 @@ msgstr "Detalji za Izgubljen Razlog" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Izgubljen(a) Razlozi" @@ -29389,7 +29415,7 @@ msgstr "Otkupljanje Bodova Lojalnosti" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Bodovi Lojalnosti će se obračunati od potrošenog novca (putem Prodajne Fakture), na osnovu navedenog faktora prikupljanja." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Bodovi Lojalnosti: {0}" @@ -29627,7 +29653,7 @@ msgstr "Detalji Rasporeda Održavanja" msgid "Maintenance Schedule Item" msgstr "Artikal Rasporeda Održavanja" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Raspored održavanja nije generiran za sve artikle. Molimo kliknite na 'Generiraj Raspored'" @@ -29724,7 +29750,7 @@ msgstr "Posjeta Održavanja" msgid "Maintenance Visit Purpose" msgstr "Namjena Posjete Održavanja" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Datum početka održavanja ne može biti prije datuma dostave za serijski broj {0}" @@ -29871,7 +29897,7 @@ msgstr "Obavezno za Bilans Stanja" msgid "Mandatory For Profit and Loss Account" msgstr "Obavezno za Račun Rezultata" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Obavezno Nedostaje" @@ -29954,8 +29980,8 @@ msgstr "Ručni unos se ne može kreirati! Onemogući automatski unos za odgođen #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30177,7 +30203,7 @@ msgstr "Mapiranje Podizvođačkog Naloga ..." msgid "Mapping Subcontracting Order ..." msgstr "Mapiranje Podugovornog Naloga..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Mapiranje {0} u toku..." @@ -30355,10 +30381,6 @@ msgstr "Uskladi prijenose unutar 'N' dana" msgid "Matched" msgstr "Usklađeno" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "Usklađeno polje" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30385,7 +30407,7 @@ msgstr "Potrošnja Materijala" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Potrošnja Materijala za Proizvodnju" @@ -30496,7 +30518,7 @@ msgstr "Materijalni Nalog" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Datum Materijalnog Naloga" @@ -30546,7 +30568,7 @@ msgstr "Detalji Materijalnog Naloga" msgid "Material Request Item" msgstr "Artikal Materijalnog Naloga" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Broj Materijalnog Naloga" @@ -30568,7 +30590,7 @@ msgstr "Tip Materijalnog Naloga" msgid "Material Request already created for the ordered quantity" msgstr "Zahtjev za materijal već je kreiran za naručenu količinu" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Materijalni Nalog nije kreiran, jer je količina Sirovine već dostupna." @@ -30582,7 +30604,7 @@ msgstr "Materijalni Nalog od maksimalno {0} može se napraviti za artikal {1} na msgid "Material Request used to make this Stock Entry" msgstr "Materijalni Nalog korišten za izradu ovog Unosa Zaliha" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Materijalni Nalog {0} je otkazan ili zaustavljen" @@ -30702,14 +30724,14 @@ msgstr "Materijal Dobavljaču" msgid "Materials To Be Transferred" msgstr "Materijali koji će se Prenijeti" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Materijali su već primljeni naspram {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "Materijale je potrebno prebaciti u Skladište u Toku za Radnu Karticu {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30877,7 +30899,7 @@ msgstr "Megadžul" msgid "Megawatt" msgstr "Megavat" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Navedi Stopu Vrednovanja u Postavkama Artikla." @@ -30912,7 +30934,7 @@ msgstr "Napredak Spajanja" msgid "Merge similar Account Heads" msgstr "Spoji Slične Račune" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Spoji PDV iz više dokumenata" @@ -31258,7 +31280,7 @@ msgstr "Razni Troškovi" msgid "Mismatch" msgstr "Neusklađeno" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Nedostaje" @@ -31267,11 +31289,11 @@ msgstr "Nedostaje" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Nedostaje Račun" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "Nedostajući Računi" @@ -31296,11 +31318,11 @@ msgstr "Nedostaje Zavisnost" msgid "Missing Filters" msgstr "Nedostajući Filteri" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Nedostaje Finansijski Registar" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Nedostaje Gotov Proizvod" @@ -31308,7 +31330,7 @@ msgstr "Nedostaje Gotov Proizvod" msgid "Missing Formula" msgstr "Nedostaje Formula" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Nedostaje Artikal" @@ -31320,7 +31342,7 @@ msgstr "Nedostaje Parametar" msgid "Missing Payments App" msgstr "Nedostaje Aplikacija za Plaćanje" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "Nedostaje Obavezni Filter" @@ -31332,7 +31354,7 @@ msgstr "Nedostaje Serijski Broj Paket" msgid "Missing Warehouse" msgstr "Nedostaje Skladište" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "Nedostaje konfiguracija računa za {0}." @@ -31340,12 +31362,12 @@ msgstr "Nedostaje konfiguracija računa za {0}." msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Nedostaje šablon e-pošte za otpremu. Molimo postavite jedan u Postavkama Dostave." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Nedostaje obavezni filter: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Nedostaje vrijednost" @@ -31594,17 +31616,17 @@ msgstr "Više Računa" msgid "Multiple Accounts (Journal Template)" msgstr "Više Računa (Predložak Naloga Knjiženja)" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Višestruki Programi Lojalnosti pronađeni za Klijenta {}. Odaberi ručno." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "Višestruki Unos Otvaranja Blagajne" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Postoji više pravila za cijene s istim kriterijima, riješi sukob dodjeljivanjem prioriteta. Pravila Cijena: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31624,7 +31646,7 @@ msgstr "Dostupno je više polja tvrtke: {0}. Molimo odaberite ručno." msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Za datum {0} postoji više fiskalnih godina. Postavi Tvrtku u Fiskalnoj Godini" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "Više artikala se ne mogu označiti kao gotov proizvod" @@ -31633,10 +31655,10 @@ msgid "Music" msgstr "Muzika" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Mora biti Cijeli Broj" @@ -31721,11 +31743,7 @@ msgstr "Serija Imenovanja je obavezna" msgid "Naming Series options" msgstr "Opcije Imenovanja Serije" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "Serija Imenovanja ažurirana" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "Imenovanje serije '{0}' za DocType '{1}' ne sadrži standardni razdjelnik '.' ili '{{'. Koristi se rezervna ekstrakcija." @@ -31769,7 +31787,7 @@ msgstr "Treba Analiza" msgid "Negative Batch Report" msgstr "Izvještaj Negativne Šarže" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Negativna Količina nije dozvoljena" @@ -31779,12 +31797,12 @@ msgstr "Negativna Količina nije dozvoljena" msgid "Negative Stock" msgstr "Negativna Zaliha" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "Pogreška Negativne Zalihe" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Negativna Stopa Vrednovanja nije dozvoljena" @@ -31862,8 +31880,8 @@ msgstr "Neto Iznos" msgid "Net Amount (Company Currency)" msgstr "Neto Iznos (Valuta Tvrtke)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Neto Vrijednost Imovine kao na" @@ -31913,7 +31931,7 @@ msgstr "Neto Satnica" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Neto Profit" @@ -31921,7 +31939,7 @@ msgstr "Neto Profit" msgid "Net Profit Ratio" msgstr "Omjer Neto Dobiti" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Neto Rezultat" @@ -31935,11 +31953,11 @@ msgstr "Neto Rezultat" msgid "Net Purchase Amount" msgstr "Neto Iznos Nabave" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "Neto Iznos Nabave je obavezan" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "Neto Iznos Nabave treba biti jednak iznosu nabave jedne pojedinačne imovine." @@ -32183,7 +32201,7 @@ msgstr "Nova Fiskalna Godina - {0}" msgid "New Income" msgstr "Novi Prihod" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "Nova Faktura" @@ -32256,6 +32274,7 @@ msgid "New Task" msgstr "Novi Zadatak" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Nova Verzija" @@ -32268,9 +32287,9 @@ msgstr "Nov Naziv Skladišta" msgid "New Workplace" msgstr "Novi Radni Prostor" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Novo kreditno ograničenje je niže od trenutnog iznosa klijenta. Kreditno ograničenjemora biti najmanje {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32278,6 +32297,10 @@ msgstr "Novo kreditno ograničenje je niže od trenutnog iznosa klijenta. Kredit msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Nove fakture će se generirati prema rasporedu čak i ako su trenutne fakture neplaćene ili sa isteklim rokom dospijeća" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Novi datum izlaska bi trebao biti u budućnosti" @@ -32290,7 +32313,7 @@ msgstr "Novi revidirani proračun uspješno je kreiran" msgid "New task" msgstr "Novi Zadatak" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Nova {0} pravila određivanja cijena su kreirana" @@ -32354,16 +32377,15 @@ msgstr "Nije pronađenaTvrtka" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Nije pronađen Klijent za Transakcije Inter Tvrtke koji predstavlja Tvrtku {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "Nisu pronađeni Klijenti sa odabranim opcijama." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Nije odabrana Dostavnica za Klijenta {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "Nema DocTypes na popisu za brisanje. Molimo generirajte ili uvezite popis prije podnošenja." @@ -32371,15 +32393,15 @@ msgstr "Nema DocTypes na popisu za brisanje. Molimo generirajte ili uvezite popi msgid "No Impact on Accounting Ledger" msgstr "Nema utjecaja na Knjigovodstveni Registar" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Nema Artikla sa Barkodom {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Nema Artikla sa Serijskim Brojem {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "Nema odabranih artikala za prijenos." @@ -32422,11 +32444,6 @@ msgstr "Bez Dozvole" msgid "No Purchase Orders were created" msgstr "Nalozi Nabave nisu kreirani" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "Nema zapisa za ove postavke." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Bez Odabira" @@ -32529,6 +32546,10 @@ msgstr "Nije pronađena tvrtka." msgid "No contacts with email IDs found." msgstr "Nisu pronađeni kontakti s e-poštom." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Nema podataka za ovaj period" @@ -32574,7 +32595,7 @@ msgstr "Nije otpremljena datoteka niti naveden URL." msgid "No invoice linked" msgstr "Nije povezana faktura" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "Nema dostupnih artikala za prijenos." @@ -32611,10 +32632,6 @@ msgstr "Nema više podređenih na Lijevoj strani" msgid "No more children on Right" msgstr "Nema više podređenih na Desnoj strani" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "Nije definirana nijedna serija imenovanja" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Broj Dostava" @@ -32711,7 +32728,7 @@ msgstr "Nisu pronađene nepodmirene fakture" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Nijedna neplaćena faktura ne zahtijeva revalorizaciju kursa" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "Nema neplaćenih {0} pronađenih za {1} {2} koji ispunjavaju filtre koje ste naveli." @@ -32749,15 +32766,20 @@ msgstr "Nisu pronađene radnje usklađivanja" msgid "No record found" msgstr "Nije pronađen nijedan zapis" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "Nema zapisa u tabeli Dodjele" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "Nije pronađen zapis u tabeli Fakture" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "Nije pronađen zapis u tabeli Plaćanja" @@ -32786,7 +32808,7 @@ msgstr "Još nema postavljenih pravila" msgid "No stock available for this batch." msgstr "Nema dostupnih zaliha za ovu šaržu." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "Nisu kreirani unosi u glavnu knjigu zaliha. Molimo Vas da ispravno postavite količinu ili stopu vrednovanja za stavke i pokušate ponovno." @@ -32823,7 +32845,7 @@ msgstr "Bez Vrijednosti" msgid "No vouchers found for this transaction" msgstr "Nisu pronađeni vaučeri za ovu transakciju" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "Nije pronađeno skladište za {0}. Postavi Standard Skladište u Postavkama Artikala ili Postavkama Zaliha." @@ -32831,11 +32853,6 @@ msgstr "Nije pronađeno skladište za {0}. Postavi Standard Skladište u Postavk msgid "No {0} found for Inter Company Transactions." msgstr "Nije pronađen {0} za Transakcije među Tvrtkama." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "Br." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32887,7 +32904,7 @@ msgstr "Ne Nule" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "Ne može se kreirati Šarža koja nije fantomska za artikal koja nije na zalihi {0}." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Nijedan od artikala nema nikakve promjene u količini ili vrijednosti." @@ -32898,8 +32915,8 @@ msgid "Normal Balances" msgstr "Normalno Stanje" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "kom." @@ -32913,8 +32930,8 @@ msgstr "kom." msgid "Not Applicable" msgstr "Nije Primjenjivo" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Nije Dostupno" @@ -32977,10 +32994,6 @@ msgstr "Nije Započeto" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "Nije moguće pronaći najraniju Fiskalnu Godinu za zadanu tvrtku." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Nije dozvoljeno postavljanje alternativnog artikla za artikal {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Nije dozvoljeno kreiranje knjigovodstvene dimenzije za {0}" @@ -32997,10 +33010,6 @@ msgstr "Nije ovlašteno jer {0} premašuje ograničenja" msgid "Not authorized to edit frozen Account {0}" msgstr "Nije ovlašten za uređivanje zamrznutog računa {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "Nije konfigurirano" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "Nema na Zalihama" @@ -33013,7 +33022,7 @@ msgstr "Nema na Zalihama" msgid "Not permitted to make Purchase Orders" msgstr "Nije dopušteno da pravite Naloge Nabave" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "Nije dopušteno čitati Radni Nalog" @@ -33258,8 +33267,8 @@ msgid "Numeric Values" msgstr "Numeričke Vrijednosti" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Broj nije postavljen u XML datoteci" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33434,12 +33443,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Nakon postavljanja, ova faktura će biti na čekanju do postavljenog datuma" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "Nakon što je Radni Nalog Yatvoren. Ne može se ponovo otvoriti." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Jedan Klijent može biti dio samo jednog Programa Lojalnosti." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33473,7 +33482,7 @@ msgstr "Podržani su samo 'Unosi Plaćanja' naspram ovog predujam računa." msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Za uvoz podataka mogu se koristiti samo CSV i Excel datoteke. Provjeri format datoteke koji pokušavate učitati" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "Dopuštene su samo CSV datoteke" @@ -33538,7 +33547,7 @@ msgstr "Samo jedna operacija može imati odabranu opciju 'Je li Gotov Proizvod' msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "Samo jedna verzija Paketa Artikala može biti aktivna u datom trenutku za dati Nadređeni Artikal. Aktiviranje verzije deaktivira prethodno aktivnu verziju." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "Samo jedan {0} unos se može kreirati naspram Radnog Naloga {1}" @@ -33605,7 +33614,7 @@ msgstr "Otvori Događaj" msgid "Open Events" msgstr "Otvoreni Događaji" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Otvori Prikaz Obrasca" @@ -33758,7 +33767,7 @@ msgstr "Početno Stanje = Početak Razdoblja, Završno Stanje = Kraj Razdoblja, #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Detalji Početnog Stanja" @@ -33788,7 +33797,7 @@ msgstr "Datum Otvaranja" msgid "Opening Entry" msgstr "Početni Unos" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Kreiranja Početne Fakture u toku" @@ -33816,7 +33825,7 @@ msgstr "Početni Artikal Fakture" msgid "Opening Invoice Tool" msgstr "Alat Početne Fakture" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "Početna Faktura ima podešavanje zaokruživanja od {0}.

                    '{1}' račun je potreban za postavljanje ovih vrijednosti. Molimo postavite ga u kompaniji: {2}.

                    Ili, '{3}' se može omogućiti da se ne objavljuje nikakvo podešavanje zaokruživanja." @@ -33825,7 +33834,7 @@ msgstr "Početna Faktura ima podešavanje zaokruživanja od {0}.

                    '{1}' r msgid "Opening Invoices" msgstr "Početne Fakture" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Sažetak Početnih Faktura" @@ -33855,20 +33864,20 @@ msgstr "Početne Fakture Prodaje su kreirane." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Početna Zaliha" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "Početne zalihe mogu se postaviti samo za artikle na zalihi." -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "Početne zalihe se ne mogu kreirati jer već postoje transakcije zaliha za artikal {0}." -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "Početne zalihe za serijske ili šaržne artikle mora se postaviti putem Usklađivanje Zaliha." @@ -33877,7 +33886,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "Početno Usklađivanje Zaliha kreirano sa nultom stopom vrednovanja: {0}" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "Početno Usklađivanje Zaliha kreirano: {0}" @@ -33920,7 +33929,7 @@ msgstr "Trošak operativnih komponenti" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Operativni Trošak" @@ -34011,7 +34020,7 @@ msgstr "Broj Reda Operacije" msgid "Operation Time" msgstr "Operativno Vrijeme" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Vrijeme Operacije mora biti veće od 0 za operaciju {0}" @@ -34035,8 +34044,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "Operacija {0} ne pripada radnom nalogu {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Operacija {0} traje duže od bilo kojeg raspoloživog radnog vremena na radnoj stanici {1}, podijelite operaciju na više operacija" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34221,6 +34230,10 @@ msgstr "Prilika {0} je kreirana" msgid "Optimize Route" msgstr "Optimiziraj Rutu" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "Neobavezno. Odaberi određeni unos proizvodnje za poništavanje." @@ -34237,10 +34250,6 @@ msgstr "Opcija. Ova postavka će se koristiti za filtriranje u raznim transakcij msgid "Optional. Used with Financial Report Template" msgstr "Neobavezno. Koristi se s Predloškom Financijskog Izvješća" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "Po želji, postavite broj znamenki u nizu pomoću točke (.) nakon koje slijede ljestve (#). Na primjer, '.####' znači da će niz imati četiri znamenke. Zadano je pet znamenki." - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Iznos Naloga" @@ -34526,7 +34535,7 @@ msgid "Out of stock" msgstr "Nema u Zalihana" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "Zastarjeli Unos Otvaranja Blagajne" @@ -34580,7 +34589,7 @@ msgstr "Nepodmireno (Valuta Tvrtke)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34661,11 +34670,11 @@ msgstr "Dopušteno Prekoračenje Naloga (%)" msgid "Over Picking Allowance (%)" msgstr "Dozvola za prekomjernu Odabir (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "Preko Dostavnice" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "Prekmjerni Prijema/Dostava {0} {1} zanemareno za artikal {2} jer imate {3} ulogu." @@ -34682,14 +34691,14 @@ msgstr "Dozvola za prekomjerni Prenos (%)" msgid "Over Withheld" msgstr "Preko Odbitka" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "Prekomjerno Fakturisanje {0} {1} zanemareno za artikal {2} jer imate {3} ulogu." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "Prekomjerno Fakturisanje {} zanemareno jer imate {} ulogu." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34738,10 +34747,6 @@ msgstr "Dospjeli Zadaci" msgid "Overdue and Discounted" msgstr "Dospjela i Snižena" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Preklapanje u bodovanju između {0} i {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Uvjeti koji se preklapaju pronađeni između:" @@ -34807,6 +34812,11 @@ msgstr "PAN Broj" msgid "PCV" msgstr "Verifikat Zatvaranje Perioda" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "Verifikat Zatvaranje Perioda je pauziran" @@ -34854,7 +34864,7 @@ msgstr "Blagajna" msgid "POS Additional Fields" msgstr "Dodatna polja Kase" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "Blagajna Zatvorena" @@ -34952,8 +34962,8 @@ msgid "POS Invoice is not submitted" msgstr "Faktura Blagajne nije podnešena" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "Fakturu Blagajne nije kreirao korisnik {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35012,7 +35022,7 @@ msgstr "Unos Otvaranja Blagajne - {0} je zastario. Zatvori Blagajnu i kreiraj no msgid "POS Opening Entry Cancellation Error" msgstr "Greška pri otkazivanju Unosa Otvaranja Blagajne" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "Unos Otvaranje Blagajne Otkazan" @@ -35033,7 +35043,7 @@ msgstr "Početni Unos Kase Nedostaje" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "Unos Otvarnja Blagajne ne može se otkazati jer postoje nekonsolidovane fakture." -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "Unos Otvaranja Blagajne je otkazan. Osvježi stranicu." @@ -35056,7 +35066,7 @@ msgstr "Način Plaćanja Kase" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "Profil Blagajne" @@ -35076,8 +35086,8 @@ msgstr "Korisnik Profila Blagajne" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "Profil Blagajne ne poklapa se s {}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35088,20 +35098,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "Kasa Profil {0} ne može se onemogućiti jer su u tijeku Kasa sesije." #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "Profil Blagajne {} sadrži ovaj način plaćanja {}. Uklonite ga da onemogućite ovaj način." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "Kasa Profil {} ne pripada {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "Kasa Profil {} ne postoji." +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "Kasa Profil {} je onemogućen." +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35130,11 +35140,11 @@ msgstr "Kasa Postavke" msgid "POS Transactions" msgstr "Transakcije Blagajne" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "Blagajna je zatvorena u {0}. Osvježi Stranicu." -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "Faktura Blagajne {0} je uspješno kreirana" @@ -35153,7 +35163,7 @@ msgstr "PSOA Projekat" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "Broj(evi) Paketa su već u upotrebi. Pokušajte od Paketa broj {0}" @@ -35778,7 +35788,7 @@ msgstr "Dijelova na Milion" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35905,7 +35915,7 @@ msgstr "Šarža se ne poklapa" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35991,7 +36001,7 @@ msgstr "Specifični Artikal Stranke" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36012,7 +36022,7 @@ msgstr "Tip Stranke" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "Tip Stranke i Stranka mogu se postaviti samo za račun Potraživanja / Plaćanja

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Tip Stranke i Strana su obavezni za {0} račun" @@ -36048,8 +36058,8 @@ msgid "Party is required" msgstr "Stranka je Obavezna" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." -msgstr "Stranka je obavezna za kreiranje unosa plaćanja." +msgid "Party is required to create a payment entry." +msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 msgid "Party type is required to create a payment entry." @@ -36558,7 +36568,7 @@ msgstr "Reference Uplate" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36633,7 +36643,7 @@ msgstr "Raspored Plaćanja" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "Zahtjevi za plaćanje temeljeni na rasporedu plaćanja ne mogu se kreirati jer za ovaj dokument već postoji unos plaćanja." -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "Rasporedi Plaćanja" @@ -36655,7 +36665,7 @@ msgstr "Rasporedi Plaćanja" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36755,8 +36765,8 @@ msgid "Payment Type" msgstr "Tip Plaćanja" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Tip Plaćanja mora biti Uplata, Isplata i Interni Prijenos" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36962,11 +36972,11 @@ msgstr "Današnje Aktivnosti na Čekanju" msgid "Pending processing" msgstr "Obrada na Čekanju" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "Količina na čekanju ne može biti veća od tražene količine." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "Količina na čekanju ne može biti negativna." @@ -37483,12 +37493,12 @@ msgstr "Plaid Korisnik" msgid "Plaid Environment" msgstr "Plaid Okruženje" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Plaid Veya nije uspjela" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Obavezno Ažuriranje Plaid Veze" @@ -37510,7 +37520,7 @@ msgstr "Plaid Tajna" msgid "Plaid Settings" msgstr "Plaid Postavke" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Greška pri sinhronizaciji Plaid transakcija" @@ -37661,15 +37671,6 @@ msgstr "Postrojenja i Mašinerije" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Popuni Zalihe Artikala i ažuriraj Listu Odabira da nastavite. Za prekid, otkaži Listu Odabira." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Odaberi Tvrtku" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Odaberi Tvrtku." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37677,7 +37678,6 @@ msgstr "Odaberi Klijenta" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Odaberi Dobavljača" @@ -37685,19 +37685,19 @@ msgstr "Odaberi Dobavljača" msgid "Please Set Priority" msgstr "Postavi Prioritet" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Podstavi Grupu Dobavljača u Postavkama Nabave." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Navedi Račun" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Dodaj ulogu 'Dobavljač' korisniku {0}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Dodajte Način Plaćanja i detalje o Početnom Stanju." @@ -37713,7 +37713,7 @@ msgstr "Dodaj Zahtjev za Ponudu na bočnu traku u Postavci Portala." msgid "Please add Root Account for - {0}" msgstr "Dodaj Root Račun za - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Dodaj Račun za Privremeno Otvaranje u Kontni Plan" @@ -37721,35 +37721,32 @@ msgstr "Dodaj Račun za Privremeno Otvaranje u Kontni Plan" msgid "Please add an account for the Bank Entry rule." msgstr "Dodaj račun za pravilo bankovnog unosa." -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." -msgstr "Dodaj barem jednu seriju imenovanja." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" +msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "Dodaj barem jedan red u Postavke Artikala sa tvrtkom prije postavljanja početnih zaliha." -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Molimo dodaj barem jedan Serijski Broj/Šaržni Broj" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Dodaj kolonu Bankovni Račun" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Dodaj Račun Matičnoj Tvrtki - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Dodaj Račun Matičnoj Tvrtki - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Dodaj {1} ulogu korisniku {0}." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Podesi količinu ili uredi {0} da nastavite." @@ -37791,7 +37788,7 @@ msgstr "Odaberi ili s operacijama ili operativnim troškovima zasnovanim na Goto msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "Odaberi 'Omogući Serijski i Šaržni broj za Artikal' u {0} kako biste kreirali Paket Serijskih i Šaržnih brojeva za artikal." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Provjeri poruku o grešci i poduzmite potrebne radnje da popravite grešku, a zatim ponovo pokrenite ponovno knjiženje." @@ -37804,11 +37801,11 @@ msgstr "Provjeri Plaid ID klijenta i tajne vrijednosti" msgid "Please check your email to confirm the appointment" msgstr "Provjeri e-poštu da potvrdite termin" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Klikni na 'Generiraj Raspored'" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Klikni na 'Generiraj Raspored' da preuzmeš serijski broj dodan za Artikal {0}" @@ -37824,15 +37821,15 @@ msgstr "Molimo vas da prvo završite posao prije unosa količine na čekanju" msgid "Please configure accounts for the Bank Entry rule." msgstr "Konfiguriraj račune za pravilo bankovnog unosa." -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Kontaktiraj bilo kojeg od sljedećih korisnika da produžite kreditna ograničenja za {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Kontaktiraj bilo kojeg od sljedećih korisnika da {} ovu transakciju." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Kontaktiraj administratora da produži kreditna ograničenja za {0}." @@ -37840,11 +37837,11 @@ msgstr "Kontaktiraj administratora da produži kreditna ograničenja za {0}." msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Pretvori nadređeni račun u odgovarajućoj podređenoj tvrtki u grupni račun." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Kreiraj Klijenta od Potencijalnog Klijenta {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Kreiraj verifikate za Obračunate Troškove naspram Faktura koje imaju omogućenu opciju „Ažuriraj Zalihe“." @@ -37856,7 +37853,7 @@ msgstr "Kreiraj novu Knjigovodstvenu Dimenziju ako je potrebno." msgid "Please create purchase from internal sale or delivery document itself" msgstr "Kreiraj nabavu iz interne prodaje ili samog dokumenta dostave" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Kreiraj Račun Nabave ili Fakturu Nabave za artikal {0}" @@ -37868,11 +37865,11 @@ msgstr "Izbriši Artikal Paket {0}, prije spajanja {1} u {2}" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "Molimo vas da privremeno onemogućite tijek rada za Nalog Knjiženja {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Ne knjiži trošak više imovine naspram pojedinačne imovine." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Ne Kreiraj više od 500 artikala odjednom" @@ -37897,8 +37894,8 @@ msgid "Please enable {0} in the {1}." msgstr "Omogući {0} u {1}." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Omogući {} u {} da dopusti isti artikal u više redova" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37909,12 +37906,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Potvrdi da je {0} račun {1} Troškovni račun. Možete promijeniti vrstu računa u Troškovni ili odabrati drugi račun." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Potvrdi je li {} račun račun Bilansa Stanja." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Potvrdi da je {} račun {} račun Potraživanja." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37929,7 +37926,7 @@ msgstr "Unesi Račun za Kusur" msgid "Please enter Approving Role or Approving User" msgstr "Unesi Odobravajuća Uloga ili Odobravajućeg Korisnika" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Molimo unesite broj Šarže" @@ -37945,7 +37942,7 @@ msgstr "Unesi Datum Dostave" msgid "Please enter Employee Id of this sales person" msgstr "Unesi ID Osoblja ovog Prodavača" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Unesi Račun Troškova" @@ -37954,7 +37951,7 @@ msgstr "Unesi Račun Troškova" msgid "Please enter Item Code to get Batch Number" msgstr "Unesi Kod Artikla da preuzmete Broj Šarže" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Unesi Kod Artikla da preuzmete Broj Šarže" @@ -37990,7 +37987,7 @@ msgstr "Unesi Referentni Datum" msgid "Please enter Root Type for account- {0}" msgstr "Unesi Kontnu Klasu za račun- {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Molimo unesite Serijski Broj" @@ -38120,8 +38117,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "Molimo vas da generirate popis za brisanje prije podnošenja" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Uvezi račune naspram matične tvrtke ili omogući {} u Postavkama Tvrtke." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38156,11 +38153,7 @@ msgstr "Navedi Trenutnu i Novu Sastavnicu za zamjenu." msgid "Please pull items from Delivery Note" msgstr "Preuzmi Artikle iz Dostavnice" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Ispravi i pokušaj ponovo." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Osvježi ili poništi Plaid vezu od Banke {}." @@ -38189,12 +38182,12 @@ msgstr "Sačuvaj Prodajni Nalog prije dodavanja rasporeda dostave." msgid "Please select Template Type to download template" msgstr "Odaberi Tip Šablona za preuzimanje šablona" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Odaberi Primijeni Popust na" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Odaberi Sastavnicu naspram Artikla {0}" @@ -38210,9 +38203,9 @@ msgstr "Odaberi Bankovni Račun" msgid "Please select Category first" msgstr "Odaberi Kategoriju" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Odaberi Tip Naknade" @@ -38222,8 +38215,8 @@ msgstr "Odaberi Tvrtku" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Odaberi Kompaniju i datum knjićenja da biste preuzeli unose" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38245,7 +38238,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Odaberi Postojeću Tvrtku za izradu Kontnog Plana" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Molimo odaberi Artikal Gotovog Proizvoda za servisni artikal {0}" @@ -38254,6 +38247,10 @@ msgstr "Molimo odaberi Artikal Gotovog Proizvoda za servisni artikal {0}" msgid "Please select Item Code first" msgstr "Odaberi Kod Artikla" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Odaberi Status Održavanja kao Dovršeno ili uklonite Datum Završetka" @@ -38278,11 +38275,11 @@ msgstr "Odaberi Datum knjiženja prije odabira Stranke" msgid "Please select Posting Date first" msgstr "Odaberi Datum Knjiženja" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Odaberi Cjenovnik" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Odaberi Količina naspram Artikla {0}" @@ -38311,6 +38308,7 @@ msgid "Please select a BOM" msgstr "Odaberi Sastavnicu" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Odaberi Tvrtku" @@ -38318,11 +38316,12 @@ msgstr "Odaberi Tvrtku" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Odaberi Tvrtku." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Odaberi Klijenta" @@ -38331,7 +38330,7 @@ msgstr "Odaberi Klijenta" msgid "Please select a Delivery Note" msgstr "Odaberi Dostavnicu" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Odaberi Podugovorni Nalog Nabave." @@ -38343,7 +38342,7 @@ msgstr "Odaberi Dobavljača" msgid "Please select a Warehouse" msgstr "Odaberi Skladište" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Odaberi Radni Nalog." @@ -38359,6 +38358,7 @@ msgstr "Molimo odaberite bankovni račun za pregled izvoda o usklađivanju banko msgid "Please select a bank and set the date range" msgstr "Molimo odaberite banku i postavite raspon datuma" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "Odaberi Tvrtku." @@ -38392,22 +38392,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "Odaberi učestalost za raspored dostave" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Odaberi red za kreiranje Unosa Ponovnog Knjiženje" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Odaberi Dobavljača za preuzimanje plaćanja." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "Odaberi Transakciju." - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Odaberi važeći Nalog Nabave koji je konfigurisan za Podugovor." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Odaberi Vrijednost za {0} Ponuda za {1}" @@ -38416,7 +38420,7 @@ msgstr "Odaberi Vrijednost za {0} Ponuda za {1}" msgid "Please select an item code before setting the warehouse." msgstr "Odaberite kod artikla prije postavljanja skladišta." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "Molimo odaberite barem jednu vrijednost atributa" @@ -38424,10 +38428,18 @@ msgstr "Molimo odaberite barem jednu vrijednost atributa" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Molimo odaberite barem jedan filter: Šifra Artikla, Šarža ili Serijski Broj." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "Molimo odaberite barem jedan artikal za ažuriranje dostavljene količine." +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Molimo odaberite barem jedan redak za ispravljanje" @@ -38436,18 +38448,10 @@ msgstr "Molimo odaberite barem jedan redak za ispravljanje" msgid "Please select at least one row with difference value" msgstr "Odaberi barem jedan red s vrijednošću razlike" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "Odaberi barem jedan raspored." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "Odaberi jedan artikal za nastavak" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "Odaberi barem jednu operaciju za izradu kartice posla" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Odaberi tačan račun" @@ -38485,12 +38489,12 @@ msgstr "Odaber artikle za rezervaciju." msgid "Please select items to unreserve." msgstr "Odaberi artikle koje želite izbrisati iz rezervacije." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Odaberi samo jedan red da kreirate Unos Ponovnog Knjiženja" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Odaberi redove da kreirate unose za ponovno knjiženje" @@ -38499,8 +38503,8 @@ msgid "Please select the Company" msgstr "Odaberi Tvrtku" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Odaberi Tip Višeslojnog Programa za više od jednog pravila prikupljanja." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38523,20 +38527,16 @@ msgstr "Odaberi tip dokumenta." msgid "Please select the required filters" msgstr "Odaberi obavezne filtere" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Odaberi važeći tip dokumenta." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Odaberi sedmične neradne dane" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Odaberi {0}" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Postavi 'Primijeni Dodatni Popust Na'" @@ -38565,8 +38565,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Postavi Račun u Skladištu {0} ili Standard Račun Zaliha u Kompaniji {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Postavi Knjigovodstvenu Dimenziju {} u {}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38595,22 +38595,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Postavi E-poštu/Telefon za kontakt" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Postavi Fiskalni Kod za Klijenta '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Postavi Fiskalni Kod za Klijenta '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Postavi Fiskalni Kod za Javnu Upravu '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Postavi Fiskalni Kod za Javnu Upravu '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "Postavi Račun Osnovne Imovine u Kategoriju Imovine {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Postavi Račun Fiksne Imovine u {} naspram {}." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38626,9 +38624,8 @@ msgid "Please set Root Type" msgstr "Postavi Kontni Tip" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Postavi Fiskalni Broj za Klijenta '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Postavi Fiskalni Broj za Klijenta '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38647,15 +38644,15 @@ msgid "Please set a Company" msgstr "Postavi Tvrtku" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Postavi Centar Troškova za Imovinu ili postavite Centar Troškova Amortizacije za tvrtku {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "Postavi Privremeni Početni Račun za {0} kako biste kreirali početno usklađivanje zaliha." -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Postavi standard Listu Praznika za Tvrtku {0}" @@ -38672,9 +38669,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "Postavi stvarnu potražnju ili prognozu prodaje kako biste generirali izvješće o planiranju potreba za materijalom." #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Postavi Adresu Tvrtke '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "Postavi Adresu Tvrtke '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38692,25 +38688,22 @@ msgstr "Postavi barem jedan red u Tabeli PDV-a i Naknada" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "Postavi Porezni i Fiskalni Broj za {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Načine Plaćanja {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Postavi Standard Račun Rezultata u Tvrtki {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38741,11 +38734,11 @@ msgstr "Postavi filter na osnovu Artikla ili Skladišta" msgid "Please set one of the following:" msgstr "Postavi jedno od sljedećeg:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "Postavi početni broj knjižene amortizacije" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Postavi ponavljanje nakon spremanja" @@ -38753,7 +38746,7 @@ msgstr "Postavi ponavljanje nakon spremanja" msgid "Please set the Customer Address" msgstr "Postavi Adresu Klienta" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Postavi Standard Centar Troškova u {0} tvrtki." @@ -38808,7 +38801,7 @@ msgstr "Postavi {0} u Tvrtku {1} kako biste knjižili rezultat tečaja" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Postavi {0} na {1}, isti račun koji je korišten u originalnoj fakturi {2}." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Podesi i omogući grupni račun sa Kontnom Klasom - {0} za Tvrtku {1}" @@ -38816,7 +38809,7 @@ msgstr "Podesi i omogući grupni račun sa Kontnom Klasom - {0} za Tvrtku {1}" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Podijeli ovu e-poštu sa svojim timom za podršku kako bi mogli pronaći i riješiti problem." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Navedi Tvrtku" @@ -38826,8 +38819,8 @@ msgstr "Navedi Tvrtku" msgid "Please specify Company to proceed" msgstr "Navedi Tvrtku za nastavak" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Navedi važeći ID reda za red {0} u tabeli {1}" @@ -38835,11 +38828,11 @@ msgstr "Navedi važeći ID reda za red {0} u tabeli {1}" msgid "Please specify a {0} first." msgstr "Navedi {0}." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Navedi barem jedan atribut u tabeli Atributa" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Navedi ili Količinu ili Stopu Vrednovanja ili oboje" @@ -38847,6 +38840,14 @@ msgstr "Navedi ili Količinu ili Stopu Vrednovanja ili oboje" msgid "Please specify from/to range" msgstr "Navedi od/Do Raspona" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Pokušaj ponovo za sat vremena." @@ -39010,7 +39011,7 @@ msgstr "Objavljeno" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39035,7 +39036,7 @@ msgstr "Objavljeno" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39078,8 +39079,8 @@ msgstr "Datuma Knjiženja" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Datum knjiženja ne može biti budući datum" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39087,7 +39088,7 @@ msgstr "Datum knjiženja ne može biti budući datum" msgid "Posting Date inheritance for exchange gain / loss" msgstr "Nasljeđivanje Datuma Knjiženja za rezultat od tečaja" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "Datum registracije promijenit će se u današnji datum jer nije aktivirano \"Uredi Datum i Vrijeme Registracije\". Jeste li sigurni da želite nastaviti?" @@ -39280,6 +39281,10 @@ msgstr "Unaprijed Plaćeno (faktura na početku razdoblja)" msgid "Prepaid Expenses" msgstr "Uplaćeni Troškovi" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "Predsjednik" @@ -39369,7 +39374,7 @@ msgstr "Pregled Transakcija" msgid "Preview mode" msgstr "Način Prikaza" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Prethodna Finansijska Godina nije zatvorena" @@ -39511,7 +39516,7 @@ msgstr "Cijenovnik Zemlje" msgid "Price List Currency" msgstr "Valuta Cijenovnika" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Valuta Cijenovnika nije odabrana" @@ -39632,7 +39637,7 @@ msgstr "Cijena ne ovisi o Jedinici" msgid "Price Per Unit ({0})" msgstr "Cijena po Jedinici ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "Cijena nije određena za artikal." @@ -39743,7 +39748,7 @@ msgstr "Cijenovno Pravilo se prvo bira na osnovu polja 'Primijeni na', koje mož msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "Cijenovno Pravilo je napravljeno da zamjeni cijenovnik / definiše ppostotak popusta, na temelju određenih kriterija." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "Pravilo Određivanja Cijena {0} je ažurirano" @@ -39951,8 +39956,8 @@ msgid "Priorities" msgstr "Prioriteti" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "Prioritet ne može biti manji od 1." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40133,7 +40138,7 @@ msgstr "Obradi Pretplatu" msgid "Process in Single Transaction" msgstr "Obrada u Jednoj Transakciji" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "Količina gubitaka u procesu ne može biti negativna." @@ -40259,7 +40264,7 @@ msgstr "Paket Proizvoda" msgid "Product Bundle Balance" msgstr "Stanje Paketa Proizvoda" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "Komponenta Paketa Artikala" @@ -40284,7 +40289,7 @@ msgstr "Pomoć Paketa Proizvoda" msgid "Product Bundle Item" msgstr "Artikal Paketa Proizvoda" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "Nadređeni Paket Artikala" @@ -40487,7 +40492,7 @@ msgstr "Proizvodi" msgid "Profit & Loss" msgstr "Rezultat" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Rezultat ove Godine" @@ -40516,6 +40521,10 @@ msgstr "Rezultat" msgid "Profit and Loss Statement" msgstr "Bilans Uspjeha" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40524,8 +40533,8 @@ msgstr "Bilans Uspjeha" msgid "Profit and Loss Summary" msgstr "Sažetak Rezultata" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Rezultat za Godinu" @@ -40598,7 +40607,7 @@ msgstr "Status Projekta" msgid "Project Summary" msgstr "Sažetak Projekta" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Sažetak Projekta za {0}" @@ -40678,7 +40687,7 @@ msgstr "Projektno Praćenje Zaliha" msgid "Project wise Stock Tracking " msgstr "Projektno Praćenje Zaliha " -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Projektni Podaci nisu dostupni za Ponudu" @@ -40729,7 +40738,7 @@ msgstr "Predviđena Količina" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40875,7 +40884,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Prospekti Angažovani, ali ne i Preobraćeni" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "Zaštićeni DocType" @@ -40908,9 +40917,9 @@ msgstr "Privremeni Račun (Usluga)" msgid "Provisional Expense Account" msgstr "Račun Privremenih Troškova" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Privremeni Rezultat (Kredit)" @@ -41138,8 +41147,8 @@ msgstr "Povijest Fakture Nabave" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Nabavna Faktura ne može biti napravljena naspram postojeće imovine {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Nabavna Faktura {0} je već podnešena" @@ -41180,7 +41189,7 @@ msgstr "Nabavne Fakture" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41204,11 +41213,11 @@ msgstr "Nabavne Fakture" msgid "Purchase Order" msgstr "Nalog Nabave" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Iznos Nabavnog Naloga" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Iznos Nabavnog Naloga (Valuta Tvrtke)" @@ -41223,7 +41232,7 @@ msgstr "Iznos Nabavnog Naloga (Valuta Tvrtke)" msgid "Purchase Order Analysis" msgstr "Statistika Nabavnog Naloga" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Datum Nabavnog Naloga" @@ -41272,8 +41281,8 @@ msgid "Purchase Order Required" msgstr "Nalog Nabave Obavezan" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Nalog Nabave je obavezan za artikal {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41332,8 +41341,8 @@ msgid "Purchase Orders to Receive" msgstr "Nalozi Nabave za Primitak" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Nalozi Nabave {0} nisu povezani" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41422,8 +41431,8 @@ msgid "Purchase Receipt Required" msgstr "Nabavni Račun je Obavezan" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Račun Nabave je obavezan za artikal {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41442,8 +41451,8 @@ msgid "Purchase Receipt Trends " msgstr "Statistika Nabavnog Računa " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Račun Nabave nema nijedan artikal za koju je omogućeno Zadržavanje Uzorka." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41670,7 +41679,7 @@ msgstr "K4" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41689,7 +41698,7 @@ msgstr "K4" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41754,7 +41763,7 @@ msgstr "Količina Nakon Transakcije" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41791,7 +41800,7 @@ msgstr "Količina po Jedinici" msgid "Qty To Manufacture" msgstr "Količina za Proizvodnju" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "Količina za Proizvodnju ({0}) ne može biti razlomak za Jedinicu {2}. Da biste to omogućili, onemogući '{1}' u Jedinici {2}." @@ -41886,7 +41895,7 @@ msgstr "Količina za Potrošnju" msgid "Qty to Bill" msgstr "Količina za Fakturisanje" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Količina za Proizvodnju" @@ -42072,7 +42081,7 @@ msgstr "Inspekcija Kvaliteta" msgid "Quality Inspection Analysis" msgstr "Analiza Kontrole Kvaliteta" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "Kontrola Kvalitete nije Konfigurirana" @@ -42149,7 +42158,7 @@ msgstr "Kontrola kvalitete {0} nije podnesena za artikal: {1}" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "Kontrola kvalitete {0} je odbijena za artikal: {1}" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Kontrola Kvaliteta" @@ -42232,7 +42241,7 @@ msgstr "Pregled Kvaliteta" msgid "Quality Review Objective" msgstr "Cilj Revizije Kvaliteta" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "Količine su uspješno ažurirane." @@ -42276,12 +42285,12 @@ msgstr "Količine su uspješno ažurirane." #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42432,7 +42441,7 @@ msgstr "Količina je obavezna" msgid "Quantity must be greater than zero" msgstr "Količina mora biti veća od nule" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "Količina mora biti veća od nule." @@ -42460,11 +42469,11 @@ msgstr "Količina bi trebala biti veća od 0" msgid "Quantity to Manufacture" msgstr "Količina za Proizvodnju" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "Količina za proizvodnju ne može biti nula za operaciju {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Količina za Proizvodnju mora biti veća od 0." @@ -42472,6 +42481,10 @@ msgstr "Količina za Proizvodnju mora biti veća od 0." msgid "Quantity to Scan" msgstr "Količina za Skeniranje" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42497,7 +42510,7 @@ msgstr "Četvrtina {0} {1}" msgid "Query Route String" msgstr "Niz Rute Upita" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "Veličina Reda čekanja treba biti između 5 i 100" @@ -42737,7 +42750,7 @@ msgstr "Podigao (e-pošta)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42921,8 +42934,8 @@ msgid "Rate at which this tax is applied" msgstr "PDV Stopa" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "Cijena artikala '{}' ne može se promijeniti" +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43240,7 +43253,7 @@ msgstr "Razlog za Stavljanje Na Čekanje" msgid "Reason for Failure" msgstr "Razlog Neuspjeha" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Razlog Čekanja" @@ -43482,8 +43495,8 @@ msgstr "Lista Primatelja je prazna. Kreiraj Listu Primatelja" msgid "Receiving" msgstr "Preuzima se" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Nedavni Nalozi" @@ -43659,6 +43672,10 @@ msgstr "Zabilježite unos plaćanja za klijenta ili dobavljača" msgid "Record a transfer between two bank accounts" msgstr "Zabilježite prijenos između dva bankovna računa" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43709,7 +43726,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Rekurzija preko Količine ne može biti manja od 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "Sustav ne podržava rekurzivne popuste sa mješovitim uvjetima" @@ -43789,7 +43806,7 @@ msgstr "Referenca #" msgid "Reference #{0} dated {1}" msgstr "Referenca #{0} datirana {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Referentni Datum za popust pri ranijem plaćanju" @@ -44081,8 +44098,8 @@ msgid "Rejected Warehouse" msgstr "Odbijeno Skladište" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Odbijeno i Prihvaćeno Skladište ne mogu biti isto." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44188,7 +44205,7 @@ msgstr "Napomena" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44227,7 +44244,7 @@ msgstr "Ukloni nula brojeva" msgid "Remove item if charges is not applicable to that item" msgstr "Ukloni artikal ako se na taj artikal ne naplaćuju naknade" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Uklonjeni artikli bez promjene Količine ili Vrijednosti." @@ -44379,7 +44396,7 @@ msgstr "Prijavi Grešku" msgid "Report Line Items" msgstr "Stavka Retka Izvješća" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44462,7 +44479,7 @@ msgstr "Zapisnik Grešaka Ponovnog Knjiženja" msgid "Repost Item Valuation" msgstr "Ponovo Knjiži Vrijednost Artikla" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "Ponovno knjiženje vrednovanja stavke ponovno je pokrenuto za odabrane neuspješne zapise." @@ -44508,6 +44525,15 @@ msgstr "Ponovno Knjiženje je započeto u pozadini" msgid "Reposting Data File" msgstr "Datoteke Podataka Ponovnog Knjiženja" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44592,7 +44618,7 @@ msgstr "Obavezno do Datuma" msgid "Reqd Qty (BOM)" msgstr "Zahtjevana količina (Sastavnica)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Obavezno do Datuma" @@ -44708,11 +44734,11 @@ msgstr "Zatražena Količina" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Zatražena Količina: Zatražena količina za nabavu, ali nije naručena." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Stranica Zahtjeva" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Podnosioc" @@ -44891,6 +44917,10 @@ msgstr "Rezerviši Zalihe" msgid "Reserve Warehouse" msgstr "Rezervno Skladište" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "Rezerviši za Sirovine" @@ -44929,8 +44959,8 @@ msgid "Reserved Qty" msgstr "Rezervisana Količina" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "Rezervisana Količina ({0}) ne može biti razlomak. Da biste to omogućili, onemogući '{1}' u Jedinici {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Rezervisana Količina ({0}) ne može biti razlomak. Da biste to omogućili, onemogući '{1}' u Jedinici {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44974,7 +45004,7 @@ msgstr "Rezervisana Količina" msgid "Reserved Quantity for Production" msgstr "Rezervisana Količina za Proizvodnju" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Rezervisani Serijski Broj" @@ -44990,13 +45020,13 @@ msgstr "Rezervisani Serijski Broj" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Rezervisane Zalihe" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Rezervisane Zalihe za Šaržu" @@ -45490,6 +45520,10 @@ msgstr "Vraćeni Devizni Kurs nije ni ceo broj ni zarezni broj." msgid "Returns" msgstr "Povrati" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45914,11 +45948,11 @@ msgstr "Naziv Redoslijeda Operacija" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Red # {0}: Ne može se vratiti više od {1} za artikal {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Red # {0}: Dodaj Serijski i Šaržni Paket za Artikal {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "Redak br. {0}: Unesite količinu za stavku {1} jer nije nula." @@ -46002,23 +46036,23 @@ msgstr "Red #{0}: Sastavnica nije pronađena za Gotov Proizvod {1}" msgid "Row #{0}: Batch No {1} is already selected." msgstr "Red #{0}: Broj Šarže {1} je već odabran." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "Red #{0}: Šaržni Broj(evi) {1} nije u povezanom Podugovaračkom Nalogu. Odaberi važeće Šaržne broj(eve)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Red #{0}: Ne može se dodijeliti više od {1} naspram uslova plaćanja {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "Red #{0}: Ne može se otkazati ovaj Unos Proizvodnih Zaliha jer fakturisana količina artikla {1} ne može biti veća od potrošene količine." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "Red #{0}: Ne može se poništiti ovaj unos proizvodnih zaliha jer količina proizvedenog sekundarnog artikla {1} ne može biti manja od isporučene količine." -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "Red #{0}: Ne može se otkazati ovaj Unos Zaliha jer vraćena količina ne može biti veća od isporučene količine za artikal {1} u povezanom Podizvođačkom Nalogu" @@ -46094,13 +46128,16 @@ msgstr "Red #{0}: Nije pronađeno dovoljno {1} unosa za usklađivanje. Preostali msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Red #{0}: Kumulativni prag ne može biti manji od praga pojedinačne transakcije" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "Red #{0}: Klijent Dostavljen Artikal {1} naspram Artikla Internog Podizvođačkog Naloga {2} ({3}) ne može se dodati više puta." -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "Red #{0}: Klijent Dostavljen Artikal {1} ne može se dodati više puta u Podizvođačkom procesu." @@ -46112,7 +46149,7 @@ msgstr "Red #{0}: Klijent Dostavljen Artikal {1} ne može se dodati više puta." msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "Red #{0}: Klijent Dostavljeni Artikal {1} ne postoji u tabeli Obaveznih Artikala povezanih s Interim Podizvođačkim Nalogom." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "Red #{0}: Klijent Dostavljen Artikal {1} premašuje količinu dostupnu putem Podizvođačkog Naloga" @@ -46120,12 +46157,12 @@ msgstr "Red #{0}: Klijent Dostavljen Artikal {1} premašuje količinu dostupnu p msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "Red #{0}: Klijent Dostavljeni Artikal {1} nema dovoljnu količinu u Internom Podizvođačkom Nalogu. Dostupna količina je {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Red #{0}: Klijent Dostavljeni Artikal {1} nije u Podizvođačkom Nalogu {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "Red #{0}: Klijent Dostavljen Artikal {1} nije u Radnom Nalogu {2}" @@ -46137,7 +46174,7 @@ msgstr "Red #{0}: Datumi se preklapaju s drugim redom u grupi {1}" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Red #{0}: Standard Sastavnica nije pronađena za gotov proizvod artikla {1}" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Red #{0}: Početni Datum Amortizacije je obavezan" @@ -46145,6 +46182,10 @@ msgstr "Red #{0}: Početni Datum Amortizacije je obavezan" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Red #{0}: Duplikat unosa u Referencama {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Red #{0}: Očekivani Datum Isporuke ne može biti prije datuma Nabavnog Naloga" @@ -46157,11 +46198,18 @@ msgstr "Red #{0}: Račun Troškova nije postavljen za artikal {1}. {2}" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "Red #{0}: Račun troškova {1} nije važeći za Fakturu Nabave {2}. Dopušteni su samo računi troškova za artikle koji nisu na zalihama." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Red #{0}: Količina gotovog proizvoda artikla ne može biti nula" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46184,8 +46232,8 @@ msgstr "Red #{0}: Gotov Proizvod mora biti {1}" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "Red #{0}: Gotov Proizvod referenca je obavezna za Sekundarni Artikal {1}." -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "Red #{0}: Za artikal koju je obezbijedio Klijent {1}, izvorno skladište mora biti {2}" @@ -46197,7 +46245,7 @@ msgstr "Red #{0}: Za {1}, možete odabrati referentni dokument samo ako je raču msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Red #{0}: Za {1}, možete odabrati referentni dokument samo ako račun bude zadužen" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "Redak #{0}: Učestalost amortizacije mora biti veća od nule" @@ -46209,6 +46257,10 @@ msgstr "Red #{0}: Od datuma ne može biti prije Do datuma" msgid "Row #{0}: From Time and To Time fields are required" msgstr "Red #{0}: Polja Od i Do su obavezna" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Red #{0}: Artikel je dodan" @@ -46237,16 +46289,16 @@ msgstr "Redak #{0}: Artikal {1} nema cjenu, ali '{2}' nije omogućeno." msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "Red #{0}: Artikal {1} u skladištu {2}: Dostupno {3}, Potrebno {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "Red #{0}: Artikal {1} nije Klijent Dostavljen Artikal." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Red #{0}: Artikal {1} nije Serijalizirani/Šaržirani Artikal. Ne može imati Serijski Broj / Broj Šarže naspram sebe." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Red #{0}: Artikal {1} nije u Podizvođačkom Nalogu {2}" @@ -46262,13 +46314,17 @@ msgstr "Red #{0}: Artikal {1} nije artikal na zalihama" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "Red #{0}: Artikal {1} nije dio unosa izvornog proizvođača i ne može se dodati ovom rastavljanju." -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "Red #{0}: Artikal {1} se ne slaže. Promjena koda artikla nije dopuštena, umjesto toga dodaj još jedan red." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "Red #{0}: Artikla {1} se ne slaže. Promjena koda artikla nije dozvoljena." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46278,15 +46334,15 @@ msgstr "Red #{0}: Količina artikla {1} ({2} u jedinici zaliha) ne odgovara koli msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Red #{0}: Nalog Knjiženja {1} nema račun {2} ili je već usklađen naspram drugog voučera" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "Redak #{0}: Nedostaje {1} za tvrtku {2}." -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "Red #{0}: Sljedeći datum amortizacije ne može biti prije datuma raspoloživosti za upotrebu" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "Red #{0}: Sljedeći datum amortizacije ne može biti prije datuma nabave" @@ -46298,24 +46354,48 @@ msgstr "Red #{0}: Nije dozvoljeno mijenjati dobavljača jer Nalog Nabave već po msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Red #{0}: Samo {1} je dostupno za rezervisanje za artikal {2}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "Red #{0}: Početna akumulirana amortizacija mora biti manja ili jednaka {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "Red #{0}: Prekomjerna potrošnja Klijent Dostavljenog Artikla {1} u odnosu na Radni Nalog {2} nije dozvoljena u Internom Podizvođačkom procesu." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Red #{0}: Odaberi Kod Artikla u Artiklima Montaže" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Red #{0}: Odaberi broj Spiska Materijala u Artiklima Montaže" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "Red #{0}: Odaberi Artikal Gotovog Proizvoda za koju će se koristiti ovaj Klijent Dostavljeni Artikal." @@ -46331,6 +46411,10 @@ msgstr "Red #{0}: Postavite količinu za ponovnu narudžbu" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Red #{0}: Ažuriraj račun odloženih prihoda/troškova u redu artikla ili sttandard račun u postavkama tvrtke" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46350,8 +46434,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Red #{0}: Količina mora biti pozitivan broj" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Red #{0}: Količina bi trebala biti manja ili jednaka Dostupnoj Količini za Rezervaciju (stvarna količina - rezervisana količina) {1} za artikal {2} naspram Šarže {3} u Skladištu {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46373,7 +46457,7 @@ msgstr "Redak #{0}: Količina ne može biti negativan broj. Povećaj količinu i msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Red #{0}: Količina za artikal {1} ne može biti nula." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "Red #{0}: Količina artikla {1} ne može biti veća od {2} {3} u odnosu na Podizvođački Nalog {4}" @@ -46381,17 +46465,17 @@ msgstr "Red #{0}: Količina artikla {1} ne može biti veća od {2} {3} u odnosu msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Red #{0}: Količina koju treba rezervisati za artikal {1} treba biti veća od 0." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Red #{0}: Cijena mora biti ista kao {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Red #{0}: Tip referentnog dokumenta mora biti jedan od Nalog Nabave, Faktura Nabave ili Nalog Knjiženja" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Red #{0}: Tip referentnog dokumenta mora biti jedan od Prodajni Nalog, Prodajna Faktura, Nalog Knjiženja ili Opomena" @@ -46411,11 +46495,11 @@ msgstr "Red #{0}: Trošak popravke {1} premašuje raspoloživi iznos {2} za Fakt msgid "Row #{0}: Return Against is required for returning asset" msgstr "Red #{0}: Povrat Naspram za povrat imovine je obavezno" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "Red #{0}: Vraćena količina ne može biti veća od dostupne količine za artikal {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "Red #{0}: Vraćena količina ne može biti veća od dostupne količine za povrat za Artikal {1}" @@ -46425,18 +46509,19 @@ msgstr "Red #{0}: Količina Sekundarnog Artikla ne može biti nula" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "Red #{0}: Prodajna cijena za artikal {1} je niža od njegove {2}.\n" -"\t\t\t\t\tProdaja {3} treba biti najmanje {4}.

                    Alternativno,\n" -"\t\t\t\t\tmožete onemogućiti '{5}' u {6} da biste zaobišli\n" -"\t\t\t\t\tovu validaciju." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "Red #{0}: ID Sekvence mora biti {1} ili {2} za Operaciju {3}." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Red #{0}: Serijski Broj {1} ne pripada Šarži {2}" @@ -46449,7 +46534,7 @@ msgstr "Red #{0}: Serijski broj {1} za artikal {2} nije dostupan u {3} {4} ili m msgid "Row #{0}: Serial No {1} is already selected." msgstr "Red #{0}: Serijski Broj {1} je već odabran." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "Red #{0}: Serijski Broj(evi) {1} nisu u povezanom Podizvođačkom Nalogu. Odaberi važeći serijski broj(eve)." @@ -46473,7 +46558,7 @@ msgstr "Red #{0}: Postavi Dobavljača za artikal {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "Red #{0}: Pošto je omogućeno 'Praćenje Polugotovih Artikala', Sastavnica {1} se ne može koristiti za artikle podsklopa" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Red #{0}: Izvorno skladište mora biti isto kao i skladište klijenta {1} iz povezanog Podizvođačkog Naloga" @@ -46542,7 +46627,7 @@ msgstr "Red #{0}: Zaliha nije dostupna za rezervisanje za artikal {1} u skladiš msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "Red #{0}: Količina zaliha {1} ({2}) za artikal {3} ne može biti veća od {4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Red #{0}: Ciljano skladište mora biti isto kao i skladište klijenta {1} iz povezanog Podizvođačkog Naloga" @@ -46550,19 +46635,27 @@ msgstr "Red #{0}: Ciljano skladište mora biti isto kao i skladište klijenta {1 msgid "Row #{0}: The batch {1} has already expired." msgstr "Red #{0}: Šarža {1} je već istekla." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Red #{0}: Skladište {1} nije podređeno skladište grupnog skladišta {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Red #{0}: Vrijeme je u sukobu sa redom {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Red #{0}: Ukupan broj amortizacija ne može biti manji ili jednak početnom broju knjiženih amortizacija" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "Red #{0}: Ukupan broj amortizacija mora biti veći od nule" @@ -46574,11 +46667,15 @@ msgstr "Red #{0}: Skladište {1} ne odgovoara skladištu {2} u serijskom i šar msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "Red #{0}: Iznos Odbitka {1} ne odgovara izračunatom iznosu {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "Red #{0}: Radni Nalog postoji za punu ili djelomičnu količinu artiikla {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Red #{0}: Ne možete koristiti dimenziju zaliha '{1}' u usaglašavanju zaliha za izmjenu količine ili stope vrednovanja. Usaglašavanje zaliha sa dimenzijama zaliha namijenjeno je isključivo za obavljanje početnih unosa." @@ -46586,6 +46683,19 @@ msgstr "Red #{0}: Ne možete koristiti dimenziju zaliha '{1}' u usaglašavanju z msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Red #{0}: Odaberi Imovinu za Artikal {1}." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Red #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Red #{0}: {1} ne može biti negativan za artikal {2}" @@ -46602,6 +46712,14 @@ msgstr "Red #{0}: {1} je obavezno za kreiranje Početne Fakture {2}" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Red #{0}: {1} od {2} bi trebao biti {3}. Ažuriraj {1} ili odaberi drugi račun." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "Red #{0}: Količina za artikal {1} ne može biti nula." @@ -46642,71 +46760,10 @@ msgstr "Red #{idx}: {from_warehouse_field} i {to_warehouse_field} ne mogu biti i msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "Red #{idx}: {schedule_date} ne može biti prije {transaction_date}." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Red #{}: Valuta {} - {} ne odgovara valuti tvrtke." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "Redak #{}: Obavezan je ili ID Stranke ili Naziv Stranke" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Red #{}: Finansijski Registar ne smije biti prazan jer ih koristite više." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Red #{}: Faktura Blagajne {} je {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Red #{}: Faktura Blagajne {} nije naspram klijenta {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Red #{}: Faktura Blagajne {} još nije podnešena" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "Redak #{}: ID Stranke je obavezan" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Red #{}: Dodijeli zadatak članu." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Red #{}: Koristi drugi Finansijski Registar." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Red #{}: Serijski Broj {} se ne može vratiti jer nije izvršena transakcija na originalnoj fakturi {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Red #{}: Originalna Faktura {} povratne fakture {} nije objedinjena." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Red #{}: Ne možete dodati pozitivne količine u povratnu fakturu. Ukloni artikal {} da završite povrat." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Red #{}: Artikal {} je već odabran." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Red #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Red #{}: {} {} ne postoji." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Red #{}: {} {} ne pripada tvrtki {}. Odaberi važeći {}." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Red br {0}: Skladište je obezno. Postavite standard skladište za artikal {1} i tvrtku {2}" @@ -46719,10 +46776,6 @@ msgstr "Red {0} : Operacija je obavezna naspram artikla sirovine {1}" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "Red {0} odabrana količina je manja od potrebne količine, potrebno je dodatno {1} {2}." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Red {0}# Artikal {1} nije pronađen u tabeli 'Isporučene Sirovine' u {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Red {0}: Prihvaćena Količina i Odbijena Količina ne mogu biti nula u isto vrijeme." @@ -46743,19 +46796,19 @@ msgstr "Red {0}: Predujam naspram Klijenta mora biti kredit" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Red {0}: Predujam naspram Dobavljača mora biti debit" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Red {0}: Dodijeljeni iznos {1} mora biti manji ili jednak nepodmirenom iznosu fakture {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Red {0}: Dodijeljeni iznos {1} mora biti manji ili jednak preostalom iznosu plaćanja {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Red {0}: Kako je {1} omogućen, sirovine se ne mogu dodati u {2} unos. Koristite {3} unos za potrošnju sirovina." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Red {0}: Sastavnica nije pronađena za Artikal {1}" @@ -46771,11 +46824,11 @@ msgstr "Redak {0}: Ne može se prodati artikal {1} iz skladišta za zadržavanje msgid "Row {0}: Conversion Factor is mandatory" msgstr "Red {0}: Faktor konverzije je obavezan" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Red {0}: Centar Troškova {1} ne pripada tvrtki {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Red {0}: Centar Troškova je obaveyan za artikal {1}" @@ -46803,24 +46856,24 @@ msgstr "Red {0}: Skladište isporuke ne može biti isto kao skladište klijenta msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Red {0}: Datum roka plaćanja u tabeli Uslovi Plaćanja ne može biti prije datuma knjiženja" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Red {0}: Ili je Artikal Dostavnice ili Pakirani Artikal referenca obavezna." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Red {0}: Devizni Kurs je obavezan" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "Red {0}: Očekivana vrijednost nakon vijeka trajanja ne može biti negativna" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "Red {0}: Očekivana vrijednost nakon vijeka trajanja mora biti manja od neto nabavnog iznosa" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "Red {0}: Račun Troškova {1} je povezan sa {2}. Odaberi račun koji pripada {3}." @@ -46841,6 +46894,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Red {0}: Od vremena i do vremena je obavezano." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Red {0}: Od vremena i do vremena {1} se preklapa sa {2}" @@ -46862,8 +46918,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Red {0}: Nevažeća referenca {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Red {0}: Šablon PDV-a za Artikal ažuriran je prema valjanosti i primijenjenoj cijeni" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46893,7 +46949,7 @@ msgstr "Redak {0}: Vrijeme operacije treba biti veće od 0 za operaciju {1}" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Red {0}: Pakovana Količina mora biti jednaka {1} Količini." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Red {0}: Otpremnica je već kreirana za artikal {1}." @@ -46917,7 +46973,7 @@ msgstr "Red {0}: Plaćanje naspram Prodajnog/Nabavnog Naloga uvijek treba navest msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Red {0}: Provjeri 'Predujam' naspram računa {1} ako je ovo predujam unos." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Red {0}: Navedi važeću referencu Artikla Dostavnice ili Pakiranog Artikla." @@ -46925,14 +46981,14 @@ msgstr "Red {0}: Navedi važeću referencu Artikla Dostavnice ili Pakiranog Arti msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Red {0}: Odaberi Sastavnicu za artikal {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Red {0}: Odaberi Aktivnu Sastavnicu za artikal {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Red {0}: Odaberi važeću Sastavnicu za artikal{1}." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Red {0}: Postavi Razlog PDV Izuzeća u Prodajnom PDV-u i Naknadi" @@ -46949,11 +47005,11 @@ msgstr "Red {0}: Postavi ispravan kod za Način Plaćanja {1}" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Red {0}: Projekat mora biti isti kao onaj postavljen u Radnoj Listi: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Red {0}: Nabavna Faktura {1} nema utjecaja na zalihe." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Red {0}: Količina ne može biti veća od {1} za artikal {2}." @@ -46961,7 +47017,7 @@ msgstr "Red {0}: Količina ne može biti veća od {1} za artikal {2}." msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Red {0}: Količina u Jedinici Zaliha ne može biti nula." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Red {0}: Količina mora biti veća od 0." @@ -46973,7 +47029,7 @@ msgstr "Red {0}: Količina ne može biti negativna." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "Red {0}: Prodajna Faktura {1} je već kreirana za {2}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "Redak {0}: Serijski / Šaržni broj je podešen na vrijednosti povezane s Radnim Nalogom {1} jer prethodno odabrani serijski / šaržni broj ne pripada ovom Radnom Nalogu." @@ -46998,10 +47054,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "Red {0}: Cijeli iznos troška za račun {1} u {2} je već dodijeljen." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Red {0}: Artikal {1}, količina mora biti pozitivan broj" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Red {0}: {3} Račun {1} ne pripada tvrtki {2}" @@ -47054,15 +47110,19 @@ msgstr "Red {0}: {1} {2} ne može biti isto kao {3} (Račun Stranke) {4}" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Red {0}: {1} {2} nije usklađen sa {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "Red {0}: {1} {2} je povezan sa {3}. Odaberi dokument koji pripada {4}." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Red {0}: {2} Artikal {1} ne postoji u {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Red {1}: Količina ({0}) ne može biti razlomak. Da biste to omogućili, onemogućite '{2}' u Jedinici {3}." @@ -47101,8 +47161,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Redovi: {0} imaju 'Unos Plaćanja' kao Tip Reference. Ovo ne treba postavljati ručno." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Redovi: {0} u {1} sekciji su nevažeći. Naziv reference treba da ukazuje na važeći Unos Plaćanja ili Nalog Knjiženja." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47162,10 +47222,6 @@ msgstr "Evaluacija pravila završena" msgid "Rules evaluation started" msgstr "Započeta je evaluacija pravila" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "Pravila za konfiguriranje Serija Imenovanja" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "Pravila za usklađivanje s opisom transakcije" @@ -47233,7 +47289,7 @@ msgstr "Standard Nivo Servisa Ispunjen na Status" msgid "SLA Paused On" msgstr "Standard Nivo Servisa Pauziran" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "Standard Nivo Servisa je na Čekanju od {0}" @@ -47532,8 +47588,8 @@ msgid "Sales Invoice is not submitted" msgstr "Prodajna Faktura nije podnešena" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "Prodajna Faktura nije izrađena od {}" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47749,8 +47805,8 @@ msgstr "Prodajni Nalog {0} već postoji naspram Nabavnog Naloga Klijenta {1}. Da msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "Prodajni Nalog {0} je već povezan s projektom {1}, preskoči poveznicu." -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "Prodajni Nalog {0} nije dostupan za proizvodnju" @@ -48157,7 +48213,7 @@ msgstr "Isti Artikal" msgid "Same day" msgstr "Isti dan" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Ista kombinacija artikla i skladišta je već unesena." @@ -48189,7 +48245,7 @@ msgstr "Skladište Zadržavanja Uzoraka" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Veličina Uzorka" @@ -48299,7 +48355,7 @@ msgstr "Skenirana Količina" msgid "Schedule Date" msgstr "Datum Rasporeda" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "Naziv Rasporeda" @@ -48310,7 +48366,7 @@ msgstr "Naziv Rasporeda" msgid "Scheduled Date" msgstr "Datum Rasporeda" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "Zakazani datum je obavezan." @@ -48598,7 +48654,7 @@ msgstr "Odaberi račun" msgid "Select Accounting Dimension." msgstr "Odaberi Knjigovodstvenu Dimenziju." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Odaberi Alternativni Artikal" @@ -48619,7 +48675,7 @@ msgid "Select BOM and Qty for Production" msgstr "Odaberi Sastavnicu i Količinu za Proizvodnju" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Odaberi Broj Šarže" @@ -48684,7 +48740,7 @@ msgstr "Odaberi Dimenziju" msgid "Select Dispatch Address " msgstr "Odaberi Otpremnu Adresu " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Navedi Osoblje" @@ -48709,7 +48765,7 @@ msgstr "Odaberi Artikle" msgid "Select Items based on Delivery Date" msgstr "OdaberiArtikal na osnovu Datuma Dostave" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "Odaberi Artikle za Inspekciju Kvaliteta" @@ -48739,7 +48795,7 @@ msgstr "Odaberi Adresu Podizvođača" msgid "Select Loyalty Program" msgstr "Odaberi Program Lojaliteta" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "Odaberi Raspored Plaćanja" @@ -48753,13 +48809,13 @@ msgid "Select Quantity" msgstr "Odaberi Količinu" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Odaberi Serijski Broj" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Odaberi Serijski Broj I Šaržu" @@ -48850,6 +48906,7 @@ msgid "Select an Item Group." msgstr "Odaberi Grupu Artikla." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Odaberi Račun za ispis u valuti računa" @@ -48992,10 +49049,14 @@ msgstr "Odabrani Verifikati" msgid "Selected date is" msgstr "Odabrani datum je" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "Odabrani dokument mora biti u podnešenom stanju" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49143,7 +49204,7 @@ msgid "Send Emails to Suppliers" msgstr "Pošalji e-poštu Dobavljačima" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Pošalji SMS" @@ -49227,7 +49288,7 @@ msgstr "Serijski / Šaržni Paket" msgid "Serial / Batch No" msgstr "Serijski / Šaržni Broj" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Serijski / Šaržni Broj" @@ -49284,10 +49345,11 @@ msgstr "Postavke Serijskog Artikla" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49329,6 +49391,10 @@ msgstr "Serijski Broj / Šarža" msgid "Serial No Already Assigned" msgstr "Serijski broj je već dodijeljen" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Broj Serijskog Broja" @@ -49346,7 +49412,7 @@ msgstr "Serijski Broj Registar" msgid "Serial No Range" msgstr "Serijski Broj Raspon" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "Rezervisan Serijski Broj" @@ -49391,8 +49457,8 @@ msgid "Serial No and Batch" msgstr "Serijski Broj i Šarža" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "Serijski Broj i odabirač Šarže ne mogu se koristiti kada je omogućeno Koristi Serijski Broj / Šaržna Polja." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49403,7 +49469,7 @@ msgstr "Serijski Broj i odabirač Šarže ne mogu se koristiti kada je omogućen msgid "Serial No and Batch Traceability" msgstr "Sljedjivost Serijskog Broja i Šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "Serijski Broj je Obavezan" @@ -49423,22 +49489,19 @@ msgstr "Serijski Broj {0} je već skeniran" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Serijski Broj {0} ne pripada Dostavnici {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Serijski Broj {0} ne pripada Artiklu {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Serijski Broj {0} ne postoji" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "Serijski Broj {0} ne postoji" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "Serijski broj {0} je već isporučen. Ne možete ih ponovno koristiti u Proizvodnji / Ponovno pakiranje." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49452,25 +49515,26 @@ msgstr "Serijski broj {0} je već dodijeljen {1}. Može se vratiti samo ako je o msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Serijski broj {0} nije u {1} {2}, i ne može se vratiti naspram {1} {2}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Serijski Broj {0} je pod ugovorom o održavanju do {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Serijski Broj {0} je pod garancijom do {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Serijski Broj {0} nije pronađen" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Serijski Broj: {0} izršena transakcija u drugoj Fakturi Blagajne." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49490,7 +49554,7 @@ msgstr "Serijski Brojevi / Šarže" msgid "Serial Nos are created successfully" msgstr "Serijski Brojevi su uspješno kreirani" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Serijski brojevi su rezervisani u unosima za rezervacije zaliha, morate ih opozvati prije nego što nastavite." @@ -49591,6 +49655,10 @@ msgstr "Serijski i Šaržni Paket {0} nije podnešen" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "Serijski i Šaržni Paket {0} je podnešen i njegovi unosi se ne mogu mijenjati." +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49639,7 +49707,7 @@ msgstr "Serijska i Šaržna Rezervacija" msgid "Serial and Batch Summary" msgstr "Sažetak Serije i Šarže" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Serijski broj {0} unesen više puta" @@ -49647,122 +49715,12 @@ msgstr "Serijski broj {0} unesen više puta" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "Serijski brojevi nedostupni za artikal {0} u skladištu {1}. Pokušaj promijeniti skladište." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Numeričke Serije" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Numerička Serija za unos Amortizacije Imovine (Nalog Knjiženja)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Numerička Serija je obavezna" @@ -49844,7 +49802,7 @@ msgid "Service Item {0} is disabled." msgstr "Servisn Artikal {0} je onemogućen." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "Servisni Artikal {0} mora biti artikal koji nije na zalihama." @@ -49953,12 +49911,12 @@ msgid "Service Stop Date" msgstr "Datum završetka Servisa" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Datum prekida servisa ne može biti nakon datuma završetka servisa" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "Datum zaustavljanja servisa ne može biti prije datuma početka servisa" @@ -49982,7 +49940,7 @@ msgstr "Postavi Predujam i Dodijeli (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Postavi osnovnu cijenu ručno" @@ -49997,7 +49955,7 @@ msgstr "Postavi Standard Dobavljača" msgid "Set Delivery Warehouse" msgstr "Postavi Dostavno Skladište" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "Postavi dostavljenu količinu Dropship artikala" @@ -50102,7 +50060,7 @@ msgstr "Postavi Imenovanje Serijskog i Šaržnog Paketa na osnovu Imenovanja Ser #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50120,7 +50078,7 @@ msgstr "Postavi Dobavljača" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50146,7 +50104,7 @@ msgstr "Postavi kao Zatvoreno" msgid "Set as Completed" msgstr "Postavi kao Završeno" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Postavi kao Izgubljeno" @@ -50244,15 +50202,15 @@ msgstr "Postavite pravila za automatsku klasifikaciju transakcija. Povucite i is msgid "Set valuation rate for rejected Materials" msgstr "Postavi stopu vrednovanja za odbijene materijale" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Postavi {0} u kategoriju imovine {1} za tvrtku {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Postavi {0} u kategoriju imovine {1} ili tvrtku {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Postavi {0} u tvrtki {1}" @@ -50320,7 +50278,7 @@ msgid "Setting up company" msgstr "Postavljanje Tvrtke" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "Postavka {0} je obavezna" @@ -50748,6 +50706,7 @@ msgid "Show Completed" msgstr "Prikaži Završeno" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "Prikaži Kredit / Debit u valuti tvrtke" @@ -50950,7 +50909,7 @@ msgstr "Prikaži samo Neposredan Predstojeći Uslov" msgid "Show pay button in Purchase Order portal" msgstr "Prikaži gumb za Plaćanje na Portalu Nabavnog Naloga" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Prikaži unose na čekanju" @@ -51055,11 +51014,11 @@ msgstr "Jednostavna Python formula primijenjena na polja za čitanje.
                    Numeri msgid "Simultaneous" msgstr "Istovremeno" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "Budući da u ovoj kategoriji postoji aktivna imovina koja se amortizira, potrebni su sljedeći računi.

                    " -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Budući da postoji gubitak u procesu od {0} jedinica za gotov proizvod {1}, trebali biste smanjiti količinu za {0} jedinica za gotov proizvod {1} u Tabeli Artikala." @@ -51120,7 +51079,7 @@ msgstr "Preskočite prijenos materijala na Posao U Toku" msgid "Skip Material Transfer to WIP Warehouse" msgstr "Preskoči Prijenos Materijala u Posao U Toku Skladište" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "Preskočeno {0} DocType(a):
                    {1}" @@ -51176,8 +51135,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "Nedostaju neki obavezni podaci o tvrtki. Nemate dopuštenje za njihovo ažuriranje. Obratite se upravitelju sustava." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Nešto nije u redu, pokušajte ponovo" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51244,7 +51203,7 @@ msgstr "Izvor Unosa Proizvodnje" msgid "Source Stock Entry (Manufacture)" msgstr "Izvor Unosa Zaliha (Proizvodnja)" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "Izvor Unos Zaliha {0} pripada radnom nalogu {1}, a ne {2}. Koristi unos proizvodnje iz istog radnog naloga." @@ -51281,8 +51240,8 @@ msgstr "Tip Izvora" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51412,7 +51371,7 @@ msgstr "Razdjeli Slučaj" msgid "Split Qty" msgstr "Podjeljena Količina" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "Količina podijeljene imovine mora biti manja od količine imovine" @@ -51425,7 +51384,12 @@ msgstr "Raspodijeli na {} račune" msgid "Split commission credit across multiple sales persons." msgstr "Raspodijeli proviziju među više prodavača." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Podjela {0} {1} na {2} redove prema Uslovima Plaćanja" @@ -51478,7 +51442,7 @@ msgstr "Naziv Faze" msgid "Stale Days" msgstr "Neaktivni Dani" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Neaktivni Dani bi trebalo da počnu od 1." @@ -51543,10 +51507,26 @@ msgstr "Standardni PDV šablon koji se može primijeniti na sve Prodajne Transak msgid "Standing Name" msgstr "Poredak" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Pokreni / Nastavi" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Datum početka ne može biti prije tekućeg datuma" @@ -51576,7 +51556,7 @@ msgstr "Vrijeme Početka ne može biti veće ili jednako Vremenu Završetka za { msgid "Start Timer" msgstr "Pokreni Brojanje Vremena" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51605,10 +51585,14 @@ msgstr "Datum početka bi trebao biti prije od datuma završetka za atikal {0}" msgid "Start date should be less than end date for task {0}" msgstr "Datum početka bi trebao biti prije od datuma završetka za zadatak {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "Pokrenut je pozadinski zadatak za stvaranje {1} {0}. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51689,7 +51673,7 @@ msgstr "Prikaz Statusa" msgid "Status and Reference" msgstr "Status i Referenca" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Status mora biti Poništen ili Dovršen" @@ -51817,8 +51801,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "Unos Zaključanih Zaliha {0} već postoji za odabrani vremenski raspon" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "Unos Zaključanih Zaliha {0} je stavljen na čekanje za obradu, sustavu će trebati neko vrijeme da ga završi." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51899,17 +51883,21 @@ msgstr "Artikal Unosa Zaliha" msgid "Stock Entry Type" msgstr "Tip Unosa Zaliha" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Unos Zaliha je već kreiran naspram ove Liste Odabira" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Unos Zaliha {0} je kreiran" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Unos Zaliha {0} je kreiran" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52075,7 +52063,7 @@ msgstr "Predviđena Količina Zaliha" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52158,7 +52146,7 @@ msgstr "Postavke Ponovnog Knjiženja Zaliha" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52183,15 +52171,15 @@ msgstr "Rezervacija Zaliha" msgid "Stock Reservation Entries Cancelled" msgstr "Otkazani Unosi Rezervacije Zaliha" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Kreirani Unosi Rezervacija Zaliha" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "Unosi Rezervacije Zaliha su kreirani" @@ -52361,7 +52349,7 @@ msgstr "Transakcije Zaliha" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52520,9 +52508,9 @@ msgstr "Rezervisana Zaliha je poništena za Radni Nalog {0}." msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "Zaliha nije dostupna za Artikal {0} u Skladištu {1}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "Količina Zaliha nije dovoljna za Kod Artikla: {0} na skladištu {1}. Dostupna količina {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52540,7 +52528,7 @@ msgstr "Transakcije Zaliha koje su starije od navedenih dana ne mogu se mijenjat msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "Zalihe će biti rezervisane po podnošenju Nabavnog Računa kreirane naspram Materijalnog Naloga za Prodajni Nalog." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "Zalihe/Računi ne mogu se zamrznuti jer je u toku obrada unosa unazad. Pkušaj ponovo kasnije." @@ -52555,7 +52543,7 @@ msgstr "Stone" msgid "Stop Reason" msgstr "Razlog Zastoja" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Zaustavljeni Radni Nalog se ne može otkazati, prvo ga prekini da biste otkazali" @@ -52563,7 +52551,7 @@ msgstr "Zaustavljeni Radni Nalog se ne može otkazati, prvo ga prekini da biste #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Prodavnice" @@ -52777,7 +52765,7 @@ msgstr "Faktor Konverzije Podizvođača" msgid "Subcontracting Delivery" msgstr "Podizvođačka Dostava" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "Podizvođački Gotov Proizvod" @@ -52849,7 +52837,7 @@ msgstr "Uslužni Artikal Podizvođačkog Naloga" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52887,7 +52875,7 @@ msgstr "Servisni Artikal Podizvođačkog Naloga" msgid "Subcontracting Order Supplied Item" msgstr "Dostavljeni Artikal Podizvođačkog Naloga" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Podizvođački Nalog {0} je kreiran." @@ -52961,7 +52949,7 @@ msgstr "Podizvođački Povrat" msgid "Subcontracting Sales Order" msgstr "Podizvođački Prodajni Nalog" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "Podizvođački Uslužni Artikal" @@ -52980,7 +52968,7 @@ msgstr "Postavljanje Podugovaranja" msgid "Subdivision" msgstr "Pododjeljenje" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Radnja Podnošenja Neuspješna" @@ -53009,7 +52997,7 @@ msgstr "Podnesi ovaj Radni Nalog za dalju obradu." msgid "Submit your Quotation" msgstr "Podnesi Ponudu" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "Podnešeni Radni Nalog ne može biti obrađen." @@ -53151,7 +53139,7 @@ msgstr "Uspješna Podešavanja" msgid "Successful" msgstr "Uspješno" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Uspješno Usaglašeno" @@ -53329,7 +53317,7 @@ msgstr "Dostavljena Količina" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53511,7 +53499,7 @@ msgstr "Datum Fakture Dobavljaća" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Broj Fakture Dobavljača" @@ -53659,7 +53647,7 @@ msgstr "Poređenje Ponuda Dobavljača" msgid "Supplier Quotation Item" msgstr "Artikal Ponude Dobavljača" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Ponuda Dobavljača {0} Kreirana" @@ -53844,10 +53832,6 @@ msgstr "Tim Podrške" msgid "Support Tickets" msgstr "Slučajevi Podrške" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "Podržane Varijable:" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "Očekivani Iznos Popusta" @@ -53934,7 +53918,7 @@ msgstr "Kategorija PDV-a koja se primjenjuje pri plaćanju ovog dobavljača" msgid "TDS Computation Summary" msgstr "Pregled izračuna poreza po odbitku (TDS)." -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "Odbijen porez po odbitku (TDS)" @@ -53995,8 +53979,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "Ciljna Imovina {0} ne pripada tvrtki {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "Ciljana Imovina {0} mora biti objedinjena imovina" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54105,11 +54089,11 @@ msgstr "Veza Adrese Skladišta" msgid "Target Warehouse Reservation Error" msgstr "Greška pri Rezervaciji Skladišta" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "Skladište za Gotov Proizvod mora biti isto kao i Skladište Gotovog Proizvoda {1} u Radnom Nalogu {2} povezanom s Internim Podizvođačkim Nalogom." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "Skladište za Gotov Proizvod mora biti isto kao i Skladište Gotovog Proizvoda {0} u Radnom Nalogu {1} povezanom s Internim Podizvođačkim Nalogom." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "Skladište je obavezno prije Podnošenja" @@ -54585,7 +54569,7 @@ msgstr "PDV se odbija samo za iznos koji premašuje kumulativni prag" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Oporezivi Iznos" @@ -54797,7 +54781,7 @@ msgstr "Televizija" msgid "Template Item" msgstr "Artikal Šablon" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Odabrani Šablon Artikla" @@ -55104,23 +55088,27 @@ msgstr "Tesla" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "Tekst prikazan u financijskom izvješću (npr. 'Ukupni Prihod', 'Gotovina i Ekvivalenti Gotovine')" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "\"Od Paketa Broj.\" polje ne smije biti prazno niti njegova vrijednost manja od 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "Pristup zahtjevu za ponudu sa portala je onemogućen. Da biste omogućili pristup, omogućite ga u Postavkama Portala." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "Sastavnica koja će biti zamijenjena" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "Šarža {0} ima negativnu količinu {1}. Da biste to riješili, idite na Postavke Šarže i kliknite na Ponovno izračunaj količinu Šarže. Ako problem i dalje postoji, kreiraj unutrašnji unos." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "Kampanja '{0}' već postoji za {1} '{2}'" @@ -55145,6 +55133,10 @@ msgstr "Knjigovodstveni Unosi i zaključna stanja će se obraditi u pozadini, to msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Knjigovodstveni Unosi će biti otkazani u pozadini, može potrajati nekoliko minuta." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Program Lojalnosti ne važi za odabranu tvrtku" @@ -55162,9 +55154,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "Lista Odabira koja ima Unose Rezervacije Zaliha ne može se ažurirati. Ako trebate unijeti promjene, preporučujemo da otkažete postojeće Unose Rezervacije Zaliha prije ažuriranja Liste Odabira." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "Količinski Gubitak Procesa je poništen prema Radnim Karticama Količinskog Gubitka Procesa" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55174,11 +55169,15 @@ msgstr "Prodavač je povezan sa {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Serijski Broj u redu #{0}: {1} nije dostupan u skladištu {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Serijski Broj {0} je rezervisan naspram {1} {2} i ne može se koristiti za bilo koju drugu transakciju." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Serijski i Šaržni Paket {0} ne važi za ovu transakciju. 'Tip transakcije' bi trebao biti 'Vani' umjesto 'Unutra' u Serijskom i Šaržnom Paketu {0}" @@ -55226,15 +55225,15 @@ msgstr "Tvrtka {0} nije registrirana u Južnoj Africi. Izvješće o PDV reviziji msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "Tvrtka {0} nije u Ujedinjenim Arapskim Emiratima. Izvješće UAE PDV 201 dostupno je samo za tvrtke u Ujedinjenim Arapskim Emiratima." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "Završena količina {0} operacije {1} ne može biti veća od završene količine {2} prethodne operacije {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "Valuta Fakture {} ({}) se razlikuje od valute ove Opomene ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "Trenutni Unos Otvaranja Blagajne je zastario. Zatvori ga i stvori novi." @@ -55283,6 +55282,10 @@ msgstr "Polje Za Dioničara ne može biti prazno" msgid "The field {0} in row {1} is not set" msgstr "Polje {0} u redu {1} nije postavljeno" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Polja Od Dioničara i Za Dioničara ne mogu biti prazna" @@ -55304,9 +55307,9 @@ msgstr "Fiskalna godina je automatski kreirana u onemogućenom stanju kako bi se msgid "The folio numbers are not matching" msgstr "Brojevi Folija nisu usklađeni" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "Sljedeći artikl, koji imaju Pravila Odlaganju, nisu mogli biti prihvaćeni:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55333,8 +55336,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Sljedeće osoblje još uvijek podnosi izvješća {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "Sljedeća nevažeća Pravila Cijena se brišu:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55346,7 +55349,7 @@ msgstr "Sljedeći raspored(i) plaćanja već postoje:\n" msgid "The following rows are duplicates:" msgstr "Sljedeći redovi su duplikati:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Sljedeći {0} su kreirani: {1}" @@ -55382,8 +55385,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "Artikli {items} nisu označeni kao {type_of} artikli. Možete ih omogućiti kao {type_of} artikle u Postavkama Artikala." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "Radna Kartica {0} je u {1} stanju i ne možete je završiti." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55420,12 +55423,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "Početno stanje možda ne odgovara vašem bankovnom izvodu. Želite li ih uskladiti?" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "Operacija {0} ne može se dodati više puta" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "Operacija {0} ne može biti podoperacija" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55473,6 +55476,10 @@ msgstr "Procenat kojim vam je dozvoljeno da primite ili dostavite više naspram msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "Procenat kojim vam je dozvoljeno prenijeti više naspram naručene količine. Na primjer, ako ste naručili 100 jedinica, a vaš dodatak iznosi 10%, onda vam je dozvoljen prijenos 110 jedinica." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55482,7 +55489,7 @@ msgstr "Cijena po kojoj je ovaj artikal zadnji put kupljen putem fakture. Automa msgid "The reference number of the transaction" msgstr "Referentni broj transakcije" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "Rezervisane Zalihe će biti puštene kada ažurirate artikle. Jeste li sigurni da želite nastaviti?" @@ -55499,8 +55506,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Odabrane Sastavnice nisu za istu artikal" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Odabrani Račun Kusura {} ne pripada Tvrtki {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55516,8 +55523,8 @@ msgstr "Prodavač i Kupac ne mogu biti isti" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "Serijski i Šaržni Paket {0} nije povezan sa {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55535,11 +55542,11 @@ msgstr "Dionice već postoje" msgid "The shares don't exist with the {0}" msgstr "Dionice ne postoje sa {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "Zaliha za artikal {0} u {1} skladištu je bila negativna na {2}. Trebali biste kreirati pozitivan unos {3} prije datuma {4} i vremena {5} da biste knjižili ispravnu Stopu Vrednovanja. Za više detalja, molimo pročitaj dokumentaciju." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Zaliha za artikal {0} u {1} skladištu je bila negativna na {2}. Trebali biste kreirati pozitivan unos {3} prije datuma {4} i vremena {5} da biste knjižili ispravnu Stopu Vrednovanja. Za više detalja, molimo pročitaj dokumentaciju." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "Zalihe su rezervirane za sljedeće artikle i skladišta, poništite ih za {0} Usglašavanje Zaliha:

                    {1}" @@ -55561,17 +55568,17 @@ msgstr "Sustav će pokušati automatski spojiti stranku s bankovnom transakcijom msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "Sustav će kreirati Prodajnu Fakturu ili Fakturu Blagajne iz Blagajne na temelju ove postavke. Za transakcije velikog obujma preporučuje se korištenje Fakture Blagajne." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "Zadatak je stavljen u red kao pozadinski posao. U slučaju da postoji bilo kakav problem u obradi u pozadini, sustav će dodati komentar o grešci na ovom usaglašavanja zaliha i vratiti se u stanje nacrta" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "Zadatak je stavljen u red kao pozadinski posao. U slučaju da postoji bilo kakav problem sa obradom u pozadini, sustav će dodati komentar o grešci na ovom usklađivanju zaliha i vratiti se na fazu Poslano" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "Ukupna količina izdavanja / prijenosa {0} u Materijalnom Nalogu {1} ne može biti veća od dozvoljene tražene količine {2} za artikal {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55609,7 +55616,7 @@ msgstr "Korisnicima sa ovom ulogom je dozvoljeno da kreiraju/modifikuju transakc msgid "The value of {0} differs between Items {1} and {2}" msgstr "Vrijednost {0} se razlikuje između artikala {1} i {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "Vrijednost {0} je već dodijeljena postojećem artiklu {1}." @@ -55633,7 +55640,7 @@ msgstr "Iznosi isplate ili uplate - potrebni su samo ako nema stupca s iznosom." msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) mora biti jednako {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0} sadrži stavke s jediničnom cijenom." @@ -55641,7 +55648,7 @@ msgstr "{0} sadrži stavke s jediničnom cijenom." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "Prefiks {0} '{1}' već postoji. Molimo vas da promijenite serijski broj šarže, u suprotnom će biti grešku o dupliranom unosu." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} je uspješno kreiran" @@ -55649,6 +55656,10 @@ msgstr "{0} {1} je uspješno kreiran" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0} {1} se ne poklapa s {0} {2} u {3} {4}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} se koristi za izračunavanje troška vrednovanja za gotov proizvod {2}." @@ -55657,7 +55668,7 @@ msgstr "{0} {1} se koristi za izračunavanje troška vrednovanja za gotov proizv msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "Zatim se cijenovna pravila filtriraju na osnovu klijenta, grupe klijenta, distrikta, dobavljača, tipa dobavljača, tvrtke, prodajnog partnera itd." -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Postoji aktivno održavanje ili popravke imovine naspram imovine. Morate ih ispuniti sve prije nego što otkažete imovinu." @@ -55669,7 +55680,7 @@ msgstr "Postoje nedosljednosti između cijene, broja dionica i izračunatog izno msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "Na ovom računu postoje unosi u registar. Promjena {0} u ne-{1} u sustavu će uzrokovati netačan izlaz u izvještaju 'Računi {2}'" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "Nema neuspjelih transakcija" @@ -55686,6 +55697,10 @@ msgstr "Ne postoje aktivne Fiskalne Godine za koje se mogu generirati Demo Podac msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "U sustavu nema unosa kod kojih je datum odobravanja prije datuma knjiženja." +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "Za ovaj datum nema slobodnih termina" @@ -55702,10 +55717,6 @@ msgstr "Postoje dvije opcije za održavanje vrijednosti artikal. FIFO (prvi uša msgid "There are {0} unreconciled transactions before {1}." msgstr "Prije {1} postoji {0} neusklađenih transakcija." -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "Ne postoje varijante artikla za odabrani artikal" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Može postojati višestruki faktor sakupljanja na osnovu ukupne potrošnje. Ali faktor konverzije za otkup će uvijek biti isti za sve razine." @@ -55734,21 +55745,21 @@ msgstr "Nije pronađena Šarža naspram {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "Postoji jedna neusklađena transakcija prije {0}." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "U ovom Unosu Zaliha mora biti najmanje jedan gotov proizvod" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Došlo je do greške pri kreiranju Bankovnog Računa prilikom povezivanja s Plaid." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "Došlo je do greške pri sinhronizaciji transakcija." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Došlo je do greške prilikom ažuriranja Bankovnog Računa {} prilikom povezivanja s Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55798,15 +55809,19 @@ msgstr "Sažetak ovog Mjeseca" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "Ovaj PDF je zaštićen lozinkom. Molimo postavite ispravnu lozinku za izvod na bankovnom računu i pokušajte ponovno." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "Ovaj unos plaćanja usklađen je s {0}. Otkazivanje će ga automatski poništiti. Želite li nastaviti?" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "Ovaj Nalog Nabave je u potpunosti podugovoren." -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "Ovaj Prodajnii Nalog je u potpunosti podugovoren." @@ -55828,7 +55843,7 @@ msgstr "Ova radnja će prekinuti vezu ovog računa sa bilo kojom eksternom uslug msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "Ovo omogućuje izradu prodajnih naloga iz ponuda kojima je istekao rok valjanosti, pružajući fleksibilnost u obradi naloga unatoč zastarjelim ponudama." -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "Ova kategorija imovine označena je kao neamortizirajuća. Molimo vas da onemogućite izračun amortizacije ili odaberete drugu kategoriju." @@ -55846,7 +55861,7 @@ msgstr "Ovo može sadržavati \"CR\"/\"DR\" vrijednosti ili pozitivne/negativne msgid "This covers all scorecards tied to this Setup" msgstr "Ovo pokriva sve bodovne kartice vezane za ovu postavku" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Ovaj dokument je preko ograničenja za {0} {1} za artikal {4}. Da li pravite još jedan {3} naspram istog {2}?" @@ -55988,7 +56003,7 @@ msgstr "Ovo je red za bankovni račun. Bit će automatski popunjen na temelju ba msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "To je ono što sustav očekuje kao završno stanje na vašem bankovnom izvodu." -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "Ovaj filter artikala je već primijenjen za {0}" @@ -56052,7 +56067,7 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} vraćena putem Prodajne Fak msgid "This schedule was created when Asset {0} was scrapped." msgstr "Ovaj raspored je kreiran kada je imovina {0} rashodovana." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "Ovaj raspored je kreiran kada je Imovina {0} bila {1} u novu Imovinu {2}." @@ -56079,10 +56094,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "Ova sekcija omogućava korisniku da postavi sadržaj i završni tekst opomena za tip opomena na osnovu jezika koji se može koristiti u Ispisu." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "Ovaj izvod je već uvezen." @@ -56140,8 +56155,8 @@ msgid "This will restrict user access to other employee records" msgstr "Ovo će ograničiti pristup korisnika drugim zapisima zaposlenih" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "Ovaj {} će se tretirati kao prijenos materijala." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56269,6 +56284,12 @@ msgstr "Vrijeme (u minutama)" msgid "Timeline" msgstr "Vremenska Linija" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56555,8 +56576,8 @@ msgid "To Time" msgstr "Do Vremena" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "Do Vrijeme ne može biti prije Od Datuma" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56586,15 +56607,15 @@ msgstr "Da biste dodali Operacije, označite polje 'S Operacijama'." msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Da se doda podizvođačka sirovina artikala ako je Uključi Rastavljene Artikle onemogućeno." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Da dopusti prekomjerno fakturisanje, ažuriraj \"Dozvola prekomjernog Fakturisanja\" u Postavkama Knjigovodstva ili Artikla." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "Da biste dopustili prekomjerno naručivanje, ažurirajte \"Dopušteno Prekoračenja Naloga\" u Postavkama Nabave." -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Da biste dozvolili prekomjerno primanje/isporuku, ažuriraj \"Dozvoli prekomjerni Prijema/Dostavu\" u Postavkama Zaliha ili Artikla." @@ -56611,8 +56632,8 @@ msgid "To be Delivered to Customer" msgstr "Dostava Klijentu" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "Da otkažete {}, morate otkazati Unos Zatvaranja Kase {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56623,8 +56644,8 @@ msgid "To create a Payment Request reference document is required" msgstr "Za kreiranje Zahtjeva Plaćanja obavezan je referentni dokument" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Da biste omogućili Knjigovodstvo Kapitalnih Radova u Toku," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56636,8 +56657,8 @@ msgstr "Uključivanje artikala bez zaliha u planiranje Materijalnog Naloga. tj. msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "Za uključivanje troškova podsklopova i sekundarnih artikala u gotove proizvode na radnom nalogu bez korištenja radne kartice, kada je omogućena opcija 'Koristi Višeslojnu Sastavnicu'." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Da biste uključili PDV u red {0} u cijenu artikla, PDV u redovima {1} također moraju biti uključeni" @@ -56657,7 +56678,7 @@ msgstr "Da poništite ovo, omogućite '{0}' u tvrtki {1}" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "Za odabir više transakcija istovremeno, pritisnite i držite tipku Shift." -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Da i dalje nastavite s uređivanjem ove vrijednosti atributa, omogućite {0} u Postavkama Varijante Artikla." @@ -56674,10 +56695,12 @@ msgstr "Da biste podnijeli Fakturu bez Nabavnog Računa, postavite {0} kao {1} u msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Da biste koristili drugi Finansijski Registar, poništi 'Uključi Standard Imovinu Finansijskog Registra'" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Da biste koristili drugi Finansijski Registar, poništite oznaku 'Obuhvati standard Finansijski Registar unose'" @@ -56756,8 +56779,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "Ukupno (Valuta Tvrtke)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Ukupno (Kredit)" @@ -56799,6 +56822,22 @@ msgstr "Ukupni Dodatni Troškovi" msgid "Total Advance" msgstr "Ukupni Predujam" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56846,11 +56885,11 @@ msgstr "Ukupan Iznos Duga" msgid "Total Amount in Words" msgstr "Ukupan Iznos u Riječima" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Ukupni Primjenjive Naknade u tabeli Artikla Računa Nabave moraju biti isti kao i Ukupni PDV i Naknade" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Ukupna Imovina" @@ -57032,7 +57071,7 @@ msgstr "Ukupna Isporučena Količina" msgid "Total Demand (Past Data)" msgstr "Ukupna Potražnja (Prethodni Podatci)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "Ukupni Kapital" @@ -57041,11 +57080,11 @@ msgstr "Ukupni Kapital" msgid "Total Estimated Distance" msgstr "Ukupna Procijenjena Udaljenost" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Ukupni Troškovi" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Ukupni Troškovi ove Godine" @@ -57083,11 +57122,11 @@ msgstr "Ukupno Vrijeme Čekanja" msgid "Total Holidays" msgstr "Ukupno Praznika" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Ukupan Prihod" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Ukupan Prihod ove Godine" @@ -57130,7 +57169,7 @@ msgstr "Ukupna Nabavna Vrijednost (Valuta Tvrtke)" msgid "Total Ledgers" msgstr "Ukupno Knjiženih Naloga" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "Ukupno Obaveze" @@ -57445,7 +57484,7 @@ msgstr "Ukupni PDV i Naknade" msgid "Total Taxes and Charges (Company Currency)" msgstr "Ukupni PDV i Naknade (Valuta Tvrtke)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Ukupno Vrijeme (minuta)" @@ -57454,7 +57493,11 @@ msgstr "Ukupno Vrijeme (minuta)" msgid "Total Time in Mins" msgstr "Ukupno Vrijeme u minutama" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Ukupno neplaćeno: {0}" @@ -57533,7 +57576,7 @@ msgstr "Ukupno vrijeme rada na Radnoj Stanici (u Satima)" msgid "Total allocated percentage for sales team should be 100" msgstr "Ukupna procentualna dodjela za prodajni tim treba biti 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Ukupan procenat doprinosa treba da bude jednak 100" @@ -57551,8 +57594,8 @@ msgstr "Ukupno sati: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Ukupni iznos plaćanja ne može biti veći od {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57569,9 +57612,9 @@ msgstr "Ukupna količina u rasporedu dostave ne može biti veća od količine ar msgid "Total {0} ({1})" msgstr "Ukupno {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Ukupno {0} za sve artikle je nula, možda biste trebali promijeniti 'Distribuiraj Naknade na osnovu'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57659,27 +57702,11 @@ msgstr "Status Praćenja Informacija" msgid "Tracking URL" msgstr "URL Praćenja" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Transakcija" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "Valuta Transakcije" @@ -57732,11 +57759,11 @@ msgstr "Artikal Zapisa Brisanja Transakcije" msgid "Transaction Deletion Record To Delete" msgstr "Zapis Brisanju Transakcije za brisanje" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "Zapis Brisanja Transakcije {0} se već izvršava. {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "Zapis Brisanja Transakcije {0} trenutno briše {1}. Nije moguće spremiti dokumente dok se brisanje ne dovrši." @@ -58126,6 +58153,10 @@ msgstr "Probna Bilanca (Jednostavno)" msgid "Trial Balance for Party" msgstr "Probna Bilanca Stranke" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58310,7 +58341,7 @@ msgstr "Postavke PDV-a UAE" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58332,7 +58363,7 @@ msgstr "Postavke PDV-a UAE" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58362,7 +58393,7 @@ msgstr "Postavke PDV-a UAE" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58426,7 +58457,7 @@ msgstr "Detalji Jedinice Konverzije" msgid "UOM Conversion Factor" msgstr "Faktor Konverzije Jedinice" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Faktor Konverzije Jedinice({0} -> {1}) nije pronađen za artikal: {2}" @@ -58500,7 +58531,7 @@ msgstr "Otkaži Usaglašavanje" msgid "UnReconcile Allocations" msgstr "Poništi Dodjele" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "Nije moguće preuzeti detalje o DocType. Obratite se administratoru sustava." @@ -58513,10 +58544,6 @@ msgstr "Nije moguće pronaći devizni kurs za {0} do {1} za ključni datum {2}. msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Nije moguće pronaći devizni kurs za {0} do {1} za ključni datum {2}. Kreiraj zapis o razmjeni valuta ručno." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Nije moguće pronaći rezultat koji počinje od {0}. Morate imati stalne rezultate koji pokrivaju od 0 do 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "Nije moguće pronaći vremenski termin u narednih {0} dana za operaciju {1}. Molimo povećajte 'Planiranje Kapaciteta za (Dana)' u {2}." @@ -58541,7 +58568,7 @@ msgstr "Nedodijeljeno" msgid "Unallocated Amount" msgstr "Nedodjeljeni Iznos" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Nedodijeljena Količina" @@ -58553,8 +58580,10 @@ msgstr "Nefakturirani Nalozi" msgid "Unblock Invoice" msgstr "Deblokiraj Fakturu" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58604,7 +58633,7 @@ msgstr "Poništi usklađivanje transakcija" msgid "Undo {}?" msgstr "Poništi {}?" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "Neočekivani Uzorak Imenovanja Serije" @@ -58627,7 +58656,7 @@ msgstr "Jedinica" msgid "Unit Price" msgstr "Jedinična Cijena" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Jedinica Mjere" @@ -58830,7 +58859,7 @@ msgstr "Neplanirano" msgid "Unsecured Loans" msgstr "Neosigurani Krediti" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "OtkažiI Usklađeni Zahtjev Plaćanje" @@ -58843,7 +58872,7 @@ msgstr "Nepotpisano" msgid "Unsubscribe from this Email Digest" msgstr "Otkaži pretplatu na ovaj sažetak e-pošte" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "Nepodržana Značajka" @@ -58987,7 +59016,7 @@ msgstr "Ažuriraj Trenutne Zalihe" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59051,7 +59080,7 @@ msgstr "Ažuriraj postojeću Cijenu Cjenika" msgid "Update latest price in all BOMs" msgstr "Ažuriraj najnoviju cijenu u svim Sastavnicama" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "Ažuriranje zaliha mora biti omogućeno za Fakturu Nabave {0}" @@ -59279,7 +59308,7 @@ msgstr "Koristi Prijedlog" msgid "Use Transaction Date Exchange Rate" msgstr "Koristi Devizni Kurs Datuma Transakcije" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Koristite naziv koji se razlikuje od naziva prethodnog projekta" @@ -59368,6 +59397,10 @@ msgstr "Korisnikovo Vrijeme Rješenja" msgid "User has not applied rule on the invoice {0}" msgstr "Korisnik nije primijenio pravilo na fakturi {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Korisnik {0} ne postoji" @@ -59380,6 +59413,10 @@ msgstr "Korisnik {0} nema standard Profil Blagajne. Provjeri standard u redu {1} msgid "User {0} is already assigned to Employee {1}" msgstr "Korisnik {0} je već dodijeljen {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Korisnik {0}: Uklonjena uloga samoposluživanja osoblja jer nema mapiranog osoblja." @@ -59388,10 +59425,6 @@ msgstr "Korisnik {0}: Uklonjena uloga samoposluživanja osoblja jer nema mapiran msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Korisnik {0}: Uklonjena uloga osoblja jer nema mapiranog osoblja." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Korisnik {} je onemogućen. Odaberi važećeg Korisnika/Blagajnika" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59684,15 +59717,15 @@ msgstr "Procijenjena Vrijednost" msgid "Valuation Rate (In / Out)" msgstr "Stopa Vrednovnja (Ulaz / Izlaz)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Nedostaje Stopa Vrednovanja" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "Stopa Vrednovanja ne može biti negativna." -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Stopa Vrednovanja za artikal {0}, je obavezna za knjigovodstvene unose za {1} {2}." @@ -59700,7 +59733,7 @@ msgstr "Stopa Vrednovanja za artikal {0}, je obavezna za knjigovodstvene unose z msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Procijenjano Vrijednovanje je obavezno ako se unese Početna Zaliha" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Stopa Vrednovanja je obavezna za artikal {0} u redu {1}" @@ -59710,7 +59743,7 @@ msgstr "Stopa Vrednovanja je obavezna za artikal {0} u redu {1}" msgid "Valuation and Total" msgstr "Vrednovanje i Ukupno" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "Stopa Vrednovanja za Klijent Dostavljene Artikle postavljena je na nulu." @@ -59723,14 +59756,14 @@ msgstr "Stopa Vrednovanja za Klijent Dostavljene Artikle postavljena je na nulu. msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Stopa Vrednovanja artikla prema Prodajnoj Fakturi (samo za interne transfere)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Naknade za tip vrijednovanja ne mogu biti označene kao Inkluzivne" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Naknade za vrstu vrijednovanja ne mogu biti označene kao Inkluzivne" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59780,12 +59813,12 @@ msgstr "Prijedlog Vrijednosti" msgid "Value Type" msgstr "Vrsta Vrijednosti" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "Vrijednost kao na" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Vrijednost za atribut {0} mora biti unutar raspona od {1} do {2} u koracima od {3} za artikal {4}" @@ -59794,19 +59827,19 @@ msgstr "Vrijednost za atribut {0} mora biti unutar raspona od {1} do {2} u korac msgid "Value of Goods" msgstr "Vrijednost Proizvoda" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Vrijednost nove kapitalizirane imovine" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Vrijednost nove Nabave" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Vrijednost Rashodovane Imovine" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Vrijednost Prodate Imovine" @@ -60282,7 +60315,7 @@ msgstr "Naziv Verifikata" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60310,7 +60343,7 @@ msgstr "Naziv Verifikata" msgid "Voucher No" msgstr "Broj Verifikata" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Broj Verifikata je obavezan" @@ -60322,7 +60355,7 @@ msgstr "Količina" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Podtip Verifikata" @@ -60354,7 +60387,7 @@ msgstr "Podtip Verifikata" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60561,7 +60594,7 @@ msgstr "Skladište je Obavezno" msgid "Warehouse is required to get producible FG Items" msgstr "Skladište je obavezno za preuzimanje artikala gotovih proizvoda" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Skladište nije pronađeno naspram računu {0}" @@ -60579,16 +60612,16 @@ msgstr "Starost i Vrijednost stanja artikla u Skladištu" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Skladište {0} se ne može izbrisati jer postoji količina za artikal {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Skladište {0} ne pripada Tvrtki {1}." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Skladište {0} ne pripada Tvrtki {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "Skladište {0} ne postoji" @@ -60709,7 +60742,7 @@ msgstr "Upozori ili zaustavi ako se cijena artikla promijeni na Fakturi Nabave i msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Upozorenje - Red {0}: Sati naplate su više od stvarnih sati" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "Upozorenje na Negativnu Zalihu" @@ -60729,7 +60762,7 @@ msgstr "Upozorenje: Još jedan {0} # {1} postoji naspram unosa zaliha {2}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Upozorenje: Količina Materijalnog Naloga je manja od Minimalne Količine Nabavnog Naloga" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "Upozorenje: Količina prelazi maksimalnu proizvodnu količinu na temelju količine sirovina primljenih putem Podizvođačkog Naloga {0}." @@ -60883,10 +60916,6 @@ msgstr "Grupa Artikla Web Stranice" msgid "Website Specifications" msgstr "Specifikacija Web Stranice" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "Tjedan Godine" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61032,7 +61061,7 @@ msgstr "Kada je omogućeno, dodaje filter krajnjeg datuma otpremnicama izrađeni msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "Kada je omogućeno, transakcije s ovim dobavljačem bit će blokirane na temelju vrste zadržavanja navedene u nastavku" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "Kada u unosu zaliha za ponovno pakiranje postoji više gotovih proizvoda ({0}), osnovna cijena za sve gotove proizvode mora se postaviti ručno. Za ručno postavljanje cijene, aktiviraj potvrdni okvir 'Ručno postavi osnovnu cijenu' u odgovarajućem redu gotovih proizvoda." @@ -61208,17 +61237,17 @@ msgstr "Radovi u Toku" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61257,7 +61286,7 @@ msgstr "Potrošeni Materijali Radnog Naloga" msgid "Work Order Item" msgstr "Artikal Radnog Naloga" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "Neusklađenost Radnog Naloga" @@ -61298,20 +61327,20 @@ msgstr "Sažetak Radnog Naloga" msgid "Work Order Summary Report" msgstr "Sažetka Izvješća Radnog Naloga" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Radni Nalog se ne može kreirati iz sljedećeg razloga:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Radni Nalog se nemože pokrenuti naspram Šablona Artikla" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "Radni Nalog je {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "Radni Nalog je obavezan" @@ -61332,7 +61361,7 @@ msgid "Work Order {0} must be submitted" msgstr "Radni Nalog {0} mora biti podnešen" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Radni Nalozi" @@ -61357,7 +61386,7 @@ msgstr "Radovi u Toku" msgid "Work-in-Progress Warehouse" msgstr "Skladište Posla u Toku" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Skladište u Toku je obavezno prije Podnošenja" @@ -61410,7 +61439,7 @@ msgstr "Radno Vrijeme" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61642,14 +61671,6 @@ msgstr "Naziv Godine" msgid "Year Start Date" msgstr "Datum Početka Godine" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "Godina u 2 znamenke" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "Godina u 4 znamenke" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61664,8 +61685,8 @@ msgid "You are importing data for the code list:" msgstr "Uvoziš podatke za Listu Koda:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Nije vam dozvoljeno ažuriranje prema uslovima postavljenim u {} Radnom Toku." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61684,8 +61705,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "Birate više od potrebne količine za artikal {0}. Provjerite postoji li neka druga lista odabira kreirana za prodajni nalog {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "Možete dodati originalnu fakturu {} ručno da nastavite." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61695,19 +61716,15 @@ msgstr "Također možete dodati kreditne ili debitne vrijednosti za prethodno po msgid "You can also copy-paste this link in your browser" msgstr "Takođe možete kopirati i zalijepiti ovu vezu u svoj pretraživač" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Također možete postaviti standard Račun Kapitalnog Posla u Toku u tvrtki {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" -msgstr "Također možete koristiti varijable u nazivu serije tako da ih stavite između točaka (.)" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Možete promijeniti nadređeni račun u račun Bilansa Stanja ili odabrati drugi račun." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "Možete konfigurirati zadane račune amortizacije ili postaviti potrebne račune u sljedećim retcima:

                    " @@ -61729,8 +61746,8 @@ msgid "You can only select one mode of payment as default" msgstr "Možete odabrati samo jedan način plaćanja kao standard" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Možete iskoristiti do {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61748,14 +61765,6 @@ msgstr "Možete postaviti pravilo za podjelu transakcije na više računa." msgid "You can use {0} to reconcile against {1} later." msgstr "Kasnije možete upotrijebiti {0} za usklađivanje s {1}." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "Ne možete napraviti nikakve promjene na Radnoj Kartici jer je Radni Nalog zatvoren." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "Ne možete obraditi serijski broj {0} jer je već korišten u Serijskom i Šaržnom Paketu {1}. {2} ako želite da primite isti serijski broj više puta, tada omogućite 'Dozvoli da se postojeći Serijski Broj ponovo Proizvede/Primi' u {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "Ne možete iskoristiti bodove vjernosti koji imaju veću vrijednost od ukupnog iznosa." @@ -61764,17 +61773,17 @@ msgstr "Ne možete iskoristiti bodove vjernosti koji imaju veću vrijednost od u msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "Ne možete promijeniti cijenu ako je Sastavnica navedena naspram bilo kojeg artikla." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "Ne možete kreirati {0} unutar zatvorenog Knjigovodstvenog Perioda {1}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Ne možete kreirati ili poništiti bilo koje knjigovodstvene unose u zatvorenom knjigovodstvenom periodu {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "Ne možete kreirati/izmijeniti bilo koje knjigovodstvene unose do ovog datuma." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61785,32 +61794,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "Ne možete izbrisati tip projekta 'Eksterni'" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Ne možete uređivati nadređeni član." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "Ne možete omogućiti i '{0}' i '{1} postavke." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "Ne možete poslati sljedeće {0} jer su ili Isporučeni, Neaktivni ili se nalaze u drugom skladištu." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "Ne možete iskoristiti više od {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "Ne možete ponovo knjižiti procjenu artikla prije {}" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "Ne možete ponovo pokrenuti Pretplatu koja nije otkazana." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Ne možete poslati prazan nalog." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61824,6 +61841,10 @@ msgstr "Ne možete ažurirati zalihe za Terećenje. Terećenje je financijski do msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "Ne možete {0} ovaj dokument jer postoji drugi Unos Zatvaranje Perioda {1} nakon {2}" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "Nemate dopuštenje za uvoz i podnošenje bankovnih transakcija" @@ -61834,8 +61855,8 @@ msgid "You do not have permission to import bank transactions" msgstr "Nemate dopuštenje za uvoz bankovnih transakcija" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "Nemate dozvole za {} artikala u {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61861,11 +61882,11 @@ msgstr "Nemate dopuštenje za ažuriranje dokumenta Primljena količina za artik msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "Nemate dopuštenje za ažuriranje ovog dokumenta. Obratite se Upravitelju Sustava." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Imali ste {} grešaka prilikom kreiranja početnih faktura. Provjerite {} za više detalja" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Već ste odabrali artikle iz {0} {1}" @@ -61882,8 +61903,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "Omogućili ste {0} i {1} u {2}. To može dovesti do umetanja cijena iz zadanog cjenika u cjenik transakcija." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "Unijeli ste duplikat Dostavnice u red" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61897,19 +61918,19 @@ msgstr "U ovoj sesiji još niste izvršili nikakva usklađivanja." msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Morate omogućiti automatsko ponovno naručivanje u Postavkama Zaliha kako biste održali nivoe ponovnog naručivanja." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "Imate nespremljene promjene. Želite li spremiti fakturu?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Morate odabrati Klijenta prije dodavanja Artikla." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "Morate otkazati Unos Zatvaranje Kase {} da biste mogli otkazati ovaj dokument." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "Odabrali ste grupni račun {1} kao {2} Račun u redu {0}. Odaberi jedan račun." @@ -61961,6 +61982,10 @@ msgstr "Poštanski Broj" msgid "Zero Balance" msgstr "Nulto Stanje" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "Nulta Stopa" @@ -61991,7 +62016,7 @@ msgstr "[Važno] [ERPNext] Greške Automatskog Preuređenja" msgid "`Allow Negative rates for Items`" msgstr "`Dozvoli negativne cijene za Artikle`" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "poslije" @@ -62011,7 +62036,7 @@ msgstr "kao Naslov" msgid "as a percentage of finished item quantity" msgstr "kao procentualna količine gotovog proizvoda" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "od {0}" @@ -62027,10 +62052,6 @@ msgstr "zasnovano_na" msgid "by {}" msgstr "od {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "ne može biti veći od 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62085,9 +62106,9 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "naziv polja" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." -msgstr "naziv polja u dokumentu, npr." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" +msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency #. Exchange Settings' @@ -62166,14 +62187,10 @@ msgstr "od 5 mogućih" msgid "paid to" msgstr "plaćeno" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "aplikacija za plaćanja nije instalirana. Instaliraj s {0} ili {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "aplikacija za plaćanja nije instalirana. Instaliraj s {} ili {}" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62187,7 +62204,7 @@ msgstr "aplikacija za plaćanja nije instalirana. Instaliraj s {} ili {}" msgid "per hour" msgstr "po satu" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "izvodi bilo koje dolje:" @@ -62263,8 +62280,8 @@ msgstr "prodano" msgid "subscription is already cancelled." msgstr "pretplata je već otkazana." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "target_ref_field" @@ -62327,10 +62344,6 @@ msgstr "putem Popravke Imovine" msgid "via BOM Update Tool" msgstr "putem Alata Ažuriranje Sastavnice" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "morate odabrati Račun Kapitalnih Radova u Toku u Tabeli Računa" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' je onemogućen" @@ -62343,7 +62356,7 @@ msgstr "{0} '{1}' nije u Fiskalnoj Godini {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) ne može biti veći od planirane količine ({2}) u Radnom Nalogu {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} je podnijeo Imovinu. Ukloni Artikal {2} iz tabele da nastavite." @@ -62363,7 +62376,7 @@ msgstr "{0} Proračun za račun {1} u odnosu na {2} {3} iznosi {4}. Već je prem msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "{0} Proračun za račun {1} u odnosu na {2} {3} iznosi {4}. Bit će premašen za {5}." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} Korišteni kupon je {1}. Dozvoljena količina je iskorištena" @@ -62371,11 +62384,6 @@ msgstr "{0} Korišteni kupon je {1}. Dozvoljena količina je iskorištena" msgid "{0} Digest" msgstr "{0} Sažetak" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "{0} Serija Imenovanja" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Broj {1} se već koristi u {2} {3}" @@ -62457,10 +62465,18 @@ msgstr "{0} može biti {1} ili {2}." msgid "{0} can not be negative" msgstr "{0} ne može biti negativan" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} se ne može mijenjati s otvorenim Početnim Unosima." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} se ne može koristiti kao Matični Centar Troškova jer je korišten kao podređeni u raspodjeli Centra Troškova {1}" @@ -62476,7 +62492,7 @@ msgstr "{0} ne može biti nula" msgid "{0} created" msgstr "{0} kreirano" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "Izrada {0} za sljedeće zapise bit će preskočena." @@ -62518,7 +62534,7 @@ msgstr "{0} za {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} ima omogućenu dodjelu na osnovu uslova plaćanja. Odaberi rok plaćanja za red #{1} u sekciji Reference plaćanja" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "{0} je izmijenjena nakon što ste je povukli. Molimo vas da je ponovno povučete." @@ -62526,6 +62542,10 @@ msgstr "{0} je izmijenjena nakon što ste je povukli. Molimo vas da je ponovno p msgid "{0} has been submitted successfully" msgstr "{0} je uspješno podnešen" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} sati" @@ -62534,7 +62554,11 @@ msgstr "{0} sati" msgid "{0} in row {1}" msgstr "{0} u redu {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} je podređena tablica i bit će automatski izbrisana zajedno s nadređenom tablicom" @@ -62548,7 +62572,7 @@ msgstr "{0} je obavezna knjigovodstvena dimenzija.
                    Postavite vrijednost za { msgid "{0} is added multiple times on rows: {1}" msgstr "{0} je dodata više puta u redove: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} već radi za {1}" @@ -62556,7 +62580,7 @@ msgstr "{0} već radi za {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} je blokiran tako da se ova transakcija ne može nastaviti" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} je u Nacrtu. Podnesi prije kreiranja Imovine." @@ -62569,11 +62593,11 @@ msgstr "{0} je obavezan za artikal {1}" msgid "{0} is mandatory for account {1}" msgstr "{0} je obavezan za račun {1}" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do {2}." @@ -62581,7 +62605,7 @@ msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do { msgid "{0} is not a CSV file." msgstr "{0} nije CSV datoteka." -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} nije bankovni račun tvrtke" @@ -62597,7 +62621,7 @@ msgstr "{0} nije artikal na zalihama" msgid "{0} is not a valid Accounting Dimension." msgstr "{0} nije valjana Knjigovodstvena Dimenzija." -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} nije važeća vrijednost za Atribut {1} Artikla {2}." @@ -62613,17 +62637,17 @@ msgstr "{0} nije dodan u tabelu" msgid "{0} is not enabled in {1}" msgstr "{0} nije omogućen u {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} ne radi. Nije moguće pokrenuti događaje za ovaj dokument" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} nije standard dobavljač za bilo koji artikal." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} je na čekanju do {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62673,7 +62697,7 @@ msgstr "{0} parametar je nevažeći" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} unose plaćanja ne može filtrirati {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "{0} količina artikla {1} se prima u Skladište {2} kapaciteta {3}." @@ -62686,7 +62710,7 @@ msgstr "{0} do {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "{0} transakcija bit će uvezeno u sustav. Molimo pregledajte dolje navedene podatke i kliknite gumb 'Uvezi' za nastavak." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} jedinica je rezervisano za artikal {1} u Skladištu {2}, poništi rezervaciju iste za {3} Popis Zaliha." @@ -62702,16 +62726,16 @@ msgstr "{0} jedinica artikla {1} nije dostupno ni u jednom skladištu. Za ovaj a msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} jedinica od {1} potrebno je u {2} s dimenzijom zaliha: {3} na {4} {5} za {6} za dovršetak transakcije." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} jedinica {1} potrebnih u {2} na {3} {4} za {5} da se završi ova transakcija." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} jedinica {1} potrebnih u {2} na {3} {4} za završetak ove transakcije." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} jedinica od {1} potrebnih u {2} za završetak ove transakcije." @@ -62719,7 +62743,7 @@ msgstr "{0} jedinica od {1} potrebnih u {2} za završetak ove transakcije." msgid "{0} until {1}" msgstr "{0} do {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} važeći serijski brojevi za artikal {1}" @@ -62727,7 +62751,7 @@ msgstr "{0} važeći serijski brojevi za artikal {1}" msgid "{0} variants created." msgstr "{0} varijante kreirane." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "Prikaz {0} trenutno nije podržan u Prilagođenom Financijskom Izvješću." @@ -62761,7 +62785,7 @@ msgstr "{0} {1} kreiran" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} ne postoji" @@ -62795,12 +62819,21 @@ msgstr "{0} {1} se dodeljuje dva puta u ovoj bankovnoj transakciji" msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} je već povezan sa Zajedničkim Kodom {2}." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} je povezan sa {2}, ali Račun Stranke je {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} je otkazan ili zatvoren" @@ -62832,6 +62865,10 @@ msgstr "{0} {1} je u potpunosti fakturisano" msgid "{0} {1} is not active" msgstr "{0} {1} nije aktivan" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} nije povezano sa {2} {3}" @@ -62937,27 +62974,23 @@ msgstr "{0}% ukupne vrijednosti fakture će se dati kao popust." msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{0} {1} ne može biti nakon {2}očekivanog datuma završetka." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, završi operaciju {1} prije operacije {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "{0}, {1} ili {2} su jedine dopuštene opcije." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: Podređena tablica (automatski izbrisana s nadređenom tablicom)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Nije pronađeno" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: Zaštićeni DocType" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: Virtualni DocType (bez tablice baze podataka)" @@ -62973,7 +63006,7 @@ msgstr "{0}: {1} ne postoji" msgid "{0}: {1} is a group account." msgstr "{0}: {1} je grupni račun." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} mora biti manje od {2}" @@ -62985,7 +63018,7 @@ msgstr "{count} Sredstva stvorena za {item_code}" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} je otkazan ili zatvoren." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "{item_name} Veličina Uzorka ({sample_size}) ne može biti veća od Prihvaćene Količina ({accepted_quantity})" @@ -62997,32 +63030,7 @@ msgstr "{ref_doctype} {ref_name} status je {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} se ne može otkazati jer su zarađeni Poeni Lojalnosti iskorišteni. Prvo otkažite {} Broj {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} je podnijeo imovinu koja je povezana s njim. Morate poništiti sredstva da biste kreirali povrat nabave." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} fakture" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} je podređena tvrtka." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} je već povezan s drugim {}" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} je već povezan sa {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} ne utječe na bankovni račun {}" - diff --git a/erpnext/locale/hu.po b/erpnext/locale/hu.po index 32f1ae596ce..8920d3b2808 100644 --- a/erpnext/locale/hu.po +++ b/erpnext/locale/hu.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-24 19:22\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: hu_HU\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Készleten" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "" @@ -277,7 +268,7 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" +msgid "'Based On' and 'Group By' can not be the same" msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "" @@ -326,12 +317,12 @@ msgstr "" msgid "'To Date' is required" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 @@ -617,7 +608,7 @@ msgstr "90-nél több" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -785,16 +776,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -955,8 +946,8 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 @@ -967,8 +958,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -985,7 +976,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1018,7 +1009,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1194,7 +1185,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "" @@ -1225,12 +1216,16 @@ msgstr "" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "A CEFACT/ICG/2010/IC013 vagy a CEFACT/ICG/2010/IC010 szerint" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1483,7 +1478,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1613,11 +1608,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1896,8 +1891,8 @@ msgstr "" msgid "Accounting Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "" @@ -1922,8 +1917,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1971,7 +1966,11 @@ msgstr "" msgid "Accounting Period" msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2169,8 +2168,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2398,7 +2397,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2408,7 +2407,7 @@ msgstr "" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2558,8 +2557,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2724,10 +2723,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2826,12 +2821,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -2974,7 +2969,7 @@ msgstr "" msgid "Additional Discount Amount (Company Currency)" msgstr "További kedvezmény összege (Vállalat pénznemében)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3093,11 +3088,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3362,7 +3353,7 @@ msgstr "" msgid "Advance amount" msgstr "Előleg összege" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Előleg összege nem lehet nagyobb, mint {0} {1}" @@ -3431,7 +3422,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "" @@ -3551,7 +3542,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3575,7 +3566,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3689,6 +3680,13 @@ msgstr "" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3865,7 +3863,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3877,7 +3875,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3896,15 +3894,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3928,7 +3926,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "" @@ -3938,7 +3936,7 @@ msgstr "" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3968,7 +3966,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4051,7 +4049,7 @@ msgid "Allow Alternative Item" msgstr "" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4159,7 +4157,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4440,12 +4438,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4480,10 +4480,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4491,10 +4491,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4510,12 +4506,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4720,7 +4716,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4946,12 +4942,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5165,7 +5161,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5342,10 +5338,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5371,6 +5363,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5412,6 +5408,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5494,18 +5499,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Mivel elegendő részösszeállítási tétel van, a {0} raktárhoz nem szükséges munkamegrendelés." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5544,7 +5549,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5616,7 +5621,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5782,7 +5787,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5914,7 +5919,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5930,7 +5935,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -5983,7 +5988,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6061,7 +6066,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6082,7 +6087,7 @@ msgstr "A (z) {item_code} domainhez nem létrehozott eszközök Az eszközt manu msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6092,6 +6097,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6110,19 +6120,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6143,6 +6157,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6163,7 +6181,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6171,26 +6189,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6402,7 +6416,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6463,7 +6477,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6588,7 +6602,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6684,7 +6698,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6802,7 +6816,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6821,7 +6835,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6836,7 +6850,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6967,7 +6981,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -6988,7 +7002,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7040,10 +7054,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7082,15 +7092,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7171,7 +7185,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7241,6 +7255,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7301,7 +7319,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7401,7 +7419,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7646,7 +7664,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7658,7 +7676,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7670,7 +7688,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7946,8 +7964,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7978,15 +7996,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -7994,6 +8012,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8059,8 +8081,8 @@ msgstr "Kötegelt MEE" msgid "Batch and Serial No" msgstr "Köteg- és sorozatszám" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8173,7 +8195,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8648,7 +8670,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8876,7 +8898,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8894,7 +8916,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Összes építése?" @@ -8902,7 +8924,7 @@ msgstr "Összes építése?" msgid "Build Tree" msgstr "Építési fa" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Építhető Mennyiség" @@ -9229,6 +9251,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9400,7 +9426,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9429,21 +9455,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9472,7 +9501,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9480,11 +9509,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9499,10 +9523,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9527,6 +9547,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9536,14 +9561,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9551,7 +9576,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9563,7 +9588,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9588,7 +9613,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9615,7 +9640,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9624,6 +9649,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Nem lehet könyvelési tételeket létrehozni letiltott számlákhoz: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "Nem lehet visszautalást létrehozni az összevont számlához {0}." @@ -9641,7 +9670,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Nem lehet törölni az árfolyamnyereség/veszteség sort" @@ -9654,7 +9683,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Nem lehet törölni egy megrendelt tételt" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9686,7 +9715,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9711,19 +9740,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9735,12 +9768,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9749,19 +9786,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10188,9 +10229,9 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "Az ügyfél neve '{}'-re változott, mivel '{}' már létezik." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10216,8 +10257,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10411,7 +10452,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10469,7 +10510,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10479,7 +10520,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10658,7 +10699,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10672,7 +10713,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "A lezárt munkarend nem állítható le vagy nyitható meg újra" @@ -10902,9 +10943,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11341,7 +11382,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11411,7 +11452,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11451,10 +11492,6 @@ msgstr "" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11619,7 +11656,7 @@ msgstr "Cég Szállítási Címe" msgid "Company Tax ID" msgstr "Céges adószám" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11663,11 +11700,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11706,6 +11743,14 @@ msgstr "Cég {0} többször hozzáadva" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Cég {0} többször hozzáadva" @@ -11714,14 +11759,6 @@ msgstr "Cég {0} többször hozzáadva" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "A {} vállalat még nem létezik. Az adók beállítása megszakadt." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11743,7 +11780,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12187,7 +12224,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12503,7 +12540,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12803,7 +12840,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12828,7 +12865,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12886,7 +12923,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12898,7 +12935,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12920,11 +12957,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13049,14 +13086,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13068,7 +13105,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13078,7 +13115,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13102,7 +13139,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13332,10 +13369,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13354,7 +13387,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13369,7 +13402,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13597,7 +13630,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13631,7 +13664,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13726,7 +13759,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13736,16 +13769,16 @@ msgstr "" msgid "Creation" msgstr "Létrehozás" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13779,11 +13812,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13864,7 +13897,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13944,16 +13977,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14012,12 +14045,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14140,7 +14173,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14205,7 +14238,7 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14268,10 +14301,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15102,7 +15131,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15247,10 +15276,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15357,11 +15382,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15523,7 +15548,7 @@ msgstr "Deciliter" msgid "Decimeter" msgstr "Deciméter" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16204,8 +16229,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16299,7 +16324,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16357,7 +16382,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16687,7 +16712,7 @@ msgstr "Értékcsökkentés" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16703,7 +16728,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16773,7 +16798,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16802,11 +16827,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16834,7 +16859,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16937,11 +16962,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17004,7 +17029,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17177,7 +17202,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17186,8 +17211,8 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' @@ -17195,8 +17220,8 @@ msgstr "" msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17446,8 +17471,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17812,11 +17837,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} nem létezik" @@ -17854,22 +17879,6 @@ msgstr "" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18175,7 +18184,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18329,7 +18338,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18553,7 +18562,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18741,7 +18750,7 @@ msgstr "" msgid "Empty" msgstr "Üres" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18750,7 +18759,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "Ems(Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18829,6 +18838,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19100,7 +19115,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19223,7 +19238,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19278,6 +19293,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19313,7 +19332,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19337,7 +19356,7 @@ msgstr "Erg" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19369,18 +19388,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19395,7 +19416,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19444,7 +19465,7 @@ msgstr "Példa: ABCD. #####. Ha sorozatot állít be, és a tétel nem szerepel msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19725,7 +19746,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19812,7 +19833,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20071,8 +20092,8 @@ msgstr "Fahrenheit" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20270,7 +20291,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20308,15 +20329,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20325,7 +20346,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20484,11 +20505,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20557,7 +20578,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20570,7 +20591,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20678,7 +20699,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20777,10 +20798,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20794,11 +20811,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20831,7 +20845,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20967,7 +20981,7 @@ msgstr "Láb/másodperc" msgid "For" msgstr "Ennek" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -20992,10 +21006,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21062,11 +21072,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21099,12 +21109,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21117,8 +21127,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21134,21 +21144,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21167,11 +21173,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21259,6 +21269,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21802,7 +21827,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21927,6 +21952,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21980,7 +22009,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22323,7 +22352,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22506,7 +22535,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22646,7 +22675,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22949,7 +22978,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -22977,7 +23006,7 @@ msgstr "" msgid "Hertz" msgstr "Hertz" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23013,7 +23042,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23596,15 +23625,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23642,7 +23671,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23743,7 +23772,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23961,14 +23990,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24445,7 +24474,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24531,7 +24560,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24540,7 +24569,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24548,11 +24577,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24561,7 +24590,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24578,7 +24607,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24661,7 +24690,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24858,7 +24887,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24874,12 +24903,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25009,7 +25038,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25034,7 +25063,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25060,7 +25089,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25081,7 +25110,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25123,8 +25152,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25143,7 +25172,7 @@ msgstr "" msgid "Invalid Amount" msgstr "" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25160,11 +25189,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25184,13 +25213,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25211,11 +25240,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25245,7 +25274,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25254,7 +25283,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25293,7 +25322,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25310,7 +25339,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25322,8 +25351,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25331,7 +25360,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25348,7 +25377,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25358,14 +25387,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25397,7 +25426,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26360,10 +26389,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26372,7 +26397,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26421,12 +26446,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26459,7 +26484,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26533,7 +26558,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26694,7 +26719,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26726,7 +26751,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26735,12 +26760,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26836,7 +26861,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27032,7 +27057,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27186,7 +27211,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27217,7 +27242,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27225,8 +27250,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27283,7 +27308,7 @@ msgstr "" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27330,8 +27355,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27343,7 +27368,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27388,7 +27413,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27504,7 +27529,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27623,7 +27648,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27659,7 +27684,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27673,7 +27698,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27688,7 +27713,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27704,10 +27729,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27716,6 +27737,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27725,6 +27750,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Tétel: {0}, nem létezik." @@ -27757,6 +27783,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27789,7 +27819,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27821,10 +27851,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27875,6 +27901,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27891,7 +27921,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -27931,7 +27961,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27941,7 +27971,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28011,7 +28041,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28074,20 +28104,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28150,11 +28179,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28500,7 +28537,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28621,7 +28658,7 @@ msgstr "" msgid "Lead" msgstr "Érdeklődés" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28715,7 +28752,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28863,7 +28900,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28892,7 +28929,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28922,7 +28959,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29018,7 +29055,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29185,7 +29222,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29271,7 +29308,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29509,7 +29546,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29606,7 +29643,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29753,7 +29790,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29836,8 +29873,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30059,7 +30096,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30237,10 +30274,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30267,7 +30300,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30378,7 +30411,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30428,7 +30461,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30450,7 +30483,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30464,7 +30497,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30584,13 +30617,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30759,7 +30792,7 @@ msgstr "Megajoule" msgid "Megawatt" msgstr "Megawatt" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30794,7 +30827,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31140,7 +31173,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31149,11 +31182,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31178,11 +31211,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31190,7 +31223,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31202,7 +31235,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31214,7 +31247,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31222,12 +31255,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31476,8 +31509,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31485,7 +31518,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31506,7 +31539,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31515,10 +31548,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31603,11 +31636,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31651,7 +31680,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31661,12 +31690,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31744,8 +31773,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31795,7 +31824,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31803,7 +31832,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31817,11 +31846,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32065,7 +32094,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32138,6 +32167,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32150,8 +32180,8 @@ msgstr "" msgid "New Workplace" msgstr "Új munkahely" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32160,6 +32190,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32172,7 +32206,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32236,16 +32270,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32253,15 +32286,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32304,11 +32337,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32411,6 +32439,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32456,7 +32488,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32493,10 +32525,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32593,7 +32621,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32631,15 +32659,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32668,7 +32701,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32705,7 +32738,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32713,11 +32746,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32769,7 +32797,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32780,8 +32808,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32795,8 +32823,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32859,10 +32887,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32879,10 +32903,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32895,7 +32915,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33140,7 +33160,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33316,11 +33336,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33355,7 +33375,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33420,7 +33440,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33486,7 +33506,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33639,7 +33659,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33669,7 +33689,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33697,7 +33717,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33706,7 +33726,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33736,20 +33756,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33758,7 +33778,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33801,7 +33821,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33892,7 +33912,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33916,7 +33936,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34102,6 +34122,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34118,10 +34142,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34407,7 +34427,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34461,7 +34481,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34542,11 +34562,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34563,12 +34583,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34619,10 +34639,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34688,6 +34704,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34735,7 +34756,7 @@ msgstr "Értékesítési hely kassza (POS)" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34833,7 +34854,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34893,7 +34914,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34914,7 +34935,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34937,7 +34958,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -34957,7 +34978,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34969,19 +34990,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35011,11 +35032,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35034,7 +35055,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35659,7 +35680,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35786,7 +35807,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35872,7 +35893,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35893,7 +35914,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35929,7 +35950,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36439,7 +36460,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36514,7 +36535,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36536,7 +36557,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36636,7 +36657,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36843,11 +36864,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37363,12 +37384,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37390,7 +37411,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37541,15 +37562,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37557,7 +37569,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37565,19 +37576,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37593,7 +37604,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37601,35 +37612,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37671,7 +37679,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37684,11 +37692,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37704,15 +37712,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37720,11 +37728,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37736,7 +37744,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37748,11 +37756,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37777,7 +37785,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37789,11 +37797,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37809,7 +37817,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37825,7 +37833,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37834,7 +37842,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37870,7 +37878,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38000,7 +38008,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38036,11 +38044,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38069,12 +38073,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38090,9 +38094,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38102,7 +38106,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38125,7 +38129,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38134,6 +38138,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38158,11 +38166,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38191,6 +38199,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38198,11 +38207,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38211,7 +38221,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38223,7 +38233,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38239,6 +38249,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38272,22 +38283,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Kérjük, válasszon ki egy sort az újrakönyvelési bejegyzés létrehozásához" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38296,7 +38311,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38304,10 +38319,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38316,18 +38339,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38365,12 +38380,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38379,7 +38394,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38403,20 +38418,16 @@ msgstr "Kérjük, válassza ki a dokumentum típusát először." msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38445,7 +38456,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38475,21 +38486,19 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Kérjük, állítsa be a Fiscal Code értéket a(z) '{0}' customer rekordhoz" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Kérjük, állítsa be a Fiscal Code értéket a(z) '{0}' public administration rekordhoz" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38506,9 +38515,8 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Kérjük, állítsa be a Tax ID értéket a(z) '{0}' customer rekordhoz" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38527,15 +38535,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38552,9 +38560,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "" +msgid "Please set an Address on the Company '{0}'" +msgstr "Kérjük, állítson be Address értéket a(z) '{0}' Company rekordon" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38572,24 +38579,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38621,11 +38625,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38633,7 +38637,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38688,7 +38692,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38696,7 +38700,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38706,8 +38710,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38715,11 +38719,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38727,6 +38731,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38890,7 +38902,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38915,7 +38927,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38958,7 +38970,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -38967,7 +38979,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39160,6 +39172,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39249,7 +39265,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39391,7 +39407,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39512,7 +39528,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39623,7 +39639,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39831,7 +39847,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40013,7 +40029,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40139,7 +40155,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40164,7 +40180,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40367,7 +40383,7 @@ msgstr "Termékek" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Nyereség ebben az évben" @@ -40396,6 +40412,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40404,8 +40424,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40478,7 +40498,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40558,7 +40578,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40609,7 +40629,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40755,7 +40775,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40788,9 +40808,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41018,8 +41038,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41060,7 +41080,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41084,11 +41104,11 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41103,7 +41123,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41152,7 +41172,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41212,7 +41232,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41302,7 +41322,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41322,7 +41342,7 @@ msgid "Purchase Receipt Trends " msgstr "Beszerzési nyugták alakulása " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41550,7 +41570,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41569,7 +41589,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41634,7 +41654,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41671,7 +41691,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41766,7 +41786,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Építendő mennyiség" @@ -41952,7 +41972,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42029,7 +42049,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42112,7 +42132,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42156,12 +42176,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42312,7 +42332,7 @@ msgstr "Mennyiség megadása kötelező" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42340,11 +42360,11 @@ msgstr "Mennyiség nagyobbnak kell lennie, mint 0" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42352,6 +42372,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "Szkennelendő mennyiség" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42377,7 +42401,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42617,7 +42641,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42801,7 +42825,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43120,7 +43144,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43362,8 +43386,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43539,6 +43563,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43589,7 +43617,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43669,7 +43697,7 @@ msgstr "Hivatkozás #" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -43961,7 +43989,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44068,7 +44096,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44107,7 +44135,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44258,7 +44286,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44341,7 +44369,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44387,6 +44415,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44471,7 +44508,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44587,11 +44624,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44770,6 +44807,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44808,8 +44849,8 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "" +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "A Reserved Qty ({0}) nem lehet tört szám. Ennek engedélyezéséhez tiltsa le ezt: '{1}' a(z) {2} UOM rekordban." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44853,7 +44894,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44869,13 +44910,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45369,6 +45410,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45793,11 +45838,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45881,23 +45926,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45973,13 +46018,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -45991,7 +46039,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -45999,12 +46047,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46016,7 +46064,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "#{0} sor: Értékcsökkenés kezdő dátuma szükséges" @@ -46024,6 +46072,10 @@ msgstr "#{0} sor: Értékcsökkenés kezdő dátuma szükséges" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46036,11 +46088,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46063,8 +46122,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46076,7 +46135,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46088,6 +46147,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46116,16 +46179,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46141,12 +46204,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46157,15 +46224,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46177,24 +46244,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46210,6 +46301,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46229,7 +46324,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46252,7 +46347,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46260,17 +46355,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46290,11 +46385,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46304,7 +46399,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46313,6 +46408,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46325,7 +46424,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46349,7 +46448,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46418,7 +46517,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46426,19 +46525,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46450,11 +46557,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46462,6 +46573,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46478,6 +46602,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46518,71 +46650,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46595,10 +46666,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46619,19 +46686,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46647,11 +46714,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46679,24 +46746,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46717,6 +46784,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46738,7 +46808,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46769,7 +46839,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46793,7 +46863,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46801,12 +46871,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46825,11 +46895,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46837,7 +46907,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46849,7 +46919,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46874,10 +46944,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46930,15 +47000,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -46977,7 +47051,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47038,10 +47112,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47109,7 +47179,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47408,7 +47478,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47625,8 +47695,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48033,7 +48103,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48065,7 +48135,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48175,7 +48245,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48186,7 +48256,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48472,7 +48542,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48493,7 +48563,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48558,7 +48628,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48583,7 +48653,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48613,7 +48683,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48627,13 +48697,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48724,6 +48794,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48865,10 +48936,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49016,7 +49091,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49100,7 +49175,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49157,10 +49232,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49202,6 +49278,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49219,7 +49299,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49264,7 +49344,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49276,7 +49356,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49296,21 +49376,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49325,25 +49402,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49363,7 +49441,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49464,6 +49542,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49512,7 +49594,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49520,122 +49602,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Sorozat" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49717,7 +49689,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49826,12 +49798,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49855,7 +49827,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49870,7 +49842,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49975,7 +49947,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -49993,7 +49965,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50019,7 +49991,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50117,15 +50089,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50193,7 +50165,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50621,6 +50593,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50823,7 +50796,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50926,11 +50899,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -50991,7 +50964,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51047,7 +51020,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51115,7 +51088,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51152,8 +51125,8 @@ msgstr "Forrás típusa" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51283,7 +51256,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51296,7 +51269,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51349,7 +51327,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51414,10 +51392,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51447,7 +51441,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51476,10 +51470,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51560,7 +51558,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51688,7 +51686,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51770,16 +51768,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51946,7 +51948,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52029,7 +52031,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52054,15 +52056,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52232,7 +52234,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52391,8 +52393,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52411,7 +52413,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52426,7 +52428,7 @@ msgstr "Kő" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52434,7 +52436,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52648,7 +52650,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52720,7 +52722,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52758,7 +52760,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52832,7 +52834,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52851,7 +52853,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52880,7 +52882,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53022,7 +53024,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53200,7 +53202,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53382,7 +53384,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53530,7 +53532,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53715,10 +53717,6 @@ msgstr "" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53804,7 +53802,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53865,7 +53863,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -53975,11 +53973,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "" +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "A Finished Good Target Warehouse értékének meg kell egyeznie a Subcontracting Inward Order rekordhoz kapcsolt Work Order {1} Finished Good Warehouse {0} értékével." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54454,7 +54452,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54666,7 +54664,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -54973,12 +54971,8 @@ msgstr "Tesla" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "A 'Csomagból száma' mezőnek sem üres, sem kisebb mint 1 érték nem lehet." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -54986,10 +54980,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55014,6 +55016,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55031,8 +55037,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55043,11 +55052,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55095,15 +55108,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55152,6 +55165,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55173,8 +55190,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55202,7 +55219,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55214,7 +55231,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55250,7 +55267,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55288,11 +55305,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55341,6 +55358,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55350,7 +55371,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55367,7 +55388,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55384,7 +55405,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55403,11 +55424,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "" +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "A(z) {0} item stock értéke a(z) {1} warehouse alatt negatív volt ekkor: {2}. A helyes valuation rate könyveléséhez hozzon létre pozitív entry {3} értéket a(z) {4} dátum és {5} időpont előtt. További részletekért olvassa el a documentation oldalt." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55429,16 +55450,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55477,7 +55498,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55501,7 +55522,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55509,7 +55530,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55517,6 +55538,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55525,7 +55550,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55537,7 +55562,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55554,6 +55579,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55570,10 +55599,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55602,20 +55627,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55666,15 +55691,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55696,7 +55725,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55714,7 +55743,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Ez a dokumentum túlcsordult ennyivel {0} {1} erre a tételre {4}. Létrehoz egy másik {3} ugyanazon {2} helyett?" @@ -55856,7 +55885,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55920,7 +55949,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55947,10 +55976,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56008,7 +56037,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56137,6 +56166,12 @@ msgstr "" msgid "Timeline" msgstr "Idővonal" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56423,7 +56458,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56454,15 +56489,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56479,7 +56514,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56491,7 +56526,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56504,8 +56539,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56525,7 +56560,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56542,10 +56577,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56624,8 +56661,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56667,6 +56704,22 @@ msgstr "" msgid "Total Advance" msgstr "Összes előleg" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56714,11 +56767,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56900,7 +56953,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56909,11 +56962,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Teljes költség ebben az évben" @@ -56951,11 +57004,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Teljes jövedelem ebben az évben" @@ -56998,7 +57051,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57313,7 +57366,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57322,7 +57375,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57401,7 +57458,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57419,7 +57476,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57437,8 +57494,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57527,27 +57584,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57600,11 +57641,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -57994,6 +58035,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58178,7 +58223,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58200,7 +58245,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58230,7 +58275,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58294,7 +58339,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58368,7 +58413,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58381,10 +58426,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Nem található árfolyam erre {0}eddig {1} a kulcs dátum: {2}. Kérjük, hozzon létre egy pénzváltó rekordot manuálisan." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58409,7 +58450,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58421,8 +58462,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58472,7 +58515,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58495,7 +58538,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58698,7 +58741,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58711,7 +58754,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58855,7 +58898,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58919,7 +58962,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59147,7 +59190,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59236,6 +59279,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59248,6 +59295,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59256,10 +59307,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59552,15 +59599,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59568,7 +59615,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59578,7 +59625,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59591,13 +59638,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59648,12 +59695,12 @@ msgstr "" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59662,19 +59709,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60150,7 +60197,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60178,7 +60225,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60190,7 +60237,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60222,7 +60269,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60429,7 +60476,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60447,16 +60494,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60577,7 +60624,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60597,7 +60644,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60751,10 +60798,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60900,7 +60943,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61076,17 +61119,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61125,7 +61168,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61166,20 +61209,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61200,7 +61243,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61225,7 +61268,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61278,7 +61321,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61510,14 +61553,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61532,7 +61567,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61552,7 +61587,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61563,19 +61598,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61597,7 +61628,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61616,14 +61647,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61632,16 +61655,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61653,15 +61676,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61669,7 +61700,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61677,7 +61708,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61692,6 +61723,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61702,7 +61737,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61729,11 +61764,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61750,7 +61785,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61765,19 +61800,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61829,6 +61864,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61859,7 +61898,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61879,7 +61918,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "{0} dátumtól" @@ -61895,10 +61934,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61953,8 +61988,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62034,14 +62069,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62055,7 +62086,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62131,8 +62162,8 @@ msgstr "eladott" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62195,10 +62226,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62211,7 +62238,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62231,7 +62258,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62239,11 +62266,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62325,10 +62347,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62344,7 +62374,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62386,7 +62416,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62394,6 +62424,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62402,7 +62436,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62416,7 +62454,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62424,7 +62462,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62437,11 +62475,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62449,7 +62487,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62465,7 +62503,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62481,16 +62519,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62541,7 +62579,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62554,7 +62592,7 @@ msgstr "{0}-tól {1}-ig" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62570,16 +62608,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62587,7 +62625,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62595,7 +62633,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62629,7 +62667,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62663,12 +62701,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62700,6 +62747,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62805,27 +62856,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62841,7 +62888,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62853,7 +62900,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} törlik vagy zárva." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62865,32 +62912,7 @@ msgstr "{ref_doctype} {ref_name} állapota {status}." msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} számlák" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/id.po b/erpnext/locale/id.po index ba40f3ca843..aac6083e63e 100644 --- a/erpnext/locale/id.po +++ b/erpnext/locale/id.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: id_ID\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "\"Aset Tetap\" tidak dapat dibatalkan centangnya, karena sudah ada catat msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" untuk \"SN-01\" hingga \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Stok Tersedia" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Barang Dibutuhkan" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'Izinkan Beberapa Pesanan Penjualan terhadap Pesanan Pembelian Pelanggan'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Berdasarkan' dan 'Kelompokkan Menurut' tidak boleh sama" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Tanggal Awal harus sebelum 'Tanggal Akhir'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Memiliki No. Seri' tidak bisa 'Ya' untuk barang non-stok" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "'Inspeksi Wajib sebelum Pengiriman' telah dinonaktifkan untuk item {0}, tidak perlu membuat QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "'Inspeksi Wajib sebelum Pembelian' telah dinonaktifkan untuk item {0}, tidak perlu membuat QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Saldo Awal'" @@ -326,13 +317,13 @@ msgstr "'Saldo Awal'" msgid "'To Date' is required" msgstr "'Tanggal Akhir' wajib diisi" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'No. Paket Tujuan' tidak boleh kurang dari 'No. Paket Asal'" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Perbarui Stok' tidak dapat dicentang karena barang tidak dikirim melalui {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90 ke Atas" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -826,16 +817,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "" +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -1050,9 +1041,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Grup Pelanggan dengan nama yang sama sudah ada, silakan ubah Nama Pelanggan atau ganti nama Grup Pelanggan" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1062,9 +1053,9 @@ msgstr "Daftar Hari Libur dapat ditambahkan untuk mengecualikan penghitungan har msgid "A Lead requires either a person's name or an organization's name" msgstr "Lead memerlukan nama orang atau nama organisasi" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Slip Pengepakan hanya dapat dibuat untuk Draf Surat Jalan." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1080,7 +1071,7 @@ msgstr "Daftar Harga adalah kumpulan Harga Barang baik untuk Penjualan, Pembelia msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Produk atau Layanan yang dibeli, dijual, atau disimpan dalam stok." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Pekerjaan Rekonsiliasi {0} sedang berjalan untuk filter yang sama. Tidak dapat merekonsiliasi sekarang" @@ -1113,7 +1104,7 @@ msgstr "Pengemudi harus diatur untuk submit." msgid "A logical Warehouse against which stock entries are made." msgstr "Gudang logis tempat entri stok dicatat." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1289,7 +1280,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Kuantitas Diterima dalam UOM Stok" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Jumlah Diterima" @@ -1320,12 +1311,16 @@ msgstr "Kunci Akses" msgid "Access Key is required for Service Provider: {0}" msgstr "Kunci Akses diperlukan untuk Penyedia Layanan: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "Menurut CEFACT/ICG/2010/IC013 atau CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "Menurut BOM {0}, Item '{1}' tidak ada dalam entri stok." @@ -1578,7 +1573,7 @@ msgstr "Akun wajib diisi untuk mendapatkan entri pembayaran" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Akun tidak Ditemukan" @@ -1708,11 +1703,11 @@ msgstr "Akun: {0} adalah Aset Dalam Pengerjaan dan tidak dapat diperbarui msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Akun: {0} hanya dapat diperbarui melalui Transaksi Persediaan" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Akun: {0} tidak diizinkan di bawah Entri Pembayaran" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Account: {0} dengan mata uang: {1} tidak dapat dipilih" @@ -1991,8 +1986,8 @@ msgstr "Filter Dimensi Akuntansi" msgid "Accounting Entries" msgstr "Entri Akuntansi" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Entri Akuntansi untuk Aset" @@ -2017,8 +2012,8 @@ msgstr "Entri Akuntansi untuk Layanan" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2066,7 +2061,11 @@ msgstr "" msgid "Accounting Period" msgstr "Periode akuntansi" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Periode Akuntansi tumpang tindih dengan {0}" @@ -2264,8 +2263,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "Jumlah Akumulasi Penyusutan" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Akumulasi Penyusutan per tanggal" @@ -2493,7 +2492,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Biaya Aktual" @@ -2503,7 +2502,7 @@ msgstr "Biaya Aktual" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2653,8 +2652,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "Kuantitas aktual di stok" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Pajak tipe Aktual tidak dapat dimasukkan dalam tarif Item di baris {0}" @@ -2819,10 +2818,6 @@ msgstr "Tambah No Seri / Batch" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Tambah No Seri / Batch (Jml Ditolak)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Tambah Stok" @@ -2921,13 +2916,13 @@ msgstr "Ditambahkan Oleh" msgid "Added On" msgstr "Ditambahkan Pada" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Menambahkan Peran Pemasok ke Pengguna {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Menambahkan Peran {1} ke Pengguna {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3069,7 +3064,7 @@ msgstr "Jumlah Diskon Tambahan" msgid "Additional Discount Amount (Company Currency)" msgstr "Jumlah Diskon Tambahan (Mata Uang Perusahaan)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3188,11 +3183,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3457,7 +3448,7 @@ msgstr "" msgid "Advance amount" msgstr "Jumlah uang muka" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Jumlah uang muka tidak boleh lebih besar dari {0} {1}" @@ -3526,7 +3517,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Akun Lawan" @@ -3646,7 +3637,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Voucher Lawan" @@ -3670,7 +3661,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Tipe Voucher Lawan" @@ -3784,6 +3775,13 @@ msgstr "Maskapai Penerbangan" msgid "Algorithm" msgstr "Algoritma" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3960,7 +3958,7 @@ msgstr "" msgid "All items are already requested" msgstr "Semua barang sudah diminta" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Semua item sudah Ditagih/Dikembalikan" @@ -3972,7 +3970,7 @@ msgstr "Semua barang sudah diterima" msgid "All items have already been transferred for this Work Order." msgstr "Semua item telah ditransfer untuk Perintah Kerja ini." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3991,16 +3989,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Semua barang sudah dikembalikan." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Semua item ini telah Ditagih/Dikembalikan" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4023,7 +4021,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Alokasikan Jumlah Pembayaran" @@ -4033,7 +4031,7 @@ msgstr "Alokasikan Jumlah Pembayaran" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -4063,7 +4061,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4146,7 +4144,7 @@ msgid "Allow Alternative Item" msgstr "Izinkan Barang Alternatif" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4254,7 +4252,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4535,12 +4533,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "Diizinkan Untuk Bertransaksi Dengan" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4575,10 +4575,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4586,10 +4586,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Sudah ada catatan untuk item {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Sudah menetapkan default pada profil POS {0} untuk pengguna {1}, harap nonaktifkan default" @@ -4605,12 +4601,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Item Alternatif" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4815,7 +4811,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5041,12 +5037,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Terjadi kesalahan selama proses pembaruan" @@ -5260,7 +5256,7 @@ msgstr "Kode Kupon yang Diterapkan" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5437,10 +5433,6 @@ msgstr "Slot Pemesanan Janji Temu" msgid "Appointment Confirmation" msgstr "Konfirmasi Janji Temu" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5466,6 +5458,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5507,6 +5503,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5589,18 +5594,18 @@ msgstr "Karena bidang {0} diaktifkan, nilai bidang {1} harus lebih dari 1." msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Karena Item Sub Rakitan mencukupi, Perintah Kerja tidak diperlukan untuk Gudang {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Karena bahan baku mencukupi, Permintaan Material tidak diperlukan untuk Gudang {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5639,7 +5644,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5711,7 +5716,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5877,7 +5882,7 @@ msgstr "Item Pergerakan Aset" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6009,7 +6014,7 @@ msgstr "Analitik Nilai Aset" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Aset tidak dapat dibatalkan, karena sudah {0}" @@ -6025,7 +6030,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -6078,7 +6083,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6156,7 +6161,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6177,7 +6182,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6187,6 +6192,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6205,19 +6215,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6238,6 +6252,10 @@ msgstr "Setidaknya satu dari Modul yang Berlaku harus dipilih" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6258,7 +6276,7 @@ msgstr "Pada baris #{0}: ID urutan {1} tidak boleh kurang dari ID urutan baris s msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6266,26 +6284,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6497,7 +6511,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6558,7 +6572,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Dokumen ulang otomatis diperbarui" @@ -6683,7 +6697,7 @@ msgstr "Tanggal Siap Digunakan" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6779,7 +6793,7 @@ msgstr "Tanggal siap digunakan wajib diisi" msgid "Available {0}" msgstr "Tersedia {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Tanggal Siap Digunakan harus setelah Tanggal Pembelian" @@ -6897,7 +6911,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6916,8 +6930,8 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "BOM 1 {0} dan BOM 2 {1} tidak boleh sama" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6931,7 +6945,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "Alat Perbandingan BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7062,7 +7076,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "Waktu Operasi BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7083,7 +7097,7 @@ msgstr "Pencarian BOM" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7135,10 +7149,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7177,15 +7187,19 @@ msgstr "Rekursi BOM: {0} tidak boleh sub dari {1}" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "BOM {0} harus aktif" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "BOM {0} harus disubmit" @@ -7266,7 +7280,7 @@ msgstr "Saldo" msgid "Balance (Dr - Cr)" msgstr "Saldo (Dr - Cr)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Saldo ({0})" @@ -7336,6 +7350,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7396,7 +7414,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7496,7 +7514,7 @@ msgid "Bank Account Type" msgstr "Tipe Rekening Bank" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7741,7 +7759,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Rekening bank tidak dapat dinamakan sebagai {0}" @@ -7753,7 +7771,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Rekening bank {0} sudah ada dan tidak dapat dibuat lagi" @@ -7765,7 +7783,7 @@ msgstr "Rekening bank ditambahkan" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Kesalahan pembuatan transaksi bank" @@ -8041,8 +8059,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8073,15 +8091,15 @@ msgstr "" msgid "Batch No" msgstr "No. Batch" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -8089,6 +8107,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8154,8 +8176,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8268,7 +8290,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8743,7 +8765,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8971,8 +8993,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Anggaran tidak dapat ditetapkan terhadap Akun Grup {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Anggaran tidak dapat ditetapkan terhadap {0}, karena bukan akun Pendapatan atau Beban" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8989,7 +9011,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8997,7 +9019,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9324,6 +9346,10 @@ msgstr "Saldo Laporan Bank Terhitung" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9495,7 +9521,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "Dapat disetujui oleh {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9524,21 +9550,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Tidak dapat memfilter berdasarkan No. Voucher, jika dikelompokkan berdasarkan Voucher" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Hanya dapat melakukan pembayaran terhadap {0} yang belum ditagih" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Dapat merujuk baris hanya jika jenis biaya adalah 'Pada Jumlah Baris Sebelumnya' atau 'Total Baris Sebelumnya'" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Batalkan Kunjungan Material {0} sebelum membatalkan Klaim Garansi ini" @@ -9567,7 +9596,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9575,11 +9604,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Tidak Dapat Menghitung Waktu Kedatangan karena Alamat Pengemudi Tidak Ada." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9594,10 +9618,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Tidak Dapat Mengoptimalkan Rute karena Alamat Pengemudi Tidak Ada." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Tidak Dapat Memberhentikan Karyawan" @@ -9622,6 +9642,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Tidak dapat menjadi item aset tetap karena Buku Besar Persediaan telah dibuat." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9631,14 +9656,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Tidak dapat membatalkan karena Entri Stok {0} yang telah disubmit sudah ada." @@ -9646,7 +9671,7 @@ msgstr "Tidak dapat membatalkan karena Entri Stok {0} yang telah disubmit sudah msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9658,7 +9683,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Tidak dapat membatalkan transaksi untuk Perintah Kerja yang Sudah Selesai." @@ -9683,7 +9708,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Tidak dapat mengubah mata uang default perusahaan, karena sudah ada transaksi. Transaksi harus dibatalkan untuk mengubah mata uang default." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9710,7 +9735,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9719,6 +9744,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9736,7 +9765,7 @@ msgstr "Tidak dapat mendeklarasikan sebagai hilang, karena Quotation telah dibua msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Tidak bisa mengurangi ketika kategori adalah untuk 'Penilaian' atau 'Penilaian dan Total'" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9749,7 +9778,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9781,7 +9810,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9806,19 +9835,23 @@ msgstr "Tidak dapat menemukan Item dengan Barcode ini" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9830,12 +9863,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Tidak dapat merujuk nomor baris yang lebih besar dari atau sama dengan nomor baris saat ini untuk jenis Biaya ini" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9844,19 +9881,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Tidak dapat memilih jenis biaya sebagai 'Pada Row Sebelumnya Jumlah' atau 'On Sebelumnya Row Jumlah' untuk baris terlebih dahulu" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Tidak dapat ditetapkan sebagai Hilang sebagai Sales Order dibuat." @@ -10283,8 +10324,8 @@ msgstr "Ubah jenis akun menjadi Piutang atau pilih akun lain." msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10311,8 +10352,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10506,7 +10547,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Cek / Tanggal Referensi" @@ -10564,7 +10605,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10574,8 +10615,8 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Tugas ini memiliki Subtugas. Anda tidak dapat menghapus Tugas ini." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10753,7 +10794,7 @@ msgstr "Tutup Pinjaman" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Tutup POS" @@ -10767,7 +10808,7 @@ msgstr "Dokumen Tertutup" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10997,9 +11038,9 @@ msgstr "Komisi" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11436,7 +11477,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11506,7 +11547,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11546,10 +11587,6 @@ msgstr "Perusahaan" msgid "Company Abbreviation" msgstr "Singkatan Perusahaan" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Singkatan Perusahaan tidak boleh lebih dari 5 karakter" @@ -11714,7 +11751,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11758,12 +11795,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Nama perusahaan tidak sama" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "Perusahaan aset {0} dan dokumen pembelian {1} tidak cocok." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11801,6 +11838,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "Perusahaan {0} tidak ada" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11809,14 +11854,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11838,7 +11875,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12282,7 +12319,7 @@ msgid "Consumed Qty" msgstr "Qty Dikonsumsi" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12598,7 +12635,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12898,7 +12935,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12923,7 +12960,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12981,7 +13018,7 @@ msgstr "Nomor Pusat Biaya" msgid "Cost Center and Budgeting" msgstr "Pusat Biaya dan Penganggaran" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12993,7 +13030,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Pusat Biaya diperlukan pada baris {0} di tabel Pajak untuk tipe {1}" @@ -13015,11 +13052,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13144,14 +13181,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Tidak dapat membuat Pelanggan secara otomatis karena bidang wajib berikut kosong:" @@ -13163,7 +13200,7 @@ msgstr "Tidak dapat membuat Nota Kredit secara otomatis, harap batalkan centang msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13173,7 +13210,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13197,7 +13234,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Tidak dapat menyelesaikan fungsi skor kriteria untuk {0}. Pastikan formula valid." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Tidak dapat menyelesaikan fungsi skor tertimbang. Pastikan formula valid." @@ -13427,10 +13464,6 @@ msgstr "" msgid "Create New Lead" msgstr "Buat Prospek Baru" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13449,7 +13482,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Buat Entri Pembukaan POS" @@ -13464,7 +13497,7 @@ msgstr "Buat Entri Pembayaran" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13692,7 +13725,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Buat transaksi stok masuk untuk Barang tersebut." @@ -13726,7 +13759,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13821,7 +13854,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Membuat {} dari {} {}" @@ -13831,16 +13864,16 @@ msgstr "Membuat {} dari {} {}" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13874,11 +13907,11 @@ msgstr "" msgid "Credit" msgstr "Kredit" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Kredit ({0})" @@ -13959,7 +13992,7 @@ msgstr "" msgid "Credit Limit" msgstr "Batas Kredit" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -14039,16 +14072,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Batas kredit telah terlampaui untuk pelanggan {0} ({1}/{2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Batas kredit sudah ditentukan untuk Perusahaan {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Batas kredit tercapai untuk pelanggan {0}" @@ -14107,12 +14140,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14235,7 +14268,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "Mata Uang tidak dapat diubah setelah membuat entri menggunakan mata uang lain" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14300,8 +14333,8 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "BOM Lancar dan New BOM tidak bisa sama" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14363,10 +14396,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15197,7 +15226,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Ringkasan Proyek Harian untuk {0}" @@ -15342,10 +15371,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15452,11 +15477,11 @@ msgstr "" msgid "Debit" msgstr "Debet" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15618,7 +15643,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Nyatakan Gagal" @@ -16299,8 +16324,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16394,7 +16419,7 @@ msgstr "Produk Terkirim untuk Ditagih" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16452,7 +16477,7 @@ msgstr "Pengiriman" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16782,7 +16807,7 @@ msgstr "Penyusutan" msgid "Depreciation Amount" msgstr "penyusutan Jumlah" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Penyusutan Jumlah selama periode tersebut" @@ -16798,7 +16823,7 @@ msgstr "penyusutan Tanggal" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Penyusutan Dieliminasi karena pelepasan aset" @@ -16868,7 +16893,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Baris Penyusutan {0}: Nilai yang diharapkan setelah masa manfaat harus lebih besar dari atau sama dengan {1}" @@ -16897,11 +16922,11 @@ msgstr "Jadwal Penyusutan" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16929,7 +16954,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Alasan Rinci" @@ -17032,12 +17057,12 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Akun Selisih harus merupakan akun jenis Aset/Kewajiban, karena Rekonsiliasi Stok ini adalah Entri Pembuka" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17099,7 +17124,7 @@ msgstr "Nilai Selisih" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Satuan Ukur (UOM) yang berbeda untuk barang akan menyebabkan nilai Berat Bersih (Total) yang salah. Pastikan Berat Bersih setiap barang menggunakan Satuan Ukur (UOM) yang sama." @@ -17272,7 +17297,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17281,17 +17306,17 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Aturan harga dinonaktifkan karena {} ini adalah transfer internal" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17541,8 +17566,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "Diskon harus kurang dari 100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17907,11 +17932,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "Tipe Dokumen {0} tidak ada" @@ -17949,22 +17974,6 @@ msgstr "Pencarian Dokumen" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18270,7 +18279,7 @@ msgstr "Duplikat Proyek dengan Tugas" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18424,7 +18433,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Edit Tidak Diizinkan" @@ -18648,8 +18657,8 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "Email Mengantri" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18836,7 +18845,7 @@ msgstr "" msgid "Empty" msgstr "Kosong" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18845,7 +18854,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18924,6 +18933,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19195,7 +19210,7 @@ msgstr "Waktu Selesai" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19318,7 +19333,7 @@ msgstr "Masukkan nomor telepon pelanggan" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Masukkan detail penyusutan" @@ -19373,6 +19388,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "Masukkan jumlah {0}." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19408,7 +19427,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Ekuitas" @@ -19432,7 +19451,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19464,19 +19483,21 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Kesalahan: {0} adalah bidang wajib" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19490,7 +19511,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Estimasi Biaya" @@ -19539,7 +19560,7 @@ msgstr "Contoh: ABCD.#####. Jika seri diatur dan No. Batch tidak disebutkan dala msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19820,7 +19841,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19907,7 +19928,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Biaya" @@ -20166,9 +20187,9 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Gagal Mengautentikasi kunci API." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20365,7 +20386,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20403,15 +20424,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20420,7 +20441,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20579,11 +20600,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20652,7 +20673,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20665,7 +20686,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "Kode Barang Baik Jadi" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20773,7 +20794,7 @@ msgstr "Gudang Barang Jadi" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20872,10 +20893,6 @@ msgstr "Rezim Fiskal adalah wajib, silakan mengatur rezim fiskal di perusahaan { msgid "Fiscal Year" msgstr "Tahun fiskal" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20889,11 +20906,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Tanggal Akhir Tahun Fiskal harus satu tahun setelah Tanggal Mulai Tahun Fiskal" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Tahun Fiskal {0} Tidak Ada" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Tahun fiskal {0} tidak ada" @@ -20926,7 +20940,7 @@ msgstr "Asset Tetap" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21062,7 +21076,7 @@ msgstr "" msgid "For" msgstr "Untuk" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "Untuk barang-barang 'Bundel Produk', Gudang, Nomor Serial dan Nomor Batch akan diperhitungkan dari tabel 'Packing List'. Bila Gudang dan Nomor Batch sama untuk semua barang-barang kemasan dari segala barang 'Bundel Produk', maka nilai tersebut dapat dimasukkan dalam tabel Barang utama, nilai tersebut akan disalin ke tabel 'Packing List'." @@ -21087,10 +21101,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21157,12 +21167,12 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Untuk item {0}, kuantitas harus berupa angka negatif" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Untuk item {0}, kuantitas harus berupa bilangan positif" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21194,12 +21204,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21212,8 +21222,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21229,21 +21239,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Untuk baris {0} di {1}. Untuk menyertakan {2} di tingkat Item, baris {3} juga harus disertakan" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Untuk baris {0}: Masuki rencana qty" @@ -21262,11 +21268,15 @@ msgstr "Untuk ketentuan 'Terapkan Aturan Pada Lainnya', bidang {0} wajib msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21354,6 +21364,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21897,7 +21922,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "GL Entri" @@ -22022,6 +22047,10 @@ msgstr "Buku Besar" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22075,7 +22104,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22418,7 +22447,7 @@ msgstr "Barang dalam Transit" msgid "Goods Transferred" msgstr "Barang Ditransfer" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Barang sudah diterima dengan entri keluar {0}" @@ -22601,7 +22630,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Lebih Besar Dari Jumlah" @@ -22741,7 +22770,7 @@ msgstr "Kelompokkan berdasarkan Pesanan Penjualan" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "gudang kelompok simpul tidak diperbolehkan untuk memilih untuk transaksi" @@ -23044,7 +23073,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -23072,7 +23101,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23108,7 +23137,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23691,15 +23720,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23737,7 +23766,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Jika item bertransaksi sebagai item dengan Nilai Penilaian Nol di entri ini, harap aktifkan 'Izinkan Tingkat Penilaian Nol' di {0} tabel Item." @@ -23838,7 +23867,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -24056,14 +24085,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Impor Berhasil" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24540,7 +24569,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Penghasilan" @@ -24626,7 +24655,7 @@ msgstr "Panggilan masuk dari {0}" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24635,7 +24664,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24643,11 +24672,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24656,7 +24685,7 @@ msgstr "" msgid "Incorrect Date" msgstr "Tanggal Salah" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24673,7 +24702,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24756,7 +24785,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "Kenaikan tidak bisa 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Kenaikan untuk Atribut {0} tidak dapat 0" @@ -24953,7 +24982,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24969,12 +24998,12 @@ msgstr "Izin Tidak Cukup" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Persediaan tidak cukup" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25104,7 +25133,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25129,7 +25158,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25155,7 +25184,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25176,7 +25205,7 @@ msgstr "" msgid "Internal Transfer" msgstr "internal transfer" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25218,8 +25247,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25238,7 +25267,7 @@ msgstr "" msgid "Invalid Amount" msgstr "Jumlah Tidak Valid" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Atribut yang tidak valid" @@ -25255,11 +25284,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Kode Batang Tidak Valid. Tidak ada Barang yang terlampir pada barcode ini." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Pesanan Selimut Tidak Valid untuk Pelanggan dan Item yang dipilih" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25279,13 +25308,13 @@ msgstr "Perusahaan Tidak Valid untuk Transaksi Antar Perusahaan." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25306,11 +25335,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25340,7 +25369,7 @@ msgstr "" msgid "Invalid Item" msgstr "Item Tidak Valid" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25349,7 +25378,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25388,7 +25417,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25405,7 +25434,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "Kuantitas Tidak Valid" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25417,8 +25446,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25426,7 +25455,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "Harga Jual Tidak Valid" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25443,7 +25472,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Nilai Tidak Valid" @@ -25453,14 +25482,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Ekspresi kondisi tidak valid" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25492,7 +25521,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26455,10 +26484,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Hal ini diperlukan untuk mengambil Item detail." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26467,7 +26492,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26516,12 +26541,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26554,7 +26579,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26628,7 +26653,7 @@ msgstr "Butir 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26789,7 +26814,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26821,7 +26846,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26830,12 +26855,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26931,7 +26956,7 @@ msgstr "Item Code tidak dapat diubah untuk Serial Number" msgid "Item Code required at Row No {0}" msgstr "Item Code dibutuhkan pada Row ada {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Kode Barang: {0} tidak tersedia di gudang {1}." @@ -27127,7 +27152,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Tree Item Grup" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Item Grup tidak disebutkan dalam master Stok Barang untuk item {0}" @@ -27281,7 +27306,7 @@ msgstr "Item Produsen" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27312,7 +27337,7 @@ msgstr "Item Produsen" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27320,8 +27345,8 @@ msgstr "Item Produsen" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27378,7 +27403,7 @@ msgstr "Item Produsen" msgid "Item Name" msgstr "Nama barang" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27425,8 +27450,8 @@ msgstr "" msgid "Item Price Stock" msgstr "Stok Harga Barang" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27438,7 +27463,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Harga Barang diperbarui untuk {0} di Daftar Harga {1}" @@ -27483,7 +27508,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Baris Item {0}: {1} {2} tidak ada di atas tabel '{1}'" @@ -27599,7 +27624,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27718,7 +27743,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27754,7 +27779,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Item harus ditambahkan dengan menggunakan tombol 'Dapatkan Item dari Tanda Terima Pembelian'" @@ -27768,7 +27793,7 @@ msgstr "Nama Item" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27783,7 +27808,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27799,10 +27824,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27811,6 +27832,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27820,6 +27845,7 @@ msgstr "Item {0} tidak ada" msgid "Item {0} does not exist in the system or has expired" msgstr "Item {0} tidak ada dalam sistem atau telah berakhir" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27852,6 +27878,10 @@ msgstr "Item {0} telah mencapai akhir hidupnya pada {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "Barang {0} diabaikan karena bukan barang persediaan" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27884,7 +27914,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "Item {0} tidak aktif atau akhir hidup telah tercapai" @@ -27916,10 +27946,6 @@ msgstr "Item {0}: qty Memerintahkan {1} tidak bisa kurang dari qty minimum order msgid "Item {0}: {1} qty produced. " msgstr "Item {0}: {1} jumlah diproduksi." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27970,6 +27996,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "Item: {0} tidak ada dalam sistem" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27986,7 +28016,7 @@ msgstr "" msgid "Items Filter" msgstr "Filter Item" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Item yang Diperlukan" @@ -28026,7 +28056,7 @@ msgstr "Item untuk Permintaan Bahan Baku" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -28036,7 +28066,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Item untuk Pembuatan diminta untuk menarik Bahan Baku yang terkait dengannya." @@ -28106,7 +28136,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28169,20 +28199,19 @@ msgstr "Log Waktu Kartu Pekerjaan" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Pekerjaan Dimulai" @@ -28245,11 +28274,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Kartu kerja {0} dibuat" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28595,7 +28632,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28716,7 +28753,7 @@ msgstr "" msgid "Lead" msgstr "Prospek" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28810,7 +28847,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28958,7 +28995,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Jumlah Kurang Dari" @@ -28987,7 +29024,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Kewajiban" @@ -29017,7 +29054,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "batas Dilalui" @@ -29113,7 +29150,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29280,7 +29317,7 @@ msgstr "Detail Alasan yang Hilang" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Alasan yang Hilang" @@ -29366,7 +29403,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Poin Loyalitas: {0}" @@ -29604,7 +29641,7 @@ msgstr "Jadwal pemeliharaan Detil" msgid "Maintenance Schedule Item" msgstr "Jadwal pemeliharaan Stok Barang" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Jadwal pemeliharaan tidak dihasilkan untuk semua item. Silahkan klik 'Menghasilkan Jadwal'" @@ -29701,7 +29738,7 @@ msgstr "Kunjungan Pemeliharaan" msgid "Maintenance Visit Purpose" msgstr "Pemeliharaan Visit Tujuan" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Tanggal mulai pemeliharaan tidak bisa sebelum tanggal pengiriman untuk Serial No {0}" @@ -29848,7 +29885,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Hilang Wajib" @@ -29931,8 +29968,8 @@ msgstr "Entri manual tidak dapat dibuat! Nonaktifkan entri otomatis untuk akunta #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30154,7 +30191,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30332,10 +30369,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30362,7 +30395,7 @@ msgstr "Bahan konsumsi" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30473,7 +30506,7 @@ msgstr "Permintaan Material" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Bahan Permintaan Tanggal" @@ -30523,7 +30556,7 @@ msgstr "" msgid "Material Request Item" msgstr "Item Permintaan Material" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Permintaan Material yang" @@ -30545,7 +30578,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Permintaan Bahan tidak dibuat, karena kuantitas untuk Bahan Baku sudah tersedia." @@ -30559,7 +30592,7 @@ msgstr "Permintaan Bahan maksimal {0} dapat dibuat untuk Item {1} terhadap Sales msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Permintaan Material {0} dibatalkan atau dihentikan" @@ -30679,13 +30712,13 @@ msgstr "Bahan untuk Supplier" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30854,7 +30887,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Sebutkan Nilai Penilaian di master Item." @@ -30889,7 +30922,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31235,7 +31268,7 @@ msgstr "Beban lain-lain" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31244,11 +31277,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Akun Hilang" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31273,11 +31306,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31285,7 +31318,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31297,7 +31330,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31309,7 +31342,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31317,12 +31350,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Template email tidak ada untuk dikirim. Silakan set satu di Pengaturan Pengiriman." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31571,8 +31604,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31580,8 +31613,8 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Beberapa Aturan Harga ada dengan kriteria yang sama, silahkan menyelesaikan konflik dengan menetapkan prioritas. Harga Aturan: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31601,7 +31634,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Beberapa tahun fiskal ada untuk tanggal {0}. Silakan set perusahaan di Tahun Anggaran" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31610,10 +31643,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Harus Nomor Utuh" @@ -31698,11 +31731,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31746,7 +31775,7 @@ msgstr "Butuh analisa" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Jumlah negatif tidak diperbolehkan" @@ -31756,12 +31785,12 @@ msgstr "Jumlah negatif tidak diperbolehkan" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Tingkat Penilaian Negatif tidak diperbolehkan" @@ -31839,8 +31868,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Nilai Aktiva Bersih seperti pada" @@ -31890,7 +31919,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Laba bersih" @@ -31898,7 +31927,7 @@ msgstr "Laba bersih" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Laba / Rugi Bersih" @@ -31912,11 +31941,11 @@ msgstr "Laba / Rugi Bersih" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32160,7 +32189,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32233,6 +32262,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32245,9 +32275,9 @@ msgstr "Gudang baru Nama" msgid "New Workplace" msgstr "Tempat Kerja Baru" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "batas kredit baru kurang dari jumlah yang luar biasa saat ini bagi pelanggan. batas kredit harus minimal {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32255,6 +32285,10 @@ msgstr "batas kredit baru kurang dari jumlah yang luar biasa saat ini bagi pelan msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Tanggal rilis baru harus di masa depan" @@ -32267,7 +32301,7 @@ msgstr "" msgid "New task" msgstr "Tugas baru" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "{0} aturan penetapan harga baru dibuat" @@ -32331,16 +32365,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Tidak ada Pelanggan yang ditemukan untuk Transaksi Antar Perusahaan yang mewakili perusahaan {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Tidak ada Catatan Pengiriman yang dipilih untuk Pelanggan {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32348,15 +32381,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Ada Stok Barang dengan Barcode {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Tidak ada Stok Barang dengan Serial No {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32399,11 +32432,6 @@ msgstr "Tidak ada izin" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32506,6 +32534,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "Tidak ada kontak dengan ID email yang ditemukan." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Tidak ada data untuk periode ini" @@ -32551,7 +32583,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32588,10 +32620,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32688,7 +32716,7 @@ msgstr "Tidak ditemukan faktur luar biasa" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Tidak ada faktur terutang yang membutuhkan revaluasi kurs" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32726,15 +32754,20 @@ msgstr "" msgid "No record found" msgstr "Tidak ada catatan ditemukan" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32763,7 +32796,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32800,7 +32833,7 @@ msgstr "Tidak ada nilai" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32808,11 +32841,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "Tidak ada {0} ditemukan untuk Transaksi Perusahaan Inter." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32864,7 +32892,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Tak satu pun dari item memiliki perubahan kuantitas atau nilai." @@ -32875,8 +32903,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32890,8 +32918,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Tidak tersedia" @@ -32954,10 +32982,6 @@ msgstr "Tidak Dimulai" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Tidak memungkinkan untuk mengatur item alternatif untuk item {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Tidak diperbolehkan membuat dimensi akuntansi untuk {0}" @@ -32974,10 +32998,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "Tidak berwenang untuk mengedit Akun frozen {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32990,7 +33010,7 @@ msgstr "Habis" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33235,8 +33255,8 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Numero belum disetel di file XML" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33411,11 +33431,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33450,7 +33470,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33515,7 +33535,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33581,7 +33601,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Buka Tampilan Formulir" @@ -33734,7 +33754,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33764,7 +33784,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Pembukaan Pembuatan Faktur Sedang Berlangsung" @@ -33792,7 +33812,7 @@ msgstr "Membuka Item Faktur" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33801,7 +33821,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Membuka Faktur Ringkasan" @@ -33831,20 +33851,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Persediaan pembukaan" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33853,7 +33873,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33896,7 +33916,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Biaya Operasi" @@ -33987,7 +34007,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Operasi Waktu harus lebih besar dari 0 untuk operasi {0}" @@ -34011,8 +34031,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "Operasi {0} bukan milik perintah kerja {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Operasi {0} lebih lama daripada jam kerja yang tersedia di workstation {1}, memecah operasi menjadi beberapa operasi" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34197,6 +34217,10 @@ msgstr "Peluang {0} dibuat" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34213,10 +34237,6 @@ msgstr "Opsional. Pengaturan ini akan digunakan untuk menyaring dalam berbagai t msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Jumlah pesanan" @@ -34502,7 +34522,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34556,7 +34576,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34637,11 +34657,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Toleransi Kelebihan Pengambilan (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34658,12 +34678,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34714,10 +34734,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Tumpang tindih dalam penilaian antara {0} dan {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Kondisi Tumpang Tindih ditemukan antara:" @@ -34783,6 +34799,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34830,7 +34851,7 @@ msgstr "POS" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34928,8 +34949,8 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "Faktur POS tidak dibuat oleh pengguna {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -34988,7 +35009,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -35009,7 +35030,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -35032,7 +35053,7 @@ msgstr "Metode Pembayaran POS" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "POS Profil" @@ -35052,7 +35073,7 @@ msgstr "Profil Pengguna POS" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -35064,19 +35085,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35106,11 +35127,11 @@ msgstr "Pengaturan POS" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35129,7 +35150,7 @@ msgstr "Proyek PSOA" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35754,7 +35775,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35881,7 +35902,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35967,7 +35988,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35988,7 +36009,7 @@ msgstr "Type Partai" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Jenis dan Pesta Pihak adalah wajib untuk {0} akun" @@ -36024,7 +36045,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36534,7 +36555,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36609,7 +36630,7 @@ msgstr "Jadwal pembayaran" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36631,7 +36652,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36731,8 +36752,8 @@ msgid "Payment Type" msgstr "Jenis Pembayaran" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Jenis Pembayaran harus menjadi salah satu Menerima, Pay dan Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36938,11 +36959,11 @@ msgstr "Kegiatan tertunda untuk hari ini" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37458,12 +37479,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37485,7 +37506,7 @@ msgstr "" msgid "Plaid Settings" msgstr "Pengaturan Kotak-kotak" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Kesalahan sinkronisasi transaksi kotak-kotak" @@ -37636,15 +37657,6 @@ msgstr "Tanaman dan Mesin" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Harap Restock Item dan Perbarui Daftar Pilih untuk melanjutkan. Untuk menghentikan, batalkan Pilih Daftar." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Harap Pilih Perusahaan" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Harap Pilih Perusahaan." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37652,7 +37664,6 @@ msgstr "Harap Pilih Pelanggan" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Silakan Pilih Pemasok" @@ -37660,19 +37671,19 @@ msgstr "Silakan Pilih Pemasok" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Harap Setel Grup Pemasok di Setelan Beli." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Harap tambahkan Cara pembayaran dan detail saldo pembukaan." @@ -37688,7 +37699,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Harap tambahkan akun Pembukaan Sementara di Bagan Akun" @@ -37696,35 +37707,32 @@ msgstr "Harap tambahkan akun Pembukaan Sementara di Bagan Akun" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Harap tambahkan akun ke Perusahaan tingkat akar - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37766,7 +37774,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37779,11 +37787,11 @@ msgstr "Harap periksa ID klien Kotak-kotak dan nilai rahasia Anda" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Silahkan klik 'Menghasilkan Jadwal'" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Silahkan klik 'Menghasilkan Jadwal' untuk mengambil Serial yang ditambahkan untuk Item {0}" @@ -37799,15 +37807,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37815,11 +37823,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Harap ubah akun induk di perusahaan anak yang sesuai menjadi akun grup." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Harap buat Pelanggan dari Prospek {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37831,7 +37839,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Harap buat tanda terima pembelian atau beli faktur untuk item {0}" @@ -37843,11 +37851,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Tolong jangan membuat lebih dari 500 item sekaligus" @@ -37872,7 +37880,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37884,11 +37892,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37904,7 +37912,7 @@ msgstr "Silahkan masukkan account untuk Perubahan Jumlah" msgid "Please enter Approving Role or Approving User" msgstr "Entrikan Menyetujui Peran atau Menyetujui Pengguna" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37920,7 +37928,7 @@ msgstr "Harap masukkan Tanggal Pengiriman" msgid "Please enter Employee Id of this sales person" msgstr "Cukup masukkan Id Karyawan Sales Person ini" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Masukan Entrikan Beban Akun" @@ -37929,7 +37937,7 @@ msgstr "Masukan Entrikan Beban Akun" msgid "Please enter Item Code to get Batch Number" msgstr "Masukkan Item Code untuk mendapatkan Nomor Batch" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Entrikan Item Code untuk mendapatkan bets tidak" @@ -37965,7 +37973,7 @@ msgstr "Harap masukkan tanggal Referensi" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38095,7 +38103,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38131,11 +38139,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "Silakan tarik item dari Pengiriman Note" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38164,12 +38168,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "Silakan pilih Jenis Templat untuk mengunduh templat" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Silakan pilih Terapkan Diskon Pada" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Silahkan pilih BOM terhadap item {0}" @@ -38185,9 +38189,9 @@ msgstr "" msgid "Please select Category first" msgstr "Silahkan pilih Kategori terlebih dahulu" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Silakan pilih Mengisi Tipe terlebih dahulu" @@ -38197,8 +38201,8 @@ msgstr "Silakan pilih Perusahaan" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Silakan pilih Perusahaan dan Tanggal Posting untuk mendapatkan entri" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38220,7 +38224,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Silakan pilih Perusahaan yang ada untuk menciptakan Bagan Akun" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38229,6 +38233,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "Silakan pilih Kode Barang terlebih dahulu" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Harap pilih Status Pemeliharaan sebagai Selesai atau hapus Tanggal Penyelesaian" @@ -38253,11 +38261,11 @@ msgstr "Silakan pilih Posting Tanggal sebelum memilih Partai" msgid "Please select Posting Date first" msgstr "Silakan pilih Posting Tanggal terlebih dahulu" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Silakan pilih Daftar Harga" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Silakan pilih Qty terhadap item {0}" @@ -38286,6 +38294,7 @@ msgid "Please select a BOM" msgstr "Silahkan pilih BOM" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Silakan pilih sebuah Perusahaan" @@ -38293,11 +38302,12 @@ msgstr "Silakan pilih sebuah Perusahaan" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Pilih Perusahaan terlebih dahulu." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Silahkan pilih pelanggan" @@ -38306,7 +38316,7 @@ msgstr "Silahkan pilih pelanggan" msgid "Please select a Delivery Note" msgstr "Silakan pilih Catatan Pengiriman" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38318,7 +38328,7 @@ msgstr "Silakan pilih a Pemasok" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38334,6 +38344,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38367,22 +38378,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Harap pilih satu baris untuk membuat Entri Reposting" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Silakan pilih nilai untuk {0} quotation_to {1}" @@ -38391,7 +38406,7 @@ msgstr "Silakan pilih nilai untuk {0} quotation_to {1}" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38399,10 +38414,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38411,18 +38434,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Silakan pilih akun yang benar" @@ -38460,12 +38475,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38474,8 +38489,8 @@ msgid "Please select the Company" msgstr "Silahkan pilih Perusahaan" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Silakan pilih tipe Program Multi Tier untuk lebih dari satu aturan koleksi." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38498,20 +38513,16 @@ msgstr "Silakan pilih jenis dokumen terlebih dahulu." msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Silakan pilih dari hari mingguan" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Silahkan pilih {0} terlebih dahulu" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Silahkan mengatur 'Terapkan Diskon tambahan On'" @@ -38540,7 +38551,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Setel Akun di Gudang {0} atau Akun Inventaris Default di Perusahaan {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38570,21 +38581,19 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Harap atur Kode Fiskal untuk pelanggan '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Harap atur Kode Fiskal untuk administrasi publik '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38601,9 +38610,8 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Harap atur ID Pajak untuk pelanggan '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38622,15 +38630,15 @@ msgid "Please set a Company" msgstr "Harap tetapkan Perusahaan" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38647,9 +38655,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "" +msgid "Please set an Address on the Company '{0}'" +msgstr "Harap atur Alamat pada Perusahaan '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38667,24 +38674,21 @@ msgstr "Harap setel setidaknya satu baris di Tabel Pajak dan Biaya" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Silakan set Cash standar atau rekening Bank Mode Pembayaran {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Harap setel Rekening Tunai atau Bank default dalam Cara Pembayaran {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Silakan set Cash standar atau rekening Bank Mode Pembayaran {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Harap setel rekening Tunai atau Bank default dalam Mode Pembayaran {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38716,11 +38720,11 @@ msgstr "Silahkan mengatur filter berdasarkan Barang atau Gudang" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Silahkan mengatur berulang setelah menyimpan" @@ -38728,7 +38732,7 @@ msgstr "Silahkan mengatur berulang setelah menyimpan" msgid "Please set the Customer Address" msgstr "Silakan atur Alamat Pelanggan" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Harap atur Default Cost Center di {0} perusahaan." @@ -38783,7 +38787,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38791,7 +38795,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Silakan tentukan Perusahaan" @@ -38801,8 +38805,8 @@ msgstr "Silakan tentukan Perusahaan" msgid "Please specify Company to proceed" msgstr "Silahkan tentukan Perusahaan untuk melanjutkan" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Tentukan Row ID berlaku untuk baris {0} dalam tabel {1}" @@ -38810,11 +38814,11 @@ msgstr "Tentukan Row ID berlaku untuk baris {0} dalam tabel {1}" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Silakan tentukan setidaknya satu atribut dalam tabel Atribut" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Silakan tentukan baik Quantity atau Tingkat Penilaian atau keduanya" @@ -38822,6 +38826,14 @@ msgstr "Silakan tentukan baik Quantity atau Tingkat Penilaian atau keduanya" msgid "Please specify from/to range" msgstr "Silakan tentukan dari / ke berkisar" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38985,7 +38997,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39010,7 +39022,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39053,8 +39065,8 @@ msgstr "Tanggal Posting" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Posting Tanggal tidak bisa tanggal di masa depan" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39062,7 +39074,7 @@ msgstr "Posting Tanggal tidak bisa tanggal di masa depan" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39255,6 +39267,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39344,7 +39360,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Sebelumnya Keuangan Tahun tidak tertutup" @@ -39486,7 +39502,7 @@ msgstr "Negara Daftar Harga" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Daftar Harga Mata uang tidak dipilih" @@ -39607,7 +39623,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39718,7 +39734,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "Aturan Harga {0} diperbarui" @@ -39926,7 +39942,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40108,7 +40124,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40234,7 +40250,7 @@ msgstr "Bundel produk" msgid "Product Bundle Balance" msgstr "Saldo Bundel Produk" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40259,7 +40275,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "Barang Bundel Produk" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40462,7 +40478,7 @@ msgstr "Produk" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Untung Tahun Ini" @@ -40491,6 +40507,10 @@ msgstr "Laba rugi" msgid "Profit and Loss Statement" msgstr "Laba Rugi" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40499,8 +40519,8 @@ msgstr "Laba Rugi" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "keuntungan untuk tahun ini" @@ -40573,7 +40593,7 @@ msgstr "Status proyek" msgid "Project Summary" msgstr "Ringkasan proyek" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Ringkasan Proyek untuk {0}" @@ -40653,7 +40673,7 @@ msgstr "Pelacakan Stok proyek yang bijaksana" msgid "Project wise Stock Tracking " msgstr "Pelacakan Persediaan menurut Proyek" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Data proyek-bijaksana tidak tersedia untuk Quotation" @@ -40704,7 +40724,7 @@ msgstr "Proyeksi qty" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40850,7 +40870,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Prospek Terlibat Tapi Tidak Dikonversi" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40883,9 +40903,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Laba Provisional / Rugi (Kredit)" @@ -41113,8 +41133,8 @@ msgstr "Pembelian Faktur Trends" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Faktur Pembelian tidak dapat dilakukan terhadap aset yang ada {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Faktur Pembelian {0} sudah Terkirim" @@ -41155,7 +41175,7 @@ msgstr "Faktur Pembelian" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41179,11 +41199,11 @@ msgstr "Faktur Pembelian" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Jumlah Pesanan Pembelian" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Jumlah Pesanan Pembelian (Mata Uang Perusahaan)" @@ -41198,7 +41218,7 @@ msgstr "Jumlah Pesanan Pembelian (Mata Uang Perusahaan)" msgid "Purchase Order Analysis" msgstr "Analisis Pesanan Pembelian" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Tanggal Pemesanan Pembelian" @@ -41247,8 +41267,8 @@ msgid "Purchase Order Required" msgstr "Order Pembelian Diperlukan" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Pesanan Pembelian Diperlukan untuk item {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41307,7 +41327,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41397,8 +41417,8 @@ msgid "Purchase Receipt Required" msgstr "Diperlukan Nota Penerimaan" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Tanda Terima Pembelian Diperlukan untuk item {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41417,8 +41437,8 @@ msgid "Purchase Receipt Trends " msgstr "Tren Nota Penerimaan " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Kwitansi Pembelian tidak memiliki Barang yang Retain Sampel diaktifkan." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41645,7 +41665,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41664,7 +41684,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41729,7 +41749,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41766,7 +41786,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "Kuantitas untuk diproduksi" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41861,7 +41881,7 @@ msgstr "" msgid "Qty to Bill" msgstr "Jumlah hingga Bill" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -42047,7 +42067,7 @@ msgstr "Inspeksi Mutu" msgid "Quality Inspection Analysis" msgstr "Analisis Pemeriksaan Kualitas" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42124,7 +42144,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42207,7 +42227,7 @@ msgstr "Ulasan Kualitas" msgid "Quality Review Objective" msgstr "Tujuan Tinjauan Kualitas" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42251,12 +42271,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42407,7 +42427,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42435,11 +42455,11 @@ msgstr "Kuantitas harus lebih besar dari 0" msgid "Quantity to Manufacture" msgstr "Kuantitas untuk Memproduksi" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "Kuantitas untuk Pembuatan tidak boleh nol untuk operasi {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Kuantitas untuk Produksi harus lebih besar dari 0." @@ -42447,6 +42467,10 @@ msgstr "Kuantitas untuk Produksi harus lebih besar dari 0." msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42472,7 +42496,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42712,7 +42736,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42896,7 +42920,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43215,7 +43239,7 @@ msgstr "Alasan untuk Puting On Hold" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Alasan Penahanan" @@ -43457,8 +43481,8 @@ msgstr "Receiver List kosong. Silakan membuat Receiver List" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43634,6 +43658,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43684,7 +43712,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43764,7 +43792,7 @@ msgstr "Referensi #" msgid "Reference #{0} dated {1}" msgstr "Referensi # {0} tanggal {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -44056,7 +44084,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44163,7 +44191,7 @@ msgstr "Komentar" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44202,7 +44230,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Item dihapus dengan tidak ada perubahan dalam jumlah atau nilai." @@ -44353,7 +44381,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44436,7 +44464,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44482,6 +44510,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44566,7 +44603,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Diperlukan menurut tanggal" @@ -44682,11 +44719,11 @@ msgstr "Diminta Qty" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Situs yang Meminta" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Pemohon" @@ -44865,6 +44902,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44903,8 +44944,8 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "" +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Kuantitas Direservasi ({0}) tidak boleh berupa pecahan. Untuk mengizinkan ini, nonaktifkan '{1}' di UOM {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44948,7 +44989,7 @@ msgstr "Reserved Kuantitas" msgid "Reserved Quantity for Production" msgstr "Kuantitas yang Dicadangkan untuk Produksi" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44964,13 +45005,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45464,6 +45505,10 @@ msgstr "" msgid "Returns" msgstr "Retur" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45888,11 +45933,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Baris # {0}: Tidak dapat mengembalikan lebih dari {1} untuk Barang {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45976,23 +46021,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -46068,13 +46113,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46086,7 +46134,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46094,12 +46142,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46111,7 +46159,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46119,6 +46167,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Baris # {0}: Entri duplikat di Referensi {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Baris # {0}: Tanggal Pengiriman yang diharapkan tidak boleh sebelum Tanggal Pemesanan Pembelian" @@ -46131,11 +46183,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46158,8 +46217,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46171,7 +46230,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46183,6 +46242,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Baris # {0}: Item ditambahkan" @@ -46211,16 +46274,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Baris # {0}: Item {1} bukan Item Serialized / Batched. Itu tidak dapat memiliki Serial No / Batch No terhadapnya." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46236,12 +46299,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46252,15 +46319,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Row # {0}: Journal Entri {1} tidak memiliki akun {2} atau sudah cocok dengan voucher lain" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46272,24 +46339,48 @@ msgstr "Row # {0}: Tidak diperbolehkan untuk mengubah Supplier sebagai Purchase msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46305,6 +46396,10 @@ msgstr "Row # {0}: Silakan mengatur kuantitas menyusun ulang" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46324,7 +46419,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46347,7 +46442,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Baris # {0}: Kuantitas barang {1} tidak boleh nol." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46355,17 +46450,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Row # {0}: Dokumen Referensi Type harus menjadi salah satu Purchase Order, Faktur Pembelian atau Journal Entri" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Baris # {0}: Jenis Dokumen Referensi harus salah satu dari Pesanan Penjualan, Faktur Penjualan, Entri Jurnal atau Dunning" @@ -46385,11 +46480,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46399,7 +46494,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46408,6 +46503,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Baris # {0}: Nomor Seri {1} bukan milik Kelompok {2}" @@ -46420,7 +46519,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46444,7 +46543,7 @@ msgstr "Row # {0}: Set Supplier untuk item {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46513,7 +46612,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46521,19 +46620,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "Baris # {0}: Kelompok {1} telah kedaluwarsa." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Row # {0}: konflik Timing dengan baris {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46545,11 +46652,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46557,6 +46668,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Baris #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Row # {0}: {1} tidak bisa menjadi negatif untuk item {2}" @@ -46573,6 +46697,14 @@ msgstr "Baris # {0}: {1} diperlukan untuk membuat Faktur {2} Pembukaan" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46613,71 +46745,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Baris # {}: Mata uang {} - {} tidak cocok dengan mata uang perusahaan." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Baris # {}: POS Faktur {} telah {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Baris # {}: POS Faktur {} tidak melawan pelanggan {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Baris # {}: Faktur POS {} belum dikirim" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Baris # {}: Nomor Seri {} tidak dapat dikembalikan karena tidak ditransaksikan dalam faktur asli {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Baris # {}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Baris # {}: {} {} tidak ada." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46690,10 +46761,6 @@ msgstr "Baris {0}: Operasi diperlukan terhadap item bahan baku {1}" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46714,19 +46781,19 @@ msgstr "Baris {0}: Uang muka dari Pelanggan harus kredit" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Row {0}: Muka melawan Supplier harus mendebet" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Row {0}: Bill of Material tidak ditemukan Item {1}" @@ -46742,11 +46809,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Row {0}: Faktor Konversi adalah wajib" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Baris {0}: Pusat biaya diperlukan untuk item {1}" @@ -46774,24 +46841,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Baris {0}: Tanggal Jatuh Tempo di tabel Ketentuan Pembayaran tidak boleh sebelum Tanggal Pengiriman" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Row {0}: Kurs adalah wajib" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46812,6 +46879,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Row {0}: Dari Waktu dan To Waktu adalah wajib." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Row {0}: Dari Waktu dan Untuk Waktu {1} adalah tumpang tindih dengan {2}" @@ -46833,7 +46903,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Row {0}: referensi tidak valid {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46864,7 +46934,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46888,7 +46958,7 @@ msgstr "Baris {0}: Pembayaran terhadap Penjualan / Purchase Order harus selalu d msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Baris {0}: Silakan periksa 'Apakah Muka' terhadap Rekening {1} jika ini adalah sebuah entri muka." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46896,12 +46966,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46920,11 +46990,11 @@ msgstr "Baris {0}: Silakan tetapkan kode yang benar pada Mode Pembayaran {1}" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46932,7 +47002,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46944,7 +47014,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46969,10 +47039,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Baris {0}: Item {1}, kuantitas harus bilangan positif" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -47025,15 +47095,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Baris {0}: {1} {2} tidak cocok dengan {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Baris {1}: Kuantitas ({0}) tidak boleh pecahan. Untuk mengizinkan ini, nonaktifkan '{2}' di UOM {3}." @@ -47072,7 +47146,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47133,10 +47207,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47204,7 +47274,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "SLA ditahan sejak {0}" @@ -47503,7 +47573,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47720,8 +47790,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48128,7 +48198,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48160,7 +48230,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Ukuran Sampel" @@ -48270,7 +48340,7 @@ msgstr "" msgid "Schedule Date" msgstr "Jadwal Tanggal" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48281,7 +48351,7 @@ msgstr "" msgid "Scheduled Date" msgstr "Dijadwalkan Tanggal" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48567,7 +48637,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Pilih Item Alternatif" @@ -48588,7 +48658,7 @@ msgid "Select BOM and Qty for Production" msgstr "Pilih BOM dan Qty untuk Produksi" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48653,7 +48723,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Pilih Karyawan" @@ -48678,7 +48748,7 @@ msgstr "Pilih Item" msgid "Select Items based on Delivery Date" msgstr "Pilih Item berdasarkan Tanggal Pengiriman" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48708,7 +48778,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "Pilih Program Loyalitas" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48722,13 +48792,13 @@ msgid "Select Quantity" msgstr "Pilih Kuantitas" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48819,6 +48889,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Pilih akun yang akan dicetak dalam mata uang akun" @@ -48960,10 +49031,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49111,7 +49186,7 @@ msgid "Send Emails to Suppliers" msgstr "Kirim Email ke Pemasok" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Kirim SMS" @@ -49195,7 +49270,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49252,10 +49327,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49297,6 +49373,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49314,7 +49394,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49359,7 +49439,7 @@ msgid "Serial No and Batch" msgstr "Serial dan Batch" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49371,7 +49451,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49391,21 +49471,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Serial ada {0} bukan milik Pengiriman Note {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Serial ada {0} bukan milik Stok Barang {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Serial ada {0} tidak ada" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49420,25 +49497,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Serial ada {0} berada di bawah kontrak pemeliharaan upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Serial ada {0} masih dalam garansi upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Serial No {0} tidak ditemukan" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Nomor Seri: {0} sudah ditransaksikan menjadi Faktur POS lain." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49458,7 +49536,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49559,6 +49637,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49607,7 +49689,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Serial number {0} masuk lebih dari sekali" @@ -49615,122 +49697,12 @@ msgstr "Serial number {0} masuk lebih dari sekali" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Seri" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Series adalah wajib" @@ -49812,7 +49784,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49921,12 +49893,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Tanggal Penghentian Layanan tidak boleh setelah Tanggal Berakhir Layanan" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "Tanggal Penghentian Layanan tidak boleh sebelum Tanggal Mulai Layanan" @@ -49950,7 +49922,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49965,7 +49937,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50070,7 +50042,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50088,7 +50060,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50114,7 +50086,7 @@ msgstr "Tetapkan untuk ditutup" msgid "Set as Completed" msgstr "Setel sebagai Selesai" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Set as Hilang/Kalah" @@ -50212,15 +50184,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Setel {0} dalam kategori aset {1} atau perusahaan {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Setel {0} di perusahaan {1}" @@ -50288,7 +50260,7 @@ msgid "Setting up company" msgstr "Mendirikan perusahaan" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50716,6 +50688,7 @@ msgid "Show Completed" msgstr "Tampilkan Selesai" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50918,7 +50891,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -51021,11 +50994,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -51086,7 +51059,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51142,7 +51115,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51210,7 +51183,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51247,8 +51220,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51378,7 +51351,7 @@ msgstr "Terbagi Masalah" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51391,7 +51364,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51444,7 +51422,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51509,10 +51487,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Tanggal Mulai tidak boleh sebelum tanggal saat ini" @@ -51542,7 +51536,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51571,10 +51565,14 @@ msgstr "Tanggal mulai harus kurang dari tanggal akhir untuk Item {0}" msgid "Start date should be less than end date for task {0}" msgstr "Tanggal mulai harus kurang dari tanggal akhir untuk tugas {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51655,7 +51653,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Status harus Dibatalkan atau Diselesaikan" @@ -51783,7 +51781,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51865,16 +51863,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "Jenis Entri Saham" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Entri Stok telah dibuat terhadap Daftar Pick ini" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Entri Persediaan {0} dibuat" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -52041,7 +52043,7 @@ msgstr "Proyeksi Jumlah Persediaan" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52124,7 +52126,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52149,15 +52151,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52327,7 +52329,7 @@ msgstr "Transaksi Persediaan" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52486,8 +52488,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52506,7 +52508,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52521,7 +52523,7 @@ msgstr "" msgid "Stop Reason" msgstr "Hentikan Alasan" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Pesanan Kerja yang Berhenti tidak dapat dibatalkan, Hapus terlebih dahulu untuk membatalkan" @@ -52529,7 +52531,7 @@ msgstr "Pesanan Kerja yang Berhenti tidak dapat dibatalkan, Hapus terlebih dahul #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Toko" @@ -52743,7 +52745,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52815,7 +52817,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52853,7 +52855,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52927,7 +52929,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52946,7 +52948,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52975,7 +52977,7 @@ msgstr "Kirimkan Pesanan Kerja ini untuk diproses lebih lanjut." msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53117,7 +53119,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Berhasil direkonsiliasi" @@ -53295,7 +53297,7 @@ msgstr "Qty Disupply" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53477,7 +53479,7 @@ msgstr "Tanggal Faktur Supplier" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Nomor Faktur Supplier" @@ -53625,7 +53627,7 @@ msgstr "Perbandingan Penawaran Pemasok" msgid "Supplier Quotation Item" msgstr "Quotation Stok Barang Supplier" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Penawaran Pemasok {0} Dibuat" @@ -53810,10 +53812,6 @@ msgstr "Tim Support" msgid "Support Tickets" msgstr "Tiket Dukungan" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53899,7 +53897,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "Ringkasan Perhitungan TDS" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53960,7 +53958,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -54070,11 +54068,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54549,7 +54547,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Jumlah kena pajak" @@ -54761,7 +54759,7 @@ msgstr "" msgid "Template Item" msgstr "Item Template" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -55068,23 +55066,27 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "'Dari Paket No.' lapangan tidak boleh kosong atau nilainya kurang dari 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "Akses ke Permintaan Penawaran Dari Portal Dinonaktifkan. Untuk Mengizinkan Akses, Aktifkan di Pengaturan Portal." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "Kampanye '{0}' sudah ada untuk {1} '{2}'" @@ -55109,6 +55111,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Program Loyalitas tidak berlaku untuk perusahaan yang dipilih" @@ -55126,8 +55132,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55138,11 +55147,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55190,15 +55203,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55247,6 +55260,10 @@ msgstr "Bidang Ke Pemegang Saham tidak boleh kosong" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Bidang Dari Pemegang Saham dan Pemegang Saham tidak boleh kosong" @@ -55268,8 +55285,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "Nomor folio tidak sesuai" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55297,7 +55314,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Karyawan berikut saat ini masih melapor ke {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55309,7 +55326,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Berikut ini {0} telah dibuat: {1}" @@ -55345,7 +55362,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55383,11 +55400,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55436,6 +55453,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55445,7 +55466,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55462,8 +55483,8 @@ msgid "The selected BOMs are not for the same item" msgstr "BOMs yang dipilih tidak untuk item yang sama" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Akun perubahan yang dipilih {} bukan milik Perusahaan {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55479,7 +55500,7 @@ msgstr "Penjual dan pembeli tidak bisa sama" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55498,11 +55519,11 @@ msgstr "Sahamnya sudah ada" msgid "The shares don't exist with the {0}" msgstr "Saham tidak ada dengan {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "" +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Stok untuk item {0} di gudang {1} negatif pada {2}. Anda harus membuat entri positif {3} sebelum tanggal {4} dan waktu {5} untuk memposting tingkat penilaian yang benar. Untuk detail lebih lanjut, silakan baca dokumentasi." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55524,16 +55545,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "Tugas telah ditetapkan sebagai pekerjaan latar belakang. Jika ada masalah pada pemrosesan di latar belakang, sistem akan menambahkan komentar tentang kesalahan Rekonsiliasi Saham ini dan kembali ke tahap Konsep" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55572,7 +55593,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "Nilai {0} berbeda antara Item {1} dan {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "Nilai {0} sudah ditetapkan ke Item yang ada {1}." @@ -55596,7 +55617,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) harus sama dengan {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55604,7 +55625,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55612,6 +55633,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55620,7 +55645,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Ada pemeliharaan atau perbaikan aktif terhadap aset. Anda harus menyelesaikan semuanya sebelum membatalkan aset." @@ -55632,7 +55657,7 @@ msgstr "Ada ketidakkonsistenan antara tingkat, tidak ada saham dan jumlah yang d msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55649,6 +55674,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55665,10 +55694,6 @@ msgstr "Ada dua opsi untuk menjaga valuasi stok: FIFO (masuk pertama - keluar pe msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55697,20 +55722,20 @@ msgstr "Tidak ada kelompok yang ditemukan terhadap {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55761,15 +55786,19 @@ msgstr "Ringkasan ini Bulan ini" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55791,7 +55820,7 @@ msgstr "Tindakan ini akan memutuskan tautan akun ini dari layanan eksternal yang msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55809,7 +55838,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "Ini mencakup semua scorecard yang terkait dengan Setup ini" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Dokumen ini adalah lebih dari batas oleh {0} {1} untuk item {4}. Apakah Anda membuat yang lain {3} terhadap yang sama {2}?" @@ -55951,7 +55980,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -56015,7 +56044,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -56042,10 +56071,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56103,7 +56132,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56232,6 +56261,12 @@ msgstr "Waktu (dalam menit)" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56518,7 +56553,7 @@ msgid "To Time" msgstr "Untuk waktu" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56549,15 +56584,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Untuk memungkinkan tagihan berlebih, perbarui "Kelebihan Tagihan Penagihan" di Pengaturan Akun atau Item." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Untuk memungkinkan penerimaan / pengiriman berlebih, perbarui "Penerimaan Lebih / Tunjangan Pengiriman" di Pengaturan Stok atau Item." @@ -56574,7 +56609,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56586,7 +56621,7 @@ msgid "To create a Payment Request reference document is required" msgstr "Untuk membuat dokumen referensi Request Request diperlukan" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56599,8 +56634,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Untuk mencakup pajak berturut-turut {0} di tingkat Stok Barang, pajak dalam baris {1} juga harus disertakan" @@ -56620,7 +56655,7 @@ msgstr "Untuk mengesampingkan ini, aktifkan '{0}' di perusahaan {1}" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Untuk tetap melanjutkan mengedit Nilai Atribut ini, aktifkan {0} di Item Variant Settings." @@ -56637,10 +56672,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56719,8 +56756,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Total (Kredit)" @@ -56762,6 +56799,22 @@ msgstr "" msgid "Total Advance" msgstr "Total Uang Muka" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56809,11 +56862,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Total Biaya Berlaku di Purchase meja Jenis Penerimaan harus sama dengan jumlah Pajak dan Biaya" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56995,7 +57048,7 @@ msgstr "Jumlah Total yang Dikirim" msgid "Total Demand (Past Data)" msgstr "Total Permintaan (Data Sebelumnya)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -57004,11 +57057,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Total Biaya" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Total Biaya Tahun Ini" @@ -57046,11 +57099,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Jumlah pemasukan" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Total Penghasilan Tahun Ini" @@ -57093,7 +57146,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57408,7 +57461,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57417,7 +57470,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Total Tunggakan: {0}" @@ -57496,7 +57553,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "Persentase total yang dialokasikan untuk tim penjualan harus 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Total persentase kontribusi harus sama dengan 100" @@ -57514,8 +57571,8 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Total jumlah pembayaran tidak boleh lebih dari {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57532,9 +57589,9 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Total {0} untuk semua item adalah nol, mungkin Anda harus mengubah 'Distribusikan Biaya Berdasarkan'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57622,27 +57679,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Transaksi" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57695,11 +57736,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58089,6 +58130,10 @@ msgstr "Balance Trial (Sederhana)" msgid "Trial Balance for Party" msgstr "Trial Balance untuk Partai" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58273,7 +58318,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58295,7 +58340,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58325,7 +58370,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58389,7 +58434,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Faktor Konversi UOM" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Faktor Konversi UOM ({0} -> {1}) tidak ditemukan untuk item: {2}" @@ -58463,7 +58508,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58476,10 +58521,6 @@ msgstr "Tidak dapat menemukan nilai tukar untuk {0} sampai {1} untuk tanggal kun msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Tidak dapat menemukan nilai tukar untuk {0} sampai {1} untuk tanggal kunci {2}. Buat catatan Currency Exchange secara manual." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Tidak dapat menemukan skor mulai dari {0}. Anda harus memiliki nilai berdiri yang mencakup 0 sampai 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58504,7 +58545,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Jumlah yang tidak terisi" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58516,8 +58557,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "Bebaskan Blokir Faktur" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58567,7 +58610,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58590,7 +58633,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Satuan Ukur" @@ -58793,7 +58836,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "Pinjaman Tanpa Jaminan" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58806,7 +58849,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "Berhenti berlangganan dari Email Ringkasan ini" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58950,7 +58993,7 @@ msgstr "Perbarui Stok Saat Ini" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59014,7 +59057,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59242,7 +59285,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Gunakan nama yang berbeda dari nama proyek sebelumnya" @@ -59331,6 +59374,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "Pengguna belum menerapkan aturan pada faktur {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Pengguna {0} tidak ada" @@ -59343,6 +59390,10 @@ msgstr "Pengguna {0} tidak memiliki Profil POS default. Cek Default di Baris {1} msgid "User {0} is already assigned to Employee {1}" msgstr "Pengguna {0} sudah ditugaskan untuk Karyawan {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59351,10 +59402,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Pengguna {} dinonaktifkan. Pilih pengguna / kasir yang valid" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59647,15 +59694,15 @@ msgstr "Tingkat Penilaian" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Tingkat Penilaian Tidak Ada" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Nilai Penilaian untuk Item {0}, diperlukan untuk melakukan entri akuntansi untuk {1} {2}." @@ -59663,7 +59710,7 @@ msgstr "Nilai Penilaian untuk Item {0}, diperlukan untuk melakukan entri akuntan msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Tingkat Valuasi adalah wajib jika menggunakan Persediaan Pembukaan" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Diperlukan Tingkat Penilaian untuk Item {0} di baris {1}" @@ -59673,7 +59720,7 @@ msgstr "Diperlukan Tingkat Penilaian untuk Item {0} di baris {1}" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59686,14 +59733,14 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Biaya jenis penilaian tidak dapat ditandai sebagai Inklusif" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Jenis penilaian biaya tidak dapat ditandai sebagai Inklusif" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59743,12 +59790,12 @@ msgstr "Proposisi Nilai" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Nilai untuk Atribut {0} harus berada dalam kisaran {1} ke {2} dalam penambahan {3} untuk Item {4}" @@ -59757,19 +59804,19 @@ msgstr "Nilai untuk Atribut {0} harus berada dalam kisaran {1} ke {2} dalam pena msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60245,7 +60292,7 @@ msgstr "Nama Voucher" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60273,7 +60320,7 @@ msgstr "Nama Voucher" msgid "Voucher No" msgstr "Voucher Tidak ada" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60285,7 +60332,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60317,7 +60364,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60524,7 +60571,7 @@ msgstr "Gudang adalah wajib" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Gudang tidak ditemukan melawan akun {0}" @@ -60542,16 +60589,16 @@ msgstr "Gudang Item yang bijak Saldo Umur dan Nilai" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Gudang {0} tidak dapat dihapus karena ada kuantitas untuk Item {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Gudang {0} bukan milik perusahaan {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60672,7 +60719,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60692,7 +60739,7 @@ msgstr "Peringatan: Ada {0} # {1} lain terhadap entri persediaan {2}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Peringatan: Material Diminta Qty kurang dari Minimum Order Qty" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60846,10 +60893,6 @@ msgstr "Situs Stok Barang Grup" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60995,7 +61038,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61171,17 +61214,17 @@ msgstr "Pekerjaan dalam proses" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61220,7 +61263,7 @@ msgstr "" msgid "Work Order Item" msgstr "Item Pesanan Kerja" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61261,20 +61304,20 @@ msgstr "Ringkasan Perintah Kerja" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Perintah Kerja tidak dapat dibuat karena alasan berikut:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Work Order tidak dapat dimunculkan dengan Template Item" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "Perintah Kerja telah {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61295,7 +61338,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Perintah Kerja" @@ -61320,7 +61363,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Kerja-in-Progress Gudang diperlukan sebelum Submit" @@ -61373,7 +61416,7 @@ msgstr "Jam kerja" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61605,14 +61648,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61627,8 +61662,8 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Anda tidak diperbolehkan memperbarui sesuai kondisi yang ditetapkan dalam {} Alur Kerja." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61647,7 +61682,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61658,19 +61693,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "Anda juga dapat copy-paste link ini di browser Anda" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Anda juga dapat menyetel akun CWIP default di Perusahaan {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Anda dapat mengubah akun induk menjadi akun Neraca atau memilih akun lain." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61692,8 +61723,8 @@ msgid "You can only select one mode of payment as default" msgstr "Anda hanya dapat memilih satu jenis pembayaran sebagai default" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Anda dapat menebus hingga {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61711,14 +61742,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61727,16 +61750,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Anda tidak dapat membuat atau membatalkan entri akuntansi apa pun dengan dalam Periode Akuntansi tertutup {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61748,15 +61771,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "Anda tidak bisa menghapus Jenis Proyek 'External'" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Anda tidak dapat mengedit simpul root." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61764,7 +61795,7 @@ msgid "You cannot redeem more than {0}." msgstr "Anda tidak dapat menebus lebih dari {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61772,8 +61803,8 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "Anda tidak dapat memulai ulang Langganan yang tidak dibatalkan." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Anda tidak dapat mengirimkan pesanan kosong." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61787,6 +61818,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61797,8 +61832,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "Anda tidak memiliki izin untuk {} item dalam {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61824,11 +61859,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Anda mengalami {} kesalahan saat membuat faktur pembuka. Periksa {} untuk detail selengkapnya." +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Anda sudah memilih item dari {0} {1}" @@ -61845,7 +61880,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61860,19 +61895,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Anda harus mengaktifkan pemesanan ulang otomatis di Pengaturan Saham untuk mempertahankan tingkat pemesanan ulang." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Anda harus memilih pelanggan sebelum menambahkan item." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61924,6 +61959,10 @@ msgstr "Kode Pos" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61954,7 +61993,7 @@ msgstr "[Penting] [ERPNext] Kesalahan Penyusunan Ulang Otomatis" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61974,7 +62013,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61990,10 +62029,6 @@ msgstr "berdasarkan" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62048,8 +62083,8 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62129,14 +62164,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62150,7 +62181,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62226,8 +62257,8 @@ msgstr "" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62290,10 +62321,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "Anda harus memilih Capital Work in Progress Account di tabel akun" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' dinonaktifkan" @@ -62306,7 +62333,7 @@ msgstr "{0} '{1}' tidak dalam Tahun Anggaran {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) tidak boleh lebih besar dari kuantitas yang direncanakan ({2}) dalam Perintah Kerja {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62326,7 +62353,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} Kupon yang digunakan adalah {1}. Kuantitas yang diizinkan habis" @@ -62334,11 +62361,6 @@ msgstr "{0} Kupon yang digunakan adalah {1}. Kuantitas yang diizinkan habis" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Nomor {1} sudah digunakan di {2} {3}" @@ -62420,10 +62442,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "{0} tidak dapat negatif" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62439,7 +62469,7 @@ msgstr "" msgid "{0} created" msgstr "{0} dibuat" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62481,7 +62511,7 @@ msgstr "{0} untuk {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62489,6 +62519,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "{0} telah berhasil dikirim" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62497,7 +62531,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "{0} di baris {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62511,7 +62549,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62519,7 +62557,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} diblokir sehingga transaksi ini tidak dapat dilanjutkan" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62532,11 +62570,11 @@ msgstr "{0} adalah wajib untuk Item {1}" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} adalah wajib. Mungkin catatan Penukaran Mata Uang tidak dibuat untuk {1} hingga {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} adalah wajib. Mungkin data Kurs Mata Uang tidak dibuat untuk {1} sampai {2}." @@ -62544,7 +62582,7 @@ msgstr "{0} adalah wajib. Mungkin data Kurs Mata Uang tidak dibuat untuk {1} sam msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} bukan rekening bank perusahaan" @@ -62560,7 +62598,7 @@ msgstr "{0} bukan Barang persediaan" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} bukan Nilai yang valid untuk Atribut {1} Butir {2}." @@ -62576,17 +62614,17 @@ msgstr "{0} tidak ditambahkan dalam tabel" msgid "{0} is not enabled in {1}" msgstr "{0} tidak diaktifkan di {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} bukan pemasok default untuk item apa pun." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} ditahan sampai {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62636,7 +62674,7 @@ msgstr "{0} parameter tidak valid" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} entri pembayaran tidak dapat disaring oleh {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62649,7 +62687,7 @@ msgstr "{0} sampai {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62665,16 +62703,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} unit {1} dibutuhkan dalam {2} pada {3} {4} untuk {5} untuk menyelesaikan transaksi ini." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} unit {1} dibutuhkan dalam {2} untuk menyelesaikan transaksi ini." @@ -62682,7 +62720,7 @@ msgstr "{0} unit {1} dibutuhkan dalam {2} untuk menyelesaikan transaksi ini." msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} nomor seri berlaku untuk Item {1}" @@ -62690,7 +62728,7 @@ msgstr "{0} nomor seri berlaku untuk Item {1}" msgid "{0} variants created." msgstr "{0} varian dibuat." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62724,7 +62762,7 @@ msgstr "{0} {1} dibuat" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} tidak ada" @@ -62758,12 +62796,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} dikaitkan dengan {2}, namun Akun Para Pihak adalah {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} dibatalkan atau ditutup" @@ -62795,6 +62842,10 @@ msgstr "{0} {1} telah ditagih sepenuhnya" msgid "{0} {1} is not active" msgstr "{0} {1} tidak aktif" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} tidak terkait dengan {2} {3}" @@ -62900,27 +62951,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, selesaikan operasi {1} sebelum operasi {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62936,7 +62983,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} harus kurang dari {2}" @@ -62948,7 +62995,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62960,32 +63007,7 @@ msgstr "{ref_doctype} {ref_name} status adalah {status}." msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} tidak dapat dibatalkan karena Poin Loyalitas yang diperoleh telah ditukarkan. Pertama batalkan {} Tidak {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} telah mengirimkan aset yang terkait dengannya. Anda perlu membatalkan aset untuk membuat pengembalian pembelian." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} faktur" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/it.po b/erpnext/locale/it.po index 9d1ba5e66e9..8d79bbf0a1d 100644 --- a/erpnext/locale/it.po +++ b/erpnext/locale/it.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: it_IT\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" per \"SN-01\" a \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# In Magazzino" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Elementi Richiesti" @@ -277,7 +268,7 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" +msgid "'Based On' and 'Group By' can not be the same" msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "" @@ -326,12 +317,12 @@ msgstr "" msgid "'To Date' is required" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 @@ -617,7 +608,7 @@ msgstr "90 Oltre" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "non è possibile creare l'attività.

                    Stai cercando di creare {0} asset(s) da {2} {3}.
                    Tuttavia solo {1} oggetto(i) sono stati acquistati e {4} asset(s) già esistono contro {5}." @@ -790,16 +781,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -960,8 +951,8 @@ msgstr "A - B" msgid "A - C" msgstr "A - B" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 @@ -972,8 +963,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -990,7 +981,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1023,7 +1014,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "Si è verificato un conflitto nella sequenza durante la creazione dei numeri di serie. Modificare la sequenza per l'articolo {0}." @@ -1199,7 +1190,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "" @@ -1230,12 +1221,16 @@ msgstr "" msgid "Access Key is required for Service Provider: {0}" msgstr "La chiave di accesso è richiesta per il fornitore di servizi: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1488,7 +1483,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1618,11 +1613,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1901,8 +1896,8 @@ msgstr "" msgid "Accounting Entries" msgstr "Registrazioni Contabili" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "" @@ -1927,8 +1922,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1976,7 +1971,11 @@ msgstr "" msgid "Accounting Period" msgstr "Periodo Contabile" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2174,8 +2173,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2403,7 +2402,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2413,7 +2412,7 @@ msgstr "" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2563,8 +2562,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2729,10 +2728,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2831,12 +2826,12 @@ msgstr "" msgid "Added On" msgstr "Aggiunto su" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -2979,7 +2974,7 @@ msgstr "Importo Sconto Aggiuntivo" msgid "Additional Discount Amount (Company Currency)" msgstr "Importo sconto aggiuntivo (valuta aziendale)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "L'importo dello sconto aggiuntivo ({discount_amount}) non può superare il totale prima di tale sconto ({total_before_discount})" @@ -3098,16 +3093,8 @@ msgid "Additional Transferred Qty" msgstr "Qtà aggiuntiva trasferita" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "La quantità aggiuntiva trasferita {0}\n" -"\t\t\t\t\tnon può essere maggiore di {1}.\n" -"\t\t\t\t\tPer risolvere questo problema, aumentare il valore percentuale\n" -"\t\t\t\t\tdel campo 'Trasferisci materie prime extra a WIP'\n" -"\t\t\t\t\tnelle Impostazioni di produzione." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3371,7 +3358,7 @@ msgstr "" msgid "Advance amount" msgstr "Importo anticipato" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "L'importo anticipato non può essere maggiore di {0} {1}" @@ -3440,7 +3427,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "" @@ -3560,7 +3547,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3584,7 +3571,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3698,6 +3685,13 @@ msgstr "Compagnia aerea" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3874,7 +3868,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3886,7 +3880,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3905,15 +3899,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3937,7 +3931,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "" @@ -3947,7 +3941,7 @@ msgstr "" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3977,7 +3971,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4060,8 +4054,8 @@ msgid "Allow Alternative Item" msgstr "" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Consenti elemento alternativo deve essere selezionato per l'elemento {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4168,7 +4162,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4449,12 +4443,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4489,10 +4485,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4500,10 +4496,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4519,12 +4511,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4729,7 +4721,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4955,12 +4947,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5174,7 +5166,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5351,10 +5343,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5380,6 +5368,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5421,6 +5413,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5503,18 +5504,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Poiché sono presenti transazioni inviate per l'elemento {0}, non è possibile modificare il valore di {1}." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Poiché sono presenti sufficienti articoli di sottoassemblaggio, non è richiesto un ordine di lavoro per il magazzino {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5553,7 +5554,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5625,7 +5626,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5791,7 +5792,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5923,7 +5924,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5939,7 +5940,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -5992,7 +5993,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6070,7 +6071,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6091,7 +6092,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6101,6 +6102,11 @@ msgstr "" msgid "Assign to Name" msgstr "Assegna al nome" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6119,19 +6125,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "Alla riga {0}: in Serial e Batch Bundle {1} deve avere docstatus come 1 e non 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6152,6 +6162,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6172,7 +6186,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6180,26 +6194,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "Almeno una materia prima per l'articolo {0} deve essere fornita dal cliente." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6411,7 +6421,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6472,7 +6482,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6597,7 +6607,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6693,7 +6703,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6811,7 +6821,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6830,7 +6840,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6845,7 +6855,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6976,7 +6986,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -6997,7 +7007,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7049,10 +7059,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7091,15 +7097,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7180,7 +7190,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7250,6 +7260,10 @@ msgstr "Saldo di chiusura bilancio" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7310,7 +7324,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7410,7 +7424,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7655,7 +7669,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7667,7 +7681,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7679,7 +7693,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7955,8 +7969,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7987,15 +8001,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -8003,6 +8017,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8068,8 +8086,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8182,7 +8200,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8657,7 +8675,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8885,7 +8903,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8903,7 +8921,7 @@ msgstr "Tempo Buffer" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8911,7 +8929,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9238,6 +9256,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9409,7 +9431,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9438,21 +9460,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9481,7 +9506,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9489,11 +9514,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "Impossibile modificare le impostazioni dell'account inventario" @@ -9508,10 +9528,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9536,6 +9552,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9545,14 +9566,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "Non è possibile annullare l'inserimento della prenotazione dello stock {0}, poiché è stato utilizzato nell'ordine di lavoro {1}. Si prega di annullare prima l'ordine di lavoro o di non riservare lo stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9560,7 +9581,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "Non è possibile annullare questa registrazione di magazzino di produzione, in quanto la quantità di merce finita prodotta non può essere inferiore alla quantità consegnata nell'Ordine di subfornitura collegato." @@ -9572,7 +9593,7 @@ msgstr "Impossibile annullare questo documento in quanto è collegato con l'Aggi msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9597,8 +9618,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "Impossibile completare l'attività {0} poiché l'attività dipendente {1} non è stata completata/annullata." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9624,7 +9645,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9633,6 +9654,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9650,7 +9675,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9663,7 +9688,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Non è possibile eliminare un articolo che è stato ordinato" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9695,7 +9720,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9720,19 +9745,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9744,12 +9773,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9758,19 +9791,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10197,8 +10234,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10225,8 +10262,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10420,7 +10457,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10478,7 +10515,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10488,7 +10525,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10667,7 +10704,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10681,7 +10718,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10911,9 +10948,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11350,7 +11387,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11420,7 +11457,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11460,10 +11497,6 @@ msgstr "Azienda" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11628,7 +11661,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11672,11 +11705,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11715,6 +11748,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11723,14 +11764,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11752,7 +11785,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12196,7 +12229,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12512,7 +12545,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12812,7 +12845,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12837,7 +12870,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12895,7 +12928,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12907,7 +12940,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12929,11 +12962,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13058,14 +13091,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13077,7 +13110,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13087,7 +13120,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13111,7 +13144,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13341,10 +13374,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13363,7 +13392,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13378,7 +13407,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13606,7 +13635,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13640,7 +13669,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13735,7 +13764,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13745,16 +13774,16 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13788,11 +13817,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13873,7 +13902,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13953,16 +13982,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14021,12 +14050,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14149,7 +14178,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14214,7 +14243,7 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14277,10 +14306,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15111,7 +15136,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15256,10 +15281,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15366,11 +15387,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15532,7 +15553,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16213,8 +16234,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16308,7 +16329,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16366,7 +16387,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16696,7 +16717,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16712,7 +16733,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16782,7 +16803,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16811,11 +16832,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16843,7 +16864,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16946,11 +16967,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17013,7 +17034,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17186,7 +17207,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17195,17 +17216,17 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Regole di prezzo disabilitate poiché questo {} è un trasferimento interno" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17455,8 +17476,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17821,11 +17842,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "Il DocType {0} non esiste" @@ -17863,22 +17884,6 @@ msgstr "" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18184,7 +18189,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18338,7 +18343,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18562,7 +18567,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18750,7 +18755,7 @@ msgstr "" msgid "Empty" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18759,7 +18764,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18838,6 +18843,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19109,7 +19120,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19232,7 +19243,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19287,6 +19298,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19322,7 +19337,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19346,7 +19361,7 @@ msgstr "Erg" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19378,18 +19393,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19404,7 +19421,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19453,7 +19470,7 @@ msgstr "Esempio: ABCD.#####. Se la serie è impostata e il numero di lotto non msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19734,7 +19751,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19821,7 +19838,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20080,8 +20097,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20279,7 +20296,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20317,15 +20334,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20334,7 +20351,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20493,11 +20510,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20566,7 +20583,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20579,7 +20596,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20687,7 +20704,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20786,10 +20803,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20803,11 +20816,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20840,7 +20850,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20976,7 +20986,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -21001,10 +21011,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21071,11 +21077,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21108,12 +21114,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21126,8 +21132,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21143,21 +21149,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21176,11 +21178,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21268,6 +21274,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "CRM Frappe" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21811,7 +21832,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21936,6 +21957,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21989,7 +22014,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22332,7 +22357,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22515,7 +22540,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22655,7 +22680,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22958,7 +22983,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -22986,7 +23011,7 @@ msgstr "" msgid "Hertz" msgstr "Hertz" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Salve," @@ -23022,7 +23047,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23605,15 +23630,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23651,7 +23676,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23752,7 +23777,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23970,14 +23995,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24454,7 +24479,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24540,7 +24565,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24549,7 +24574,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24557,11 +24582,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24570,7 +24595,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24587,7 +24612,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24670,7 +24695,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24867,7 +24892,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24883,12 +24908,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25018,7 +25043,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25043,7 +25068,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25069,7 +25094,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25090,7 +25115,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25132,8 +25157,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25152,7 +25177,7 @@ msgstr "" msgid "Invalid Amount" msgstr "Importo non valido" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25169,11 +25194,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25193,13 +25218,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25220,11 +25245,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25254,7 +25279,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25263,7 +25288,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25302,7 +25327,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25319,7 +25344,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25331,8 +25356,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25340,7 +25365,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25357,7 +25382,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25367,14 +25392,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25406,7 +25431,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26369,10 +26394,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26381,7 +26402,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26430,12 +26451,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26468,7 +26489,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26542,7 +26563,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26703,7 +26724,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26735,7 +26756,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26744,12 +26765,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26845,7 +26866,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27041,7 +27062,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27195,7 +27216,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27226,7 +27247,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27234,8 +27255,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27292,7 +27313,7 @@ msgstr "" msgid "Item Name" msgstr "Nome articolo" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27339,8 +27360,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27352,7 +27373,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27397,7 +27418,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27513,7 +27534,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27632,7 +27653,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27668,7 +27689,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27682,7 +27703,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27697,7 +27718,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27713,10 +27734,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27725,6 +27742,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27734,6 +27755,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27766,6 +27788,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27798,7 +27824,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27830,10 +27856,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27884,6 +27906,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27900,7 +27926,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -27940,7 +27966,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27950,7 +27976,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28020,7 +28046,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28083,20 +28109,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28159,11 +28184,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28509,7 +28542,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28630,7 +28663,7 @@ msgstr "" msgid "Lead" msgstr "Lead" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28724,7 +28757,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28872,7 +28905,7 @@ msgstr "Legenda" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28901,7 +28934,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28931,7 +28964,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29027,7 +29060,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29194,7 +29227,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29280,7 +29313,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29518,7 +29551,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29615,7 +29648,7 @@ msgstr "Visita di manutenzione" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29762,7 +29795,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29845,8 +29878,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30068,7 +30101,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30246,10 +30279,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30276,7 +30305,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30387,7 +30416,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30437,7 +30466,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30459,7 +30488,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30473,7 +30502,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30593,13 +30622,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30768,7 +30797,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30803,7 +30832,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31149,7 +31178,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Mancante" @@ -31158,11 +31187,11 @@ msgstr "Mancante" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31187,11 +31216,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31199,7 +31228,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31211,7 +31240,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31223,7 +31252,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31231,12 +31260,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31485,8 +31514,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31494,7 +31523,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31515,7 +31544,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31524,10 +31553,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31612,11 +31641,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31660,7 +31685,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31670,12 +31695,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31753,8 +31778,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31804,7 +31829,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31812,7 +31837,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31826,11 +31851,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32074,7 +32099,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32147,6 +32172,7 @@ msgid "New Task" msgstr "Nuovo task" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32159,8 +32185,8 @@ msgstr "" msgid "New Workplace" msgstr "Nuovo posto di lavoro" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32169,6 +32195,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32181,7 +32211,7 @@ msgstr "" msgid "New task" msgstr "Nuovo task" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32245,16 +32275,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32262,15 +32291,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32313,11 +32342,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32420,6 +32444,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32465,7 +32493,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32502,10 +32530,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32602,7 +32626,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32640,15 +32664,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32677,7 +32706,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32714,7 +32743,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32722,11 +32751,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "No." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32778,7 +32802,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32789,8 +32813,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32804,8 +32828,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32868,10 +32892,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32888,10 +32908,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32904,7 +32920,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33149,7 +33165,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33325,11 +33341,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33364,7 +33380,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33429,7 +33445,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33495,7 +33511,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33648,7 +33664,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33678,7 +33694,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33706,7 +33722,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33715,7 +33731,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33745,20 +33761,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Scorte iniziali" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33767,7 +33783,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33810,7 +33826,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33901,7 +33917,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33925,7 +33941,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34111,6 +34127,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34127,10 +34147,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34416,7 +34432,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34470,7 +34486,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34551,11 +34567,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Indennità di sovrapproduzione (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34572,12 +34588,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34628,10 +34644,6 @@ msgstr "Task in ritardo" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34697,6 +34709,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34744,7 +34761,7 @@ msgstr "POS" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34842,7 +34859,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34902,7 +34919,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34923,7 +34940,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34946,7 +34963,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -34966,7 +34983,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34978,19 +34995,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35020,11 +35037,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35043,7 +35060,7 @@ msgstr "" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35668,7 +35685,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35795,7 +35812,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35881,7 +35898,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35902,7 +35919,7 @@ msgstr "Tipo Partner" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35938,7 +35955,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36448,7 +36465,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36523,7 +36540,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36545,7 +36562,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36645,7 +36662,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36852,11 +36869,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37372,12 +37389,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37399,7 +37416,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37550,15 +37567,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37566,7 +37574,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37574,19 +37581,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37602,7 +37609,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37610,35 +37617,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37680,7 +37684,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37693,11 +37697,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37713,15 +37717,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37729,11 +37733,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37745,7 +37749,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37757,11 +37761,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37786,7 +37790,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37798,11 +37802,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37818,7 +37822,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37834,7 +37838,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37843,7 +37847,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37879,7 +37883,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38009,7 +38013,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38045,11 +38049,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38078,12 +38078,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38099,9 +38099,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38111,7 +38111,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38134,7 +38134,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38143,6 +38143,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38167,11 +38171,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38200,6 +38204,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38207,11 +38212,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38220,7 +38226,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38232,7 +38238,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Prego selezionare prima un Ordine di Lavoro." @@ -38248,6 +38254,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38281,22 +38288,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Seleziona una riga per creare una voce di ripubblicazione" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38305,7 +38316,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38313,10 +38324,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38325,18 +38344,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38374,12 +38385,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38388,7 +38399,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38412,20 +38423,16 @@ msgstr "Selezionare prima il tipo di documento." msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38454,7 +38461,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38484,13 +38491,11 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" msgstr "" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38498,7 +38503,7 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38515,8 +38520,7 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" +msgid "Please set Tax ID for the customer '{0}'" msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 @@ -38536,15 +38540,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38561,8 +38565,7 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" +msgid "Please set an Address on the Company '{0}'" msgstr "" #: erpnext/stock/services/base_stock_gl_composer.py:194 @@ -38581,24 +38584,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38630,11 +38630,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38642,7 +38642,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38697,7 +38697,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38705,7 +38705,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38715,8 +38715,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38724,11 +38724,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38736,6 +38736,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38899,7 +38907,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38924,7 +38932,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38967,7 +38975,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -38976,7 +38984,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39169,6 +39177,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39258,7 +39270,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39400,7 +39412,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39521,7 +39533,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39632,7 +39644,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39840,7 +39852,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40022,7 +40034,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40148,7 +40160,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40173,7 +40185,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40376,7 +40388,7 @@ msgstr "" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Profitto annuale" @@ -40405,6 +40417,10 @@ msgstr "Profitti e Perdite" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40413,8 +40429,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40487,7 +40503,7 @@ msgstr "" msgid "Project Summary" msgstr "Riepilogo progetti" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40567,7 +40583,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40618,7 +40634,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40764,7 +40780,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40797,9 +40813,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41027,8 +41043,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41069,7 +41085,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41093,11 +41109,11 @@ msgstr "" msgid "Purchase Order" msgstr "Ordine d'Acquisto" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41112,7 +41128,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "Analisi degli Ordini di Acquisto" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41161,7 +41177,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41221,7 +41237,7 @@ msgid "Purchase Orders to Receive" msgstr "Ordini di Acquisto da Ricevere" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41311,7 +41327,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41331,7 +41347,7 @@ msgid "Purchase Receipt Trends " msgstr "Tendenze delle Ricevute di Acquisto " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41559,7 +41575,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41578,7 +41594,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41643,7 +41659,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41680,7 +41696,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41775,7 +41791,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -41961,7 +41977,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42038,7 +42054,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42121,7 +42137,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42165,12 +42181,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42321,7 +42337,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42349,11 +42365,11 @@ msgstr "La quantità deve essere maggiore di 0" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42361,6 +42377,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42386,7 +42406,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42626,7 +42646,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42810,7 +42830,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43129,7 +43149,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43371,8 +43391,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43548,6 +43568,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43598,7 +43622,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43678,7 +43702,7 @@ msgstr "Riferimento #" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -43970,7 +43994,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44077,7 +44101,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44116,7 +44140,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44267,7 +44291,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44350,7 +44374,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44396,6 +44420,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44480,7 +44513,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44596,11 +44629,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44779,6 +44812,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44817,7 +44854,7 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." msgstr "" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material @@ -44862,7 +44899,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44878,13 +44915,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45378,6 +45415,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45802,11 +45843,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45890,23 +45931,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45982,13 +46023,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46000,7 +46044,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46008,12 +46052,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46025,7 +46069,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46033,6 +46077,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46045,11 +46093,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46072,8 +46127,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46085,7 +46140,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46097,6 +46152,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46125,16 +46184,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46150,12 +46209,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46166,15 +46229,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46186,24 +46249,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46219,6 +46306,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46238,7 +46329,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46261,7 +46352,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46269,17 +46360,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46299,11 +46390,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46313,7 +46404,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46322,6 +46413,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46334,7 +46429,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46358,7 +46453,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46427,7 +46522,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46435,19 +46530,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46459,11 +46562,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46471,6 +46578,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46487,6 +46607,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46527,71 +46655,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46604,10 +46671,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46628,19 +46691,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46656,11 +46719,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46688,24 +46751,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46726,6 +46789,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46747,7 +46813,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46778,7 +46844,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46802,7 +46868,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46810,12 +46876,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46834,11 +46900,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46846,7 +46912,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46858,7 +46924,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46883,10 +46949,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46939,15 +47005,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -46986,7 +47056,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47047,10 +47117,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47118,7 +47184,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47417,7 +47483,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47634,8 +47700,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48042,7 +48108,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48074,7 +48140,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48184,7 +48250,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48195,7 +48261,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48481,7 +48547,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48502,7 +48568,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48567,7 +48633,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48592,7 +48658,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48622,7 +48688,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48636,13 +48702,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48733,6 +48799,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48874,10 +48941,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49025,7 +49096,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49109,7 +49180,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49166,10 +49237,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49211,6 +49283,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49228,7 +49304,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49273,7 +49349,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49285,7 +49361,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49305,21 +49381,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49334,25 +49407,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49372,7 +49446,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49473,6 +49547,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49521,7 +49599,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49529,122 +49607,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49726,7 +49694,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49835,12 +49803,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49864,7 +49832,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49879,7 +49847,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49984,7 +49952,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50002,7 +49970,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50028,7 +49996,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50126,15 +50094,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50202,7 +50170,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50630,6 +50598,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50832,7 +50801,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50935,11 +50904,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -51000,7 +50969,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51056,7 +51025,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51124,7 +51093,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51161,8 +51130,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51292,7 +51261,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51305,7 +51274,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51358,7 +51332,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51423,10 +51397,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51456,7 +51446,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51485,10 +51475,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51569,7 +51563,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51697,7 +51691,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51779,16 +51773,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51955,7 +51953,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52038,7 +52036,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52063,15 +52061,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52241,7 +52239,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52400,8 +52398,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52420,7 +52418,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52435,7 +52433,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52443,7 +52441,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52657,7 +52655,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52729,7 +52727,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52767,7 +52765,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52841,7 +52839,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52860,7 +52858,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52889,7 +52887,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53031,7 +53029,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53209,7 +53207,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53391,7 +53389,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53539,7 +53537,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53724,10 +53722,6 @@ msgstr "Team Supporto" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53813,7 +53807,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53874,7 +53868,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -53984,11 +53978,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54463,7 +54457,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54675,7 +54669,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -54982,12 +54976,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "Il campo \"Da n. pacco\" non deve essere vuoto né avere un valore inferiore a 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -54995,10 +54985,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55023,6 +55021,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55040,8 +55042,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55052,11 +55057,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55104,15 +55113,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55161,6 +55170,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55182,8 +55195,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55211,7 +55224,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55223,7 +55236,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55259,7 +55272,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55297,11 +55310,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55350,6 +55363,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55359,7 +55376,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55376,7 +55393,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55393,7 +55410,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55412,11 +55429,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55438,16 +55455,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55486,7 +55503,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55510,7 +55527,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55518,7 +55535,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55526,6 +55543,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55534,7 +55555,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55546,7 +55567,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55563,6 +55584,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55579,10 +55604,6 @@ msgstr "Esistono due opzioni per mantenere la valutazione delle azioni: FIFO (fi msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55611,20 +55632,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55675,15 +55696,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55705,7 +55730,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55723,7 +55748,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Questo documento supera il limite di {0} {1} per l'elemento {4}. Stai creando un altro {3} per lo stesso {2}?" @@ -55865,7 +55890,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55929,7 +55954,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55956,10 +55981,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56017,7 +56042,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56146,6 +56171,12 @@ msgstr "" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56432,7 +56463,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56463,15 +56494,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56488,7 +56519,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56500,7 +56531,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56513,8 +56544,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56534,7 +56565,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56551,10 +56582,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56633,8 +56666,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56676,6 +56709,22 @@ msgstr "" msgid "Total Advance" msgstr "Anticipo Totale" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56723,11 +56772,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56909,7 +56958,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56918,11 +56967,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Spesa totale annua" @@ -56960,11 +57009,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Reddito totale annuo" @@ -57007,7 +57056,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57322,7 +57371,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57331,7 +57380,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57410,7 +57463,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57428,7 +57481,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57446,8 +57499,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57536,27 +57589,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57609,11 +57646,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58003,6 +58040,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58187,7 +58228,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58209,7 +58250,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58239,7 +58280,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58303,7 +58344,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58377,7 +58418,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58390,10 +58431,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Impossibile trovare il tasso di cambio per {0} a {1} per la data chiave {2}. Si prega di creare un record Exchange Exchange manualmente." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58418,7 +58455,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58430,8 +58467,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58481,7 +58520,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58504,7 +58543,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58707,7 +58746,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58720,7 +58759,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58864,7 +58903,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58928,7 +58967,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59156,7 +59195,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59245,6 +59284,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59257,6 +59300,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59265,10 +59312,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Utente {0}: rimosso il ruolo Dipendente in quanto non è presente alcun dipendente collegato." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59561,15 +59604,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59577,7 +59620,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59587,7 +59630,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59600,13 +59643,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59657,12 +59700,12 @@ msgstr "" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59671,19 +59714,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60159,7 +60202,7 @@ msgstr "Nome del Voucher" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60187,7 +60230,7 @@ msgstr "Nome del Voucher" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60199,7 +60242,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60231,7 +60274,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60438,7 +60481,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60456,16 +60499,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60586,7 +60629,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60606,7 +60649,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60760,10 +60803,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60909,7 +60948,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61085,17 +61124,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61134,7 +61173,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61175,20 +61214,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61209,7 +61248,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61234,7 +61273,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61287,7 +61326,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61519,14 +61558,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61541,7 +61572,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61561,7 +61592,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61572,19 +61603,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61606,7 +61633,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61625,14 +61652,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61641,16 +61660,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61662,15 +61681,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61678,7 +61705,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61686,7 +61713,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61701,6 +61728,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61711,7 +61742,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61738,11 +61769,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61759,7 +61790,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61774,19 +61805,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61838,6 +61869,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61868,7 +61903,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61888,7 +61923,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "a partire da {0}" @@ -61904,10 +61939,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61962,8 +61993,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62043,14 +62074,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62064,7 +62091,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62140,8 +62167,8 @@ msgstr "venduto" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62204,10 +62231,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62220,7 +62243,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62240,7 +62263,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62248,11 +62271,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62334,10 +62352,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62353,7 +62379,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62395,7 +62421,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62403,6 +62429,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62411,7 +62441,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62425,7 +62459,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62433,7 +62467,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62446,11 +62480,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62458,7 +62492,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62474,7 +62508,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62490,16 +62524,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62550,7 +62584,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62563,7 +62597,7 @@ msgstr "{0} a {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62579,16 +62613,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62596,7 +62630,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62604,7 +62638,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62638,7 +62672,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62672,12 +62706,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62709,6 +62752,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62814,27 +62861,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62850,7 +62893,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62862,7 +62905,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62874,32 +62917,7 @@ msgstr "{ref_doctype} {ref_name} lo stato è {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} fatture" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/ko.po b/erpnext/locale/ko.po index 0af91c8c128..ddffb061455 100644 --- a/erpnext/locale/ko.po +++ b/erpnext/locale/ko.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Korean\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: ko_KR\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# 재고 있음" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# 필수 항목" @@ -277,7 +268,7 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" +msgid "'Based On' and 'Group By' can not be the same" msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'열기'" @@ -326,12 +317,12 @@ msgstr "'열기'" msgid "'To Date' is required" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 @@ -617,7 +608,7 @@ msgstr "90 이상" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -783,17 +774,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    다음 항목에 대해서는 과다 청구할 수 없습니다:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    다음 {0}은 회사 {1} 에 속하지 않습니다:

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -978,8 +969,8 @@ msgstr "에이 - 비" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 @@ -990,8 +981,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -1008,7 +999,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1041,7 +1032,7 @@ msgstr "운전자는 제출할 수 있도록 설정해야 합니다." msgid "A logical Warehouse against which stock entries are made." msgstr "재고 입력이 이루어지는 논리적 창고." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1217,7 +1208,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "승인된 수량" @@ -1248,12 +1239,16 @@ msgstr "액세스 키" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "CEFACT/ICG/2010/IC013 또는 CEFACT/ICG/2010/IC010에 따르면" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "BOM {0}에 따르면 재고 항목에 품목 '{1}'이 누락되었습니다." @@ -1506,7 +1501,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "계정을 찾을 수 없습니다" @@ -1636,11 +1631,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1919,8 +1914,8 @@ msgstr "회계 차원 필터" msgid "Accounting Entries" msgstr "회계 항목" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "자산에 대한 회계 처리" @@ -1945,8 +1940,8 @@ msgstr "서비스 제공에 대한 회계 처리" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1994,7 +1989,11 @@ msgstr "" msgid "Accounting Period" msgstr "회계 기간" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2192,8 +2191,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2421,7 +2420,7 @@ msgstr "실제 잔액 수량" msgid "Actual Batch Quantity" msgstr "실제 배치 수량" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "실제 비용" @@ -2431,7 +2430,7 @@ msgstr "실제 비용" msgid "Actual Date" msgstr "실제 날짜" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2581,8 +2580,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "실제 재고 수량" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2747,10 +2746,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "시리즈 접두사 추가" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "재고 추가" @@ -2849,13 +2844,13 @@ msgstr "추가함" msgid "Added On" msgstr "추가됨" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "사용자 {0}에 공급자 역할을 추가했습니다." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "사용자 {0}에 {1} 역할을 추가했습니다." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -2997,7 +2992,7 @@ msgstr "추가 할인 금액" msgid "Additional Discount Amount (Company Currency)" msgstr "추가 할인 금액 (회사 통화)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3116,11 +3111,7 @@ msgid "Additional Transferred Qty" msgstr "추가 이체 수량" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3385,7 +3376,7 @@ msgstr "" msgid "Advance amount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "" @@ -3454,7 +3445,7 @@ msgstr "에 맞서" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "계좌에 대해" @@ -3574,7 +3565,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3598,7 +3589,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3712,6 +3703,13 @@ msgstr "공기 호스" msgid "Algorithm" msgstr "연산" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3888,7 +3886,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3900,7 +3898,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "이 문서에 있는 모든 항목에는 이미 품질 검사 링크가 연결되어 있습니다." @@ -3919,15 +3917,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3951,7 +3949,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "지불 금액 할당" @@ -3961,7 +3959,7 @@ msgstr "지불 금액 할당" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "할당 지급 요청" @@ -3991,7 +3989,7 @@ msgstr "할당됨" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4074,7 +4072,7 @@ msgid "Allow Alternative Item" msgstr "대체 항목 허용" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4182,7 +4180,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "속성 값 이름 변경 허용" @@ -4463,12 +4461,14 @@ msgstr "허용 품목" msgid "Allowed To Transact With" msgstr "거래 허용 대상" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4503,10 +4503,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4514,10 +4514,6 @@ msgstr "" msgid "Already Picked" msgstr "이미 선택됨" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4533,12 +4529,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "대체 품목" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4743,7 +4739,7 @@ msgstr "항상 질문하세요" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4969,12 +4965,12 @@ msgstr "품목 그룹은 품목의 종류에 따라 분류하는 방법입니다 msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5188,7 +5184,7 @@ msgstr "적용된 쿠폰 코드" msgid "Applied on each reading." msgstr "측정할 때마다 적용됩니다." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "보관 규칙을 적용했습니다." @@ -5365,10 +5361,6 @@ msgstr "예약 가능 시간" msgid "Appointment Confirmation" msgstr "예약 확인" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5394,6 +5386,10 @@ msgstr "" msgid "Appointment With" msgstr "약속" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5435,6 +5431,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "데모 데이터를 모두 삭제하시겠습니까?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "이 항목을 정말로 삭제하시겠습니까?" @@ -5517,18 +5522,18 @@ msgstr "필드 {0} 가 활성화되어 있으므로 필드 {1} 의 값은 1보 msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "항목 {0}에 대해 이미 제출된 거래가 있으므로 {1}의 값을 변경할 수 없습니다." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "원자재가 충분하므로 창고 {0}에 대한 자재 요청은 필요하지 않습니다." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5567,7 +5572,7 @@ msgstr "조립 품목" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5639,7 +5644,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5805,7 +5810,7 @@ msgstr "자산 이동 항목" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5937,7 +5942,7 @@ msgstr "자산 가치 분석" msgid "Asset cancelled" msgstr "자산 취소됨" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5953,7 +5958,7 @@ msgstr "" msgid "Asset created" msgstr "자산 생성됨" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Asset {0}에서 분리된 후 생성된 Asset" @@ -6006,7 +6011,7 @@ msgstr "자산 제출됨" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6084,7 +6089,7 @@ msgstr "자산 가치 조정 제출 후 자산 가치가 조정되었습니다 { #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6105,7 +6110,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "직원에게 업무 배정" @@ -6115,6 +6120,11 @@ msgstr "직원에게 업무 배정" msgid "Assign to Name" msgstr "이름 지정" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6133,19 +6143,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "행 #{0}에서 품목 {2} 에 대해 선택된 수량 {1} 이 창고 {4}의 사용 가능한 재고 {3} 보다 많습니다." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "최소한 하나의 자산을 선택해야 합니다." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "최소한 하나의 송장을 선택해야 합니다." @@ -6166,6 +6180,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6186,7 +6204,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6194,26 +6212,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "완제품 {0} 에 필요한 원자재 중 최소 하나는 고객이 제공해야 합니다." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6425,7 +6439,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "자동 세금 설정 오류" @@ -6486,7 +6500,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6611,7 +6625,7 @@ msgstr "사용 가능 날짜" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6707,7 +6721,7 @@ msgstr "" msgid "Available {0}" msgstr "사용 가능 {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6825,7 +6839,7 @@ msgstr "빈 수량" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6844,7 +6858,7 @@ msgid "BOM 1" msgstr "BOM 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6859,7 +6873,7 @@ msgstr "BOM 2" msgid "BOM Comparison Tool" msgstr "BOM 비교 도구" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6990,7 +7004,7 @@ msgstr "BOM 운영" msgid "BOM Operations Time" msgstr "BOM 작업 시간" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7011,7 +7025,7 @@ msgstr "BOM 검색" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "BOM 보조 품목" @@ -7063,10 +7077,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "BOM 업데이트가 이미 진행 중입니다. {0} 가 완료될 때까지 기다려 주십시오." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7105,15 +7115,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7194,7 +7208,7 @@ msgstr "균형" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "균형 ({0})" @@ -7264,6 +7278,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7324,7 +7342,7 @@ msgstr "{0} 이전 은행 명세서에 따른 잔액" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7424,7 +7442,7 @@ msgid "Bank Account Type" msgstr "은행 계좌 유형" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7669,7 +7687,7 @@ msgstr "" msgid "Bank Transactions" msgstr "은행 거래" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7681,7 +7699,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7693,7 +7711,7 @@ msgstr "은행 계좌 추가됨" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "은행 거래 생성 오류" @@ -7969,8 +7987,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8001,15 +8019,15 @@ msgstr "" msgid "Batch No" msgstr "배치 번호" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -8017,6 +8035,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8082,9 +8104,9 @@ msgstr "배치 단위" msgid "Batch and Serial No" msgstr "배치 번호 및 일련 번호" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "해당 항목 {}에는 배치 시리즈가 없으므로 배치가 생성되지 않았습니다." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8196,7 +8218,7 @@ msgstr "구매 송장에 기재된 거부된 수량에 대한 청구서" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8671,7 +8693,7 @@ msgid "Booked Fixed Asset" msgstr "장부에 기록된 고정 자산" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8899,7 +8921,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8917,7 +8939,7 @@ msgstr "버퍼 시간" msgid "Buffered Cursor" msgstr "버퍼 커서" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "모두 건설하시겠습니까?" @@ -8925,7 +8947,7 @@ msgstr "모두 건설하시겠습니까?" msgid "Build Tree" msgstr "나무를 건설하세요" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "제작 가능 수량" @@ -9252,6 +9274,10 @@ msgstr "계산된 은행 명세서 잔액" msgid "Calculated Discount Mismatch" msgstr "계산된 할인 불일치" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9423,7 +9449,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9452,21 +9478,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9495,7 +9524,7 @@ msgstr "" msgid "Cancelation Date" msgstr "취소 날짜" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9503,11 +9532,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "운전기사 주소가 누락되어 도착 시간을 계산할 수 없습니다." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "재고 계정 설정을 변경할 수 없습니다" @@ -9522,10 +9546,6 @@ msgstr "반환 값을 생성할 수 없습니다" msgid "Cannot Merge" msgstr "병합할 수 없습니다" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "운전자 주소가 누락되어 경로 최적화를 할 수 없습니다." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "직원을 교대할 수 없습니다" @@ -9550,6 +9570,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "재고 원장이 생성되므로 고정 자산 항목일 수 없습니다." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9559,14 +9584,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "취소된 문서 처리가 진행 중이므로 취소할 수 없습니다." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9574,7 +9599,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9586,7 +9611,7 @@ msgstr "이 문서는 제출된 자산 가치 조정 {0}와 연결되어 msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "이 문서는 제출된 자산 {asset_link}과 연결되어 있으므로 취소할 수 없습니다. 계속하려면 자산을 취소하십시오." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "완료된 작업 주문에 대한 거래는 취소할 수 없습니다." @@ -9611,7 +9636,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "기존 거래 내역이 있으므로 회사 기본 통화를 변경할 수 없습니다. 기본 통화를 변경하려면 기존 거래를 취소해야 합니다." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9638,7 +9663,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "미래 날짜로 지정된 구매 영수증에 대해서는 재고 예약 항목을 생성할 수 없습니다." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9647,6 +9672,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "통합 송장 {0}에 대한 반품을 생성할 수 없습니다." @@ -9664,7 +9693,7 @@ msgstr "견적이 이미 발행되었으므로 분실 신고를 할 수 없습 msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9677,7 +9706,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9709,7 +9738,7 @@ msgstr "재고 항목 {1}에 대해 {0} 수량을 분해할 수 없습니다. msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9734,19 +9763,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "품목 {0}에 대한 기본 창고를 찾을 수 없습니다. 품목 마스터 또는 재고 설정에서 기본 창고를 설정하십시오." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9758,12 +9791,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9772,19 +9809,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "판매 주문이 발생했으므로 분실로 설정할 수 없습니다." @@ -10211,8 +10252,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10239,8 +10280,8 @@ msgstr "" msgid "Channel Partner" msgstr "채널 파트너" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10434,7 +10475,7 @@ msgstr "수표 너비" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "수표/참조 날짜" @@ -10492,7 +10533,7 @@ msgstr "자식 문서 이름" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "자식 행 참조" @@ -10502,8 +10543,8 @@ msgid "Child Table Not Allowed" msgstr "어린이용 테이블 사용 금지" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "이 작업에는 하위 작업이 존재합니다. 따라서 이 작업을 삭제할 수 없습니다." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10681,7 +10722,7 @@ msgstr "대출 마감" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "POS를 닫으세요" @@ -10695,7 +10736,7 @@ msgstr "닫힌 문서" msgid "Closed Documents" msgstr "비공개 문서" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10925,9 +10966,9 @@ msgstr "수수료" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11364,7 +11405,7 @@ msgstr "회사들" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11434,7 +11475,7 @@ msgstr "회사들" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11474,10 +11515,6 @@ msgstr "회사" msgid "Company Abbreviation" msgstr "회사 약칭" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11642,7 +11679,7 @@ msgstr "회사 배송 주소" msgid "Company Tax ID" msgstr "회사 세금 ID" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11686,12 +11723,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "필터링에 사용되는 회사 링크 필드 이름 (선택 사항 - 모든 레코드를 삭제하려면 비워 두십시오)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "자산 {0} 의 회사와 구매 문서 {1} 가 일치하지 않습니다." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11729,6 +11766,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11737,14 +11782,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "회사 {}가 아직 존재하지 않습니다. 세금 설정이 중단되었습니다." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11766,7 +11803,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12210,7 +12247,7 @@ msgid "Consumed Qty" msgstr "소비량" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12526,7 +12563,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12826,7 +12863,7 @@ msgstr "비용 배분 / 프로세스 손실" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12851,7 +12888,7 @@ msgstr "비용 배분 / 프로세스 손실" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12909,7 +12946,7 @@ msgstr "비용 센터 번호" msgid "Cost Center and Budgeting" msgstr "비용 센터 및 예산 책정" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12921,7 +12958,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12943,11 +12980,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "원가 센터 {0} 는 다른 배분 기록에서 기본 원가 센터로 사용되고 있으므로 배분에 사용할 수 없습니다." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13072,14 +13109,14 @@ msgid "Costing and Billing" msgstr "원가 계산 및 청구" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13091,7 +13128,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13101,8 +13138,8 @@ msgstr "차이에 맞는 적절한 시프트를 찾을 수 없습니다: {0}" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "경로를 찾을 수 없습니다 " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13125,7 +13162,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "{0}에 대한 기준 점수 함수를 풀 수 없습니다. 수식이 유효한지 확인하십시오." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "가중 점수 함수를 풀 수 없습니다. 수식이 유효한지 확인하십시오." @@ -13355,10 +13392,6 @@ msgstr "신규 고객 생성" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "새 {0} 만들기" @@ -13377,7 +13410,7 @@ msgstr "생성 작업" msgid "Create Opportunity" msgstr "기회를 창출하세요" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "POS 개시 입력 항목 생성" @@ -13392,7 +13425,7 @@ msgstr "결제 입력 생성" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "통합 POS 송장에 대한 지급 입력 내역을 생성합니다." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "결제 요청 생성" @@ -13620,7 +13653,7 @@ msgstr "거래를 자동으로 분류하는 새로운 규칙을 만드세요." msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "해당 품목에 대한 입고 거래를 생성합니다." @@ -13654,7 +13687,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13749,7 +13782,7 @@ msgstr "사용자 생성 중..." msgid "Creating demo data" msgstr "데모 데이터 생성 중" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "{}개 중 {}개를 만들어서" @@ -13759,17 +13792,17 @@ msgstr "{}개 중 {}개를 만들어서" msgid "Creation" msgstr "창조" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "{1}(s) 생성 성공" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "{0} 생성에 실패했습니다.\n" "\t\t\t\t확인 대량 거래 로그" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "{0} 생성이 부분적으로 성공했습니다.\n" @@ -13804,11 +13837,11 @@ msgstr "{0} 생성이 부분적으로 성공했습니다.\n" msgid "Credit" msgstr "신용 거래" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "신용(거래)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13889,7 +13922,7 @@ msgstr "" msgid "Credit Limit" msgstr "신용 한도" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "신용 한도 초과" @@ -13969,16 +14002,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "회사 통화로 신용" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14037,12 +14070,12 @@ msgstr "기준 설정" msgid "Criteria Weight" msgstr "기준 가중치" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14165,7 +14198,7 @@ msgstr "통화 및 가격표" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "사용자 지정 재무 보고서에서는 현재 통화 필터가 지원되지 않습니다." @@ -14230,7 +14263,7 @@ msgid "Current BOM" msgstr "현재 BOM" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14293,10 +14326,6 @@ msgstr "현재 시리얼/배치 번들" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "현재 시리즈" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15127,7 +15156,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "{0}에 대한 일일 프로젝트 요약" @@ -15272,10 +15301,6 @@ msgstr "처리해야 할 날짜" msgid "Day Of Week" msgstr "요일" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "월의 일" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15382,11 +15407,11 @@ msgstr "상인" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15548,7 +15573,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "분실 신고" @@ -16229,8 +16254,8 @@ msgstr "규칙 삭제 중..." msgid "Deleting {0} and all associated Common Code documents..." msgstr "{0} 및 관련 공통 코드 문서를 모두 삭제합니다..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "삭제 진행 중!" @@ -16324,7 +16349,7 @@ msgstr "배송 완료된 품목에 대한 청구서 발행" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16382,7 +16407,7 @@ msgstr "배달" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16712,7 +16737,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16728,7 +16753,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16798,7 +16823,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16827,11 +16852,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16859,7 +16884,7 @@ msgstr "디자이너" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16962,11 +16987,11 @@ msgid "Difference Account in Items Table" msgstr "항목 표의 차이 계정" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17029,7 +17054,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17202,7 +17227,7 @@ msgstr "장애인 은행 계좌" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17211,8 +17236,8 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' @@ -17220,8 +17245,8 @@ msgstr "" msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17471,8 +17496,8 @@ msgstr "할인율은 100%를 초과할 수 없습니다." msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17837,11 +17862,11 @@ msgstr "주식 매입 신고를 제출하시겠습니까?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "" @@ -17879,22 +17904,6 @@ msgstr "문서 검색" msgid "Document Count" msgstr "문서 수" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "문서 이름 지정" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "문서 번호" @@ -18200,7 +18209,7 @@ msgstr "작업이 포함된 프로젝트 복제" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "중복 일련 번호 오류" @@ -18354,7 +18363,7 @@ msgstr "편집 용량" msgid "Edit Cart" msgstr "장바구니 수정" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "수정 불가" @@ -18578,8 +18587,8 @@ msgid "Email verification failed." msgstr "이메일 인증에 실패했습니다." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "대기 중인 이메일" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18766,7 +18775,7 @@ msgstr "직원" msgid "Empty" msgstr "비어 있는" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18775,7 +18784,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18854,6 +18863,12 @@ msgstr "할인 및 마진 활성화" msgid "Enable European Access" msgstr "유럽 접근 활성화" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19125,7 +19140,7 @@ msgstr "종료 시간" msgid "End Transit" msgstr "환승 종료" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19248,7 +19263,7 @@ msgstr "고객의 전화번호를 입력하세요" msgid "Enter date to scrap asset" msgstr "자산 폐기 날짜를 입력하세요" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19303,6 +19318,10 @@ msgstr "생산할 수량을 입력하세요. 원자재는 수량이 설정된 msgid "Enter {0} amount." msgstr "{0} 금액을 입력하세요." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19338,7 +19357,7 @@ msgstr "입력 유형" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "형평성" @@ -19362,7 +19381,7 @@ msgstr "" msgid "Error Description" msgstr "오류 설명" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "오류가 발생했습니다" @@ -19394,18 +19413,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19420,7 +19441,7 @@ msgid "Estimated Arrival" msgstr "예상 도착 시간" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "예상 비용" @@ -19470,7 +19491,7 @@ msgstr "" msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "예시: 일련번호 {0} 는 {1}에 예약되어 있습니다." @@ -19751,7 +19772,7 @@ msgstr "예상 마감일" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19838,7 +19859,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "비용" @@ -20097,9 +20118,9 @@ msgstr "화씨" msgid "Failed Entries" msgstr "실패한 항목" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "API 키 인증에 실패했습니다." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20296,7 +20317,7 @@ msgid "Fetching Sales Orders..." msgstr "판매 주문을 가져오는 중..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "환율 불러오는 중..." @@ -20334,15 +20355,15 @@ msgstr "필드 이름 {0} 이 이미 다음 문서 유형에 존재합니다: {1 msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20351,7 +20372,7 @@ msgstr "" msgid "File to Rename" msgstr "파일 이름을 변경할 파일" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20510,11 +20531,11 @@ msgstr "재무 보고서 행" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20583,7 +20604,7 @@ msgstr "완성된 좋은 BOM" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20596,7 +20617,7 @@ msgstr "완제품" msgid "Finished Good Item Code" msgstr "완제품 품목 코드" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "완제품 수량" @@ -20704,7 +20725,7 @@ msgstr "완제품 창고" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20803,10 +20824,6 @@ msgstr "세법 체계는 필수입니다. 회사에 세법 체계를 설정해 msgid "Fiscal Year" msgstr "회계연도" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20820,11 +20837,8 @@ msgstr "회계연도 세부 정보" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "회계연도 {0} 는 존재하지 않습니다" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20857,7 +20871,7 @@ msgstr "고정 자산" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20993,7 +21007,7 @@ msgstr "피트/초" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -21018,10 +21032,6 @@ msgstr "" msgid "For Item" msgstr "품목에 관하여" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21088,11 +21098,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21125,12 +21135,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "항목 {0}에 대해서는 {1} 자산만 생성되었거나 {2}에 연결되었습니다. 해당 문서에 {3} 자산을 추가로 생성하거나 연결해 주십시오." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21143,8 +21153,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "{0} 작업의 경우, 행 {1}에 대해 원자재를 추가하거나 BOM을 설정하십시오." -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21160,21 +21170,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "예상 및 예측 수량의 경우, 시스템은 선택된 상위 창고 아래의 모든 하위 창고를 고려합니다." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21193,11 +21199,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21285,6 +21295,21 @@ msgstr "" msgid "Forum URL" msgstr "포럼 URL" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21828,7 +21853,7 @@ msgstr "GL 잔액" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "GL 항목" @@ -21953,6 +21978,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22006,7 +22035,7 @@ msgstr "주식 마감 입력 생성" msgid "Generate To Delete List" msgstr "삭제할 목록 생성" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22349,7 +22378,7 @@ msgstr "운송 중인 상품" msgid "Goods Transferred" msgstr "물품 이송" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22532,7 +22561,7 @@ msgstr "" msgid "Grant Commission" msgstr "보조금 위원회" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "보다 큰 금액" @@ -22672,7 +22701,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22975,7 +23004,7 @@ msgstr "사업에 계절적 변동이 있는 경우, 예산/목표를 여러 달 msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -23003,7 +23032,7 @@ msgstr "" msgid "Hertz" msgstr "헤르츠" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "안녕," @@ -23039,7 +23068,7 @@ msgstr "" msgid "Hide Images" msgstr "이미지 숨기기" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "최근 주문 숨기기" @@ -23623,15 +23652,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "해당 당사자가 존재하지 않으면 고객 이름 필드를 사용하여 생성하십시오." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23669,7 +23698,7 @@ msgstr "BOM 결과에 스크랩 자재가 포함되면 스크랩 창고를 선 msgid "If the account is frozen, entries are allowed to restricted users." msgstr "계정이 동결된 경우, 제한된 사용자만 로그인할 수 있습니다." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23770,7 +23799,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23988,14 +24017,14 @@ msgstr "수입 송장" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "가져오기 성공" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "수입 요약" @@ -24472,7 +24501,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "소득" @@ -24558,7 +24587,7 @@ msgstr "{0}에서 걸려온 전화" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "잘못된 계정" @@ -24567,7 +24596,7 @@ msgstr "잘못된 계정" msgid "Incorrect Balance Qty After Transaction" msgstr "거래 후 잔액 수량 오류" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "잘못된 배치 소비" @@ -24575,11 +24604,11 @@ msgstr "잘못된 배치 소비" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "잘못된 회사" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24588,7 +24617,7 @@ msgstr "" msgid "Incorrect Date" msgstr "날짜가 잘못되었습니다" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "잘못된 송장" @@ -24605,7 +24634,7 @@ msgstr "잘못된 참조 문서(구매 영수증 품목)" msgid "Incorrect Serial No Valuation" msgstr "잘못된 일련번호 평가" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24688,7 +24717,7 @@ msgstr "증가" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24885,7 +24914,7 @@ msgid "Instruction" msgstr "지침" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "용량 부족" @@ -24901,12 +24930,12 @@ msgstr "권한 부족" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "재고 부족" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "해당 배치에 필요한 재고가 부족합니다" @@ -25036,7 +25065,7 @@ msgstr "이자 비용" msgid "Interest Income" msgstr "이자 소득" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "이자 및/또는 독촉 수수료" @@ -25061,7 +25090,7 @@ msgstr "내부" msgid "Internal Customer Accounting" msgstr "내부 고객 회계" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25087,7 +25116,7 @@ msgstr "내부 영업 담당자 참조 누락" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25108,7 +25137,7 @@ msgstr "" msgid "Internal Transfer" msgstr "내부 이동" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25150,8 +25179,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25170,7 +25199,7 @@ msgstr "할당된 금액이 잘못되었습니다" msgid "Invalid Amount" msgstr "잘못된 금액입니다" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "잘못된 속성" @@ -25187,11 +25216,11 @@ msgstr "잘못된 은행 계좌" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "유효하지 않은 바코드입니다. 이 바코드에 연결된 상품이 없습니다." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25211,13 +25240,13 @@ msgstr "회사 간 거래에 적합하지 않은 회사입니다." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "잘못된 비용 센터" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "잘못된 고객 그룹" @@ -25238,11 +25267,11 @@ msgstr "" msgid "Invalid Discount" msgstr "유효하지 않은 할인" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "할인 금액이 잘못되었습니다" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "유효하지 않은 문서" @@ -25272,7 +25301,7 @@ msgstr "" msgid "Invalid Item" msgstr "잘못된 항목" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25281,7 +25310,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "잘못된 장부 항목" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "유효하지 않은 순 구매 금액" @@ -25320,7 +25349,7 @@ msgstr "잘못된 인쇄 형식입니다" msgid "Invalid Priority" msgstr "잘못된 우선순위" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "잘못된 프로세스 손실 구성" @@ -25337,7 +25366,7 @@ msgstr "수량이 잘못되었습니다" msgid "Invalid Quantity" msgstr "수량이 잘못되었습니다" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "잘못된 쿼리입니다" @@ -25349,8 +25378,8 @@ msgstr "잘못된 반환" msgid "Invalid Sales Invoices" msgstr "유효하지 않은 판매 송장" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "잘못된 일정" @@ -25358,7 +25387,7 @@ msgstr "잘못된 일정" msgid "Invalid Selling Price" msgstr "판매 가격이 잘못되었습니다" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25375,7 +25404,7 @@ msgstr "" msgid "Invalid Upload" msgstr "잘못된 업로드" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "잘못된 값" @@ -25385,14 +25414,14 @@ msgid "Invalid Warehouse" msgstr "유효하지 않은 창고" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "계정 {}에 대한 {} {}의 회계 항목 금액이 잘못되었습니다: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "잘못된 파일 URL입니다" @@ -25424,7 +25453,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "잘못된 결과 키입니다. 응답:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "잘못된 검색어입니다" @@ -26387,10 +26416,6 @@ msgstr "발행일" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "품목들을 병합한 후 정확한 재고량을 확인하는 데 몇 시간이 걸릴 수 있습니다." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "이는 이미 처리된 모든 거래를 고려하고 아직 처리되지 않은 거래를 차감합니다." @@ -26399,7 +26424,7 @@ msgstr "이는 이미 처리된 모든 거래를 고려하고 아직 처리되 msgid "It's all good!" msgstr "다 괜찮아요!" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26448,12 +26473,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26486,7 +26511,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26560,7 +26585,7 @@ msgstr "항목 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26721,7 +26746,7 @@ msgstr "품목 카트" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26753,7 +26778,7 @@ msgstr "품목 카트" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26762,12 +26787,12 @@ msgstr "품목 카트" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26863,7 +26888,7 @@ msgstr "품목 코드는 일련번호를 변경할 수 없습니다." msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "품목 코드: {0} 는 창고 {1}에서 구매할 수 없습니다." @@ -27059,7 +27084,7 @@ msgstr "" msgid "Item Group Tree" msgstr "항목 그룹 트리" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27213,7 +27238,7 @@ msgstr "품목 제조업체" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27244,7 +27269,7 @@ msgstr "품목 제조업체" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27252,8 +27277,8 @@ msgstr "품목 제조업체" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27310,7 +27335,7 @@ msgstr "품목 제조업체" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27357,8 +27382,8 @@ msgstr "품목 가격 설정" msgid "Item Price Stock" msgstr "품목 가격 재고" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "가격표에 {0} 항목의 가격이 추가되었습니다 - {1}" @@ -27370,7 +27395,7 @@ msgstr "품목 가격은 가격표, 공급업체/고객, 통화, 품목, 배치, msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27415,7 +27440,7 @@ msgstr "" msgid "Item Row" msgstr "항목 행" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27531,7 +27556,7 @@ msgstr "제조할 품목" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "아이템 변형" @@ -27650,7 +27675,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27686,7 +27711,7 @@ msgstr "해당 품목은 원자재 표에서 필수 항목입니다." msgid "Item is removed since no serial / batch no selected." msgstr "일련번호/배치번호가 선택되지 않았으므로 해당 품목이 삭제되었습니다." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27700,7 +27725,7 @@ msgstr "" msgid "Item operation" msgstr "항목 작동" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27715,7 +27740,7 @@ msgstr "제조할 품목" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27731,10 +27756,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27743,6 +27764,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27752,6 +27777,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27784,6 +27810,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "품목 {0} 은 이미 판매 주문 {1}에 대해 예약/배송되었습니다." @@ -27816,7 +27846,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27848,10 +27878,6 @@ msgstr "품목 {0}: 주문 수량 {1} 은 최소 주문 수량 {2} (품목에 msgid "Item {0}: {1} qty produced. " msgstr "품목 {0}: {1} 개 생산. " -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27902,6 +27928,10 @@ msgstr "품목 세금 계산서를 받으려면 품목/품목 코드가 필요 msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27918,7 +27948,7 @@ msgstr "품목 목록" msgid "Items Filter" msgstr "항목 필터" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "필수 품목" @@ -27958,7 +27988,7 @@ msgstr "원자재 요청 품목" msgid "Items not found." msgstr "해당 항목을 찾을 수 없습니다." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27968,7 +27998,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28038,7 +28068,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28101,20 +28131,19 @@ msgstr "작업 카드 시간 기록" msgid "Job Card and Capacity Planning" msgstr "작업 지시서 및 용량 계획" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "작업 카드" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "작업이 일시 중단되었습니다" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "업무 시작" @@ -28177,11 +28206,19 @@ msgstr "작업자 이름" msgid "Job Worker Warehouse" msgstr "창고 작업자" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "작업 카드 {0} 생성됨" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28527,8 +28564,8 @@ msgid "Last Fiscal Year" msgstr "지난 회계연도" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "마지막 GL 항목 업데이트는 {} 시간에 완료되었습니다. 시스템이 활성화된 상태에서는 이 작업을 수행할 수 없습니다. 5분 후에 다시 시도해 주십시오." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28648,7 +28685,7 @@ msgstr "위도" msgid "Lead" msgstr "선두" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28742,7 +28779,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28890,7 +28927,7 @@ msgstr "전설" msgid "Length (cm)" msgstr "길이(cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "금액 미만" @@ -28919,7 +28956,7 @@ msgstr "레벨(BOM)" msgid "Lft" msgstr "좌측" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "부채" @@ -28949,7 +28986,7 @@ msgstr "라이선스 번호" msgid "License Plate" msgstr "번호판" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "한계를 넘어섰습니다" @@ -29045,7 +29082,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "고객 연결에 실패했습니다. 다시 시도해 주세요." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29212,7 +29249,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "잃어버린 이유" @@ -29298,7 +29335,7 @@ msgstr "로열티 포인트 사용" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "로열티 포인트는 명시된 결제 요소를 기준으로 (판매 송장을 통해 확인된) 지출액을 바탕으로 계산됩니다." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "로열티 포인트: {0}" @@ -29536,7 +29573,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29633,7 +29670,7 @@ msgstr "정기 점검 방문" msgid "Maintenance Visit Purpose" msgstr "정기 점검 방문 목적" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29780,7 +29817,7 @@ msgstr "재무제표 작성 시 필수 항목" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "필수 누락" @@ -29863,8 +29900,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30086,7 +30123,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30264,10 +30301,6 @@ msgstr "" msgid "Matched" msgstr "일치함" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30294,7 +30327,7 @@ msgstr "재료 소비" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "제조에 필요한 재료 소비량" @@ -30405,7 +30438,7 @@ msgstr "자재 요청" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "자재 요청일" @@ -30455,7 +30488,7 @@ msgstr "" msgid "Material Request Item" msgstr "자재 요청 품목" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "자재 요청 번호" @@ -30477,7 +30510,7 @@ msgstr "자재 요청 유형" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "원자재 수량이 이미 확보되어 있으므로 자재 요청이 생성되지 않았습니다." @@ -30491,7 +30524,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "이 재고 입력을 생성하는 데 사용된 자재 요청서" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30611,13 +30644,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30786,7 +30819,7 @@ msgstr "" msgid "Megawatt" msgstr "메가와트" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30821,7 +30854,7 @@ msgstr "병합 진행 상황" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31167,7 +31200,7 @@ msgstr "기타 비용" msgid "Mismatch" msgstr "불일치" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "없어진" @@ -31176,11 +31209,11 @@ msgstr "없어진" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "계정 누락" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "누락된 계정" @@ -31205,11 +31238,11 @@ msgstr "" msgid "Missing Filters" msgstr "누락된 필터" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "누락된 금융 서적" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "누락됨 완료됨 좋음" @@ -31217,7 +31250,7 @@ msgstr "누락됨 완료됨 좋음" msgid "Missing Formula" msgstr "누락된 공식" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "누락된 품목" @@ -31229,7 +31262,7 @@ msgstr "누락된 매개변수" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "필수 필터가 누락되었습니다" @@ -31241,7 +31274,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "사라진 창고" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "회사 {0}에 대한 계정 구성이 누락되었습니다." @@ -31249,12 +31282,12 @@ msgstr "회사 {0}에 대한 계정 구성이 누락되었습니다." msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "필수 필터가 누락되었습니다: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "누락된 값" @@ -31503,8 +31536,8 @@ msgstr "여러 계정" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31512,8 +31545,8 @@ msgid "Multiple POS Opening Entry" msgstr "다중 POS 개폐 항목" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "동일한 기준을 가진 가격 규칙이 여러 개 존재합니다. 우선순위를 지정하여 충돌을 해결하십시오. 가격 규칙: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31533,7 +31566,7 @@ msgstr "여러 회사 필드가 있습니다: {0}. 수동으로 선택하십시 msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31542,10 +31575,10 @@ msgid "Music" msgstr "음악" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "정수여야 합니다" @@ -31630,11 +31663,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31678,7 +31707,7 @@ msgstr "요구 분석" msgid "Negative Batch Report" msgstr "음성 배치 보고서" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31688,12 +31717,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "부정적인 재고 오류" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31771,8 +31800,8 @@ msgstr "정" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31822,7 +31851,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "순이익" @@ -31830,7 +31859,7 @@ msgstr "순이익" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "순이익/손실" @@ -31844,11 +31873,11 @@ msgstr "순이익/손실" msgid "Net Purchase Amount" msgstr "순 구매 금액" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "순 구매 금액은 단일 자산의 구매 금액과 같으므로 이어야 합니다." @@ -32092,7 +32121,7 @@ msgstr "새 회계연도 - {0}" msgid "New Income" msgstr "새로운 수입" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "새 송장" @@ -32165,6 +32194,7 @@ msgid "New Task" msgstr "새로운 작업" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "새 버전" @@ -32177,8 +32207,8 @@ msgstr "새로운 창고 이름" msgid "New Workplace" msgstr "새로운 업무 공간" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32187,6 +32217,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32199,7 +32233,7 @@ msgstr "" msgid "New task" msgstr "새로운 작업" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32263,16 +32297,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "선택하신 옵션에 해당하는 고객이 없습니다." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "삭제할 문서 유형 목록에 문서 유형이 없습니다. 제출하기 전에 목록을 생성하거나 가져오세요." @@ -32280,15 +32313,15 @@ msgstr "삭제할 문서 유형 목록에 문서 유형이 없습니다. 제출 msgid "No Impact on Accounting Ledger" msgstr "회계 장부에 영향 없음" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "바코드가 있는 품목 없음 {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "일련번호가 있는 품목 없음 {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "이송할 품목이 선택되지 않았습니다." @@ -32331,11 +32364,6 @@ msgstr "허가 없음" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "해당 설정에 대한 기록이 없습니다." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "선택 안 함" @@ -32438,6 +32466,10 @@ msgstr "해당 회사를 찾을 수 없습니다." msgid "No contacts with email IDs found." msgstr "이메일 주소가 있는 연락처를 찾을 수 없습니다." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32483,7 +32515,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "이체 가능한 품목이 없습니다." @@ -32520,10 +32552,6 @@ msgstr "왼쪽에는 더 이상 어린이가 없습니다" msgid "No more children on Right" msgstr "오른쪽에 더 이상 어린이는 없습니다" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "배송 횟수" @@ -32620,7 +32648,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "지정한 필터 조건을 만족하는 {0} 이 {1} {2} 에 대해 발견되지 않았습니다." @@ -32658,15 +32686,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32695,7 +32728,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "해당 제품은 재고가 없습니다." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32732,7 +32765,7 @@ msgstr "값이 없습니다" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32740,11 +32773,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "아니요." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32796,7 +32824,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "어떤 품목도 수량이나 가치에 변동이 없습니다." @@ -32807,8 +32835,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "번호" @@ -32822,8 +32850,8 @@ msgstr "번호" msgid "Not Applicable" msgstr "해당 없음" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "이용 불가" @@ -32886,10 +32914,6 @@ msgstr "시작 안 함" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "해당 회사의 가장 빠른 회계연도를 찾을 수 없습니다." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32906,10 +32930,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "구성되지 않음" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "재고 없음" @@ -32922,7 +32942,7 @@ msgstr "재고 없음" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33167,7 +33187,7 @@ msgid "Numeric Values" msgstr "숫자 값" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33343,12 +33363,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "작업 지시가 종료되면 다시 재개할 수 없습니다." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "고객은 하나의 로열티 프로그램에만 참여할 수 있습니다." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33382,7 +33402,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33447,7 +33467,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33513,7 +33533,7 @@ msgstr "오픈 이벤트" msgid "Open Events" msgstr "오픈 이벤트" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "양식 보기 열기" @@ -33666,7 +33686,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33696,7 +33716,7 @@ msgstr "개장일" msgid "Opening Entry" msgstr "입장 시작" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "송장 생성 작업 진행 중" @@ -33724,7 +33744,7 @@ msgstr "개시 송장 항목" msgid "Opening Invoice Tool" msgstr "송장 열기 도구" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33733,7 +33753,7 @@ msgstr "" msgid "Opening Invoices" msgstr "송장 개시" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "개시 청구서 요약" @@ -33763,20 +33783,20 @@ msgstr "개시 판매 송장이 생성되었습니다." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "개시 주식" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33785,7 +33805,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33828,7 +33848,7 @@ msgstr "운영 구성 요소 비용" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33919,7 +33939,7 @@ msgstr "작업 행 번호" msgid "Operation Time" msgstr "운영 시간" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33943,7 +33963,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34129,6 +34149,10 @@ msgstr "기회 {0} 가 생성되었습니다" msgid "Optimize Route" msgstr "경로 최적화" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "선택 사항입니다. 취소할 특정 제조 항목을 선택하십시오." @@ -34145,10 +34169,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "주문 금액" @@ -34434,7 +34454,7 @@ msgid "Out of stock" msgstr "품절" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "구식 POS 개시 입력" @@ -34488,7 +34508,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34569,11 +34589,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "초과 채취 허용량 (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "영수증 초과" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "{0} {1} 의 수령/배송 초과는 항목 {2} 에 대해 무시되었습니다. 왜냐하면 귀하에게 {3} 역할이 있기 때문입니다." @@ -34590,13 +34610,13 @@ msgstr "초과 이체 허용 비율(%)" msgid "Over Withheld" msgstr "보류됨" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "{} 역할이 있으므로 {}에 대한 과다 청구는 무시됩니다." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' @@ -34646,10 +34666,6 @@ msgstr "기한이 지난 작업" msgid "Overdue and Discounted" msgstr "연체 상품 및 할인" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "{0} 와 {1} 사이의 점수 중복" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "다음 조건들 사이에 중복되는 조건이 발견되었습니다:" @@ -34715,6 +34731,11 @@ msgstr "PAN 번호" msgid "PCV" msgstr "PCV" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "PCV 일시 중단됨" @@ -34762,7 +34783,7 @@ msgstr "POS" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "POS 마감" @@ -34860,7 +34881,7 @@ msgid "POS Invoice is not submitted" msgstr "POS 송장이 제출되지 않았습니다" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34920,7 +34941,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "POS 개시 입력 취소 오류" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "POS 개시 입력 취소됨" @@ -34941,7 +34962,7 @@ msgstr "POS 개시 입력 누락" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34964,7 +34985,7 @@ msgstr "POS 결제 방식" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "POS 프로필" @@ -34984,7 +35005,7 @@ msgstr "POS 프로필 사용자" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34996,19 +35017,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35038,11 +35059,11 @@ msgstr "POS 설정" msgid "POS Transactions" msgstr "POS 거래" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35061,7 +35082,7 @@ msgstr "PSOA 프로젝트" msgid "PZN" msgstr "피지엔" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35686,7 +35707,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35813,7 +35834,7 @@ msgstr "정당 불일치" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35899,7 +35920,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35920,7 +35941,7 @@ msgstr "파티 유형" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "거래 유형 및 거래처는 수취/지급 계정에만 설정할 수 있습니다.

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35956,8 +35977,8 @@ msgid "Party is required" msgstr "파티가 필요합니다" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." -msgstr "당사자는 결제 내역을 생성해야 합니다." +msgid "Party is required to create a payment entry." +msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 msgid "Party type is required to create a payment entry." @@ -36466,7 +36487,7 @@ msgstr "결제 참고 자료" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36541,7 +36562,7 @@ msgstr "지불 일정" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "해당 문서에 대한 지급 내역이 이미 존재하므로 지급 일정 기반 지급 요청을 생성할 수 없습니다." -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "지불 일정" @@ -36563,7 +36584,7 @@ msgstr "지불 일정" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36663,7 +36684,7 @@ msgid "Payment Type" msgstr "결제 유형" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36870,11 +36891,11 @@ msgstr "오늘 예정된 활동" msgid "Pending processing" msgstr "처리 대기 중" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "대기 수량은 요청 수량보다 클 수 없습니다." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "대기 수량은 음수일 수 없습니다." @@ -37390,12 +37411,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37417,7 +37438,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Plaid 거래 동기화 오류" @@ -37568,15 +37589,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "회사를 선택해 주세요" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "회사를 선택해 주세요." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37584,7 +37596,6 @@ msgstr "고객을 선택해 주세요" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37592,19 +37603,19 @@ msgstr "" msgid "Please Set Priority" msgstr "우선순위를 설정해 주세요" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "결제 방식과 개시 잔액 정보를 추가해 주세요." @@ -37620,7 +37631,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "루트 계정을 추가해 주세요 - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37628,35 +37639,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "은행 입금 규칙에 대한 계정을 추가해 주세요." -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "사용자 {0}에 {1} 역할을 추가해 주세요." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37698,7 +37706,7 @@ msgstr "운영 부서 또는 FG 기반 운영 비용을 확인해 주십시오." msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "오류 메시지를 확인하고 필요한 조치를 취하여 오류를 수정하신 후 다시 게시를 시도해 주십시오." @@ -37711,11 +37719,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37731,15 +37739,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "은행 입금 규칙에 사용할 계정을 설정해 주세요." -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "{0}의 신용 한도를 연장하려면 다음 사용자 중 한 명에게 연락하십시오: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "이 거래를 진행하려면 다음 사용자 중 한 명에게 연락하십시오." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "{0}의 신용 한도를 연장하려면 관리자에게 문의하십시오." @@ -37747,11 +37755,11 @@ msgstr "{0}의 신용 한도를 연장하려면 관리자에게 문의하십시 msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37763,7 +37771,7 @@ msgstr "필요한 경우 새 회계 차원을 생성하십시오." msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37775,11 +37783,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "여러 자산에 대한 비용을 하나의 자산에 대해 회계 처리하지 마십시오." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37804,7 +37812,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37816,11 +37824,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "{0} 계정 {1} 이 지급 계정인지 확인하십시오. 계정 유형을 지급 계정으로 변경하거나 다른 계정을 선택할 수 있습니다." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37836,7 +37844,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37852,7 +37860,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37861,7 +37869,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37897,7 +37905,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "계정의 루트 유형을 입력해 주세요 - {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38027,7 +38035,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38063,11 +38071,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "오류를 수정하고 다시 시도해 주세요." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38096,12 +38100,12 @@ msgstr "배송 일정을 추가하기 전에 판매 주문을 저장하십시오 msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38117,9 +38121,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38129,7 +38133,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38152,7 +38156,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "서비스 항목으로 완제품을 선택해 주세요 {0}" @@ -38161,6 +38165,10 @@ msgstr "서비스 항목으로 완제품을 선택해 주세요 {0}" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38185,11 +38193,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38218,6 +38226,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38225,11 +38234,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "먼저 회사를 선택해 주세요." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "고객을 선택해 주세요" @@ -38238,7 +38248,7 @@ msgstr "고객을 선택해 주세요" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38250,7 +38260,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38266,6 +38276,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "회사를 선택해 주세요." @@ -38299,22 +38310,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "거래를 선택해 주세요." - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38323,7 +38338,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "창고를 설정하기 전에 품목 코드를 선택하십시오." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38331,10 +38346,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "품목 코드, 배치 번호 또는 일련 번호 중 하나 이상의 필터를 선택하십시오." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "배송 수량을 업데이트하려면 최소 한 개 이상의 품목을 선택해 주세요." +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38343,18 +38366,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "일정을 하나 이상 선택해 주세요." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38392,12 +38407,12 @@ msgstr "예약하실 품목을 선택해 주세요." msgid "Please select items to unreserve." msgstr "예약을 해제할 항목을 선택하세요." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38406,8 +38421,8 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "여러 개의 수집 규칙을 적용하려면 다단계 프로그램 유형을 선택하십시오." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38430,20 +38445,16 @@ msgstr "먼저 문서 종류를 선택해 주세요." msgid "Please select the required filters" msgstr "필요한 필터를 선택하세요" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "유효한 문서 유형을 선택하십시오." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38472,7 +38483,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38502,13 +38513,11 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" msgstr "" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38516,7 +38525,7 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38533,8 +38542,7 @@ msgid "Please set Root Type" msgstr "루트 유형을 설정해 주세요" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" +msgid "Please set Tax ID for the customer '{0}'" msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 @@ -38554,15 +38562,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38579,8 +38587,7 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" +msgid "Please set an Address on the Company '{0}'" msgstr "" #: erpnext/stock/services/base_stock_gl_composer.py:194 @@ -38599,24 +38606,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38648,11 +38652,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "다음 중 하나를 선택해 주세요:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38660,7 +38664,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "{0} 회사에서 기본 비용 센터를 설정해 주십시오." @@ -38715,7 +38719,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38723,7 +38727,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38733,8 +38737,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38742,11 +38746,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38754,6 +38758,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "한 시간 후에 다시 시도해 주세요." @@ -38917,7 +38929,7 @@ msgstr "게시일" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38942,7 +38954,7 @@ msgstr "게시일" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38985,7 +38997,7 @@ msgstr "게시일" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -38994,7 +39006,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "'게시 날짜 및 시간 수정' 옵션이 선택 해제되어 있으므로 게시 날짜가 오늘 날짜로 변경됩니다. 계속하시겠습니까?" @@ -39187,6 +39199,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "대통령" @@ -39276,7 +39292,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39418,7 +39434,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39539,7 +39555,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "해당 상품의 가격은 아직 정해지지 않았습니다." @@ -39650,7 +39666,7 @@ msgstr "가격 책정 규칙은 '적용 대상' 필드를 기준으로 먼저 msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "가격 규칙은 특정 기준에 따라 가격표를 덮어쓰거나 할인율을 정의하기 위해 만들어졌습니다." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39858,8 +39874,8 @@ msgid "Priorities" msgstr "우선순위" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "우선순위는 1보다 낮을 수 없습니다." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40040,7 +40056,7 @@ msgstr "구독 처리" msgid "Process in Single Transaction" msgstr "단일 거래로 처리" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40166,7 +40182,7 @@ msgstr "제품 번들" msgid "Product Bundle Balance" msgstr "제품 묶음 잔액" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40191,7 +40207,7 @@ msgstr "제품 번들 도움말" msgid "Product Bundle Item" msgstr "제품 번들 품목" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40394,7 +40410,7 @@ msgstr "제품" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "올해 수익" @@ -40423,6 +40439,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40431,8 +40451,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "연간 수익" @@ -40505,7 +40525,7 @@ msgstr "프로젝트 현황" msgid "Project Summary" msgstr "프로젝트 개요" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "{0} 프로젝트 요약" @@ -40585,7 +40605,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40636,7 +40656,7 @@ msgstr "예상 수량" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40782,7 +40802,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "관심은 있지만 전환되지 않은 잠재 고객" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "보호된 문서 유형" @@ -40815,9 +40835,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "잠정 비용 계정" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41045,8 +41065,8 @@ msgstr "구매 송장 동향" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "기존 자산에 대해서는 구매 송장을 발행할 수 없습니다 {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41087,7 +41107,7 @@ msgstr "구매 송장" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41111,11 +41131,11 @@ msgstr "구매 송장" msgid "Purchase Order" msgstr "구매 주문서" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "구매 주문 금액" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "구매 주문 금액(회사 통화)" @@ -41130,7 +41150,7 @@ msgstr "구매 주문 금액(회사 통화)" msgid "Purchase Order Analysis" msgstr "구매 주문 분석" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "구매 주문 날짜" @@ -41179,7 +41199,7 @@ msgid "Purchase Order Required" msgstr "구매 주문서 필요" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41239,7 +41259,7 @@ msgid "Purchase Orders to Receive" msgstr "수령할 구매 주문서" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41329,7 +41349,7 @@ msgid "Purchase Receipt Required" msgstr "구매 영수증 필수" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41349,8 +41369,8 @@ msgid "Purchase Receipt Trends " msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "구매 영수증에 샘플 보관 옵션이 활성화된 품목이 없습니다." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41577,7 +41597,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41596,7 +41616,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41661,7 +41681,7 @@ msgstr "거래 후 수량" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41698,7 +41718,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "생산할 수량" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41793,7 +41813,7 @@ msgstr "소비량" msgid "Qty to Bill" msgstr "청구할 수량" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "제작할 수량" @@ -41979,7 +41999,7 @@ msgstr "품질 검사" msgid "Quality Inspection Analysis" msgstr "품질 검사 분석" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42056,7 +42076,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42139,7 +42159,7 @@ msgstr "품질 검토" msgid "Quality Review Objective" msgstr "품질 검토 목표" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "수량 업데이트가 완료되었습니다." @@ -42183,12 +42203,12 @@ msgstr "수량 업데이트가 완료되었습니다." #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42339,7 +42359,7 @@ msgstr "수량이 필요합니다" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42367,11 +42387,11 @@ msgstr "" msgid "Quantity to Manufacture" msgstr "생산 수량" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "생산 수량은 0보다 커야 합니다." @@ -42379,6 +42399,10 @@ msgstr "생산 수량은 0보다 커야 합니다." msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42404,7 +42428,7 @@ msgstr "분기 {0} {1}" msgid "Query Route String" msgstr "쿼리 경로 문자열" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42644,7 +42668,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42828,7 +42852,7 @@ msgid "Rate at which this tax is applied" msgstr "이 세금이 적용되는 세율" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43147,7 +43171,7 @@ msgstr "보류 사유" msgid "Reason for Failure" msgstr "실패 원인" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "보류 사유" @@ -43389,8 +43413,8 @@ msgstr "" msgid "Receiving" msgstr "전수" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "최근 주문" @@ -43566,6 +43590,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43616,7 +43644,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43696,7 +43724,7 @@ msgstr "참조 #" msgid "Reference #{0} dated {1}" msgstr "참조 #{0} 날짜 {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "조기 결제 할인 기준일" @@ -43988,7 +44016,7 @@ msgid "Rejected Warehouse" msgstr "거부된 창고" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44095,7 +44123,7 @@ msgstr "주목" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44134,7 +44162,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "수량이나 가치에 변화가 없는 품목들을 제거했습니다." @@ -44285,7 +44313,7 @@ msgstr "오류 보고" msgid "Report Line Items" msgstr "보고서 항목" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44368,7 +44396,7 @@ msgstr "오류 로그 다시 게시" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44414,6 +44442,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44498,7 +44535,7 @@ msgstr "필요 날짜" msgid "Reqd Qty (BOM)" msgstr "필요 수량 (BOM)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "필요한 날짜" @@ -44614,11 +44651,11 @@ msgstr "요청 수량" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "요청 수량: 구매를 요청했으나 주문하지 않은 수량입니다." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "요청 사이트" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44797,6 +44834,10 @@ msgstr "예비 재고" msgid "Reserve Warehouse" msgstr "예비 창고" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "원자재 비축" @@ -44835,7 +44876,7 @@ msgid "Reserved Qty" msgstr "예약 수량" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." msgstr "" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material @@ -44880,7 +44921,7 @@ msgstr "예약 수량" msgid "Reserved Quantity for Production" msgstr "생산 예약 수량" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44896,13 +44937,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "예약 재고" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45396,6 +45437,10 @@ msgstr "" msgid "Returns" msgstr "보고" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45820,11 +45865,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45908,23 +45953,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "행 #{0}: 배치 번호 {1} 가 이미 선택되었습니다." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "행 #{0}: 품목 {1} 의 청구 수량이 소비 수량보다 클 수 없으므로 이 제조 재고 항목을 취소할 수 없습니다." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "행 #{0}: 보조 품목 {1} 의 생산 수량이 납품 수량보다 적을 수 없으므로 이 제조 재고 항목을 취소할 수 없습니다." -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -46000,13 +46045,16 @@ msgstr "행 #{0}: 일치하는 {1} 항목을 충분히 찾지 못했습니다. msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "행 #{0}: 고객 제공 품목 {1} 은 하도급 입고 프로세스에서 여러 번 추가할 수 없습니다." @@ -46018,7 +46066,7 @@ msgstr "행 #{0}: 고객 제공 항목 {1} 은 여러 번 추가할 수 없습 msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "행 #{0}: 고객 제공 품목 {1} 이 하도급 입고 주문에 연결된 필수 품목 테이블에 존재하지 않습니다." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46026,12 +46074,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "행 #{0}: 고객 제공 품목 {1} 의 하도급 입고 주문 수량이 부족합니다. 사용 가능한 수량은 {2}입니다." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46043,7 +46091,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46051,6 +46099,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "행 #{0}: 참조 {1} {2}에 중복 항목 있음" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46063,11 +46115,18 @@ msgstr "행 #{0}: 항목 {1}에 대해 비용 계정이 설정되지 않았습 msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "행 #{0}: 비용 계정 {1} 은 구매 송장 {2}에 유효하지 않습니다. 재고 품목이 아닌 품목에 대한 비용 계정만 허용됩니다." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46090,8 +46149,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "행 #{0}: 완료됨. 보조 항목 {1}에 대한 양호한 참조가 필수입니다." -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46103,7 +46162,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46115,6 +46174,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "행 #{0}: 항목이 추가되었습니다" @@ -46143,16 +46206,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "행 #{0}: 항목 {1} 은 고객이 제공한 항목이 아닙니다." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "행 #{0}: 품목 {1} 은 일련번호/배치번호가 부여된 품목이 아닙니다. 따라서 일련번호/배치번호를 지정할 수 없습니다." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46168,13 +46231,17 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "행 #{0}: 항목 {1} 이 일치하지 않습니다. 항목 코드 변경은 허용되지 않으므로, 대신 다른 행을 추가하십시오." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "행 #{0}: 항목 {1} 이 일치하지 않습니다. 항목 코드 변경은 허용되지 않습니다." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46184,15 +46251,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "행 #{0}: 회사 {2}에 대한 {1} 이 누락되었습니다." -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46204,24 +46271,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "행 #{0}: 작업 지시서 {2} 에 대한 고객 제공 품목 {1} 의 과소비는 하도급 입고 프로세스에서 허용되지 않습니다." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "행 #{0}: 고객이 제공한 품목을 사용할 완제품 품목을 선택하십시오." @@ -46237,6 +46328,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46256,8 +46351,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "행 #{0}: 수량은 창고 {4}의 배치 {3} 에 대한 품목 {2} 의 예약 가능 수량(실제 수량 - 예약 수량) {1} 보다 작거나 같아야 합니다." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46279,7 +46374,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46287,17 +46382,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "행 #{0}: 품목 {1} 에 대해 예약할 수량은 0보다 커야 합니다." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46317,11 +46412,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46331,7 +46426,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46340,6 +46435,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46352,7 +46451,7 @@ msgstr "행 #{0}: 품목 {2} 의 일련 번호 {1} 는 {3} {4} 에서 사용할 msgid "Row #{0}: Serial No {1} is already selected." msgstr "행 #{0}: 일련 번호 {1} 가 이미 선택되었습니다." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46376,7 +46475,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46445,7 +46544,7 @@ msgstr "행 #{0}: 창고 {2}에서 품목 {1} 에 대한 예약 가능한 재고 msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46453,19 +46552,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "행 #{0}: 배치 {1} 가 이미 만료되었습니다." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46477,11 +46584,15 @@ msgstr "행 #{0}: 창고 {1} 가 직렬 및 배치 번들 {3}의 창고 {2} 와 msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46489,6 +46600,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "행 #{0}: 항목 {1}에 대한 자산을 선택해야 합니다." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46505,6 +46629,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46545,71 +46677,10 @@ msgstr "행 #{idx}: {from_warehouse_field} 및 {to_warehouse_field} 는 같을 msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "행 #{idx}: {schedule_date} 는 {transaction_date} 앞에 있을 수 없습니다." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "행 번호 {}: {} - {}의 통화가 회사 통화와 일치하지 않습니다." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "행 번호 {}: 재무 장부는 여러 개를 사용하고 있으므로 비어 있으면 안 됩니다." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "행 번호 {}: 팀원에게 작업을 할당해 주세요." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "행 번호 {}: 다른 재무 서적을 사용하십시오." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "행 번호 {}: 반품 송장 {}의 원래 송장 {}이 통합되지 않았습니다." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "행 번호 {}: 항목 {}이 이미 선택되었습니다." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "열 #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46622,10 +46693,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "행 {0} 에서 선택한 수량이 필요한 수량보다 적습니다. 추가로 {1} {2} 가 필요합니다." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46646,19 +46713,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "행 {0}: {1} 이 활성화되어 있으므로 {2} 항목에 원자재를 추가할 수 없습니다. 원자재를 소모하려면 {3} 항목을 사용하십시오." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46674,11 +46741,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46706,24 +46773,24 @@ msgstr "행 {0}: 품목 {1}에 대해 배송 창고가 고객 창고와 동일 msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "행 {0}: 납품서 품목 또는 포장 품목 참조는 필수 입력 사항입니다." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "행 {0}: 경비 계정 {1} 은 회사 {2}에 연결되어 있습니다. 회사 {3}에 속한 계정을 선택하십시오." @@ -46744,6 +46811,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "행 {0}: 시작 시간과 종료 시간은 필수 입력 사항입니다." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46765,7 +46835,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "행 {0}: 잘못된 참조 {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46796,7 +46866,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "행 {0}: 포장 수량은 {1} 수량과 같아야 합니다." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "행 {0}: 품목 {1}에 대한 포장 전표가 이미 생성되었습니다." @@ -46820,7 +46890,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "행 {0}: 유효한 배송 전표 품목 또는 포장 품목 참조 번호를 제공해 주십시오." @@ -46828,14 +46898,14 @@ msgstr "행 {0}: 유효한 배송 전표 품목 또는 포장 품목 참조 번 msgid "Row {0}: Please select a BOM for Item {1}." msgstr "행 {0}: 품목 {1}에 대한 BOM을 선택하십시오." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "행 {0}: 품목 {1}에 대해 활성화된 BOM을 선택하십시오." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "행 {0}: 품목 {1}에 대한 유효한 BOM을 선택하십시오." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "" @@ -46852,11 +46922,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "행 {0}: 구매 송장 {1} 은 재고에 영향을 미치지 않습니다." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "행 {0}: 품목 {2}의 수량은 {1} 보다 클 수 없습니다." @@ -46864,7 +46934,7 @@ msgstr "행 {0}: 품목 {2}의 수량은 {1} 보다 클 수 없습니다." msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "행 {0}: 수량은 0보다 커야 합니다." @@ -46876,7 +46946,7 @@ msgstr "행 {0}: 수량은 음수일 수 없습니다." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46901,10 +46971,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "행 {0}: {2} 의 계정 {1} 에 대한 전체 비용 금액이 이미 할당되었습니다." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46957,15 +47027,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "행 {0}: {1} {2} 는 회사 {3}에 연결되어 있습니다. 회사 {4}에 속한 문서를 선택하십시오." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -47004,7 +47078,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47065,10 +47139,6 @@ msgstr "규칙 평가 완료" msgid "Rules evaluation started" msgstr "규칙 평가가 시작되었습니다" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "시리즈 구성 규칙" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47136,7 +47206,7 @@ msgstr "SLA 충족됨 상태" msgid "SLA Paused On" msgstr "SLA 일시 중지됨" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47435,7 +47505,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47652,8 +47722,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48060,7 +48130,7 @@ msgstr "동일 상품" msgid "Same day" msgstr "당일" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "동일한 품목 및 창고 조합이 이미 입력되었습니다." @@ -48092,7 +48162,7 @@ msgstr "시료 보관 창고" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "표본 크기" @@ -48202,7 +48272,7 @@ msgstr "" msgid "Schedule Date" msgstr "일정 날짜" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48213,7 +48283,7 @@ msgstr "" msgid "Scheduled Date" msgstr "예정일" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "예약 날짜를 입력해주세요." @@ -48499,7 +48569,7 @@ msgstr "계정을 선택하세요" msgid "Select Accounting Dimension." msgstr "회계 차원을 선택하세요." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "대체 항목을 선택하세요" @@ -48520,7 +48590,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "배치 번호를 선택하세요" @@ -48585,7 +48655,7 @@ msgstr "치수를 선택하세요" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "직원 선택" @@ -48610,7 +48680,7 @@ msgstr "항목을 선택하세요" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48640,7 +48710,7 @@ msgstr "작업자 주소를 선택하세요" msgid "Select Loyalty Program" msgstr "로열티 프로그램을 선택하세요" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "지불 일정을 선택하세요" @@ -48654,13 +48724,13 @@ msgid "Select Quantity" msgstr "수량을 선택하세요" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "일련번호를 선택하세요" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48751,6 +48821,7 @@ msgid "Select an Item Group." msgstr "품목 그룹을 선택하세요." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48893,10 +48964,14 @@ msgstr "" msgid "Selected date is" msgstr "선택한 날짜는" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49044,7 +49119,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "SMS 보내기" @@ -49128,7 +49203,7 @@ msgstr "시리얼/배치 번들 누락" msgid "Serial / Batch No" msgstr "일련번호/배치번호" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "일련번호/배치번호" @@ -49185,10 +49260,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49230,6 +49306,10 @@ msgstr "일련번호/배치번호" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "일련번호 개수" @@ -49247,7 +49327,7 @@ msgstr "일련번호 원장" msgid "Serial No Range" msgstr "일련번호 범위" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49292,8 +49372,8 @@ msgid "Serial No and Batch" msgstr "일련번호 및 배치 번호" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "'일련번호/배치 필드 사용' 옵션이 활성화된 경우 일련번호 및 배치 선택기를 사용할 수 없습니다." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49304,7 +49384,7 @@ msgstr "'일련번호/배치 필드 사용' 옵션이 활성화된 경우 일련 msgid "Serial No and Batch Traceability" msgstr "일련번호 및 배치 추적 기능" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49324,21 +49404,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49353,25 +49430,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "일련번호: {0} 는 이미 다른 POS 송장에 반영되었습니다." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49391,7 +49469,7 @@ msgstr "일련번호/배치" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "일련번호는 재고 예약 항목에 예약되어 있으므로, 진행하기 전에 예약을 해제해야 합니다." @@ -49492,6 +49570,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49540,7 +49622,7 @@ msgstr "일련번호 및 배치 예약" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49548,122 +49630,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "창고 {1}에서 품목 {0} 의 일련 번호를 찾을 수 없습니다. 창고를 변경해 보세요." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "시리즈" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49745,7 +49717,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "서비스 항목 {0} 은 재고 품목이 아니어야 합니다." @@ -49854,12 +49826,12 @@ msgid "Service Stop Date" msgstr "서비스 중단 날짜" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49883,7 +49855,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49898,7 +49870,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "배송 창고 설정" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50003,7 +49975,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50021,7 +49993,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50047,7 +50019,7 @@ msgstr "닫힘으로 설정" msgid "Set as Completed" msgstr "완료로 설정" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "분실로 설정" @@ -50145,15 +50117,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50221,7 +50193,7 @@ msgid "Setting up company" msgstr "회사 설립" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50649,6 +50621,7 @@ msgid "Show Completed" msgstr "쇼 완료" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50851,7 +50824,7 @@ msgstr "바로 다음 학기만 표시하세요" msgid "Show pay button in Purchase Order portal" msgstr "구매 주문 포털에 결제 버튼 표시" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "보류 중인 항목 표시" @@ -50956,11 +50929,11 @@ msgstr "읽기 필드에 적용된 간단한 Python 수식입니다.
                    숫자 msgid "Simultaneous" msgstr "동시" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -51021,7 +50994,7 @@ msgstr "WIP로의 자재 이송을 건너뛰세요" msgid "Skip Material Transfer to WIP Warehouse" msgstr "WIP 창고로의 자재 이송을 건너뛰세요" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51077,7 +51050,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "필수 회사 정보 중 일부가 누락되었습니다. 해당 정보를 업데이트할 권한이 없습니다. 시스템 관리자에게 문의하십시오." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51145,7 +51118,7 @@ msgstr "출처 제조업체 입력" msgid "Source Stock Entry (Manufacture)" msgstr "원천 재고 입력(제조)" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51182,8 +51155,8 @@ msgstr "소스 유형" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51313,7 +51286,7 @@ msgstr "분할 문제" msgid "Split Qty" msgstr "수량 분할" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51326,7 +51299,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51379,7 +51357,7 @@ msgstr "" msgid "Stale Days" msgstr "지루한 날들" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Stale Days는 1부터 시작해야 합니다." @@ -51444,10 +51422,26 @@ msgstr "" msgid "Standing Name" msgstr "정식 명칭" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "시작/재개" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51477,7 +51471,7 @@ msgstr "{0}의 경우 시작 시간은 종료 시간보다 크거나 같을 수 msgid "Start Timer" msgstr "타이머 시작" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51506,10 +51500,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51590,7 +51588,7 @@ msgstr "상태 일러스트" msgid "Status and Reference" msgstr "상태 및 참조" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51718,7 +51716,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51800,16 +51798,20 @@ msgstr "재고 입력 품목" msgid "Stock Entry Type" msgstr "재고 입력 유형" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "재고 입력 {0} 생성됨" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51976,7 +51978,7 @@ msgstr "예상 재고 수량" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52059,7 +52061,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52084,15 +52086,15 @@ msgstr "주식 예약" msgid "Stock Reservation Entries Cancelled" msgstr "주식 예약 접수가 취소되었습니다" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "주식 예약 항목이 생성되었습니다" @@ -52262,7 +52264,7 @@ msgstr "주식 거래" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52421,9 +52423,9 @@ msgstr "재고가 작업 주문 {0}에 대한 예약 해제되었습니다." msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "창고 {1}에서 품목 {0} 의 재고를 찾을 수 없습니다." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "창고 {1}에서 품목 코드 {0} 의 재고 수량이 부족합니다. 사용 가능한 수량은 {2} {3} 입니다." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52441,7 +52443,7 @@ msgstr "명시된 일수보다 오래된 주식 거래는 수정할 수 없습 msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "소급 입력 처리가 진행 중이므로 재고/계정을 동결할 수 없습니다. 나중에 다시 시도해 주세요." @@ -52456,7 +52458,7 @@ msgstr "결석" msgid "Stop Reason" msgstr "정지 사유" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52464,7 +52466,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "백화점" @@ -52678,7 +52680,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "하청 납품" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52750,7 +52752,7 @@ msgstr "하청 계약 매입 서비스 품목" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52788,7 +52790,7 @@ msgstr "하도급 주문 서비스 품목" msgid "Subcontracting Order Supplied Item" msgstr "하도급 주문 공급 품목" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "하도급 주문 {0} 이 생성되었습니다." @@ -52862,7 +52864,7 @@ msgstr "하도급 반환" msgid "Subcontracting Sales Order" msgstr "하청 판매 주문" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52881,7 +52883,7 @@ msgstr "하청 계약 설정" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "작업 제출 실패" @@ -52910,7 +52912,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "견적서를 제출하세요" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53052,7 +53054,7 @@ msgstr "성공 설정" msgid "Successful" msgstr "성공적인" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "성공적으로 조정되었습니다" @@ -53230,7 +53232,7 @@ msgstr "공급 수량" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53412,7 +53414,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53560,7 +53562,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53745,10 +53747,6 @@ msgstr "" msgid "Support Tickets" msgstr "지원 티켓" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "지원되는 변수:" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "예상 할인 금액" @@ -53834,7 +53832,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "TDS 계산 요약" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53895,7 +53893,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -54005,11 +54003,11 @@ msgstr "대상 창고 주소 링크" msgid "Target Warehouse Reservation Error" msgstr "대상 창고 예약 오류" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "완제품의 목표 창고는 하도급 입고 주문에 연결된 작업 주문 {2} 의 완제품 창고 {1} 와 동일해야 합니다." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "완제품의 목표 창고는 하도급 입고 주문에 연결된 작업 주문 {1} 의 완제품 창고 {0} 와 동일해야 합니다." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54484,7 +54482,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "과세 대상 금액" @@ -54696,7 +54694,7 @@ msgstr "텔레비전" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -55003,23 +55001,27 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "'출발 포장 번호' 필드는 비어 있거나 1보다 작은 값이어서는 안 됩니다." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "포털에서 견적 요청 기능을 사용할 수 없습니다. 접근을 허용하려면 포털 설정에서 해당 기능을 활성화하십시오." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "교체될 BOM" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55044,6 +55046,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55061,8 +55067,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "재고 예약 항목이 포함된 선택 목록은 수정할 수 없습니다. 변경이 필요한 경우, 선택 목록을 수정하기 전에 기존 재고 예약 항목을 취소하는 것이 좋습니다." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55073,11 +55082,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "일련번호 {0} 는 {1} {2} 에 대해 예약되어 있으며 다른 거래에는 사용할 수 없습니다." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55125,15 +55138,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "회사 {0} 는 아랍에미리트에 소재하지 않습니다. UAE VAT 201 보고서는 아랍에미리트에 소재한 회사에만 제공됩니다." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "작업 {1} 의 완료된 수량 {0} 은 이전 작업 {3}의 완료된 수량 {2} 보다 클 수 없습니다." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "송장 {}({})의 통화가 이 독촉장({})의 통화와 다릅니다." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "현재 POS 개시 입력 항목이 오래되었습니다. 해당 항목을 닫고 새 항목을 생성하십시오." @@ -55182,6 +55195,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55203,8 +55220,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55232,7 +55249,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55244,7 +55261,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "다음 {0} 이 생성되었습니다: {1}" @@ -55280,8 +55297,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "{items} 아이템은 {type_of} 아이템으로 표시되어 있지 않습니다. 해당 아이템의 마스터에서 {type_of} 아이템으로 활성화할 수 있습니다." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "작업 카드 {0} 가 {1} 상태이므로 완료할 수 없습니다." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55318,11 +55335,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "개시 잔액이 은행 명세서와 일치하지 않을 수 있습니다. 잔액을 대조해 보시겠습니까?" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55371,6 +55388,10 @@ msgstr "주문 수량 대비 추가로 받을 수 있는 비율입니다. 예를 msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "주문 수량 대비 이체 가능한 비율입니다. 예를 들어, 100개를 주문했고 이체 허용량이 10%라면 110개까지 이체할 수 있습니다." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55380,7 +55401,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "거래 참조 번호" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "예약된 재고는 아이템을 업데이트할 때 해제됩니다. 계속 진행하시겠습니까?" @@ -55397,8 +55418,8 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "선택한 변경 계정 {}은 회사 {}에 속하지 않습니다." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55414,7 +55435,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55433,11 +55454,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "다음 품목 및 창고에 대해 재고가 예약되어 있습니다. 재고 조정에서 해당 품목 및 창고의 예약을 해제하십시오: {0}

                    {1}" @@ -55459,16 +55480,16 @@ msgstr "시스템은 계좌 번호 또는 IBAN을 기반으로 거래 당사자 msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "이 설정에 따라 시스템은 POS 인터페이스를 통해 판매 송장 또는 POS 송장을 생성합니다. 거래량이 많은 경우에는 POS 송장 사용을 권장합니다." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55507,7 +55528,7 @@ msgstr "이 역할을 가진 사용자는 거래가 동결된 경우에도 주 msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "값 {0} 은 이미 기존 항목 {1}에 할당되어 있습니다." @@ -55531,7 +55552,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0} 에는 단가 항목이 포함되어 있습니다." @@ -55539,7 +55560,7 @@ msgstr "{0} 에는 단가 항목이 포함되어 있습니다." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "{0} 접두사 '{1}'가 이미 존재합니다. 일련번호 시리즈를 변경해 주십시오. 그렇지 않으면 중복 항목 오류가 발생합니다." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55547,6 +55568,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} 는 완제품 {2}의 평가 비용을 계산하는 데 사용됩니다." @@ -55555,7 +55580,7 @@ msgstr "{0} {1} 는 완제품 {2}의 평가 비용을 계산하는 데 사용됩 msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55567,7 +55592,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55584,6 +55609,10 @@ msgstr "데모 데이터를 생성할 수 있는 활성 회계연도가 없습 msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55600,10 +55629,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "{1} 이전에 조정되지 않은 거래가 {0} 건 있습니다." -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55632,20 +55657,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "{0} 이전에 조정되지 않은 거래가 하나 있습니다." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Plaid와 은행 계좌를 연동하는 과정에서 오류가 발생했습니다." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "거래 내역 동기화 중 오류가 발생했습니다." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55696,15 +55721,19 @@ msgstr "이번 달 요약" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55726,7 +55755,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55744,7 +55773,7 @@ msgstr "이 열에는 \"CR\"/\"DR\" 값 또는 양수/음수 값이 포함될 msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "" @@ -55886,7 +55915,7 @@ msgstr "이 항목은 은행 계좌 정보입니다. 은행 거래 내역에 따 msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "시스템은 은행 명세서의 최종 잔액이 이 값이어야 한다고 예상합니다." -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55950,7 +55979,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "이 일정은 자산 {0} 이 폐기되었을 때 생성되었습니다." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55977,10 +56006,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56038,8 +56067,8 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "이것은 물질 이동으로 처리됩니다." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56167,6 +56196,12 @@ msgstr "시간(분)" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56453,7 +56488,7 @@ msgid "To Time" msgstr "시간에" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56484,15 +56519,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "과다 청구를 허용하려면 계정 설정 또는 해당 항목에서 \"과다 청구 허용량\"을 업데이트하십시오." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56509,7 +56544,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56521,8 +56556,8 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "자본 공사 진행 상황 회계 처리를 활성화하려면," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56534,8 +56569,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56555,7 +56590,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "여러 거래를 한 번에 선택하려면 Shift 키를 길게 누르십시오." -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56572,10 +56607,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56654,8 +56691,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "총액 (회사 통화)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "총액 (학점)" @@ -56697,6 +56734,22 @@ msgstr "총 추가 비용" msgid "Total Advance" msgstr "" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56744,11 +56797,11 @@ msgstr "총 지불 금액" msgid "Total Amount in Words" msgstr "총 금액을 글자로 표기" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56930,7 +56983,7 @@ msgstr "총 배송 금액" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56939,11 +56992,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "총 예상 거리" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "총 비용" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "올해 총 지출액" @@ -56981,11 +57034,11 @@ msgstr "총 대기 시간" msgid "Total Holidays" msgstr "총 휴일 수" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "" @@ -57028,7 +57081,7 @@ msgstr "총 도착 비용(회사 통화)" msgid "Total Ledgers" msgstr "총 원장" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "총 책임" @@ -57343,7 +57396,7 @@ msgstr "총 세금 및 수수료" msgid "Total Taxes and Charges (Company Currency)" msgstr "총 세금 및 수수료 (회사 통화 기준)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "총 소요 시간(분)" @@ -57352,7 +57405,11 @@ msgstr "총 소요 시간(분)" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "미지급 총액: {0}" @@ -57431,7 +57488,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57449,7 +57506,7 @@ msgstr "총 시간: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57467,8 +57524,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "총 {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57557,27 +57614,11 @@ msgstr "추적 상태 정보" msgid "Tracking URL" msgstr "추적 URL" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "거래" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "거래 통화" @@ -57630,11 +57671,11 @@ msgstr "거래 삭제 기록 항목" msgid "Transaction Deletion Record To Delete" msgstr "삭제할 거래 기록" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58024,6 +58065,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58208,7 +58253,7 @@ msgstr "UAE 부가가치세 설정" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58230,7 +58275,7 @@ msgstr "UAE 부가가치세 설정" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58260,7 +58305,7 @@ msgstr "UAE 부가가치세 설정" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58324,7 +58369,7 @@ msgstr "단위 변환 세부 정보" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58398,7 +58443,7 @@ msgstr "화해할 수 없는" msgid "UnReconcile Allocations" msgstr "조정되지 않은 할당" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "문서 유형 정보를 가져올 수 없습니다. 시스템 관리자에게 문의하십시오." @@ -58411,10 +58456,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58439,7 +58480,7 @@ msgstr "할당되지 않음" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58451,8 +58492,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "청구서 차단 해제" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58502,7 +58545,7 @@ msgstr "거래 조정 취소" msgid "Undo {}?" msgstr "실행 취소 {}?" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58525,7 +58568,7 @@ msgstr "측정 단위" msgid "Unit Price" msgstr "단가" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "측정 단위" @@ -58728,7 +58771,7 @@ msgstr "예정되지 않은" msgid "Unsecured Loans" msgstr "무담보 대출" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "설정되지 않은 일치하는 결제 요청" @@ -58741,7 +58784,7 @@ msgstr "서명되지 않음" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "지원되지 않는 기능" @@ -58885,7 +58928,7 @@ msgstr "현재 재고 현황 업데이트" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58949,7 +58992,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "구매 송장에 대한 재고 업데이트 기능이 활성화되어 있어야 합니다 {0}" @@ -59177,7 +59220,7 @@ msgstr "사용 제안" msgid "Use Transaction Date Exchange Rate" msgstr "거래일 환율을 사용하세요" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59266,6 +59309,10 @@ msgstr "사용자 해결 시간" msgid "User has not applied rule on the invoice {0}" msgstr "사용자가 송장에 규칙을 적용하지 않았습니다 {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59278,6 +59325,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59286,10 +59337,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59582,15 +59629,15 @@ msgstr "평가 비율" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59598,7 +59645,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59608,7 +59655,7 @@ msgstr "" msgid "Valuation and Total" msgstr "평가액 및 총액" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59621,13 +59668,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59678,12 +59725,12 @@ msgstr "가치 제안" msgid "Value Type" msgstr "값 유형" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "현재 가치" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59692,19 +59739,19 @@ msgstr "" msgid "Value of Goods" msgstr "상품 가치" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "신규 구매 가격" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "폐기 자산의 가치" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "매각된 자산의 가치" @@ -60180,7 +60227,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60208,7 +60255,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60220,7 +60267,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60252,7 +60299,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60459,7 +60506,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60477,16 +60524,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "창고 {0} 는 회사 {1}에 속하지 않습니다." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60607,7 +60654,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "경고 - 행 {0}: 청구 시간이 실제 시간보다 많습니다" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "주가 하락에 대한 경고" @@ -60627,7 +60674,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60781,10 +60828,6 @@ msgstr "웹사이트 항목 그룹" msgid "Website Specifications" msgstr "웹사이트 사양" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "연중 주차" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60930,7 +60973,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61106,17 +61149,17 @@ msgstr "작업 진행 중" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61155,7 +61198,7 @@ msgstr "작업 지시서 소모 자재" msgid "Work Order Item" msgstr "작업 지시 항목" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "작업 지시 불일치" @@ -61196,20 +61239,20 @@ msgstr "작업 지시 요약" msgid "Work Order Summary Report" msgstr "작업 지시 요약 보고서" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61230,7 +61273,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "작업 지시서" @@ -61255,7 +61298,7 @@ msgstr "작업 진행 중" msgid "Work-in-Progress Warehouse" msgstr "작업 진행 중 창고" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61308,7 +61351,7 @@ msgstr "근무 시간" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61540,14 +61583,6 @@ msgstr "연도 이름" msgid "Year Start Date" msgstr "연도 시작일" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61562,7 +61597,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61582,7 +61617,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "품목 {0}에 대해 필요한 수량보다 더 많이 선택하고 있습니다. 판매 주문 {1}에 대해 생성된 다른 선택 목록이 있는지 확인하십시오." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61593,19 +61628,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61627,8 +61658,8 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "최대 {0}까지 사용 가능합니다." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61646,14 +61677,6 @@ msgstr "거래를 여러 계정으로 분할하는 규칙을 설정할 수 있 msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "작업 지시가 마감되었으므로 작업 카드에 대한 변경은 불가능합니다." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61662,17 +61685,17 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "이 날짜까지는 회계 전표를 생성/수정할 수 없습니다." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61683,23 +61706,31 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "루트 노드는 편집할 수 없습니다." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "'{0}' 설정과 '{1}' 설정을 동시에 활성화할 수는 없습니다." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "{0} 는 배송 완료, 비활성 상태이거나 다른 창고에 위치해 있으므로 외부로 이동할 수 없습니다." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "{0} 이상은 교환할 수 없습니다." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61707,7 +61738,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "구독을 취소하지 않으면 다시 시작할 수 없습니다." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61722,6 +61753,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61732,8 +61767,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "{} 내의 {} 항목에 대한 권한이 없습니다." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61759,11 +61794,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "이 문서를 업데이트할 권한이 없습니다. 시스템 관리자에게 문의하십시오." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61780,7 +61815,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61795,19 +61830,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "저장하지 않은 변경 사항이 있습니다. 송장을 저장하시겠습니까?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "상품을 추가하기 전에 먼저 고객을 선택해야 합니다." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61859,6 +61894,10 @@ msgstr "우편 번호" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "제로 등급" @@ -61889,7 +61928,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "'항목에 대해 음수 요금을 허용합니다'" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "~ 후에" @@ -61909,7 +61948,7 @@ msgstr "제목으로" msgid "as a percentage of finished item quantity" msgstr "완제품 수량 대비 백분율" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "{0} 기준" @@ -61925,10 +61964,6 @@ msgstr "기반" msgid "by {}" msgstr "에 의해 {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61983,8 +62018,8 @@ msgstr "" msgid "fieldname" msgstr "필드 이름" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62064,14 +62099,10 @@ msgstr "5점 만점에" msgid "paid to" msgstr "지불됨" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62085,7 +62116,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "다음 중 하나를 수행하십시오:" @@ -62161,8 +62192,8 @@ msgstr "판매된" msgid "subscription is already cancelled." msgstr "구독이 이미 취소되었습니다." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "타겟_참조_필드" @@ -62225,10 +62256,6 @@ msgstr "자산 수리를 통해" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62241,7 +62268,7 @@ msgstr "{0} '{1}' 회계연도 {2}에 포함되지 않음" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62261,7 +62288,7 @@ msgstr "{0} 계정 {1} 에 대한 예산은 {2} {3} 에 대해 {4}입니다. 이 msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "{0} 계정 {1} 에 대한 예산은 {2} {3} 에 대해 {4}입니다. 이는 {5}만큼 초과될 것입니다." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62269,11 +62296,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62355,10 +62377,18 @@ msgstr "{0} 는 {1} 또는 {2}일 수 있습니다." msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} 는 열린 시작 항목으로 변경할 수 없습니다." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62374,7 +62404,7 @@ msgstr "" msgid "{0} created" msgstr "{0} 생성됨" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62416,7 +62446,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "{0} 는 당기신 후 수정되었습니다. 다시 당겨주세요." @@ -62424,6 +62454,10 @@ msgstr "{0} 는 당기신 후 수정되었습니다. 다시 당겨주세요." msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} 시간" @@ -62432,7 +62466,11 @@ msgstr "{0} 시간" msgid "{0} in row {1}" msgstr "{0} 행 {1}에 위치" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62446,7 +62484,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62454,7 +62492,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62467,11 +62505,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62479,7 +62517,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "{0} 는 CSV 파일이 아닙니다." -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62495,7 +62533,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "{0} 는 유효한 회계 차원이 아닙니다." -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} 는 항목 {2}의 속성 {1} 에 대한 유효한 값이 아닙니다." @@ -62511,16 +62549,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62571,7 +62609,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62584,7 +62622,7 @@ msgstr "{0} 에서 {1}까지" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} 단위가 창고 {2}의 품목 {1} 에 대해 예약되어 있습니다. 재고 조정을 위해 {3} 에서 예약을 해제해 주십시오." @@ -62600,16 +62638,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62617,7 +62655,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "품목 {1}에 대한 유효한 일련 번호 {0}" @@ -62625,7 +62663,7 @@ msgstr "품목 {1}에 대한 유효한 일련 번호 {0}" msgid "{0} variants created." msgstr "{0} 변형이 생성되었습니다." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "{0} 보기는 현재 사용자 지정 재무 보고서에서 지원되지 않습니다." @@ -62659,7 +62697,7 @@ msgstr "{0} {1} 생성됨" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62693,12 +62731,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} 는 이미 공통 코드 {2}에 연결되어 있습니다." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62730,6 +62777,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62835,27 +62886,23 @@ msgstr "총 청구 금액의 {0}%가 할인으로 적용됩니다." msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{0}의 {1} 는 {2}의 예상 종료일 이후일 수 없습니다." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: 자식 테이블 (부모 테이블과 함께 자동 삭제됨)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: 찾을 수 없음" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: 보호된 문서 유형" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: 가상 문서 유형(데이터베이스 테이블 없음)" @@ -62871,7 +62918,7 @@ msgstr "{0}: {1} 는 존재하지 않습니다" msgid "{0}: {1} is a group account." msgstr "{0}: {1} 는 그룹 계정입니다." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62883,7 +62930,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} 가 취소되었거나 닫혔습니다." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62895,32 +62942,7 @@ msgstr "" msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{}님이 자산을 연결하여 제출했습니다. 구매 반품을 생성하려면 해당 자산을 취소해야 합니다." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} 송장" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{}는 자회사입니다." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {}는 은행 계좌에 영향을 미치지 않습니다 {}" - diff --git a/erpnext/locale/my.po b/erpnext/locale/my.po index 6bda62221c8..638d5cea73a 100644 --- a/erpnext/locale/my.po +++ b/erpnext/locale/my.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Burmese\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: my_MM\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# ကုန်ပစ္စည်းလက်ဝယ်ရှိ" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# တောင်းခံသောပစ္စည်းများ" @@ -277,7 +268,7 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" +msgid "'Based On' and 'Group By' can not be the same" msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "ကုန်ပစ္စည်းမဟုတ်သည့် အရာများတွင် 'Has Serial No' သည် 'Yes' မဖြစ်ရပါ။" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "စာရင်းဖွင့်" @@ -326,12 +317,12 @@ msgstr "စာရင်းဖွင့်" msgid "'To Date' is required" msgstr "'နေ့စွဲအထိ' ကို ထည့်သွင်းရန် လိုအပ်သည်" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 @@ -617,7 +608,7 @@ msgstr "၉၀ အထက်" msgid "<0" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -783,8 +774,8 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " msgstr "" #: erpnext/accounts/services/billing_validation.py:136 @@ -792,7 +783,7 @@ msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -953,8 +944,8 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 @@ -965,8 +956,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -983,7 +974,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1016,7 +1007,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1192,7 +1183,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "" @@ -1223,12 +1214,16 @@ msgstr "" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1481,7 +1476,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1611,11 +1606,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1894,8 +1889,8 @@ msgstr "" msgid "Accounting Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "" @@ -1920,8 +1915,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1969,7 +1964,11 @@ msgstr "စာရင်းပိုင်းဆိုင်ရာ လုပ် msgid "Accounting Period" msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2167,8 +2166,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2396,7 +2395,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2406,7 +2405,7 @@ msgstr "" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2556,8 +2555,8 @@ msgstr "နာရီအတွင်း အမှန်တကယ်အချိ msgid "Actual qty in stock" msgstr "ကုန်သိုလှောင်ရုံရှိ အမှန်တကယ်လက်ကျန်" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2722,10 +2721,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2824,12 +2819,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -2972,7 +2967,7 @@ msgstr "ထပ်လျှော့ပေးငွေ ပမာဏ" msgid "Additional Discount Amount (Company Currency)" msgstr "ထပ်လျှော့ပေးငွေ ပမာဏ (လုပ်ငန်း၏ငွေကြေးယူနစ်)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3091,11 +3086,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3360,7 +3351,7 @@ msgstr "" msgid "Advance amount" msgstr "ကြိုတင်ငွေပမာဏ" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "ကြိုတင်ငွေပမာဏ {0} {1}ထက် မကြီးနိုင်ပါ" @@ -3429,7 +3420,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "" @@ -3549,7 +3540,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3573,7 +3564,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3687,6 +3678,13 @@ msgstr "" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3863,7 +3861,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3875,7 +3873,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3894,15 +3892,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3926,7 +3924,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "" @@ -3936,7 +3934,7 @@ msgstr "" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3966,7 +3964,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4049,7 +4047,7 @@ msgid "Allow Alternative Item" msgstr "" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4157,7 +4155,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4438,12 +4436,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4478,10 +4478,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4489,10 +4489,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4508,12 +4504,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4718,7 +4714,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4944,12 +4940,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5163,7 +5159,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5340,10 +5336,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5369,6 +5361,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5410,6 +5406,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5492,18 +5497,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Sub Assembly Items များ လုံလောက်စွာရှိသောကြောင့် Warehouse {0}အတွက် Work Order မလိုအပ်ပါ။" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5542,7 +5547,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5614,7 +5619,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5780,7 +5785,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5912,7 +5917,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5928,7 +5933,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -5981,7 +5986,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6059,7 +6064,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6080,7 +6085,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6090,6 +6095,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6108,19 +6118,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6141,6 +6155,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6161,7 +6179,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6169,26 +6187,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6400,7 +6414,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6461,7 +6475,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6586,7 +6600,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6682,7 +6696,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6800,7 +6814,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6819,7 +6833,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6834,7 +6848,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6965,7 +6979,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -6986,7 +7000,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7038,10 +7052,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7080,15 +7090,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7169,7 +7183,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7239,6 +7253,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7299,7 +7317,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7399,7 +7417,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7644,7 +7662,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7656,7 +7674,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7668,7 +7686,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7944,8 +7962,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7976,15 +7994,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -7992,6 +8010,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8057,8 +8079,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8171,7 +8193,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8646,7 +8668,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8874,7 +8896,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8892,7 +8914,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8900,7 +8922,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9227,6 +9249,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9398,7 +9424,7 @@ msgstr "ကမ်ပိန်း {0} ကို ရှာမတွေ့ပါ" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9427,21 +9453,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9470,7 +9499,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9478,11 +9507,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9497,10 +9521,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9525,6 +9545,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9534,14 +9559,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9549,7 +9574,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9561,7 +9586,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9586,7 +9611,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9613,7 +9638,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9622,6 +9647,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9639,7 +9668,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9652,7 +9681,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9684,7 +9713,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9709,19 +9738,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9733,12 +9766,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9747,19 +9784,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10186,8 +10227,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10214,8 +10255,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10409,7 +10450,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10467,7 +10508,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10477,7 +10518,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10656,7 +10697,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10670,7 +10711,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10900,9 +10941,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11339,7 +11380,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11409,7 +11450,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11449,10 +11490,6 @@ msgstr "လုပ်ငန်း" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11617,7 +11654,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11661,11 +11698,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "လုပ်ငန်းအမည် မတူသည်များ" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11704,6 +11741,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11712,14 +11757,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11741,7 +11778,7 @@ msgstr "ပြိုင်ဘက်အမည်" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12185,7 +12222,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12501,7 +12538,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12801,7 +12838,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12826,7 +12863,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12884,7 +12921,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12896,7 +12933,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12918,11 +12955,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13047,14 +13084,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13066,7 +13103,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13076,7 +13113,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13100,7 +13137,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13330,10 +13367,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13352,7 +13385,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13367,7 +13400,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13595,7 +13628,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13629,7 +13662,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13724,7 +13757,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13734,16 +13767,16 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13777,11 +13810,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13862,7 +13895,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13942,16 +13975,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14010,12 +14043,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14138,7 +14171,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14203,7 +14236,7 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14266,10 +14299,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15100,7 +15129,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15245,10 +15274,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15355,11 +15380,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15521,7 +15546,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16202,8 +16227,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16297,7 +16322,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16355,7 +16380,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16685,7 +16710,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16701,7 +16726,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16771,7 +16796,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16800,11 +16825,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16832,7 +16857,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16935,11 +16960,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17002,7 +17027,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17175,7 +17200,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17184,17 +17209,17 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "ဤ {} သည် အတွင်းပိုင်းလွှဲပြောင်းမှုဖြစ်သောကြောင့် ဈေးနှုန်းစည်းမျဉ်းများကို ပိတ်ထားသည်" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17444,8 +17469,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17810,11 +17835,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "" @@ -17852,22 +17877,6 @@ msgstr "" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18173,7 +18182,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18327,7 +18336,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18551,7 +18560,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18739,7 +18748,7 @@ msgstr "" msgid "Empty" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18748,7 +18757,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18827,6 +18836,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19098,7 +19113,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19221,7 +19236,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19276,6 +19291,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19311,7 +19330,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19335,7 +19354,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19367,18 +19386,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19393,7 +19414,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "ခန့်မှန်းကုန်ကျစရိတ်" @@ -19442,7 +19463,7 @@ msgstr "ဥပမာ- ABCD။#####။ စီးရီးကို သတ်မ msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19723,7 +19744,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19810,7 +19831,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "စရိတ်" @@ -20069,8 +20090,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20268,7 +20289,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20306,15 +20327,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20323,7 +20344,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20482,11 +20503,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20555,7 +20576,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20568,7 +20589,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20676,7 +20697,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20775,10 +20796,6 @@ msgstr "" msgid "Fiscal Year" msgstr "ဘဏ္ဍာရေးနှစ်" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20792,11 +20809,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20829,7 +20843,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20965,7 +20979,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -20990,10 +21004,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21060,11 +21070,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21097,12 +21107,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21115,8 +21125,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21132,21 +21142,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21165,11 +21171,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21257,6 +21267,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21800,7 +21825,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21925,6 +21950,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21978,7 +22007,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22321,7 +22350,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22504,7 +22533,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22644,7 +22673,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22947,7 +22976,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -22975,7 +23004,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23011,7 +23040,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23594,15 +23623,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23640,7 +23669,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23741,7 +23770,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23959,14 +23988,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24443,7 +24472,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "ဝင်ငွေ" @@ -24529,7 +24558,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "စာရင်းခေါင်းစဉ် မှန်ကန်မှု မရှိပါ။" @@ -24538,7 +24567,7 @@ msgstr "စာရင်းခေါင်းစဉ် မှန်ကန်မ msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24546,11 +24575,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24559,7 +24588,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24576,7 +24605,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24659,7 +24688,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24856,7 +24885,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24872,12 +24901,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25007,7 +25036,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25032,7 +25061,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25058,7 +25087,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25079,7 +25108,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25121,8 +25150,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25141,7 +25170,7 @@ msgstr "" msgid "Invalid Amount" msgstr "မမှန်ကန်သော ပမာဏ" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25158,11 +25187,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25182,13 +25211,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25209,11 +25238,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25243,7 +25272,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25252,7 +25281,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25291,7 +25320,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25308,7 +25337,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25320,8 +25349,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25329,7 +25358,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25346,7 +25375,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25356,14 +25385,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25395,7 +25424,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26358,10 +26387,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26370,7 +26395,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26419,12 +26444,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26457,7 +26482,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26531,7 +26556,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26692,7 +26717,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26724,7 +26749,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26733,12 +26758,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26834,7 +26859,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27030,7 +27055,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27184,7 +27209,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27215,7 +27240,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27223,8 +27248,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27281,7 +27306,7 @@ msgstr "" msgid "Item Name" msgstr "ပစ္စည်းအမည်" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27328,8 +27353,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27341,7 +27366,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27386,7 +27411,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27502,7 +27527,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27621,7 +27646,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27657,7 +27682,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27671,7 +27696,7 @@ msgstr "ပစ္စည်းအမည်" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27686,7 +27711,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27702,10 +27727,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27714,6 +27735,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27723,6 +27748,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27755,6 +27781,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27787,7 +27817,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27819,10 +27849,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27873,6 +27899,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27889,7 +27919,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -27929,7 +27959,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27939,7 +27969,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28009,7 +28039,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28072,20 +28102,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28148,11 +28177,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28498,7 +28535,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28619,7 +28656,7 @@ msgstr "" msgid "Lead" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28713,7 +28750,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28861,7 +28898,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28890,7 +28927,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28920,7 +28957,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29016,7 +29053,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29183,7 +29220,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29269,7 +29306,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29507,7 +29544,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29604,7 +29641,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29751,7 +29788,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "အရှုံးအမြတ်စာရင်းအတွက် မဖြစ်မနေလိုအပ်သည်" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29834,8 +29871,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30057,7 +30094,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30235,10 +30272,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30265,7 +30298,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30376,7 +30409,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30426,7 +30459,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30448,7 +30481,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30462,7 +30495,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30582,13 +30615,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30757,7 +30790,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30792,7 +30825,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31138,7 +31171,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31147,11 +31180,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31176,11 +31209,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31188,7 +31221,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31200,7 +31233,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31212,7 +31245,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31220,12 +31253,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31474,8 +31507,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31483,7 +31516,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31504,7 +31537,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31513,10 +31546,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31601,11 +31634,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31649,7 +31678,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31659,12 +31688,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31742,8 +31771,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31793,7 +31822,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "အသားတင်အမြတ်" @@ -31801,7 +31830,7 @@ msgstr "အသားတင်အမြတ်" msgid "Net Profit Ratio" msgstr "အသားတင်အမြတ်အချိုး" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "အသားတင်အမြတ် သို့ အရှုံး" @@ -31815,11 +31844,11 @@ msgstr "အသားတင်အမြတ် သို့ အရှုံး" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32063,7 +32092,7 @@ msgstr "ဘဏ္ဍာရေးနှစ်သစ် - {0}" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32136,6 +32165,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32148,8 +32178,8 @@ msgstr "" msgid "New Workplace" msgstr "အလုပ်ခွင်အသစ်" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32158,6 +32188,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32170,7 +32204,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32234,16 +32268,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32251,15 +32284,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32302,11 +32335,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32409,6 +32437,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32454,7 +32486,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32491,10 +32523,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32591,7 +32619,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32629,15 +32657,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32666,7 +32699,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32703,7 +32736,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32711,11 +32744,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32767,7 +32795,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32778,8 +32806,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32793,8 +32821,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32857,10 +32885,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32877,10 +32901,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32893,7 +32913,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33138,7 +33158,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33314,11 +33334,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33353,7 +33373,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33418,7 +33438,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33484,7 +33504,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33637,7 +33657,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33667,7 +33687,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33695,7 +33715,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33704,7 +33724,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33734,20 +33754,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33756,7 +33776,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33799,7 +33819,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33890,7 +33910,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33914,7 +33934,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34100,6 +34120,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34116,10 +34140,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34405,7 +34425,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34459,7 +34479,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34540,11 +34560,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34561,12 +34581,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34617,10 +34637,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34686,6 +34702,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34733,7 +34754,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34831,7 +34852,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34891,7 +34912,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34912,7 +34933,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34935,7 +34956,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -34955,7 +34976,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34967,19 +34988,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35009,11 +35030,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35032,7 +35053,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35657,7 +35678,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35784,7 +35805,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35870,7 +35891,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35891,7 +35912,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35927,7 +35948,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36437,7 +36458,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36512,7 +36533,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36534,7 +36555,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36634,7 +36655,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36841,11 +36862,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37361,12 +37382,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37388,7 +37409,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37539,15 +37560,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37555,7 +37567,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37563,19 +37574,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37591,7 +37602,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37599,35 +37610,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37669,7 +37677,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37682,11 +37690,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37702,15 +37710,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37718,11 +37726,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37734,7 +37742,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37746,11 +37754,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37775,7 +37783,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37787,11 +37795,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37807,7 +37815,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37823,7 +37831,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37832,7 +37840,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37868,7 +37876,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -37998,7 +38006,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38034,11 +38042,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38067,12 +38071,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38088,9 +38092,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38100,7 +38104,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38123,7 +38127,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38132,6 +38136,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38156,11 +38164,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38189,6 +38197,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38196,11 +38205,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38209,7 +38219,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38221,7 +38231,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38237,6 +38247,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38270,22 +38281,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "ပြန်လည်တင်ခြင်း မှတ်တမ်းတစ်ခု ဖန်တီးရန် အတန်းတစ်တန်း ရွေးချယ်ပါ။" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38294,7 +38309,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38302,10 +38317,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38314,18 +38337,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38363,12 +38378,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38377,7 +38392,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38401,20 +38416,16 @@ msgstr "" msgid "Please select the required filters" msgstr "လိုအပ်သည့် ရွေးချယ်မှုများထည့်သွင်းပါ။" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38443,7 +38454,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38473,13 +38484,11 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" msgstr "" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38487,7 +38496,7 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38504,8 +38513,7 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" +msgid "Please set Tax ID for the customer '{0}'" msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 @@ -38525,15 +38533,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38550,8 +38558,7 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" +msgid "Please set an Address on the Company '{0}'" msgstr "" #: erpnext/stock/services/base_stock_gl_composer.py:194 @@ -38570,24 +38577,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38619,11 +38623,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38631,7 +38635,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38686,7 +38690,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38694,7 +38698,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38704,8 +38708,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38713,11 +38717,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38725,6 +38729,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38888,7 +38900,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38913,7 +38925,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38956,7 +38968,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -38965,7 +38977,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39158,6 +39170,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39247,7 +39263,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39389,7 +39405,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39510,7 +39526,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39621,7 +39637,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39829,7 +39845,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40011,7 +40027,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40137,7 +40153,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40162,7 +40178,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40365,7 +40381,7 @@ msgstr "" msgid "Profit & Loss" msgstr "အရှုံးနှင့်အမြတ်" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "ယခုနှစ်အမြတ်" @@ -40394,6 +40410,10 @@ msgstr "အရှုံးနှင့်အမြတ်" msgid "Profit and Loss Statement" msgstr "အရှုံးအမြတ်ရှင်းတမ်း" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40402,8 +40422,8 @@ msgstr "အရှုံးအမြတ်ရှင်းတမ်း" msgid "Profit and Loss Summary" msgstr "အရှုံးအမြတ်စာရင်းချုပ်" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "ယခုနှစ်အမြတ်" @@ -40476,7 +40496,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40556,7 +40576,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40607,7 +40627,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40753,7 +40773,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40786,9 +40806,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41016,8 +41036,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41058,7 +41078,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41082,11 +41102,11 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41101,7 +41121,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41150,7 +41170,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41210,7 +41230,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41300,7 +41320,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41320,7 +41340,7 @@ msgid "Purchase Receipt Trends " msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41548,7 +41568,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41567,7 +41587,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41632,7 +41652,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41669,7 +41689,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41764,7 +41784,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -41950,7 +41970,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42027,7 +42047,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42110,7 +42130,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42154,12 +42174,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42310,7 +42330,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42338,11 +42358,11 @@ msgstr "ပမာဏသည် ၀ ထက် ပိုများသင့်သ msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42350,6 +42370,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42375,7 +42399,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42615,7 +42639,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42799,7 +42823,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43118,7 +43142,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43360,8 +43384,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43537,6 +43561,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43587,7 +43615,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43667,7 +43695,7 @@ msgstr "" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -43959,7 +43987,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44066,7 +44094,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44105,7 +44133,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44256,7 +44284,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44339,7 +44367,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44385,6 +44413,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44469,7 +44506,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44585,11 +44622,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44768,6 +44805,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44806,7 +44847,7 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." msgstr "" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material @@ -44851,7 +44892,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44867,13 +44908,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45367,6 +45408,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45791,11 +45836,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45879,23 +45924,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45971,13 +46016,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -45989,7 +46037,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -45997,12 +46045,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46014,7 +46062,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46022,6 +46070,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46034,11 +46086,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46061,8 +46120,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46074,7 +46133,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46086,6 +46145,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46114,16 +46177,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46139,12 +46202,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46155,15 +46222,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46175,24 +46242,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46208,6 +46299,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46227,7 +46322,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46250,7 +46345,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46258,17 +46353,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46288,11 +46383,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46302,7 +46397,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46311,6 +46406,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46323,7 +46422,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46347,7 +46446,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46416,7 +46515,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46424,19 +46523,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46448,11 +46555,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46460,6 +46571,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46476,6 +46600,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46516,71 +46648,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46593,10 +46664,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46617,19 +46684,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46645,11 +46712,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46677,24 +46744,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46715,6 +46782,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46736,7 +46806,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46767,7 +46837,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46791,7 +46861,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46799,12 +46869,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46823,11 +46893,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46835,7 +46905,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46847,7 +46917,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46872,10 +46942,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46928,15 +46998,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -46975,7 +47049,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47036,10 +47110,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47107,7 +47177,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47406,7 +47476,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47623,8 +47693,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48031,7 +48101,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48063,7 +48133,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48173,7 +48243,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48184,7 +48254,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48470,7 +48540,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48491,7 +48561,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48556,7 +48626,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48581,7 +48651,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48611,7 +48681,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48625,13 +48695,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48722,6 +48792,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48863,10 +48934,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49014,7 +49089,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49098,7 +49173,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49155,10 +49230,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49200,6 +49276,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49217,7 +49297,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49262,7 +49342,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49274,7 +49354,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49294,21 +49374,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49323,25 +49400,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49361,7 +49439,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49462,6 +49540,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49510,7 +49592,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49518,122 +49600,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49715,7 +49687,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49824,12 +49796,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49853,7 +49825,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49868,7 +49840,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49973,7 +49945,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -49991,7 +49963,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50017,7 +49989,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50115,15 +50087,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50191,7 +50163,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50619,6 +50591,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50821,7 +50794,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50924,11 +50897,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -50989,7 +50962,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51045,7 +51018,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51113,7 +51086,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51150,8 +51123,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51281,7 +51254,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51294,7 +51267,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51347,7 +51325,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51412,10 +51390,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51445,7 +51439,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51474,10 +51468,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51558,7 +51556,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51686,7 +51684,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51768,16 +51766,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51944,7 +51946,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52027,7 +52029,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52052,15 +52054,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52230,7 +52232,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52389,8 +52391,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52409,7 +52411,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52424,7 +52426,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52432,7 +52434,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52646,7 +52648,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52718,7 +52720,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52756,7 +52758,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52830,7 +52832,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52849,7 +52851,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52878,7 +52880,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53020,7 +53022,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53198,7 +53200,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53380,7 +53382,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53528,7 +53530,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53713,10 +53715,6 @@ msgstr "" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53802,7 +53800,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53863,7 +53861,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -53973,11 +53971,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54452,7 +54450,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54664,7 +54662,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -54971,12 +54969,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "'From Package No.' အကွက်သည် ဗလာဖြစ်ရမည် သို့မဟုတ် ၎င်း၏တန်ဖိုးသည် ၁ ထက်နည်းရမည် မဟုတ်ပါ။" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -54984,10 +54978,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55012,6 +55014,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55029,8 +55035,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55041,11 +55050,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55093,15 +55106,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55150,6 +55163,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55171,8 +55188,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55200,7 +55217,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55212,7 +55229,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55248,7 +55265,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55286,11 +55303,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55339,6 +55356,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55348,7 +55369,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55365,7 +55386,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55382,7 +55403,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55401,11 +55422,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55427,16 +55448,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55475,7 +55496,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55499,7 +55520,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55507,7 +55528,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55515,6 +55536,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55523,7 +55548,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55535,7 +55560,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55552,6 +55577,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55568,10 +55597,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55600,20 +55625,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55664,15 +55689,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55694,7 +55723,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55712,7 +55741,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "" @@ -55854,7 +55883,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55918,7 +55947,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55945,10 +55974,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56006,7 +56035,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56135,6 +56164,12 @@ msgstr "" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56421,7 +56456,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56452,15 +56487,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56477,7 +56512,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56489,7 +56524,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56502,8 +56537,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56523,7 +56558,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56540,10 +56575,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56622,8 +56659,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56665,6 +56702,22 @@ msgstr "" msgid "Total Advance" msgstr "စုစုပေါင်းကြိုတင်ငွေ" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56712,11 +56765,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56898,7 +56951,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56907,11 +56960,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "စုစုပေါင်းကုန်ကျစရိတ်" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "ယခုနှစ်စုစုပေါင်းကုန်ကျစရိတ်" @@ -56949,11 +57002,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "စုစုပေါင်းဝင်ငွေ" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "ယခုနှစ် စုစုပေါင်း ၀င်ငွေ" @@ -56996,7 +57049,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57311,7 +57364,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57320,7 +57373,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57399,7 +57456,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57417,7 +57474,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57435,8 +57492,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57525,27 +57582,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57598,11 +57639,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -57992,6 +58033,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58176,7 +58221,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58198,7 +58243,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58228,7 +58273,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58292,7 +58337,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58366,7 +58411,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58379,10 +58424,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58407,7 +58448,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58419,8 +58460,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58470,7 +58513,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58493,7 +58536,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58696,7 +58739,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58709,7 +58752,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58853,7 +58896,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58917,7 +58960,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59145,7 +59188,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59234,6 +59277,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59246,6 +59293,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59254,10 +59305,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59550,15 +59597,15 @@ msgstr "တန်ဖိုးသင့်သည့် နှုန်း" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59566,7 +59613,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59576,7 +59623,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59589,13 +59636,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59646,12 +59693,12 @@ msgstr "" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59660,19 +59707,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60148,7 +60195,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60176,7 +60223,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60188,7 +60235,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60220,7 +60267,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60427,7 +60474,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60445,16 +60492,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60575,7 +60622,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60595,7 +60642,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60749,10 +60796,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60898,7 +60941,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61074,17 +61117,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61123,7 +61166,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61164,20 +61207,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61198,7 +61241,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61223,7 +61266,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61276,7 +61319,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61508,14 +61551,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61530,7 +61565,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61550,7 +61585,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61561,19 +61596,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61595,7 +61626,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61614,14 +61645,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61630,16 +61653,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61651,15 +61674,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61667,7 +61698,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61675,7 +61706,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61690,6 +61721,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61700,7 +61735,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61727,11 +61762,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61748,7 +61783,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61763,19 +61798,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "သင့်တွင် မသိမ်းဆည်းရသေးသော ပြောင်းလဲမှုများ ရှိသည်။ ငွေတောင်းခံလွှာကို သိမ်းဆည်းလိုပါသလား။" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61827,6 +61862,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61857,7 +61896,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61877,7 +61916,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61893,10 +61932,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61951,8 +61986,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62032,14 +62067,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62053,7 +62084,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62129,8 +62160,8 @@ msgstr "" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62193,10 +62224,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62209,7 +62236,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62229,7 +62256,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62237,11 +62264,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62323,10 +62345,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62342,7 +62372,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62384,7 +62414,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62392,6 +62422,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62400,7 +62434,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62414,7 +62452,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62422,7 +62460,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62435,11 +62473,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62447,7 +62485,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62463,7 +62501,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62479,16 +62517,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62539,7 +62577,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62552,7 +62590,7 @@ msgstr "{0} မှ {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62568,16 +62606,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62585,7 +62623,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62593,7 +62631,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62627,7 +62665,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62661,12 +62699,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62698,6 +62745,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62803,27 +62854,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62839,7 +62886,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62851,7 +62898,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62863,32 +62910,7 @@ msgstr "" msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/nb.po b/erpnext/locale/nb.po index b3cb0e06ab2..b67fbb1ffb4 100644 --- a/erpnext/locale/nb.po +++ b/erpnext/locale/nb.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: nb_NO\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "\"Er anleggsmiddel\" kan ikke fjernes, siden det finnes en anleggsmiddel msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" for \"SN-01\" til \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# På Lager" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Påkrevde artikler" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "\"Tillat flere salgsordrer mot en kundes innkjøpsordre" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "«Basert på» og «Gruppér etter» kan ikke være det samme" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Fra Dato' må være etter 'Til Date'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "\"Har serienummer\" kan ikke være \"Ja\" for artikler som ikke er på lager" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "\"Inspeksjon påkrevd før levering\" er deaktivert for artikkelen {0}, det er ikke nødvendig å opprette QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "\"Inspeksjon påkrevd før kjøp\" er deaktivert for artikkelen {0}, det er ikke nødvendig å opprette QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Åpning'" @@ -326,13 +317,13 @@ msgstr "'Åpning'" msgid "'To Date' is required" msgstr "'Til dato' er påkrevd" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "\"Til pakkenr.\" kan ikke være mindre enn \"Fra pakkenr.\"" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "\"Oppdater lager\" kan ikke sjekkes fordi artiklene ikke leveres via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90 Over" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -826,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Betalingsdokument kreves for rad(er): {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Kan ikke overfakturere for følgende artikler:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Følgende {0}s tilhører ikke Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1055,9 +1046,9 @@ msgstr "A–B" msgid "A - C" msgstr "A–C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Det finnes en kundegruppe med samme navn, vennligst endre kundenavnet eller gi kundegruppen nytt navn" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1067,9 +1058,9 @@ msgstr "En ferieliste kan legges til for å ekskludere telling av disse dagene f msgid "A Lead requires either a person's name or an organization's name" msgstr "En potensiell kunde krever enten en persons navn eller en organisasjons navn" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "En pakkseddel kan bare opprettes for utkast til følgeseddel." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1085,7 +1076,7 @@ msgstr "En prisliste er en samling av artikkelpriser for enten salg, kjøp eller msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Et produkt eller en tjeneste som kjøpes, selges eller holdes på lager." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "En avstemmingsjobb {0} kjører for de samme filtrene. Kan ikke avstemme nå" @@ -1118,7 +1109,7 @@ msgstr "En sjåfør må angis for å kunne registrere." msgid "A logical Warehouse against which stock entries are made." msgstr "Et logisk lager som lageroppføringer gjøres mot." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1294,7 +1285,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "" @@ -1325,12 +1316,16 @@ msgstr "" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "I henhold til stykklisten (BOM) {0} mangler artikkelen '{1}' i lageroppføringen." @@ -1583,7 +1578,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1713,11 +1708,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1996,8 +1991,8 @@ msgstr "Filter for regnskapsdimensjoner" msgid "Accounting Entries" msgstr "Regnskapsposteringer" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Regnskapspostering for eiendeler" @@ -2022,8 +2017,8 @@ msgstr "Regnskapspostering for tjeneste" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2071,7 +2066,11 @@ msgstr "" msgid "Accounting Period" msgstr "Regnskapsperiode" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Regnskapsperioden overlapper med {0}" @@ -2269,8 +2268,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2498,7 +2497,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2508,7 +2507,7 @@ msgstr "" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2658,8 +2657,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Faktisk avgiftstype kan ikke inkluderes i artikkelprisen i rad {0}" @@ -2824,10 +2823,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2926,12 +2921,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -3074,7 +3069,7 @@ msgstr "Ekstra rabattbeløp" msgid "Additional Discount Amount (Company Currency)" msgstr "Ekstra rabattbeløp (selskapets valuta)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3193,11 +3188,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3462,7 +3453,7 @@ msgstr "" msgid "Advance amount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "" @@ -3531,7 +3522,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "" @@ -3651,7 +3642,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3675,7 +3666,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3789,6 +3780,13 @@ msgstr "" msgid "Algorithm" msgstr "Algoritme" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3965,7 +3963,7 @@ msgstr "" msgid "All items are already requested" msgstr "Alle artikler er allerede etterspurt" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Alle artikler er allerede fakturert/returnert" @@ -3977,7 +3975,7 @@ msgstr "Alle artikler er allerede mottatt" msgid "All items have already been transferred for this Work Order." msgstr "Alle artikler er allerede overført for denne arbeidsordren." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Alle artiklene i dette dokumentet har allerede en tilknyttet kvalitetskontroll." @@ -3996,16 +3994,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Alle artiklene er allerede returnert." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Alle nødvendige artikler (råvarer) hentes fra stykklisten og fylles inn i denne tabellen. Her kan du også endre kildelageret for en hvilken som helst artikkel. Og under produksjonen kan du spore overførte råvarer fra denne tabellen." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Alle disse artiklene er allerede fakturert/returnert" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4028,7 +4026,7 @@ msgstr "Fordel forskudd automatisk (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Fordel innbetalingsbeløp" @@ -4038,7 +4036,7 @@ msgstr "Fordel innbetalingsbeløp" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -4068,7 +4066,7 @@ msgstr "Fordelt" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4151,7 +4149,7 @@ msgid "Allow Alternative Item" msgstr "Tillat alternativ artikkel" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4259,7 +4257,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4540,12 +4538,14 @@ msgstr "Tillatte artikler" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4580,10 +4580,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4591,10 +4591,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Det finnes allerede en oppføring for artikkelen {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4610,12 +4606,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Alternativ artikkel" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4820,7 +4816,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5046,12 +5042,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Det oppstod en feil under oppdateringsprosessen" @@ -5265,7 +5261,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5442,10 +5438,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5471,6 +5463,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5512,6 +5508,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5594,18 +5599,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5644,7 +5649,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5716,7 +5721,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5882,7 +5887,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6014,7 +6019,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -6030,7 +6035,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -6083,7 +6088,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "Eiendel flyttet til plassering {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6161,7 +6166,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6182,7 +6187,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6192,6 +6197,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6210,19 +6220,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6243,6 +6257,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6263,7 +6281,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6271,26 +6289,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "På rad {0}: Serie-/partinummer-kombinasjon {1} er allerede opprettet. Fjern verdiene fra feltene for serienummer eller batchnummer." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6502,7 +6516,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6563,7 +6577,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6688,7 +6702,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6784,7 +6798,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6902,7 +6916,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6921,7 +6935,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6936,7 +6950,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7067,7 +7081,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7088,7 +7102,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7140,10 +7154,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7182,15 +7192,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7271,7 +7285,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7341,6 +7355,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7401,7 +7419,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7501,7 +7519,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7746,7 +7764,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7758,7 +7776,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Bankkonto {0} eksisterer allerede og kan ikke opprettes på nytt" @@ -7770,7 +7788,7 @@ msgstr "Bankkontoer lagt til" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Feil ved opprettelse av banktransaksjon" @@ -8046,8 +8064,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8078,15 +8096,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -8094,6 +8112,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8159,8 +8181,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8273,7 +8295,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8748,7 +8770,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8976,7 +8998,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8994,7 +9016,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Bygge alt?" @@ -9002,7 +9024,7 @@ msgstr "Bygge alt?" msgid "Build Tree" msgstr "Bygg trestruktur" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Byggbart antall" @@ -9329,6 +9351,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9500,7 +9526,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9529,21 +9555,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9572,7 +9601,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9580,11 +9609,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Kan ikke beregne ankomsttid da sjåførens startadresse mangler." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9599,10 +9623,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Kan ikke optimalisere ruten fordi startadressen mangler." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9627,6 +9647,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9636,14 +9661,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9651,7 +9676,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9663,7 +9688,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Kan ikke avbryte dette dokumentet da det er linket med innsendt eiendel {asset_link}. Avbryt eiendel for å fortsette." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9688,7 +9713,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9715,7 +9740,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9724,6 +9749,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9741,7 +9770,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9754,7 +9783,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9786,7 +9815,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9811,19 +9840,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9835,12 +9868,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9849,19 +9886,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Kan ikke hente lenketoken. Sjekk feilloggen for mer informasjon." -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10288,8 +10329,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10316,8 +10357,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10511,7 +10552,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10569,7 +10610,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10579,7 +10620,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10758,7 +10799,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10772,7 +10813,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -11002,9 +11043,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11441,7 +11482,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11511,7 +11552,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11551,10 +11592,6 @@ msgstr "Selskap" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11719,7 +11756,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11763,11 +11800,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11806,6 +11843,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11814,14 +11859,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11843,7 +11880,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12287,7 +12324,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12603,7 +12640,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12903,7 +12940,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12928,7 +12965,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12986,7 +13023,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12998,7 +13035,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -13020,11 +13057,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13149,14 +13186,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13168,7 +13205,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Kunne ikke finne selskapet for oppdatering av bankkontoer" @@ -13178,7 +13215,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13202,7 +13239,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13432,10 +13469,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13454,7 +13487,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13469,7 +13502,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13697,7 +13730,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13731,7 +13764,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13826,7 +13859,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13836,16 +13869,16 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13879,11 +13912,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13964,7 +13997,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -14044,16 +14077,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14112,12 +14145,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14240,7 +14273,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14305,7 +14338,7 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14368,10 +14401,6 @@ msgstr "Gjeldende serie-/partinummer-kombinasjon" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15202,7 +15231,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15347,10 +15376,6 @@ msgstr "" msgid "Day Of Week" msgstr "Ukedag" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15457,11 +15482,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15623,7 +15648,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16304,8 +16329,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16399,7 +16424,7 @@ msgstr "Leverte varer som skal faktureres" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16457,7 +16482,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16787,7 +16812,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16803,7 +16828,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16873,7 +16898,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16902,11 +16927,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16934,7 +16959,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -17037,11 +17062,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17104,7 +17129,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17277,7 +17302,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17286,8 +17311,8 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' @@ -17295,8 +17320,8 @@ msgstr "" msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17546,8 +17571,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17912,11 +17937,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "Dokumenttype (DocType) {0} finnes ikke" @@ -17954,22 +17979,6 @@ msgstr "" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18275,7 +18284,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18429,7 +18438,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18653,7 +18662,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18841,7 +18850,7 @@ msgstr "" msgid "Empty" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18850,7 +18859,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18929,6 +18938,12 @@ msgstr "" msgid "Enable European Access" msgstr "Aktiver europeisk tilgang" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19200,7 +19215,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19323,7 +19338,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19378,6 +19393,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19413,7 +19432,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19437,7 +19456,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19469,18 +19488,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19495,7 +19516,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19544,7 +19565,7 @@ msgstr "Eksempel: ABCD.#####. Hvis serien er angitt og batchnummeret ikke er nev msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19825,7 +19846,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19912,7 +19933,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20171,8 +20192,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20370,7 +20391,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20408,15 +20429,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20425,7 +20446,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20584,11 +20605,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20657,7 +20678,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20670,7 +20691,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20778,7 +20799,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20877,10 +20898,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20894,11 +20911,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20931,7 +20945,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21067,7 +21081,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "For varer i «Buntartikkel» vil lager, serienummer og partinummer bli vurdert fra «Pakkeliste»-tabellen. Hvis lager og partinummer er like for alle pakkevarer for en hvilken som helst vare i «Buntartikkel», kan disse verdiene legges inn i hovedtabellen for varer, og verdiene vil bli kopiert til tabellen «Pakkeliste»." @@ -21092,10 +21106,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21162,11 +21172,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21199,12 +21209,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21217,8 +21227,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21234,21 +21244,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21267,11 +21273,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21359,6 +21369,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21902,7 +21927,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -22027,6 +22052,10 @@ msgstr "Hovedbok" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22080,7 +22109,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22423,7 +22452,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22606,7 +22635,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22746,7 +22775,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -23049,7 +23078,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -23077,7 +23106,7 @@ msgstr "Her er de ukentlige fridagene forhåndsutfylt basert på de tidligere va msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23113,7 +23142,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23696,15 +23725,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23742,7 +23771,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23843,7 +23872,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -24061,14 +24090,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24545,7 +24574,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24631,7 +24660,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24640,7 +24669,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24648,11 +24677,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24661,7 +24690,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24678,7 +24707,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24761,7 +24790,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24958,7 +24987,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24974,12 +25003,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25109,7 +25138,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25134,7 +25163,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25160,7 +25189,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25181,7 +25210,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25223,8 +25252,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25243,7 +25272,7 @@ msgstr "" msgid "Invalid Amount" msgstr "" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25260,11 +25289,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25284,13 +25313,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25311,11 +25340,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25345,7 +25374,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25354,7 +25383,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25393,7 +25422,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25410,7 +25439,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25422,8 +25451,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25431,7 +25460,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Ugyldig serie-/partinummer-kombinasjon" @@ -25448,7 +25477,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25458,14 +25487,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25497,7 +25526,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26460,10 +26489,6 @@ msgstr "Utstedelsesdato" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26472,7 +26497,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26521,12 +26546,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26559,7 +26584,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26633,7 +26658,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26794,7 +26819,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26826,7 +26851,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26835,12 +26860,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26936,7 +26961,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27132,7 +27157,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27286,7 +27311,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27317,7 +27342,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27325,8 +27350,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27383,7 +27408,7 @@ msgstr "" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27430,8 +27455,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27443,7 +27468,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27488,7 +27513,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27604,7 +27629,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27723,7 +27748,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27759,7 +27784,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27773,7 +27798,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27788,7 +27813,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27804,10 +27829,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27816,6 +27837,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27825,6 +27850,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27857,6 +27883,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27889,7 +27919,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27921,10 +27951,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27975,6 +28001,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27991,7 +28021,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -28031,7 +28061,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -28041,7 +28071,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28111,7 +28141,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28174,20 +28204,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28250,11 +28279,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28600,7 +28637,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28721,7 +28758,7 @@ msgstr "" msgid "Lead" msgstr "Potensiell kunde" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28815,7 +28852,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28964,7 +29001,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28993,7 +29030,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -29023,7 +29060,7 @@ msgstr "Førerkort" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29119,7 +29156,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29286,7 +29323,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29372,7 +29409,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29610,7 +29647,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29707,7 +29744,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "ormål med servicebesøk" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29854,7 +29891,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29937,8 +29974,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30160,7 +30197,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30338,10 +30375,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30368,7 +30401,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30479,7 +30512,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30529,7 +30562,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30551,7 +30584,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30565,7 +30598,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30685,13 +30718,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30860,7 +30893,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30895,7 +30928,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31241,7 +31274,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31250,11 +31283,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31279,11 +31312,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31291,7 +31324,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31303,7 +31336,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31315,7 +31348,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31323,12 +31356,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31577,8 +31610,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31586,7 +31619,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31607,7 +31640,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31616,10 +31649,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31704,11 +31737,7 @@ msgstr "Nummerserie er påkrevet" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31752,7 +31781,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31762,12 +31791,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31845,8 +31874,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31896,7 +31925,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31904,7 +31933,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31918,11 +31947,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32166,7 +32195,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32239,6 +32268,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32251,8 +32281,8 @@ msgstr "" msgid "New Workplace" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32261,6 +32291,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32273,7 +32307,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32337,16 +32371,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32354,15 +32387,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32405,11 +32438,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32512,6 +32540,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32557,7 +32589,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32594,10 +32626,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32694,7 +32722,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32732,15 +32760,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32769,7 +32802,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32806,7 +32839,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32814,11 +32847,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32870,7 +32898,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32881,8 +32909,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32896,8 +32924,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32960,10 +32988,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32980,10 +33004,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32996,7 +33016,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33241,7 +33261,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33417,11 +33437,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33456,7 +33476,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33521,7 +33541,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33587,7 +33607,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33740,7 +33760,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33770,7 +33790,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33798,7 +33818,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33807,7 +33827,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33837,20 +33857,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33859,7 +33879,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33902,7 +33922,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33993,7 +34013,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -34017,7 +34037,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34203,6 +34223,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34219,10 +34243,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34508,7 +34528,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34562,7 +34582,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34643,11 +34663,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34664,12 +34684,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34720,10 +34740,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34789,6 +34805,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34836,7 +34857,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34934,7 +34955,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34994,7 +35015,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -35015,7 +35036,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -35038,7 +35059,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -35058,7 +35079,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -35070,19 +35091,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35112,11 +35133,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35135,7 +35156,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35760,7 +35781,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35887,7 +35908,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35973,7 +35994,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35994,7 +36015,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -36030,7 +36051,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36540,7 +36561,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36615,7 +36636,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36637,7 +36658,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36737,7 +36758,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36944,11 +36965,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37464,12 +37485,12 @@ msgstr "Plaid klient-ID" msgid "Plaid Environment" msgstr "Plaid-miljø" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Plaid-lenken mislyktes" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Oppdatering av Plaid-lenken er påkrevet" @@ -37491,7 +37512,7 @@ msgstr "Plaid secret" msgid "Plaid Settings" msgstr "Innstillinger for Plaid" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Synkroniseringsfeil for Plaid-transaksjoner" @@ -37642,15 +37663,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37658,7 +37670,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37666,19 +37677,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37694,7 +37705,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37702,35 +37713,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37772,7 +37780,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37785,11 +37793,11 @@ msgstr "Vennligst sjekk Plaid klient-ID-en og secret" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37805,15 +37813,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37821,11 +37829,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37837,7 +37845,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37849,11 +37857,11 @@ msgstr "Slett buntartikkelen {0}før du slår sammen {1} med {2}" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "Vennligst deaktiver arbeidsflyten midlertidig for journalregistrering {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37878,7 +37886,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37890,11 +37898,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37910,7 +37918,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37926,7 +37934,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37935,7 +37943,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37971,7 +37979,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38101,7 +38109,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38137,11 +38145,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Vennligst oppdater eller tilbakestill Plaid-koblingen til banken {}." @@ -38170,12 +38174,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38191,9 +38195,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38203,7 +38207,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38226,7 +38230,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38235,6 +38239,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38259,11 +38267,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38292,6 +38300,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38299,11 +38308,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38312,7 +38322,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38324,7 +38334,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38340,6 +38350,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38373,22 +38384,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38397,7 +38412,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38405,10 +38420,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38417,18 +38440,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38466,12 +38481,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38480,7 +38495,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38504,20 +38519,16 @@ msgstr "Vennligst velg dokumenttype (DocType) først." msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Vennligst velg gyldig dokumenttype (DocType)." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Vennligst velg ukentlig fridag" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38546,7 +38557,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38576,13 +38587,11 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" msgstr "" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38590,7 +38599,7 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38607,8 +38616,7 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" +msgid "Please set Tax ID for the customer '{0}'" msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 @@ -38628,15 +38636,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38653,8 +38661,7 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" +msgid "Please set an Address on the Company '{0}'" msgstr "" #: erpnext/stock/services/base_stock_gl_composer.py:194 @@ -38673,24 +38680,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38722,11 +38726,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38734,7 +38738,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38789,7 +38793,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Konfigurer og aktiver en gruppekonto med kontotype - {0} for selskapet {1}" @@ -38797,7 +38801,7 @@ msgstr "Konfigurer og aktiver en gruppekonto med kontotype - {0} for selskapet { msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38807,8 +38811,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38816,11 +38820,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38828,6 +38832,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38991,7 +39003,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39016,7 +39028,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39059,7 +39071,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -39068,7 +39080,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39261,6 +39273,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39350,7 +39366,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39492,7 +39508,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39613,7 +39629,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39724,7 +39740,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39932,7 +39948,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40114,7 +40130,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40240,7 +40256,7 @@ msgstr "Buntartikkel" msgid "Product Bundle Balance" msgstr "Saldo for buntartikkel" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40265,7 +40281,7 @@ msgstr "Hjelp med buntartikler" msgid "Product Bundle Item" msgstr "Artikkel i buntartikkel" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40468,7 +40484,7 @@ msgstr "" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "" @@ -40497,6 +40513,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "Resultatregnskap" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40505,8 +40525,8 @@ msgstr "Resultatregnskap" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40579,7 +40599,7 @@ msgstr "Status for prosjektet" msgid "Project Summary" msgstr "Prosjektsammendrag" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Prosjektsammendrag for {0}" @@ -40659,7 +40679,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40710,7 +40730,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40856,7 +40876,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40889,9 +40909,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41119,8 +41139,8 @@ msgstr "Trender for innkjøpsfakturaer" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41161,7 +41181,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41185,11 +41205,11 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41204,7 +41224,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "Analyse av innkjøpsordre" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41253,7 +41273,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41313,7 +41333,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41403,7 +41423,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41423,7 +41443,7 @@ msgid "Purchase Receipt Trends " msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41651,7 +41671,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41670,7 +41690,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41735,7 +41755,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41772,7 +41792,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41867,7 +41887,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Antall å bygge" @@ -42053,7 +42073,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42130,7 +42150,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42213,7 +42233,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42257,12 +42277,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42413,7 +42433,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42441,11 +42461,11 @@ msgstr "" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42453,6 +42473,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42478,7 +42502,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42718,7 +42742,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42902,7 +42926,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43221,7 +43245,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43463,8 +43487,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43640,6 +43664,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43690,7 +43718,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43770,7 +43798,7 @@ msgstr "Referanse #" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -44062,7 +44090,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44169,7 +44197,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44208,7 +44236,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44359,7 +44387,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44442,7 +44470,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44488,6 +44516,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44572,7 +44609,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44688,11 +44725,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44871,6 +44908,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44909,7 +44950,7 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." msgstr "" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material @@ -44954,7 +44995,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44970,13 +45011,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45470,6 +45511,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45894,11 +45939,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Rad # {0}: Vennligst legg til serie-/partinummer-kombinasjon for vare {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45982,23 +46027,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -46074,13 +46119,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46092,7 +46140,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46100,12 +46148,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46117,7 +46165,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46125,6 +46173,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46137,11 +46189,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46164,8 +46223,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46177,7 +46236,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46189,6 +46248,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46217,16 +46280,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46242,12 +46305,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46258,15 +46325,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46278,24 +46345,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46311,6 +46402,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46330,7 +46425,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46353,7 +46448,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46361,17 +46456,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Rad #{0}: Dokumenttypen (DocType) referanse må være en av innkjøpsordre, Innkjøpsfaktura eller Journal Entry" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Rad #{0}: Dokumenttypen (DocType) referanse må være en av Salgsordre, Salgsfaktura, Journalregistrering eller Purring" @@ -46391,11 +46486,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46405,7 +46500,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46414,6 +46509,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46426,7 +46525,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46450,7 +46549,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46519,7 +46618,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46527,19 +46626,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46551,11 +46658,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46563,6 +46674,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46579,6 +46703,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46619,71 +46751,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46696,10 +46767,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46720,19 +46787,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46748,11 +46815,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46780,24 +46847,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46818,6 +46885,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46839,7 +46909,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46870,7 +46940,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46894,7 +46964,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46902,12 +46972,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46926,11 +46996,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46938,7 +47008,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46950,7 +47020,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46975,10 +47045,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -47031,15 +47101,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -47078,7 +47152,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47139,10 +47213,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47210,7 +47280,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47509,7 +47579,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47726,8 +47796,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48134,7 +48204,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48166,7 +48236,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48276,7 +48346,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48287,7 +48357,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48573,7 +48643,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48594,7 +48664,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48659,7 +48729,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48684,7 +48754,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48714,7 +48784,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48728,13 +48798,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48825,6 +48895,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48966,10 +49037,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49117,7 +49192,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Send SMS" @@ -49201,7 +49276,7 @@ msgstr "Serie-/partinummer-kombinasjon mangler" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49258,10 +49333,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49303,6 +49379,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "Serienummer allerede tildelt" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49320,7 +49400,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49365,7 +49445,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49377,7 +49457,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49397,21 +49477,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49426,25 +49503,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49464,7 +49542,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49565,6 +49643,10 @@ msgstr "Serie-/partinummer-kombinasjon {0} er ikke registrert" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49613,7 +49695,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49621,122 +49703,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Nummerserie" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49818,7 +49790,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49927,12 +49899,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49956,7 +49928,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49971,7 +49943,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50076,7 +50048,7 @@ msgstr "Angi navn på serie-/partinummer-kombinasjoner basert på nummerserie" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50094,7 +50066,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50120,7 +50092,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50218,15 +50190,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50294,7 +50266,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50722,6 +50694,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50924,7 +50897,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -51027,11 +51000,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -51092,7 +51065,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51148,7 +51121,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51216,7 +51189,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51253,8 +51226,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51384,7 +51357,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51397,7 +51370,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51450,7 +51428,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51515,10 +51493,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51548,7 +51542,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51577,10 +51571,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51661,7 +51659,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51789,7 +51787,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51871,16 +51869,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -52047,7 +52049,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52130,7 +52132,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52155,15 +52157,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52333,7 +52335,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52492,8 +52494,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52512,7 +52514,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52527,7 +52529,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52535,7 +52537,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52749,7 +52751,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52821,7 +52823,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52859,7 +52861,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52933,7 +52935,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52952,7 +52954,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52981,7 +52983,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53123,7 +53125,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53301,7 +53303,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53483,7 +53485,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53631,7 +53633,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53816,10 +53818,6 @@ msgstr "" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53905,7 +53903,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53966,7 +53964,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -54076,11 +54074,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54555,7 +54553,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54767,7 +54765,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -55074,12 +55072,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -55087,10 +55081,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55115,6 +55117,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55132,8 +55138,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55144,11 +55153,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Serie-/partinummer-kombinasjonen {0} er ikke gyldig for denne transaksjonen. 'Transaksjonstype' skal være 'Utgående' i stedet for 'Inngående' i serie-/partinummer-kombinasjonen {0}" @@ -55196,15 +55209,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55253,6 +55266,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55274,8 +55291,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55303,7 +55320,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55315,7 +55332,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55351,7 +55368,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55389,11 +55406,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55442,6 +55459,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55451,7 +55472,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55468,7 +55489,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55485,8 +55506,8 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "Serie-/partinummer-kombinasjonen {0} er ikke koblet til {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55504,11 +55525,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55530,16 +55551,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55578,7 +55599,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55602,7 +55623,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55610,7 +55631,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55618,6 +55639,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55626,7 +55651,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55638,7 +55663,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55655,6 +55680,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55671,10 +55700,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55703,21 +55728,21 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Det oppsto en feil under oppretting av bankkontoen under oppkobling til Plaid." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "Det oppstod en feil ved synkronisering av transaksjoner." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Det oppsto en feil under oppdatering av bankkonto {} under oppkobling til Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55767,15 +55792,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55797,7 +55826,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55815,7 +55844,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "" @@ -55957,7 +55986,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -56021,7 +56050,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -56048,10 +56077,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56109,7 +56138,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56238,6 +56267,12 @@ msgstr "" msgid "Timeline" msgstr "Tidslinje" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56524,7 +56559,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56555,15 +56590,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56580,7 +56615,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56592,7 +56627,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56605,8 +56640,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56626,7 +56661,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56643,10 +56678,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56725,8 +56762,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56768,6 +56805,22 @@ msgstr "" msgid "Total Advance" msgstr "" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56815,11 +56868,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -57001,7 +57054,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -57010,11 +57063,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "" @@ -57052,11 +57105,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "" @@ -57099,7 +57152,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57414,7 +57467,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57423,7 +57476,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57502,7 +57559,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57520,7 +57577,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57538,8 +57595,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57628,27 +57685,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57701,11 +57742,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58095,6 +58136,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58279,7 +58324,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58301,7 +58346,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58331,7 +58376,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58395,7 +58440,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58469,7 +58514,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58482,10 +58527,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58510,7 +58551,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58522,8 +58563,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58573,7 +58616,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58596,7 +58639,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58799,7 +58842,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58812,7 +58855,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58956,7 +58999,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59020,7 +59063,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59248,7 +59291,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59337,6 +59380,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59349,6 +59396,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59357,10 +59408,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59653,15 +59700,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59669,7 +59716,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59679,7 +59726,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "Verdisatsen for objekt levert fra kunde er satt til null." @@ -59692,13 +59739,13 @@ msgstr "Verdisatsen for objekt levert fra kunde er satt til null." msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59749,12 +59796,12 @@ msgstr "" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59763,19 +59810,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60251,7 +60298,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60279,7 +60326,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60291,7 +60338,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60323,7 +60370,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60530,7 +60577,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60548,16 +60595,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60678,7 +60725,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60698,7 +60745,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60852,10 +60899,6 @@ msgstr "Nettstedets artikkelgruppe" msgid "Website Specifications" msgstr "Spesifikasjoner for nettsted" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61001,7 +61044,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61177,17 +61220,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61226,7 +61269,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61267,20 +61310,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61301,7 +61344,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61326,7 +61369,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61379,7 +61422,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61611,14 +61654,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61633,8 +61668,8 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Du har ikke tillatelse til å oppdatere i henhold til betingelsene angitt i {} arbeidsflyt." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61653,7 +61688,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61664,19 +61699,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61698,7 +61729,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61717,14 +61748,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61733,16 +61756,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61754,15 +61777,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61770,7 +61801,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61778,7 +61809,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61793,6 +61824,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61803,7 +61838,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61830,11 +61865,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61851,7 +61886,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61866,19 +61901,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61930,6 +61965,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61960,7 +61999,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61980,7 +62019,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61996,10 +62035,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62054,8 +62089,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62135,14 +62170,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62156,7 +62187,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62232,8 +62263,8 @@ msgstr "" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62296,10 +62327,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62312,7 +62339,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62332,7 +62359,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62340,11 +62367,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62426,10 +62448,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62445,7 +62475,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62487,7 +62517,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62495,6 +62525,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62503,7 +62537,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62517,7 +62555,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62525,7 +62563,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62538,11 +62576,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62550,7 +62588,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62566,7 +62604,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62582,16 +62620,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62642,7 +62680,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62655,7 +62693,7 @@ msgstr "{0} til {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62671,16 +62709,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62688,7 +62726,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62696,7 +62734,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62730,7 +62768,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62764,12 +62802,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62801,6 +62848,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62906,27 +62957,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62942,7 +62989,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62954,7 +63001,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} er kansellert eller stengt." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62966,32 +63013,7 @@ msgstr "" msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/nl.po b/erpnext/locale/nl.po index bec92b699d8..5c81d3960ac 100644 --- a/erpnext/locale/nl.po +++ b/erpnext/locale/nl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: nl_NL\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "“Is Vast Activa” kan niet uitgevinkt worden, omdat er een activa-rec msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" voor \"SN-01\" tot \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Op voorraad" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Vereiste artikelen" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "\"Meerdere verkooporders tegen een inkooporder van een klant toestaan" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Gebaseerd op' en 'Groepeer per' kunnen niet hetzelfde zijn" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Vanaf Datum' moet na 'Tot Datum' zijn" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Heeft serienummer' kan niet 'ja' zijn voor niet-voorraadartikel" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "'Inspectie vereist vóór levering' is uitgeschakeld voor het item {0}, het is niet nodig om de kwaliteitsinspectie aan te maken" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "'Inspectie vereist vóór levering' is uitgeschakeld voor het item {0}, het is niet nodig om de kwaliteitsinspectie aan te maken" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Opening'" @@ -326,13 +317,13 @@ msgstr "'Opening'" msgid "'To Date' is required" msgstr "'Tot datum' is vereist" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "Het \"Tot pakketnummer\" kan niet kleiner zijn dan het \"Van pakketnummer\"." #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Bijwerken voorraad' kan niet worden aangevinkt omdat items niet worden geleverd via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90 en meer" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "Kan geen asset aanmaken.

                    Je probeert {0} asset(s) aan te maken vanuit {2} {3}.
                    Er zijn echter slechts {1} item(s) aangeschaft en {4} asset(s) bestaan al voor {5}." @@ -826,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Betalingsdocument vereist voor rij(en): {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Kan niet te veel in rekening gebracht worden voor de volgende artikelen:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    De volgende {0}behoort niet tot bedrijf {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1055,9 +1046,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Een Klantgroep met dezelfde naam bestaat. Gelieve de naam van de Klant of de Klantgroep wijzigen" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1067,9 +1058,9 @@ msgstr "Een vakantielijst kan worden toegevoegd om deze dagen uit te sluiten voo msgid "A Lead requires either a person's name or an organization's name" msgstr "Een lead vereist de naam van een persoon of de naam van een organisatie" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Een pakbon kan alleen worden aangemaakt voor een conceptleveringsbon." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1085,7 +1076,7 @@ msgstr "Een prijslijst is een verzameling van artikelprijzen, zowel voor verkoop msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Een product of dienst dat wordt gekocht, verkocht of op voorraad gehouden." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Er wordt een reconciliatietaak {0} uitgevoerd voor dezelfde filters. Reconciliatie is nu niet mogelijk." @@ -1118,7 +1109,7 @@ msgstr "Een chauffeur moet klaarstaan om in te dienen." msgid "A logical Warehouse against which stock entries are made." msgstr "Een logisch magazijn waartegen voorraadgegevens worden geregistreerd." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "Er is een naamgevingsconflict opgetreden tijdens het aanmaken van serienummers. Wijzig de naamgevingsreeks voor het item {0}." @@ -1294,7 +1285,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Geaccepteerde hoeveelheid in voorraad UOM" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Geaccepteerd Aantal" @@ -1325,12 +1316,16 @@ msgstr "Toegangssleutel" msgid "Access Key is required for Service Provider: {0}" msgstr "Toegangssleutel vereist voor serviceprovider: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "Volgens CEFACT/ICG/2010/IC013 of CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "Volgens de stuklijst {0}ontbreekt het artikel '{1}' in de voorraadadministratie." @@ -1583,7 +1578,7 @@ msgstr "Account is verplicht om betalingsinvoer te krijgen" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Account niet gevonden" @@ -1713,11 +1708,11 @@ msgstr "Account: {0} is hoofdletter onderhanden werk en kan niet worden b msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Account: {0} kan alleen worden bijgewerkt via Voorraad Transacties" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Account: {0} is niet toegestaan onder Betaling invoeren" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Account: {0} met valuta: {1} kan niet worden geselecteerd" @@ -1996,8 +1991,8 @@ msgstr "Filter voor boekhoudkundige dimensies" msgid "Accounting Entries" msgstr "Boekhoudkundige boekingen" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Boekhoudingsinvoer voor activa" @@ -2022,8 +2017,8 @@ msgstr "Boekhoudkundige invoer voor service" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2071,7 +2066,11 @@ msgstr "" msgid "Accounting Period" msgstr "Financiele periode" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Boekhoudperiode overlapt met {0}" @@ -2269,8 +2268,8 @@ msgstr "Geaccumuleerde afschrijvingsrekening" msgid "Accumulated Depreciation Amount" msgstr "Cumulatieve afschrijvingen Bedrag" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Cumulatieve afschrijvingen per" @@ -2498,7 +2497,7 @@ msgstr "Werkelijke balanshoeveelheid" msgid "Actual Batch Quantity" msgstr "Werkelijke batchhoeveelheid" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Werkelijke kosten" @@ -2508,7 +2507,7 @@ msgstr "Werkelijke kosten" msgid "Actual Date" msgstr "Werkelijke datum" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2658,8 +2657,8 @@ msgstr "Werkelijke tijd in uren (via urenregistratie)" msgid "Actual qty in stock" msgstr "Werkelijke hoeveelheid op voorraad" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Werkelijke soort belasting kan niet worden opgenomen in post tarief in rij {0}" @@ -2824,10 +2823,6 @@ msgstr "Voeg serie-/batchnummer toe" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Voeg serie-/batchnummer toe (afgekeurde hoeveelheid)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Voorraad toevoegen" @@ -2926,13 +2921,13 @@ msgstr "Toegevoegd door" msgid "Added On" msgstr "Toegevoegd op" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Leveranciersrol toegevoegd aan gebruiker {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Rol {1} toegevoegd aan gebruiker {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3074,7 +3069,7 @@ msgstr "Extra kortingsbedrag" msgid "Additional Discount Amount (Company Currency)" msgstr "Extra kortingsbedrag (valuta van het bedrijf)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "Het extra kortingsbedrag ({discount_amount}) mag het totaalbedrag vóór die korting ({total_before_discount} ) niet overschrijden." @@ -3193,16 +3188,8 @@ msgid "Additional Transferred Qty" msgstr "Extra overgedragen hoeveelheid" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "Extra overgedragen hoeveelheid {0}\n" -"\t\t\t\t\tmag niet groter zijn dan {1}.\n" -"\t\t\t\t\tOm dit te corrigeren, verhoogt u de percentagewaarde\n" -"\t\t\t\t\tvan het veld 'Extra grondstoffen overdragen naar WIP'\n" -"\t\t\t\t\tin de productie-instellingen." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3466,7 +3453,7 @@ msgstr "Voorschotvouchertype" msgid "Advance amount" msgstr "Voorschotbedrag" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Advance bedrag kan niet groter zijn dan {0} {1}" @@ -3535,7 +3522,7 @@ msgstr "Tegen" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Tegen Rekening" @@ -3655,7 +3642,7 @@ msgstr "Tegen leveranciersfactuur {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Tegen voucher" @@ -3679,7 +3666,7 @@ msgstr "Tegen vouchernummer" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Tegen Voucher Type" @@ -3793,6 +3780,13 @@ msgstr "Luchtvaartmaatschappij" msgid "Algorithm" msgstr "Algoritme" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3969,7 +3963,7 @@ msgstr "" msgid "All items are already requested" msgstr "Alle artikelen zijn reeds aangevraagd." -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Alle items zijn al gefactureerd / geretourneerd" @@ -3981,7 +3975,7 @@ msgstr "Alle artikelen zijn reeds ontvangen." msgid "All items have already been transferred for this Work Order." msgstr "Alle items zijn al overgedragen voor deze werkbon." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Alle items in dit document hebben reeds een gekoppelde kwaliteitsinspectie." @@ -4000,16 +3994,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Alle opmerkingen en e-mails worden gekopieerd van het ene document naar een nieuw aangemaakt document (Lead -> Opportunity -> Quotation) binnen het CRM-systeem." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Alle artikelen zijn al geretourneerd." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Alle benodigde artikelen (grondstoffen) worden uit de stuklijst gehaald en in deze tabel ingevuld. Hier kunt u ook het bronmagazijn voor elk artikel wijzigen. Tijdens de productie kunt u de overgedragen grondstoffen vanuit deze tabel volgen." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Al deze items zijn al gefactureerd / geretourneerd" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4032,7 +4026,7 @@ msgstr "Voorschotten automatisch toewijzen (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Toewijzen Betaling Bedrag" @@ -4042,7 +4036,7 @@ msgstr "Toewijzen Betaling Bedrag" msgid "Allocate Payment Based On Payment Terms" msgstr "Betaling toewijzen op basis van betalingsvoorwaarden" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Betalingsverzoek toewijzen" @@ -4072,7 +4066,7 @@ msgstr "Toegewezen" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4155,8 +4149,8 @@ msgid "Allow Alternative Item" msgstr "Alternatief item toestaan" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Alternatief item toestaan moet aangevinkt zijn bij Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4263,7 +4257,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Attribuutwaarde hernoemen toestaan" @@ -4544,14 +4538,16 @@ msgstr "Toegestane artikelen" msgid "Allowed To Transact With" msgstr "Toegestaan om mee te handelen" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "De toegestane primaire rollen zijn 'Klant' en 'Leverancier'. Selecteer slechts één van deze rollen." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4584,10 +4580,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "Hiermee kunnen gebruikers offertes van leveranciers indienen met een hoeveelheid van nul. Handig wanneer de tarieven vaststaan, maar de hoeveelheden niet. Bijvoorbeeld bij raamcontracten." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4595,10 +4591,6 @@ msgstr "" msgid "Already Picked" msgstr "Reeds gekozen" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Er bestaat al record voor het item {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Al ingesteld standaard in pos profiel {0} voor gebruiker {1}, vriendelijk uitgeschakeld standaard" @@ -4614,12 +4606,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Alternatief item" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4824,7 +4816,7 @@ msgstr "Vraag het altijd" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5050,12 +5042,12 @@ msgstr "Een artikelgroep is een manier om artikelen te classificeren op basis va msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Er is een fout opgetreden tijdens het opnieuw plaatsen van de artikelwaardering via {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Er is een fout opgetreden tijdens het updateproces" @@ -5269,7 +5261,7 @@ msgstr "Toegepaste couponcode" msgid "Applied on each reading." msgstr "Toegepast bij elke meting." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Toegepaste opbergregels." @@ -5446,10 +5438,6 @@ msgstr "Afspraak Boeking Slots" msgid "Appointment Confirmation" msgstr "Afspraak bevestiging" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Afspraak succesvol aangemaakt" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5475,6 +5463,10 @@ msgstr "Het plannen van afspraken is voor deze site uitgeschakeld." msgid "Appointment With" msgstr "Afspraak met" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Er is een afspraak aangemaakt, maar er is geen lead gevonden. Controleer uw e-mail voor bevestiging." @@ -5516,6 +5508,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "Weet je zeker dat je alle demo-gegevens wilt wissen?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "Weet je zeker dat je dit item wilt verwijderen?" @@ -5598,18 +5599,18 @@ msgstr "Aangezien het veld {0} is ingeschakeld, moet de waarde van het veld {1} msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Omdat er al transacties zijn ingediend voor item {0}, kunt u de waarde van {1} niet wijzigen." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "Omdat er gereserveerde voorraad is, kunt u {0} niet uitschakelen." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Omdat er voldoende subassemblage-onderdelen zijn, is er geen werkorder nodig voor magazijn {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Omdat er voldoende grondstoffen beschikbaar zijn, is geen materiaal verzoek nodig voor magazijn {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5648,7 +5649,7 @@ msgstr "Montageonderdelen" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5720,7 +5721,7 @@ msgstr "Activa-kapitalisatie Voorraadartikel" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5886,7 +5887,7 @@ msgstr "Item itembeweging" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6018,7 +6019,7 @@ msgstr "Waardeanalyse van activa" msgid "Asset cancelled" msgstr "Activa geannuleerd" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Asset kan niet worden geannuleerd, want het is al {0}" @@ -6034,7 +6035,7 @@ msgstr "Activa gekapitaliseerd nadat de activakapitalisatie {0} is ingediend" msgid "Asset created" msgstr "Aangemaakt object" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Asset aangemaakt na splitsing van Asset {0}" @@ -6087,7 +6088,7 @@ msgstr "Ingediende activa" msgid "Asset transferred to Location {0}" msgstr "Activa overgedragen naar locatie {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Asset bijgewerkt nadat deze is opgesplitst in Asset {0}" @@ -6165,7 +6166,7 @@ msgstr "De waarde van het activum is aangepast na indiening van de aanpassing va #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6186,7 +6187,7 @@ msgstr "Assets zijn niet aangemaakt voor {item_code}. U moet de asset handmatig msgid "Assets {assets_link} created for {item_code}" msgstr "Activa {assets_link} gemaakt voor {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Wijs een taak toe aan een medewerker." @@ -6196,6 +6197,11 @@ msgstr "Wijs een taak toe aan een medewerker." msgid "Assign to Name" msgstr "Wijs toe aan Naam" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6214,19 +6220,23 @@ msgstr "Bij rij #{0}: De verzamelde hoeveelheid {1} van artikel {2} is groter da msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "Bij rij #{0}: De verzamelde hoeveelheid {1} voor het artikel {2} is groter dan de beschikbare voorraad {3} in het magazijn {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "Bij rij {0}: In seriële en batchbundel {1} moet de documentstatus 1 zijn en niet 0." +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "Er is minimaal één rekening met wisselkoerswinst of -verlies vereist." -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "Er moet ten minste één actief worden geselecteerd." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "Er moet ten minste één factuur worden geselecteerd." @@ -6247,6 +6257,10 @@ msgstr "Ten minste een van de toepasselijke modules moet worden geselecteerd" msgid "At least one of the Selling or Buying must be selected" msgstr "Er moet ten minste één van de opties 'Verkopen' of 'Kopen' geselecteerd zijn." +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "Er moet ten minste één grondstofartikel aanwezig zijn in de voorraadpost voor het type {0}" @@ -6267,7 +6281,7 @@ msgstr "Op rij # {0}: de reeks-ID {1} mag niet kleiner zijn dan de vorige rij-re msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "Op rij {0}: Batchnummer is verplicht voor item {1}" @@ -6275,26 +6289,22 @@ msgstr "Op rij {0}: Batchnummer is verplicht voor item {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "Bij rij {0}: Het bovenliggende rijnummer kan niet worden ingesteld voor item {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "Bij rij {0}: Aantal is verplicht voor de batch {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "Op rij {0}: Serienummer is verplicht voor item {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "Op rij {0}: Serienummer- en batchbundel {1} is al aangemaakt. Verwijder de waarden uit de velden serienummer of batchnummer." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "Bij rij {0}: stel het bovenliggende rijnummer in voor item {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "Ten minste één grondstof voor het eindproduct {0} moet door de klant worden aangeleverd." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6506,7 +6516,7 @@ msgstr "Automatische afstemming van betalingen is uitgeschakeld. Schakel deze in msgid "Auto Repeat Detail" msgstr "Automatisch herhalen detail" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "Fout in automatische belastinginstellingen" @@ -6567,7 +6577,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Automatisch herhaalde document bijgewerkt" @@ -6692,7 +6702,7 @@ msgstr "Beschikbaar voor gebruik datum" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6788,7 +6798,7 @@ msgstr "Beschikbaar voor gebruik datum is vereist" msgid "Available {0}" msgstr "Beschikbaar {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Beschikbaar voor gebruik De datum moet na de aankoopdatum zijn" @@ -6906,7 +6916,7 @@ msgstr "BIN Aantal" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6925,8 +6935,8 @@ msgid "BOM 1" msgstr "BOM 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "BOM 1 {0} en BOM 2 {1} mogen niet hetzelfde zijn" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6940,7 +6950,7 @@ msgstr "BOM 2" msgid "BOM Comparison Tool" msgstr "BOM-vergelijkingstool" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7071,7 +7081,7 @@ msgstr "Stuklijst Operatie" msgid "BOM Operations Time" msgstr "BOM Operations Tijd" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7092,7 +7102,7 @@ msgstr "BOM Zoeken" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7144,10 +7154,6 @@ msgstr "Logboek van de BOM-updatetool met bijgehouden taakstatus" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "De BOM-update is al bezig. Wacht alstublieft tot {0} is voltooid." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "De BOM-update staat in de wachtrij en kan een paar minuten duren. Controleer {0} voor de voortgang." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7186,15 +7192,19 @@ msgstr "BOM-recursie: {0} kan geen kind van {1} zijn" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "BOM-recursie: {1} kan geen ouder of kind zijn van {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "Stuklijst {0} behoort niet tot Artikel {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "Stuklijst {0} moet actief zijn" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "Stuklijst {0} moet worden ingediend" @@ -7275,7 +7285,7 @@ msgstr "Balans" msgid "Balance (Dr - Cr)" msgstr "Evenwicht (Dr - Cr)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Saldo ({0})" @@ -7345,6 +7355,10 @@ msgstr "Eindbalans" msgid "Balance Sheet Summary" msgstr "Overzicht van de balans" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Saldo voorraadhoeveelheid" @@ -7405,7 +7419,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7505,8 +7519,8 @@ msgid "Bank Account Type" msgstr "Type bankrekening" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "Bankrekening {} in banktransactie {} komt niet overeen met bankrekening {}." +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7750,7 +7764,7 @@ msgstr "Banktransactie {0} bijgewerkt" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Bankrekening kan niet worden genoemd als {0}" @@ -7762,7 +7776,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Bankrekening {0} bestaat al en kon niet opnieuw worden aangemaakt" @@ -7774,7 +7788,7 @@ msgstr "Bankrekeningen toegevoegd" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Fout bij maken van banktransactie" @@ -8050,8 +8064,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8082,15 +8096,15 @@ msgstr "" msgid "Batch No" msgstr "Partij nr." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Batchnummer is verplicht" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Batchnummer {0} bestaat niet" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Batchnummer {0} is gekoppeld aan artikel {1} met serienummer. Scan in plaats daarvan het serienummer." @@ -8098,6 +8112,10 @@ msgstr "Batchnummer {0} is gekoppeld aan artikel {1} met serienummer. Scan in pl msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Batchnummer {0} is niet aanwezig in het originele {1} {2}, daarom kunt u het niet retourneren tegen de {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8163,9 +8181,9 @@ msgstr "Batch UOM" msgid "Batch and Serial No" msgstr "Batch- en serienummer" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Er is geen batch aangemaakt voor item {} omdat er geen batchreeks bestaat." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8277,7 +8295,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8752,8 +8770,8 @@ msgid "Booked Fixed Asset" msgstr "Geboekte vaste activa" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "De boekingen zijn gesloten tot de periode die eindigt op {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8980,8 +8998,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Budget kan niet tegen Group rekening worden toegewezen {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Budget kan niet worden toegewezen tegen {0}, want het is geen baten of lasten rekening" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8998,7 +9016,7 @@ msgstr "Buffertijd" msgid "Buffered Cursor" msgstr "Gebufferde cursor" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Alles bouwen?" @@ -9006,7 +9024,7 @@ msgstr "Alles bouwen?" msgid "Build Tree" msgstr "Bouw een boom" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Bouwbare hoeveelheid" @@ -9333,6 +9351,10 @@ msgstr "Berekende bankafschrift balans" msgid "Calculated Discount Mismatch" msgstr "Berekende kortingsafwijking" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9504,7 +9526,7 @@ msgstr "Campagne {0} niet gevonden" msgid "Can be approved by {0}" msgstr "Kan door {0} worden goedgekeurd" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "Kan de werkorder niet sluiten. De {0} taakkaarten bevinden zich namelijk in de status 'In uitvoering'." @@ -9533,21 +9555,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Kan niet filteren op basis van vouchernummer, indien gegroepeerd per voucher" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Kan alleen betaling uitvoeren voor ongefactureerde {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Kan de rij enkel verwijzen bij het aanrekeningstype 'Hoeveelheid vorige rij' of 'Totaal vorige rij'" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "De waarderingsmethode kan niet worden gewijzigd, omdat er transacties zijn met artikelen waarvoor geen eigen waarderingsmethode bestaat." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Annuleer materialen bezoek {0} voordat je deze garantieclaim annuleert" @@ -9576,7 +9601,7 @@ msgstr "" msgid "Cancelation Date" msgstr "Annuleringsdatum" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9584,11 +9609,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "Kan geen kassier toewijzen" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Kan aankomsttijd niet berekenen omdat het adres van de bestuurder ontbreekt." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "Kan de instellingen van het voorraadaccount niet wijzigen" @@ -9603,10 +9623,6 @@ msgstr "Kan geen retourzending aanmaken" msgid "Cannot Merge" msgstr "Samenvoegen is niet mogelijk" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Kan route niet optimaliseren omdat het adres van de bestuurder ontbreekt." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Kan werknemer niet ontlasten" @@ -9631,6 +9647,11 @@ msgstr "Het is niet mogelijk om TDS (Tax Deducted at Source) op meerdere partije msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Kan geen vast activumartikel zijn omdat het grootboek Voorraad wordt gecreëerd." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "Het afschrijvingsschema voor activa {0} kan niet worden geannuleerd omdat er een conceptboekingspost {1} is." @@ -9640,14 +9661,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "Kan de POS-afsluiting niet annuleren." #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "Kan de voorraadreservering {0}niet annuleren, omdat deze al in de werkorder {1}is gebruikt. Annuleer eerst de werkorder of deblokkeer de voorraad." +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "Annuleren is niet mogelijk omdat de verwerking van geannuleerde documenten nog in behandeling is." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Kan niet annuleren omdat ingediende Voorraad Invoer {0} bestaat" @@ -9655,7 +9676,7 @@ msgstr "Kan niet annuleren omdat ingediende Voorraad Invoer {0} bestaat" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "De transactie kan niet worden geannuleerd. De herboeking van de artikelwaardering na indiening is nog niet voltooid." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "Deze productievoorraadboeking kan niet worden geannuleerd, omdat de geproduceerde hoeveelheid eindproduct niet kleiner mag zijn dan de geleverde hoeveelheid in de gekoppelde inkooporder voor uitbesteding." @@ -9667,7 +9688,7 @@ msgstr "Dit document kan niet worden geannuleerd omdat het is gekoppeld aan de i msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Dit document kan niet worden geannuleerd omdat het is gekoppeld aan het ingediende bestand {asset_link}. Annuleer het bestand om verder te gaan." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Kan transactie voor voltooide werkorder niet annuleren." @@ -9692,8 +9713,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Kan standaard valuta van het bedrijf niet veranderen want er zijn bestaande transacties. Transacties moeten worden geannuleerd om de standaard valuta te wijzigen." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "Kan taak {0} niet voltooien omdat de afhankelijke taak {1} niet is voltooid/geannuleerd." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9719,7 +9740,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "Het is niet mogelijk om voorraadreserveringen aan te maken voor inkoopbonnen met een toekomstige datum." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Er kan geen picklijst worden aangemaakt voor verkooporder {0} omdat er voorraad is gereserveerd. Deblokkeer de voorraad om een picklijst te kunnen aanmaken." @@ -9728,6 +9749,10 @@ msgstr "Er kan geen picklijst worden aangemaakt voor verkooporder {0} omdat er v msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Kan geen boekingen aanmaken voor uitgeschakelde accounts: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "Kan geen retourzending aanmaken voor geconsolideerde factuur {0}." @@ -9745,7 +9770,7 @@ msgstr "Kan niet als verloren instellen, omdat offerte is gemaakt." msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Kan niet aftrekken als categorie is voor ' Valuation ' of ' Valuation en Total '" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Kan de rij met wisselkoerswinst/verlies niet verwijderen." @@ -9758,7 +9783,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Een besteld artikel kan niet worden verwijderd." #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "Kan beveiligde kern DocType niet verwijderen: {0}" @@ -9790,7 +9815,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "Het is niet mogelijk om de voorraadadministratie per artikel in te schakelen, omdat er al voorraadboekingen voor het bedrijf {0} bestaan met een voorraadadministratie per magazijn. Annuleer eerst de voorraadtransacties en probeer het opnieuw." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9815,19 +9840,23 @@ msgstr "Kan item met deze streepjescode niet vinden" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "Er kan geen standaardmagazijn worden gevonden voor artikel {0}. Stel er een in in de artikelstamgegevens of in de voorraadinstellingen." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "Kan {0} '{1}' niet samenvoegen met '{2}' omdat beide bestaande boekhoudkundige posten in verschillende valuta's hebben voor bedrijf '{3}'." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "Kan niet meer artikelen {0} produceren dan de bestelhoeveelheid {1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "Kan geen extra items produceren voor {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "Kan niet meer dan {0} items produceren voor {1}" @@ -9839,12 +9868,16 @@ msgstr "Kan niet van klant ontvangen tegen een negatief openstaand saldo." msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "De hoeveelheid mag niet lager zijn dan de bestelde of gekochte hoeveelheid." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Kan niet verwijzen rij getal groter dan of gelijk aan de huidige rijnummer voor dit type Charge" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "Kan geen linktoken ophalen voor update. Raadpleeg het foutenlogboek voor meer informatie." @@ -9853,19 +9886,23 @@ msgstr "Kan geen linktoken ophalen voor update. Raadpleeg het foutenlogboek voor msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Kan het linktoken niet ophalen. Raadpleeg het foutenlogboek voor meer informatie." -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Kan het type lading niet selecteren als 'On Vorige Row Bedrag ' of ' On Vorige Row Totaal ' voor de eerste rij" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Kan niet als verloren instellen, omdat er al een verkooporder is gemaakt." @@ -10292,9 +10329,9 @@ msgstr "Wijzig het rekeningtype in Te ontvangen of selecteer een andere rekening msgid "Change this date manually to setup the next synchronization start date" msgstr "Wijzig deze datum handmatig om de startdatum voor de volgende synchronisatie in te stellen." -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "De klantnaam is gewijzigd naar '{}' omdat '{}' al bestaat." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10320,8 +10357,8 @@ msgstr "Het wijzigen van de waarderingsmethode naar het voortschrijdend gemiddel msgid "Channel Partner" msgstr "Kanaalpartner" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "Kosten van het type 'Werkelijk' in rij {0} kunnen niet worden opgenomen in het artikeltarief of het betaalde bedrag." @@ -10515,7 +10552,7 @@ msgstr "Cheque breedte" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Cheque / Reference Data" @@ -10573,7 +10610,7 @@ msgstr "Kinddocumentnaam" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Referentie naar onderliggende rij" @@ -10583,8 +10620,8 @@ msgid "Child Table Not Allowed" msgstr "Kindertafel niet toegestaan" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Child Task bestaat voor deze taak. U kunt deze taak niet verwijderen." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10762,7 +10799,7 @@ msgstr "Lening afsluiten" msgid "Close Replied Opportunity After Days" msgstr "Sluit de mogelijkheid om na een paar dagen te reageren." -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Sluit de POS" @@ -10776,7 +10813,7 @@ msgstr "Gesloten document" msgid "Closed Documents" msgstr "Gesloten documenten" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Een afgesloten werkorder kan niet worden stopgezet of heropend." @@ -11006,9 +11043,9 @@ msgstr "Commissie" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11445,7 +11482,7 @@ msgstr "Bedrijven" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11515,7 +11552,7 @@ msgstr "Bedrijven" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11555,10 +11592,6 @@ msgstr "Bedrijf" msgid "Company Abbreviation" msgstr "Bedrijf afkorting" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Bedrijfsbegeleiding mag niet meer dan 5 tekens bevatten" @@ -11723,7 +11756,7 @@ msgstr "Verzendadres van het bedrijf" msgid "Company Tax ID" msgstr "Bedrijfsbelastingnummer" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "Bedrijf en plaatsingsdatum zijn verplicht." @@ -11767,12 +11800,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "Bedrijfslinkveldnaam gebruikt voor filtering (optioneel - laat leeg om alle records te verwijderen)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Bedrijfsnaam niet hetzelfde" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "Bedrijf van item {0} en inkoopdocument {1} komen niet overeen." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11810,6 +11843,14 @@ msgstr "Bedrijf {0} heeft meerdere keren toegevoegd" msgid "Company {0} does not exist" msgstr "Company {0} bestaat niet" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Bedrijf {0} wordt meer dan eens toegevoegd" @@ -11818,14 +11859,6 @@ msgstr "Bedrijf {0} wordt meer dan eens toegevoegd" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "Bedrijf {} bestaat nog niet. Belastinginstellingen zijn afgebroken." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "Bedrijf {} komt niet overeen met het POS-profiel van bedrijf {}." - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11847,7 +11880,7 @@ msgstr "Naam van de concurrent" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Concurrenten" @@ -12291,8 +12324,8 @@ msgid "Consumed Qty" msgstr "Verbruikt aantal" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "De verbruikte hoeveelheid mag niet groter zijn dan de gereserveerde hoeveelheid voor artikel {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12607,7 +12640,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12907,7 +12940,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12932,7 +12965,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12990,7 +13023,7 @@ msgstr "Kostenplaatsnummer" msgid "Cost Center and Budgeting" msgstr "Kostenplaats en budgettering" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "Het kostenplaatsnummer voor artikelregels is bijgewerkt naar {0}" @@ -13002,7 +13035,7 @@ msgstr "Een kostenplaats is onderdeel van de kostenplaatstoewijzing en kan daaro msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Kostenplaats is vereist in regel {0} in Belastingen tabel voor type {1}" @@ -13024,12 +13057,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "Kostenplaats {0} kan niet worden gebruikt voor toewijzing, omdat deze al als hoofdkostenplaats in een ander toewijzingsrecord is opgenomen." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Kostenplaats {} behoort niet tot bedrijf {}." +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "Kostenplaats {} is een groepskostenplaats en groepskostenplaatsen kunnen niet in transacties worden gebruikt." +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13153,14 +13186,14 @@ msgid "Costing and Billing" msgstr "Kostenberekening en facturering" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "De velden Kosten en Facturering zijn bijgewerkt." +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Demo-gegevens konden niet worden verwijderd." -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Klant kan niet automatisch worden aangemaakt vanwege de volgende ontbrekende verplichte velden:" @@ -13172,7 +13205,7 @@ msgstr "Kan creditnota niet automatisch maken. Verwijder het vinkje bij 'Kre msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Het bedrijf dat de bankrekeningen bijwerkt, kon niet worden gevonden." @@ -13182,8 +13215,8 @@ msgstr "Kon geen geschikte shift vinden die overeenkomt met het verschil: {0}" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "Kon geen pad vinden voor " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13206,7 +13239,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Kan de criteria score functie voor {0} niet oplossen. Zorg ervoor dat de formule geldig is." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Kan de gewogen score functie niet oplossen. Zorg ervoor dat de formule geldig is." @@ -13436,10 +13469,6 @@ msgstr "Nieuwe klant aanmaken" msgid "Create New Lead" msgstr "Maak een nieuwe lead" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13458,7 +13487,7 @@ msgstr "" msgid "Create Opportunity" msgstr "Creëer kansen" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Maak een POS-openingsitem" @@ -13473,7 +13502,7 @@ msgstr "Maak betalingsinvoer" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "Maak een betalingsinvoer aan voor geconsolideerde POS-facturen." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13701,7 +13730,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "Maak een variant met de sjabloonafbeelding." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Maak een inkomende voorraadtransactie voor het artikel." @@ -13735,7 +13764,7 @@ msgstr "Maak {0} {1}?" msgid "Created By Migration" msgstr "Aangemaakt door migratie" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "Scorekaarten {0} aangemaakt voor {1} tussen:" @@ -13830,7 +13859,7 @@ msgstr "Gebruiker aanmaken..." msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "{} Creëren uit {} {}" @@ -13840,17 +13869,17 @@ msgstr "{} Creëren uit {} {}" msgid "Creation" msgstr "Schepping" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "Aanmaken van {1}(s) succesvol" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Aanmaken van {0} mislukt.\n" "\t\t\t\tControleer Logboek bulktransacties" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Aanmaken van {0} gedeeltelijk succesvol.\n" @@ -13885,11 +13914,11 @@ msgstr "Aanmaken van {0} gedeeltelijk succesvol.\n" msgid "Credit" msgstr "Krediet" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Krediet (transactie)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Krediet ({0})" @@ -13970,7 +13999,7 @@ msgstr "Studiedagen" msgid "Credit Limit" msgstr "Kredietlimiet" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Kredietlimiet overschreden" @@ -14050,16 +14079,16 @@ msgstr "Met dank aan" msgid "Credit in Company Currency" msgstr "Krediet in de valuta van het bedrijf" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Kredietlimiet is overschreden voor klant {0} ({1} / {2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Kredietlimiet is al gedefinieerd voor het bedrijf {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Kredietlimiet bereikt voor klant {0}" @@ -14118,12 +14147,12 @@ msgstr "Criteria instellen" msgid "Criteria Weight" msgstr "Criteria Gewicht" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "De weegfactoren van de criteria moeten samen 100% bedragen." -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Het Cron-interval moet tussen 1 en 59 minuten liggen." @@ -14246,7 +14275,7 @@ msgstr "Valuta- en prijslijst" msgid "Currency can not be changed after making entries using some other currency" msgstr "Valuta kan niet na het maken van data met behulp van een andere valuta worden veranderd" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "Valutafilters worden momenteel niet ondersteund in aangepaste financiële rapporten." @@ -14311,8 +14340,8 @@ msgid "Current BOM" msgstr "Huidige stuklijst" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "Huidige stuklijst en nieuwe stuklijst kunnen niet hetzelfde zijn" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14374,10 +14403,6 @@ msgstr "Huidige serie-/batchbundel" msgid "Current Serial No" msgstr "Huidig serienummer" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15208,7 +15233,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Dagelijkse projectsamenvatting voor {0}" @@ -15353,10 +15378,6 @@ msgstr "Te verwerken datums" msgid "Day Of Week" msgstr "Dag van de week" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15463,11 +15484,11 @@ msgstr "Dealer" msgid "Debit" msgstr "Debet" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Debet (Transactie)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Debet ({0})" @@ -15629,7 +15650,7 @@ msgstr "Deciliter" msgid "Decimeter" msgstr "Decimeter" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Verklaar verklaren" @@ -16310,8 +16331,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "Het verwijderen van {0} en alle bijbehorende Common Code-documenten..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Verwijdering bezig!" @@ -16405,7 +16426,7 @@ msgstr "Geleverde Artikelen nog te factureren" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16463,7 +16484,7 @@ msgstr "Levering" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16793,7 +16814,7 @@ msgstr "Afschrijvingskosten" msgid "Depreciation Amount" msgstr "afschrijvingen Bedrag" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Afschrijvingen bedrag gedurende de periode" @@ -16809,7 +16830,7 @@ msgstr "afschrijvingen Date" msgid "Depreciation Details" msgstr "Afschrijvingsdetails" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Afschrijvingen Uitgeschakeld als gevolg van verkoop van activa" @@ -16879,7 +16900,7 @@ msgstr "De datum waarop de afschrijvingen worden geboekt, mag niet vóór de dat msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Afschrijvingsregel {0}: De boekingsdatum van de afschrijving mag niet vóór de datum van beschikbaarheid voor gebruik liggen." -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Afschrijving Rij {0}: de verwachte waarde na nuttige levensduur moet groter zijn dan of gelijk zijn aan {1}" @@ -16908,11 +16929,11 @@ msgstr "afschrijving Schedule" msgid "Depreciation Schedule View" msgstr "Overzicht van het afschrijvingsschema" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "Afschrijvingen kunnen niet worden berekend voor volledig afgeschreven activa." -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "Afschrijvingen geëlimineerd door terugboeking" @@ -16940,7 +16961,7 @@ msgstr "Ontwerper" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Gedetailleerde reden" @@ -17043,12 +17064,12 @@ msgid "Difference Account in Items Table" msgstr "Verschilrekening in artikelentabel" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "De verschilrekening moet een activa-/passivarekening zijn (tijdelijke opening), aangezien deze voorraadboeking een openingsboeking is." +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Verschil moet Account een type Asset / Liability rekening zijn, aangezien dit Stock Verzoening is een opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17110,7 +17131,7 @@ msgstr "Verschilwaarde" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "Voor elke rij kunnen verschillende 'Bronmagazijn' en 'Doelmagazijn' worden ingesteld." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Verschillende eenheden voor artikelen zal leiden tot een onjuiste (Totaal) Netto gewicht. Zorg ervoor dat Netto gewicht van elk artikel in dezelfde eenheid is." @@ -17283,7 +17304,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "Uitgeschakeld magazijn {0} kan niet voor deze transactie worden gebruikt." @@ -17292,18 +17313,18 @@ msgstr "Uitgeschakeld magazijn {0} kan niet voor deze transactie worden gebruikt msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Prijsregels zijn uitgeschakeld omdat dit {} een interne overdracht is." +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "Prijzen inclusief belasting voor gehandicapten, aangezien dit {} een interne overdracht is." +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17552,9 +17573,9 @@ msgstr "De korting mag niet hoger zijn dan 100%." msgid "Discount must be less than 100" msgstr "Korting moet minder dan 100 zijn" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Korting van {} toegepast volgens de betalingsvoorwaarden." +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17918,11 +17939,11 @@ msgstr "Wilt u de aandeleninvoer indienen?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} bestaat niet" @@ -17960,22 +17981,6 @@ msgstr "Google Documenten zoeken" msgid "Document Count" msgstr "Aantal documenten" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18281,7 +18286,7 @@ msgstr "Dubbel project met taken" msgid "Duplicate Sales Invoices found" msgstr "Dubbele verkoopfacturen gevonden" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "Foutmelding dubbel serienummer" @@ -18435,7 +18440,7 @@ msgstr "Bewerkingscapaciteit" msgid "Edit Cart" msgstr "Winkelwagen bewerken" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Bewerken niet toegestaan" @@ -18659,8 +18664,8 @@ msgid "Email verification failed." msgstr "E-mailverificatie mislukt." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "E-mails in de wachtrij" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18847,7 +18852,7 @@ msgstr "werknemers" msgid "Empty" msgstr "Leeg" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "Leegmaken om te verwijderen. Lijst met te verwijderen objecten" @@ -18856,7 +18861,7 @@ msgstr "Leegmaken om te verwijderen. Lijst met te verwijderen objecten" msgid "Ems(Pica)" msgstr "Ems(Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18935,6 +18940,12 @@ msgstr "Schakel kortingen en marges in" msgid "Enable European Access" msgstr "Europese toegang mogelijk maken" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19206,7 +19217,7 @@ msgstr "Eindtijd" msgid "End Transit" msgstr "Einde Transit" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19329,7 +19340,7 @@ msgstr "Voer het telefoonnummer van de klant in" msgid "Enter date to scrap asset" msgstr "Voer de datum in waarop het activum moet worden afgeschreven" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Voer de details van de afschrijving in" @@ -19385,6 +19396,10 @@ msgstr "Voer de te produceren hoeveelheid in. Grondstoffen worden alleen opgehaa msgid "Enter {0} amount." msgstr "Voer {0} bedrag in." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Vermaak en vrije tijd" @@ -19420,7 +19435,7 @@ msgstr "Invoertype" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Vermogen" @@ -19444,7 +19459,7 @@ msgstr "Erg" msgid "Error Description" msgstr "Foutbeschrijving" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Er is een fout opgetreden" @@ -19476,21 +19491,21 @@ msgstr "Fout bij het boeken van afschrijvingsboekingen" msgid "Error while processing deferred accounting for {0}" msgstr "Fout tijdens het verwerken van uitgestelde boekhouding voor {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Fout bij het opnieuw boeken van de artikelwaardering" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Fout: Voor dit activum zijn al {0} afschrijvingsperioden geboekt.\n" -"\t\t\t\t\tDe startdatum van de afschrijving moet minimaal {1} perioden na de datum van ingebruikname liggen.\n" -"\t\t\t\t\tCorrigeer de datums dienovereenkomstig." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Fout: {0} is verplicht veld" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19504,7 +19519,7 @@ msgid "Estimated Arrival" msgstr "Geschatte aankomsttijd" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Geschatte kosten" @@ -19554,7 +19569,7 @@ msgstr "Voorbeeld: ABCD.#####. Als de serie is ingesteld en het batchnummer niet msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Voorbeeld: Serienummer {0} gereserveerd in {1}." @@ -19835,7 +19850,7 @@ msgstr "Verwachte sluitingsdatum" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19922,7 +19937,7 @@ msgstr "Verwachte waarde na gebruiksduur" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Kosten" @@ -20181,9 +20196,9 @@ msgstr "Fahrenheit" msgid "Failed Entries" msgstr "Mislukte inzendingen" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Het verifiëren van de API-sleutel is mislukt." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20380,7 +20395,7 @@ msgid "Fetching Sales Orders..." msgstr "Verkooporders ophalen..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Wisselkoersen ophalen ..." @@ -20418,15 +20433,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "De velden worden pas gekopieerd op het moment van aanmaken." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "Dit bestand hoort niet bij dit transactieverwijderingsrecord." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Bestand niet gevonden" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Bestand niet gevonden op de server" @@ -20435,7 +20450,7 @@ msgstr "Bestand niet gevonden op de server" msgid "File to Rename" msgstr "Te hernoemen bestand" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20594,11 +20609,11 @@ msgstr "Financieel rapport rij" msgid "Financial Report Template" msgstr "Sjabloon voor financieel rapport" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "Het sjabloon voor financiële rapporten {0} is uitgeschakeld." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "Sjabloon voor financieel rapport {0} niet gevonden" @@ -20667,7 +20682,7 @@ msgstr "Afgerond, goede BOM" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20680,7 +20695,7 @@ msgstr "Afgewerkt product" msgid "Finished Good Item Code" msgstr "Gereed artikelcode" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Aantal afgewerkte producten" @@ -20788,7 +20803,7 @@ msgstr "Magazijn voor afgewerkte goederen" msgid "Finished Goods based Operating Cost" msgstr "Bedrijfskosten gebaseerd op eindproducten" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Voltooide product {0} komt niet overeen met werkorder {1}" @@ -20887,10 +20902,6 @@ msgstr "Fiscaal regime is verplicht, stel vriendelijk het fiscale regime in het msgid "Fiscal Year" msgstr "Boekjaar" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20904,11 +20915,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Einddatum van het fiscale jaar moet één jaar na de begindatum van het fiscale jaar zijn" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Boekjaar {0} bestaat niet" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Boekjaar {0} bestaat niet" @@ -20941,7 +20949,7 @@ msgstr "Vast Activum" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21077,7 +21085,7 @@ msgstr "Voet/seconde" msgid "For" msgstr "Voor" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "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." @@ -21102,10 +21110,6 @@ msgstr "Voor het bedrijf" msgid "For Item" msgstr "Voor artikel" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "Voor artikel {0} kunnen niet meer dan {1} stuks worden ontvangen ten opzichte van de {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21172,12 +21176,12 @@ msgid "For Work Order" msgstr "Voor werkorder" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Voor een artikel {0} moet het aantal negatief zijn" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Voor een artikel {0} moet het aantal positief zijn" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21209,13 +21213,13 @@ msgstr "Voor elk besteed bedrag = 1 loyaliteitspunt" msgid "For individual supplier" msgstr "Voor individuele leverancier" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "Voor item {0}zijn alleen de assets {1} aangemaakt of gekoppeld aan {2}. Maak of koppel alstublieft nog {3} aan het betreffende document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "Voor item {0}moet het tarief een positief getal zijn. Om negatieve tarieven toe te staan, moet u {1} inschakelen in {2}." +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21227,9 +21231,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "Voor bewerking {0} op rij {1}, voeg grondstoffen toe of stel een stuklijst in." -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "Voor bewerking {0}: Hoeveelheid ({1}) mag niet groter zijn dan de in afwachting zijnde hoeveelheid ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21244,21 +21248,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "Voor geprojecteerde en voorspelde hoeveelheden houdt het systeem rekening met alle onderliggende magazijnen van het geselecteerde hoofdmagazijn." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "De hoeveelheid {0} mag niet groter zijn dan de toegestane hoeveelheid {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Ter referentie" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Voor rij {0} in {1}. Om {2} onder in punt tarief, rijen {3} moet ook opgenomen worden" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Voor rij {0}: Voer het geplande aantal in" @@ -21277,11 +21277,15 @@ msgstr "Voor de voorwaarde 'Regel toepassen op andere' is het veld {0} v msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Voor het gemak van de klant kunnen deze codes worden gebruikt in gedrukte documenten zoals facturen en leveringsbonnen." -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "Voor het artikel {0}moet de verbruikte hoeveelheid {1} zijn volgens de stuklijst {2}." -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "Om de nieuwe {0} te activeren, wilt u de huidige {1} wissen?" @@ -21369,6 +21373,21 @@ msgstr "Forumberichten" msgid "Forum URL" msgstr "Forum-URL" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "Frappe School" @@ -21912,7 +21931,7 @@ msgstr "GL-saldo" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "GL-invoer" @@ -22037,6 +22056,10 @@ msgstr "Grootboek" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22090,7 +22113,7 @@ msgstr "Genereer een boekingspost voor de afsluiting van de aandelenpositie" msgid "Generate To Delete List" msgstr "Lijst genereren om te verwijderen" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "Genereer eerst de lijst met te verwijderen items." @@ -22433,7 +22456,7 @@ msgstr "Goederen onderweg" msgid "Goods Transferred" msgstr "Goederen overgedragen" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Goederen zijn al ontvangen tegen de uitgaande invoer {0}" @@ -22616,7 +22639,7 @@ msgstr "" msgid "Grant Commission" msgstr "Subsidiecommissie" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Groter dan bedrag" @@ -22756,7 +22779,7 @@ msgstr "Groeperen op verkooporder" msgid "Group by Voucher" msgstr "Groep volgens Voucher" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Groep knooppunt magazijn is niet toegestaan om te kiezen voor transacties" @@ -23059,7 +23082,7 @@ msgstr "Hiermee kunt u het budget/de doelstelling over de maanden verdelen als u msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Hieronder vindt u de foutenlogboeken voor de eerdergenoemde mislukte afschrijvingsvermeldingen: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "Hieronder vindt u de mogelijkheden om verder te gaan:" @@ -23087,7 +23110,7 @@ msgstr "Hier worden je wekelijkse vrije dagen automatisch ingevuld op basis van msgid "Hertz" msgstr "Hertz" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Hoi," @@ -23123,7 +23146,7 @@ msgstr "Verberg indien nul" msgid "Hide Images" msgstr "Afbeeldingen verbergen" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "Recente bestellingen verbergen" @@ -23710,15 +23733,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "Als er geen belastingen zijn ingesteld en de sjabloon 'Belastingen en heffingen' is geselecteerd, past het systeem automatisch de belastingen uit de gekozen sjabloon toe." -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "Zo niet, dan kunt u deze inzending annuleren/verzenden." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23756,7 +23779,7 @@ msgstr "Als de stuklijst afvalmateriaal oplevert, moet het afvalmagazijn worden msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Als het account geblokkeerd is, hebben alleen gebruikers met beperkte toegang toegang." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Als het item een transactie uitvoert als een item met een nulwaarderingstarief in dit item, schakel dan 'Nulwaarderingspercentage toestaan' in de tabel {0} Item in." @@ -23857,7 +23880,7 @@ msgstr "Als u specifieke transacties met elkaar wilt afstemmen, selecteer dan de msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "Als je toch wilt doorgaan, schakel dan {0} in." @@ -24075,14 +24098,14 @@ msgstr "Facturen importeren" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "Import MT940 Formaat" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Import succesvol" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Importoverzicht" @@ -24559,7 +24582,7 @@ msgstr "Inclusief onderdelen voor subassemblages" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Inkomsten" @@ -24645,7 +24668,7 @@ msgstr "Inkomende oproep van {0}" msgid "Incompatible Setting Detected" msgstr "Incompatibele instelling gedetecteerd" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24654,7 +24677,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "Onjuist saldo na transactie" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Onjuiste batch verbruikt" @@ -24662,11 +24685,11 @@ msgstr "Onjuiste batch verbruikt" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Onjuiste check-in (groep) magazijn voor herbestelling" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Onjuiste componenthoeveelheid" @@ -24675,7 +24698,7 @@ msgstr "Onjuiste componenthoeveelheid" msgid "Incorrect Date" msgstr "Onjuiste datum" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Onjuiste factuur" @@ -24692,7 +24715,7 @@ msgstr "Onjuist referentiedocument (artikel op aankoopbon)" msgid "Incorrect Serial No Valuation" msgstr "Onjuiste waardering van het serienummer" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Onjuist serienummer verbruikt" @@ -24775,7 +24798,7 @@ msgstr "Toename" msgid "Increment cannot be 0" msgstr "Toename kan niet worden 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Toename voor Attribute {0} kan niet worden 0" @@ -24972,7 +24995,7 @@ msgid "Instruction" msgstr "Instructie" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Onvoldoende capaciteit" @@ -24988,12 +25011,12 @@ msgstr "Onvoldoende machtigingen" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "onvoldoende Stock" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Onvoldoende voorraad voor de batch" @@ -25123,7 +25146,7 @@ msgstr "Rentekosten" msgid "Interest Income" msgstr "Rente-inkomsten" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Rente en/of incassokosten" @@ -25148,7 +25171,7 @@ msgstr "Intern" msgid "Internal Customer Accounting" msgstr "Interne klantboekhouding" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Interne klant voor bedrijf {0} bestaat al" @@ -25174,7 +25197,7 @@ msgstr "Intern verkoopreferentie ontbreekt" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "Interne leverancier voor bedrijf {0} bestaat al" @@ -25195,7 +25218,7 @@ msgstr "Interne leverancier voor bedrijf {0} bestaat al" msgid "Internal Transfer" msgstr "Interne overplaatsing" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Interne overplaatsingsreferentie ontbreekt" @@ -25237,8 +25260,8 @@ msgstr "Het interval moet tussen de 1 en 59 minuten liggen." #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25257,7 +25280,7 @@ msgstr "Ongeldig toegewezen bedrag" msgid "Invalid Amount" msgstr "Ongeldig bedrag" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "ongeldige attribuut" @@ -25274,11 +25297,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Ongeldige streepjescode. Er is geen artikel aan deze streepjescode gekoppeld." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Ongeldige algemene bestelling voor de geselecteerde klant en artikel" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "Ongeldig CSV-formaat. Verwachte kolom: doctype_name" @@ -25298,13 +25321,13 @@ msgstr "Ongeldig bedrijf voor interbedrijfstransactie." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Ongeldig kostenplaats" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25325,11 +25348,11 @@ msgstr "" msgid "Invalid Discount" msgstr "Ongeldige korting" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "Ongeldig kortingsbedrag" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Ongeldig document" @@ -25359,7 +25382,7 @@ msgstr "Ongeldige groepering" msgid "Invalid Item" msgstr "Ongeldig item" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Ongeldige itemstandaardwaarden" @@ -25368,7 +25391,7 @@ msgstr "Ongeldige itemstandaardwaarden" msgid "Invalid Ledger Entries" msgstr "Ongeldige grootboekposten" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "Ongeldig netto aankoopbedrag" @@ -25407,7 +25430,7 @@ msgstr "Ongeldig afdrukformaat" msgid "Invalid Priority" msgstr "Ongeldige prioriteit" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Ongeldige configuratie voor procesverlies" @@ -25424,7 +25447,7 @@ msgstr "Ongeldige hoeveelheid" msgid "Invalid Quantity" msgstr "Ongeldige hoeveelheid" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "Ongeldige zoekopdracht" @@ -25436,8 +25459,8 @@ msgstr "Ongeldige retourwaarde" msgid "Invalid Sales Invoices" msgstr "Ongeldige verkoopfacturen" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Ongeldig rooster" @@ -25445,7 +25468,7 @@ msgstr "Ongeldig rooster" msgid "Invalid Selling Price" msgstr "Ongeldige verkoopprijs" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Ongeldige serie- en batchbundel" @@ -25462,7 +25485,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Ongeldige waarde" @@ -25472,14 +25495,14 @@ msgid "Invalid Warehouse" msgstr "Ongeldig magazijn" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "Ongeldig bedrag in de boekhoudkundige posten van {} {} voor rekening {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Ongeldige voorwaarde-uitdrukking" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "Ongeldige bestands-URL" @@ -25511,7 +25534,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "Ongeldige resultaatcode. Reactie:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Ongeldige zoekopdracht" @@ -26474,10 +26497,6 @@ msgstr "Uitgiftedatum" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Het kan enkele uren duren voordat de juiste voorraadwaarden zichtbaar zijn na het samenvoegen van artikelen." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Het is nodig om Item Details halen." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26486,7 +26505,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "Het is niet mogelijk om kosten gelijkmatig te verdelen als het totaalbedrag nul is. Stel 'Kosten verdelen op basis van' in op 'Hoeveelheid'." @@ -26535,12 +26554,12 @@ msgstr "Cursieve tekst voor subtotalen of aantekeningen" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26573,7 +26592,7 @@ msgstr "Cursieve tekst voor subtotalen of aantekeningen" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26647,7 +26666,7 @@ msgstr "Punt 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26808,7 +26827,7 @@ msgstr "Winkelwagen" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26840,7 +26859,7 @@ msgstr "Winkelwagen" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26849,12 +26868,12 @@ msgstr "Winkelwagen" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26950,7 +26969,7 @@ msgstr "Artikelcode kan niet worden gewijzigd voor serienummer" msgid "Item Code required at Row No {0}" msgstr "Artikelcode vereist bij rijnummer {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Artikelcode: {0} is niet beschikbaar onder magazijn {1}." @@ -27146,7 +27165,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Artikel groepstructuur" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Artikelgroep niet genoemd in artikelstam voor artikel {0}" @@ -27300,7 +27319,7 @@ msgstr "Fabrikant van het artikel" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27331,7 +27350,7 @@ msgstr "Fabrikant van het artikel" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27339,8 +27358,8 @@ msgstr "Fabrikant van het artikel" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27397,7 +27416,7 @@ msgstr "Fabrikant van het artikel" msgid "Item Name" msgstr "Itemnaam" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27444,8 +27463,8 @@ msgstr "Prijsinstellingen voor artikelen" msgid "Item Price Stock" msgstr "Artikel Prijs Voorraad" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27457,7 +27476,7 @@ msgstr "De artikelprijs verschijnt meerdere keren, afhankelijk van de prijslijst msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Item Prijs bijgewerkt voor {0} in prijslijst {1}" @@ -27502,7 +27521,7 @@ msgstr "Artikel opnieuw ordenen" msgid "Item Row" msgstr "Artikelrij" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Artikelrij {0}: {1} {2} bestaat niet in bovenstaande tabel '{1}'" @@ -27618,7 +27637,7 @@ msgstr "Te fabriceren artikel" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Artikel Variant" @@ -27737,7 +27756,7 @@ msgstr "Belastingdetails per artikel" msgid "Item Wise Tax Details" msgstr "Belastingdetails per artikel" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "De belastinggegevens per artikel komen niet overeen met de belastingen en heffingen in de volgende rijen:" @@ -27773,7 +27792,7 @@ msgstr "Dit item is verplicht in de tabel met grondstoffen." msgid "Item is removed since no serial / batch no selected." msgstr "Het artikel is verwijderd omdat er geen serie-/batchnummer is geselecteerd." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Het artikel moet worden toegevoegd met de knop 'Artikelen ophalen uit inkoopontvangsten'" @@ -27787,7 +27806,7 @@ msgstr "Artikelnaam" msgid "Item operation" msgstr "Artikelbewerking" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "De artikelprijs is bijgewerkt naar nul omdat 'Nulwaardering toestaan' is aangevinkt voor artikel {0}" @@ -27802,7 +27821,7 @@ msgstr "Te fabriceren artikel" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "De waarderingsratio van het artikel wordt opnieuw berekend rekening houdend met het bedrag van de aankoopbon." -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "De waardebepaling van het artikel wordt opnieuw verwerkt. Het rapport kan een onjuiste waardebepaling van het artikel weergeven." @@ -27818,10 +27837,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "Item {0} is meerdere keren toegevoegd onder hetzelfde bovenliggende item {1} op rijen {2} en {3}" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "Item {0} kan niet als subassemblage van zichzelf worden toegevoegd." @@ -27830,6 +27845,10 @@ msgstr "Item {0} kan niet als subassemblage van zichzelf worden toegevoegd." msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Artikel {0} kan niet vaker dan {1} besteld worden in het kader van raamovereenkomst {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27839,6 +27858,7 @@ msgstr "Artikel {0} bestaat niet" msgid "Item {0} does not exist in the system or has expired" msgstr "Artikel {0} bestaat niet in het systeem of is verlopen" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Item {0} bestaat niet." @@ -27871,6 +27891,10 @@ msgstr "Artikel {0} heeft het einde van zijn levensduur bereikt op {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "Artikel {0} genegeerd omdat het niet een voorraadartikel is" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Artikel {0} is reeds gereserveerd/geleverd voor verkooporder {1}." @@ -27903,7 +27927,7 @@ msgstr "Artikel {0} is geen uitbested artikel." msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "ARtikel {0} is niet actief of heeft einde levensduur bereikt" @@ -27935,10 +27959,6 @@ msgstr "Item {0}: Bestelde aantal {1} kan niet kleiner dan de minimale afname {2 msgid "Item {0}: {1} qty produced. " msgstr "Artikel {0}: {1} aantal geproduceerd." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "Item {} bestaat niet." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27989,6 +28009,10 @@ msgstr "Artikel/artikelcode vereist om het artikelbelastingsjabloon te verkrijge msgid "Item: {0} does not exist in the system" msgstr "Item: {0} bestaat niet in het systeem" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -28005,7 +28029,7 @@ msgstr "Artikelcatalogus" msgid "Items Filter" msgstr "Items filteren" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Items vereist" @@ -28045,7 +28069,7 @@ msgstr "Artikelen voor grondstofverzoek" msgid "Items not found." msgstr "Artikelen niet gevonden." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "De waardering van de artikelen is bijgewerkt naar nul, omdat 'Nulwaardering toestaan' is aangevinkt voor de volgende artikelen: {0}" @@ -28055,7 +28079,7 @@ msgstr "De waardering van de artikelen is bijgewerkt naar nul, omdat 'Nulwaarder msgid "Items to Be Repost" msgstr "Items die opnieuw geplaatst zullen worden" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Te vervaardigen artikelen zijn vereist om de bijbehorende grondstoffen te trekken." @@ -28125,7 +28149,7 @@ msgstr "Werkcapaciteit" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28188,20 +28212,19 @@ msgstr "Tijdkaart taakkaart" msgid "Job Card and Capacity Planning" msgstr "Taakkaart en capaciteitsplanning" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "De taakkaart {0} is voltooid." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "Werkkaarten" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "Taak gepauzeerd" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Taak gestart" @@ -28264,11 +28287,19 @@ msgstr "Functie Werknemer Naam" msgid "Job Worker Warehouse" msgstr "Magazijnmedewerker" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Taakkaart {0} gemaakt" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "Taak {0} is geactiveerd voor het verwerken van mislukte transacties." @@ -28614,8 +28645,8 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "De laatste GL-update is uitgevoerd {}. Deze bewerking is niet toegestaan terwijl het systeem actief in gebruik is. Wacht 5 minuten voordat u het opnieuw probeert." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28735,7 +28766,7 @@ msgstr "Breedte" msgid "Lead" msgstr "Lood" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Lead -> Prospect" @@ -28829,7 +28860,7 @@ msgstr "Levertijd in dagen" msgid "Lead Type" msgstr "Loodtype" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "Lead {0} is toegevoegd aan prospect {1}." @@ -28978,7 +29009,7 @@ msgstr "Legende" msgid "Length (cm)" msgstr "Lengte (cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Minder dan bedrag" @@ -29007,7 +29038,7 @@ msgstr "Niveau (BOM)" msgid "Lft" msgstr "Links" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Passiva" @@ -29037,7 +29068,7 @@ msgstr "Licentienummer" msgid "License Plate" msgstr "Kentekenplaat" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Grens overschreden" @@ -29133,8 +29164,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Verbinding met klant mislukt. Probeer het opnieuw." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Verbinding met leverancier mislukt. Probeer het opnieuw." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29300,7 +29331,7 @@ msgstr "Verloren reden Detail" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Verloren redenen" @@ -29386,7 +29417,7 @@ msgstr "Inwisseling van loyaliteitspunten" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Loyaliteitspunten worden berekend op basis van het bestede bedrag (via de verkoopfactuur), rekening houdend met de vermelde incassofactor." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Loyaliteitspunten: {0}" @@ -29624,7 +29655,7 @@ msgstr "Onderhoudsschema Detail" msgid "Maintenance Schedule Item" msgstr "Onderhoudsschema Item" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Onderhoudsschema wordt niet gegenereerd voor alle items . Klik op ' Generate Schedule'" @@ -29721,7 +29752,7 @@ msgstr "Onderhoud Bezoek" msgid "Maintenance Visit Purpose" msgstr "Doel van onderhouds bezoek" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Onderhoud startdatum kan niet voor de leveringsdatum voor Serienummer {0}" @@ -29868,7 +29899,7 @@ msgstr "Verplicht voor de balans" msgid "Mandatory For Profit and Loss Account" msgstr "Verplicht voor de winst- en verliesrekening" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Verplicht ontbreekt" @@ -29951,8 +29982,8 @@ msgstr "Handmatige invoer kan niet worden gemaakt! Schakel automatische invoer v #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30174,7 +30205,7 @@ msgstr "Inkomende orders in kaart brengen van onderaanneming ..." msgid "Mapping Subcontracting Order ..." msgstr "Mapping Subcontracting Order ..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Mapping {0}..." @@ -30352,10 +30383,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30382,7 +30409,7 @@ msgstr "Materiale consumptie" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Materiaalverbruik voor de productie" @@ -30493,7 +30520,7 @@ msgstr "Materiaal verzoek" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Datum materiaal verzoek" @@ -30543,7 +30570,7 @@ msgstr "Details van de materiaalaanvraag" msgid "Material Request Item" msgstr "Artikel in materiaal verzoek" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Nr. Materiaal verzoek" @@ -30565,7 +30592,7 @@ msgstr "Materiaalaanvraagtype" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Materiaalaanvraag niet gecreëerd, als hoeveelheid voor grondstoffen al beschikbaar." @@ -30579,7 +30606,7 @@ msgstr "Materiaal Aanvraag van maximaal {0} kan worden gemaakt voor Artikel {1} msgid "Material Request used to make this Stock Entry" msgstr "Materiaalaanvraag gebruikt om deze voorraadboeking te maken" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Materiaal Aanvraag {0} is geannuleerd of gestopt" @@ -30699,14 +30726,14 @@ msgstr "Materiaal aan Leverancier" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Materialen zijn reeds ontvangen tegen de {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "Materialen moeten worden overgebracht naar het magazijn voor onderhanden werk voor de orderkaart {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30874,7 +30901,7 @@ msgstr "Megajoule" msgid "Megawatt" msgstr "Megawatt" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Vermeld waarderingspercentage in het artikelmodel." @@ -30909,7 +30936,7 @@ msgstr "Samenvoegingsvoortgang" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Belastingaangiften uit meerdere documenten samenvoegen" @@ -31255,7 +31282,7 @@ msgstr "Diverse Kosten" msgid "Mismatch" msgstr "Mismatch" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Vermist" @@ -31264,11 +31291,11 @@ msgstr "Vermist" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Account ontbreekt" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31293,11 +31320,11 @@ msgstr "" msgid "Missing Filters" msgstr "Ontbrekende filters" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Financieel boek vermist" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Ontbrekend, voltooid, goed" @@ -31305,7 +31332,7 @@ msgstr "Ontbrekend, voltooid, goed" msgid "Missing Formula" msgstr "Ontbrekende formule" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Ontbrekend item" @@ -31317,7 +31344,7 @@ msgstr "" msgid "Missing Payments App" msgstr "App voor ontbrekende betalingen" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31329,7 +31356,7 @@ msgstr "Ontbrekend serienummerbundel" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31337,12 +31364,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Ontbrekende e-mailsjabloon voor verzending. Stel een in bij Delivery-instellingen." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Vereist filter ontbreekt: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Ontbrekende waarde" @@ -31591,17 +31618,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Er zijn meerdere loyaliteitsprogramma's gevonden voor klant {}. Selecteer handmatig." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "Meerdere POS-openingsinvoer" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Meerdere Prijs Regels bestaat met dezelfde criteria, dan kunt u conflicten op te lossen door het toekennen van prioriteit. Prijs Regels: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31621,7 +31648,7 @@ msgstr "Meerdere bedrijfsvelden beschikbaar: {0}. Selecteer handmatig." msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Meerdere fiscale jaar bestaan voor de datum {0}. Stel onderneming in het fiscale jaar" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "Meerdere artikelen kunnen niet als voltooid artikel worden gemarkeerd." @@ -31630,10 +31657,10 @@ msgid "Music" msgstr "Muziek" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Moet heel getal zijn" @@ -31718,11 +31745,7 @@ msgstr "Het benoemen van series is verplicht." msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "De naamgevingsreeks '{0}' voor documenttype '{1}' bevat geen standaard scheidingsteken '.' of '{{'. Er wordt gebruikgemaakt van een alternatieve extractiemethode." @@ -31766,7 +31789,7 @@ msgstr "Analyse nodig" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Negatieve hoeveelheid is niet toegestaan" @@ -31776,12 +31799,12 @@ msgstr "Negatieve hoeveelheid is niet toegestaan" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "Negatieve voorraadfout" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Negatieve Waarderingstarief is niet toegestaan" @@ -31859,8 +31882,8 @@ msgstr "Nettobedrag" msgid "Net Amount (Company Currency)" msgstr "Nettobedrag (valuta van het bedrijf)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Intrinsieke waarde Op" @@ -31910,7 +31933,7 @@ msgstr "Netto uurtarief" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Netto winst" @@ -31918,7 +31941,7 @@ msgstr "Netto winst" msgid "Net Profit Ratio" msgstr "Nettowinstratio" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Nettowinst (verlies" @@ -31932,11 +31955,11 @@ msgstr "Nettowinst (verlies" msgid "Net Purchase Amount" msgstr "Netto aankoopbedrag" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "Het netto aankoopbedrag is verplicht." -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "Het netto aankoopbedrag moet gelijk zijn aan , het aankoopbedrag van één enkel actief." @@ -32180,7 +32203,7 @@ msgstr "" msgid "New Income" msgstr "Nieuw inkomen" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "Nieuwe factuur" @@ -32253,6 +32276,7 @@ msgid "New Task" msgstr "Nieuwe taak" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Nieuwe versie" @@ -32265,9 +32289,9 @@ msgstr "Nieuwe Warehouse Naam" msgid "New Workplace" msgstr "Nieuwe werkplek" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "New kredietlimiet lager is dan de huidige uitstaande bedrag voor de klant. Kredietlimiet moet minstens zijn {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32275,6 +32299,10 @@ msgstr "New kredietlimiet lager is dan de huidige uitstaande bedrag voor de klan msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Nieuwe facturen worden volgens schema gegenereerd, zelfs als de huidige facturen onbetaald zijn of de vervaldatum is overschreden." +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Nieuwe releasedatum zou in de toekomst moeten liggen" @@ -32287,7 +32315,7 @@ msgstr "Nieuwe herziene begroting succesvol opgesteld" msgid "New task" msgstr "Nieuwe taak" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Nieuwe {0} prijsregels worden gemaakt" @@ -32351,16 +32379,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Geen klant gevonden voor transacties tussen bedrijven die het bedrijf vertegenwoordigen {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "Geen klanten gevonden met de geselecteerde opties." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Geen leveringsbewijs geselecteerd voor klant {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "Er staan geen documenttypen in de lijst 'Te verwijderen'. Genereer of importeer de lijst voordat u deze indient." @@ -32368,15 +32395,15 @@ msgstr "Er staan geen documenttypen in de lijst 'Te verwijderen'. Genereer of im msgid "No Impact on Accounting Ledger" msgstr "Geen impact op het boekhoudkundig grootboek." -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Geen Artikel met Barcode {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Geen artikel met serienummer {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "Geen artikelen geselecteerd voor overdracht." @@ -32419,11 +32446,6 @@ msgstr "Geen toestemming" msgid "No Purchase Orders were created" msgstr "Er zijn geen inkooporders aangemaakt." -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "Er zijn geen gegevens beschikbaar voor deze instellingen." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Geen selectie" @@ -32526,6 +32548,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "Geen contacten met e-mail-ID's gevonden." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Geen gegevens voor deze periode" @@ -32571,7 +32597,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "Geen artikel beschikbaar voor overdracht." @@ -32608,10 +32634,6 @@ msgstr "Geen kinderen meer aan de linkerkant" msgid "No more children on Right" msgstr "Geen kinderen meer aan de rechterkant" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Aantal leveringen" @@ -32708,7 +32730,7 @@ msgstr "Geen openstaande facturen gevonden" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Er zijn geen openstaande facturen waarvoor een herwaardering van de wisselkoers nodig is" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "Er zijn geen uitstekende {0} gevonden voor de {1} {2} die voldoen aan de door u opgegeven filters." @@ -32746,15 +32768,20 @@ msgstr "" msgid "No record found" msgstr "Geen record gevonden" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "Geen records gevonden in de toewijzingstabel." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "Geen records gevonden in de tabel Facturen" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "Geen records gevonden in de tabel Betalingen" @@ -32783,7 +32810,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "Er zijn geen voorraadboekingen aangemaakt. Stel de hoeveelheid of waarderingswaarde voor de artikelen correct in en probeer het opnieuw." @@ -32820,7 +32847,7 @@ msgstr "Geen waarden" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32828,11 +32855,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "Geen {0} gevonden voor transacties tussen bedrijven." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "Nee." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32884,7 +32906,7 @@ msgstr "Niet-nulwaarden" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Geen van de items hebben een verandering in hoeveelheid of waarde." @@ -32895,8 +32917,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "Nrs" @@ -32910,8 +32932,8 @@ msgstr "Nrs" msgid "Not Applicable" msgstr "Niet van toepassing" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Niet beschikbaar" @@ -32974,10 +32996,6 @@ msgstr "Niet gestart" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "Het vroegste fiscale jaar voor het betreffende bedrijf kon niet worden gevonden." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Niet toestaan om alternatief item in te stellen voor het item {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Mag geen boekhoudingsdimensie maken voor {0}" @@ -32994,10 +33012,6 @@ msgstr "Niet geautoriseerd omdat {0} de limieten overschrijdt" msgid "Not authorized to edit frozen Account {0}" msgstr "Niet bevoegd om bevroren rekening te bewerken {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "Niet op voorraad" @@ -33010,7 +33024,7 @@ msgstr "Niet op voorraad" msgid "Not permitted to make Purchase Orders" msgstr "Het is niet toegestaan om inkooporders te plaatsen." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33255,8 +33269,8 @@ msgid "Numeric Values" msgstr "Numerieke waarden" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Numero is niet ingesteld in het XML-bestand" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33431,12 +33445,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Zodra deze factuur is ingesteld, blijft deze in de wacht staan tot de ingestelde datum." #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "Zodra een werkorder is afgesloten, kan deze niet meer worden hervat." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Een klant kan slechts aan één loyaliteitsprogramma deelnemen." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33470,7 +33484,7 @@ msgstr "Alleen 'betalingsboekingen' die op deze voorschotrekening zijn gedaan, w msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Alleen CSV- en Excel-bestanden kunnen worden gebruikt voor het importeren van gegevens. Controleer het bestandsformaat van het bestand dat u probeert te uploaden." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "Alleen CSV-bestanden zijn toegestaan." @@ -33535,7 +33549,7 @@ msgstr "Er kan slechts één bewerking de optie 'Is eindproduct' aangevinkt hebb msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "Er kan slechts één {0} -item worden aangemaakt voor de werkorder {1}" @@ -33602,7 +33616,7 @@ msgstr "Openbare bijeenkomst" msgid "Open Events" msgstr "Openbare evenementen" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Open formulierweergave" @@ -33755,7 +33769,7 @@ msgstr "Beginsaldo = begin van de periode, Eindsaldo = einde van de periode, Per #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Beginsaldogegevens" @@ -33785,7 +33799,7 @@ msgstr "Openingsdatum" msgid "Opening Entry" msgstr "Openingsingang" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Aanmaak van factuur wordt geopend" @@ -33813,7 +33827,7 @@ msgstr "Factuuritem openen" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "De openingsfactuur heeft een afrondingscorrectie van {0}.

                    '{1}' is vereist om deze waarden te boeken. Stel dit in bij Bedrijf: {2}.

                    Of, '{3}' kan worden ingeschakeld om geen afrondingscorrectie te boeken." @@ -33822,7 +33836,7 @@ msgstr "De openingsfactuur heeft een afrondingscorrectie van {0}.

                    '{1}' msgid "Opening Invoices" msgstr "Openingsfacturen" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Factuuroverzicht openen" @@ -33852,20 +33866,20 @@ msgstr "De eerste verkoopfacturen zijn aangemaakt." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Beginvoorraad" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33874,7 +33888,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33917,7 +33931,7 @@ msgstr "Bedrijfskosten van componenten" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Operationele kosten" @@ -34008,7 +34022,7 @@ msgstr "Bewerking rijnummer" msgid "Operation Time" msgstr "Bedrijfstijd" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Operatie tijd moet groter zijn dan 0 voor de operatie zijn {0}" @@ -34032,8 +34046,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "Bewerking {0} hoort niet bij de werkorder {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Operation {0} langer dan alle beschikbare werktijd in werkstation {1}, breken de operatie in meerdere operaties" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34218,6 +34232,10 @@ msgstr "Mogelijkheid {0} gemaakt" msgid "Optimize Route" msgstr "Optimaliseer de route" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34234,10 +34252,6 @@ msgstr "Optioneel. Deze instelling wordt gebruikt om te filteren op diverse tran msgid "Optional. Used with Financial Report Template" msgstr "Optioneel. Te gebruiken met het sjabloon voor financiële rapporten." -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Orderbedrag" @@ -34523,7 +34537,7 @@ msgid "Out of stock" msgstr "Niet op voorraad" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "Verouderde POS-openingsingang" @@ -34577,7 +34591,7 @@ msgstr "Uitstaande bedragen (valuta van het bedrijf)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34658,11 +34672,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Overmatige pluktoeslag (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "Te veel ontvangen" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "Overontvangst/levering van {0} {1} genegeerd voor item {2} omdat je de rol {3} hebt." @@ -34679,14 +34693,14 @@ msgstr "Overboekingstoeslag (%)" msgid "Over Withheld" msgstr "Overig" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "Overfacturering van {0} {1} genegeerd voor item {2} omdat je de rol {3} hebt." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "Overfacturering van {} wordt genegeerd omdat u de rol {} heeft." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34735,10 +34749,6 @@ msgstr "Achterstallige taken" msgid "Overdue and Discounted" msgstr "Te laat betaald en met korting" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Overlappen in scoren tussen {0} en {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Overlappende voorwaarden gevonden tussen :" @@ -34804,6 +34814,11 @@ msgstr "PAN-nummer" msgid "PCV" msgstr "PCV" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "PCV gepauzeerd" @@ -34851,7 +34866,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "POS Aanvullende velden" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "Kassa gesloten" @@ -34949,8 +34964,8 @@ msgid "POS Invoice is not submitted" msgstr "De POS-factuur is niet ingediend." #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "POS-factuur is niet gemaakt door gebruiker {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35009,7 +35024,7 @@ msgstr "De POS-openingsinvoer {0} is verouderd. Sluit de POS en maak een nieuwe msgid "POS Opening Entry Cancellation Error" msgstr "Fout bij annulering van POS-openingsinvoer" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "POS-openingstoegang geannuleerd" @@ -35030,7 +35045,7 @@ msgstr "POS-openingsinvoer ontbreekt" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "De POS-opening kan niet worden geannuleerd omdat er nog niet-geconsolideerde facturen bestaan." -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "De toegang tot het kassasysteem is geannuleerd. Vernieuw de pagina." @@ -35053,7 +35068,7 @@ msgstr "POS-betaalmethode" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "POS Profiel" @@ -35073,8 +35088,8 @@ msgstr "POS-profielgebruiker" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "Het POS-profiel komt niet overeen met {}." +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35085,20 +35100,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "Het POS-profiel {0} kan niet worden uitgeschakeld omdat er nog POS-sessies actief zijn." #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "Het POS-profiel {} bevat de betaalmethode {}. Verwijder deze om deze methode uit te schakelen." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "POS-profiel {} behoort niet tot bedrijf {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "Het POS-profiel {} bestaat niet." +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "Het POS-profiel {} is uitgeschakeld." +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35127,11 +35142,11 @@ msgstr "POS-instellingen" msgid "POS Transactions" msgstr "POS-transacties" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "Het POS-systeem is gesloten op {0}. Vernieuw de pagina." -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "POS-factuur {0} succesvol aangemaakt" @@ -35150,7 +35165,7 @@ msgstr "PSOA-project" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "Pakketnummer(s) zijn al in gebruik. Probeer het vanuit pakketnummer {0}" @@ -35775,7 +35790,7 @@ msgstr "Deeltjes per miljoen" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35902,7 +35917,7 @@ msgstr "Partij die niet bij elkaar past" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35988,7 +36003,7 @@ msgstr "Feestspecifiek artikel" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36009,7 +36024,7 @@ msgstr "partij Type" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "Partijtype en partij kunnen alleen worden ingesteld voor debiteuren-/crediteurenrekeningen

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Feesttype en feest is verplicht voor {0} account" @@ -36045,7 +36060,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36555,7 +36570,7 @@ msgstr "Betalingsreferenties" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36630,7 +36645,7 @@ msgstr "Betalingsschema" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36652,7 +36667,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36752,8 +36767,8 @@ msgid "Payment Type" msgstr "Betaling Type" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Betaling Type moet een van te ontvangen, betalen en Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36959,11 +36974,11 @@ msgstr "Afwachting van activiteiten voor vandaag" msgid "Pending processing" msgstr "In behandeling" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37480,12 +37495,12 @@ msgstr "Plaid-klant-ID" msgid "Plaid Environment" msgstr "Plaid-omgeving" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Plaid-link mislukt" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Plaid Link Vernieuwen Vereist" @@ -37507,7 +37522,7 @@ msgstr "Plaid Secret" msgid "Plaid Settings" msgstr "Plaid-instellingen" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Synchronisatiefout voor transacties met plaid" @@ -37658,15 +37673,6 @@ msgstr "Installaties en Machines" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Vul items bij en werk de keuzelijst bij om door te gaan. Annuleer de keuzelijst om te stoppen." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Selecteer een bedrijf" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Selecteer een bedrijf." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37674,7 +37680,6 @@ msgstr "Selecteer een klant" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Selecteer een leverancier" @@ -37682,19 +37687,19 @@ msgstr "Selecteer een leverancier" msgid "Please Set Priority" msgstr "Stel de prioriteit in." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Gelieve Leveranciergroep in te stellen in Koopinstellingen." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Geef het account op." -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Voeg de rol 'Leverancier' toe aan gebruiker {0}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Voeg betalingswijze en beginsaldodetails toe." @@ -37710,7 +37715,7 @@ msgstr "Voeg Offerteaanvraag toe aan de zijbalk in Portaalinstellingen." msgid "Please add Root Account for - {0}" msgstr "Voeg een root-account toe voor - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Voeg een tijdelijk openstaand account toe in het rekeningschema" @@ -37718,35 +37723,32 @@ msgstr "Voeg een tijdelijk openstaand account toe in het rekeningschema" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Voeg ten minste één serienummer/batchnummer toe." +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Voeg de kolom 'Bankrekening' toe." -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Voeg het account toe aan het hoofdniveau van het bedrijf - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Voeg het account toe aan Bedrijf op hoofdniveau - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Voeg de rol {1} toe aan gebruiker {0}." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Pas de hoeveelheid aan of bewerk {0} om verder te gaan." @@ -37788,7 +37790,7 @@ msgstr "Neem contact op met de operationele afdeling of raadpleeg de FG Based Op msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Controleer het foutbericht en neem de nodige maatregelen om de fout te herstellen. Start daarna het opnieuw plaatsen van het bericht." @@ -37801,11 +37803,11 @@ msgstr "Controleer uw Plaid-klant-ID en geheime waarden" msgid "Please check your email to confirm the appointment" msgstr "Controleer uw e-mail om de afspraak te bevestigen." -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Klik op 'Genereer Planning'" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Klik op 'Genereer Planning' om serienummer op te halen voor Artikel {0}" @@ -37821,15 +37823,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Neem contact op met een van de volgende gebruikers om de kredietlimieten voor {0}te verhogen: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Neem contact op met een van de volgende gebruikers om deze transactie af te ronden." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Neem contact op met uw beheerder om de kredietlimieten voor {0} te verhogen." @@ -37837,11 +37839,11 @@ msgstr "Neem contact op met uw beheerder om de kredietlimieten voor {0} te verho msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Converteer het bovenliggende account in het corresponderende onderliggende bedrijf naar een groepsaccount." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Maak een klant op basis van lead {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Maak inkoopbonnen aan voor facturen waarvoor 'Voorraad bijwerken' is ingeschakeld." @@ -37853,7 +37855,7 @@ msgstr "Maak indien nodig een nieuwe boekhouddimensie aan." msgid "Please create purchase from internal sale or delivery document itself" msgstr "Maak de aankoop aan vanuit het interne verkoop- of leveringsdocument zelf." -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Maak een aankoopbevestiging of een inkoopfactuur voor het artikel {0}" @@ -37865,11 +37867,11 @@ msgstr "Verwijder productbundel {0}voordat u {1} samenvoegt met {2}." msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "Schakel de workflow tijdelijk uit voor journaalpost {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Boek de kosten van meerdere activa niet op één enkele activa." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Maak niet meer dan 500 items tegelijk" @@ -37894,8 +37896,8 @@ msgid "Please enable {0} in the {1}." msgstr "Schakel {0} in de {1} in." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Schakel {} in {} in om hetzelfde item in meerdere rijen toe te staan." +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37906,12 +37908,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Zorg ervoor dat de {0} rekening {1} een crediteurenrekening is. U kunt het rekeningtype wijzigen naar Crediteuren of een andere rekening selecteren." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Zorg ervoor dat de {} rekening een balansrekening is." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Zorg ervoor dat rekening {} een debiteurenrekening is." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37926,7 +37928,7 @@ msgstr "Vul Account for Change Bedrag" msgid "Please enter Approving Role or Approving User" msgstr "Vul de Goedkeurders Rol of Goedkeurende Gebruiker in" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Voer het batchnummer in." @@ -37942,7 +37944,7 @@ msgstr "Vul de Leveringsdatum in" msgid "Please enter Employee Id of this sales person" msgstr "Vul Employee Id van deze verkoper" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Vul Kostenrekening in" @@ -37951,7 +37953,7 @@ msgstr "Vul Kostenrekening in" msgid "Please enter Item Code to get Batch Number" msgstr "Vul de artikelcode voor Batch Number krijgen" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Vul de artikelcode in om batchnummer op te halen" @@ -37987,7 +37989,7 @@ msgstr "Vul Peildatum in" msgid "Please enter Root Type for account- {0}" msgstr "Voer het roottype voor het account in: {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Voer het serienummer in." @@ -38117,8 +38119,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "Genereer de lijst met te verwijderen objecten voordat u het formulier indient." #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Importeer accounts via het moederbedrijf of schakel {} in in de bedrijfsstamgegevens." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38153,11 +38155,7 @@ msgstr "Vermeld de huidige en de nieuwe stuklijst (BOM) voor de vervanging." msgid "Please pull items from Delivery Note" msgstr "Haal aub artikelen uit de Vrachtbrief" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Corrigeer het en probeer het opnieuw." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Vernieuw of reset de Plaid-koppeling van de bank {}." @@ -38186,12 +38184,12 @@ msgstr "Sla de verkooporder op voordat u een leveringsschema toevoegt." msgid "Please select Template Type to download template" msgstr "Selecteer het sjabloontype om de sjabloon te downloaden" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Selecteer Apply Korting op" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Selecteer een stuklijst met item {0}" @@ -38207,9 +38205,9 @@ msgstr "Selecteer Bankrekening" msgid "Please select Category first" msgstr "Selecteer eerst een Categorie" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Selecteer eerst een Charge Type" @@ -38219,8 +38217,8 @@ msgstr "Selecteer Company" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Selecteer Bedrijf en Boekingsdatum om transacties op te halen" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38242,7 +38240,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Kies een bestaand bedrijf voor het maken van Rekeningschema" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Selecteer het afgewerkte product voor het serviceartikel {0}" @@ -38251,6 +38249,10 @@ msgstr "Selecteer het afgewerkte product voor het serviceartikel {0}" msgid "Please select Item Code first" msgstr "Selecteer eerst de artikelcode" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Selecteer Onderhoudsstatus als voltooid of verwijder de voltooiingsdatum" @@ -38275,11 +38277,11 @@ msgstr "Selecteer Boekingsdatum voordat Party selecteren" msgid "Please select Posting Date first" msgstr "Selecteer Boekingsdatum eerste" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Selecteer Prijslijst" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Selecteer alstublieft aantal tegen item {0}" @@ -38308,6 +38310,7 @@ msgid "Please select a BOM" msgstr "Selecteer een stuklijst" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Selecteer aub een andere vennootschap" @@ -38315,11 +38318,12 @@ msgstr "Selecteer aub een andere vennootschap" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Selecteer eerst een bedrijf." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Selecteer een klant alsjeblieft" @@ -38328,7 +38332,7 @@ msgstr "Selecteer een klant alsjeblieft" msgid "Please select a Delivery Note" msgstr "Selecteer een afleveringsbewijs" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Selecteer een inkooporder voor onderaanneming." @@ -38340,7 +38344,7 @@ msgstr "Selecteer een leverancier" msgid "Please select a Warehouse" msgstr "Selecteer een magazijn." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Selecteer eerst een werkorder." @@ -38356,6 +38360,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38389,22 +38394,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "Selecteer een frequentie voor het bezorgschema." #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Selecteer een rij om een herplaatsingsbericht aan te maken." +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Selecteer een leverancier voor het innen van betalingen." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Selecteer een geldige inkooporder die is geconfigureerd voor uitbesteding." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Selecteer een waarde voor {0} quotation_to {1}" @@ -38413,7 +38422,7 @@ msgstr "Selecteer een waarde voor {0} quotation_to {1}" msgid "Please select an item code before setting the warehouse." msgstr "Selecteer een artikelcode voordat u het magazijn instelt." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38421,10 +38430,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Selecteer ten minste één filter: Artikelcode, Batchnummer of Serienummer." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Selecteer ten minste één rij om te corrigeren." @@ -38433,18 +38450,10 @@ msgstr "Selecteer ten minste één rij om te corrigeren." msgid "Please select at least one row with difference value" msgstr "Selecteer ten minste één rij met een afwijkende waarde." -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "Selecteer ten minste één item om verder te gaan." - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "Selecteer ten minste één bewerking om een werkbon aan te maken." - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Selecteer juiste account" @@ -38482,12 +38491,12 @@ msgstr "Selecteer de artikelen die u wilt reserveren." msgid "Please select items to unreserve." msgstr "Selecteer de artikelen die u wilt de-reserveren." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Selecteer slechts één rij om een herplaatsingsbericht te maken." -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Selecteer de rijen om herplaatsingsberichten aan te maken." @@ -38496,8 +38505,8 @@ msgid "Please select the Company" msgstr "Selecteer het bedrijf" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Selecteer het Multiple Tier-programmatype voor meer dan één verzamelregel." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38520,20 +38529,16 @@ msgstr "Selecteer eerst het documenttype." msgid "Please select the required filters" msgstr "Selecteer de gewenste filters." -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Selecteer een geldig documenttype." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Selecteer wekelijkse vrije dag" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Selecteer eerst {0}" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Stel 'Solliciteer Extra Korting op'" @@ -38562,8 +38567,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Stel een account in in Warehouse {0} of Default Inventory Account in bedrijf {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Stel de boekhouddimensie {} in {} in." +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38592,22 +38597,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Vul e-mail/telefoonnummer in als contactpersoon." #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Stel de fiscale code in voor de klant '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Stel de fiscale code in voor de klant '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Stel de fiscale code in voor de openbare administratie '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Stel de fiscale code in voor de openbare administratie '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "Stel de rekening voor vaste activa in bij de activacategorie {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Stel de rekening voor vaste activa in {} in op {}." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38623,9 +38626,8 @@ msgid "Please set Root Type" msgstr "Stel het roottype in." #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Stel het btw-nummer in voor de klant '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Stel het btw-nummer in voor de klant '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38644,15 +38646,15 @@ msgid "Please set a Company" msgstr "Stel een bedrijf in" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Stel een kostenplaats in voor het activum of stel een afschrijvingskostenplaats in voor het bedrijf {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Stel een standaard vakantielijst in voor bedrijf {0}" @@ -38669,9 +38671,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "Stel de werkelijke vraag of de verkoopprognose in om het rapport voor materiaalbehoefteplanning te genereren." #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Stel een adres in voor het bedrijf '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "Stel een adres in voor het bedrijf '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38689,25 +38690,22 @@ msgstr "Stel ten minste één rij in de tabel Belastingen en kosten in" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "Stel zowel het belastingnummer als de fiscale code in voor het bedrijf {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Stel een standaard Kas- of Bankrekening in bij Betaalwijze {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Stel een standaard contant of bankrekening in in Betalingsmethode {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Stel een standaard Kas- of Bankrekening in bij Betaalwijze {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Stel standaard contant geld of bankrekening in in Betalingsmethode {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Stel de standaardrekening voor wisselkoerswinsten/-verliezen in bij bedrijf {}." +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38738,11 +38736,11 @@ msgstr "Stel filter op basis van artikel of Warehouse" msgid "Please set one of the following:" msgstr "Selecteer een van de volgende opties:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "Stel het openingsaantal geboekte afschrijvingen in." -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Stel terugkerende na het opslaan" @@ -38750,7 +38748,7 @@ msgstr "Stel terugkerende na het opslaan" msgid "Please set the Customer Address" msgstr "Stel het klantadres in" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Stel het standaard kostenplaatsadres in {0} bedrijf in." @@ -38805,7 +38803,7 @@ msgstr "Stel {0} in bij Bedrijf {1} om rekening te houden met wisselkoerswinst/v msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Stel {0} in op {1}, hetzelfde account dat werd gebruikt in de oorspronkelijke factuur {2}." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Maak een groepsaccount aan en activeer deze met het accounttype {0} voor het bedrijf {1}." @@ -38813,7 +38811,7 @@ msgstr "Maak een groepsaccount aan en activeer deze met het accounttype {0} voor msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Deel deze e-mail alstublieft met uw supportteam, zodat zij het probleem kunnen opsporen en oplossen." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Specificeer Bedrijf" @@ -38823,8 +38821,8 @@ msgstr "Specificeer Bedrijf" msgid "Please specify Company to proceed" msgstr "Specificeer Bedrijf om verder te gaan" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Geef een geldige rij-ID voor rij {0} in tabel {1}" @@ -38832,11 +38830,11 @@ msgstr "Geef een geldige rij-ID voor rij {0} in tabel {1}" msgid "Please specify a {0} first." msgstr "Geef eerst een {0} op." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Gelieve ten minste één attribuut in de tabel attributen opgeven" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Specificeer ofwel Hoeveelheid of Waarderingstarief of beide" @@ -38844,6 +38842,14 @@ msgstr "Specificeer ofwel Hoeveelheid of Waarderingstarief of beide" msgid "Please specify from/to range" msgstr "Gelieve te specificeren van / naar variëren" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Probeer het over een uur opnieuw." @@ -39007,7 +39013,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39032,7 +39038,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39075,8 +39081,8 @@ msgstr "Plaatsingsdatum" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Posting datum kan niet de toekomst datum" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39084,7 +39090,7 @@ msgstr "Posting datum kan niet de toekomst datum" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "De boekingsdatum wordt gewijzigd naar de datum van vandaag, omdat 'Boekingsdatum en -tijd bewerken' niet is aangevinkt. Weet u zeker dat u wilt doorgaan?" @@ -39277,6 +39283,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "Vooruitbetaalde kosten" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "President" @@ -39366,7 +39376,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Vorig boekjaar is niet gesloten" @@ -39508,7 +39518,7 @@ msgstr "Prijslijst Land" msgid "Price List Currency" msgstr "Prijslijst Valuta" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Prijslijst Valuta nog niet geselecteerd" @@ -39629,7 +39639,7 @@ msgstr "Prijs niet afhankelijk van de meeteenheid." msgid "Price Per Unit ({0})" msgstr "Prijs per eenheid ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "De prijs van het artikel is nog niet vastgesteld." @@ -39740,7 +39750,7 @@ msgstr "De prijsregel wordt eerst geselecteerd op basis van het veld 'Toepassen msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "Een prijsregel is bedoeld om de prijslijst te overschrijven of een kortingspercentage te bepalen op basis van bepaalde criteria." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "Prijsregel {0} is bijgewerkt" @@ -39948,8 +39958,8 @@ msgid "Priorities" msgstr "Prioriteiten" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "De prioriteit mag niet lager zijn dan 1." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40130,7 +40140,7 @@ msgstr "Procesabonnement" msgid "Process in Single Transaction" msgstr "Verwerking in één transactie" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40256,7 +40266,7 @@ msgstr "Productbundel" msgid "Product Bundle Balance" msgstr "Productbundelsaldo" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40281,7 +40291,7 @@ msgstr "Productbundelhulp" msgid "Product Bundle Item" msgstr "Productbundelartikel" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40484,7 +40494,7 @@ msgstr "producten" msgid "Profit & Loss" msgstr "Winst en verlies" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Winst dit jaar" @@ -40513,6 +40523,10 @@ msgstr "Winst en verlies" msgid "Profit and Loss Statement" msgstr "Winst-en verliesrekening" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40521,8 +40535,8 @@ msgstr "Winst-en verliesrekening" msgid "Profit and Loss Summary" msgstr "Winst- en verliesrekeningoverzicht" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Jaarwinst" @@ -40595,7 +40609,7 @@ msgstr "Project status" msgid "Project Summary" msgstr "Project samenvatting" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Projectsamenvatting voor {0}" @@ -40675,7 +40689,7 @@ msgstr "Projectmatig voorraad volgen" msgid "Project wise Stock Tracking " msgstr "Projectgebaseerde Aandelenhandel" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Projectgegevens zijn niet beschikbaar voor Offertes" @@ -40726,7 +40740,7 @@ msgstr "Geprojecteerde aantal" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40872,7 +40886,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Vooruitzichten betrokken maar niet omgezet" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "Beveiligd documenttype" @@ -40905,9 +40919,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "Voorlopige onkostenrekening" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Voorlopige winst / verlies (Credit)" @@ -41135,8 +41149,8 @@ msgstr "Inkoopfactuur Trends" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Aankoopfactuur kan niet worden gemaakt voor een bestaand activum {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Inkoopfactuur {0} is al ingediend" @@ -41177,7 +41191,7 @@ msgstr "Inkoopfacturen" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41201,11 +41215,11 @@ msgstr "Inkoopfacturen" msgid "Purchase Order" msgstr "Inkooporder" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Bedrag bestelling" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Bedrag bestelling (bedrijfsvaluta)" @@ -41220,7 +41234,7 @@ msgstr "Bedrag bestelling (bedrijfsvaluta)" msgid "Purchase Order Analysis" msgstr "Analyse van inkooporders" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Aankooporderdatum" @@ -41269,8 +41283,8 @@ msgid "Purchase Order Required" msgstr "Inkooporder verplicht" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Inkooporder vereist voor artikel {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41329,8 +41343,8 @@ msgid "Purchase Orders to Receive" msgstr "Te ontvangen inkooporders" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Inkooporders {0} zijn niet gekoppeld" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41419,8 +41433,8 @@ msgid "Purchase Receipt Required" msgstr "Ontvangstbevestiging Verplicht" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Aankoopbewijs vereist voor artikel {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41439,8 +41453,8 @@ msgid "Purchase Receipt Trends " msgstr "Ontvangstbevestiging Trends " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Aankoopbewijs heeft geen artikel waarvoor Voorbeeld behouden is ingeschakeld." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41667,7 +41681,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41686,7 +41700,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41751,7 +41765,7 @@ msgstr "Aantal na transactie" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41788,7 +41802,7 @@ msgstr "Aantal per eenheid" msgid "Qty To Manufacture" msgstr "Aantal te produceren" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "De hoeveelheid die geproduceerd moet worden ({0}) mag geen breuk zijn voor de meeteenheid {2}. Om dit toe te staan, moet u '{1}' uitschakelen in de meeteenheid {2}." @@ -41883,7 +41897,7 @@ msgstr "Te consumeren hoeveelheid" msgid "Qty to Bill" msgstr "Aantal naar factuur" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Aantal te bouwen" @@ -42069,7 +42083,7 @@ msgstr "Kwaliteitscontrole" msgid "Quality Inspection Analysis" msgstr "Kwaliteitscontrole-analyse" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42146,7 +42160,7 @@ msgstr "Kwaliteitsinspectie {0} is niet ingediend voor het artikel: {1}" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "Kwaliteitsinspectie {0} is afgekeurd voor het artikel: {1}" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Kwaliteitsinspectie(s)" @@ -42229,7 +42243,7 @@ msgstr "Kwaliteitsbeoordeling" msgid "Quality Review Objective" msgstr "Kwaliteitsbeoordeling Doelstelling" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42273,12 +42287,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42429,7 +42443,7 @@ msgstr "Hoeveelheid vereist" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42457,11 +42471,11 @@ msgstr "Hoeveelheid moet groter zijn dan 0" msgid "Quantity to Manufacture" msgstr "Te produceren hoeveelheid" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "Te produceren hoeveelheid kan niet nul zijn voor de bewerking {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Hoeveelheid voor fabricage moet groter dan 0 zijn." @@ -42469,6 +42483,10 @@ msgstr "Hoeveelheid voor fabricage moet groter dan 0 zijn." msgid "Quantity to Scan" msgstr "Aantal om te scannen" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42494,7 +42512,7 @@ msgstr "Kwart {0} {1}" msgid "Query Route String" msgstr "Queryroute-string" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "De wachtrijgrootte moet tussen de 5 en 100 liggen." @@ -42734,7 +42752,7 @@ msgstr "Opgelost door (e-mail)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42918,8 +42936,8 @@ msgid "Rate at which this tax is applied" msgstr "Tarief waartegen deze belasting wordt toegepast" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "De prijs van '{}' artikelen kan niet worden gewijzigd." +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43237,7 +43255,7 @@ msgstr "Reden om in de wacht te zetten" msgid "Reason for Failure" msgstr "Reden voor mislukking" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Reden voor inhouding" @@ -43479,8 +43497,8 @@ msgstr "Ontvanger Lijst is leeg. Maak Ontvanger Lijst" msgid "Receiving" msgstr "Ontvangst" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Recente bestellingen" @@ -43656,6 +43674,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43706,7 +43728,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Recursie over Qty kan niet kleiner zijn dan 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "Recursieve kortingen met gemengde voorwaarden worden niet door het systeem ondersteund." @@ -43786,7 +43808,7 @@ msgstr "Referentie #" msgid "Reference #{0} dated {1}" msgstr "Referentie #{0} gedateerd {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Referentiedatum voor korting bij vroegtijdige betaling" @@ -44078,8 +44100,8 @@ msgid "Rejected Warehouse" msgstr "Afgekeurd magazijn" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Het afgekeurde magazijn en het geaccepteerde magazijn kunnen niet hetzelfde zijn." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44185,7 +44207,7 @@ msgstr "Opmerking" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44224,7 +44246,7 @@ msgstr "Nulwaarden verwijderen" msgid "Remove item if charges is not applicable to that item" msgstr "Verwijder het artikel als er geen kosten aan verbonden zijn." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Verwijderde items met geen verandering in de hoeveelheid of waarde." @@ -44376,7 +44398,7 @@ msgstr "Rapporteer fout" msgid "Report Line Items" msgstr "Rapportregelitems" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44459,7 +44481,7 @@ msgstr "Foutlogboek voor herplaatsing" msgid "Repost Item Valuation" msgstr "Waardebepaling van het opnieuw plaatsen" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "De herboeking van de artikelwaardering is opnieuw gestart voor geselecteerde mislukte records." @@ -44505,6 +44527,15 @@ msgstr "Het opnieuw plaatsen is op de achtergrond gestart." msgid "Reposting Data File" msgstr "Het gegevensbestand opnieuw plaatsen" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44589,7 +44620,7 @@ msgstr "Vereiste datum" msgid "Reqd Qty (BOM)" msgstr "Vereiste hoeveelheid (BOM)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Op datum vereist" @@ -44705,11 +44736,11 @@ msgstr "Aangevraagde Hoeveelheid" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Gevraagde hoeveelheid: De hoeveelheid die u wilt kopen, maar nog niet hebt besteld." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Verzoekende site" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "aanvrager" @@ -44888,6 +44919,10 @@ msgstr "Reservevoorraad" msgid "Reserve Warehouse" msgstr "Reserveermagazijn" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "Reserve voor grondstoffen" @@ -44926,8 +44961,8 @@ msgid "Reserved Qty" msgstr "Gereserveerde hoeveelheid" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "Gereserveerde hoeveelheid ({0}) mag geen breuk zijn. Om dit toe te staan, moet u '{1}' in UOM {3} uitschakelen." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Gereserveerde hoeveelheid ({0}) mag geen breuk zijn. Om dit toe te staan, moet u '{1}' in UOM {2} uitschakelen." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44971,7 +45006,7 @@ msgstr "Gereserveerde Hoeveelheid" msgid "Reserved Quantity for Production" msgstr "Gereserveerde hoeveelheid voor productie" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Gereserveerd serienummer." @@ -44987,13 +45022,13 @@ msgstr "Gereserveerd serienummer." #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Gereserveerde voorraad" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Gereserveerde voorraad voor de batch" @@ -45487,6 +45522,10 @@ msgstr "De geretourneerde wisselkoers is noch een geheel getal, noch een decimaa msgid "Returns" msgstr "opbrengst" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45911,11 +45950,11 @@ msgstr "Routeringsnaam" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Rij # {0}: Kan niet meer dan terugkeren {1} voor post {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Rijnummer {0}: Voeg een serienummer en batchbundel toe voor item {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "Rij # {0}: Voer de hoeveelheid in voor artikel {1} , aangezien deze niet nul is." @@ -45999,23 +46038,23 @@ msgstr "Rij #{0}: BOM niet gevonden voor FG-item {1}" msgid "Row #{0}: Batch No {1} is already selected." msgstr "Rij #{0}: Batchnummer {1} is al geselecteerd." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "Rij #{0}: Batchnummer(s) {1} maakt geen deel uit van de gekoppelde onderaannemingsopdracht. Selecteer geldige batchnummer(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Rij #{0}: Kan niet meer dan {1} toewijzen aan betalingstermijn {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "Rij #{0}: Deze productievoorraadboeking kan niet worden geannuleerd omdat de gefactureerde hoeveelheid van artikel {1} niet groter kan zijn dan de verbruikte hoeveelheid." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "Rij #{0}: Deze voorraadboeking kan niet worden geannuleerd omdat de geretourneerde hoeveelheid niet groter mag zijn dan de geleverde hoeveelheid voor artikel {1} in de gekoppelde onderaannemingsopdracht." @@ -46091,13 +46130,16 @@ msgstr "Rij #{0}: Er konden niet genoeg {1} vermeldingen worden gevonden die ove msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Rij #{0}: De cumulatieve drempelwaarde mag niet lager zijn dan de drempelwaarde voor een enkele transactie" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "Rij #{0}: Klant geleverd artikel {1} tegen onderaannemingsorder artikel {2} ({3}) kan niet meerdere keren worden toegevoegd." -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "Rij #{0}: Door de klant geleverd artikel {1} kan niet meerdere keren worden toegevoegd in het proces voor het ontvangen van onderaannemingsgoederen." @@ -46109,7 +46151,7 @@ msgstr "Rij #{0}: Door de klant aangeleverd artikel {1} kan niet meerdere keren msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "Rij #{0}: Door de klant geleverd artikel {1} bestaat niet in de tabel 'Vereiste artikelen' die is gekoppeld aan de inkooporder voor onderaanneming." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "Rij #{0}: Door de klant geleverd artikel {1} overschrijdt de beschikbare hoeveelheid via de onderaannemingsopdracht" @@ -46117,12 +46159,12 @@ msgstr "Rij #{0}: Door de klant geleverd artikel {1} overschrijdt de beschikbare msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "Rij #{0}: Door de klant geleverd artikel {1} heeft onvoldoende hoeveelheid in de onderaannemingsorder. Beschikbare hoeveelheid is {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Rij #{0}: Door de klant geleverd artikel {1} maakt geen deel uit van de onderaannemingsopdracht {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "Rij #{0}: Door de klant geleverd artikel {1} maakt geen deel uit van werkorder {2}" @@ -46134,7 +46176,7 @@ msgstr "Rij #{0}: Datums die overlappen met een andere rij in groep {1}" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Rij #{0}: Standaard stuklijst niet gevonden voor FG-item {1}" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Rij #{0}: Startdatum afschrijving is vereist" @@ -46142,6 +46184,10 @@ msgstr "Rij #{0}: Startdatum afschrijving is vereist" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Rij # {0}: Duplicate entry in Referenties {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Rij # {0}: Verwachte Afleverdatum kan niet vóór de Aankoopdatum zijn" @@ -46154,11 +46200,18 @@ msgstr "Rij #{0}: Kostenrekening niet ingesteld voor het item {1}. {2}" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "Rij #{0}: Kostenrekening {1} is niet geldig voor inkoopfactuur {2}. Alleen kostenrekeningen van niet-voorraadartikelen zijn toegestaan." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Rij #{0}: Aantal afgewerkte artikelen mag niet nul zijn" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46181,8 +46234,8 @@ msgstr "Rij #{0}: Afgerond Goed moet {1} zijn" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "Rij #{0}: Voor door de klant geleverd artikel {1}moet het bronmagazijn {2} zijn." @@ -46194,7 +46247,7 @@ msgstr "Rij #{0}: Voor {1}kunt u het referentiedocument alleen selecteren als de msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Rij #{0}: Voor {1}kunt u het referentiedocument alleen selecteren als de rekening wordt gedebiteerd." -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "Rij #{0}: De afschrijvingsfrequentie moet groter zijn dan nul" @@ -46206,6 +46259,10 @@ msgstr "Rij #{0}: Van datum mag niet vóór de einddatum liggen" msgid "Row #{0}: From Time and To Time fields are required" msgstr "Rij #{0}: De velden 'Van tijd' en 'Tot tijd' zijn verplicht." +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Rij # {0}: item toegevoegd" @@ -46234,16 +46291,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "Rij #{0}: Artikel {1} in magazijn {2}: Beschikbaar {3}, Nodig {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "Rij #{0}: Artikel {1} is geen door de klant geleverd artikel." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Rij # {0}: artikel {1} is geen geserialiseerd / batch artikel. Het kan geen serienummer / batchnummer hebben." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Rij #{0}: Artikel {1} maakt geen deel uit van de onderaannemingsopdracht {2}" @@ -46259,13 +46316,17 @@ msgstr "Rij #{0}: Artikel {1} is geen voorraadartikel" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "Rij #{0}: Artikel {1} komt niet overeen. Het wijzigen van de artikelcode is niet toegestaan, voeg in plaats daarvan een nieuwe rij toe." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "Rij #{0}: Artikel {1} komt niet overeen. Het wijzigen van de artikelcode is niet toegestaan." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46275,15 +46336,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Rij # {0}: Journal Entry {1} heeft geen account {2} of al vergeleken met een ander voucher" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "Rij #{0}: De volgende afschrijvingsdatum mag niet vóór de datum van beschikbaarheid voor gebruik liggen." -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "Rij #{0}: De volgende afschrijvingsdatum mag niet vóór de aankoopdatum liggen." @@ -46295,24 +46356,48 @@ msgstr "Rij # {0}: Niet toegestaan om van leverancier te veranderen als bestelli msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Rij #{0}: Alleen {1} beschikbaar om te reserveren voor item {2}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "Rij #{0}: De beginwaarde van de geaccumuleerde afschrijving moet kleiner dan of gelijk aan {1} zijn." -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "Rij #{0}: Overmatig verbruik van door de klant geleverd artikel {1} ten opzichte van werkorder {2} is niet toegestaan in het proces van onderaanneming." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Rij #{0}: Selecteer de artikelcode in de assemblageonderdelen" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Rij #{0}: Selecteer het stuklijstnummer in de assemblageonderdelen" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "Rij #{0}: Selecteer het eindproduct waarvoor dit door de klant aangeleverde artikel zal worden gebruikt." @@ -46328,6 +46413,10 @@ msgstr "Rij # {0}: Stel nabestelling hoeveelheid" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Rij #{0}: Werk de rekening voor uitgestelde opbrengsten/kosten in de artikelregel of de standaardrekening in de bedrijfsstamgegevens bij." +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46347,8 +46436,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Rij #{0}: Aantal moet een positief getal zijn" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Rij #{0}: De hoeveelheid moet kleiner of gelijk zijn aan de beschikbare hoeveelheid om te reserveren (werkelijke hoeveelheid - gereserveerde hoeveelheid) {1} voor artikel {2} tegen batch {3} in magazijn {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46370,7 +46459,7 @@ msgstr "Rij #{0}: De hoeveelheid mag geen niet-positief getal zijn. Verhoog de h msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Rij # {0}: Artikelhoeveelheid voor item {1} kan niet nul zijn." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "Rij #{0}: De hoeveelheid van artikel {1} mag niet meer zijn dan {2} {3} ten opzichte van de onderaannemingsopdracht {4}" @@ -46378,17 +46467,17 @@ msgstr "Rij #{0}: De hoeveelheid van artikel {1} mag niet meer zijn dan {2} {3} msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Rij #{0}: De hoeveelheid die voor het artikel {1} gereserveerd moet worden, moet groter zijn dan 0." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Rij #{0}: Tarief moet hetzelfde zijn als {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Rij # {0}: Reference document moet een van Purchase Order, Purchase Invoice of Inboeken zijn" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Rij # {0}: het type referentiedocument moet een verkooporder, verkoopfactuur, journaalboeking of aanmaning zijn" @@ -46408,11 +46497,11 @@ msgstr "Rij #{0}: Reparatiekosten {1} overschrijden het beschikbare bedrag {2} v msgid "Row #{0}: Return Against is required for returning asset" msgstr "Rij #{0}: Return Against is vereist voor het retourneren van een asset" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "Rij #{0}: De geretourneerde hoeveelheid mag niet groter zijn dan de beschikbare hoeveelheid voor artikel {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "Rij #{0}: De geretourneerde hoeveelheid mag niet groter zijn dan de beschikbare hoeveelheid voor artikel {1}" @@ -46422,18 +46511,19 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "Rij #{0}: De verkoopprijs voor artikel {1} is lager dan die van {2}.\n" -"\t\t\t\t\tDe verkoopprijs van {3} zou minstens {4}moeten zijn.

                    Als alternatief\n" -"\t\t\t\t\tkunt u '{5}' in {6} uitschakelen om\n" -"\t\t\t\t\tdeze validatie te omzeilen." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "Rij #{0}: Volgorde-ID moet {1} of {2} zijn voor bewerking {3}." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Rij # {0}: Serienummer {1} hoort niet bij Batch {2}" @@ -46446,7 +46536,7 @@ msgstr "Rij #{0}: Serienummer {1} voor artikel {2} is niet beschikbaar in {3} {4 msgid "Row #{0}: Serial No {1} is already selected." msgstr "Rij #{0}: Serienummer {1} is al geselecteerd." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "Rij #{0}: Serienummer(s) {1} maken geen deel uit van de gekoppelde onderaannemingsopdracht. Selecteer de geldige serienummer(s)." @@ -46470,7 +46560,7 @@ msgstr "Rij # {0}: Stel Leverancier voor punt {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "Rij #{0}: Omdat 'Halfafgewerkte producten volgen' is ingeschakeld, kan de stuklijst {1} niet worden gebruikt voor subassemblage-onderdelen." -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Rij #{0}: Bronmagazijn moet hetzelfde zijn als klantmagazijn {1} uit de gekoppelde onderaannemingsorder." @@ -46539,7 +46629,7 @@ msgstr "Rij #{0}: Er is geen voorraad beschikbaar om te reserveren voor artikel msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "Rij #{0}: Voorraadhoeveelheid {1} ({2}) voor artikel {3} mag niet groter zijn dan {4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Rij #{0}: Het doelmagazijn moet hetzelfde zijn als het klantmagazijn {1} uit de gekoppelde onderaannemingsopdracht." @@ -46547,19 +46637,27 @@ msgstr "Rij #{0}: Het doelmagazijn moet hetzelfde zijn als het klantmagazijn {1} msgid "Row #{0}: The batch {1} has already expired." msgstr "Rij # {0}: de batch {1} is al verlopen." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Rij #{0}: Het magazijn {1} is geen ondergeschikt magazijn van een groepsmagazijn {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Rij #{0}: Tijden conflicteren met rij {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Rij #{0}: Het totale aantal afschrijvingen mag niet kleiner of gelijk zijn aan het begin van het aantal geboekte afschrijvingen." -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "Rij #{0}: Het totale aantal afschrijvingen moet groter zijn dan nul" @@ -46571,11 +46669,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "Rij #{0}: Inhoudingsbedrag {1} komt niet overeen met het berekende bedrag {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "Rij #{0}: Er bestaat een werkorder voor de volledige of gedeeltelijke hoeveelheid van artikel {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Rij #{0}: U kunt de voorraaddimensie '{1}' niet gebruiken in voorraadafstemming om de hoeveelheid of waarderingskoers te wijzigen. Voorraadafstemming met voorraaddimensies is uitsluitend bedoeld voor het uitvoeren van openingsboekingen." @@ -46583,6 +46685,19 @@ msgstr "Rij #{0}: U kunt de voorraaddimensie '{1}' niet gebruiken in voorraadafs msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Rij #{0}: U moet een activum selecteren voor item {1}." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Row # {0}: {1} kan niet negatief voor producten van post {2}" @@ -46599,6 +46714,14 @@ msgstr "Rij #{0}: {1} is vereist om de openingsfacturen {2} te maken" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Rij #{0}: {1} van {2} moet {3}zijn. Werk de {1} bij of selecteer een ander account." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46639,71 +46762,10 @@ msgstr "Rij #{idx}: {from_warehouse_field} en {to_warehouse_field} mogen niet he msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "Rij #{idx}: {schedule_date} mag niet vóór {transaction_date} komen." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Rij # {}: valuta van {} - {} komt niet overeen met de valuta van het bedrijf." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Rij #{}: Financieel boek mag niet leeg zijn, aangezien u er meerdere gebruikt." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Rij # {}: POS-factuur {} is {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Rij # {}: POS-factuur {} is niet gericht op klant {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Rij # {}: POS-factuur {} is nog niet verzonden" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Rij #{}: Wijs de taak toe aan een lid." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Rijnummer {}: Gebruik een ander financieel boek." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Rij # {}: serienummer {} kan niet worden geretourneerd omdat deze niet is verwerkt in de originele factuur {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Rijnummer {}: De originele factuur {} van de retourfactuur {} is niet geconsolideerd." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Regelnummer {}: U kunt geen positieve aantallen toevoegen aan een retourfactuur. Verwijder artikel {} om de retourzending te voltooien." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Rij #{}: item {} is al geselecteerd." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Rij # {}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Rij # {}: {} {} bestaat niet." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Rijnummer {}: {} {} behoort niet tot bedrijf {}. Selecteer een geldige {}." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Rijnummer {0}: Magazijn is vereist. Stel een standaardmagazijn in voor artikel {1} en bedrijf {2}" @@ -46716,10 +46778,6 @@ msgstr "Rij {0}: bewerking vereist ten opzichte van het artikel met de grondstof msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "De hoeveelheid die in rij {0} is verzameld, is kleiner dan de vereiste hoeveelheid; er is een extra hoeveelheid van {1} {2} nodig." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Rij {0}# Item {1} niet gevonden in tabel 'Geleverde grondstoffen' in {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Rij {0}: Geaccepteerde hoeveelheid en afgewezen hoeveelheid kunnen niet tegelijkertijd nul zijn." @@ -46740,19 +46798,19 @@ msgstr "Rij {0}: Advance tegen Klant moet krediet" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Rij {0}: Advance tegen Leverancier worden debiteren" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Rij {0}: Toegewezen bedrag {1} moet kleiner of gelijk zijn aan het openstaande factuurbedrag {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Rij {0}: Toegewezen bedrag {1} moet kleiner of gelijk zijn aan het resterende betalingsbedrag {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Rij {0}: Omdat {1} is ingeschakeld, kunnen er geen grondstoffen worden toegevoegd aan item {2} . Gebruik item {3} om grondstoffen te verbruiken." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Rij {0}: Bill of Materials niet gevonden voor het artikel {1}" @@ -46768,11 +46826,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Rij {0}: Conversie Factor is verplicht" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Rij {0}: Kostenplaats {1} behoort niet tot bedrijf {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Rij {0}: Kostencentrum is vereist voor een item {1}" @@ -46800,24 +46858,24 @@ msgstr "Rij {0}: Het leveringsmagazijn mag niet hetzelfde zijn als het klantmaga msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Rij {0}: de vervaldatum in de tabel met betalingsvoorwaarden mag niet vóór de boekingsdatum liggen" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Rij {0}: Ofwel het artikel op de leveringsbon, ofwel de referentie naar het verpakte artikel is verplicht." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Rij {0}: Wisselkoers is verplicht" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "Rij {0}: De verwachte waarde na gebruiksduur kan niet negatief zijn" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "Rij {0}: De verwachte waarde na gebruiksduur moet lager zijn dan het netto aankoopbedrag" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46838,6 +46896,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Rij {0}: Van tijd en binnen Tijd is verplicht." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Rij {0}: Van tijd en de tijd van de {1} overlapt met {2}" @@ -46859,8 +46920,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Rij {0}: Invalid referentie {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Rij {0}: Artikelbelastingsjabloon bijgewerkt volgens geldigheidsdatum en toegepast tarief" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46890,7 +46951,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Rij {0}: De verpakte hoeveelheid moet gelijk zijn aan de hoeveelheid in {1}." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Rij {0}: Pakbon is al aangemaakt voor artikel {1}." @@ -46914,7 +46975,7 @@ msgstr "Rij {0}: Betaling tegen Sales / Purchase Order moet altijd worden gemark msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Rij {0}: Kijk 'Is Advance' tegen Account {1} als dit is een voorschot binnenkomst." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Rij {0}: Geef een geldige leveringsbon- of verpakkingsartikelreferentie op." @@ -46922,14 +46983,14 @@ msgstr "Rij {0}: Geef een geldige leveringsbon- of verpakkingsartikelreferentie msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Rij {0}: Selecteer een stuklijst voor item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Rij {0}: Selecteer een actieve stuklijst voor item {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Rij {0}: Selecteer een geldige stuklijst voor item {1}." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Rij {0}: Stel in op Belastingvrijstellingsreden in omzetbelasting en kosten" @@ -46946,11 +47007,11 @@ msgstr "Rij {0}: stel de juiste code in op Betalingswijze {1}" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Rij {0}: Het project moet hetzelfde zijn als het project dat in het urenoverzicht is ingesteld: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Rij {0}: Inkoopfactuur {1} heeft geen invloed op de voorraad." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Rij {0}: De hoeveelheid mag niet groter zijn dan {1} voor het artikel {2}." @@ -46958,7 +47019,7 @@ msgstr "Rij {0}: De hoeveelheid mag niet groter zijn dan {1} voor het artikel {2 msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Rij {0}: Aantal in voorraad UOM mag niet nul zijn." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Rij {0}: Aantal moet groter zijn dan 0." @@ -46970,7 +47031,7 @@ msgstr "Rij {0}: De hoeveelheid mag niet negatief zijn." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "Rij {0}: Verkoopfactuur {1} is al aangemaakt voor {2}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46995,10 +47056,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "Rij {0}: Het volledige uitgavenbedrag voor rekening {1} in {2} is reeds toegewezen." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Rij {0}: het artikel {1}, de hoeveelheid moet een positief getal zijn" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Rij {0}: De {3} rekening {1} behoort niet tot het bedrijf {2}" @@ -47051,15 +47112,19 @@ msgstr "Rij {0}: {1} {2} mag niet hetzelfde zijn als {3} (Partijrekening) {4}" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Rij {0}: {1} {2} niet overeenkomt met {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Rij {0}: {2} Item {1} bestaat niet in {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Rij {1}: hoeveelheid ({0}) mag geen breuk zijn. Schakel '{2}' uit in maateenheid {3} om dit toe te staan." @@ -47098,8 +47163,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Rijen: {0} hebben 'Betalingsinvoer' als referentietype. Dit mag niet handmatig worden ingesteld." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Rijen: {0} in sectie {1} zijn ongeldig. De referentienaam moet verwijzen naar een geldige betalingsboeking of journaalpost." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47159,10 +47224,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47230,7 +47291,7 @@ msgstr "SLA voldaan op status" msgid "SLA Paused On" msgstr "SLA gepauzeerd op" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "SLA is opgeschort sinds {0}" @@ -47529,8 +47590,8 @@ msgid "Sales Invoice is not submitted" msgstr "De verkoopfactuur is niet ingediend." #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "De verkoopfactuur is niet aangemaakt door gebruiker {}." +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47746,8 +47807,8 @@ msgstr "Verkooporder {0} bestaat al voor de inkooporder van de klant {1}. Om mee msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48154,7 +48215,7 @@ msgstr "Hetzelfde artikel" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Dezelfde artikel- en magazijncombinatie is al ingevoerd." @@ -48186,7 +48247,7 @@ msgstr "Monsterbewaringsmagazijn" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Monster grootte" @@ -48296,7 +48357,7 @@ msgstr "Gescande hoeveelheid" msgid "Schedule Date" msgstr "Plan datum" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48307,7 +48368,7 @@ msgstr "" msgid "Scheduled Date" msgstr "Geplande Datum" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48595,7 +48656,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "Selecteer de boekhoudkundige dimensie." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Selecteer alternatief item" @@ -48616,7 +48677,7 @@ msgid "Select BOM and Qty for Production" msgstr "Selecteer BOM en Aantal voor productie" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Selecteer batchnummer" @@ -48681,7 +48742,7 @@ msgstr "Selecteer dimensie" msgid "Select Dispatch Address " msgstr "Selecteer verzendadres " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Selecteer Medewerkers" @@ -48706,7 +48767,7 @@ msgstr "Selecteer items" msgid "Select Items based on Delivery Date" msgstr "Selecteer items op basis van leveringsdatum" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "Selecteer artikelen voor kwaliteitscontrole" @@ -48736,7 +48797,7 @@ msgstr "Selecteer het adres van de werknemer" msgid "Select Loyalty Program" msgstr "Selecteer Loyaliteitsprogramma" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48750,13 +48811,13 @@ msgid "Select Quantity" msgstr "Kies aantal" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Selecteer serienummer" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Selecteer serienummer en batchnummer." @@ -48847,6 +48908,7 @@ msgid "Select an Item Group." msgstr "Selecteer een artikelgroep." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Selecteer een account om in rekeningsvaluta af te drukken" @@ -48989,10 +49051,14 @@ msgstr "Geselecteerde vouchers" msgid "Selected date is" msgstr "De geselecteerde datum is" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "Het geselecteerde document moet in de ingediende staat zijn." +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49140,7 +49206,7 @@ msgid "Send Emails to Suppliers" msgstr "Stuur e-mails naar leveranciers" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "SMS versturen" @@ -49224,7 +49290,7 @@ msgstr "Serienummer / Batchbundel ontbreekt" msgid "Serial / Batch No" msgstr "Serie-/batchnummer" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Serie-/batchnummers" @@ -49281,10 +49347,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49326,6 +49393,10 @@ msgstr "Serienummer / Batch" msgid "Serial No Already Assigned" msgstr "Serienummer reeds toegewezen" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Serienummer tellen" @@ -49343,7 +49414,7 @@ msgstr "Serienummer grootboek" msgid "Serial No Range" msgstr "Serienummerbereik" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "Serienummer gereserveerd" @@ -49388,8 +49459,8 @@ msgid "Serial No and Batch" msgstr "Serienummer en batch" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "Het serienummer en de batchselector kunnen niet worden gebruikt wanneer 'Gebruik serie-/batchvelden' is ingeschakeld." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49400,7 +49471,7 @@ msgstr "Het serienummer en de batchselector kunnen niet worden gebruikt wanneer msgid "Serial No and Batch Traceability" msgstr "Traceerbaarheid van serienummer en batch" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "Serienummer is verplicht" @@ -49420,22 +49491,19 @@ msgstr "Serienummer {0} is al gescand" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Serienummer {0} behoort niet tot Vrachtbrief {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Serienummer {0} behoort niet tot Artikel {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Serienummer {0} bestaat niet" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "Serienummer {0} bestaat niet" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "Serienummer {0} is reeds geleverd. U kunt deze niet opnieuw gebruiken in de invoer voor fabricage/herverpakking." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49449,25 +49517,26 @@ msgstr "Serienummer {0} is al toegewezen aan klant {1}. Kan alleen worden gereto msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Serienummer {0} is niet aanwezig in {1} {2}, daarom kunt u het niet retourneren voor {1} {2}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Serienummer {0} valt binnen onderhoudscontract tot {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Serienummer {0} is onder garantie tot {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Serienummer {0} niet gevonden" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Serienummer: {0} is al verwerkt in een andere POS-factuur." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49487,7 +49556,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "Serienummers zijn succesvol aangemaakt." -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Serienummers zijn gereserveerd in de voorraadreservering; u moet deze reservering deblokkeren voordat u verder kunt gaan." @@ -49588,6 +49657,10 @@ msgstr "Seriële en batchbundel {0} is niet ingediend" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49636,7 +49709,7 @@ msgstr "Serie- en batchreservering" msgid "Serial and Batch Summary" msgstr "Serie- en batchoverzicht" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Serienummer {0} meer dan eens ingevoerd" @@ -49644,122 +49717,12 @@ msgstr "Serienummer {0} meer dan eens ingevoerd" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "Serienummers niet beschikbaar voor artikel {0} in magazijn {1}. Probeer een ander magazijn te gebruiken." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Reeksen" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Serie voor afschrijvingsboekingen (journaalposten)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Reeks is verplicht" @@ -49841,7 +49804,7 @@ msgid "Service Item {0} is disabled." msgstr "Service-item {0} is uitgeschakeld." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "Serviceartikel {0} moet een niet-voorraadartikel zijn." @@ -49950,12 +49913,12 @@ msgid "Service Stop Date" msgstr "Einddatum van de dienstverlening" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "De service-einddatum kan niet na de einddatum van de service liggen" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "De service-einddatum mag niet vóór de startdatum van de service liggen" @@ -49979,7 +49942,7 @@ msgstr "Voorschotten instellen en toewijzen (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Stel het basistarief handmatig in" @@ -49994,7 +49957,7 @@ msgstr "Standaardleverancier instellen" msgid "Set Delivery Warehouse" msgstr "Set Delivery Warehouse" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50099,7 +50062,7 @@ msgstr "Stel de naamgeving van seriële en batchbundels in op basis van de naamg #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50117,7 +50080,7 @@ msgstr "Setleverancier" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50143,7 +50106,7 @@ msgstr "Instellen als gesloten" msgid "Set as Completed" msgstr "Instellen als voltooid" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Instellen als verloren" @@ -50241,15 +50204,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Stel {0} in in activacategorie {1} voor bedrijf {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Stel {0} in in activacategorie {1} of bedrijf {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Stel {0} in bedrijf {1} in" @@ -50317,7 +50280,7 @@ msgid "Setting up company" msgstr "Bedrijf oprichten" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "Instellen {0} is vereist" @@ -50745,6 +50708,7 @@ msgid "Show Completed" msgstr "Show voltooid" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "Toon credit/debet in de valuta van het bedrijf." @@ -50947,7 +50911,7 @@ msgstr "Toon alleen de eerstvolgende termijn" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Toon lopende inzendingen" @@ -51052,11 +51016,11 @@ msgstr "Eenvoudige Python-formule toegepast op velden in de leesgegevens.
                    Nu msgid "Simultaneous" msgstr "Gelijktijdig" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Omdat er een procesverlies is van {0} eenheden voor het eindproduct {1}, moet u de hoeveelheid met {0} eenheden verminderen voor het eindproduct {1} in de artikeltabel." @@ -51117,7 +51081,7 @@ msgstr "Materiaaloverdracht naar WIP overslaan" msgid "Skip Material Transfer to WIP Warehouse" msgstr "Materiaaloverdracht naar WIP-magazijn overslaan" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "Overgeslagen {0} DocType(s):
                    {1}" @@ -51173,8 +51137,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "Er ontbreken enkele verplichte bedrijfsgegevens. U hebt geen toestemming om deze bij te werken. Neem contact op met uw systeembeheerder." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Er is iets misgegaan, probeer het opnieuw." +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51241,7 +51205,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51278,8 +51242,8 @@ msgstr "Brontype" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51409,7 +51373,7 @@ msgstr "Gesplitste probleem" msgid "Split Qty" msgstr "Gesplitste hoeveelheid" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "De gesplitste hoeveelheid moet kleiner zijn dan de hoeveelheid activa." @@ -51422,7 +51386,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Splitsen van {0} {1} in {2} rijen volgens de betalingsvoorwaarden" @@ -51475,7 +51444,7 @@ msgstr "Artiestennaam" msgid "Stale Days" msgstr "Oude dagen" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Het aantal dagen dat verstreken is, moet beginnen bij 1." @@ -51540,10 +51509,26 @@ msgstr "Standaard belastingsjabloon dat kan worden toegepast op alle verkooptran msgid "Standing Name" msgstr "Standnaam" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Start / Hervatten" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Startdatum kan niet vóór de huidige datum liggen" @@ -51573,7 +51558,7 @@ msgstr "Starttijd mag niet groter of gelijk zijn aan eindtijd voor {0}." msgid "Start Timer" msgstr "Start timer" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51602,10 +51587,14 @@ msgstr "Startdatum moet kleiner zijn dan einddatum voor Artikel {0}" msgid "Start date should be less than end date for task {0}" msgstr "Startdatum moet minder zijn dan de einddatum voor taak {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "Een achtergrondtaak gestart om {1} {0}te maken. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51686,7 +51675,7 @@ msgstr "Statusillustratie" msgid "Status and Reference" msgstr "Status en referentie" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Status moet worden geannuleerd of voltooid" @@ -51814,8 +51803,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "Er bestaat al een voorraadafsluitingsboeking {0} voor het geselecteerde datumbereik." #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "De transactie voor het afsluiten van de voorraad {0} is in de wachtrij geplaatst voor verwerking. Het systeem heeft enige tijd nodig om deze te voltooien." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51896,17 +51885,21 @@ msgstr "Voorraadboekingsartikel" msgid "Stock Entry Type" msgstr "Type voorraadinvoer" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Voorraadinvoer is al gemaakt op basis van deze keuzelijst" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Stock Entry {0} aangemaakt" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Stock Entry {0} heeft aangemaakt" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52072,7 +52065,7 @@ msgstr "Verwachte voorraad hoeveelheid" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52155,7 +52148,7 @@ msgstr "Instellingen voor het opnieuw plaatsen van aandelen" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52180,15 +52173,15 @@ msgstr "Voorraadreservering" msgid "Stock Reservation Entries Cancelled" msgstr "Aandelenreserveringsinschrijvingen geannuleerd" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Aangemaakte reserveringsposten voor voorraden" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "Aangemaakte voorraadreserveringsboekingen" @@ -52358,7 +52351,7 @@ msgstr "Aandelentransacties" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52517,9 +52510,9 @@ msgstr "De voorraad is vrijgegeven voor werkorder {0}." msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "Artikel {0} is niet op voorraad in magazijn {1}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "De voorraad voor artikelcode {0} onder magazijn {1}is onvoldoende. Beschikbare hoeveelheid {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52537,7 +52530,7 @@ msgstr "Aandelentransacties die ouder zijn dan de genoemde datum kunnen niet mee msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "Voorraad wordt gereserveerd bij indiening van Inkoopbon die is aangemaakt op basis van materiaalaanvraag voor verkooporder." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "Voorraad/boekhouding kan niet worden geblokkeerd omdat de verwerking van terugwerkende boekingen nog gaande is. Probeer het later opnieuw." @@ -52552,7 +52545,7 @@ msgstr "Steen" msgid "Stop Reason" msgstr "Stop reden" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Stopped Work Order kan niet geannuleerd worden, laat het eerst annuleren om te annuleren" @@ -52560,7 +52553,7 @@ msgstr "Stopped Work Order kan niet geannuleerd worden, laat het eerst annuleren #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Winkels" @@ -52774,7 +52767,7 @@ msgstr "Omrekeningsfactor onderaanneming" msgid "Subcontracting Delivery" msgstr "Levering via onderaanneming" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52846,7 +52839,7 @@ msgstr "Onderbesteding Inkomende Order Serviceartikel" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52884,7 +52877,7 @@ msgstr "Ondercontracteringsopdracht Serviceartikel" msgid "Subcontracting Order Supplied Item" msgstr "Ondercontractuele opdracht, geleverd artikel" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Ondercontracteringsopdracht {0} aangemaakt." @@ -52958,7 +52951,7 @@ msgstr "Retourzending onderaanneming" msgid "Subcontracting Sales Order" msgstr "Verkooporder voor onderaanneming" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52977,7 +52970,7 @@ msgstr "" msgid "Subdivision" msgstr "Onderverdeling" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Actie verzenden mislukt" @@ -53006,7 +52999,7 @@ msgstr "Dien deze werkbon in voor verdere verwerking." msgid "Submit your Quotation" msgstr "Dien uw offerte in" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53148,7 +53141,7 @@ msgstr "Succesinstellingen" msgid "Successful" msgstr "Succesvol" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Succesvol Afgeletterd" @@ -53326,7 +53319,7 @@ msgstr "Meegeleverde Aantal" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53508,7 +53501,7 @@ msgstr "Factuurdatum Leverancier" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Factuurnr. Leverancier" @@ -53656,7 +53649,7 @@ msgstr "Vergelijking van offertes van leveranciers" msgid "Supplier Quotation Item" msgstr "Leverancier Offerte Artikel" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Offerte van leverancier {0} gemaakt" @@ -53841,10 +53834,6 @@ msgstr "Ondersteuningsteam" msgid "Support Tickets" msgstr "Ondersteuning tickets" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "Vermoedelijk kortingsbedrag" @@ -53931,7 +53920,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "Samenvatting van de TDS-berekening" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "Ingehouden bronbelasting" @@ -53992,8 +53981,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "Doelactiva {0} behoren niet tot bedrijf {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "Doelactiva {0} moeten samengestelde activa zijn." +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54102,11 +54091,11 @@ msgstr "Link naar het adres van het Target-magazijn" msgid "Target Warehouse Reservation Error" msgstr "Fout bij het reserveren van het doelmagazijn" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "Het doelmagazijn voor het eindproduct moet hetzelfde zijn als het magazijn voor het eindproduct {1} in de werkorder {2} die is gekoppeld aan de inkomende order voor de onderaanneming." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "Het doelmagazijn voor het eindproduct moet hetzelfde zijn als het magazijn voor het eindproduct {0} in de werkorder {1} die is gekoppeld aan de inkomende order voor de onderaanneming." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "Het doelmagazijn is vereist voordat u kunt indienen." @@ -54582,7 +54571,7 @@ msgstr "Belasting wordt alleen ingehouden voor bedragen die de cumulatieve dremp #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Belastbaar bedrag" @@ -54794,7 +54783,7 @@ msgstr "Televisie" msgid "Template Item" msgstr "Sjabloonitem" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Sjabloonitem geselecteerd" @@ -55101,23 +55090,27 @@ msgstr "Tesla" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "Tekst die op de jaarrekening wordt weergegeven (bijv. 'Totale omzet', 'Kas en liquide middelen')" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "Het 'Van pakketnummer' veld mag niet leeg zijn of de waarde is kleiner dan 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "De toegang tot offerteaanvragen via de portal is uitgeschakeld. Om toegang toe te staan, schakelt u deze in via de portaalinstellingen." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "De stuklijst die vervangen zal worden" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "De batch {0} heeft een negatieve batchhoeveelheid {1}. Om dit te corrigeren, ga naar de batch en klik op Batchhoeveelheid opnieuw berekenen. Als het probleem zich blijft voordoen, maak dan een inkomende boeking aan." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "De campagne '{0}' bestaat al voor de {1} '{2}'" @@ -55142,6 +55135,10 @@ msgstr "De grootboekboekingen en eindsaldi worden op de achtergrond verwerkt; di msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "De GL-invoer wordt op de achtergrond geannuleerd, dit kan een paar minuten duren." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Het loyaliteitsprogramma is niet geldig voor het geselecteerde bedrijf" @@ -55159,9 +55156,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "De picklijst met voorraadreserveringen kan niet worden bijgewerkt. Als u wijzigingen wilt aanbrengen, raden we u aan de bestaande voorraadreserveringen te annuleren voordat u de picklijst bijwerkt." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "De hoeveelheid procesverlies is gereset volgens de werkbonnen." +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55171,11 +55171,15 @@ msgstr "De verkoper is verbonden met {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Het serienummer op rij #{0}: {1} is niet beschikbaar in magazijn {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Het serienummer {0} is gereserveerd voor de {1} {2} en kan niet voor andere transacties worden gebruikt." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "De Serial and Batch Bundle {0} is niet geldig voor deze transactie. Het 'Type of Transaction' moet 'Outward' zijn in plaats van 'Inward' in Serial and Batch Bundle {0}." @@ -55224,15 +55228,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "De voltooide hoeveelheid {0} van een bewerking {1} kan niet groter zijn dan de voltooide hoeveelheid {2} van een vorige bewerking {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "De valuta van factuur {} ({}) verschilt van de valuta van deze aanmaning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "De huidige POS-openingspagina is verouderd. Sluit deze en maak een nieuwe aan." @@ -55281,6 +55285,10 @@ msgstr "Het veld Naar aandeelhouder mag niet leeg zijn" msgid "The field {0} in row {1} is not set" msgstr "Het veld {0} in rij {1} is niet ingesteld." +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "De velden Van Aandeelhouder en Aandeelhouder mogen niet leeg zijn" @@ -55302,9 +55310,9 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "De folionummers komen niet overeen" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "De volgende artikelen, waarvoor opbergregels gelden, konden niet worden geplaatst:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55331,8 +55339,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "De volgende medewerkers rapporteren momenteel nog aan {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "De volgende ongeldige prijsregels worden verwijderd:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55343,7 +55351,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "De volgende rijen zijn duplicaten:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "De volgende {0} zijn gemaakt: {1}" @@ -55379,8 +55387,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "De items {items} zijn niet gemarkeerd als {type_of} item. Je kunt ze inschakelen als {type_of} item via hun itemmasters." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "De taakkaart {0} bevindt zich in de status {1} en u kunt deze niet voltooien." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55417,12 +55425,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "De bewerking {0} kan niet meerdere keren optellen." +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "De bewerking {0} kan niet de subbewerking zijn." +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55470,6 +55478,10 @@ msgstr "Het percentage waarmee u meer mag ontvangen of leveren dan de bestelde h msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "Het percentage dat u meer mag overboeken dan de bestelde hoeveelheid. Als u bijvoorbeeld 100 eenheden hebt besteld en uw overboekingslimiet 10% is, mag u 110 eenheden overboeken." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55479,7 +55491,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "De gereserveerde voorraad wordt vrijgegeven zodra u de artikelen bijwerkt. Weet u zeker dat u wilt doorgaan?" @@ -55496,8 +55508,8 @@ msgid "The selected BOMs are not for the same item" msgstr "De geselecteerde stuklijsten zijn niet voor hetzelfde item" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Het geselecteerde wijzigingsaccount {} behoort niet tot Bedrijf {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55513,8 +55525,8 @@ msgstr "De verkoper en de koper kunnen niet hetzelfde zijn" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "De seriële en batchbundel {0} is niet gekoppeld aan {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55532,11 +55544,11 @@ msgstr "De aandelen bestaan al" msgid "The shares don't exist with the {0}" msgstr "De shares bestaan niet met de {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "De voorraad van het artikel {0} in het magazijn {1} was negatief op de {2}. U dient een positieve boeking {3} te maken vóór de datum {4} en tijd {5} om de juiste waarderingskoers te boeken. Raadpleeg voor meer informatie de documentatie ." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "De voorraad van het artikel {0} in het magazijn {1} was negatief op de {2}. U dient een positieve boeking {3} te maken vóór de datum {4} en tijd {5} om de juiste waarderingskoers te boeken. Raadpleeg voor meer informatie de documentatie ." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "De volgende artikelen en magazijnen zijn gereserveerd. Deblokkeer deze reservering om de voorraadafstemming te voltooien: {0}

                    {1}" @@ -55558,17 +55570,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "Het systeem genereert op basis van deze instelling een verkoopfactuur of een kassabonfactuur via de kassainterface. Voor transacties met een hoog volume wordt het gebruik van de kassabon aanbevolen." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "De taak is in de wacht gezet als achtergrondtaak. Als er een probleem is met de verwerking op de achtergrond, zal het systeem een opmerking toevoegen over de fout bij deze voorraadafstemming en terugkeren naar de conceptfase" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "De taak is als achtergrondtaak in de wachtrij geplaatst. Als er zich een probleem voordoet tijdens de verwerking op de achtergrond, voegt het systeem een opmerking over de fout toe aan deze voorraadafstemming en keert terug naar de status 'Ingediend'." #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "De totale uitgifte-/overdrachtshoeveelheid {0} in materiaalaanvraag {1} mag niet groter zijn dan de toegestane aangevraagde hoeveelheid {2} voor artikel {3}." +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55606,7 +55618,7 @@ msgstr "Gebruikers met deze rol mogen een aandelentransactie aanmaken/wijzigen, msgid "The value of {0} differs between Items {1} and {2}" msgstr "De waarde van {0} verschilt tussen items {1} en {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "De waarde {0} is al toegewezen aan een bestaand item {1}." @@ -55630,7 +55642,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "De {0} ({1}) moet gelijk zijn aan {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "De {0} bevat artikelen met een eenheidsprijs." @@ -55638,7 +55650,7 @@ msgstr "De {0} bevat artikelen met een eenheidsprijs." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "Het voorvoegsel {0} '{1}' bestaat al. Wijzig de serienummerreeks, anders krijgt u een foutmelding 'Dubbele invoer'." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "De {0} {1} is succesvol aangemaakt" @@ -55646,6 +55658,10 @@ msgstr "De {0} {1} is succesvol aangemaakt" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "De {0} {1} komt niet overeen met de {0} {2} in de {3} {4}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "De {0} {1} wordt gebruikt om de waarderingskosten voor het eindproduct te berekenen {2}." @@ -55654,7 +55670,7 @@ msgstr "De {0} {1} wordt gebruikt om de waarderingskosten voor het eindproduct t msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "Vervolgens worden prijsregels gefilterd op basis van klant, klantgroep, regio, leverancier, leverancierstype, campagne, verkooppartner, enzovoort." -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Er zijn actief onderhoud of reparaties aan het activum. U moet ze allemaal invullen voordat u het activum annuleert." @@ -55666,7 +55682,7 @@ msgstr "Er zijn inconsistenties tussen de koers, aantal aandelen en het berekend msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "Er zijn grootboekposten gekoppeld aan deze rekening. Het wijzigen van {0} naar een niet-{1} in het live systeem zal leiden tot onjuiste uitvoer in het rapport 'Rekeningen {2}'." -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "Er zijn geen mislukte transacties." @@ -55683,6 +55699,10 @@ msgstr "Er zijn geen actieve boekjaren waarvoor demo-gegevens kunnen worden gege msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "Er zijn geen plaatsen meer beschikbaar op deze datum." @@ -55699,10 +55719,6 @@ msgstr "Er zijn twee opties om de waardering van aandelen te handhaven: FIFO (fi msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "Er zijn geen varianten beschikbaar voor het geselecteerde artikel." - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Er kunnen verschillende spaarfactoren zijn, afhankelijk van het totale bestede bedrag. De conversiefactor voor inwisseling blijft echter altijd hetzelfde voor alle categorieën." @@ -55731,21 +55747,21 @@ msgstr "Er is geen batch gevonden voor de {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "Deze voorraadpost moet minimaal één afgewerkt product bevatten." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Er is een fout opgetreden bij het aanmaken van de bankrekening tijdens het koppelen met Plaid." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "Er is een fout opgetreden bij het synchroniseren van transacties." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Er is een fout opgetreden bij het bijwerken van bankrekening {} tijdens het koppelen met Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55795,15 +55811,19 @@ msgstr "Samenvatting van deze maand" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "Deze inkooporder is volledig uitbesteed." -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "Deze verkooporder is volledig uitbesteed." @@ -55825,7 +55845,7 @@ msgstr "Door deze actie wordt deze account ontkoppeld van externe services die E msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "Deze activacategorie is gemarkeerd als niet-afschrijfbaar. Schakel de afschrijvingsberekening uit of kies een andere categorie." @@ -55843,7 +55863,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "Dit omvat alle scorecards die aan deze Setup zijn gekoppeld" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Dit document is dan limiet van {0} {1} voor punt {4}. Bent u het maken van een andere {3} tegen dezelfde {2}?" @@ -55985,7 +56005,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "Dit itemfilter is al toegepast voor de {0}" @@ -56049,7 +56069,7 @@ msgstr "Dit schema is aangemaakt toen Activa {0} werd geretourneerd via Verkoopf msgid "This schedule was created when Asset {0} was scrapped." msgstr "Dit schema is gemaakt toen Asset {0} werd gesloopt." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "Dit schema is gemaakt toen Asset {0} werd {1} in nieuwe Asset {2}." @@ -56076,10 +56096,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "In dit gedeelte kan de gebruiker de hoofdtekst en de afsluitende tekst van de aanmaningsbrief instellen voor het type aanmaning, gebaseerd op de taal, die vervolgens in de gedrukte versie gebruikt kan worden." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56137,8 +56157,8 @@ msgid "This will restrict user access to other employee records" msgstr "Dit beperkt de toegang van gebruikers tot andere personeelsdossiers." #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "Deze accolades worden beschouwd als materiaaloverdracht." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56266,6 +56286,12 @@ msgstr "Tijd (in minuten)" msgid "Timeline" msgstr "Tijdlijn" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56552,8 +56578,8 @@ msgid "To Time" msgstr "Tot Tijd" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "De tijd kan niet vóór de datum liggen." +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56583,15 +56609,15 @@ msgstr "Om bewerkingen toe te voegen, vinkt u het selectievakje 'Met bewerkingen msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Om de grondstoffen van uitbestede artikelen toe te voegen als de optie 'Uitgeklapte artikelen opnemen' is uitgeschakeld." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Als u overfacturering wilt toestaan, werkt u "Overfactureringstoeslag" bij in Accountinstellingen of het item." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Om overontvangst / aflevering toe te staan, werkt u "Overontvangst / afleveringstoeslag" in Voorraadinstellingen of het Artikel bij." @@ -56608,8 +56634,8 @@ msgid "To be Delivered to Customer" msgstr "Te leveren aan de klant" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "Om een {} te annuleren, moet u de POS-afsluitingsinvoer {} annuleren." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56620,8 +56646,8 @@ msgid "To create a Payment Request reference document is required" msgstr "Om een betalingsaanvraag te maken is referentie document vereist" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Om de boekhouding van kapitaalwerkzaamheden in uitvoering mogelijk te maken," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56633,8 +56659,8 @@ msgstr "Om niet-voorraadartikelen mee te nemen in de materiaalaanvraagplanning. msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Om Belastingen op te nemen in het Artikeltarief in rij {0}, moeten de belastingen in rijen {1} ook worden opgenomen" @@ -56654,7 +56680,7 @@ msgstr "Schakel '{0}' in bedrijf {1} in om dit te negeren" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Om toch door te gaan met het bewerken van deze kenmerkwaarde, moet u {0} inschakelen in Instellingen voor itemvarianten." @@ -56671,10 +56697,12 @@ msgstr "Om de factuur zonder aankoopbewijs in te dienen, stelt u {0} in als {1} msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Om een ander financieel boek te gebruiken, moet u 'Standaard FB-activa opnemen' uitschakelen." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Om een ander financieel boek te gebruiken, schakelt u 'Standaard FB-boekingen opnemen' uit." @@ -56753,8 +56781,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "Totaal (valuta van het bedrijf)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Totaal (Credit)" @@ -56796,6 +56824,22 @@ msgstr "Totale extra kosten" msgid "Total Advance" msgstr "Totale voorschot" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56843,11 +56887,11 @@ msgstr "Totaal verschuldigd bedrag" msgid "Total Amount in Words" msgstr "Totaalbedrag in woorden" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Totaal van toepassing zijnde kosten in Kwitantie Items tabel moet hetzelfde zijn als de totale belastingen en heffingen" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Totale activa" @@ -57029,7 +57073,7 @@ msgstr "Totaal geleverd bedrag" msgid "Total Demand (Past Data)" msgstr "Totale vraag (gegevens uit het verleden)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "Totaal eigen vermogen" @@ -57038,11 +57082,11 @@ msgstr "Totaal eigen vermogen" msgid "Total Estimated Distance" msgstr "Totale geschatte afstand" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Totale uitgaven" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Totale kosten dit jaar" @@ -57080,11 +57124,11 @@ msgstr "Totale wachttijd" msgid "Total Holidays" msgstr "Totaal aantal vakantiedagen" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Totaal inkomen" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Totaal inkomen dit jaar" @@ -57127,7 +57171,7 @@ msgstr "Totale kosten inclusief landing (valuta van het bedrijf)" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "Totale aansprakelijkheid" @@ -57442,7 +57486,7 @@ msgstr "Totale belastingen en heffingen" msgid "Total Taxes and Charges (Company Currency)" msgstr "Totale belastingen en heffingen (valuta van het bedrijf)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Totale tijd (in minuten)" @@ -57451,7 +57495,11 @@ msgstr "Totale tijd (in minuten)" msgid "Total Time in Mins" msgstr "Totale tijd in minuten" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Totaal Onbetaalde: {0}" @@ -57530,7 +57578,7 @@ msgstr "Totale werktijd (in uren)" msgid "Total allocated percentage for sales team should be 100" msgstr "Totaal toegewezen percentage voor verkoopteam moet 100 zijn" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Het totale bijdragepercentage moet gelijk zijn aan 100" @@ -57548,8 +57596,8 @@ msgstr "Totaal aantal uren: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Het totale betalingsbedrag mag niet groter zijn dan {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57566,9 +57614,9 @@ msgstr "De totale hoeveelheid in het leveringsschema mag niet groter zijn dan de msgid "Total {0} ({1})" msgstr "Totaal {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Totaal {0} voor alle items nul is, kan je zou moeten veranderen 'Verdeel heffingen op basis van'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57656,27 +57704,11 @@ msgstr "Statusinformatie van de tracking" msgid "Tracking URL" msgstr "Tracking-URL" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Transactie" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "Transactievaluta" @@ -57729,11 +57761,11 @@ msgstr "Transactieverwijderingsrecorditem" msgid "Transaction Deletion Record To Delete" msgstr "Transactieverwijderingsrecord om te verwijderen" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "Het transactieverwijderingsrecord {0} wordt al uitgevoerd. {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "Transactieverwijderingsrecord {0} verwijdert momenteel {1}. Documenten kunnen niet worden opgeslagen totdat de verwijdering is voltooid." @@ -58123,6 +58155,10 @@ msgstr "Proefbalans (eenvoudig)" msgid "Trial Balance for Party" msgstr "Trial Balance voor Party" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58307,7 +58343,7 @@ msgstr "BTW-instellingen van de VAE" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58329,7 +58365,7 @@ msgstr "BTW-instellingen van de VAE" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58359,7 +58395,7 @@ msgstr "BTW-instellingen van de VAE" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58423,7 +58459,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Eenheid Omrekeningsfactor" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "UOM-conversiefactor ({0} -> {1}) niet gevonden voor item: {2}" @@ -58497,7 +58533,7 @@ msgstr "Niet verzoenen" msgid "UnReconcile Allocations" msgstr "Niet-afgestemde toewijzingen" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "Het lukt niet om de DocType-gegevens op te halen. Neem contact op met de systeembeheerder." @@ -58510,10 +58546,6 @@ msgstr "Kan wisselkoers voor {0} tot {1} niet vinden voor de sleuteldatum {2}. C msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Kan wisselkoers voor {0} tot {1} niet vinden voor de sleuteldatum {2}. Creëer alsjeblieft een valuta-wisselrecord." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Kan geen score beginnen bij {0}. Je moet een score hebben van 0 tot 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "Het is niet mogelijk om een tijdslot te vinden in de komende {0} dagen voor de bewerking {1}. Verhoog de 'Capaciteitsplanning voor (dagen)' in de {2}." @@ -58538,7 +58570,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Niet-toegewezen bedrag" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Niet-toegewezen hoeveelheid" @@ -58550,8 +58582,10 @@ msgstr "Niet-gefactureerde bestellingen" msgid "Unblock Invoice" msgstr "Deblokkering factuur" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58601,7 +58635,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "Onverwacht patroon voor naamgevingsreeksen" @@ -58624,7 +58658,7 @@ msgstr "" msgid "Unit Price" msgstr "Eenheidsprijs" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Meeteenheid" @@ -58827,7 +58861,7 @@ msgstr "Niet gepland" msgid "Unsecured Loans" msgstr "Leningen zonder onderpand" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "Niet-afgestemd betalingsverzoek" @@ -58840,7 +58874,7 @@ msgstr "Niet ondertekend" msgid "Unsubscribe from this Email Digest" msgstr "Afmelden bij dit e-mailoverzicht" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58984,7 +59018,7 @@ msgstr "Update huidige voorraad" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59048,7 +59082,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "De meest recente prijs in alle stuklijsten bijwerken." -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "De optie 'Voorraad bijwerken' moet zijn ingeschakeld voor de inkoopfactuur {0}" @@ -59276,7 +59310,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "Gebruik de wisselkoers van de transactiedatum" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Gebruik een naam die verschilt van de vorige projectnaam" @@ -59365,6 +59399,10 @@ msgstr "Oplossingstijd voor de gebruiker" msgid "User has not applied rule on the invoice {0}" msgstr "Gebruiker heeft geen regel toegepast op factuur {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Gebruiker {0} bestaat niet" @@ -59377,6 +59415,10 @@ msgstr "Gebruiker {0} heeft geen standaard POS-profiel. Schakel Standaard in rij msgid "User {0} is already assigned to Employee {1}" msgstr "Gebruiker {0} is al aan Werknemer toegewezen {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Gebruiker {0}: Rol 'Medewerker zelfservice' verwijderd omdat er geen gekoppelde medewerker is." @@ -59385,10 +59427,6 @@ msgstr "Gebruiker {0}: Rol 'Medewerker zelfservice' verwijderd omdat er geen gek msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Gebruiker {0}: De rol 'Medewerker' is verwijderd omdat er geen medewerker aan is gekoppeld." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Gebruiker {} is uitgeschakeld. Selecteer een geldige gebruiker / kassier" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59681,15 +59719,15 @@ msgstr "Waardering Tarief" msgid "Valuation Rate (In / Out)" msgstr "Waarderingspercentage (In / Uit)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Waarderingstarief ontbreekt" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Waarderingstarief voor het item {0}, is vereist om boekhoudkundige gegevens voor {1} {2} te doen." @@ -59697,7 +59735,7 @@ msgstr "Waarderingstarief voor het item {0}, is vereist om boekhoudkundige gegev msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Valuation Rate is verplicht als Opening Stock ingevoerd" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Waarderingspercentage vereist voor artikel {0} op rij {1}" @@ -59707,7 +59745,7 @@ msgstr "Waarderingspercentage vereist voor artikel {0} op rij {1}" msgid "Valuation and Total" msgstr "Waardering en totaal" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "De waarderingsgraad voor door de klant aangeleverde artikelen is op nul gezet." @@ -59720,14 +59758,14 @@ msgstr "De waarderingsgraad voor door de klant aangeleverde artikelen is op nul msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Waarderingskoers voor het artikel volgens verkoopfactuur (alleen voor interne overboekingen)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Kosten van het taxatietype kunnen niet als inclusief worden gemarkeerd" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Soort waardering kosten kunnen niet zo Inclusive gemarkeerd" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59777,12 +59815,12 @@ msgstr "Waarde voorstel" msgid "Value Type" msgstr "Waardetype" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "Waarde zoals op" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Waarde voor kenmerk {0} moet binnen het bereik van {1} tot {2} in de stappen van {3} voor post {4}" @@ -59791,19 +59829,19 @@ msgstr "Waarde voor kenmerk {0} moet binnen het bereik van {1} tot {2} in de sta msgid "Value of Goods" msgstr "Waarde van goederen" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Waarde van het nieuwe geactiveerde actief" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Waarde van de nieuwe aankoop" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Waarde van het gesloopte actief" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Waarde van het verkochte actief" @@ -60279,7 +60317,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60307,7 +60345,7 @@ msgstr "" msgid "Voucher No" msgstr "Voucher nr." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Vouchernummer is verplicht" @@ -60319,7 +60357,7 @@ msgstr "Voucher Aantal" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Voucher-subtype" @@ -60351,7 +60389,7 @@ msgstr "Voucher-subtype" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60558,7 +60596,7 @@ msgstr "Magazijn is verplicht" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Magazijn niet gevonden voor account {0}" @@ -60576,16 +60614,16 @@ msgstr "Magazijnbeheer Artikelbalans Leeftijd en waarde" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Magazijn {0} kan niet worden verwijderd als er voorraad is voor artikel {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Magazijn {0} behoort niet tot bedrijf {1}." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Magazijn {0} behoort niet tot bedrijf {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "Magazijn {0} bestaat niet" @@ -60706,7 +60744,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Waarschuwing - Rij {0}: De gefactureerde uren zijn hoger dan de werkelijke uren" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "Waarschuwing voor negatieve aandelenkoers" @@ -60726,7 +60764,7 @@ msgstr "Waarschuwing: Een andere {0} # {1} bestaat tegen voorraad binnenkomst {2 msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Waarschuwing: de aangevraagde materiaalhoeveelheid is kleiner dan de minimale bestelhoeveelheid" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "Waarschuwing: De hoeveelheid overschrijdt de maximaal produceerbare hoeveelheid op basis van de hoeveelheid grondstoffen die via de onderaannemingsopdracht {0} zijn ontvangen." @@ -60880,10 +60918,6 @@ msgstr "Website Artikel Groep" msgid "Website Specifications" msgstr "Website specificaties" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61029,7 +61063,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "Wanneer er meerdere eindproducten ({0}) in een herverpakte voorraadpost staan, moet het basistarief voor alle eindproducten handmatig worden ingesteld. Om het tarief handmatig in te stellen, vinkt u het selectievakje 'Basistarief handmatig instellen' aan in de betreffende regel van het eindproduct." @@ -61205,17 +61239,17 @@ msgstr "Onderhanden Werk" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61254,7 +61288,7 @@ msgstr "Verbruikte materialen volgens werkorder" msgid "Work Order Item" msgstr "Werkorderitem" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61295,20 +61329,20 @@ msgstr "Werkorderoverzicht" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Werkopdracht kan om de volgende reden niet worden aangemaakt:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Werkopdracht kan niet worden verhoogd met een itemsjabloon" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "Werkorder is {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61329,7 +61363,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Werkorders" @@ -61354,7 +61388,7 @@ msgstr "Werk in uitvoering" msgid "Work-in-Progress Warehouse" msgstr "Magazijn in aanbouw" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Werk in uitvoering Magazijn is vereist alvorens in te dienen" @@ -61407,7 +61441,7 @@ msgstr "Werkuren" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61639,14 +61673,6 @@ msgstr "Jaar Naam" msgid "Year Start Date" msgstr "Begindatum van het jaar" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61661,8 +61687,8 @@ msgid "You are importing data for the code list:" msgstr "U importeert gegevens voor de codelijst:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "U mag niet updaten volgens de voorwaarden die zijn ingesteld in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61681,8 +61707,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "U selecteert een grotere hoeveelheid dan vereist voor het artikel {0}. Controleer of er een andere picklijst is aangemaakt voor de verkooporder {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "U kunt de originele factuur {} handmatig toevoegen om verder te gaan." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61692,19 +61718,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "U kunt deze link ook kopiëren en plakken in uw browser" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "U kunt ook een standaard CWIP-account instellen in Bedrijf {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "U kunt de bovenliggende rekening wijzigen in een balansrekening of een andere rekening selecteren." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61726,8 +61748,8 @@ msgid "You can only select one mode of payment as default" msgstr "U kunt standaard slechts één betalingsmethode selecteren" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "U kunt tot {0} inwisselen." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61745,14 +61767,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "Je kunt {0} gebruiken om later af te stemmen met {1}." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "Je kunt geen wijzigingen meer aanbrengen in de taakkaart, omdat de werkorder is afgesloten." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "Je kunt het serienummer {0} niet verwerken omdat het al in de SABB {1}is gebruikt. {2} Als je hetzelfde serienummer meerdere keren wilt invoeren, schakel dan 'Bestaand serienummer opnieuw produceren/ontvangen toestaan' in de {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "Je kunt geen loyaliteitspunten inwisselen die een hogere waarde hebben dan het totale bedrag." @@ -61761,17 +61775,17 @@ msgstr "Je kunt geen loyaliteitspunten inwisselen die een hogere waarde hebben d msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "U kunt het tarief niet wijzigen als er een stuklijst (BOM) bij een artikel is vermeld." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "U kunt geen {0} aanmaken binnen de afgesloten boekhoudperiode {1}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "U kunt geen boekingen maken of annuleren met in de afgesloten boekhoudperiode {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "U kunt tot op heden geen boekhoudkundige transacties aanmaken of wijzigen." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61782,32 +61796,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "U kunt projecttype 'extern' niet verwijderen" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "U kunt het basisknooppunt niet bewerken." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "Je kunt niet beide instellingen '{0}' en '{1} ' inschakelen." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "Je kunt niet naar buiten gaan na {0} omdat ze ofwel geleverd, inactief of in een ander magazijn zijn opgeslagen." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "U kunt niet meer dan {0} inwisselen." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "Je kunt de waarde van een artikel niet opnieuw plaatsen vóór {}" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "U kunt een Abonnement dat niet is geannuleerd niet opnieuw opstarten." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "U kunt geen lege bestelling plaatsen." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61821,6 +61843,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "U kunt dit document niet {0} omdat er na {2} nog een andere periode-afsluitingsboeking {1} bestaat." +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61831,8 +61857,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "U heeft geen rechten voor {} items in een {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61858,11 +61884,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Er zijn {} fouten opgetreden bij het aanmaken van openingsfacturen. Raadpleeg {} voor meer informatie" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "U heeft reeds geselecteerde items uit {0} {1}" @@ -61879,8 +61905,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "Je hebt {0} en {1} ingeschakeld in {2}. Dit kan ertoe leiden dat prijzen uit de standaardprijslijst in de transactieprijslijst worden opgenomen." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "U heeft een dubbele leveringsbon ingevoerd op deze regel." +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61894,19 +61920,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "U moet automatisch opnieuw bestellen inschakelen in Voorraadinstellingen om opnieuw te bestellen." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "Je hebt nog niet-opgeslagen wijzigingen. Wil je de factuur opslaan?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "U moet een klant selecteren voordat u een artikel toevoegt." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "U moet de POS-afsluitingsboeking {} annuleren om dit document te kunnen annuleren." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "U hebt de accountgroep {1} geselecteerd als {2} -account in rij {0}. Selecteer één account." @@ -61958,6 +61984,10 @@ msgstr "Postcode" msgid "Zero Balance" msgstr "Nulbalans" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "Nul beoordeling" @@ -61988,7 +62018,7 @@ msgstr "[Belangrijk] [ERPNext] Fouten bij automatisch opnieuw ordenen" msgid "`Allow Negative rates for Items`" msgstr "`Negatieve tarieven voor artikelen toestaan`" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "na" @@ -62008,7 +62038,7 @@ msgstr "als titel" msgid "as a percentage of finished item quantity" msgstr "als percentage van de hoeveelheid afgewerkte producten" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -62024,10 +62054,6 @@ msgstr "gebaseerd op" msgid "by {}" msgstr "door {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "kan niet groter zijn dan 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62082,8 +62108,8 @@ msgstr "wisselkoers.host" msgid "fieldname" msgstr "veldnaam" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62163,14 +62189,10 @@ msgstr "van de 5" msgid "paid to" msgstr "betaald aan" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "De betaalapp is niet geïnstalleerd. Installeer deze via {0} of {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "De betaalapp is niet geïnstalleerd. Installeer deze via {} of {}." - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62184,7 +62206,7 @@ msgstr "De betaalapp is niet geïnstalleerd. Installeer deze via {} of {}." msgid "per hour" msgstr "per uur" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "Een van de onderstaande opties uitvoeren:" @@ -62260,8 +62282,8 @@ msgstr "verkocht" msgid "subscription is already cancelled." msgstr "Het abonnement is reeds geannuleerd." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "doel_ref_veld" @@ -62324,10 +62346,6 @@ msgstr "via Asset Repair" msgid "via BOM Update Tool" msgstr "via BOM Update Tool" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "u moet Capital Work in Progress Account selecteren in de rekeningentabel" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}'is uitgeschakeld" @@ -62340,7 +62358,7 @@ msgstr "{0} '{1} ' niet in het boekjaar {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) kan niet groter zijn dan de geplande hoeveelheid ({2}) in werkorder {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} heeft activa ingediend. Verwijder item {2} uit de tabel om verder te gaan." @@ -62360,7 +62378,7 @@ msgstr "{0} Budget voor rekening {1} ten opzichte van {2} {3} is {4}. Het is al msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "{0} Budget voor rekening {1} tegen {2} {3} is {4}. Het zal worden overschreden door {5}." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} Gebruikte coupon is {1}. Toegestane hoeveelheid is op" @@ -62368,11 +62386,6 @@ msgstr "{0} Gebruikte coupon is {1}. Toegestane hoeveelheid is op" msgid "{0} Digest" msgstr "{0} Samenvatting" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Nummer {1} wordt al gebruikt in {2} {3}" @@ -62454,10 +62467,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "{0} kan niet negatief zijn" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} kan niet worden gewijzigd met geopende openingsitems." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} kan niet als hoofdkostenplaats worden gebruikt omdat deze al als subkostenplaats is gebruikt in de kostenplaatstoewijzing {1}" @@ -62473,7 +62494,7 @@ msgstr "{0} kan niet nul zijn" msgid "{0} created" msgstr "{0} aangemaakt" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "{0} Het aanmaken van de volgende records wordt overgeslagen." @@ -62515,7 +62536,7 @@ msgstr "{0} voor {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "Voor {0} is toewijzing op basis van betalingstermijn ingeschakeld. Selecteer een betalingstermijn voor rij #{1} in het gedeelte Betalingsreferenties." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "{0} is gewijzigd nadat je het hebt opgehaald. Haal het alsjeblieft opnieuw op." @@ -62523,6 +62544,10 @@ msgstr "{0} is gewijzigd nadat je het hebt opgehaald. Haal het alsjeblieft opnie msgid "{0} has been submitted successfully" msgstr "{0} is succesvol ingediend" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} uur" @@ -62531,7 +62556,11 @@ msgstr "{0} uur" msgid "{0} in row {1}" msgstr "{0} in rij {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} is een kindtabel en wordt automatisch verwijderd samen met de oudertabel." @@ -62545,7 +62574,7 @@ msgstr "{0} is een verplichte boekhoudkundige dimensie.
                    Stel een waarde in v msgid "{0} is added multiple times on rows: {1}" msgstr "{0} wordt meerdere keren toegevoegd aan rijen: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} draait al voor {1}" @@ -62553,7 +62582,7 @@ msgstr "{0} draait al voor {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} is geblokkeerd, dus deze transactie kan niet doorgaan" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} bevindt zich in concept. Dien het in voordat u het asset aanmaakt." @@ -62566,11 +62595,11 @@ msgstr "{0} is verplicht voor Artikel {1}" msgid "{0} is mandatory for account {1}" msgstr "{0} is verplicht voor account {1}" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} is verplicht. Misschien is er geen valutawisselrecord gemaakt voor {1} tot {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} is verplicht. Misschien is Valuta Koers record niet gemaakt voor {1} naar {2}." @@ -62578,7 +62607,7 @@ msgstr "{0} is verplicht. Misschien is Valuta Koers record niet gemaakt voor {1} msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} is geen zakelijke bankrekening" @@ -62594,7 +62623,7 @@ msgstr "{0} is geen voorraad artikel" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} is geen geldige waarde voor kenmerk {1} van artikel {2}." @@ -62610,17 +62639,17 @@ msgstr "{0} is niet toegevoegd aan de tabel" msgid "{0} is not enabled in {1}" msgstr "{0} is niet ingeschakeld in {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} is niet actief. Kan geen gebeurtenissen voor dit document activeren." +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} is niet de standaardleverancier voor artikelen." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} staat in de wacht totdat {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62670,7 +62699,7 @@ msgstr "{0} parameter is ongeldig" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} betaling items kunnen niet worden gefilterd door {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "{0} aantal van Artikel {1} wordt ontvangen in Magazijn {2} met capaciteit {3}." @@ -62683,7 +62712,7 @@ msgstr "{0} tot {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} eenheden zijn gereserveerd voor Artikel {1} in Magazijn {2}, gelieve deze reservering te deblokkeren in {3} de Voorraadafstemming." @@ -62699,16 +62728,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} eenheden van {1} zijn vereist in {2} met de inventarisdimensie: {3} op {4} {5} voor {6} om de transactie te voltooien." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} eenheden van {1} die nodig zijn in {2} op {3} {4} te {5} om deze transactie te voltooien." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} eenheden van {1} nodig in {2} op {3} {4} om deze transactie te voltooien." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} eenheden van {1} die nodig zijn in {2} om deze transactie te voltooien." @@ -62716,7 +62745,7 @@ msgstr "{0} eenheden van {1} die nodig zijn in {2} om deze transactie te voltooi msgid "{0} until {1}" msgstr "{0} tot {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} geldig serienummers voor Artikel {1}" @@ -62724,7 +62753,7 @@ msgstr "{0} geldig serienummers voor Artikel {1}" msgid "{0} variants created." msgstr "{0} varianten gemaakt." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "De {0} -weergave wordt momenteel niet ondersteund in aangepaste financiële rapporten." @@ -62758,7 +62787,7 @@ msgstr "{0} {1} aangemaakt" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} bestaat niet" @@ -62792,12 +62821,21 @@ msgstr "{0} {1} wordt tweemaal toegewezen in deze banktransactie" msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} is al gekoppeld aan Common Code {2}." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} is geassocieerd met {2}, maar relatie Account is {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} is geannuleerd of gesloten" @@ -62829,6 +62867,10 @@ msgstr "{0} {1} is volledig gefactureerd" msgid "{0} {1} is not active" msgstr "{0} {1} is niet actief" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} is niet gekoppeld aan {2} {3}" @@ -62934,27 +62976,23 @@ msgstr "{0}% van de totale factuurwaarde wordt als korting gegeven." msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{0}'s {1} kan niet na de verwachte einddatum van {2}liggen." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, voltooi de bewerking {1} vóór de bewerking {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: Kindtabel (wordt automatisch verwijderd samen met de oudertabel)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Niet gevonden" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: Beveiligd documenttype" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: Virtueel documenttype (geen databasetabel)" @@ -62970,7 +63008,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "{0}: {1} is een groepsaccount." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} moet kleiner zijn dan {2}" @@ -62982,7 +63020,7 @@ msgstr "{count} Assets gemaakt voor {item_code}" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} is geannuleerd of gesloten." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "{item_name}De steekproefomvang ({sample_size}) mag niet groter zijn dan de geaccepteerde hoeveelheid ({accepted_quantity})." @@ -62994,32 +63032,7 @@ msgstr "{ref_doctype} {ref_name} status {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} kan niet worden geannuleerd omdat de verdiende loyaliteitspunten zijn ingewisseld. Annuleer eerst de {} Nee {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} heeft items ingediend die eraan zijn gekoppeld. U moet de activa annuleren om een inkoopretour te creëren." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} facturen" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} is een dochteronderneming." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} is al gekoppeld aan een andere {}" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} is al gekoppeld aan {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} heeft geen invloed op bankrekening {}" - diff --git a/erpnext/locale/pl.po b/erpnext/locale/pl.po index 8c5e55869d3..cbbabec44e2 100644 --- a/erpnext/locale/pl.po +++ b/erpnext/locale/pl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: pl_PL\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" dla \"SN-01\" do \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Na magazynie" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "" @@ -277,7 +268,7 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" +msgid "'Based On' and 'Group By' can not be the same" msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "" @@ -326,12 +317,12 @@ msgstr "" msgid "'To Date' is required" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 @@ -617,7 +608,7 @@ msgstr "Powyżej 90" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -808,16 +799,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "" +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -1003,9 +994,9 @@ msgstr "A-B" msgid "A - C" msgstr "A-C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Grupa Odbiorców posiada taką nazwę - wprowadź inną nazwę Odbiorcy lub zmień nazwę Grupy" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1015,8 +1006,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -1033,7 +1024,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Produkt lub usługa, która jest kupiona, sprzedana lub przechowywana w magazynie." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1066,7 +1057,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "Logiczny Magazyn przeciwny do zapisów." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1242,7 +1233,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "" @@ -1273,12 +1264,16 @@ msgstr "" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1531,7 +1526,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1661,11 +1656,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1944,8 +1939,8 @@ msgstr "" msgid "Accounting Entries" msgstr "Zapisy księgowe" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "" @@ -1970,8 +1965,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2019,7 +2014,11 @@ msgstr "" msgid "Accounting Period" msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2217,8 +2216,8 @@ msgstr "Skumulowana Amortyzacja konta" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2446,7 +2445,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2456,7 +2455,7 @@ msgstr "" msgid "Actual Date" msgstr "Rzeczywista Data" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2606,8 +2605,8 @@ msgstr "Rzeczywisty czas (w godzinach)" msgid "Actual qty in stock" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2772,10 +2771,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2874,12 +2869,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -3022,7 +3017,7 @@ msgstr "Dodatkowa kwota rabatu" msgid "Additional Discount Amount (Company Currency)" msgstr "Dodatkowa kwota rabatu (waluta firmy)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3141,11 +3136,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3410,7 +3401,7 @@ msgstr "" msgid "Advance amount" msgstr "Kwota Zaliczki" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Ilość wyprzedzeniem nie może być większa niż {0} {1}" @@ -3479,7 +3470,7 @@ msgstr "Wyklucza" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "" @@ -3599,7 +3590,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3623,7 +3614,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3737,6 +3728,13 @@ msgstr "Linia lotnicza" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3913,7 +3911,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3925,7 +3923,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3944,15 +3942,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3976,7 +3974,7 @@ msgstr "Automatycznie przydzielaj zaliczki (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "" @@ -3986,7 +3984,7 @@ msgstr "" msgid "Allocate Payment Based On Payment Terms" msgstr "Przydziel płatność na podstawie warunków płatności" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -4016,7 +4014,7 @@ msgstr "Przydzielone" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4099,8 +4097,8 @@ msgid "Allow Alternative Item" msgstr "Zezwalaj na alternatywną pozycję" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Opcja Zezwalaj na elementy alternatywne musi być zaznaczona dla elementu {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4207,7 +4205,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Zezwalaj na zmianę nazwy wartości atrybutu" @@ -4488,12 +4486,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4528,10 +4528,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4539,10 +4539,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4558,12 +4554,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4768,7 +4764,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4994,12 +4990,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5213,7 +5209,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5390,10 +5386,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5419,6 +5411,10 @@ msgstr "" msgid "Appointment With" msgstr "Spotkanie z" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5460,6 +5456,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5542,18 +5547,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Ponieważ w magazynie {0} znajduje się wystarczająca ilość półproduktów, zlecenie produkcyjne nie jest wymagane." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5592,7 +5597,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5664,7 +5669,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5830,7 +5835,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5962,7 +5967,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5978,7 +5983,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -6031,7 +6036,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6109,7 +6114,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6130,7 +6135,7 @@ msgstr "Zasoby nie zostały utworzone dla {item_code}. Będziesz musiał utworzy msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6140,6 +6145,11 @@ msgstr "" msgid "Assign to Name" msgstr "Przypisz do nazwy" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6158,19 +6168,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6191,6 +6205,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6211,7 +6229,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6219,26 +6237,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6450,7 +6464,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6511,7 +6525,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6636,7 +6650,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6732,7 +6746,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6850,7 +6864,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6869,7 +6883,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6884,7 +6898,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7015,7 +7029,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7036,7 +7050,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7088,10 +7102,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7130,15 +7140,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7219,7 +7233,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "Balans (Dr - Cr)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7289,6 +7303,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7349,7 +7367,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7449,7 +7467,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7694,7 +7712,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7706,7 +7724,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7718,7 +7736,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7994,8 +8012,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8026,15 +8044,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -8042,6 +8060,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8107,8 +8129,8 @@ msgstr "UOM partii" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8221,7 +8243,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8696,7 +8718,7 @@ msgid "Booked Fixed Asset" msgstr "Zarezerwowany środek trwały" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8924,7 +8946,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8942,7 +8964,7 @@ msgstr "Czas buforowy" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8950,7 +8972,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9277,6 +9299,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9448,7 +9474,7 @@ msgstr "Nie znaleziono kampanii {0}" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9477,21 +9503,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Mogą jedynie wpłaty przed Unbilled {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Może odnosić się do wierdza tylko wtedy, gdy typ opłata jest \"Poprzedniej Wartości Wiersza Suma\" lub \"poprzedniego wiersza Razem\"" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9520,7 +9549,7 @@ msgstr "" msgid "Cancelation Date" msgstr "Data Anulowania" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9528,11 +9557,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9547,10 +9571,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9575,6 +9595,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9584,14 +9609,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9599,7 +9624,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9611,7 +9636,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9636,7 +9661,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9663,7 +9688,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9672,6 +9697,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9689,7 +9718,7 @@ msgstr "Nie można zadeklarować jako zagubiony z powodu utworzenia kwotacji" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9702,7 +9731,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Nie można usunąć zamówionego elementu" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9734,7 +9763,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9759,19 +9788,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9783,12 +9816,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9797,19 +9834,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10236,8 +10277,8 @@ msgstr "Zmień typ konta na Odbywalne lub wybierz inne konto." msgid "Change this date manually to setup the next synchronization start date" msgstr "Zmień tę datę ręcznie, aby ustawić następną datę rozpoczęcia synchronizacji" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10264,8 +10305,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10459,7 +10500,7 @@ msgstr "Czek Szerokość" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Czek / Reference Data" @@ -10517,7 +10558,7 @@ msgstr "Nazwa dziecka" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10527,7 +10568,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10706,7 +10747,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10720,7 +10761,7 @@ msgstr "" msgid "Closed Documents" msgstr "Zamknięte dokumenty" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10950,9 +10991,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11389,7 +11430,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11459,7 +11500,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11499,10 +11540,6 @@ msgstr "" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11667,7 +11704,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11711,11 +11748,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11754,6 +11791,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11762,14 +11807,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11791,7 +11828,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12235,7 +12272,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12551,7 +12588,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12851,7 +12888,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12876,7 +12913,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12934,7 +12971,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12946,7 +12983,7 @@ msgstr "Centrum kosztów jest częścią przydziału centrum kosztów, dlatego n msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12968,11 +13005,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13097,14 +13134,14 @@ msgid "Costing and Billing" msgstr "Kalkulacja kosztów i fakturowanie" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13116,7 +13153,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13126,7 +13163,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13150,7 +13187,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13380,10 +13417,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13402,7 +13435,7 @@ msgstr "Utwórz operacje" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13417,7 +13450,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Utwórz żądanie płatności" @@ -13645,7 +13678,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13679,7 +13712,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13774,7 +13807,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13784,17 +13817,17 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Tworzenie {0} nie powiodło się. _x000D_\n" "\t\t\t\tSprawdź Dziennik zbiorczych transakcji " -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13828,11 +13861,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13913,7 +13946,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13993,16 +14026,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "Kredyt w walucie Spółki" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14061,12 +14094,12 @@ msgstr "Konfiguracja kryteriów" msgid "Criteria Weight" msgstr "Kryteria Waga" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14189,7 +14222,7 @@ msgstr "Waluta i cennik" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14254,7 +14287,7 @@ msgid "Current BOM" msgstr "Obecny BOM" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14317,10 +14350,6 @@ msgstr "" msgid "Current Serial No" msgstr "Aktualny numer seryjny" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15151,7 +15180,7 @@ msgstr "D - E " msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15296,10 +15325,6 @@ msgstr "" msgid "Day Of Week" msgstr "Dzień tygodnia" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15406,11 +15431,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15572,7 +15597,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16253,8 +16278,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16348,7 +16373,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16406,7 +16431,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16736,7 +16761,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16752,7 +16777,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16822,7 +16847,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16851,11 +16876,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16883,7 +16908,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16986,12 +17011,12 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Konto różnicowe musi być kontem typu Aktywa/Zobowiązania, ponieważ ta rekonsyliacja magazynowa jest wpisem otwarcia" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17053,7 +17078,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17226,7 +17251,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17235,17 +17260,17 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Wyłączone reguły cenowe, ponieważ jest to transfer wewnętrzny" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17495,8 +17520,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17861,11 +17886,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} nie istnieje" @@ -17903,22 +17928,6 @@ msgstr "" msgid "Document Count" msgstr "Liczba dokumentów" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "Nr dokumentu" @@ -18224,7 +18233,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18378,7 +18387,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18602,8 +18611,8 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "E-maile zakolejkowane" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18790,7 +18799,7 @@ msgstr "" msgid "Empty" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18799,7 +18808,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18878,6 +18887,12 @@ msgstr "" msgid "Enable European Access" msgstr "Włącz dostęp w Europie" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19149,7 +19164,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19272,7 +19287,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19327,6 +19342,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Rozrywka i relaks" @@ -19362,7 +19381,7 @@ msgstr "Rodzaj wpisu" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19386,7 +19405,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19418,18 +19437,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19444,7 +19465,7 @@ msgid "Estimated Arrival" msgstr "Szacowany przyjazd" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19493,7 +19514,7 @@ msgstr "Przykład: ABCD. #####. Jeśli seria jest ustawiona, a numer partii nie msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19774,7 +19795,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19861,7 +19882,7 @@ msgstr "Przewidywany okres użytkowania wartości po" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20120,8 +20141,8 @@ msgstr "Farenhait" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20319,7 +20340,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20357,15 +20378,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "Pola będą kopiowane tylko w momencie tworzenia." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Plik nie został znaleziony" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Nie znaleziono pliku na serwerze" @@ -20374,7 +20395,7 @@ msgstr "Nie znaleziono pliku na serwerze" msgid "File to Rename" msgstr "Plik to zmiany nazwy" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20533,11 +20554,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20606,7 +20627,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20619,7 +20640,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20727,7 +20748,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20826,10 +20847,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20843,11 +20860,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20880,7 +20894,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21016,7 +21030,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -21041,10 +21055,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21111,11 +21121,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21148,12 +21158,12 @@ msgstr "Za ile zużytego = 1 punkt lojalnościowy" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21166,8 +21176,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21183,21 +21193,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21216,11 +21222,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Dla wygody klientów, te kody mogą być użyte w formacie drukowania jak faktury czy dowody dostawy" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21308,6 +21318,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21851,7 +21876,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21976,6 +22001,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22029,7 +22058,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22372,7 +22401,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22555,7 +22584,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22695,7 +22724,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22998,7 +23027,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -23026,7 +23055,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23062,7 +23091,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23645,15 +23674,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23691,7 +23720,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Jeśli konto jest zamrożone, zapisy mogą wykonywać tylko wyznaczone osoby." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23792,7 +23821,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -24010,14 +24039,14 @@ msgstr "Importuj faktury" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Importuj podsumowanie" @@ -24494,7 +24523,7 @@ msgstr "W tym elementów dla zespołów sub" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24580,7 +24609,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "Nieprawidłowe konto" @@ -24589,7 +24618,7 @@ msgstr "Nieprawidłowe konto" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24597,11 +24626,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "Nieprawidłowa firma" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24610,7 +24639,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24627,7 +24656,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24710,7 +24739,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24907,7 +24936,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24923,12 +24952,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25058,7 +25087,7 @@ msgstr "" msgid "Interest Income" msgstr "Dochód z odsetek" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25083,7 +25112,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25109,7 +25138,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25130,7 +25159,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25172,8 +25201,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25192,7 +25221,7 @@ msgstr "" msgid "Invalid Amount" msgstr "Nieprawidłowa kwota" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25209,11 +25238,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25233,13 +25262,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25260,11 +25289,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25294,7 +25323,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25303,7 +25332,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25342,7 +25371,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25359,7 +25388,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25371,8 +25400,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25380,7 +25409,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25397,7 +25426,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25407,14 +25436,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "Nieprawidłowy adres URL pliku" @@ -25446,7 +25475,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Nieprawidłowe zapytanie wyszukiwania" @@ -26409,10 +26438,6 @@ msgstr "Data emisji" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26421,7 +26446,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26470,12 +26495,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26508,7 +26533,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26582,7 +26607,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26743,7 +26768,7 @@ msgstr "poz Koszyk" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26775,7 +26800,7 @@ msgstr "poz Koszyk" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26784,12 +26809,12 @@ msgstr "poz Koszyk" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26885,7 +26910,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27081,7 +27106,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27235,7 +27260,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27266,7 +27291,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27274,8 +27299,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27332,7 +27357,7 @@ msgstr "" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27379,8 +27404,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27392,7 +27417,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27437,7 +27462,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27553,7 +27578,7 @@ msgstr "Rzecz do wyprodukowania" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27672,7 +27697,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27708,7 +27733,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27722,7 +27747,7 @@ msgstr "" msgid "Item operation" msgstr "Obsługa przedmiotu" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27737,7 +27762,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "Jednostkowy wskaźnik wyceny przeliczone z uwzględnieniem kosztów ilość kupon wylądował" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27753,10 +27778,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27765,6 +27786,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27774,6 +27799,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27806,6 +27832,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27838,7 +27868,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27870,10 +27900,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27924,6 +27950,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27940,7 +27970,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -27980,7 +28010,7 @@ msgstr "" msgid "Items not found." msgstr "Nie znaleziono elementów." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27990,7 +28020,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28060,7 +28090,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28123,20 +28153,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28199,11 +28228,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28549,7 +28586,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28670,7 +28707,7 @@ msgstr "Szerokość" msgid "Lead" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28764,7 +28801,7 @@ msgstr "Czas oczekiwania w dniach" msgid "Lead Type" msgstr "Typ Tropu" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "Lead {0} został dodany do prospekta {1}." @@ -28912,7 +28949,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28941,7 +28978,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28971,7 +29008,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29067,8 +29104,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Połączenie z klientem nie powiodło się. Spróbuj ponownie." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Połączenie z dostawcą nie powiodło się. Spróbuj ponownie." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29234,7 +29271,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29320,7 +29357,7 @@ msgstr "Odkupienie punktów lojalnościowych" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Punkty lojalnościowe będą obliczane na podstawie zużytego (za pomocą faktury sprzedaży), na podstawie wspomnianego współczynnika zbierania." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29558,7 +29595,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29655,7 +29692,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29802,7 +29839,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29885,8 +29922,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30108,7 +30145,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30286,10 +30323,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30316,7 +30349,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Zużycie materiału do produkcji" @@ -30427,7 +30460,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30477,7 +30510,7 @@ msgstr "Szczegółowy wniosek o materiał" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30499,7 +30532,7 @@ msgstr "Typ zamówienia produktu" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30513,7 +30546,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30633,13 +30666,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30808,7 +30841,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30843,7 +30876,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31189,7 +31222,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31198,11 +31231,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "Brakujące konta" @@ -31227,11 +31260,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31239,7 +31272,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31251,7 +31284,7 @@ msgstr "Brakujący parametr" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31263,7 +31296,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31271,12 +31304,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Brak wymaganego filtra: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31525,8 +31558,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31534,7 +31567,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31555,7 +31588,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31564,10 +31597,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31652,11 +31685,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31700,7 +31729,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31710,12 +31739,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31793,8 +31822,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "Kwota netto (Waluta Spółki)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31844,7 +31873,7 @@ msgstr "Stawka godzinowa Netto" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31852,7 +31881,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31866,11 +31895,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32114,7 +32143,7 @@ msgstr "" msgid "New Income" msgstr "Nowy dochodowy" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32187,6 +32216,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32199,9 +32229,9 @@ msgstr "" msgid "New Workplace" msgstr "Nowe Miejsce Pracy" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Nowy limit kredytowy jest mniejszy niż obecna zaległa kwota dla klienta. Limit kredytowy musi wynosić co najmniej {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32209,6 +32239,10 @@ msgstr "Nowy limit kredytowy jest mniejszy niż obecna zaległa kwota dla klient msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Nowe faktury będą generowane zgodnie z harmonogramem, nawet jeśli bieżące faktury są niezapłacone lub przeterminowane" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32221,7 +32255,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32285,16 +32319,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32302,15 +32335,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32353,11 +32386,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32460,6 +32488,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32505,7 +32537,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32542,10 +32574,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Liczba dostaw" @@ -32642,7 +32670,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32680,15 +32708,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32717,7 +32750,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32754,7 +32787,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32762,11 +32795,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32818,7 +32846,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32829,8 +32857,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32844,8 +32872,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32908,10 +32936,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32928,10 +32952,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32944,7 +32964,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33189,7 +33209,7 @@ msgid "Numeric Values" msgstr "Wartości liczbowe" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33365,12 +33385,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Po ustawieniu faktura ta będzie zawieszona do wyznaczonej daty" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Jeden klient może być częścią tylko jednego Programu lojalnościowego." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33404,7 +33424,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33469,7 +33489,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33535,7 +33555,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33688,7 +33708,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Szczegóły salda otwarcia" @@ -33718,7 +33738,7 @@ msgstr "Data Otwarcia" msgid "Opening Entry" msgstr "Wpis początkowy" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33746,7 +33766,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "Faktura otwarcia ma korektę zaokrąglenia w wysokości {0}.

                    Wymagane jest konto „{1}”, aby zaksięgować te wartości. Proszę ustawić to w firmie: {2}.

                    Alternatywnie, można włączyć opcję „{3}”, aby nie księgować żadnej korekty zaokrąglenia." @@ -33755,7 +33775,7 @@ msgstr "Faktura otwarcia ma korektę zaokrąglenia w wysokości {0}.

                    Wym msgid "Opening Invoices" msgstr "Otwieranie faktur" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33785,20 +33805,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33807,7 +33827,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33850,7 +33870,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33941,7 +33961,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33965,7 +33985,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34151,6 +34171,10 @@ msgstr "" msgid "Optimize Route" msgstr "Zoptymalizuj trasę" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34167,10 +34191,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34456,7 +34476,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34510,7 +34530,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34591,11 +34611,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Dopuszczalne przekroczenie kompletacji (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34612,12 +34632,12 @@ msgstr "Dopuszczalne przekroczenie transferu (%)" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34668,10 +34688,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34737,6 +34753,11 @@ msgstr "Nr PAN" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34784,7 +34805,7 @@ msgstr "POS- Sprzedaż detaliczna" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34882,7 +34903,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34942,7 +34963,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34963,7 +34984,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34986,7 +35007,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -35006,7 +35027,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -35018,19 +35039,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35060,11 +35081,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35083,7 +35104,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35708,7 +35729,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35835,7 +35856,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35921,7 +35942,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35942,7 +35963,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35978,7 +35999,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36488,7 +36509,7 @@ msgstr "Odniesienia płatności" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36563,7 +36584,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36585,7 +36606,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36685,7 +36706,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36892,11 +36913,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37412,12 +37433,12 @@ msgstr "" msgid "Plaid Environment" msgstr "Środowisko Plaid" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Link Plaid nie powiódł się" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Wymagane odświeżenie linku Plaid" @@ -37439,7 +37460,7 @@ msgstr "Sekret Plaid" msgid "Plaid Settings" msgstr "Ustawienia Plaid" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Błąd synchronizacji transakcji Plaid" @@ -37590,15 +37611,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37606,7 +37618,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37614,19 +37625,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37642,7 +37653,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37650,35 +37661,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37720,7 +37728,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37733,11 +37741,11 @@ msgstr "Proszę sprawdzić wartości ID klienta Plaid i tajne wartości." msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37753,15 +37761,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37769,11 +37777,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Proszę utworzyć klienta z leada {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37785,7 +37793,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37797,11 +37805,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37826,7 +37834,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37838,11 +37846,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37858,7 +37866,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Proszę wprowadzić numer partii" @@ -37874,7 +37882,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37883,7 +37891,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37919,7 +37927,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Proszę wprowadzić numer seryjny" @@ -38049,7 +38057,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38085,11 +38093,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Proszę odświeżyć lub zresetować linkowanie Plaid dla Banku {}." @@ -38118,12 +38122,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38139,9 +38143,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38151,7 +38155,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38174,7 +38178,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38183,6 +38187,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38207,11 +38215,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38240,6 +38248,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38247,11 +38256,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38260,7 +38270,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38272,7 +38282,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38288,6 +38298,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38321,22 +38332,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Proszę wybrać wiersz, aby utworzyć wpis przeksięgowania" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38345,7 +38360,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38353,10 +38368,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Wybierz co najmniej jeden filtr: kod produktu, serię lub numer seryjny." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Proszę wybrać co najmniej jeden wiersz do poprawienia" @@ -38365,18 +38388,10 @@ msgstr "Proszę wybrać co najmniej jeden wiersz do poprawienia" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38414,12 +38429,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38428,7 +38443,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38452,20 +38467,16 @@ msgstr "Proszę najpierw wybrać typ dokumentu." msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38494,7 +38505,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38524,21 +38535,19 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Proszę ustawić kod podatkowy dla klienta '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Proszę ustawić kod podatkowy dla administracji publicznej '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38555,9 +38564,8 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Proszę ustawić numer identyfikacji podatkowej dla klienta '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38576,15 +38584,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38601,9 +38609,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "" +msgid "Please set an Address on the Company '{0}'" +msgstr "Proszę ustawić adres na firmie '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38621,24 +38628,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38670,11 +38674,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38682,7 +38686,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38737,7 +38741,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38745,7 +38749,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38755,8 +38759,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38764,11 +38768,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38776,6 +38780,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38939,7 +38951,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38964,7 +38976,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39007,7 +39019,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -39016,7 +39028,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39209,6 +39221,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39298,7 +39314,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39440,7 +39456,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39561,7 +39577,7 @@ msgstr "Cena nie zależy od ceny" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39672,7 +39688,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39880,7 +39896,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40062,7 +40078,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40188,7 +40204,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40213,7 +40229,7 @@ msgstr "Produkt Bundle Pomoc" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40416,7 +40432,7 @@ msgstr "" msgid "Profit & Loss" msgstr "Rachunek zysków i strat" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Zysk w tym roku" @@ -40445,6 +40461,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40453,8 +40473,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40527,7 +40547,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40607,7 +40627,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40658,7 +40678,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40804,7 +40824,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Zaangażowani potencjalni klienci, ale nieprzekonwertowani" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40837,9 +40857,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41067,8 +41087,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41109,7 +41129,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41133,11 +41153,11 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41152,7 +41172,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41201,7 +41221,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41261,7 +41281,7 @@ msgid "Purchase Orders to Receive" msgstr "Zamówienia zakupu do odbioru" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41351,7 +41371,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41371,7 +41391,7 @@ msgid "Purchase Receipt Trends " msgstr "Trendy przyjęć zakupu " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41599,7 +41619,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41618,7 +41638,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41683,7 +41703,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41720,7 +41740,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41815,7 +41835,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -42001,7 +42021,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42078,7 +42098,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42161,7 +42181,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42205,12 +42225,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42361,7 +42381,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42389,11 +42409,11 @@ msgstr "Ilość powinna być większa niż 0" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42401,6 +42421,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42426,7 +42450,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42666,7 +42690,7 @@ msgstr "Wywołany przez (Email)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42850,7 +42874,7 @@ msgid "Rate at which this tax is applied" msgstr "Stawka przy użyciu której ten podatek jest aplikowany" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43169,7 +43193,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43411,8 +43435,8 @@ msgstr "" msgid "Receiving" msgstr "Odbieranie" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43588,6 +43612,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43638,7 +43666,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43718,7 +43746,7 @@ msgstr "Odniesienie #" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -44010,7 +44038,7 @@ msgid "Rejected Warehouse" msgstr "Odrzucony Magazyn" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44117,7 +44145,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44156,7 +44184,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "Usuń element, jeśli opłata nie ma zastosowania do tej pozycji" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44307,7 +44335,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44390,7 +44418,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44436,6 +44464,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44520,7 +44557,7 @@ msgstr "Data realizacji" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44636,11 +44673,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44819,6 +44856,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44857,8 +44898,8 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "" +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Zarezerwowana ilość ({0}) nie może być ułamkiem. Aby to umożliwić, wyłącz '{1}' w jednostce miary {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44902,7 +44943,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44918,13 +44959,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45418,6 +45459,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45842,11 +45887,11 @@ msgstr "Nazwa trasy" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45930,23 +45975,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -46022,13 +46067,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46040,7 +46088,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46048,12 +46096,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46065,7 +46113,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Wiersz #{0}: Data rozpoczęcia amortyzacji jest wymagana" @@ -46073,6 +46121,10 @@ msgstr "Wiersz #{0}: Data rozpoczęcia amortyzacji jest wymagana" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Wiersz #{0}: Zduplikowany wpis w referencjach {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46085,11 +46137,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46112,8 +46171,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46125,7 +46184,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46137,6 +46196,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46165,16 +46228,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Wiersz #{0}: Przedmiot {1} nie jest seryjny ani partiowy. Nie można przypisać numeru seryjnego/partii do niego." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46190,12 +46253,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46206,15 +46273,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46226,24 +46293,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46259,6 +46350,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46278,8 +46373,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Wiersz #{0}: Ilość powinna być mniejsza lub równa dostępnej ilości do rezerwacji (rzeczywista ilość - zarezerwowana ilość) {1} dla przedmiotu {2} w partii {3} w magazynie {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46301,7 +46396,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46309,17 +46404,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46339,11 +46434,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46353,7 +46448,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46362,6 +46457,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "\t\t\t\t\tSprzedaż {3} powinna wynosić co najmniej {4}.

                    Alternatywnie," @@ -46374,7 +46473,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "\t\t\t\t\ttę weryfikację.\"" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46398,7 +46497,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46467,7 +46566,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46475,19 +46574,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Wiersz #{0}: Całkowita liczba amortyzacji nie może być mniejsza lub równa liczbie otwartych amortyzacji" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46499,11 +46606,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46511,6 +46622,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46527,6 +46651,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46567,71 +46699,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Wiersz #{}: Waluta {} - {} nie zgadza się z walutą firmy." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Wiersz #{}: Księga finansowa nie może być pusta, ponieważ używasz wielu ksiąg." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Wiersz #{}: Faktura POS {} została {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Wiersz #{}: Faktura POS {} nie dotyczy klienta {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Wiersz #{}: Faktura POS {} nie została jeszcze przesłana" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Wiersz #{}: Proszę przypisać zadanie członkowi." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Wiersz #{}: Proszę użyć innej księgi finansowej." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Wiersz #{}: Numer seryjny {} nie może zostać zwrócony, ponieważ nie został przetworzony w oryginalnej fakturze {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Wiersz #{}: Oryginalna faktura {} zwrotnej faktury {} nie jest skonsolidowana." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Wiersz #{}: Nie można dodać dodatnich ilości do faktury zwrotnej. Proszę usunąć przedmiot {}, aby dokończyć zwrot." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Wiersz #{}: przedmiot {} został już pobrany." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Wiersz #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Wiersz #{}: {} {} nie istnieje." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Wiersz #{}: {} {} nie należy do firmy {}. Proszę wybrać poprawne {}." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46644,10 +46715,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Wiersz {0}# Przedmiot {1} nie znaleziony w tabeli 'Dostarczone surowce' w {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46668,19 +46735,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46696,11 +46763,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46728,24 +46795,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46766,6 +46833,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46787,7 +46857,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46818,7 +46888,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46842,7 +46912,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46850,12 +46920,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46874,11 +46944,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46886,7 +46956,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46898,7 +46968,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46923,10 +46993,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46979,15 +47049,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -47026,7 +47100,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Wiersze: {0} mają „Payment Entry” jako typ referencji. Nie powinno to być ustawiane ręcznie." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47087,10 +47161,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47158,7 +47228,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47457,7 +47527,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47674,8 +47744,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48082,7 +48152,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48114,7 +48184,7 @@ msgstr "Przykładowy magazyn retencyjny" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48224,7 +48294,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48235,7 +48305,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48523,7 +48593,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48544,7 +48614,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48609,7 +48679,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48634,7 +48704,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48664,7 +48734,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48678,13 +48748,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48775,6 +48845,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48916,10 +48987,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49067,7 +49142,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49151,7 +49226,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49208,10 +49283,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49253,6 +49329,10 @@ msgstr "Nr seryjny / partia" msgid "Serial No Already Assigned" msgstr "Numer seryjny został już przypisany" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49270,7 +49350,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49315,7 +49395,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49327,7 +49407,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49347,21 +49427,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49376,25 +49453,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49414,7 +49492,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Numery seryjne są zarezerwowane w wpisach rezerwacji stanów magazynowych, należy je odblokować przed kontynuowaniem." @@ -49515,6 +49593,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49563,7 +49645,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49571,122 +49653,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Seria dla pozycji amortyzacji aktywów (wpis w czasopiśmie)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49768,7 +49740,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49877,12 +49849,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49906,7 +49878,7 @@ msgstr "Ustaw Advances and Allocate (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Ustaw ręcznie stawkę podstawową" @@ -49921,7 +49893,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "Ustaw magazyn dostawy" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50026,7 +49998,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50044,7 +50016,7 @@ msgstr "Ustaw dostawcę" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50070,7 +50042,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50168,15 +50140,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50244,7 +50216,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50672,6 +50644,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50874,7 +50847,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50977,11 +50950,11 @@ msgstr "\"Prosta formuła Python zastosowana na polach odczytu. Przykład liczbo msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Ponieważ występuje strata procesowa w wysokości {0} jednostek dla produktu gotowego {1}, należy zmniejszyć ilość o {0} jednostek w tabeli przedmiotów." @@ -51042,7 +51015,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51098,7 +51071,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51166,7 +51139,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51203,8 +51176,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51334,7 +51307,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51347,7 +51320,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51400,7 +51378,7 @@ msgstr "Pseudonim artystyczny" msgid "Stale Days" msgstr "Stale Dni" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51465,10 +51443,26 @@ msgstr "" msgid "Standing Name" msgstr "Reputacja" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51498,7 +51492,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51527,10 +51521,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51611,7 +51609,7 @@ msgstr "" msgid "Status and Reference" msgstr "Status i referencje" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51739,8 +51737,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "Wpis zamknięcia zapasów {0} został zakolejkowany do przetworzenia, system potrzebuje trochę czasu na jego ukończenie." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51821,16 +51819,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51997,7 +51999,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52080,7 +52082,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52105,15 +52107,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52283,7 +52285,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52442,8 +52444,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52462,7 +52464,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52477,7 +52479,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52485,7 +52487,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52699,7 +52701,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52771,7 +52773,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52809,7 +52811,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52883,7 +52885,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52902,7 +52904,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52931,7 +52933,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53073,7 +53075,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53251,7 +53253,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53433,7 +53435,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53581,7 +53583,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53766,10 +53768,6 @@ msgstr "" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53855,7 +53853,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53916,7 +53914,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -54026,11 +54024,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54505,7 +54503,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54717,7 +54715,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -55024,12 +55022,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "Pole „Od numeru paczki” nie może być puste ani mieć wartości mniejszej niż 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -55037,10 +55031,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "BOM zostanie zastąpiony" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55065,6 +55067,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55082,8 +55088,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55094,11 +55103,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55146,15 +55159,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55203,6 +55216,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55224,8 +55241,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55253,7 +55270,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55265,7 +55282,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55301,7 +55318,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55339,12 +55356,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "Operacja {0} nie może być podoperacją." +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55392,6 +55409,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55401,7 +55422,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55418,7 +55439,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55435,7 +55456,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55454,11 +55475,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "Zapasy dla pozycji {0} w magazynie {1} były ujemne w dniu {2}. Powinieneś utworzyć pozytywny zapis {3} przed datą {4} i godziną {5}, aby zaksięgować prawidłową wartość wyceny. Aby uzyskać więcej informacji, przeczytaj dokumentację." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Zapasy dla pozycji {0} w magazynie {1} były ujemne w dniu {2}. Powinieneś utworzyć pozytywny zapis {3} przed datą {4} i godziną {5}, aby zaksięgować prawidłową wartość wyceny. Aby uzyskać więcej informacji, przeczytaj dokumentację." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55480,16 +55501,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55528,7 +55549,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55552,7 +55573,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55560,7 +55581,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55568,6 +55589,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55576,7 +55601,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55588,7 +55613,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55605,6 +55630,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55621,10 +55650,6 @@ msgstr "Istnieją dwie opcje utrzymania wyceny zapasów: FIFO (pierwsze weszło, msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Może istnieć wiele warstwowych współczynników zbierania w oparciu o całkowitą ilość wydanych pieniędzy. Jednak współczynnik konwersji dla umorzenia będzie zawsze taki sam dla wszystkich poziomów." @@ -55653,21 +55678,21 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Wystąpił błąd podczas tworzenia konta bankowego podczas łączenia z Plaid." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Wystąpił błąd podczas aktualizacji konta bankowego {} podczas łączenia z Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55717,15 +55742,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55747,7 +55776,7 @@ msgstr "Ta czynność odłączy to konto od dowolnej zewnętrznej usługi integr msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55765,7 +55794,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Ten dokument przekracza limit o {0} {1} dla pozycji {4}. Czy realizujesz kolejne {3} w ramach tego samego {2}?" @@ -55907,7 +55936,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55971,7 +56000,7 @@ msgstr "Ten harmonogram został utworzony, gdy Aktywo {0} zostało zwrócone prz msgid "This schedule was created when Asset {0} was scrapped." msgstr "Ten harmonogram został utworzony, gdy Aktywo {0} zostało zezłomowane." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55998,10 +56027,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "W tej sekcji użytkownik może ustawić treść i treść listu upominającego dla typu monitu w oparciu o język, którego można używać w druku." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56059,7 +56088,7 @@ msgid "This will restrict user access to other employee records" msgstr "To ograniczy dostęp użytkowników do innych rekordów pracowników" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56188,6 +56217,12 @@ msgstr "" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56474,7 +56509,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56505,15 +56540,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56530,7 +56565,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56542,7 +56577,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56555,8 +56590,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56576,7 +56611,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56593,10 +56628,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56675,8 +56712,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "Razem (Spółka Waluta)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56718,6 +56755,22 @@ msgstr "Wszystkich Dodatkowe koszty" msgid "Total Advance" msgstr "Całość zaliczka" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56765,11 +56818,11 @@ msgstr "Całkowita kwota do zapłaty" msgid "Total Amount in Words" msgstr "Wartość całkowita słownie" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56951,7 +57004,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56960,11 +57013,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "Łączna przewidywana odległość" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Całkowite wydatki w tym roku" @@ -57002,11 +57055,11 @@ msgstr "Całkowity czas wstrzymania" msgid "Total Holidays" msgstr "Suma dni świątecznych" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Całkowity przychód w tym roku" @@ -57049,7 +57102,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57364,7 +57417,7 @@ msgstr "Łączna kwota podatków i opłat" msgid "Total Taxes and Charges (Company Currency)" msgstr "Łączna kwota podatków i opłat (wg Firmy)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57373,7 +57426,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57452,7 +57509,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57470,7 +57527,7 @@ msgstr "Całkowita liczba godzin: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57488,8 +57545,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57578,27 +57635,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57651,11 +57692,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58045,6 +58086,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58229,7 +58274,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58251,7 +58296,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58281,7 +58326,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58345,7 +58390,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Współczynnik konwersji jm" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Współczynnik konwersji jm ({0} -> {1}) nie znaleziono dla pozycji: {2}" @@ -58419,7 +58464,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58432,10 +58477,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Nie można znaleźć kursu wymiany dla {0} na {1} na kluczową datę {2}. Utwórz ręcznie rekord wymiany walut." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58460,7 +58501,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58472,8 +58513,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58523,7 +58566,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58546,7 +58589,7 @@ msgstr "" msgid "Unit Price" msgstr "Cena jednostkowa" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58749,7 +58792,7 @@ msgstr "Nieplanowany" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58762,7 +58805,7 @@ msgstr "Bez podpisu" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58906,7 +58949,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58970,7 +59013,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "Zaktualizuj ostatnią cenę we wszystkich biuletynach" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59198,7 +59241,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59287,6 +59330,10 @@ msgstr "Czas rozwiązania użytkownika" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59299,6 +59346,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59307,10 +59358,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59603,15 +59650,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59619,7 +59666,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59629,7 +59676,7 @@ msgstr "" msgid "Valuation and Total" msgstr "Wycena i kwota całkowita" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59642,13 +59689,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59699,12 +59746,12 @@ msgstr "" msgid "Value Type" msgstr "Typ wartości" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59713,19 +59760,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Wartość nowo zakapitalizowanego aktywa" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60201,7 +60248,7 @@ msgstr "Nazwa Voucheru" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60229,7 +60276,7 @@ msgstr "Nazwa Voucheru" msgid "Voucher No" msgstr "Nr Voucheru" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Nr Voucheru jest wymagany" @@ -60241,7 +60288,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Podtyp Voucheru" @@ -60273,7 +60320,7 @@ msgstr "Podtyp Voucheru" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60480,7 +60527,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60498,16 +60545,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "Magazyn {0} nie istnieje" @@ -60628,7 +60675,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Ostrzeżenie - Wiersz {0}: Godziny rozliczeniowe są większe niż rzeczywiste godziny" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60648,7 +60695,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60802,10 +60849,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60951,7 +60994,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61127,17 +61170,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61176,7 +61219,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61217,20 +61260,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61251,7 +61294,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61276,7 +61319,7 @@ msgstr "Produkty w toku" msgid "Work-in-Progress Warehouse" msgstr "Magazyn z produkcją w toku" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61329,7 +61372,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61561,14 +61604,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61583,7 +61618,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61603,7 +61638,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61614,19 +61649,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61648,7 +61679,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61667,14 +61698,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61683,16 +61706,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61704,15 +61727,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61720,7 +61751,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61728,7 +61759,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61743,6 +61774,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61753,7 +61788,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61780,11 +61815,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61801,8 +61836,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "Wprowadziłeś zduplikowaną notę dostawy w wierszu." +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61816,19 +61851,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61880,6 +61915,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61910,7 +61949,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61930,7 +61969,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61946,10 +61985,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "nie może być większa niż 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62004,8 +62039,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62085,14 +62120,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62106,7 +62137,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62182,8 +62213,8 @@ msgstr "sprzedane" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62246,10 +62277,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62262,7 +62289,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62282,7 +62309,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62290,11 +62317,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62376,10 +62398,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62395,7 +62425,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62437,7 +62467,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62445,6 +62475,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62453,7 +62487,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62467,7 +62505,7 @@ msgstr "{0} jest obowiązkowym wymiarem księgowym.
                    Proszę ustawić wartoś msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62475,7 +62513,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62488,11 +62526,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62500,7 +62538,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62516,7 +62554,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62532,16 +62570,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62592,7 +62630,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62605,7 +62643,7 @@ msgstr "{0} do {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62621,16 +62659,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62638,7 +62676,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62646,7 +62684,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62680,7 +62718,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62714,12 +62752,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62751,6 +62798,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62856,27 +62907,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, zakończ operację {1} przed operacją {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Nie znaleziono" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62892,7 +62939,7 @@ msgstr "{0}: {1} nie istnieje" msgid "{0}: {1} is a group account." msgstr "{0}: {1} jest kontem grupowym." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62904,7 +62951,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} zostanie anulowane lub zamknięte." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62916,32 +62963,7 @@ msgstr "" msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} faktury" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/pt.po b/erpnext/locale/pt.po index 4837d9e870f..744421eb99f 100644 --- a/erpnext/locale/pt.po +++ b/erpnext/locale/pt.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: pt_PT\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Em Stock" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Itens Necessários" @@ -277,7 +268,7 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" +msgid "'Based On' and 'Group By' can not be the same" msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "" @@ -326,12 +317,12 @@ msgstr "" msgid "'To Date' is required" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 @@ -617,7 +608,7 @@ msgstr "90 Acima" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -785,16 +776,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "" +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -955,8 +946,8 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 @@ -967,8 +958,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "Um lead requer o nome de uma pessoa ou o nome de uma organização" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -985,7 +976,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1018,7 +1009,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1194,7 +1185,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "" @@ -1225,12 +1216,16 @@ msgstr "Chave de Acesso" msgid "Access Key is required for Service Provider: {0}" msgstr "A Chave de Acesso é necessária para o Provedor de Serviço: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1483,7 +1478,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1613,11 +1608,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1896,8 +1891,8 @@ msgstr "" msgid "Accounting Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "" @@ -1922,8 +1917,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1971,7 +1966,11 @@ msgstr "" msgid "Accounting Period" msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "" @@ -2169,8 +2168,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "" @@ -2398,7 +2397,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2408,7 +2407,7 @@ msgstr "" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2558,8 +2557,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2724,10 +2723,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2826,12 +2821,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -2974,7 +2969,7 @@ msgstr "" msgid "Additional Discount Amount (Company Currency)" msgstr "Quantia de Desconto Adicional (Moeda da Empresa)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3093,11 +3088,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3362,7 +3353,7 @@ msgstr "" msgid "Advance amount" msgstr "Valor do Adiantamento" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "O montante do adiantamento não pode ser maior do que {0} {1}" @@ -3431,7 +3422,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "" @@ -3551,7 +3542,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3575,7 +3566,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3689,6 +3680,13 @@ msgstr "" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3865,7 +3863,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3877,7 +3875,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3896,15 +3894,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3928,7 +3926,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "" @@ -3938,7 +3936,7 @@ msgstr "" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3968,7 +3966,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4051,7 +4049,7 @@ msgid "Allow Alternative Item" msgstr "" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4159,7 +4157,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4440,12 +4438,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4480,10 +4480,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4491,10 +4491,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4510,12 +4506,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4720,7 +4716,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4946,12 +4942,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5165,7 +5161,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5342,10 +5338,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5371,6 +5363,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5412,6 +5408,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5494,18 +5499,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Como existem Artigos de Submontagem suficientes, a Ordem de Fabrico não é necessária para o Armazém {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5544,7 +5549,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5616,7 +5621,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5782,7 +5787,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5914,7 +5919,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5930,7 +5935,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -5983,7 +5988,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6061,7 +6066,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6082,7 +6087,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6092,6 +6097,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6110,19 +6120,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6143,6 +6157,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6163,7 +6181,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6171,26 +6189,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6402,7 +6416,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6463,7 +6477,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6588,7 +6602,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6684,7 +6698,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6802,7 +6816,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6821,7 +6835,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6836,7 +6850,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6967,7 +6981,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -6988,7 +7002,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7040,10 +7054,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7082,15 +7092,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7171,7 +7185,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7241,6 +7255,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7301,7 +7319,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7401,7 +7419,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7646,7 +7664,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7658,7 +7676,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7670,7 +7688,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7946,8 +7964,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7978,15 +7996,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -7994,6 +8012,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8059,8 +8081,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8173,7 +8195,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8648,7 +8670,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8876,7 +8898,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8894,7 +8916,7 @@ msgstr "Tempo de Buffer" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8902,7 +8924,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9229,6 +9251,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9400,7 +9426,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9429,21 +9455,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9472,7 +9501,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9480,11 +9509,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9499,10 +9523,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9527,6 +9547,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9536,14 +9561,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9551,7 +9576,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9563,7 +9588,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9588,7 +9613,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9615,7 +9640,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9624,6 +9649,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9641,7 +9670,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9654,7 +9683,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Não é possível eliminar um artigo que já foi encomendado" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9686,7 +9715,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9711,19 +9740,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9735,12 +9768,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9749,19 +9786,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10188,8 +10229,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10216,8 +10257,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10411,7 +10452,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10469,7 +10510,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10479,7 +10520,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10658,7 +10699,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10672,7 +10713,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10902,9 +10943,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11341,7 +11382,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11411,7 +11452,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11451,10 +11492,6 @@ msgstr "" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11619,7 +11656,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11663,11 +11700,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11706,6 +11743,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11714,14 +11759,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11743,7 +11780,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12187,7 +12224,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12503,7 +12540,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12803,7 +12840,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12828,7 +12865,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12886,7 +12923,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12898,7 +12935,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12920,11 +12957,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13049,14 +13086,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13068,7 +13105,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13078,7 +13115,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13102,7 +13139,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13332,10 +13369,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13354,7 +13387,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13369,7 +13402,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13597,7 +13630,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13631,7 +13664,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13726,7 +13759,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13736,16 +13769,16 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13779,11 +13812,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13864,7 +13897,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13944,16 +13977,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14012,12 +14045,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14140,7 +14173,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14205,7 +14238,7 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14268,10 +14301,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15102,7 +15131,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15247,10 +15276,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15357,11 +15382,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15523,7 +15548,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16204,8 +16229,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16299,7 +16324,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16357,7 +16382,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16687,7 +16712,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16703,7 +16728,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16773,7 +16798,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16802,11 +16827,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16834,7 +16859,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16937,11 +16962,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17004,7 +17029,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17177,7 +17202,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17186,17 +17211,17 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Regras de preços desativadas visto que este {} é uma transferência interna" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17446,8 +17471,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17812,11 +17837,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} não existe" @@ -17854,22 +17879,6 @@ msgstr "" msgid "Document Count" msgstr "Contagem de Documentos" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18175,7 +18184,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18329,7 +18338,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18553,7 +18562,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18741,7 +18750,7 @@ msgstr "" msgid "Empty" msgstr "Vazio" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18750,7 +18759,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18829,6 +18838,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19100,7 +19115,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19223,7 +19238,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19278,6 +19293,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19313,7 +19332,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19337,7 +19356,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19369,18 +19388,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19395,7 +19416,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19444,7 +19465,7 @@ msgstr "Exemplo: ABCD.#####. Se a série estiver definida e o Nº de Lote não f msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19725,7 +19746,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19812,7 +19833,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20071,8 +20092,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20270,7 +20291,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20308,15 +20329,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Ficheiro não encontrado" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Ficheiro não encontrado no servidor" @@ -20325,7 +20346,7 @@ msgstr "Ficheiro não encontrado no servidor" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20484,11 +20505,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20557,7 +20578,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20570,7 +20591,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20678,7 +20699,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20777,10 +20798,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20794,11 +20811,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20831,7 +20845,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20967,7 +20981,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -20992,10 +21006,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21062,11 +21072,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21099,12 +21109,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21117,8 +21127,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21134,21 +21144,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21167,11 +21173,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21259,6 +21269,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21802,7 +21827,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21927,6 +21952,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21980,7 +22009,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22323,7 +22352,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22506,7 +22535,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22646,7 +22675,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22949,7 +22978,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -22977,7 +23006,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23013,7 +23042,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23596,15 +23625,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23642,7 +23671,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23743,7 +23772,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23961,14 +23990,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Resumo de Importação" @@ -24445,7 +24474,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24531,7 +24560,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24540,7 +24569,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24548,11 +24577,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24561,7 +24590,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24578,7 +24607,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24661,7 +24690,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24858,7 +24887,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24874,12 +24903,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25009,7 +25038,7 @@ msgstr "" msgid "Interest Income" msgstr "Rendimento de Juros" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25034,7 +25063,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25060,7 +25089,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25081,7 +25110,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25123,8 +25152,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25143,7 +25172,7 @@ msgstr "" msgid "Invalid Amount" msgstr "Montante Inválido" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25160,11 +25189,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25184,13 +25213,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25211,11 +25240,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25245,7 +25274,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25254,7 +25283,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25293,7 +25322,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25310,7 +25339,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25322,8 +25351,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25331,7 +25360,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25348,7 +25377,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25358,14 +25387,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "URL de ficheiro inválido" @@ -25397,7 +25426,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Consulta de pesquisa inválida" @@ -26360,10 +26389,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26372,7 +26397,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26421,12 +26446,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26459,7 +26484,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26533,7 +26558,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26694,7 +26719,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26726,7 +26751,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26735,12 +26760,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26836,7 +26861,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27032,7 +27057,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27186,7 +27211,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27217,7 +27242,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27225,8 +27250,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27283,7 +27308,7 @@ msgstr "" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27330,8 +27355,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27343,7 +27368,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27388,7 +27413,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27504,7 +27529,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27623,7 +27648,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27659,7 +27684,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27673,7 +27698,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27688,7 +27713,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27704,10 +27729,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27716,6 +27737,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27725,6 +27750,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27757,6 +27783,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27789,7 +27819,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27821,10 +27851,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27875,6 +27901,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27891,7 +27921,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -27931,7 +27961,7 @@ msgstr "" msgid "Items not found." msgstr "Artigos não encontrados." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27941,7 +27971,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28011,7 +28041,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28074,20 +28104,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28150,11 +28179,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28500,7 +28537,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28621,7 +28658,7 @@ msgstr "" msgid "Lead" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28715,7 +28752,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28863,7 +28900,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28892,7 +28929,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28922,7 +28959,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29018,7 +29055,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29185,7 +29222,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29271,7 +29308,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29509,7 +29546,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29606,7 +29643,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29753,7 +29790,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29836,8 +29873,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30059,7 +30096,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30237,10 +30274,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30267,7 +30300,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30378,7 +30411,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30428,7 +30461,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30450,7 +30483,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30464,7 +30497,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30584,13 +30617,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30759,7 +30792,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30794,7 +30827,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31140,7 +31173,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31149,11 +31182,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31178,11 +31211,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31190,7 +31223,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31202,7 +31235,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31214,7 +31247,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31222,12 +31255,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Filtro obrigatório em falta: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31476,8 +31509,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31485,7 +31518,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31506,7 +31539,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31515,10 +31548,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31603,11 +31636,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31651,7 +31680,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31661,12 +31690,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31744,8 +31773,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31795,7 +31824,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31803,7 +31832,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31817,11 +31846,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32065,7 +32094,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32138,6 +32167,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32150,8 +32180,8 @@ msgstr "" msgid "New Workplace" msgstr "Novo Local de Trabalho" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32160,6 +32190,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32172,7 +32206,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32236,16 +32270,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32253,15 +32286,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32304,11 +32337,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32411,6 +32439,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32456,7 +32488,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32493,10 +32525,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "N.º de Entregas" @@ -32593,7 +32621,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32631,15 +32659,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32668,7 +32701,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32705,7 +32738,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32713,11 +32746,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32769,7 +32797,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32780,8 +32808,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32795,8 +32823,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32859,10 +32887,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32879,10 +32903,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32895,7 +32915,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33140,7 +33160,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33316,11 +33336,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33355,7 +33375,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33420,7 +33440,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33486,7 +33506,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33639,7 +33659,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33669,7 +33689,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33697,7 +33717,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33706,7 +33726,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33736,20 +33756,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33758,7 +33778,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33801,7 +33821,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33892,7 +33912,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33916,7 +33936,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34102,6 +34122,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34118,10 +34142,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34407,7 +34427,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34461,7 +34481,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34542,11 +34562,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Tolerância de Sobresseleção (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34563,12 +34583,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34619,10 +34639,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34688,6 +34704,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34735,7 +34756,7 @@ msgstr "POS" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34833,7 +34854,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34893,7 +34914,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34914,7 +34935,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34937,7 +34958,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -34957,7 +34978,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34969,19 +34990,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35011,11 +35032,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35034,7 +35055,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35659,7 +35680,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35786,7 +35807,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35872,7 +35893,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35893,7 +35914,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35929,7 +35950,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36439,7 +36460,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36514,7 +36535,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36536,7 +36557,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36636,7 +36657,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36843,11 +36864,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37363,12 +37384,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37390,7 +37411,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37541,15 +37562,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37557,7 +37569,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37565,19 +37576,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37593,7 +37604,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37601,35 +37612,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37671,7 +37679,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37684,11 +37692,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37704,15 +37712,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37720,11 +37728,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37736,7 +37744,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37748,11 +37756,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37777,7 +37785,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37789,11 +37797,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37809,7 +37817,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Por favor, insira o N.º do Lote" @@ -37825,7 +37833,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37834,7 +37842,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37870,7 +37878,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Por favor, insira o N.º de Série" @@ -38000,7 +38008,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38036,11 +38044,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38069,12 +38073,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38090,9 +38094,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38102,7 +38106,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38125,7 +38129,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38134,6 +38138,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38158,11 +38166,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38191,6 +38199,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38198,11 +38207,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38211,7 +38221,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38223,7 +38233,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38239,6 +38249,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38272,22 +38283,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Por favor selecione uma linha para criar uma Entrada de Repostagem" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38296,7 +38311,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38304,10 +38319,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Selecione pelo menos um filtro: Código do Item, Lote ou N.º de Série." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Por favor selecione pelo menos uma linha para corrigir" @@ -38316,18 +38339,10 @@ msgstr "Por favor selecione pelo menos uma linha para corrigir" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38365,12 +38380,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38379,7 +38394,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38403,20 +38418,16 @@ msgstr "Por favor, selecione primeiro o tipo de documento." msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38445,7 +38456,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38475,21 +38486,19 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Por favor defina o Código Fiscal para o cliente '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Por favor defina o Código Fiscal para a administração pública '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38506,9 +38515,8 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Por favor defina o NIF para o cliente '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38527,15 +38535,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38552,9 +38560,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "" +msgid "Please set an Address on the Company '{0}'" +msgstr "Defina um Endereço na Empresa '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38572,24 +38579,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38621,11 +38625,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38633,7 +38637,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38688,7 +38692,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38696,7 +38700,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38706,8 +38710,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38715,11 +38719,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38727,6 +38731,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38890,7 +38902,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38915,7 +38927,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38958,7 +38970,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -38967,7 +38979,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39160,6 +39172,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39249,7 +39265,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39391,7 +39407,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39512,7 +39528,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39623,7 +39639,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39831,7 +39847,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40013,7 +40029,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40139,7 +40155,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40164,7 +40180,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40367,7 +40383,7 @@ msgstr "" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Lucro este ano" @@ -40396,6 +40412,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40404,8 +40424,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40478,7 +40498,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40558,7 +40578,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40609,7 +40629,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40755,7 +40775,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40788,9 +40808,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41018,8 +41038,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41060,7 +41080,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41084,11 +41104,11 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41103,7 +41123,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41152,7 +41172,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41212,7 +41232,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41302,7 +41322,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41322,7 +41342,7 @@ msgid "Purchase Receipt Trends " msgstr "Tendências de Recibo de Compra " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41550,7 +41570,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41569,7 +41589,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41634,7 +41654,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41671,7 +41691,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41766,7 +41786,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -41952,7 +41972,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42029,7 +42049,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42112,7 +42132,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42156,12 +42176,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42312,7 +42332,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42340,11 +42360,11 @@ msgstr "A quantidade deve ser superior a 0" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42352,6 +42372,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42377,7 +42401,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42617,7 +42641,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42801,7 +42825,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43120,7 +43144,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43362,8 +43386,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43539,6 +43563,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43589,7 +43617,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43669,7 +43697,7 @@ msgstr "Referência #" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -43961,7 +43989,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44068,7 +44096,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44107,7 +44135,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44258,7 +44286,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44341,7 +44369,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44387,6 +44415,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44471,7 +44508,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44587,11 +44624,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44770,6 +44807,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44808,8 +44849,8 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "" +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Qtd Reservada ({0}) não pode ser uma fração. Para permitir isto, desative '{1}' na UOM {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44853,7 +44894,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44869,13 +44910,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45369,6 +45410,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45793,11 +45838,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45881,23 +45926,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45973,13 +46018,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -45991,7 +46039,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -45999,12 +46047,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46016,7 +46064,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Linha #{0}: Data de Início da Depreciação é obrigatória" @@ -46024,6 +46072,10 @@ msgstr "Linha #{0}: Data de Início da Depreciação é obrigatória" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46036,11 +46088,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46063,8 +46122,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46076,7 +46135,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46088,6 +46147,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46116,16 +46179,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46141,12 +46204,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46157,15 +46224,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46177,24 +46244,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46210,6 +46301,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46229,7 +46324,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46252,7 +46347,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46260,17 +46355,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46290,11 +46385,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46304,7 +46399,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46313,6 +46408,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46325,7 +46424,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46349,7 +46448,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46418,7 +46517,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46426,19 +46525,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46450,11 +46557,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46462,6 +46573,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Linha #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46478,6 +46602,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46518,71 +46650,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46595,10 +46666,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46619,19 +46686,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46647,11 +46714,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46679,24 +46746,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46717,6 +46784,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46738,7 +46808,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46769,7 +46839,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46793,7 +46863,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46801,12 +46871,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46825,11 +46895,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46837,7 +46907,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46849,7 +46919,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46874,10 +46944,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46930,15 +47000,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -46977,7 +47051,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47038,10 +47112,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47109,7 +47179,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47408,7 +47478,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47625,8 +47695,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48033,7 +48103,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48065,7 +48135,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48175,7 +48245,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48186,7 +48256,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48472,7 +48542,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48493,7 +48563,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48558,7 +48628,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48583,7 +48653,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48613,7 +48683,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48627,13 +48697,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48724,6 +48794,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48865,10 +48936,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49016,7 +49091,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49100,7 +49175,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49157,10 +49232,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49202,6 +49278,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "N.º de série já atribuído" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49219,7 +49299,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49264,7 +49344,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49276,7 +49356,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49296,21 +49376,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49325,25 +49402,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49363,7 +49441,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49464,6 +49542,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49512,7 +49594,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49520,122 +49602,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Série" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49717,7 +49689,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49826,12 +49798,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49855,7 +49827,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49870,7 +49842,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "Definir Armazém de Entrega" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49975,7 +49947,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -49993,7 +49965,7 @@ msgstr "Definir Fornecedor" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50019,7 +49991,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50117,15 +50089,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50193,7 +50165,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50621,6 +50593,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50823,7 +50796,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50926,11 +50899,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -50991,7 +50964,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51047,7 +51020,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51115,7 +51088,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51152,8 +51125,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51283,7 +51256,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51296,7 +51269,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51349,7 +51327,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51414,10 +51392,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51447,7 +51441,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51476,10 +51470,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51560,7 +51558,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51688,7 +51686,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51770,16 +51768,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51946,7 +51948,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52029,7 +52031,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52054,15 +52056,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52232,7 +52234,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52391,8 +52393,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52411,7 +52413,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52426,7 +52428,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52434,7 +52436,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52648,7 +52650,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52720,7 +52722,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52758,7 +52760,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52832,7 +52834,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52851,7 +52853,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52880,7 +52882,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53022,7 +53024,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53200,7 +53202,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53382,7 +53384,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53530,7 +53532,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53715,10 +53717,6 @@ msgstr "" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53804,7 +53802,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53865,7 +53863,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -53975,11 +53973,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "" +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "O Armazém Alvo para o Produto Acabado deve ser o mesmo que o Armazém de Produtos Acabados {0} na Ordem de Trabalho {1} ligada à Ordem de Entrada de Subcontratação." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54454,7 +54452,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54666,7 +54664,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -54973,12 +54971,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "O 'A partir do número do pacote' O campo não deve estar vazio nem valor inferior a 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -54986,10 +54980,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55014,6 +55016,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55031,8 +55037,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55043,11 +55052,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55095,15 +55108,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55152,6 +55165,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55173,8 +55190,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55202,7 +55219,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55214,7 +55231,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55250,7 +55267,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55288,11 +55305,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55341,6 +55358,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55350,7 +55371,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55367,7 +55388,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55384,7 +55405,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55403,11 +55424,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "" +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "O stock do artigo {0} no armazém {1} estava negativo em {2}. Deve criar um lançamento positivo {3} antes da data {4} e hora {5} para registar a taxa de valorização correta. Para mais detalhes, consulte a documentação." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55429,16 +55450,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55477,7 +55498,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55501,7 +55522,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55509,7 +55530,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55517,6 +55538,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55525,7 +55550,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55537,7 +55562,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55554,6 +55579,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55570,10 +55599,6 @@ msgstr "Existem duas opções para manter a valorização de stock. FIFO (primei msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55602,20 +55627,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55666,15 +55691,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55696,7 +55725,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55714,7 +55743,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Este documento está acima do limite por {0} {1} para o item {4}. Está a fazer outra {3} no/a mesmo/a {2}?" @@ -55856,7 +55885,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55920,7 +55949,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55947,10 +55976,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56008,7 +56037,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56137,6 +56166,12 @@ msgstr "" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56423,7 +56458,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56454,15 +56489,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56479,7 +56514,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56491,7 +56526,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56504,8 +56539,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56525,7 +56560,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56542,10 +56577,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56624,8 +56661,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56667,6 +56704,22 @@ msgstr "" msgid "Total Advance" msgstr "Adiantamento Total" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56714,11 +56767,11 @@ msgstr "Valor Total em Dívida" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56900,7 +56953,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56909,11 +56962,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Despesa Total Este Ano" @@ -56951,11 +57004,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Renda Total Este Ano" @@ -56998,7 +57051,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57313,7 +57366,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57322,7 +57375,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57401,7 +57458,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57419,7 +57476,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57437,8 +57494,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57527,27 +57584,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57600,11 +57641,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -57994,6 +58035,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58178,7 +58223,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58200,7 +58245,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58230,7 +58275,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58294,7 +58339,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58368,7 +58413,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58381,10 +58426,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Não é possível encontrar a taxa de câmbio para {0} a {1} para a data-chave {2}. Crie um registro de troca de moeda manualmente." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58409,7 +58450,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58421,8 +58462,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58472,7 +58515,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58495,7 +58538,7 @@ msgstr "" msgid "Unit Price" msgstr "Preço Unitário" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58698,7 +58741,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58711,7 +58754,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58855,7 +58898,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58919,7 +58962,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59147,7 +59190,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59236,6 +59279,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59248,6 +59295,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59256,10 +59307,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59552,15 +59599,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59568,7 +59615,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59578,7 +59625,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59591,13 +59638,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59648,12 +59695,12 @@ msgstr "" msgid "Value Type" msgstr "Tipo de Valor" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59662,19 +59709,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60150,7 +60197,7 @@ msgstr "Nome do Documento" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60178,7 +60225,7 @@ msgstr "Nome do Documento" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60190,7 +60237,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60222,7 +60269,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60429,7 +60476,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60447,16 +60494,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "O Armazém {0} não existe" @@ -60577,7 +60624,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60597,7 +60644,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60751,10 +60798,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60900,7 +60943,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61076,17 +61119,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61125,7 +61168,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61166,20 +61209,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61200,7 +61243,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61225,7 +61268,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61278,7 +61321,7 @@ msgstr "Horas de trabalho" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61510,14 +61553,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61532,7 +61567,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61552,7 +61587,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61563,19 +61598,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61597,7 +61628,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61616,14 +61647,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61632,16 +61655,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61653,15 +61676,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61669,7 +61700,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61677,7 +61708,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61692,6 +61723,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61702,7 +61737,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61729,11 +61764,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61750,7 +61785,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61765,19 +61800,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61829,6 +61864,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61859,7 +61898,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61879,7 +61918,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61895,10 +61934,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61953,8 +61988,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62034,14 +62069,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62055,7 +62086,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62131,8 +62162,8 @@ msgstr "vendido" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62195,10 +62226,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62211,7 +62238,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62231,7 +62258,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62239,11 +62266,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62325,10 +62347,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62344,7 +62374,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62386,7 +62416,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62394,6 +62424,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62402,7 +62436,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62416,7 +62454,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62424,7 +62462,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62437,11 +62475,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62449,7 +62487,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62465,7 +62503,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62481,16 +62519,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62541,7 +62579,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62554,7 +62592,7 @@ msgstr "{0} a {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62570,16 +62608,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62587,7 +62625,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62595,7 +62633,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62629,7 +62667,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62663,12 +62701,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62700,6 +62747,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62805,27 +62856,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Não encontrado" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62841,7 +62888,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "{0}: {1} é uma conta de grupo." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62853,7 +62900,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62865,32 +62912,7 @@ msgstr "O estado de {ref_doctype} {ref_name} é {status}." msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} faturas" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/pt_BR.po b/erpnext/locale/pt_BR.po index 5a6ebc3997f..336fec26f3c 100644 --- a/erpnext/locale/pt_BR.po +++ b/erpnext/locale/pt_BR.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: pt_BR\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Em Estoque" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Baseado em' e 'Agrupar por' não podem ser o mesmo" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "A 'Data Final' deve ser posterior a 'Data Inicial'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Tem Número Serial' não pode ser confirmado para itens sem controle de estoque" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Abrindo'" @@ -326,13 +317,13 @@ msgstr "'Abrindo'" msgid "'To Date' is required" msgstr "'Data Final' é necessária" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Atualização do Estoque' não pode ser verificado porque os itens não são entregues via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90 acima" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -785,16 +776,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "" +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -955,9 +946,9 @@ msgstr "" msgid "A - C" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Existe um grupo de clientes com o mesmo nome por favor modifique o nome do cliente ou renomeie o grupo de clientes" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -967,8 +958,8 @@ msgstr "" msgid "A Lead requires either a person's name or an organization's name" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." msgstr "" #: erpnext/accounts/services/gl_validator.py:123 @@ -985,7 +976,7 @@ msgstr "" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "" @@ -1018,7 +1009,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1194,7 +1185,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Quantidade Aceita" @@ -1225,12 +1216,16 @@ msgstr "" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "" @@ -1483,7 +1478,7 @@ msgstr "A conta é obrigatória para obter entradas de pagamento" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1613,11 +1608,11 @@ msgstr "Conta: {0} é capital em andamento e não pode ser atualizado pel msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Conta: {0} só pode ser atualizado via transações de ações" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Conta: {0} não é permitida em Entrada de pagamento" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "A Conta: {0} com moeda: {1} não pode ser selecionada" @@ -1896,8 +1891,8 @@ msgstr "" msgid "Accounting Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Entrada Contábil de Ativo" @@ -1922,8 +1917,8 @@ msgstr "Lançamento Contábil Para Serviço" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -1971,7 +1966,11 @@ msgstr "" msgid "Accounting Period" msgstr "Período Contábil" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Período de Contabilidade sobrepõe-se a {0}" @@ -2169,8 +2168,8 @@ msgstr "" msgid "Accumulated Depreciation Amount" msgstr "Total de Depreciação Acumulada" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Depreciação Acumulada Como Em" @@ -2398,7 +2397,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Custo Real" @@ -2408,7 +2407,7 @@ msgstr "Custo Real" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2558,8 +2557,8 @@ msgstr "" msgid "Actual qty in stock" msgstr "Quantidade real em estoque" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2724,10 +2723,6 @@ msgstr "" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "" @@ -2826,12 +2821,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -2974,7 +2969,7 @@ msgstr "Valor do Desconto Adicional" msgid "Additional Discount Amount (Company Currency)" msgstr "Valor de desconto adicional (moeda da empresa)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3093,11 +3088,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3362,7 +3353,7 @@ msgstr "" msgid "Advance amount" msgstr "Valor adiantado" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "O valor do adiantamento não pode ser superior a {0} {1}" @@ -3431,7 +3422,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Contra À Conta" @@ -3551,7 +3542,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Contra o Comprovante" @@ -3575,7 +3566,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3689,6 +3680,13 @@ msgstr "" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3865,7 +3863,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Todos os itens já foram faturados / devolvidos" @@ -3877,7 +3875,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "Todos os itens já foram transferidos para esta Ordem de Serviço." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3896,16 +3894,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Todos esses itens já foram faturados / devolvidos" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -3928,7 +3926,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Atribuir Valor do Pagamento" @@ -3938,7 +3936,7 @@ msgstr "Atribuir Valor do Pagamento" msgid "Allocate Payment Based On Payment Terms" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -3968,7 +3966,7 @@ msgstr "" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4051,7 +4049,7 @@ msgid "Allow Alternative Item" msgstr "" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4159,7 +4157,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4440,12 +4438,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "Permitido Transacionar Com" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4480,10 +4480,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4491,10 +4491,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4510,12 +4506,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4720,7 +4716,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4946,12 +4942,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Ocorreu um erro durante o processo de atualização" @@ -5165,7 +5161,7 @@ msgstr "Código de Cupom Aplicado" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5342,10 +5338,6 @@ msgstr "Horários de Agendamento" msgid "Appointment Confirmation" msgstr "Confirmação de Compromisso" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5371,6 +5363,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5412,6 +5408,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5494,18 +5499,18 @@ msgstr "Como o campo {0} está habilitado, o valor do campo {1} deve ser maior q msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Como há itens de subconjunto suficientes, a Ordem de Serviço não é necessária para o Armazém {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Como há matéria-prima suficiente, a Solicitação de Material não é necessária para o Armazém {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5544,7 +5549,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5616,7 +5621,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5782,7 +5787,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5914,7 +5919,7 @@ msgstr "Análise do Valor do Ativo" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5930,7 +5935,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -5983,7 +5988,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6061,7 +6066,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6082,7 +6087,7 @@ msgstr "Recursos não criados para {item_code}. Você terá que criar o ativo ma msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6092,6 +6097,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6110,19 +6120,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6143,6 +6157,10 @@ msgstr "Pelo menos um dos módulos aplicáveis deve ser selecionado" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6163,7 +6181,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6171,26 +6189,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6402,7 +6416,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6463,7 +6477,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Auto repetir documento atualizado" @@ -6588,7 +6602,7 @@ msgstr "Data de Uso Disponível" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6684,7 +6698,7 @@ msgstr "Disponível para data de uso é obrigatório" msgid "Available {0}" msgstr "Disponível {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "A data disponível para uso deve ser posterior à data de compra" @@ -6802,7 +6816,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6821,8 +6835,8 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "BOM 1 {0} e BOM 2 {1} não devem ser iguais" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6836,7 +6850,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "Ferramenta de Comparação de BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -6967,7 +6981,7 @@ msgstr "Operação da LDM" msgid "BOM Operations Time" msgstr "Tempo de operações BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -6988,7 +7002,7 @@ msgstr "Pesquisar LDM" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7040,10 +7054,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7082,15 +7092,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "A LDM {0} não pertencem ao Item {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "LDM {0} deve ser ativa" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "LDM {0} deve ser enviada" @@ -7171,7 +7185,7 @@ msgstr "Balanço" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Equilíbrio ({0})" @@ -7241,6 +7255,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7301,7 +7319,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7401,7 +7419,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7646,7 +7664,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "A conta bancária não pode ser nomeada como {0}" @@ -7658,7 +7676,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "A conta bancária {0} já existe e não pôde ser criada novamente" @@ -7670,7 +7688,7 @@ msgstr "Contas bancárias adicionadas" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Erro de criação de transação bancária" @@ -7946,8 +7964,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7978,15 +7996,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -7994,6 +8012,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8059,8 +8081,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8173,7 +8195,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8648,7 +8670,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8876,8 +8898,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Orçamento não pode ser atribuído contra a conta de grupo {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Orçamento não pode ser atribuído contra {0}, pois não é uma conta de renda ou despesa" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8894,7 +8916,7 @@ msgstr "Tempo de Buffer" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8902,7 +8924,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9229,6 +9251,10 @@ msgstr "Saldo calculado do extrato bancário" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9400,7 +9426,7 @@ msgstr "Campanha {0} não encontrada" msgid "Can be approved by {0}" msgstr "Pode ser aprovado por {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9429,21 +9455,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Só pode fazer o pagamento contra a faturar {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Anular Material de Visita {0} antes de cancelar esta solicitação de garantia" @@ -9472,7 +9501,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9480,11 +9509,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9499,10 +9523,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Não Pode Dispensar o Funcionário" @@ -9527,6 +9547,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9536,14 +9561,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9551,7 +9576,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9563,7 +9588,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Não é possível cancelar a transação para a ordem de serviço concluída." @@ -9588,7 +9613,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Não é possível alterar a moeda padrão da empresa, porque existem operações existentes. Transações devem ser canceladas para alterar a moeda padrão." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9615,7 +9640,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9624,6 +9649,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9641,7 +9670,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9654,7 +9683,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Não é possível excluir um item que já foi pedido" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9686,7 +9715,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9711,19 +9740,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9735,12 +9768,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9749,19 +9786,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10188,8 +10229,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10216,8 +10257,8 @@ msgstr "" msgid "Channel Partner" msgstr "Canal de Parceria" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10411,7 +10452,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Data do Cheque/referência" @@ -10469,7 +10510,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10479,8 +10520,8 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Tarefa infantil existe para esta Tarefa. Você não pode excluir esta Tarefa." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10658,7 +10699,7 @@ msgstr "Fechar Empréstimo" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Feche o PDV" @@ -10672,7 +10713,7 @@ msgstr "Documento Fechado" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10902,9 +10943,9 @@ msgstr "Comissão" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11341,7 +11382,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11411,7 +11452,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11451,10 +11492,6 @@ msgstr "Empresa" msgid "Company Abbreviation" msgstr "Abreviação da Empresa" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Abreviação da Empresa não pode ter mais de 5 caracteres" @@ -11619,7 +11656,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11663,12 +11700,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Nome da empresa não o mesmo" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "A empresa do ativo {0} e o documento de compra {1} não correspondem." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11706,6 +11743,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "A Empresa {0} não existe" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11714,14 +11759,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11743,7 +11780,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Concorrentes" @@ -12187,7 +12224,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12503,7 +12540,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12803,7 +12840,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12828,7 +12865,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12886,7 +12923,7 @@ msgstr "Número do Centro de Custo" msgid "Cost Center and Budgeting" msgstr "Centro de Custo e Orçamento" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12898,7 +12935,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Centro de Custo é necessária na linha {0} no Imposto de mesa para o tipo {1}" @@ -12920,11 +12957,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13049,14 +13086,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13068,7 +13105,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13078,7 +13115,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13102,7 +13139,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Não foi possível resolver a função de pontuação dos critérios para {0}. Verifique se a fórmula é válida." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Não foi possível resolver a função de pontuação ponderada. Verifique se a fórmula é válida." @@ -13332,10 +13369,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13354,7 +13387,7 @@ msgstr "Criar operação" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Criar Entrada de Abertura de PDV" @@ -13369,7 +13402,7 @@ msgstr "Criar Entrada de Pagamento" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Criar solicitação de pagamento" @@ -13597,7 +13630,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13631,7 +13664,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13726,7 +13759,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13736,16 +13769,16 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13779,11 +13812,11 @@ msgstr "" msgid "Credit" msgstr "Crédito" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Crédito ({0})" @@ -13864,7 +13897,7 @@ msgstr "" msgid "Credit Limit" msgstr "Limite de Crédito" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13944,16 +13977,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "O limite de crédito foi cruzado para o cliente {0} ({1} / {2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "O limite de crédito já está definido para a empresa {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Limite de crédito atingido para o cliente {0}" @@ -14012,12 +14045,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14140,7 +14173,7 @@ msgstr "Moeda e Lista de Preço" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14205,8 +14238,8 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "A LDM Atual e a Nova LDM não podem ser as mesmas" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14268,10 +14301,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15102,7 +15131,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Resumo Diário do Projeto Para {0}" @@ -15247,10 +15276,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15357,11 +15382,11 @@ msgstr "" msgid "Debit" msgstr "Débito" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Débito ({0})" @@ -15523,7 +15548,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Declarar Perdido" @@ -16204,8 +16229,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16299,7 +16324,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16357,7 +16382,7 @@ msgstr "Entrega" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16687,7 +16712,7 @@ msgstr "Depreciação" msgid "Depreciation Amount" msgstr "Valor de Depreciação" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Total de Depreciação durante o período" @@ -16703,7 +16728,7 @@ msgstr "Data da Depreciação" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "A Depreciação foi Eliminada devido à alienação de ativos" @@ -16773,7 +16798,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Linha de depreciação {0}: o valor esperado após a vida útil deve ser maior ou igual a {1}" @@ -16802,11 +16827,11 @@ msgstr "Tabela de Depreciação" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16834,7 +16859,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Razão Detalhada" @@ -16937,11 +16962,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17004,7 +17029,7 @@ msgstr "Valor da Diferença" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17177,7 +17202,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17186,17 +17211,17 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Regras de precificação desativadas porque esta {} é uma transferência interna" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17446,8 +17471,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "Desconto deve ser inferior a 100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17812,11 +17837,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} não existe" @@ -17854,22 +17879,6 @@ msgstr "Pesquisa do Documentos" msgid "Document Count" msgstr "Contagem de Documentos" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "Documento nº" @@ -18175,7 +18184,7 @@ msgstr "Projeto duplicado com tarefas" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18329,7 +18338,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Editar Não Permitido" @@ -18553,7 +18562,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18741,7 +18750,7 @@ msgstr "" msgid "Empty" msgstr "Vazio" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18750,7 +18759,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18829,6 +18838,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19100,7 +19115,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19223,7 +19238,7 @@ msgstr "Insira o número de telefone do cliente" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Insira detalhes de depreciação" @@ -19278,6 +19293,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "Insira o valor de {0}." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19313,7 +19332,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Patrimônio Líquido" @@ -19337,7 +19356,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19369,19 +19388,21 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Erro: {0} é campo obrigatório" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19395,7 +19416,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Custo Estimado" @@ -19444,7 +19465,7 @@ msgstr "Exemplo: ABCD.#####. Se a série for definida e o número do lote não f msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19725,7 +19746,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19812,7 +19833,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Despesa" @@ -20071,9 +20092,9 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Falha ao autenticar a chave API." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20270,7 +20291,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20308,15 +20329,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Arquivo não encontrado" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Arquivo não encontrado no servidor" @@ -20325,7 +20346,7 @@ msgstr "Arquivo não encontrado no servidor" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20484,11 +20505,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20557,7 +20578,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20570,7 +20591,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "Código de Item Acabado" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20678,7 +20699,7 @@ msgstr "Armazém de Produtos Acabados" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20777,10 +20798,6 @@ msgstr "Regime Fiscal é obrigatório, gentilmente definir o regime fiscal na em msgid "Fiscal Year" msgstr "Exercício Fiscal" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20794,11 +20811,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "A data final do ano fiscal deve ser de um ano após a data de início do ano fiscal" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Ano Fiscal {0} Não Existe" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Ano Fiscal {0} não existe" @@ -20831,7 +20845,7 @@ msgstr "Ativo Imobilizado" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -20967,7 +20981,7 @@ msgstr "" msgid "For" msgstr "Para" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -20992,10 +21006,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21062,12 +21072,12 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Para um item {0}, a quantidade deve ser um número negativo" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Para um item {0}, a quantidade deve ser um número positivo" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21099,12 +21109,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21117,8 +21127,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21134,21 +21144,17 @@ msgstr "Para o projeto {0}, atualize seu status" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Para linha {0} em {1}. Para incluir {2} na taxa de Item, linhas {3} também devem ser incluídos" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Para a Linha {0}: Digite a Quantidade Planejada" @@ -21167,11 +21173,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21259,6 +21269,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21802,7 +21827,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Lançamento GL" @@ -21927,6 +21952,10 @@ msgstr "Livro Razão" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -21980,7 +22009,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22323,7 +22352,7 @@ msgstr "Mercadorias Em Trânsito" msgid "Goods Transferred" msgstr "Mercadorias Transferidas" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "As mercadorias já são recebidas contra a entrada de saída {0}" @@ -22506,7 +22535,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Maior Que Quantidade" @@ -22646,7 +22675,7 @@ msgstr "Agrupar Por Pedido de Venda" msgid "Group by Voucher" msgstr "Agrupar Por Comprovante" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Não é permitido selecionar o subgrupo de armazém para as transações" @@ -22949,7 +22978,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -22977,7 +23006,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23013,7 +23042,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23596,15 +23625,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23642,7 +23671,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23743,7 +23772,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -23961,14 +23990,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Importação Bem Sucedida" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Resumo da Importação" @@ -24445,7 +24474,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Receita" @@ -24531,7 +24560,7 @@ msgstr "Chamada recebida de {0}" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24540,7 +24569,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24548,11 +24577,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24561,7 +24590,7 @@ msgstr "" msgid "Incorrect Date" msgstr "Data Incorreta" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24578,7 +24607,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24661,7 +24690,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "Incremento não pode ser 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Atributo incremento para {0} não pode ser 0" @@ -24858,7 +24887,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24874,12 +24903,12 @@ msgstr "Permissões Insuficientes" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Estoque Insuficiente" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25009,7 +25038,7 @@ msgstr "" msgid "Interest Income" msgstr "Receita de Juros" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25034,7 +25063,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25060,7 +25089,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25081,7 +25110,7 @@ msgstr "" msgid "Internal Transfer" msgstr "Transferência Interna" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25123,8 +25152,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25143,7 +25172,7 @@ msgstr "" msgid "Invalid Amount" msgstr "Valor inválido" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Atributo Inválido" @@ -25160,11 +25189,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25184,13 +25213,13 @@ msgstr "Empresa Inválida Para Transação Entre Empresas." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25211,11 +25240,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25245,7 +25274,7 @@ msgstr "" msgid "Invalid Item" msgstr "Artigo Inválido" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25254,7 +25283,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25293,7 +25322,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25310,7 +25339,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "Quantidade Inválida" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25322,8 +25351,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25331,7 +25360,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "Preço de Venda Inválido" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25348,7 +25377,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Valor Inválido" @@ -25358,14 +25387,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Expressão de condição inválida" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "URL de arquivo inválida" @@ -25397,7 +25426,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Consulta de busca inválida" @@ -26360,10 +26389,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26372,7 +26397,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26421,12 +26446,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26459,7 +26484,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26533,7 +26558,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26694,7 +26719,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26726,7 +26751,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26735,12 +26760,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26836,7 +26861,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27032,7 +27057,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Árvore de Grupos do Item" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27186,7 +27211,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27217,7 +27242,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27225,8 +27250,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27283,7 +27308,7 @@ msgstr "" msgid "Item Name" msgstr "Nome do Item" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27330,8 +27355,8 @@ msgstr "" msgid "Item Price Stock" msgstr "Preço do Item Preço" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27343,7 +27368,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "O Preço do Item foi atualizado para {0} na Lista de Preços {1}" @@ -27388,7 +27413,7 @@ msgstr "Reposição de Item" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Linha do Item {0}: {1} {2} não existe na tabela ';{1}'; acima" @@ -27504,7 +27529,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27623,7 +27648,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27659,7 +27684,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "O artigo deve ser adicionado usando \"Obter itens de recibos de compra 'botão" @@ -27673,7 +27698,7 @@ msgstr "Nome do item" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27688,7 +27713,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27704,10 +27729,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27716,6 +27737,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27725,6 +27750,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27757,6 +27783,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27789,7 +27819,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27821,10 +27851,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27875,6 +27901,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27891,7 +27921,7 @@ msgstr "" msgid "Items Filter" msgstr "Filtro de Itens" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Itens Necessários" @@ -27931,7 +27961,7 @@ msgstr "Itens Para Solicitação de Matéria-prima" msgid "Items not found." msgstr "Itens não encontrados." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27941,7 +27971,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Os itens a fabricar são necessários para extrair as matérias-primas associadas a eles." @@ -28011,7 +28041,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28074,20 +28104,19 @@ msgstr "Registro de Tempo do Cartão de Trabalho" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28150,11 +28179,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Cartão de trabalho {0} criado" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28500,7 +28537,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28621,7 +28658,7 @@ msgstr "" msgid "Lead" msgstr "Lead" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28715,7 +28752,7 @@ msgstr "" msgid "Lead Type" msgstr "Tipo de Lead" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28863,7 +28900,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Menos Que Quantidade" @@ -28892,7 +28929,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Passivo" @@ -28922,7 +28959,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Limite Ultrapassado" @@ -29018,7 +29055,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29185,7 +29222,7 @@ msgstr "Detalhe da Razão Perdida" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Motivo da Perda" @@ -29271,7 +29308,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Pontos de Fidelidade: {0}" @@ -29509,7 +29546,7 @@ msgstr "Detalhe da Programação da Manutenção" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Programação de manutenção não é gerada para todos os itens. Por favor, clique em \"Gerar Agenda\"" @@ -29606,7 +29643,7 @@ msgstr "Visita de Manutenção" msgid "Maintenance Visit Purpose" msgstr "Finalidade da Visita de Manutenção" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Manutenção data de início não pode ser anterior à data de entrega para Serial Não {0}" @@ -29753,7 +29790,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Ausente Obrigatória" @@ -29836,8 +29873,8 @@ msgstr "A entrada manual não pode ser criada! Desative a entrada automática pa #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30059,7 +30096,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30237,10 +30274,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30267,7 +30300,7 @@ msgstr "Consumo de Material" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30378,7 +30411,7 @@ msgstr "Requisição de Material" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Data da Requisição de Material" @@ -30428,7 +30461,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Pedido de Material No" @@ -30450,7 +30483,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Solicitação de material não criada, como quantidade para matérias-primas já disponíveis." @@ -30464,7 +30497,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Requisição de Material {0} é cancelada ou parada" @@ -30584,13 +30617,13 @@ msgstr "Material a Fornecedor" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30759,7 +30792,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Mencione a taxa de avaliação no cadastro de itens." @@ -30794,7 +30827,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31140,7 +31173,7 @@ msgstr "Despesas Diversas" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31149,11 +31182,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Conta Em Falta" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "Contas Faltando" @@ -31178,11 +31211,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31190,7 +31223,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31202,7 +31235,7 @@ msgstr "Faltando Parâmetro" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31214,7 +31247,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31222,12 +31255,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Filtro obrigatório ausente: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31476,8 +31509,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31485,8 +31518,8 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Várias regras de preços existe com os mesmos critérios, por favor, resolver o conflito através da atribuição de prioridade. Regras Preço: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31506,7 +31539,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31515,10 +31548,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Deve Ser Número Inteiro" @@ -31603,11 +31636,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31651,7 +31680,7 @@ msgstr "Precisa de Análise" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Negativo Quantidade não é permitido" @@ -31661,12 +31690,12 @@ msgstr "Negativo Quantidade não é permitido" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Taxa de Avaliação negativa não é permitida" @@ -31744,8 +31773,8 @@ msgstr "Valor Líquido" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Valor Patrimonial Líquido como em" @@ -31795,7 +31824,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Lucro Líquido" @@ -31803,7 +31832,7 @@ msgstr "Lucro Líquido" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Lucro / Perda Líquida" @@ -31817,11 +31846,11 @@ msgstr "Lucro / Perda Líquida" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32065,7 +32094,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32138,6 +32167,7 @@ msgid "New Task" msgstr "Nova Tarefa" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32150,9 +32180,9 @@ msgstr "" msgid "New Workplace" msgstr "Novo local de trabalho" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Novo limite de crédito é inferior ao saldo devedor atual do cliente. o limite de crédito deve ser de pelo menos {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32160,6 +32190,10 @@ msgstr "Novo limite de crédito é inferior ao saldo devedor atual do cliente. o msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "A nova data de lançamento deve estar no futuro" @@ -32172,7 +32206,7 @@ msgstr "" msgid "New task" msgstr "Nova Tarefa" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Novas {0} regras de precificação são criadas" @@ -32236,16 +32270,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Nenhum cliente encontrado para transações entre empresas que representam a empresa {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Nenhuma nota de entrega selecionada para o cliente {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32253,15 +32286,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Nenhum artigo com código de barras {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32304,11 +32337,6 @@ msgstr "Nenhuma Permissão" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32411,6 +32439,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Nenhum dado para este período" @@ -32456,7 +32488,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32493,10 +32525,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Nº de Entregas" @@ -32593,7 +32621,7 @@ msgstr "Nenhuma fatura pendente encontrada" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Nenhuma fatura pendente requer reavaliação da taxa de câmbio" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32631,15 +32659,20 @@ msgstr "" msgid "No record found" msgstr "Nenhum registro encontrado" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32668,7 +32701,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32705,7 +32738,7 @@ msgstr "Sem valores" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32713,11 +32746,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "Nenhum {0} encontrado para transações entre empresas." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32769,7 +32797,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Nenhum dos itens tiver qualquer mudança na quantidade ou valor." @@ -32780,8 +32808,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32795,8 +32823,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Não Disponível" @@ -32859,10 +32887,6 @@ msgstr "Não Iniciado" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Não é permitido criar dimensão contábil para {0}" @@ -32879,10 +32903,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "Não autorizado para editar conta congelada {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32895,7 +32915,7 @@ msgstr "Esgotado" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33140,8 +33160,8 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Numero não foi definido no arquivo XML" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33316,11 +33336,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33355,7 +33375,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33420,7 +33440,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33486,7 +33506,7 @@ msgstr "" msgid "Open Events" msgstr "Eventos Abertos" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Abra a Visualização do Formulário" @@ -33639,7 +33659,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33669,7 +33689,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Criação de Fatura Em Andamento" @@ -33697,7 +33717,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33706,7 +33726,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Resumo Das Faturas de Abertura" @@ -33736,20 +33756,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Abertura de Estoque" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33758,7 +33778,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33801,7 +33821,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Custo de Operação" @@ -33892,7 +33912,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Tempo de Operação deve ser maior que 0 para a operação {0}" @@ -33916,8 +33936,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "A operação {0} não pertence à ordem de serviço {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Operação {0} mais do que as horas de trabalho disponíveis na estação de trabalho {1}, quebrar a operação em várias operações" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34102,6 +34122,10 @@ msgstr "Oportunidade {0} criada" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34118,10 +34142,6 @@ msgstr "Opcional. Esta configuração será usada para filtrar em várias transa msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Valor do Pedido" @@ -34407,7 +34427,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34461,7 +34481,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34542,11 +34562,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Excesso de subsídio de colheita (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34563,12 +34583,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34619,10 +34639,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Sobreposição na pontuação entre {0} e {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34688,6 +34704,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34735,7 +34756,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34833,8 +34854,8 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "A fatura de PDV não foi criada pelo usuário {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -34893,7 +34914,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34914,7 +34935,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34937,7 +34958,7 @@ msgstr "Método de Pagamento PDV" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "Perfil do PDV" @@ -34957,7 +34978,7 @@ msgstr "Perfil de Usuário do PDV" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -34969,19 +34990,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35011,11 +35032,11 @@ msgstr "Configurações do PDV" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35034,7 +35055,7 @@ msgstr "Projeto Psoa" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35659,7 +35680,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35786,7 +35807,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35872,7 +35893,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35893,7 +35914,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35929,7 +35950,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36439,7 +36460,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36514,7 +36535,7 @@ msgstr "Cronograma de Pagamentos" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36536,7 +36557,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36636,7 +36657,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36843,11 +36864,11 @@ msgstr "Atividades pendentes para hoje" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37363,12 +37384,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37390,7 +37411,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Erro de sincronização de transações de xadrez" @@ -37541,15 +37562,6 @@ msgstr "Instalações e Maquinários" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Reabasteça os itens e atualize a lista de seleção para continuar. Para descontinuar, cancele a lista de seleção." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Selecione Uma Empresa." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37557,7 +37569,6 @@ msgstr "Selecione Um Cliente" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Selecione Um Fornecedor" @@ -37565,19 +37576,19 @@ msgstr "Selecione Um Fornecedor" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Adicione o modo de pagamento e os detalhes do saldo inicial." @@ -37593,7 +37604,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Adicione uma conta de abertura temporária no plano de contas" @@ -37601,35 +37612,32 @@ msgstr "Adicione uma conta de abertura temporária no plano de contas" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37671,7 +37679,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37684,11 +37692,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Por favor, clique em \"Gerar Agenda\"" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37704,15 +37712,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37720,11 +37728,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Converta a conta-mãe da empresa-filha correspondente em uma conta de grupo." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Crie um Cliente a partir do Lead {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37736,7 +37744,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37748,11 +37756,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37777,7 +37785,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37789,11 +37797,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37809,7 +37817,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Por favor, insira o Nº do Lote" @@ -37825,7 +37833,7 @@ msgstr "Digite Data de Entrega" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37834,7 +37842,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37870,7 +37878,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Por favor, insira o Nº de Série" @@ -38000,7 +38008,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38036,11 +38044,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38069,12 +38073,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38090,9 +38094,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38102,7 +38106,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38125,7 +38129,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38134,6 +38138,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38158,11 +38166,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38191,6 +38199,7 @@ msgid "Please select a BOM" msgstr "Selecione uma lista de materiais" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38198,11 +38207,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Selecione uma empresa primeiro." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Selecione um Cliente" @@ -38211,7 +38221,7 @@ msgstr "Selecione um Cliente" msgid "Please select a Delivery Note" msgstr "Selecione uma nota de entrega" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38223,7 +38233,7 @@ msgstr "Selecione um fornecedor" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38239,6 +38249,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38272,22 +38283,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Selecione uma linha para criar uma entrada de repostagem" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38296,7 +38311,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38304,10 +38319,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Por favor, selecione pelo menos um filtro: Código do Item, Lote ou Nº de Série." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Por favor, selecione pelo menos uma linha para corrigir" @@ -38316,18 +38339,10 @@ msgstr "Por favor, selecione pelo menos uma linha para corrigir" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "Por favor, selecione pelo menos um cronograma." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38365,12 +38380,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38379,7 +38394,7 @@ msgid "Please select the Company" msgstr "Selecione a Empresa" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38403,20 +38418,16 @@ msgstr "Selecione primeiro o tipo de documento." msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38445,7 +38456,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38475,21 +38486,19 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Por favor defina o Código Fiscal para o cliente '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Por favor defina o Código Fiscal da administração pública '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38506,9 +38515,8 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Defina o ID fiscal do cliente '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38527,15 +38535,15 @@ msgid "Please set a Company" msgstr "Defina Uma Empresa" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38552,9 +38560,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "" +msgid "Please set an Address on the Company '{0}'" +msgstr "Por favor defina um endereço na empresa '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38572,24 +38579,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Defina Caixa padrão ou conta bancária no Modo de pagamento {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Defina dinheiro ou conta bancária padrão no modo de pagamento {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Defina Caixa padrão ou conta bancária no Modo de pagamento {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Defina dinheiro ou conta bancária padrão no modo de pagamentos {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38621,11 +38625,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38633,7 +38637,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Defina o Centro de custo padrão na {0} empresa." @@ -38688,7 +38692,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38696,7 +38700,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38706,8 +38710,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38715,11 +38719,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Especifique pelo menos um atributo na tabela de atributos" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38727,6 +38731,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38890,7 +38902,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38915,7 +38927,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38958,8 +38970,8 @@ msgstr "Data da Postagem" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "A Data de Postagem não pode ser uma data futura" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -38967,7 +38979,7 @@ msgstr "A Data de Postagem não pode ser uma data futura" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39160,6 +39172,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39249,7 +39265,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "O Ano Financeiro Anterior não está fechado" @@ -39391,7 +39407,7 @@ msgstr "Preço da Lista País" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Lista de Preço Moeda não selecionado" @@ -39512,7 +39528,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39623,7 +39639,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "A regra de precificação {0} é atualizada" @@ -39831,7 +39847,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40013,7 +40029,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40139,7 +40155,7 @@ msgstr "Pacote de Produtos" msgid "Product Bundle Balance" msgstr "Saldo do Pacote de Produtos" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40164,7 +40180,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40367,7 +40383,7 @@ msgstr "Produtos" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Lucro este ano" @@ -40396,6 +40412,10 @@ msgstr "Lucro e Perdas" msgid "Profit and Loss Statement" msgstr "Demonstrativo de Resultados" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40404,8 +40424,8 @@ msgstr "Demonstrativo de Resultados" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Lucros para o ano" @@ -40478,7 +40498,7 @@ msgstr "" msgid "Project Summary" msgstr "Resumo do Projeto" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Resumo do Projeto Para {0}" @@ -40558,7 +40578,7 @@ msgstr "Rastreio de Estoque por Projeto" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40609,7 +40629,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40755,7 +40775,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40788,9 +40808,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Provisão Lucro / Prejuízo (crédito)" @@ -41018,8 +41038,8 @@ msgstr "Tendência de Faturas de Compra" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "A fatura de compra não pode ser feita com relação a um ativo existente {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "A Fatura de Compra {0} já foi enviada" @@ -41060,7 +41080,7 @@ msgstr "Faturas de Compra" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41084,11 +41104,11 @@ msgstr "Faturas de Compra" msgid "Purchase Order" msgstr "Pedido de Compra" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Valor do Pedido de Compra" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Valor do Pedido de Compra (moeda da Empresa)" @@ -41103,7 +41123,7 @@ msgstr "Valor do Pedido de Compra (moeda da Empresa)" msgid "Purchase Order Analysis" msgstr "Análise de Pedido de Compra" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Data do Pedido" @@ -41152,7 +41172,7 @@ msgid "Purchase Order Required" msgstr "Pedido de Compra Obrigatório" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41212,7 +41232,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41302,7 +41322,7 @@ msgid "Purchase Receipt Required" msgstr "Recibo de Compra Obrigatório" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41322,7 +41342,7 @@ msgid "Purchase Receipt Trends " msgstr "Tendência de Recebimentos " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41550,7 +41570,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41569,7 +41589,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41634,7 +41654,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41671,7 +41691,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41766,7 +41786,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -41952,7 +41972,7 @@ msgstr "Inspeção de Qualidade" msgid "Quality Inspection Analysis" msgstr "Análise de Inspeção de Qualidade" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42029,7 +42049,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42112,7 +42132,7 @@ msgstr "Revisão de Qualidade" msgid "Quality Review Objective" msgstr "Objetivo de Revisão de Qualidade" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42156,12 +42176,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42312,7 +42332,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42340,11 +42360,11 @@ msgstr "A quantidade deve ser maior que 0" msgid "Quantity to Manufacture" msgstr "Quantidade a Fabricar" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "A quantidade a fabricar não pode ser zero para a operação {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Quantidade de Fabricação deve ser maior que 0." @@ -42352,6 +42372,10 @@ msgstr "Quantidade de Fabricação deve ser maior que 0." msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42377,7 +42401,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42617,7 +42641,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42801,7 +42825,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43120,7 +43144,7 @@ msgstr "Razão Para Colocar Em Espera" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Razão Para Segurar" @@ -43362,8 +43386,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43539,6 +43563,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43589,7 +43617,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43669,7 +43697,7 @@ msgstr "Referência #" msgid "Reference #{0} dated {1}" msgstr "Referência #{0} datado de {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -43961,7 +43989,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44068,7 +44096,7 @@ msgstr "Observação" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44107,7 +44135,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Itens removidos sem nenhuma alteração na quantidade ou valor." @@ -44258,7 +44286,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44341,7 +44369,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44387,6 +44415,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44471,7 +44508,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Entrega Esperada em" @@ -44587,11 +44624,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Solicitando Site" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Solicitador" @@ -44770,6 +44807,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44808,8 +44849,8 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "" +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "A Quantidade reservada ({0}) não pode ser uma fração. Para permitir isso, desative '{1}' na UOM {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44853,7 +44894,7 @@ msgstr "Quantidade Reservada" msgid "Reserved Quantity for Production" msgstr "Quantidade Reservada Para Produção" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44869,13 +44910,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45369,6 +45410,10 @@ msgstr "" msgid "Returns" msgstr "Devoluções" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45793,11 +45838,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45881,23 +45926,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -45973,13 +46018,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -45991,7 +46039,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -45999,12 +46047,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46016,7 +46064,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Linha #{0}: Data de Início da Depreciação é obrigatória" @@ -46024,6 +46072,10 @@ msgstr "Linha #{0}: Data de Início da Depreciação é obrigatória" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46036,11 +46088,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46063,8 +46122,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46076,7 +46135,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46088,6 +46147,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46116,16 +46179,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46141,12 +46204,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46157,15 +46224,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46177,24 +46244,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46210,6 +46301,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46229,7 +46324,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46252,7 +46347,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46260,17 +46355,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46290,11 +46385,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46304,7 +46399,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46313,6 +46408,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46325,7 +46424,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46349,7 +46448,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46418,7 +46517,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46426,19 +46525,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46450,11 +46557,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46462,6 +46573,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46478,6 +46602,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46518,71 +46650,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Linha #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46595,10 +46666,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46619,19 +46686,19 @@ msgstr "Linha {0}: Avanço contra o Cliente deve estar de crédito" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Linha {0}: Adiantamento relacionado com o fornecedor deve ser um débito" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46647,11 +46714,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Linha {0}: Fator de Conversão é obrigatório" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46679,24 +46746,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Linha {0}: a data de vencimento na tabela Condições de pagamento não pode ser anterior à data de lançamento" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Linha {0}: Taxa de Câmbio é obrigatória" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46717,6 +46784,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Linha {0}: É obrigatório colocar a Periodicidade." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46738,7 +46808,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Linha {0}: referência inválida {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46769,7 +46839,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46793,7 +46863,7 @@ msgstr "Linha {0}: o pagamento relacionado a Pedidos de Compra/Venda deve ser se msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Linha {0}: Por favor selecione 'É Adiantamento' se este é um lançamento de adiantamento relacionado à conta {1}." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46801,12 +46871,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46825,11 +46895,11 @@ msgstr "Linha {0}: Por favor defina o código correto em Modo de pagamento {1}" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46837,7 +46907,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46849,7 +46919,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46874,10 +46944,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Linha {0}: o item {1}, a quantidade deve ser um número positivo" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46930,15 +47000,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Linha {0}: {1} {2} não corresponde com {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Linha {1}: Quantidade ({0}) não pode ser uma fração. Para permitir isso, desative ';{2}'; no UOM {3}." @@ -46977,7 +47051,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47038,10 +47112,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47109,7 +47179,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "SLA está em espera desde {0}" @@ -47408,7 +47478,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47625,8 +47695,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48033,7 +48103,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48065,7 +48135,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Tamanho da Amostra" @@ -48175,7 +48245,7 @@ msgstr "" msgid "Schedule Date" msgstr "Data Agendada" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48186,7 +48256,7 @@ msgstr "" msgid "Scheduled Date" msgstr "Data Agendada" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48472,7 +48542,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Selecionar Item Alternativo" @@ -48493,7 +48563,7 @@ msgid "Select BOM and Qty for Production" msgstr "Selecionar LDM e Quantidade Para Produção" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48558,7 +48628,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Selecione Colaboradores" @@ -48583,7 +48653,7 @@ msgstr "Selecione Itens" msgid "Select Items based on Delivery Date" msgstr "Selecione itens com base na data de entrega" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48613,7 +48683,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "Selecione o Programa de Fidelidade" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48627,13 +48697,13 @@ msgid "Select Quantity" msgstr "Selecionar Quantidade" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48724,6 +48794,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Selecione uma conta para imprimir na moeda da conta" @@ -48865,10 +48936,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49016,7 +49091,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Envie SMS" @@ -49100,7 +49175,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49157,10 +49232,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49202,6 +49278,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "Nº de Série Já Atribuído" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Série Sem Contagem" @@ -49219,7 +49299,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49264,7 +49344,7 @@ msgid "Serial No and Batch" msgstr "Número de Série e Lote" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49276,7 +49356,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49296,21 +49376,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49325,25 +49402,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Serial no {0} não foi encontrado" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Número de série: {0} já foi transacionado para outra fatura de PDV." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49363,7 +49441,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49464,6 +49542,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49512,7 +49594,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Número de série {0} entrou mais de uma vez" @@ -49520,122 +49602,12 @@ msgstr "Número de série {0} entrou mais de uma vez" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Série" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Série é obrigatório" @@ -49717,7 +49689,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49826,12 +49798,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Data de parada de serviço não pode ser após a data de término do serviço" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "A data de parada de serviço não pode ser anterior à data de início do serviço" @@ -49855,7 +49827,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49870,7 +49842,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "Definir Depósito de Entrega" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -49975,7 +49947,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -49993,7 +49965,7 @@ msgstr "Definir Fornecedor" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50019,7 +49991,7 @@ msgstr "Definir Como Fechado" msgid "Set as Completed" msgstr "Definir Como Concluído" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Definir Como Perdido" @@ -50117,15 +50089,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Defina {0} na categoria de recurso {1} ou na empresa {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Defina {0} na empresa {1}" @@ -50193,7 +50165,7 @@ msgid "Setting up company" msgstr "Criação de empresa" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50621,6 +50593,7 @@ msgid "Show Completed" msgstr "Mostrar Concluído" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50823,7 +50796,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50926,11 +50899,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -50991,7 +50964,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51047,7 +51020,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51115,7 +51088,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51152,8 +51125,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51283,7 +51256,7 @@ msgstr "Problema de Divisão" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51296,7 +51269,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51349,7 +51327,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51414,10 +51392,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Data de início não pode ser anterior à data atual" @@ -51447,7 +51441,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51476,10 +51470,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "A data de início deve ser inferior à data de término da tarefa {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51560,7 +51558,7 @@ msgstr "" msgid "Status and Reference" msgstr "Status e Referência" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51688,7 +51686,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51770,16 +51768,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "A entrada de estoque já foi criada para esta lista de seleção" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Lançamento de Estoque {0} criado" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51946,7 +51948,7 @@ msgstr "Projeção de Estoque" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52029,7 +52031,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52054,15 +52056,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52232,7 +52234,7 @@ msgstr "Transações de Estoque" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52391,8 +52393,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52411,7 +52413,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52426,7 +52428,7 @@ msgstr "" msgid "Stop Reason" msgstr "Razão de Parada" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "A ordem de trabalho interrompida não pode ser cancelada, descompacte-a primeiro para cancelar" @@ -52434,7 +52436,7 @@ msgstr "A ordem de trabalho interrompida não pode ser cancelada, descompacte-a #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Lojas" @@ -52648,7 +52650,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52720,7 +52722,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52758,7 +52760,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52832,7 +52834,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52851,7 +52853,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52880,7 +52882,7 @@ msgstr "Envie esta Ordem de Serviço para processamento adicional." msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53022,7 +53024,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Reconciliados Com Sucesso" @@ -53200,7 +53202,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53382,7 +53384,7 @@ msgstr "Data de Emissão da Nota Fiscal de Compra" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53530,7 +53532,7 @@ msgstr "Comparação de Cotação de Fornecedor" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Orçamento do Fornecedor {0} Criado" @@ -53715,10 +53717,6 @@ msgstr "Equipe de Pós-vendas" msgid "Support Tickets" msgstr "Bilhetes de Suporte" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53804,7 +53802,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53865,7 +53863,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -53975,11 +53973,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "" +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "O Depósito de Destino para Produto Acabado deve ser o mesmo que o Depósito de Produto Acabado {0} na Ordem de Produção {1} vinculada à Ordem de Entrada de Subcontratação." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54454,7 +54452,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Valor Tributável" @@ -54666,7 +54664,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -54973,23 +54971,27 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "O 'No. do pacote' o campo não deve estar vazio nem ter valor menor que 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "O Acesso À Solicitação de Cotação do Portal Está Desabilitado. Para Permitir o Acesso, Habilite-o Nas Configurações do Portal." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55014,6 +55016,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "O programa de fidelidade não é válido para a empresa selecionada" @@ -55031,8 +55037,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55043,11 +55052,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55095,15 +55108,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55152,6 +55165,10 @@ msgstr "O campo Acionista não pode estar em branco" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Os campos do Acionista e do Acionista não podem estar em branco" @@ -55173,8 +55190,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55202,7 +55219,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Os seguintes funcionários ainda estão subordinados a {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55214,7 +55231,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Os seguintes {0} foram criados: {1}" @@ -55250,7 +55267,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55288,11 +55305,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55341,6 +55358,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55350,7 +55371,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55367,8 +55388,8 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "A conta de alteração selecionada {} não pertence à Empresa {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55384,7 +55405,7 @@ msgstr "O vendedor e o comprador não podem ser os mesmos" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55403,11 +55424,11 @@ msgstr "As ações já existem" msgid "The shares don't exist with the {0}" msgstr "As ações não existem com o {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "" +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "O estoque do item {0} no armazém {1} era negativo em {2}. Você deve criar uma entrada positiva {3} antes da data {4} e hora {5} para lançar a taxa de avaliação correta. Para obter mais detalhes, leia a documentação." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55429,16 +55450,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55477,7 +55498,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "O valor de {0} difere entre Itens {1} e {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55501,7 +55522,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "O {0} ({1}) deve ser igual a {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55509,7 +55530,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55517,6 +55538,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55525,7 +55550,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55537,7 +55562,7 @@ msgstr "Existem inconsistências entre a taxa, o número de ações e o valor ca msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55554,6 +55579,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55570,10 +55599,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55602,20 +55627,20 @@ msgstr "Nenhum lote encontrado em {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55666,15 +55691,19 @@ msgstr "Resumo Deste Mês" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55696,7 +55725,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55714,7 +55743,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Este documento ultrapassou o limite em {0} {1} para o item {4}. Você está fazendo outro {3} contra o mesmo {2}?" @@ -55856,7 +55885,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55920,7 +55949,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55947,10 +55976,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56008,7 +56037,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56137,6 +56166,12 @@ msgstr "Tempo (em minutos)" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56423,7 +56458,7 @@ msgid "To Time" msgstr "Horário Final" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56454,15 +56489,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56479,7 +56514,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56491,7 +56526,7 @@ msgid "To create a Payment Request reference document is required" msgstr "Para criar um documento de referência de Pedido de pagamento é necessário" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56504,8 +56539,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Para incluir impostos na linha {0} na taxa de Item, os impostos em linhas {1} também deve ser incluída" @@ -56525,7 +56560,7 @@ msgstr "Para anular isso, ative ';{0}'; na empresa {1}" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56542,10 +56577,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56624,8 +56661,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Total (crédito)" @@ -56667,6 +56704,22 @@ msgstr "" msgid "Total Advance" msgstr "Avanço total" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56714,11 +56767,11 @@ msgstr "Valor Total Devido" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56900,7 +56953,7 @@ msgstr "Quantidade Total Entregue" msgid "Total Demand (Past Data)" msgstr "Demanda Total (dados Anteriores)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56909,11 +56962,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Custo Total" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Despesa total este ano" @@ -56951,11 +57004,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Renda Total" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Renda total este ano" @@ -56998,7 +57051,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57313,7 +57366,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57322,7 +57375,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Total Por Pagar: {0}" @@ -57401,7 +57458,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "Porcentagem total alocado para a equipe de vendas deve ser de 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "A porcentagem total de contribuição deve ser igual a 100" @@ -57419,8 +57476,8 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "O valor total dos pagamentos não pode ser maior que {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57437,8 +57494,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57527,27 +57584,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Transação" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57600,11 +57641,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -57994,6 +58035,10 @@ msgstr "Balancete (simples)" msgid "Trial Balance for Party" msgstr "Balancete Por Parceiro" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58178,7 +58223,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58200,7 +58245,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58230,7 +58275,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58294,7 +58339,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Fator de Conversão da Unidade de Medida" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58368,7 +58413,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58381,10 +58426,6 @@ msgstr "Não é possível encontrar a taxa de câmbio para {0} a {1} para a data msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Não é possível encontrar a taxa de câmbio para {0} a {1} para a data-chave {2}. Crie um registro de troca de moeda manualmente." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Não foi possível encontrar uma pontuação a partir de {0}. Você precisa ter pontuações em pé cobrindo de 0 a 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58409,7 +58450,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Total Não Alocado" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58421,8 +58462,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "Desbloquear Fatura" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58472,7 +58515,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58495,7 +58538,7 @@ msgstr "" msgid "Unit Price" msgstr "Preço Unitário" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Unidade de Medida" @@ -58698,7 +58741,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "Empréstimos Não Garantidos" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58711,7 +58754,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58855,7 +58898,7 @@ msgstr "Atualizar Estoque Atual" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58919,7 +58962,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59147,7 +59190,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Use um nome diferente do nome do projeto anterior" @@ -59236,6 +59279,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "O usuário não aplicou regra na fatura {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Usuário {0} não existe" @@ -59248,6 +59295,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "Usuário {0} já está atribuído ao Colaborador {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59256,10 +59307,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "O usuário {} está desativado. Selecione um usuário / caixa válido" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59552,15 +59599,15 @@ msgstr "Custo Unitário" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Taxa de Avaliação Ausente" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Taxa de avaliação para o item {0}, é necessária para fazer lançamentos contábeis para {1} {2}." @@ -59568,7 +59615,7 @@ msgstr "Taxa de avaliação para o item {0}, é necessária para fazer lançamen msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "É obrigatório colocar a Taxa de Avaliação se foi introduzido o Estoque de Abertura" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59578,7 +59625,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59591,13 +59638,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59648,12 +59695,12 @@ msgstr "Proposta de Valor" msgid "Value Type" msgstr "Tipo de Valor" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59662,19 +59709,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60150,7 +60197,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60178,7 +60225,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60190,7 +60237,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60222,7 +60269,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60429,7 +60476,7 @@ msgstr "Armazém é obrigatório" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Armazém não encontrado na conta {0}" @@ -60447,16 +60494,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Armazém {0} não pertence à empresa {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "O Depósito {0} não existe" @@ -60577,7 +60624,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60597,7 +60644,7 @@ msgstr "Aviso: Outra {0} # {1} existe contra entrada de material {2}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60751,10 +60798,6 @@ msgstr "Grupo de Itens do Site" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60900,7 +60943,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61076,17 +61119,17 @@ msgstr "Trabalho Em Andamento" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61125,7 +61168,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61166,20 +61209,20 @@ msgstr "Resumo da Ordem de Serviço" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "A Ordem de Serviço não pode ser criada pelo seguinte motivo:
                    {0}" - -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" + +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "A ordem de serviço foi {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61200,7 +61243,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Ordens de Trabalho" @@ -61225,7 +61268,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Armazém de Trabalho em Andamento é necessário antes de Enviar" @@ -61278,7 +61321,7 @@ msgstr "Horas de Trabalho" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61510,14 +61553,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61532,7 +61567,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61552,7 +61587,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61563,19 +61598,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "Você também pode copiar e colar este link no seu navegador" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Você também pode definir uma conta CWIP padrão na Empresa {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61597,8 +61628,8 @@ msgid "You can only select one mode of payment as default" msgstr "Você só pode selecionar um modo de pagamento como padrão" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Você pode resgatar até {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61616,14 +61647,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61632,16 +61655,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Você não pode criar ou cancelar qualquer lançamento contábil no período contábil fechado {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61653,15 +61676,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Você não pode editar o nó raiz." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61669,7 +61700,7 @@ msgid "You cannot redeem more than {0}." msgstr "Você não pode resgatar mais de {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61677,8 +61708,8 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "Você não pode reiniciar uma Assinatura que não seja cancelada." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Você não pode enviar um pedido vazio." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61692,6 +61723,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61702,8 +61737,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "Você não tem permissão para {} itens em um {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61729,11 +61764,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Você teve {} erros ao criar faturas de abertura. Verifique {} para obter mais detalhes" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Já selecionou itens de {0} {1}" @@ -61750,7 +61785,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61765,19 +61800,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Você precisa habilitar a reordenação automática nas Configurações de estoque para manter os níveis de reordenamento." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61829,6 +61864,10 @@ msgstr "CEP" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61859,7 +61898,7 @@ msgstr "[Importante] [ERPNext] Erros de reordenamento automático" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61879,7 +61918,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61895,10 +61934,6 @@ msgstr "baseado em" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61953,8 +61988,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62034,14 +62069,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62055,7 +62086,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62131,8 +62162,8 @@ msgstr "vendido" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62195,10 +62226,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' está desativado" @@ -62211,7 +62238,7 @@ msgstr "{0} '{1}' não localizado no Ano Fiscal {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) não pode ser maior que a quantidade planejada ({2}) na Ordem de Serviço {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62231,7 +62258,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} o cupom usado é {1}. a quantidade permitida está esgotada" @@ -62239,11 +62266,6 @@ msgstr "{0} o cupom usado é {1}. a quantidade permitida está esgotada" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Número {1} já é usado em {2} {3}" @@ -62325,10 +62347,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "{0} não pode ser negativo" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62344,7 +62374,7 @@ msgstr "" msgid "{0} created" msgstr "{0} criou" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62386,7 +62416,7 @@ msgstr "{0} para {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62394,6 +62424,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "{0} foi enviado com sucesso" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62402,7 +62436,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "{0} na linha {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62416,7 +62454,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62424,7 +62462,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62437,11 +62475,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} é obrigatório. Talvez o registro de câmbio não tenha sido criado para {1} a {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} é obrigatório. Talvez o valor de câmbio não exista de {1} para {2}." @@ -62449,7 +62487,7 @@ msgstr "{0} é obrigatório. Talvez o valor de câmbio não exista de {1} para { msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} não é uma conta bancária da empresa" @@ -62465,7 +62503,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} não é um valor válido para o atributo {1} do item {2}." @@ -62481,17 +62519,17 @@ msgstr "{0} não é adicionado na tabela" msgid "{0} is not enabled in {1}" msgstr "{0} não está habilitado em {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} está em espera até {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62541,7 +62579,7 @@ msgstr "{0} parâmetro é inválido" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} entradas de pagamento não podem ser filtrados por {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62554,7 +62592,7 @@ msgstr "{0} a {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62570,16 +62608,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "São necessárias {0} unidades de {1} em {2} em {3} {4} para {5} para concluir esta transação." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "São necessárias {0} unidades de {1} em {2} para concluir esta transação." @@ -62587,7 +62625,7 @@ msgstr "São necessárias {0} unidades de {1} em {2} para concluir esta transaç msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62595,7 +62633,7 @@ msgstr "" msgid "{0} variants created." msgstr "{0} variantes criadas." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62629,7 +62667,7 @@ msgstr "{0} {1} criado" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} não existe" @@ -62663,12 +62701,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} está associado a {2}, mas a Conta do Partido é {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62700,6 +62747,10 @@ msgstr "{0} {1} está totalmente faturado" msgid "{0} {1} is not active" msgstr "{0} {1} não está ativo" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} não está associado com {2} {3}" @@ -62805,27 +62856,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Não encontrado" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62841,7 +62888,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "{0}: {1} é uma conta de grupo." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62853,7 +62900,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62865,32 +62912,7 @@ msgstr "{ref_doctype} {ref_name} status é {status}." msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} não pode ser cancelado porque os pontos de fidelidade ganhos foram resgatados. Primeiro cancele o {} Não {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} enviou ativos vinculados a ele. Você precisa cancelar os ativos para criar o retorno de compra." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} faturas" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/ru.po b/erpnext/locale/ru.po index a76a345e1d2..c36e387429a 100644 --- a/erpnext/locale/ru.po +++ b/erpnext/locale/ru.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: ru_RU\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "Нельзя убрать отметку \"Является основн msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"Серийный номер-01::10\" от \"SN-01\" до \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# В наличии" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Требуемые элементы" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "Разрешить несколько заказов на продажу в отношении одного заказа клиента на покупку" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'На основании' и 'Группировка по' не могут быть одинаковыми" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "Значение 'С даты' должно быть после 'До даты'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Имеет серийный номер' не может быть 'Да' для товаров без запасов" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "«Требуется проверка перед доставкой» отключено для товара {0}, нет необходимости создавать QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "«Требуется проверка перед покупкой» отключено для товара {0}, нет необходимости создавать QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Открытие'" @@ -326,13 +317,13 @@ msgstr "'Открытие'" msgid "'To Date' is required" msgstr "Поле 'До Даты' является обязательным для заполнения" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "\"Номер упаковки для получения\" не может быть меньше \"Номера упаковки отправления\"" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "Нельзя выбрать 'Обновить запасы', так как продукты не поставляются через {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "Больше 90" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "Невозможно создать актив.

                    Вы пытаетесь создать {0} актив(ы) из {2} {3}.
                    Однако были куплены только {1} товар(ов) и {4} актив(ы) уже существуют против {5}." @@ -826,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Платежный документ, необходимый для строк: {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Невозможно выставить счет на сумму, превышающую указанную ниже:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Подписка на {0}не принадлежит компании {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1055,9 +1046,9 @@ msgstr "A - B" msgid "A - C" msgstr "А - В" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Группа клиентов с таким именем уже существует. Пожалуйста, измените имя клиента или имя группы клиентов" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1067,9 +1058,9 @@ msgstr "Можно добавить список праздничных дней msgid "A Lead requires either a person's name or an organization's name" msgstr "Ведущий требует либо имя человека, либо название организации" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Упаковочный лист может быть создан только для черновика транспортной накладной." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1085,7 +1076,7 @@ msgstr "Прайс-лист — это набор цен на товары пр msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Продукт или Услуга, которые куплены, проданы или хранятся на складе." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Задание по согласованию {0} выполняется для одинаковых фильтров. Невозможно выполнить согласование сейчас" @@ -1118,7 +1109,7 @@ msgstr "Драйвер должен быть установлен для отп msgid "A logical Warehouse against which stock entries are made." msgstr "Логическое Хранилище, по которому производятся записи о запасах." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "При создании серийных номеров возник конфликт в именовании. Пожалуйста, измените именование для элемента {0}." @@ -1294,7 +1285,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Принятое количество на складе Ед. изм." #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Количество принятых" @@ -1325,12 +1316,16 @@ msgstr "Ключ доступа" msgid "Access Key is required for Service Provider: {0}" msgstr "Ключ доступа необходим для Поставщика услуг: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "В соответствии с CEFACT/ICG/2010/IC013 или CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "В соответствии с BOM {0}, товар '{1}' отсутствует в складской записи." @@ -1583,7 +1578,7 @@ msgstr "Счет обязателен для получения платежны msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Счет не найден" @@ -1713,11 +1708,11 @@ msgstr "Счет: {0} является незавершенным и не msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Счет: {0} можно обновить только через перемещение по складу" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Счет: {0} не разрешен при вводе платежа" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Счет: {0} с валютой: {1} не может быть выбран" @@ -1996,8 +1991,8 @@ msgstr "Фильтр параметров учета" msgid "Accounting Entries" msgstr "Бухгалтерские проводки" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Учетная запись для активов" @@ -2022,8 +2017,8 @@ msgstr "Бухгалтерская запись для обслуживания" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2071,7 +2066,11 @@ msgstr "" msgid "Accounting Period" msgstr "Отчётный период" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Отчетный период перекрывается с {0}" @@ -2269,8 +2268,8 @@ msgstr "Сумма начисленной амортизации" msgid "Accumulated Depreciation Amount" msgstr "Сумма начисленной амортизации" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Накопленная амортизация на" @@ -2498,7 +2497,7 @@ msgstr "Фактический остаток Кол-во" msgid "Actual Batch Quantity" msgstr "Фактическое количество партии" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Действительная цена" @@ -2508,7 +2507,7 @@ msgstr "Действительная цена" msgid "Actual Date" msgstr "Текущая дата" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2658,8 +2657,8 @@ msgstr "Фактическое время в часах (по табелю уч msgid "Actual qty in stock" msgstr "Количество штук в наличии" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Фактический тип налога не может быть включён в стоимость продукта в строке {0}" @@ -2824,10 +2823,6 @@ msgstr "Добавить серийный номер/номер партии" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Добавить серийный номер/номер партии (отклоненное количество)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Добавить запас" @@ -2926,13 +2921,13 @@ msgstr "Добавлено" msgid "Added On" msgstr "Добавлено" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Добавлена роль поставщика для пользователя {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Добавлена роль {1} для пользователя {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3074,7 +3069,7 @@ msgstr "Сумма дополнительной скидки" msgid "Additional Discount Amount (Company Currency)" msgstr "Сумма дополнительной скидки (в валюте компании)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "Сумма дополнительной скидки ({discount_amount}) не может превышать общую сумму до предоставления такой скидки ({total_before_discount})" @@ -3193,16 +3188,8 @@ msgid "Additional Transferred Qty" msgstr "Дополнительное передаваемое количество" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "Дополнительное переданное количество {0}\n" -"\t\t\t\t\tне может быть больше, чем {1}.\n" -"\t\t\t\t\tЧтобы исправить это, увеличьте процентное значение\n" -"\t\t\t\t\tполя 'Передать дополнительное сырьё в не завершённое производство'\n" -"\t\t\t\t\tв Настройках производства." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3466,7 +3453,7 @@ msgstr "Тип авансового документа" msgid "Advance amount" msgstr "Сумма аванса" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Предварительная сумма не может быть больше, чем {0} {1}" @@ -3535,7 +3522,7 @@ msgstr "Против" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Со счета" @@ -3655,7 +3642,7 @@ msgstr "По счет-фактуре поставщика {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Против ваучером" @@ -3679,7 +3666,7 @@ msgstr "По номеру чека" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Против Сертификаты Тип" @@ -3793,6 +3780,13 @@ msgstr "Авиакомпания" msgid "Algorithm" msgstr "Алгоритм" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3969,7 +3963,7 @@ msgstr "" msgid "All items are already requested" msgstr "Все предметы уже запрошены" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "На все товары уже выставлен счет / возврат" @@ -3981,7 +3975,7 @@ msgstr "Все товары уже получены" msgid "All items have already been transferred for this Work Order." msgstr "Все продукты уже переведены для этого Заказа." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Все товары этого документа уже имеют связанную проверку качества." @@ -4000,16 +3994,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Все комментарии и электронные письма будут скопированы из одного документа в другой, вновь созданный документ (Лид -> Возможность -> Предложение) во всех документах CRM." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Все предметы уже были возвращены." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Все требуемые элементы (сырье) будут получены из спецификации и заполнены в этой таблице. Здесь вы также можете изменить исходный склад для любого элемента. И во время производства вы можете отслеживать переданное сырье из этой таблицы." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "На все эти товары уже выставлен счет / возврат" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4032,7 +4026,7 @@ msgstr "Автоматическое распределение авансов ( msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Выделяют Сумма платежа" @@ -4042,7 +4036,7 @@ msgstr "Выделяют Сумма платежа" msgid "Allocate Payment Based On Payment Terms" msgstr "Распределить платеж на основе условий оплаты" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Разместить запрос на оплату" @@ -4072,7 +4066,7 @@ msgstr "Выделено" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4155,8 +4149,8 @@ msgid "Allow Alternative Item" msgstr "Разрешить альтернативный товар" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Опция \"Разрешить альтернативный товар\" должна быть отмечена для товара {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4263,7 +4257,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Разрешить переименовывать значение атрибута" @@ -4544,14 +4538,16 @@ msgstr "Разрешенные элементы" msgid "Allowed To Transact With" msgstr "Разрешено спрятать" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "Разрешенные основные роли: «Клиент» и «Поставщик». Пожалуйста, выберите только одну из этих ролей." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4584,10 +4580,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "Позволяет пользователям подавать предложения поставщиков с нулевым количеством. Полезно, когда ставки фиксированы, а количество - нет. Например, тарифные контракты." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4595,10 +4591,6 @@ msgstr "" msgid "Already Picked" msgstr "Уже выбрано" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Уже существует запись для элемента {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Уже задан по умолчанию в pos-профиле {0} для пользователя {1}, любезно отключен по умолчанию" @@ -4614,12 +4606,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Альтернативный продукт" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4824,7 +4816,7 @@ msgstr "Всегда спрашивайте" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5050,12 +5042,12 @@ msgstr "Группа предмета — это способ классифик msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Произошла ошибка при перерасчете оценки стоимости товара через {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Произошла ошибка во время процесса обновления" @@ -5269,7 +5261,7 @@ msgstr "Прикладной код купона" msgid "Applied on each reading." msgstr "Применяется при каждом чтении." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Применены правила размещения." @@ -5446,10 +5438,6 @@ msgstr "Назначение Бронирование Слоты" msgid "Appointment Confirmation" msgstr "Подтверждение назначения" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Назначение успешно создано" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5475,6 +5463,10 @@ msgstr "Планирование встреч отключено для этог msgid "Appointment With" msgstr "Встреча с" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Встреча была создана, но лид не найден. Пожалуйста, проверьте электронную почту для подтверждения" @@ -5516,6 +5508,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "Вы уверены, что хотите удалить все демо данные?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "Вы уверены, что хотите удалить этот элемент?" @@ -5598,18 +5599,18 @@ msgstr "Поскольку поле {0} включено, значение по msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Поскольку существуют отправленные транзакции по элементу {0}, вы не можете изменить значение {1}." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "Поскольку имеются зарезервированные запасы, вы не можете отключить {0}." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Поскольку достаточно комплектующих, заказ на работу не требуется для склада {0}" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Поскольку сырья достаточно, запрос материалов для хранилища {0} не требуется." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5648,7 +5649,7 @@ msgstr "Элементы сборки" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5720,7 +5721,7 @@ msgstr "Запасный элемент капитализируемого ак #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5886,7 +5887,7 @@ msgstr "Элемент Движения Актива" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6018,7 +6019,7 @@ msgstr "Аналитика стоимости активов" msgid "Asset cancelled" msgstr "Актив аннулирован" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Asset не может быть отменена, так как она уже {0}" @@ -6034,7 +6035,7 @@ msgstr "Актив капитализирован после того, как б msgid "Asset created" msgstr "Актив создан" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Актив создан после разделения Актива {0}" @@ -6087,7 +6088,7 @@ msgstr "Актив утвержден" msgid "Asset transferred to Location {0}" msgstr "Актив переведен в Местоположение {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Актив обновлен после разделения на Актив {0}" @@ -6165,7 +6166,7 @@ msgstr "Стоимость актива скорректирована посл #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6186,7 +6187,7 @@ msgstr "Активы не созданы для {item_code}. Вам придет msgid "Assets {assets_link} created for {item_code}" msgstr "Активы {assets_link} созданные для {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Назначить работу сотруднику" @@ -6196,6 +6197,11 @@ msgstr "Назначить работу сотруднику" msgid "Assign to Name" msgstr "Назначить на имя" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6214,19 +6220,23 @@ msgstr "В строке #{0}: Выбранное количество {1} для msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "В строке #{0}: выбранное количество {1} для товара {2} больше, чем доступный запас {3} на складе {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "В строке {0}: в последовательном и пакетном режиме пакет {1} должен иметь docstatus равный 1, а не 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "Необходим хотя бы один счет, отражающий прибыль или убыток от обмена" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "Необходимо выбрать хотя бы один актив." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "Необходимо выбрать хотя бы один счет-фактуру." @@ -6247,6 +6257,10 @@ msgstr "По крайней мере один из Применимых моду msgid "At least one of the Selling or Buying must be selected" msgstr "Необходимо выбрать хотя бы один вариант «Продажа» или «Покупка»" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "Как минимум одна единица сырья должна присутствовать в записи о запасах для типа {0}" @@ -6267,7 +6281,7 @@ msgstr "В строке #{0}: идентификатор последовате msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "В строке {0}: Номер партии обязателен для элемента {1}" @@ -6275,26 +6289,22 @@ msgstr "В строке {0}: Номер партии обязателен для msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "В строке {0}: родительский номер строки не может быть установлен для элемента {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "В строке {0}: Количество является обязательным для партии {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "В строке {0}: Серийный номер является обязательным для элемента {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "В строке {0}: Серийный и партионный комплект {1} уже созданы. Пожалуйста, удалите значения из полей серийного номера или номера партии." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "В строке {0}: установить номер родительской строки для элемента {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "Как минимум одно сырье для готового товара {0} должно быть предоставлено клиентом." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6506,7 +6516,7 @@ msgstr "Автоматическое согласование платежей msgid "Auto Repeat Detail" msgstr "Подробности автоповтора" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "Ошибка настроек автоматического налога" @@ -6567,7 +6577,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Автоматический повторный документ обновлен" @@ -6692,7 +6702,7 @@ msgstr "Дата использования" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6788,7 +6798,7 @@ msgstr "Доступна дата использования" msgid "Available {0}" msgstr "Доступно {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Доступная для использования дата должна быть после даты покупки" @@ -6906,7 +6916,7 @@ msgstr "Количество в ячейке" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6925,8 +6935,8 @@ msgid "BOM 1" msgstr "Спецификация 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "Спецификация 1 {0} и спецификация 2 {1} не должны совпадать" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6940,7 +6950,7 @@ msgstr "Спецификация 2" msgid "BOM Comparison Tool" msgstr "Инструмент сравнения спецификации" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7071,7 +7081,7 @@ msgstr "Операция спецификации" msgid "BOM Operations Time" msgstr "Время операций по спецификации" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7092,7 +7102,7 @@ msgstr "Спецификация Поиск" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7144,10 +7154,6 @@ msgstr "Поддерживается журнал обновления спец msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Обновление спецификации уже идет. Пожалуйста, подождите, пока {0} не завершится." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "Обновление спецификации поставлено в очередь и может занять несколько минут. Проверьте {0} для прогресса." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7186,15 +7192,19 @@ msgstr "Рекурсия спецификации: {0} не может быть msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Рекурсия спецификации: {1} не может быть родителем или дочерним компонентом {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "Спецификация {0} не относится к продукту {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "ВМ {0} должен быть активным" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "ВМ {0} должен быть проведён" @@ -7275,7 +7285,7 @@ msgstr "Баланс" msgid "Balance (Dr - Cr)" msgstr "Баланс (Дт-Кт)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Баланс ({0})" @@ -7345,6 +7355,10 @@ msgstr "Балансовый отчет Закрытие баланса" msgid "Balance Sheet Summary" msgstr "Сводка баланса" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Остаток на складе Кол-во" @@ -7405,7 +7419,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7505,8 +7519,8 @@ msgid "Bank Account Type" msgstr "Тип банковского счета" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "Банковский счет {} в банковской транзакции {} не совпадает с банковским счетом {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7750,7 +7764,7 @@ msgstr "Банковская транзакция {0} обновлена" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Банковский счет не может быть назван {0}" @@ -7762,7 +7776,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Банковский счет {0} уже существует и не может быть создан снова" @@ -7774,7 +7788,7 @@ msgstr "Добавлены банковские счета" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Ошибка создания банковской транзакции" @@ -8050,8 +8064,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8082,15 +8096,15 @@ msgstr "" msgid "Batch No" msgstr "Партия №" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Номер партии обязателен" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Номер партии {0} не существует" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Номер партии {0} связан с товаром {1}, у которого есть серийный номер. Вместо этого отсканируйте серийный номер." @@ -8098,6 +8112,10 @@ msgstr "Номер партии {0} связан с товаром {1}, у ко msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Номер партии {0} отсутствует в оригинале {1} {2}, поэтому Вы не можете вернуть его на {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8163,9 +8181,9 @@ msgstr "Единица измерения партии" msgid "Batch and Serial No" msgstr "Номер партии и серийный номер" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Партия для товара {} не создана, так как у него отсутствуют серии партий." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8277,7 +8295,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8752,8 +8770,8 @@ msgid "Booked Fixed Asset" msgstr "Зарегистрированный основной актив" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "Записи в бухгалтерии закрыты до окончания периода, заканчивающегося {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8980,8 +8998,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Бюджет не может быть назначен на учетную запись группы {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Бюджет не может быть назначен на {0}, так как это не доход или расход счета" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8998,7 +9016,7 @@ msgstr "Дополнительное время" msgid "Buffered Cursor" msgstr "Буферизованный курсор" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Построить все?" @@ -9006,7 +9024,7 @@ msgstr "Построить все?" msgid "Build Tree" msgstr "Построить дерево" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Количество для сборки" @@ -9333,6 +9351,10 @@ msgstr "Расчетный банк себе баланс" msgid "Calculated Discount Mismatch" msgstr "Несоответствие рассчитанной скидки" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9504,7 +9526,7 @@ msgstr "Кампания {0} не найдена" msgid "Can be approved by {0}" msgstr "Может быть одобрено {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "Невозможно закрыть заказ на работу. Поскольку {0} карточек заданий находятся в состоянии «Работа в процессе»." @@ -9533,21 +9555,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Не можете фильтровать на основе ваучером Нет, если сгруппированы по ваучером" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Могу только осуществить платеж против нефактурированных {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Можете обратиться строку, только если тип заряда «О Предыдущая сумма Row» или «Предыдущая Row Всего\"" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "Невозможно изменить метод оценки, так как существуют транзакции по некоторым позициям, для которых нет собственного метода оценки" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Отменить Материал Визит {0} до отмены этой претензии по гарантийным обязательствам" @@ -9576,7 +9601,7 @@ msgstr "" msgid "Cancelation Date" msgstr "Дата отмены" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9584,11 +9609,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "Невозможно назначить кассира" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Невозможно рассчитать время прибытия, так как отсутствует адрес водителя." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "Невозможно изменить настройки учетной записи инвентаря" @@ -9603,10 +9623,6 @@ msgstr "Невозможно создать возврат" msgid "Cannot Merge" msgstr "Невозможно объединить" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Не удается оптимизировать маршрут, так как отсутствует адрес водителя." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Не могу освободить сотрудника" @@ -9631,6 +9647,11 @@ msgstr "Невозможно применить налог на источник msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Не может быть элементом фиксированного актива, так как создается складская книга." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "Невозможно отменить график амортизации активов {0}, так как в нем имеется черновая запись журнала {1}." @@ -9640,14 +9661,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "Невозможно отменить проводку закрытия точки продаж" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "Невозможно отменить запись о резервировании запасов {0}, так как она используется в рабочем заказе {1}. Пожалуйста, сначала отмените рабочий заказ или снимите резерв с запасов" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "Невозможно отменить, так как обработка отмененных документов еще не завершена." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Нельзя отменить, так как проведен счет по Запасам {0}" @@ -9655,7 +9676,7 @@ msgstr "Нельзя отменить, так как проведен счет msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "Отмена транзакции невозможна, так как процесс повторной оценки еще не завершен." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "Невозможно отменить эту запись о производственных запасах, поскольку количество произведенного готового товара не может быть меньше количества, поставленного в связанном внутреннем заказе на субподряд." @@ -9667,7 +9688,7 @@ msgstr "Отменить этот документ невозможно, так msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Невозможно отменить этот документ, поскольку он связан с отправленным объектом {asset_link}. Пожалуйста, отмените его, чтобы продолжить." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Невозможно отменить транзакцию для выполненного рабочего заказа." @@ -9692,8 +9713,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Невозможно изменить Базовая валюта компании, потому что есть существующие операции. Сделки должны быть отменены, чтобы поменять валюту." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "Невозможно завершить задачу {0}, так как ее зависимая задача {1} не завершена/отменена." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9719,7 +9740,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "Невозможно создать записи о резервировании запасов для квитанций о покупке с будущей датой." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Невозможно создать список сборки для заказа на продажу {0}, так как имеется зарезервированный товар. Пожалуйста, снимите резервирование с товара, чтобы создать список сборки." @@ -9728,6 +9749,10 @@ msgstr "Невозможно создать список сборки для з msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Невозможно создать бухгалтерские записи для отключенных счетов: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "Невозможно создать возврат для консолидированного счета-фактуры {0}." @@ -9745,7 +9770,7 @@ msgstr "Нельзя установить Отказ, потому что был msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Не можете вычесть, когда категория для \"Оценка\" или \"Оценка и Всего\"" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Невозможно удалить строку «Прибыль/убыток по обмену»" @@ -9758,7 +9783,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Невозможно удалить заказанный товар" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9790,7 +9815,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "Невозможно включить инвентарный счет по позициям, поскольку для компании {0} существуют записи в Книге учета запасов с инвентарным счетом по складам. Пожалуйста, сначала отмените операции с запасами и попробуйте снова." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9815,19 +9840,23 @@ msgstr "Не удается найти товар с этим штрих-код msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "Не удается найти склад по умолчанию для товара {0}. Пожалуйста, установите его в настройках товара или в настройках склада." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "Невозможно объединить {0} '{1}' с '{2}', поскольку в обоих случаях существуют бухгалтерские записи в разных валютах для компании '{3}'." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "Невозможно произвести больше товаров {0}, чем количество товаров в заказе на продажу {1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "Невозможно произвести больше товаров для {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "Невозможно произвести более {0} единиц товара для {1}" @@ -9839,12 +9868,16 @@ msgstr "Невозможно получить оплату от клиента msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "Уменьшить количество по сравнению с заказанным или приобретенным количеством невозможно" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Не можете обратиться номер строки, превышающую или равную текущему номеру строки для этого типа зарядки" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "Невозможно получить токен ссылки для обновления. Проверьте журнал ошибок для получения дополнительной информации" @@ -9853,19 +9886,23 @@ msgstr "Невозможно получить токен ссылки для о msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Невозможно получить токен ссылки. Проверьте журнал ошибок для получения дополнительной информации" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Невозможно выбрать тип заряда, как «О предыдущего ряда Сумма» или «О предыдущего ряда Всего 'для первой строки" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Невозможно установить Отказ, так как создана Сделка." @@ -10292,9 +10329,9 @@ msgstr "Измените тип учетной записи на Дебитор msgid "Change this date manually to setup the next synchronization start date" msgstr "Измените эту дату вручную, чтобы настроить дату начала следующей синхронизации" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "Имя клиента изменено на «{}», поскольку «{}» уже существует." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10320,8 +10357,8 @@ msgstr "Изменение метода оценки на скользящее msgid "Channel Partner" msgstr "Партнер по каналу распределения" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "Расход типа 'Фактический' в строке {0} не может быть включен в расчет товарной ставки или оплаченной суммы" @@ -10515,7 +10552,7 @@ msgstr "Ширина чека" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Чеками / Исходная дата" @@ -10573,7 +10610,7 @@ msgstr "Имя дочернего документа" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Ссылка на дочернюю строку" @@ -10583,8 +10620,8 @@ msgid "Child Table Not Allowed" msgstr "Дочерняя таблица не допускается" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Для этой задачи существует дочерняя задача. Вы не можете удалить эту задачу." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10762,7 +10799,7 @@ msgstr "Закрыть кредит" msgid "Close Replied Opportunity After Days" msgstr "Закрыть отвеченную возможность после указанного количества дней" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Закрыть точку продаж" @@ -10776,7 +10813,7 @@ msgstr "Закрытый документ" msgid "Closed Documents" msgstr "Закрытые документы" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Закрытый заказ на работу не может быть остановлен или повторно открыт" @@ -11006,9 +11043,9 @@ msgstr "Комиссионный сбор" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11445,7 +11482,7 @@ msgstr "Компании" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11515,7 +11552,7 @@ msgstr "Компании" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11555,10 +11592,6 @@ msgstr "Организация" msgid "Company Abbreviation" msgstr "Аббревиатура компании" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Сокращение компании не может содержать более 5 символов" @@ -11723,7 +11756,7 @@ msgstr "Адрес доставки компании" msgid "Company Tax ID" msgstr "Налоговый идентификатор компании" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "Компания и дата публикации обязательны" @@ -11767,12 +11800,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "Название поля ссылки на компанию, используемое для фильтрации (необязательно — оставьте пустым, чтобы удалить все записи)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Название компании не одинаково" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "Компания актива {0} и документ покупки {1} не совпадают." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11810,6 +11843,14 @@ msgstr "Компания {0} добавлена несколько раз" msgid "Company {0} does not exist" msgstr "Компания {0} не существует" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Компания {0} добавлена более одного раза" @@ -11818,14 +11859,6 @@ msgstr "Компания {0} добавлена более одного раза msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "Компания {} пока не существует. Настройка налогов прервана." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "Несоответствие между компанией {} и компанией в профиле POS {}" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11847,7 +11880,7 @@ msgstr "Название конкурента" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Конкуренты" @@ -12291,8 +12324,8 @@ msgid "Consumed Qty" msgstr "Потребляемое кол-во" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "Потребленное количество не может быть больше зарезервированного количества для товара {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12607,7 +12640,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12907,7 +12940,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12932,7 +12965,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12990,7 +13023,7 @@ msgstr "Номер центра затрат" msgid "Cost Center and Budgeting" msgstr "Центр затрат и бюджетирование" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "Центр затрат для строк предметов был обновлен до {0}" @@ -13002,7 +13035,7 @@ msgstr "Центр затрат нельзя преобразовать в гр msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "МВЗ требуется в строке {0} в виде налогов таблицы для типа {1}" @@ -13024,12 +13057,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "Центр затрат {0} не может быть использован для распределения, так как он используется как основной центр затрат в другой записи распределения." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Центр затрат {} не принадлежит компании {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "Центр затрат {} — это групповой центр затрат, а групповые центры затрат не могут использоваться в транзакциях" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13153,14 +13186,14 @@ msgid "Costing and Billing" msgstr "Калькуляция и выставление счетов" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "Обновлены поля Калькуляция и выставление счетов" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Не удалось удалить демонстрационные данные" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Не удалось автоматически создать клиента из-за отсутствия следующих обязательных полей:" @@ -13172,7 +13205,7 @@ msgstr "Не удалось создать кредитную ноту авто msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Не удалось обнаружить компанию для обновления банковских счетов" @@ -13182,8 +13215,8 @@ msgstr "Не удалось найти подходящий сдвиг, соот #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "Не удалось найти путь для " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13206,7 +13239,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Не удалось решить функцию оценки критериев для {0}. Убедитесь, что формула действительна." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Не удалось решить функцию взвешенного балла. Убедитесь, что формула действительна." @@ -13436,10 +13469,6 @@ msgstr "Создать нового клиента" msgid "Create New Lead" msgstr "Создать новый лид" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13458,7 +13487,7 @@ msgstr "Создать операции" msgid "Create Opportunity" msgstr "Создать \"Перспективного клиента\"" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Создать запись открытия точки продаж" @@ -13473,7 +13502,7 @@ msgstr "Создать платежную запись" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "Создать платёжную запись для консолидированных счетов точек продаж." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Создать запрос на оплату" @@ -13701,7 +13730,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "Создать вариант с изображением шаблона." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Создайте проводку входящего запаса для Товара." @@ -13735,7 +13764,7 @@ msgstr "Создать {0} {1}?" msgid "Created By Migration" msgstr "Создано в результате миграции" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "Создано {0} оценочных листов для {1} в период:" @@ -13830,7 +13859,7 @@ msgstr "Создание пользователя..." msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Создание {} из {} {}" @@ -13840,17 +13869,17 @@ msgstr "Создание {} из {} {}" msgid "Creation" msgstr "Создание" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "Создание {1}(с) успешно" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Создание {0} не удалось.\n" "\t\t\t\tПроверить Журнал массовых транзакций" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Создание {0} частично успешно.\n" @@ -13885,11 +13914,11 @@ msgstr "Создание {0} частично успешно.\n" msgid "Credit" msgstr "Кредит" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Кредит (транзакция)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Кредит ({0})" @@ -13970,7 +13999,7 @@ msgstr "Кредитные дни" msgid "Credit Limit" msgstr "Кредитный лимит" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Кредитный лимит превышен" @@ -14050,16 +14079,16 @@ msgstr "Кредит для" msgid "Credit in Company Currency" msgstr "Кредит в валюте компании" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Кредитный лимит был скрещен для клиента {0} ({1}/{2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Кредитный лимит уже определен для Компании {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Достигнут кредитный лимит для клиента {0}" @@ -14118,12 +14147,12 @@ msgstr "Настройка критерия" msgid "Criteria Weight" msgstr "Критерий Вес" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Веса критериев должны в сумме составлять 100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Интервал Cron должен быть от 1 до 59 мин." @@ -14246,7 +14275,7 @@ msgstr "Валюта и прайс-лист" msgid "Currency can not be changed after making entries using some other currency" msgstr "Валюта не может быть изменена после внесения записи, используя другой валюты" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "Фильтры валют в настоящее время не поддерживаются в пользовательских финансовых отчетах." @@ -14311,8 +14340,8 @@ msgid "Current BOM" msgstr "Текущая спецификация" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "Текущий спецификации и Нью-BOM не может быть таким же," +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14374,10 +14403,6 @@ msgstr "Текущий серийный / партийный набор" msgid "Current Serial No" msgstr "Текущий серийный номер" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15208,7 +15233,7 @@ msgstr "D - Е" msgid "DFS" msgstr "Прямая отгрузка грузов" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Ежедневная сводка проекта за {0}" @@ -15353,10 +15378,6 @@ msgstr "Даты обработки" msgid "Day Of Week" msgstr "День недели" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15463,11 +15484,11 @@ msgstr "Посредник" msgid "Debit" msgstr "Дебет" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Дебет (транзакция)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Дебет ({0})" @@ -15629,7 +15650,7 @@ msgstr "Децилитр" msgid "Decimeter" msgstr "Дециметр" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Объявить потерянным" @@ -16310,8 +16331,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "Удаление {0} и всех связанных с ним документов Common Code..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Удаление в процессе!" @@ -16405,7 +16426,7 @@ msgstr "Поставленные товары, на которые нужно в #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16463,7 +16484,7 @@ msgstr "Доставка" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16793,7 +16814,7 @@ msgstr "Амортизация" msgid "Depreciation Amount" msgstr "Сумма амортизации основных средств" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Сумма амортизации за период" @@ -16809,7 +16830,7 @@ msgstr "Дата амортизации" msgid "Depreciation Details" msgstr "Подробности амортизации" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Амортизация Дошел вследствие выбытия активов" @@ -16879,7 +16900,7 @@ msgstr "Дата начисления амортизации не может б msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Строка амортизации {0}: Дата проводки амортизации не может быть раньше даты начала использования" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Строка амортизации {0}: ожидаемое значение после полезного срока службы должно быть больше или равно {1}" @@ -16908,11 +16929,11 @@ msgstr "Амортизация расписание" msgid "Depreciation Schedule View" msgstr "Просмотр графика амортизации" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "Амортизация не может быть рассчитана для полностью самортизированных активов" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "Амортизация устранена путем реверсирования" @@ -16940,7 +16961,7 @@ msgstr "Дизайнер" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Подробная причина" @@ -17043,12 +17064,12 @@ msgid "Difference Account in Items Table" msgstr "Счет разницы в таблице позиций" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "Счет разницы должен быть счетом типа «Актив/Пассив» (временное открытие), поскольку эта запись о запасах является начальной записью." +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Разница аккаунт должен быть тип счета активов / пассивов, так как это со Примирение запись Открытие" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17110,7 +17131,7 @@ msgstr "Значение разницы" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "Для каждой строки можно задать разные «Исходный склад» и «Целевой склад»." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Различные единицы измерения (ЕИ) продуктов приведут к некорректному (общему) значению массы нетто. Убедитесь, что вес нетто каждого продукта находится в одной ЕИ." @@ -17283,7 +17304,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "Отключенный склад {0} не может быть использован для этой транзакции." @@ -17292,18 +17313,18 @@ msgstr "Отключенный склад {0} не может быть испо msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Отключены правила ценообразования, так как это {} является внутренним переводом" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "Цены с учетом налога отключены, так как это {} внутренний перевод" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17552,9 +17573,9 @@ msgstr "Скидка не может быть больше 100%." msgid "Discount must be less than 100" msgstr "Скидка должна быть меньше 100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Скидка {} применяется в соответствии с Условиями оплаты" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17918,11 +17939,11 @@ msgstr "Вы хотите отправить запись о складском #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} не существует" @@ -17960,22 +17981,6 @@ msgstr "Поиск документов" msgid "Document Count" msgstr "Количество документов" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "Документ №" @@ -18281,7 +18286,7 @@ msgstr "Дублировать проект с задачами" msgid "Duplicate Sales Invoices found" msgstr "Найдены дублирующиеся счета по продажам" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "Ошибка дублирования серийного номера" @@ -18435,7 +18440,7 @@ msgstr "Изменить емкость" msgid "Edit Cart" msgstr "Редактировать корзину" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Редактировать запрещено" @@ -18659,8 +18664,8 @@ msgid "Email verification failed." msgstr "Проверка адреса электронной почты не удалась." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "Электронные письма в очереди" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18847,7 +18852,7 @@ msgstr "Сотрудники" msgid "Empty" msgstr "Пустой" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "Пустой список для удаления" @@ -18856,7 +18861,7 @@ msgstr "Пустой список для удаления" msgid "Ems(Pica)" msgstr "Ems(Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18935,6 +18940,12 @@ msgstr "Включить скидки и наценку" msgid "Enable European Access" msgstr "Включить доступ для Европы" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19206,7 +19217,7 @@ msgstr "Время окончания" msgid "End Transit" msgstr "Конец транзита" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19329,7 +19340,7 @@ msgstr "Введите номер телефона клиента" msgid "Enter date to scrap asset" msgstr "Введите дату для утилизации актива" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Введите данные об амортизации" @@ -19385,6 +19396,10 @@ msgstr "Введите количество для производства. С msgid "Enter {0} amount." msgstr "Введите сумму {0}." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Развлечения и досуг" @@ -19420,7 +19435,7 @@ msgstr "Тип записи" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Ценные бумаги" @@ -19444,7 +19459,7 @@ msgstr "Эрг" msgid "Error Description" msgstr "Описание ошибки" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Произошла ошибка" @@ -19476,21 +19491,21 @@ msgstr "Ошибка при проведении записей амортиза msgid "Error while processing deferred accounting for {0}" msgstr "Ошибка при обработке отложенного учета для {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Ошибка при перепроведении оценки товара" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Ошибка: для этого актива уже учтено {0} периодов амортизации.\n" -"\t\t\t\t\tДата «начала амортизации» должна быть не менее чем на {1} периодов позже даты «доступен для использования».\n" -"\t\t\t\t\tПожалуйста, исправьте даты соответствующим образом." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Ошибка: {0} является обязательным полем" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19504,7 +19519,7 @@ msgid "Estimated Arrival" msgstr "Предполагаемое прибытие" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Ориентировочная стоимость" @@ -19554,7 +19569,7 @@ msgstr "Пример: ABCD.#####. Если серия задана, а номе msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Пример: серийный номер {0} зарезервирован в {1}." @@ -19835,7 +19850,7 @@ msgstr "Ожидаемая дата закрытия" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19922,7 +19937,7 @@ msgstr "Ожидаемая стоимость после окончания ср #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Расходы" @@ -20181,9 +20196,9 @@ msgstr "По Фаренгейту" msgid "Failed Entries" msgstr "Неудачные записи" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Не удалось аутентифицировать ключ API." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20380,7 +20395,7 @@ msgid "Fetching Sales Orders..." msgstr "Получение заказов на продажу..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Получение курсов обмена валют..." @@ -20418,15 +20433,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "Поля будут скопированы только во время создания." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "Файл не относится к данной записи об удалении транзакции" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Файл не найден" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Файл не найден на сервере" @@ -20435,7 +20450,7 @@ msgstr "Файл не найден на сервере" msgid "File to Rename" msgstr "Файл для переименования" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20594,11 +20609,11 @@ msgstr "Строка финансового отчета" msgid "Financial Report Template" msgstr "Шаблон финансового отчета" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "Шаблон финансового отчета {0} отключен" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "Шаблон финансового отчета {0} не найден" @@ -20667,7 +20682,7 @@ msgstr "Спецификация для готовой продукции" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20680,7 +20695,7 @@ msgstr "Элемент готовой продукции" msgid "Finished Good Item Code" msgstr "Код готовых продуктов" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Количество элементов готовой продукции" @@ -20788,7 +20803,7 @@ msgstr "Склад готовой продукции" msgid "Finished Goods based Operating Cost" msgstr "Затраты на производство готовой продукции" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Готовый товар {0} не соответствует заказу на работу {1}" @@ -20887,10 +20902,6 @@ msgstr "Фискальный режим является обязательны msgid "Fiscal Year" msgstr "Отчетный год" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20904,11 +20915,8 @@ msgstr "Подробная информация о финансовом году msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Дата окончания финансового года должна быть через год после даты начала финансового года" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Финансовый год {0} не существует" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Финансовый год {0} не существует" @@ -20941,7 +20949,7 @@ msgstr "Основное средство" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21077,7 +21085,7 @@ msgstr "Фут/секунда" msgid "For" msgstr "Для" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "Для элементов 'Товарный набор', складской номер, серийный номер и номер партии будет подтягиваться из таблицы \"Упаковочный лист\". Если складской номер и номер партии одинаковы для всех пакуемых единиц для каждого наименования \"Товарного набора\", эти номера можно ввести в таблице основного наименования, значения будут скопированы в таблицу \"Упаковочного листа\"." @@ -21102,10 +21110,6 @@ msgstr "Для компании" msgid "For Item" msgstr "Для товара" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "Для товара {0} нельзя получить больше, чем {1} против {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21172,12 +21176,12 @@ msgid "For Work Order" msgstr "Для заказа на работу" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Для элемента {0} количество должно быть отрицательным числом" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Для элемента {0} количество должно быть положительным числом" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21209,13 +21213,13 @@ msgstr "Сколько потрачено = 1 балл лояльности" msgid "For individual supplier" msgstr "Для индивидуального поставщика" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "Для товара {0}, только {1} активы были созданы или связаны с {2}. Пожалуйста, создайте или свяжите {3} больше активов с соответствующим документом." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "Для элемента {0} ставка должна быть положительным числом. Чтобы разрешить отрицательные ставки, включите {1} в {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21227,9 +21231,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "Для операции {0} в строке {1} добавьте сырье или создайте спецификацию материалов для нее." -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "Для операции {0}: Количество ({1}) не может быть больше ожидаемого количества ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21244,21 +21248,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "Для прогнозируемых и планируемых количеств система будет учитывать все дочерние склады, входящие в выбранный родительский склад" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "Для количества {0} не должно быть больше допустимого количества {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Для справки" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Для ряда {0} {1}. Чтобы включить {2} в размере Item ряды также должны быть включены {3}" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Для строки {0}: введите запланированное количество" @@ -21277,11 +21277,15 @@ msgstr "Для условия «Применить правило к друго msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Для удобства клиентов эти коды можно использовать в печатных форматах, таких как счета-фактуры и товарные накладные" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "Для изделия {0} количество потребленного материала должно быть {1} согласно спецификации материалов {2}." -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "Чтобы новый {0} вступил в силу, хотите ли Вы очистить текущий {1}?" @@ -21369,6 +21373,21 @@ msgstr "Сообщения на форуме" msgid "Forum URL" msgstr "URL-адрес форума" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "Школа Фраппе" @@ -21912,7 +21931,7 @@ msgstr "Баланс по книге учета" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "БК запись" @@ -22037,6 +22056,10 @@ msgstr "Бухгалтерская книга" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22090,7 +22113,7 @@ msgstr "Создать запись закрытия складского зап msgid "Generate To Delete List" msgstr "Создать список для удаления" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "Сначала сгенерируйте список для удаления" @@ -22433,7 +22456,7 @@ msgstr "Товары в пути" msgid "Goods Transferred" msgstr "Товар передан" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Товар уже получен против выездной записи {0}" @@ -22616,7 +22639,7 @@ msgstr "" msgid "Grant Commission" msgstr "Комиссия по грантам" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Больше, чем сумма" @@ -22756,7 +22779,7 @@ msgstr "Группировать по заказу на продажу" msgid "Group by Voucher" msgstr "Сгруппировать по ваучеру" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Склад узла группы не может выбирать для транзакций" @@ -23059,7 +23082,7 @@ msgstr "Помогает распределить бюджет/цели по м msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Вот журналы ошибок для вышеупомянутых неудачных записей об амортизации: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "Вот варианты дальнейших действий:" @@ -23087,7 +23110,7 @@ msgstr "Здесь ваши выходные дни заранее заполн msgid "Hertz" msgstr "Герц" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Привет," @@ -23123,7 +23146,7 @@ msgstr "Скрыть, если ноль" msgid "Hide Images" msgstr "Скрыть изображения" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "Скрыть последние заказы" @@ -23708,15 +23731,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "Если налоги не установлены и выбран шаблон «Налоги и сборы», система автоматически применит налоги из выбранного шаблона." -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "Если нет, вы можете Отменить / Отправить эту запись" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23754,7 +23777,7 @@ msgstr "Если в результате работы по спецификац msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Если учетная запись заморожена, доступ разрешен только ограниченным пользователям." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Если в этой записи предмет используется как предмет с нулевой оценкой, включите параметр «Разрешить нулевую ставку оценки» в таблице предметов {0}." @@ -23855,7 +23878,7 @@ msgstr "Если вам необходимо сверить отдельные msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "Если вы все еще хотите продолжить, включите {0}." @@ -24073,14 +24096,14 @@ msgstr "Импорт счетов-фактур" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "Импорт MT940 Fromat" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Импорт успешно завершен" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24557,7 +24580,7 @@ msgstr "Включая элементы для узлов сборки" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Доход" @@ -24643,7 +24666,7 @@ msgstr "Входящий звонок от {0}" msgid "Incompatible Setting Detected" msgstr "Обнаружена несовместимая настройка" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24652,7 +24675,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "Некорректное количество остатка после операции" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Использована неверная партия" @@ -24660,11 +24683,11 @@ msgstr "Использована неверная партия" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Неправильная регистрация склада (группы) для повторного заказа" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Неправильное количество компонентов" @@ -24673,7 +24696,7 @@ msgstr "Неправильное количество компонентов" msgid "Incorrect Date" msgstr "Неправильная дата" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Неправильный счет-фактура" @@ -24690,7 +24713,7 @@ msgstr "Неверный документ-ссылка (товар по накл msgid "Incorrect Serial No Valuation" msgstr "Неправльное значение серийного номера" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Использован неправильный серийный номер" @@ -24773,7 +24796,7 @@ msgstr "Прирост" msgid "Increment cannot be 0" msgstr "Прирост не может быть 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Прирост за атрибут {0} не может быть 0" @@ -24970,7 +24993,7 @@ msgid "Instruction" msgstr "Инструкция" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Недостаточная емкость" @@ -24986,12 +25009,12 @@ msgstr "Недостаточно разрешений" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Недостаточный запас" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Недостаточно запасов для партии" @@ -25121,7 +25144,7 @@ msgstr "Расход по процентам" msgid "Interest Income" msgstr "Доход по процентам" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Проценты и/или штраф за просрочку" @@ -25146,7 +25169,7 @@ msgstr "Внутренний" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Внутренний заказчик для компании {0} уже существует" @@ -25172,7 +25195,7 @@ msgstr "Отсутствует ссылка на внутренние прода msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "Внутренний поставщик для компании {0} уже существует" @@ -25193,7 +25216,7 @@ msgstr "Внутренний поставщик для компании {0} уж msgid "Internal Transfer" msgstr "Внутренний трансфер" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Отсутствует ссылка на внутренний перевод" @@ -25235,8 +25258,8 @@ msgstr "Интервал должен быть от 1 до 59 минут" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25255,7 +25278,7 @@ msgstr "Некорректная сумма распределения" msgid "Invalid Amount" msgstr "Неверная сумма" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Неправильный атрибут" @@ -25272,11 +25295,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Неверный штрих-код. К этому штрих-коду не прикреплено ни одного предмета." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Недействительный общий заказ для выбранного клиента и продукта" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25296,13 +25319,13 @@ msgstr "Неправильная компания для межфирменно msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Неверный центр затрат" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25323,11 +25346,11 @@ msgstr "" msgid "Invalid Discount" msgstr "Недействительная скидка" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "Неверная сумма скидки" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Неверный документ" @@ -25357,7 +25380,7 @@ msgstr "Неверная группировка" msgid "Invalid Item" msgstr "Недействительный товар" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Неверные значения по умолчанию для товаров" @@ -25366,7 +25389,7 @@ msgstr "Неверные значения по умолчанию для тов msgid "Invalid Ledger Entries" msgstr "Неверные записи в книге учета" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "Недопустимая сумма чистой закупки" @@ -25405,7 +25428,7 @@ msgstr "Неверный формат печати" msgid "Invalid Priority" msgstr "Неверный приоритет" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Некорректные настройки учета потерь процесса" @@ -25422,7 +25445,7 @@ msgstr "Неверное количество" msgid "Invalid Quantity" msgstr "Неверное количество" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "Некорректный запрос" @@ -25434,8 +25457,8 @@ msgstr "Недействительный возврат" msgid "Invalid Sales Invoices" msgstr "Недействительные счета по продажам" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Неверное расписание" @@ -25443,7 +25466,7 @@ msgstr "Неверное расписание" msgid "Invalid Selling Price" msgstr "Недействительная цена продажи" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Некорректная комбинация серийных номеров и партий" @@ -25460,7 +25483,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Неверное значение" @@ -25470,14 +25493,14 @@ msgid "Invalid Warehouse" msgstr "Неверный склад" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "Недопустимая сумма в бухгалтерских записях {} {} для аккаунта {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Недействительное выражение условия" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25509,7 +25532,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "Некорректный ключ результата. Ответ:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Неверный Поисковый Запрос" @@ -26472,10 +26495,6 @@ msgstr "Дата выдачи" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "После объединения позиций может потребоваться несколько часов, чтобы увидеть точные значения запасов." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Это необходимо для отображения подробностей продукта." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26484,7 +26503,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "Невозможно распределить расходы поровну, если общая сумма равна нулю. Установите «Распределить расходы на основе» как «Количество»" @@ -26533,12 +26552,12 @@ msgstr "Курсивный текст для промежуточных итог #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26571,7 +26590,7 @@ msgstr "Курсивный текст для промежуточных итог #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26645,7 +26664,7 @@ msgstr "Продукт 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26806,7 +26825,7 @@ msgstr "Корзина товаров" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26838,7 +26857,7 @@ msgstr "Корзина товаров" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26847,12 +26866,12 @@ msgstr "Корзина товаров" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26948,7 +26967,7 @@ msgstr "Код товара не может быть изменен для се msgid "Item Code required at Row No {0}" msgstr "Требуется код продукта в строке № {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Код товара: {0} недоступен на складе {1}." @@ -27144,7 +27163,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Структура продуктовых групп" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Пункт Группа не упоминается в мастера пункт по пункту {0}" @@ -27298,7 +27317,7 @@ msgstr "Производитель товара" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27329,7 +27348,7 @@ msgstr "Производитель товара" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27337,8 +27356,8 @@ msgstr "Производитель товара" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27395,7 +27414,7 @@ msgstr "Производитель товара" msgid "Item Name" msgstr "Название продукта" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27442,8 +27461,8 @@ msgstr "Настройки цены товара" msgid "Item Price Stock" msgstr "Стоимость продукта на складе" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27455,7 +27474,7 @@ msgstr "Цена товара отображается несколько раз msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Цена продукта {0} обновлена в прайс-листе {1}" @@ -27500,7 +27519,7 @@ msgstr "Повторный заказ продукта" msgid "Item Row" msgstr "Строка элемента" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Строка {0}: {1} {2} не существует в таблице «{1}»" @@ -27616,7 +27635,7 @@ msgstr "Товар для производства" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Модификация продукта" @@ -27735,7 +27754,7 @@ msgstr "Детали налога на товар" msgid "Item Wise Tax Details" msgstr "Налоговая информация по товарам" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "Налоговые данные по позициям не совпадают с налогами и сборами в следующих строках:" @@ -27771,7 +27790,7 @@ msgstr "Товар является обязательным в таблице msgid "Item is removed since no serial / batch no selected." msgstr "Товар удален, так как не выбран серийный номер/партия." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Продукт должен быть добавлен с помощью кнопки \"Получить продукты из покупки '" @@ -27785,7 +27804,7 @@ msgstr "Название продукта" msgid "Item operation" msgstr "Операция с товаром" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "Ставка товара обновлена до нуля, так как для товара {0} установлена опция \"Разрешить нулевую ставку оценки\"" @@ -27800,7 +27819,7 @@ msgstr "Изделие для производства" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "Ставка оценки товара пересчитывается с учетом суммы ваучера на поставку" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Перепроведение оценки товара в процессе. Отчёт может показывать некорректную оценку товара." @@ -27816,10 +27835,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "Элемент {0} добавлен несколько раз под одним и тем же родительским элементом {1} в строках {2} и {3}" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "Элемент {0} не может быть добавлен как подсборка самого себя." @@ -27828,6 +27843,10 @@ msgstr "Элемент {0} не может быть добавлен как по msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Товар {0} не может быть заказан больше, чем {1} по общему заказу {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27837,6 +27856,7 @@ msgstr "Продукт {0} не существует" msgid "Item {0} does not exist in the system or has expired" msgstr "Продукт {0} не существует или просрочен" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Товар {0} не существует." @@ -27869,6 +27889,10 @@ msgstr "Продукт {0} достигокончания срока годно msgid "Item {0} ignored since it is not a stock item" msgstr "Продукт {0} игнорируется, так как это не складские позиции" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Товар {0} уже зарезервирован/доставлен по заказу на продажу {1}." @@ -27901,7 +27925,7 @@ msgstr "Элемент {0} не является субподрядным эле msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "Продукт {0} не активен или истек срок годности" @@ -27933,10 +27957,6 @@ msgstr "Пункт {0}: Заказал Кол-во {1} не может быть msgid "Item {0}: {1} qty produced. " msgstr "Элемент {0}: произведено {1} кол-во. " -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "Товар {} не существует." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27987,6 +28007,10 @@ msgstr "Для получения шаблона налога на товар т msgid "Item: {0} does not exist in the system" msgstr "Продукт: {0} не существует" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -28003,7 +28027,7 @@ msgstr "Каталог товаров" msgid "Items Filter" msgstr "Фильтр элементов" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Необходимые предметы" @@ -28043,7 +28067,7 @@ msgstr "Товары для запроса сырья" msgid "Items not found." msgstr "Элементы не найдены." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "Ставка по предметам обновлена до нуля, так как опция «Разрешить нулевую ставку оценки» отмечена для следующих предметов: {0}" @@ -28053,7 +28077,7 @@ msgstr "Ставка по предметам обновлена до нуля, msgid "Items to Be Repost" msgstr "Товары к перепроведению" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Предметы для производства необходимы для получения связанного с ними сырья." @@ -28123,7 +28147,7 @@ msgstr "Производственная мощность" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28186,20 +28210,19 @@ msgstr "Журнал учета рабочего времени" msgid "Job Card and Capacity Planning" msgstr "Карта работы и планирование мощностей" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "Карточка задания {0} выполнена" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "Карточка работ" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "Работа приостановлена" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Работа началась" @@ -28262,11 +28285,19 @@ msgstr "Имя исполнителя работ" msgid "Job Worker Warehouse" msgstr "Склад исполнителя работ" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Карта работы {0} создана" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "Задание: {0} было запущено для обработки неудачных транзакций" @@ -28612,8 +28643,8 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "Последнее обновление записи GL было выполнено {}. Эта операция не допускается, пока система активно используется. Подождите 5 минут перед повторной попыткой." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28733,7 +28764,7 @@ msgstr "Широта" msgid "Lead" msgstr "Лид" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Потенциальный покупатель -> Заинтересованный потенциальный клиент" @@ -28827,7 +28858,7 @@ msgstr "Лид Время в днях" msgid "Lead Type" msgstr "Лид Тип" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "Лид {0} был добавлен в проспект {1}." @@ -28976,7 +29007,7 @@ msgstr "Пояснение" msgid "Length (cm)" msgstr "Длина (см)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Меньше чем сумма" @@ -29005,7 +29036,7 @@ msgstr "Уровень спецификации" msgid "Lft" msgstr "ЗЩЫ" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Обязательства" @@ -29035,7 +29066,7 @@ msgstr "Номер лицензии" msgid "License Plate" msgstr "Идентификационный номер" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "предел Скрещенные" @@ -29131,8 +29162,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Связь с клиентом не удалась. Пожалуйста, попробуйте еще раз." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Ссылка на поставщика не удалась. Попробуйте еще раз." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29298,7 +29329,7 @@ msgstr "Потерянная причина подробно" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Потерянные причины" @@ -29384,7 +29415,7 @@ msgstr "Использование баллов лояльности" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Баллы лояльности будут рассчитываться на основе потраченной суммы (по счету-фактуре) с учетом указанного коэффициента." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Баллы лояльности: {0}" @@ -29622,7 +29653,7 @@ msgstr "График технического обслуживания Подр msgid "Maintenance Schedule Item" msgstr "График обслуживания продукта" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "График обслуживания не генерируется для всех элементов. Пожалуйста, нажмите на кнопку \"Generate Расписание\"" @@ -29719,7 +29750,7 @@ msgstr "Заявки на техническое обслуживание" msgid "Maintenance Visit Purpose" msgstr "Цель технического обслуживания" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Дата технического обслуживания не может быть раньше даты поставки {0}" @@ -29866,7 +29897,7 @@ msgstr "Обязательные для баланса" msgid "Mandatory For Profit and Loss Account" msgstr "Обязательные для отчета о прибылях и убытках" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Обязательно отсутствует" @@ -29949,8 +29980,8 @@ msgstr "Ручной ввод не может быть создан! Отклю #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30172,7 +30203,7 @@ msgstr "Сопоставление входящего заказа по субп msgid "Mapping Subcontracting Order ..." msgstr "Сопоставление заказов на субподряд ..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Установление соответствий {0}..." @@ -30350,10 +30381,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30380,7 +30407,7 @@ msgstr "Расход материала" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Потребление материалов для производства" @@ -30491,7 +30518,7 @@ msgstr "Запрос материала" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Дата заявки на материал" @@ -30541,7 +30568,7 @@ msgstr "Детали запроса на материал" msgid "Material Request Item" msgstr "Позиция запроса материала" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Запрос материалов №" @@ -30563,7 +30590,7 @@ msgstr "Тип запросов на материалы" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Запрос материала не создан, так как количество сырья уже доступно." @@ -30577,7 +30604,7 @@ msgstr "Максимум {0} заявок на материал может бы msgid "Material Request used to make this Stock Entry" msgstr "Запрос на материалы, использованный для создания этой записи о запасах" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Заявка на материал {0} отменена или остановлена" @@ -30697,14 +30724,14 @@ msgstr "Материал Поставщику" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Материалы уже получены на основании {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "Материалы необходимо перевести на склад незавершенного производства для карточки задания {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30872,7 +30899,7 @@ msgstr "Мегаджоуль" msgid "Megawatt" msgstr "Мегаватт" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Упомяните коэффициент оценки в мастере предметов." @@ -30907,7 +30934,7 @@ msgstr "Прогресс слияния" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Объединить налоги из нескольких документов" @@ -31253,7 +31280,7 @@ msgstr "Прочие расходы" msgid "Mismatch" msgstr "Несоответствие" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Отсутствует" @@ -31262,11 +31289,11 @@ msgstr "Отсутствует" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Отсутствует аккаунт" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31291,11 +31318,11 @@ msgstr "" msgid "Missing Filters" msgstr "Отсутствуют фильтры" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Отсутствует финансовая книга" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Отсутствующая готовая продукция" @@ -31303,7 +31330,7 @@ msgstr "Отсутствующая готовая продукция" msgid "Missing Formula" msgstr "Отсутствует формула" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Отсутствующие предметы" @@ -31315,7 +31342,7 @@ msgstr "" msgid "Missing Payments App" msgstr "Приложение для отслеживания отсутствующих платежей" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31327,7 +31354,7 @@ msgstr "Отсутствующий комплект серийных номер msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31335,12 +31362,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Отсутствует шаблон электронной почты для отправки. Установите его в настройках доставки." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Отсутствует требуемый фильтр: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Отсутствующие значение" @@ -31589,17 +31616,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Найдено несколько программ лояльности для клиента {}. Выберите вручную." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "Несколько записей открытия POS" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Несколько Цена Правила существует с теми же критериями, пожалуйста разрешить конфликт путем присвоения приоритета. Цена Правила: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31619,7 +31646,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Несколько финансовых лет существуют на дату {0}. Пожалуйста, установите компанию в финансовый год" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "Нельзя отметить несколько товаров как готовую продукцию" @@ -31628,10 +31655,10 @@ msgid "Music" msgstr "Музыка" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Должно быть целое число" @@ -31716,11 +31743,7 @@ msgstr "Обязательная серия именования" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31764,7 +31787,7 @@ msgstr "Анализ потребностей" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Отрицательное количество недопустимо" @@ -31774,12 +31797,12 @@ msgstr "Отрицательное количество недопустимо" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "Отрицательная ошибка запаса" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Отрицательный Оценка курс не допускается" @@ -31857,8 +31880,8 @@ msgstr "Чистая сумма" msgid "Net Amount (Company Currency)" msgstr "Чистая сумма (валюта компании)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Чистая стоимость активов на" @@ -31908,7 +31931,7 @@ msgstr "Чистая почасовая ставка" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Чистая прибыль" @@ -31916,7 +31939,7 @@ msgstr "Чистая прибыль" msgid "Net Profit Ratio" msgstr "Коэффициент валовой прибыли" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Чистая прибыль / убыток" @@ -31930,11 +31953,11 @@ msgstr "Чистая прибыль / убыток" msgid "Net Purchase Amount" msgstr "Чистая сумма закупки" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "Обязательное указание чистой суммы покупки" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "Чистая сумма покупки должна быть равна сумме покупки одного актива." @@ -32178,7 +32201,7 @@ msgstr "Новый финансовый год - {0}" msgid "New Income" msgstr "Новый доход" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "Новый счет" @@ -32251,6 +32274,7 @@ msgid "New Task" msgstr "Новая задача" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Новая версия" @@ -32263,9 +32287,9 @@ msgstr "Новое название склада" msgid "New Workplace" msgstr "Новое рабочее место" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Новый кредитный лимит меньше текущей суммы задолженности для клиента. Кредитный лимит должен быть зарегистрировано не менее {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32273,6 +32297,10 @@ msgstr "Новый кредитный лимит меньше текущей с msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Новые счета будут генерироваться по графику, даже если текущие счета неоплачены или просрочены" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Дата нового релиза должна быть в будущем" @@ -32285,7 +32313,7 @@ msgstr "Новый пересмотренный бюджет успешно со msgid "New task" msgstr "Новая задача" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Новые {0} правила ценообразования созданы" @@ -32349,16 +32377,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Не найден клиент для межкорпоративных транзакций, представляющий компанию {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "Клиенты с выбранными параметрами не найдены." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Нет примечания о доставке для клиента {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "В списке «Для удаления» нет DocTypes. Пожалуйста, сгенерируйте или импортируйте список перед отправкой." @@ -32366,15 +32393,15 @@ msgstr "В списке «Для удаления» нет DocTypes. Пожал msgid "No Impact on Accounting Ledger" msgstr "Без влияния на бухгалтерский журнал" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Нет продукта со штрих-кодом {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Нет продукта с серийным номером {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "Не выбрано ни одного товара для передачи." @@ -32417,11 +32444,6 @@ msgstr "Нет разрешения" msgid "No Purchase Orders were created" msgstr "Заказы на закупку не были созданы" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "Нет записей для этих настроек." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Ничего не выбрано" @@ -32524,6 +32546,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "Не найдено контактов с идентификаторами электронной почты." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Нет данных за этот период" @@ -32569,7 +32595,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "Нет доступных для передачи товаров." @@ -32606,10 +32632,6 @@ msgstr "Нет больше дочерних элементов слева" msgid "No more children on Right" msgstr "Нет больше дочерних элементов справа" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Количество поставок" @@ -32706,7 +32728,7 @@ msgstr "Не найдено неоплаченных счетов" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Неоплаченные счета требуют переоценки обменного курса" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "Не найдено ни одного невыполненного {0} для {1} {2}, соответствующего указанным вами фильтрам." @@ -32744,15 +32766,20 @@ msgstr "" msgid "No record found" msgstr "Не запись не найдено" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "В таблице распределения записей не найдено" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "В таблице «Счета-фактуры» не найдено ни одной записи" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "В таблице «Платежи» записей не найдено" @@ -32781,7 +32808,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "Записи в журнале складского учёта не созданы. Пожалуйста, правильно укажите количество или оценочную стоимость товаров и попробуйте снова." @@ -32818,7 +32845,7 @@ msgstr "Нет значений" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32826,11 +32853,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "Нет {0} найдено для транзакций Inter Company." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "№" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32882,7 +32904,7 @@ msgstr "Ненулевые числа" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Ни одному продукту не изменено количество или объём." @@ -32893,8 +32915,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "Кол-во" @@ -32908,8 +32930,8 @@ msgstr "Кол-во" msgid "Not Applicable" msgstr "Не применимо" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Недоступен" @@ -32972,10 +32994,6 @@ msgstr "Не начато" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "Не удалось найти первый финансовый год для указанной компании." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Не разрешить установку альтернативного элемента для элемента {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Не разрешено создавать учетное измерение для {0}" @@ -32992,10 +33010,6 @@ msgstr "Не авторизовано, так как {0} превышает ли msgid "Not authorized to edit frozen Account {0}" msgstr "Не разрешается редактировать замороженный счет {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "Нет в наличии" @@ -33008,7 +33022,7 @@ msgstr "Нет в наличии" msgid "Not permitted to make Purchase Orders" msgstr "Нет прав на создание заказов на закупку" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33253,8 +33267,8 @@ msgid "Numeric Values" msgstr "Числовые значения" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Numero не указан в файле XML" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33429,12 +33443,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "После установки этот счет будет приостановлен до установленной даты" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "После закрытия заказа на работу его нельзя возобновить." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Один клиент может быть участником только одной Программы лояльности." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33468,7 +33482,7 @@ msgstr "Поддерживаются только \"платежные запи msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Для импорта данных можно использовать только файлы CSV и Excel. Проверьте формат файла, который вы пытаетесь загрузить" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "Разрешается использовать только CSV-файлы" @@ -33533,7 +33547,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "Для заказа на работу {1} можно создать только одну запись {0}" @@ -33600,7 +33614,7 @@ msgstr "Открытое мероприятие" msgid "Open Events" msgstr "Открытые мероприятия" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Открыть просмотр формы" @@ -33753,7 +33767,7 @@ msgstr "Начальный баланс = Начало периода, Коне #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Информация о начальном балансе" @@ -33783,7 +33797,7 @@ msgstr "Начальная дата" msgid "Opening Entry" msgstr "Начальная запись" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Открытие счета в процессе создания" @@ -33811,7 +33825,7 @@ msgstr "Открытие счета" msgid "Opening Invoice Tool" msgstr "Инструмент для открытия счета-фактуры" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "В начальном счете-фактуре есть корректировка на округление {0}.

                    Счет '{1}' необходим для записи этих значений. Пожалуйста, установите его для компании: {2}.

                    Или можно включить '{3}', чтобы не записывать корректировку на округление." @@ -33820,7 +33834,7 @@ msgstr "В начальном счете-фактуре есть коррект msgid "Opening Invoices" msgstr "Начальные счета-фактуры" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Сводка по открытию счетов" @@ -33850,20 +33864,20 @@ msgstr "Созданы начальные счета-фактуры продаж #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Начальный запас" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33872,7 +33886,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33915,7 +33929,7 @@ msgstr "Стоимость рабочих компонентов" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Эксплуатационные затраты" @@ -34006,7 +34020,7 @@ msgstr "Номер строки операции" msgid "Operation Time" msgstr "Время операции" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Время работы должно быть больше, чем 0 для операции {0}" @@ -34030,8 +34044,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "Операция {0} не относится к рабочему заданию {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Операция {0} больше, чем имеющихся часов на рабочем месте{1}, разбить операции на более мелкие" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34216,6 +34230,10 @@ msgstr "Возможность {0} создана" msgid "Optimize Route" msgstr "Оптимизировать маршрут" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34232,10 +34250,6 @@ msgstr "Факультативно. Эта установка будет исп msgid "Optional. Used with Financial Report Template" msgstr "Необязательно. Используется с шаблоном финансового отчёта." -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Сумма заказа" @@ -34521,7 +34535,7 @@ msgid "Out of stock" msgstr "Нет в наличии" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "Устаревшая запись открытия POS" @@ -34575,7 +34589,7 @@ msgstr "Остаток (в валюте компании)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34656,11 +34670,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Допустимое превышение при подборе (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "Превышение по получению" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "Избыточное получение/доставка {0} {1} игнорируется для товара {2}, так как у вас роль {3}." @@ -34677,14 +34691,14 @@ msgstr "Допустимое превышение при передаче (%)" msgid "Over Withheld" msgstr "Сверху утаено" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "Избыточно выставленная сумма {0} {1} игнорируется для товара {2}, так как у вас есть роль {3}." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "Избыточно выставленная сумма {} игнорируется, так как у вас есть роль {3}." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34733,10 +34747,6 @@ msgstr " Просроченные задачи" msgid "Overdue and Discounted" msgstr "Просроченные и со скидкой" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Перекрытие при подсчете между {0} и {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Перекрытие условия найдено между:" @@ -34802,6 +34812,11 @@ msgstr "Номер PAN" msgid "PCV" msgstr "PCV" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "PCV приостановлен" @@ -34849,7 +34864,7 @@ msgstr "Точка продаж" msgid "POS Additional Fields" msgstr "Дополнительные поля POS" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "POS закрыт" @@ -34947,8 +34962,8 @@ msgid "POS Invoice is not submitted" msgstr "Счёт точки продаж не подтверждён" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "Счёт точки продаж не создан пользователем {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35007,7 +35022,7 @@ msgstr "Запись открытия точки продаж — {0} устар msgid "POS Opening Entry Cancellation Error" msgstr "Ошибка отмены записи открытия точки продаж" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "Запись открытия точки продаж отменена" @@ -35028,7 +35043,7 @@ msgstr "Запись открытия точки продаж отсутству msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "Запись открытия точки продаж не может быть отменена, так как существуют неконсолидированные счета." -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "Запись открытия точки продаж была отменена. Пожалуйста, обновите страницу." @@ -35051,7 +35066,7 @@ msgstr "Метод оплаты точки продаж" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "Профиль точки продаж" @@ -35071,8 +35086,8 @@ msgstr "Пользователь профиля точки продаж" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "Профиль точки продаж не соответствует {}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35083,20 +35098,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "Профиль POS {0} не может быть отключен, так как существуют текущие сессии POS." #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "Профиль точки продаж {} содержит способ оплаты {}. Пожалуйста, удалите его, чтобы отключить этот способ." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "Профиль POS {} не принадлежит компании {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "Профиль POS {} не существует." +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "Профиль POS {} отключен." +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35125,11 +35140,11 @@ msgstr "Настройки точки продаж" msgid "POS Transactions" msgstr "Транзакции кассы" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "Точка продаж была закрыта в {0}. Пожалуйста, обновите страницу." -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "Счёт точки продаж {0} успешно создан" @@ -35148,7 +35163,7 @@ msgstr "Проект PSOA" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "Номера упаковки уже используются. Попробуйте номер упаковки {0}" @@ -35773,7 +35788,7 @@ msgstr "Частей на миллион" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35900,7 +35915,7 @@ msgstr "Несоответствие контрагент" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35986,7 +36001,7 @@ msgstr "Товар, привязанный к контрагенту" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36007,7 +36022,7 @@ msgstr "Тип группы" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "Тип контрагента и контрагент могут быть указаны только для счетов дебиторской/кредиторской задолженности

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Тип и сторона партии обязательны для учетной записи {0}" @@ -36043,7 +36058,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36553,7 +36568,7 @@ msgstr "Ссылки на платежи" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36628,7 +36643,7 @@ msgstr "График оплаты" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36650,7 +36665,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36750,8 +36765,8 @@ msgid "Payment Type" msgstr "Вид оплаты" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Тип оплаты должен быть одним из Присылать, Pay и внутренний перевод" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36957,11 +36972,11 @@ msgstr "В ожидании деятельность на сегодняшний msgid "Pending processing" msgstr "В ожидании обработки" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37478,12 +37493,12 @@ msgstr "Идентификатор клиента Plaid" msgid "Plaid Environment" msgstr "Среда Plaid" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Соединение с Plaid не удалось" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Требуется обновление ссылки Plaid" @@ -37505,7 +37520,7 @@ msgstr "Секретный ключ Plaid" msgid "Plaid Settings" msgstr "Настройки Plaid" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Ошибка синхронизации плед транзакций" @@ -37656,15 +37671,6 @@ msgstr "Растения и Механизмов" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Пожалуйста, пополните запасы предметов и обновите список выбора, чтобы продолжить. Чтобы прекратить работу, отмените список выбора." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Пожалуйста, выберите компанию" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Пожалуйста, выберите компанию." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37672,7 +37678,6 @@ msgstr "Пожалуйста, выберите клиента" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Пожалуйста, выберите поставщика" @@ -37680,19 +37685,19 @@ msgstr "Пожалуйста, выберите поставщика" msgid "Please Set Priority" msgstr "Пожалуйста, установите приоритет" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Установите группу поставщиков в разделе «Настройки покупок»." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Пожалуйста, укажите счет" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Пожалуйста, добавьте роль «Поставщик» пользователю {0}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Пожалуйста, добавьте способ платежей и детали начального баланса." @@ -37708,7 +37713,7 @@ msgstr "Пожалуйста, добавьте запрос коммерческ msgid "Please add Root Account for - {0}" msgstr "Пожалуйста, добавьте основной счет для - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Пожалуйста, добавьте временный вступительный счет в план счетов" @@ -37716,35 +37721,32 @@ msgstr "Пожалуйста, добавьте временный вступит msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Пожалуйста, добавьте хотя бы один серийный номер/номер партии" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Пожалуйста, добавьте столбец «Банковский счет»" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Пожалуйста, добавьте счет в корневой уровень компании - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Пожалуйста, добавьте аккаунт в компанию корневого уровня - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Пожалуйста, добавьте роль {1} пользователю {0}." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Пожалуйста, измените количество или отредактируйте {0}, чтобы продолжить." @@ -37786,7 +37788,7 @@ msgstr "Пожалуйста, проверьте либо операционны msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Пожалуйста, проверьте сообщение об ошибке и примите необходимые меры для ее исправления, а затем снова повторите проводку." @@ -37799,11 +37801,11 @@ msgstr "Пожалуйста, проверьте свой идентификат msgid "Please check your email to confirm the appointment" msgstr "Пожалуйста, проверьте электронную почту, чтобы подтвердить прием" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Пожалуйста, нажмите на кнопку 'Создать расписание'" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Пожалуйста, нажмите на кнопку \"Создать расписание\", чтобы принести Серийный номер добавлен для Пункт {0}" @@ -37819,15 +37821,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Пожалуйста, свяжитесь с любым из следующих пользователей, чтобы увеличить кредитные лимиты для {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Пожалуйста, свяжитесь с любым из следующих пользователей, чтобы {} осуществить эту транзакцию." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Пожалуйста, свяжитесь с вашим администратором, чтобы продлить кредитные лимиты на {0}." @@ -37835,11 +37837,11 @@ msgstr "Пожалуйста, свяжитесь с вашим админист msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Преобразуйте родительскую учетную запись в соответствующей дочерней компании в групповую." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Создайте клиента из обращения {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Пожалуйста, создайте документы на поставку по счетам-фактурам, для которых включена функция «Обновить запасы»." @@ -37851,7 +37853,7 @@ msgstr "При необходимости создайте новое измер msgid "Please create purchase from internal sale or delivery document itself" msgstr "Пожалуйста, создайте покупку из внутреннего документа продажи или поставки" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Создайте квитанцию о покупке или фактуру покупки для товара {0}" @@ -37863,11 +37865,11 @@ msgstr "Пожалуйста, удалите комплект товаров {0} msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "Пожалуйста, временно отключите рабочий процесс для записей в журнале {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Пожалуйста, не учитывайте расходы по нескольким активам в счете одного актива." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Пожалуйста, не создавайте более 500 предметов одновременно" @@ -37892,8 +37894,8 @@ msgid "Please enable {0} in the {1}." msgstr "Пожалуйста, включите {0} в {1}." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Пожалуйста, включите {} в {}, чтобы разрешить один и тот же товар в нескольких строках" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37904,12 +37906,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Пожалуйста, убедитесь, что счёт {0} {1} является счётом кредиторской задолженности. Вы можете изменить тип счёта на кредиторскую задолженность или выбрать другой счёт." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Пожалуйста, убедитесь, что счёт {} является счётом бухгалтерского баланса." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Убедитесь, что {} счет {} является счетом дебиторской задолженности." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37924,7 +37926,7 @@ msgstr "Пожалуйста, введите счет для изменения msgid "Please enter Approving Role or Approving User" msgstr "Пожалуйста, введите утверждении роли или утверждении Пользователь" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Пожалуйста, введите номер партии" @@ -37940,7 +37942,7 @@ msgstr "Укажите дату поставки" msgid "Please enter Employee Id of this sales person" msgstr "Пожалуйста, введите идентификатор сотрудника этого продавца" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Пожалуйста, введите Expense счет" @@ -37949,7 +37951,7 @@ msgstr "Пожалуйста, введите Expense счет" msgid "Please enter Item Code to get Batch Number" msgstr "Пожалуйста, введите код товара, чтобы получить номер партии" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Пожалуйста, введите Код товара, чтобы получить партию не" @@ -37985,7 +37987,7 @@ msgstr "Пожалуйста, введите дату Ссылка" msgid "Please enter Root Type for account- {0}" msgstr "Пожалуйста, укажите корневой тип для счёта {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Пожалуйста, введите серийный номер" @@ -38115,8 +38117,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "Пожалуйста, сгенерируйте список для удаления перед проведением" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Импортируйте счета в головную компанию или включите {} в настройках компании." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38151,11 +38153,7 @@ msgstr "Пожалуйста, укажите текущую и новую спе msgid "Please pull items from Delivery Note" msgstr "Пожалуйста, вытащите элементы из транспортной накладной" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Пожалуйста, исправьте и попробуйте еще раз." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Пожалуйста, обновите или сбросьте привязку Plaid к Банку {}." @@ -38184,12 +38182,12 @@ msgstr "Пожалуйста, сохраните Заказ на продажу, msgid "Please select Template Type to download template" msgstr "Пожалуйста, выберите Тип шаблона, чтобы скачать шаблон" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Пожалуйста, выберите Применить скидки на" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Выберите спецификацию для продукта {0}" @@ -38205,9 +38203,9 @@ msgstr "Пожалуйста, выберите банковский счет" msgid "Please select Category first" msgstr "Пожалуйста, выберите категорию первый" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Пожалуйста, выберите Charge Тип первый" @@ -38217,8 +38215,8 @@ msgstr "Пожалуйста, выберите компанию" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Выберите компанию и дату проводки для получения записей" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38240,7 +38238,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Пожалуйста, выберите Существующую компанию для создания плана счетов" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Пожалуйста, выберите готовый товар для услуги {0}" @@ -38249,6 +38247,10 @@ msgstr "Пожалуйста, выберите готовый товар для msgid "Please select Item Code first" msgstr "Пожалуйста, сначала выберите код продукта" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Выберите «Состояние обслуживания» как «Завершено» или «Дата завершения»" @@ -38273,11 +38275,11 @@ msgstr "Пожалуйста, выберите Дата публикации, п msgid "Please select Posting Date first" msgstr "Пожалуйста, выберите проводки Дата первого" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Пожалуйста, выберите прайс-лист" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Пожалуйста, выберите количество продуктов {0}" @@ -38306,6 +38308,7 @@ msgid "Please select a BOM" msgstr "Выберите спецификацию" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Пожалуйста, выберите компанию" @@ -38313,11 +38316,12 @@ msgstr "Пожалуйста, выберите компанию" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Пожалуйста, сначала выберите компанию." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Выберите клиента" @@ -38326,7 +38330,7 @@ msgstr "Выберите клиента" msgid "Please select a Delivery Note" msgstr "Пожалуйста, выберите накладную" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Пожалуйста, выберите заказ на субподрядную закупку." @@ -38338,7 +38342,7 @@ msgstr "Пожалуйста, выберите поставщика" msgid "Please select a Warehouse" msgstr "Пожалуйста, выберите склад" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Пожалуйста, сначала выберите заказ на работу." @@ -38354,6 +38358,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38387,22 +38392,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "Выберите периодичность для графика поставок" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Пожалуйста, выберите строку для создания записи перепроведения" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Пожалуйста, выберите поставщика для получения платежей." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Пожалуйста, выберите действующий заказ на покупку, настроенный для субподряда." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Пожалуйста, выберите значение для {0} предложение_для {1}" @@ -38411,7 +38420,7 @@ msgstr "Пожалуйста, выберите значение для {0} пр msgid "Please select an item code before setting the warehouse." msgstr "Пожалуйста, выберите код товара перед настройкой склада." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38419,10 +38428,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Выберите хотя бы один фильтр: код товара, партия или серийный номер." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Пожалуйста, выберите хотя бы один ряд для исправления" @@ -38431,18 +38448,10 @@ msgstr "Пожалуйста, выберите хотя бы один ряд д msgid "Please select at least one row with difference value" msgstr "Пожалуйста, выберите хотя бы одну строку с разницей значений" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "Пожалуйста, выберите хотя бы один товар для продолжения" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "Пожалуйста, выберите хотя бы одну операцию для создания производственного наряда" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Пожалуйста, выберите правильный счет" @@ -38480,12 +38489,12 @@ msgstr "Пожалуйста, выберите товары для резерв msgid "Please select items to unreserve." msgstr "Пожалуйста, выберите товары для отмены резервирования." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Пожалуйста, выберите только одну строку для создания записи о перепроведении" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Пожалуйста, выберите строки для создания записи о перепроведении" @@ -38494,8 +38503,8 @@ msgid "Please select the Company" msgstr "Пожалуйста, выберите компанию" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Выберите несколько типов программ для нескольких правил сбора." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38518,20 +38527,16 @@ msgstr "Пожалуйста, выберите тип документа сна msgid "Please select the required filters" msgstr "Пожалуйста, выберите необходимые фильтры" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Пожалуйста, выберите допустимый тип документа." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Пожалуйста, выберите в неделю выходной" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Пожалуйста, выберите {0} первый" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Пожалуйста, установите «Применить дополнительную скидку»" @@ -38560,8 +38565,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Укажите учетную запись в хранилище {0} или учетную запись инвентаризации по умолчанию в компании {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Пожалуйста, установите измерение учета {} в {}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38590,22 +38595,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Пожалуйста, укажите адрес электронной почты/телефон для контакта" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Пожалуйста, установите фискальный код для клиента «%s»" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Пожалуйста, установите фискальный код для клиента «{0}»" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Пожалуйста, установите фискальный код для государственного органа '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Пожалуйста, установите фискальный код для государственного органа '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "Пожалуйста, укажите счёт основных средств в категории активов {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Укажите счет для основных средств в {} по отношению к {}." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38621,9 +38624,8 @@ msgid "Please set Root Type" msgstr "Пожалуйста, установите тип корня" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Пожалуйста, установите налоговый идентификатор для клиента «%s»" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Пожалуйста, установите налоговый идентификатор для клиента «{0}»" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38642,15 +38644,15 @@ msgid "Please set a Company" msgstr "Укажите компанию" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Пожалуйста, установите Центр затрат для Актива или установите Центр затрат на амортизацию Актива для Компании {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Пожалуйста, установите список праздников по умолчанию для компании {0}" @@ -38667,9 +38669,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "Пожалуйста, установите фактический спрос или прогноз продаж для создания отчета о планировании потребностей в материалах." #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Пожалуйста, укажите адрес компании '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "Пожалуйста, укажите адрес компании '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38687,25 +38688,22 @@ msgstr "Пожалуйста, укажите хотя бы одну строку msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "Пожалуйста, укажите как ИНН, так и Фискальный код для компании {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Пожалуйста, установите Cash умолчанию или банковский счет в режим оплаты {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Установите по умолчанию наличный или банковский счет в режиме оплаты {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Пожалуйста, установите Cash умолчанию или банковский счет в режим оплаты {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Установите по умолчанию наличный или банковский счет в режиме оплаты {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Пожалуйста, установите по умолчанию счет учета прибыли/убытка от курсовых разниц в компании {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38736,11 +38734,11 @@ msgstr "Пожалуйста, установите фильтр, основан msgid "Please set one of the following:" msgstr "Пожалуйста, установите один из следующих вариантов:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "Пожалуйста, укажите начальное количество проведённых амортизаций" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Пожалуйста, установите повторяющиеся после сохранения" @@ -38748,7 +38746,7 @@ msgstr "Пожалуйста, установите повторяющиеся п msgid "Please set the Customer Address" msgstr "Пожалуйста, установите адрес клиента" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Пожалуйста, установите Центр затрат по умолчанию в {0} компании." @@ -38803,7 +38801,7 @@ msgstr "Пожалуйста, установите {0} в компании {1} msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Пожалуйста, установите {0} на {1}, тот же счет, который использовался в исходном счете {2}." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Пожалуйста, создайте и активируйте групповой счет с типом счета - {0} для компании {1}" @@ -38811,7 +38809,7 @@ msgstr "Пожалуйста, создайте и активируйте гру msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Пожалуйста, отправьте это письмо вашей службе поддержки, чтобы они могли найти и устранить проблему." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Пожалуйста, сформулируйте Компания" @@ -38821,8 +38819,8 @@ msgstr "Пожалуйста, сформулируйте Компания" msgid "Please specify Company to proceed" msgstr "Пожалуйста, сформулируйте Компания приступить" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Пожалуйста, укажите действительный идентификатор строки для строки {0} в таблице {1}" @@ -38830,11 +38828,11 @@ msgstr "Пожалуйста, укажите действительный иде msgid "Please specify a {0} first." msgstr "Пожалуйста, сначала введите {0}." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Пожалуйста, укажите как минимум один атрибут в таблице атрибутов" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Пожалуйста, сформулируйте либо Количество или оценка Оценить или оба" @@ -38842,6 +38840,14 @@ msgstr "Пожалуйста, сформулируйте либо Количес msgid "Please specify from/to range" msgstr "Пожалуйста, сформулируйте из / в диапазоне" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Пожалуйста, повторите попытку через час." @@ -39005,7 +39011,7 @@ msgstr "Опубликовано" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39030,7 +39036,7 @@ msgstr "Опубликовано" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39073,8 +39079,8 @@ msgstr "Дата публикации" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Дата размещения не может быть будущая дата" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39082,7 +39088,7 @@ msgstr "Дата размещения не может быть будущая д msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "Дата проводки будет изменена на сегодняшнюю, так как флажок «Редактировать дату и время проводки» не установлен. Вы уверены, что хотите продолжить?" @@ -39275,6 +39281,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "Предоплата" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "Президент" @@ -39364,7 +39374,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Предыдущий финансовый год не закрыт" @@ -39506,7 +39516,7 @@ msgstr "Прайс лист страны" msgid "Price List Currency" msgstr "Валюта прайс-листа" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Валюта прайс-листа не выбрана" @@ -39627,7 +39637,7 @@ msgstr "Цена не зависит от единицы измерения" msgid "Price Per Unit ({0})" msgstr "Цена за единицу ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "Цена на товар не установлена." @@ -39738,7 +39748,7 @@ msgstr "Правило ценообразования сначала выбир msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "Правило ценообразования создаётся для того, чтобы переопределять прайс-лист или задавать процент скидки на основе определённых критериев." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "Правило ценообразования {0} обновлено" @@ -39946,8 +39956,8 @@ msgid "Priorities" msgstr "Очередность" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "Приоритет не может быть меньше 1." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40128,7 +40138,7 @@ msgstr "Процесс подписки" msgid "Process in Single Transaction" msgstr "Процесс в одной транзакции" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40254,7 +40264,7 @@ msgstr "Продуктовый набор" msgid "Product Bundle Balance" msgstr "Баланс продукта" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40279,7 +40289,7 @@ msgstr "Помощь с комплектом продуктов" msgid "Product Bundle Item" msgstr "Связка продуктов" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40482,7 +40492,7 @@ msgstr "Продукты" msgid "Profit & Loss" msgstr "Прибыль и убыток" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Прибыль в этом году" @@ -40511,6 +40521,10 @@ msgstr "Прибыль и убытки" msgid "Profit and Loss Statement" msgstr "Счет прибыль/убытки" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40519,8 +40533,8 @@ msgstr "Счет прибыль/убытки" msgid "Profit and Loss Summary" msgstr "Сводка прибылей и убытков" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Прибыль за год" @@ -40593,7 +40607,7 @@ msgstr "Статус проекта" msgid "Project Summary" msgstr "Резюме проекта" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Краткое описание проекта для {0}" @@ -40673,7 +40687,7 @@ msgstr "Отслеживание запасов по проекту" msgid "Project wise Stock Tracking " msgstr "Отслеживание затрат по проектам" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Данные проекта не доступны для предложения" @@ -40724,7 +40738,7 @@ msgstr "Прогнозируемое кол-во" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40870,7 +40884,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Перспективные, но не работающие" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "Защищенный DocType" @@ -40903,9 +40917,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "Предварительный счет расходов" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Предварительная прибыль / убыток (кредит)" @@ -41133,8 +41147,8 @@ msgstr "Тенденции на закупки" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Счет покупки не может быть сделан против существующего актива {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Счет на закупку {0} уже проведен" @@ -41175,7 +41189,7 @@ msgstr "Счета на покупку" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41199,11 +41213,11 @@ msgstr "Счета на покупку" msgid "Purchase Order" msgstr "Заказ на покупку" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Сумма заказа на покупку" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Сумма заказа на покупку (в валюте компании)" @@ -41218,7 +41232,7 @@ msgstr "Сумма заказа на покупку (в валюте компа msgid "Purchase Order Analysis" msgstr "Анализ заказов на закупку" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Дата заказа на покупку" @@ -41267,8 +41281,8 @@ msgid "Purchase Order Required" msgstr "Требуется заказ на покупку" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Требуется заказ на покупку для товара {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41327,8 +41341,8 @@ msgid "Purchase Orders to Receive" msgstr "Заказы на закупку для получения" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Заказы на покупку {0} разъединены" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41417,8 +41431,8 @@ msgid "Purchase Receipt Required" msgstr "Требуется чек о покупке" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Для товара требуется квитанция о покупке {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41437,8 +41451,8 @@ msgid "Purchase Receipt Trends " msgstr "Динамика Получения Поставок " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "В квитанции о покупке нет ни одного предмета, для которого включена функция сохранения образца." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41665,7 +41679,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41684,7 +41698,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41749,7 +41763,7 @@ msgstr "Кол-во после транзакции" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41786,7 +41800,7 @@ msgstr "Количество на единицу" msgid "Qty To Manufacture" msgstr "Кол-во для производства" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "Количество для производства ({0}) не может быть дробным для единицы измерения {2}. Чтобы разрешить это, отключите '{1}' в единице измерения {2}." @@ -41881,7 +41895,7 @@ msgstr "Количество, которое будет потреблено" msgid "Qty to Bill" msgstr "Кол-во к счету" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Количество для сборки" @@ -42067,7 +42081,7 @@ msgstr "Контроль качества" msgid "Quality Inspection Analysis" msgstr "Анализ контроля качества" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42144,7 +42158,7 @@ msgstr "Контроль качества {0} не проведён для то msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "Контроль качества {0} отклоняется для изделия: {1}" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Проверка(и) качества" @@ -42227,7 +42241,7 @@ msgstr "Обзор качества" msgid "Quality Review Objective" msgstr "Цель проверки качества" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42271,12 +42285,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42427,7 +42441,7 @@ msgstr "Требуется указать количество" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42455,11 +42469,11 @@ msgstr "Количество должно быть больше, чем 0" msgid "Quantity to Manufacture" msgstr "Количество для производства" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "Количество для производства не может быть нулевым для операции {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Количество, Изготовление должны быть больше, чем 0." @@ -42467,6 +42481,10 @@ msgstr "Количество, Изготовление должны быть б msgid "Quantity to Scan" msgstr "Количество для сканирования" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42492,7 +42510,7 @@ msgstr "Квартал {0} {1}" msgid "Query Route String" msgstr "Строка маршрута запроса" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "Размер очереди должен быть между 5 и 100" @@ -42732,7 +42750,7 @@ msgstr "Инициировано (Электронная почта)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42916,8 +42934,8 @@ msgid "Rate at which this tax is applied" msgstr "Ставка, по которой применяется этот налог" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "Ставка '{}' элементов не может быть изменена" +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43235,7 +43253,7 @@ msgstr "Причина удержания" msgid "Reason for Failure" msgstr "Причина сбоя" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Причина удержания" @@ -43477,8 +43495,8 @@ msgstr "Список получателей пуст. Пожалуйста, со msgid "Receiving" msgstr "Получение" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Недавние заказы" @@ -43654,6 +43672,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43704,7 +43726,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Повторяющееся количество не может быть менее 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "Повторяемые скидки со смешанными условиями не поддерживаются системой" @@ -43784,7 +43806,7 @@ msgstr "Ссылка #" msgid "Reference #{0} dated {1}" msgstr "Ссылка #{0} от {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Дата для расчета скидки за досрочную оплату" @@ -44076,8 +44098,8 @@ msgid "Rejected Warehouse" msgstr "Склад брака" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Склад отклоненных товаров и склад принятых товаров не могут быть одним и тем же." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44183,7 +44205,7 @@ msgstr "Примечание" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44222,7 +44244,7 @@ msgstr "Удалить нулевые значения" msgid "Remove item if charges is not applicable to that item" msgstr "Удалить товар, если к нему не применимы сборы" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Удалены пункты без изменения в количестве или стоимости." @@ -44374,7 +44396,7 @@ msgstr "Сообщить об ошибке" msgid "Report Line Items" msgstr "Позиции отчётной таблицы" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44457,7 +44479,7 @@ msgstr "Журнал ошибок повторной проводки" msgid "Repost Item Valuation" msgstr "Повторно провести оценку товаров" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "Оценка стоимости товара повторно запущена для выбранных ошибочных записей." @@ -44503,6 +44525,15 @@ msgstr "Повторная проводка начата в фоновом ре msgid "Reposting Data File" msgstr "Файл данных для повторной проводки" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44587,7 +44618,7 @@ msgstr "Требуется по дате" msgid "Reqd Qty (BOM)" msgstr "Требуемое количество (BOM)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Требуется по дате" @@ -44703,11 +44734,11 @@ msgstr "Запрашиваемое кол-во" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Запрошенное количество: Количество, запрошенное для покупки, но не заказанное." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Запрашивающий сайт" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Заявитель" @@ -44886,6 +44917,10 @@ msgstr "Резервный запас" msgid "Reserve Warehouse" msgstr "Резервный склад" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "Запрос на сырье" @@ -44924,8 +44959,8 @@ msgid "Reserved Qty" msgstr "Зарезервированное кол-во" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "Зарезервированное количество ({0}) не может быть дробью. Чтобы разрешить это, отключите '{1}' в свецификации {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Зарезервированное количество ({0}) РЅРµ может быть РґСЂРѕР±СЊСЋ. Чтобы разрешить это, отключите '{1}' РІ свецификации {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44969,7 +45004,7 @@ msgstr "Зарезервированное количество" msgid "Reserved Quantity for Production" msgstr "Зарезервированное количество для производства" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Зарезервированный серийный номер" @@ -44985,13 +45020,13 @@ msgstr "Зарезервированный серийный номер" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Зарезервированный запас" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Зарезервированный запас для партии" @@ -45485,6 +45520,10 @@ msgstr "Возвращённый обменный курс не является msgid "Returns" msgstr "Возвращает" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45909,11 +45948,11 @@ msgstr "Название маршрута" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Строка # {0}: Невозможно вернуть более {1} для {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Строка # {0}: Добавьте пакет серийного и партионного учёта для товара {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "Строка # {0}: Укажите количество для товара {1}, так как оно не равно нулю." @@ -45997,23 +46036,23 @@ msgstr "Строка #{0}: Спецификация по умолчанию не msgid "Row #{0}: Batch No {1} is already selected." msgstr "Строка #{0}: партия № {1} уже выбрана." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "Строка #{0}: Номер(а) партии {1} не входит в связанный внутренний субподрядный заказ. Выберите допустимые номера партии." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Строка #{0}: Невозможно выделить больше, чем {1}, по условию оплаты {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "Строка #{0}: Невозможно отменить эту запись производственного запаса, так как предъявленное к оплате количество товара {1} не может превышать потребленное количество." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "Строка #{0}: Невозможно отменить эту запись запаса, так как возвращенное количество не может быть больше поставленного количества для позиции {1} в связанном субподрядном внутреннем заказе" @@ -46089,13 +46128,16 @@ msgstr "Строка #{0}: Не удалось найти достаточное msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Строка #{0}: Суммарный порог не может быть ниже порога для одной транзакции" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "Строка #{0}: Позиция, предоставленная заказчиком {1}, напротив позиции заказа на субподряд {2} ({3}) не может быть добавлена несколько раз." -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "Строка #{0}: Позиция, предоставленная заказчиком {1} не может быть добавлена несколько раз в процессе внутреннего субподряда." @@ -46107,7 +46149,7 @@ msgstr "Строка #{0}: Предоставленный клиентом то msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "Строка #{0}: Позиция, предоставленная клиентом {1}, не существует в таблице \"Необходимые позиции\", связанной с внутренним заказом на субподряд." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "Строка #{0}: Товар, предоставленный клиентом {1}, превышает количество, доступное по внутреннему субподрядному заказу" @@ -46115,12 +46157,12 @@ msgstr "Строка #{0}: Товар, предоставленный клиен msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "Строка #{0}: Недостаточное количество товара, предоставленного заказчиком, {1} в заказе на субподряд. Доступное количество: {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Строка #{0}: Товар, предоставленный заказчиком {1}, не является частью внутреннего субподрядного заказа {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "Строка #{0}: Предоставленный клиентом элемент {1} не является частью заказа на работу {2}" @@ -46132,7 +46174,7 @@ msgstr "Строка #{0}: Даты, перекрывающиеся с друг msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Строка #{0}: Спецификация по умолчанию не найдена для готовой продукции {1}" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Строка #{0}: требуется дата начала амортизации" @@ -46140,6 +46182,10 @@ msgstr "Строка #{0}: требуется дата начала аморти msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Строка #{0}: Дублирующая запись в ссылках {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Строка #{0}: ожидаемая дата поставки не может быть до даты заказа на поставку" @@ -46152,11 +46198,18 @@ msgstr "Строка #{0}: Счет расходов не установлен msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "Строка #{0}: Счет расходов {1} недействителен для счета-фактуры на покупку {2}. Допускаются только счета расходов по товарам, не имеющим складских запасов." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Строка #{0}: Количество готовой продукции не может быть равно нулю" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46179,8 +46232,8 @@ msgstr "Строка #{0}: Готовый товар должен быть {1}" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "Строка #{0}: для предоставленного клиентом товара {1}исходный склад должен быть {2}" @@ -46192,7 +46245,7 @@ msgstr "Строка #{0}: Для {1} выбор справочного доку msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Строка #{0}: Для {1} справочный документ можно выбрать только при списании средств со счёта." -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "Строка #{0}: Частота амортизации должна быть больше нуля" @@ -46204,6 +46257,10 @@ msgstr "Строка #{0}: Начальная дата не может быть msgid "Row #{0}: From Time and To Time fields are required" msgstr "Строка #{0}: Необходимо указать поля времени «С» и «По»" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Строка #{0}: пункт добавлен" @@ -46232,16 +46289,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "Строка #{0}: Товар {1} на складе {2}: Доступно {3}, Требуется {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "Строка #{0}: Позиция {1} должна быть субподрядной." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Строка #{0}: элемент {1} не является сериализованным / пакетным элементом. Он не может иметь серийный номер / пакетный номер против него." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Строка #{0}: Позиция {1} не является частью субподрядного внутреннего заказа {2}" @@ -46257,13 +46314,17 @@ msgstr "Строка #{0}: Товар {1} не является товаром msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "Строка #{0}: Несоответствие элемента {1}. Изменение кода элемента запрещено, вместо этого добавьте другую строку." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "Строка #{0}: Несоответствие элемента {1}. Изменение кода элемента не допускается." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46273,15 +46334,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Строка #{0}: Запись в журнале {1} не имеет учетной записи {2} или уже сопоставляется с другой купон" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "Строка #{0}: Отсутствует {1} для компании {2}." -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "Строка #{0}: Следующая дата амортизации не может быть раньше даты ввода в эксплуатацию" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "Строка #{0}: Следующая дата амортизации не может быть раньше даты покупки" @@ -46293,24 +46354,48 @@ msgstr "Строка #{0}: Не разрешено изменять постав msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Строка #{0}: Только {1} доступно для резервирования для товара {2}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "Строка #{0}: Начисленная амортизация на начало периода должна быть меньше или равна {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "Строка #{0}: Перерасход предоставленного заказчиком товара {1} по заказу на работу {2} не допускается в процессе внутреннего субподряда." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Строка #{0}: Необходимо указать код товара в составе сборки" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Строка #{0}: Выберите номер спецификации в составе сборки" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "Строка #{0}: выберите готовый товар, для которого будет использоваться предоставленный клиентом товар." @@ -46326,6 +46411,10 @@ msgstr "Строка #{0}: Пожалуйста, укажите количест msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Строка #{0}: Пожалуйста, обновите счет доходов/расходов будущих периодов в строке позиции или счет по умолчанию в основных настройках компании" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46345,8 +46434,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Строка #{0}: Количество должно быть положительным числом" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Строка #{0}: Количество должно быть меньше или равно Доступному количеству для резервирования (Фактическое количество - Зарезервированное количество) {1} для товара {2} для партии {3} на складе {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46368,7 +46457,7 @@ msgstr "Строка #{0}: Количество не может быть неп msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Строка #{0}: Количество товара {1} не может быть нулевым." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "Строка #{0}: Количество товара {1} не может быть больше, чем {2} {3} в заказе на субподряд {4}" @@ -46376,17 +46465,17 @@ msgstr "Строка #{0}: Количество товара {1} не может msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Строка #{0}: Количество для резервирования товара {1} должно быть больше 0." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Строка #{0}: Ставка должна быть такой же, как у {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Строка #{0}: Тип справочного документа должен быть одним из следующих: Заказ на покупку, Счет-фактура на покупку или Запись в журнале" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Строка #{0}: Тип ссылочного документа должен быть одним из следующих: Заказ на продажу, Счет-фактура, Запись в журнале или Напоминание." @@ -46406,11 +46495,11 @@ msgstr "Строка #{0}: Стоимость ремонта {1} превыша msgid "Row #{0}: Return Against is required for returning asset" msgstr "Строка #{0}: Для возврата основного средства необходимо заполнить поле «Возврат по документу»" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "Строка #{0}: Количество позиции {1} не может превышать доступное количество" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "Строка #{0}: Возвращаемое количество не может быть больше доступного количества для возврата для товара {1}" @@ -46420,18 +46509,19 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "Строка #{0}: Продажный курс для товара {1} ниже, чем для его {2}.\n" -"\t\t\t\t\tПродажный курс для {3} должен быть не ниже {4}.

                    В качестве альтернативы,\n" -"\t\t\t\t\tвы можете отключить '{5}' в {6}, чтобы обойти\n" -"\t\t\t\t\tэту проверку." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "Строка #{0}: Идентификатор последовательности должен быть {1} или {2} для операции {3}." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Строка #{0}: серийный номер {1} не принадлежит партии {2}" @@ -46444,7 +46534,7 @@ msgstr "Строка #{0}: Серийный номер {1} для товара { msgid "Row #{0}: Serial No {1} is already selected." msgstr "Строка #{0}: Серийный номер {1} уже выбран." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "Строка #{0}: серийные номера {1} не входят в связанный заказ на субподряд. Выберите допустимые серийные номера." @@ -46468,7 +46558,7 @@ msgstr "Строка #{0}: Установить поставщика для {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "Строка #{0}: Так как включена опция «Отслеживать полуфабрикаты», спецификацию (BOM) {1} нельзя использовать для подсборок" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Строка #{0}: Исходный склад должен совпадать со складом клиента {1} из связанного внутреннего заказа на субподряд" @@ -46537,7 +46627,7 @@ msgstr "Строка #{0}: Запас недоступен для резерви msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "Строка #{0}: Количество на складе {1} ({2}) для товара {3} не может превышать {4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Строка #{0}: целевой склад должен совпадать со складом клиента {1} из связанного внутреннего заказа субподряда." @@ -46545,19 +46635,27 @@ msgstr "Строка #{0}: целевой склад должен совпада msgid "Row #{0}: The batch {1} has already expired." msgstr "Строка #{0}: срок действия пакета {1} уже истек." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Строка #{0}: Склад {1} не является дочерним складом группового склада {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Строка #{0}: Тайминги конфликтуют со строкой {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Строка #{0}: Общее количество амортизаций не может быть меньше или равно начальному количеству учтенных амортизаций" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "Строка #{0}: Общее количество амортизационных отчислений должно быть больше нуля" @@ -46569,11 +46667,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "Строка #{0}: Сумма удержания {1} не соответствует рассчитанной сумме {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "Строка #{0}: Заказ на работу существует для полного или частичного количества товара {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Строка #{0}: Нельзя использовать размерность учета '{1}' в документе «Сверка остатков» для изменения количества или оценочной стоимости. Сверка остатков с размерностями предназначена исключительно для ввода начальных остатков." @@ -46581,6 +46683,19 @@ msgstr "Строка #{0}: Нельзя использовать размерн msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Строка #{0}: Необходимо выбрать актив для товара {1}." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Строка #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Строка #{0}: {1} не может быть отрицательным для {2}" @@ -46597,6 +46712,14 @@ msgstr "Строка #{0}: {1} требуется для создания нач msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Строка #{0}: {1} из {2} должно быть {3}. Пожалуйста, обновите {1} или выберите другой счет." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46637,71 +46760,10 @@ msgstr "Строка #{idx}: {from_warehouse_field} и {to_warehouse_field} не msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "Строка #{idx}: {schedule_date} не может быть раньше {transaction_date}." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Строка № {}: валюта {} - {} не соответствует валюте компании." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Строка #{}: Финансовая книга не может быть пустой, так как используется несколько книг." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Строка #{}: Счёт точки продаж {} был {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Строка № {}: счет торговой точки {} не выставлен клиенту {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Строка #{}: Счёт точки продаж {} ещё не отправлен" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Строка №{}: Назначьте задачу участнику." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Строка #{}: Используйте другую финансовую книгу." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Строка № {}: Серийный номер {} не может быть возвращен, поскольку он не был указан в исходном счете {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Строка #{}: Исходный счёт {} возвратного счёта {} не консолидирован." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Строка #{}: Вы не можете добавлять положительные количества в счет-фактуру возврата. Пожалуйста, удалите элемент {}, чтобы завершить возврат." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Строка №{}: элемент {} уже выбран." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Строка #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Строка № {}: {} {} не существует." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Строка №{}: {} {} не принадлежит компании {}. Выберите допустимый {}." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Номер строки {0}: Требуется указать склад. Укажите склад по умолчанию для товара {1} и компании {2}" @@ -46714,10 +46776,6 @@ msgstr "Строка {0}: требуется операция против эл msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "В строке {0} выбранное количество меньше требуемого, требуется дополнительно {1} {2}." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Строка {0}# Товар {1} не найден в таблице 'Поставленное сырье' в {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Строка {0}: Принятое количество и Отклоненное количество не могут быть равны нулю одновременно." @@ -46738,19 +46796,19 @@ msgstr "Строка {0}: Аванс в отношении клиента дол msgid "Row {0}: Advance against Supplier must be debit" msgstr "Строка {0}: Аванс в отношении поставщика должны быть дебетом" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Строка {0}: Выделенная сумма {1} должна быть меньше или равна сумме непогашенного счета {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Строка {0}: Выделенная сумма {1} должна быть меньше или равна оставшейся сумме платежа {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Строка {0}: Поскольку {1} включен, сырье не может быть добавлено в запись {2}. Используйте запись {3} для расходования сырья." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Строка {0}: Для продукта {1} не найдена ведомость материалов" @@ -46766,11 +46824,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Строка {0}: Коэффициент преобразования является обязательным" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Строка {0}: Центр затрат {1} не принадлежит компании {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Строка {0}: Для элемента {1}требуется центр затрат." @@ -46798,24 +46856,24 @@ msgstr "Строка {0}: Склад доставки не может совпа msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Строка {0}: Дата платежа в таблице условий оплаты не может быть раньше даты публикации" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Строка {0}: Обязательно укажите либо товар накладной, либо ссылку на упакованный товар." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Строка {0}: Курс является обязательным" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "Строка {0}: Ожидаемое значение после окончания срока полезной эксплуатации не может быть отрицательным" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "Строка {0}: Ожидаемая стоимость после окончания срока полезного использования должна быть меньше чистой суммы покупки" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46836,6 +46894,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Строка {0}: От времени и времени является обязательным." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Строка {0}: От времени и времени {1} перекрывается с {2}" @@ -46857,8 +46918,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Строка {0}: Недопустимая ссылка {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Запись {0}: Шаблон налога для товара обновлен согласно актуальности и установленной ставке налога" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46888,7 +46949,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Строка {0}: Упакованное количество должно быть равно {1} количеству." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Строка {0}: Упаковочный лист уже создан для товара {1}." @@ -46912,7 +46973,7 @@ msgstr "Строка {0}: Платеж по покупке / продаже по msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Строка {0}: Проверьте «Аванс» напротив счета {1}, если это авансовая запись." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Строка {0}: Укажите действительный товар в транспортной накладной или ссылку на упакованный товар." @@ -46920,14 +46981,14 @@ msgstr "Строка {0}: Укажите действительный товар msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Строка {0}: Выберите спецификацию для товара {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Строка {0}: Выберите активную спецификацию для товара {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Строка {0}: Выберите действительную спецификацию для товара {1}." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Строка {0}: Укажите причину освобождения от уплаты налогов в разделе Налоги и сборы" @@ -46944,11 +47005,11 @@ msgstr "Строка {0}: установите правильный код в с msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Строка {0}: Проект должен совпадать с указанным в табеле учета рабочего времени: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Строка {0}: Счет-фактура покупки {1} не влияет на запасы." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Строка {0}: Количество не может быть больше {1} для товара {2}." @@ -46956,7 +47017,7 @@ msgstr "Строка {0}: Количество не может быть боль msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Запись {0}: Количество в складских единицах измерения не может быть нулевым." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Строка {0}: Количество должно быть больше 0." @@ -46968,7 +47029,7 @@ msgstr "Строка {0}: Количество не может быть отри msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "Строка {0}: Счет-фактура {1} уже создана для {2}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46993,10 +47054,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "Строка {0}: Вся сумма расходов по счету {1} в {2} уже распределена." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Строка {0}: товар {1}, количество должно быть положительным числом" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Строка {0}: Счет {3} {1} не принадлежит компании {2}" @@ -47049,15 +47110,19 @@ msgstr "Строка {0}: {1} {2} не может совпадать с {3} (с msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Строка {0}: {1} {2} не соответствует {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Строка {0}: {2} Товар {1} не существует в {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Строка {1}: Количество ({0}) не может быть дробью. Чтобы разрешить это, отключите «{2}» в единице измерения {3}." @@ -47096,8 +47161,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "В строках {0} указан тип ссылки 'Платежная операция'. Этот параметр не должен задаваться вручную." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Строки: {0} в разделе {1} недействительны. Имя ссылки должно указывать на действительную запись платежа или запись журнала." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47157,10 +47222,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47228,7 +47289,7 @@ msgstr "Статус выполнения SLA" msgid "SLA Paused On" msgstr "SLA приостановлено на" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "SLA приостановлено с {0}" @@ -47527,8 +47588,8 @@ msgid "Sales Invoice is not submitted" msgstr "Счёт на продажу не подтверждён" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "Счёт на продажу не создан пользователем {}" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47744,8 +47805,8 @@ msgstr "Заказ на продажу {0} уже существует для з msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48152,7 +48213,7 @@ msgstr "Тот же товар" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Такая же комбинация товара и склада уже введена." @@ -48184,7 +48245,7 @@ msgstr "Склад для хранения образцов" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Размер образца" @@ -48294,7 +48355,7 @@ msgstr "Отсканированное количество" msgid "Schedule Date" msgstr "Запланированная дата" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48305,7 +48366,7 @@ msgstr "" msgid "Scheduled Date" msgstr "Запланированная дата" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48591,7 +48652,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "Выбрать измерение учета." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Выбрать альтернативный продукт" @@ -48612,7 +48673,7 @@ msgid "Select BOM and Qty for Production" msgstr "Выберите спецификацию и кол-во для производства" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Выбрать номер партии" @@ -48677,7 +48738,7 @@ msgstr "Выбрать измерение" msgid "Select Dispatch Address " msgstr "Выберите адрес отгрузки" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Выберите сотрудников" @@ -48702,7 +48763,7 @@ msgstr "Выбрать элементы" msgid "Select Items based on Delivery Date" msgstr "Выбрать продукты по дате поставки" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "Выбрать товары для проверки качества" @@ -48732,7 +48793,7 @@ msgstr "Выбрать адрес исполнителя работ" msgid "Select Loyalty Program" msgstr "Выберите программу лояльности" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48746,13 +48807,13 @@ msgid "Select Quantity" msgstr "Выберите количество" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Выбрать серийный номер" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Выбрать серийный номер и партию" @@ -48843,6 +48904,7 @@ msgid "Select an Item Group." msgstr "Выбрать группу элементов." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Выберите учетную запись для печати в валюте счета" @@ -48985,10 +49047,14 @@ msgstr "Выбранные документы" msgid "Selected date is" msgstr "Выбранная дата" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "Выбранный документ должен быть в состоянии «отправлено»" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49136,7 +49202,7 @@ msgid "Send Emails to Suppliers" msgstr "Отправка электронных писем поставщикам" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Отправить SMS" @@ -49220,7 +49286,7 @@ msgstr "Отсутствует пакет серий/партий" msgid "Serial / Batch No" msgstr "Серийный номер/номер партии" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Серийные номера/номера партии" @@ -49277,10 +49343,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49322,6 +49389,10 @@ msgstr "Серийный номер/партия" msgid "Serial No Already Assigned" msgstr "Серийный номер уже назначен" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Серийный номер" @@ -49339,7 +49410,7 @@ msgstr "Серийный номер книги учета" msgid "Serial No Range" msgstr "Диапазон серийных номеров" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "Серийный номер зарезервирован" @@ -49384,8 +49455,8 @@ msgid "Serial No and Batch" msgstr "Серийный номер и партия" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "Невозможно использовать выбор серийных номеров и партий, когда используются поля серийных номеров и партий." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49396,7 +49467,7 @@ msgstr "Невозможно использовать выбор серийны msgid "Serial No and Batch Traceability" msgstr "Трассировка серийных номеров и партий" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "Серийный номер обязателен" @@ -49416,22 +49487,19 @@ msgstr "Серийный номер {0} уже отсканирован" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Серийный номер {0} не принадлежит накладной {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Серийный номер {0} не принадлежит продукту {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Серийный номер {0} не существует" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "Серийный номер {0} не существует" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "Серийный номер {0} уже доставлен. Вы не сможете использовать его повторно при изготовлении/переупаковке." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49445,25 +49513,26 @@ msgstr "Серийный номер {0} уже закреплен за клие msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Серийный номер {0} отсутствует в {1} {2}, поэтому вы не можете оформить возврат по {1} {2}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Серийный номер {0} находится под контрактом на техническое обслуживание до {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Серийный номер {0} находится на гарантии до {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Серийный номер {0} не найден" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Серийный номер: {0} уже использован в другой записи точки продаж." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49483,7 +49552,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "Серийные номера созданы успешно" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Серийные номера зарезервированы в записях о резервировании запасов, вам необходимо снять резервирование, прежде чем продолжить." @@ -49584,6 +49653,10 @@ msgstr "Пакет серий и партий {0} не проведен" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49632,7 +49705,7 @@ msgstr "Резервирование по серийному номеру и п msgid "Serial and Batch Summary" msgstr "Сводка по сериям и партиям" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Серийный номер {0} используется больше одного раза" @@ -49640,122 +49713,12 @@ msgstr "Серийный номер {0} используется больше о msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "Серийные номера для товара {0} на складе {1} отсутствуют. Попробуйте выбрать другой склад." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Идентификатор документа" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Серия для записи амортизации активов (журнальная запись)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Идентификатор является обязательным" @@ -49837,7 +49800,7 @@ msgid "Service Item {0} is disabled." msgstr "Услуга {0} отключена." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "Услуга {0} должна быть нескладской позицией." @@ -49946,12 +49909,12 @@ msgid "Service Stop Date" msgstr "Дата остановки обслуживания" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Дата остановки службы не может быть после даты окончания услуги" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "Дата остановки службы не может быть до даты начала службы" @@ -49975,7 +49938,7 @@ msgstr "Назначить авансы и распределить (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Установить базовую ставку вручную" @@ -49990,7 +49953,7 @@ msgstr "Установить поставщика по умолчанию" msgid "Set Delivery Warehouse" msgstr "Установить склад доставки" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50095,7 +50058,7 @@ msgstr "Задать именование пакета серий и парти #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50113,7 +50076,7 @@ msgstr "Поставщик комплекта" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50139,7 +50102,7 @@ msgstr "Установить как \"Закрыт\"" msgid "Set as Completed" msgstr "Установить как \"Завершен\"" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Установить как \"Потерянный\"" @@ -50237,15 +50200,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Установить {0} в категории активов {1} для компании {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Установите {0} в категории активов {1} или компании {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Установить {0} в компании {1}" @@ -50313,7 +50276,7 @@ msgid "Setting up company" msgstr "Настройка компании" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "Требуется настройка {0}" @@ -50741,6 +50704,7 @@ msgid "Show Completed" msgstr "Показать завершенные" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "Показывать Кредит/Дебет в валюте компании" @@ -50943,7 +50907,7 @@ msgstr "Показать только ближайший предстоящий msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Показать записи, находящиеся в ожидании" @@ -51048,11 +51012,11 @@ msgstr "Простая формула Python, применяемая к поля msgid "Simultaneous" msgstr "Одновременный" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "Поскольку в этой категории имеются активные амортизируемые активы, необходимы следующие счета.

                    " -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Поскольку потери в процессе производства составляют {0} единиц для готового товара {1}, вам следует уменьшить количество на {0} единиц для готового товара {1} в таблице товаров." @@ -51113,7 +51077,7 @@ msgstr "Пропустить передачу материалов в незав msgid "Skip Material Transfer to WIP Warehouse" msgstr "Пропустить передачу материалов на склад незавершенного производства" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "Пропущено {0} DocType(s):
                    {1}" @@ -51169,8 +51133,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "Отсутствуют некоторые обязательные данные о компании. У вас нет прав на их обновление. Обратитесь к своему системному администратору." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Что-то пошло не так, попробуйте еще раз" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51237,7 +51201,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51274,8 +51238,8 @@ msgstr "Исходный тип" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51405,7 +51369,7 @@ msgstr "Сплит-выпуск" msgid "Split Qty" msgstr "Разделить количество" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "Разделенное количество должно быть меньше количества актива" @@ -51418,7 +51382,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Разделение {0} {1} на {2} строк в соответствии с Условиями оплаты" @@ -51471,7 +51440,7 @@ msgstr "Название этапа" msgid "Stale Days" msgstr "Дни простоя" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Дни простоя должны начинаться с 1." @@ -51536,10 +51505,26 @@ msgstr "Стандартный налоговый шаблон, который msgid "Standing Name" msgstr "Постоянное имя" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Начать / Возобновить" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Дата начала не может быть раньше текущей даты" @@ -51569,7 +51554,7 @@ msgstr "Время начала не может быть больше или р msgid "Start Timer" msgstr "Запустить таймер" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51598,10 +51583,14 @@ msgstr "Дата начала должна быть раньше даты око msgid "Start date should be less than end date for task {0}" msgstr "Дата начала задачи {0} должна быть меньше даты завершения" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "Запущено фоновое задание по созданию {1} {0}. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51682,7 +51671,7 @@ msgstr "Иллюстрация состояния" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Статус должен быть отменен или завершен" @@ -51810,8 +51799,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "Запись о закрытии торгов {0} уже существует для выбранного диапазона дат" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "Запись о закрытии торгов {0} поставлена в очередь на обработку, системе потребуется некоторое время для ее завершения." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51892,17 +51881,21 @@ msgstr "Позиция ввода запаса" msgid "Stock Entry Type" msgstr "Тип складской записи" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Запись о запасе уже создана для этого списка выбора" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Создана складская запись {0}" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Запись по запасам {0} была создана" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52068,7 +52061,7 @@ msgstr "Прогнозируемое количество запасов" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52151,7 +52144,7 @@ msgstr "Настройки пересоздания записей по запа #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52176,15 +52169,15 @@ msgstr "Резервирование запасов" msgid "Stock Reservation Entries Cancelled" msgstr "Записи о резервировании запасов отменены" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Записи о резервировании запасов созданы" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "Записи о резервировании запасов созданы" @@ -52354,7 +52347,7 @@ msgstr "Транзакции запасов" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52513,9 +52506,9 @@ msgstr "Запас не зарезервирован для выполнения msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "Нет запаса товара {0} на складе {1}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "Количество на складе недостаточно для Код товара: {0} на складе {1}. Доступное количество {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52533,7 +52526,7 @@ msgstr "Операции с запасами, выполненные более msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "Запас будет зарезервирован при предъявлении товарного чека, созданного по запросу на материалы для заказа на продажу." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "Запасы/счета не могут быть заморожены, так как идет обработка записей прошлого периода. Пожалуйста, попробуйте еще раз позже." @@ -52548,7 +52541,7 @@ msgstr "Камень" msgid "Stop Reason" msgstr "Остановить причину" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Прекращенный рабочий заказ не может быть отменен, отмените его сначала, чтобы отменить" @@ -52556,7 +52549,7 @@ msgstr "Прекращенный рабочий заказ не может бы #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Магазины" @@ -52770,7 +52763,7 @@ msgstr "Коэффициент перевода субподряда" msgid "Subcontracting Delivery" msgstr "Субподрядная поставка" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52842,7 +52835,7 @@ msgstr "Субподрядная услуга по внутреннему зак #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52880,7 +52873,7 @@ msgstr "Пункт обслуживания заказа на субподряд msgid "Subcontracting Order Supplied Item" msgstr "Поставляемая позиция по субподрядному заказу" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Заказ на субподряд {0} создан." @@ -52954,7 +52947,7 @@ msgstr "Возврат субподряда" msgid "Subcontracting Sales Order" msgstr "Субподрядный заказ на продажу" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52973,7 +52966,7 @@ msgstr "" msgid "Subdivision" msgstr "Подразделение" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Не удалось выполнить действие" @@ -53002,7 +52995,7 @@ msgstr "Утвердите этот рабочий заказ для дальн msgid "Submit your Quotation" msgstr "Отправьте свое предложение" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53144,7 +53137,7 @@ msgstr "Параметры успешного выполнения" msgid "Successful" msgstr "Успешный" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Успешно согласовано" @@ -53322,7 +53315,7 @@ msgstr "Поставляемое кол-во" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53504,7 +53497,7 @@ msgstr "Дата выставления счета поставщиком" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Поставщик Счет №" @@ -53652,7 +53645,7 @@ msgstr "Сравнение предложений поставщиков" msgid "Supplier Quotation Item" msgstr "Продукт Предложения Поставщика" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Предложение поставщика {0} создано" @@ -53837,10 +53830,6 @@ msgstr "Отдел тех. поддержки" msgid "Support Tickets" msgstr "Заявки на поддержку" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "Предполагаемая сумма скидки" @@ -53926,7 +53915,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "Сводка расчетов TDS" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "TDS вычтен" @@ -53987,8 +53976,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "Плановый актив {0} не принадлежит компании {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "Плановый актив {0} должен быть составным активом" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54097,11 +54086,11 @@ msgstr "Ссылка на адрес склада назначения" msgid "Target Warehouse Reservation Error" msgstr "Ошибка резервирования целевого склада" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "Целевой склад для готовой продукции должен совпадать со складом готовой продукции {1} в заказе на работу {2}, связанном с субподрядным внутренним заказом." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "Целевой склад для готовой продукции должен совпадать со складом готовой продукции {0} в заказе на работу {1}, связанном с субподрядным внутренним заказом." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "Необходим указать склад назначения перед отправкой" @@ -54576,7 +54565,7 @@ msgstr "Налог удерживается только с суммы, прев #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Налогооблагаемая сумма" @@ -54788,7 +54777,7 @@ msgstr "Телевидение" msgid "Template Item" msgstr "Элемент шаблона" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Выбран шаблон товара" @@ -55095,23 +55084,27 @@ msgstr "Тесла" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "Текст, отображаемый в финансовом отчете (например, «Общий доход», «Денежные средства и их эквиваленты»)" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "«Из пакета №» поле не должно быть пустым или его значение меньше 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "Доступ к запросу коммерческого предложения с портала отключен. Чтобы разрешить доступ, включите его в настройках портала." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "Спецификация, которая будет заменена" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "В партии {0} отрицательное количество партии {1}. Чтобы исправить это, перейдите к партии и нажмите «Пересчитать количество партии». Если проблема не устранена, создайте входящую запись." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "Кампания '{0}' уже существует для {1} '{2}'" @@ -55136,6 +55129,10 @@ msgstr "Записи в главной книге учета и остатки msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Записи в главной книге учета будут отменены в фоновом режиме, это может занять несколько минут." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Программа лояльности не действительна для выбранной компании" @@ -55153,9 +55150,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "Список выбора, имеющий записи резервирования запасов, не может быть обновлен. Если вам необходимо внести изменения, мы рекомендуем отменить существующие записи резервирования запасов перед обновлением списка выбора." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "Количество потерь в процессе было сброшено в соответствии с количеством потерь в карточках рабочих заданий" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55165,11 +55165,15 @@ msgstr "Продавец связан с {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Серийный номер в строке #{0}: {1} отсутствует на складе {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Серийный номер {0} зарезервирован для {1} {2} и не может быть использован для какой-либо другой транзакции." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Набор серийных номеров и партий {0} недействителен для этой операции. Тип операции должен быть \"Исходящий\" вместо \"Входящий\" в наборе серийных номеров и партий {0}" @@ -55217,15 +55221,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "Выполненное количество {0} операции {1} не может быть больше, чем выполненное количество {2} предыдущей операции {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "Валюта счета {} ({}) отличается от валюты этого уведомления о задолженности ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "Текущая запись об открытии POS-терминала устарела. Закройте её и создайте новую." @@ -55274,6 +55278,10 @@ msgstr "Поле «Акционеру» не может быть пустым" msgid "The field {0} in row {1} is not set" msgstr "Поле {0} в строке {1} не задано" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Поля от Акционера и Акционера не могут быть пустыми" @@ -55295,9 +55303,9 @@ msgstr "Для обеспечения согласованности со ста msgid "The folio numbers are not matching" msgstr "Номера фолио не совпадают" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "Следующие товары, для которых установлены правила размещения на складе, не могут быть размещены:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55324,8 +55332,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Следующие сотрудники в настоящее время все еще подчиняются {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "Следующие недействительные правила ценообразования были удалены:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55336,7 +55344,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "Следующие строки являются дубликатами:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Были созданы следующие {0}: {1}" @@ -55372,8 +55380,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "Предметы {items} не отмечены как предметы {type_of} . Вы можете включить их как предметы {type_of} в их мастер-классах." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "Карточка задания {0} находится в состоянии {1}, и вы не можете ее завершить." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55410,12 +55418,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "Операция {0} не может быть добавлена несколько раз" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "Операция {0} не может быть подоперацией" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55463,6 +55471,10 @@ msgstr "Допустимый процент превышения количес msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "Допустимый процент превышения количества передаваемых товаров относительно заказанного количества. Например, если заказано 100 единиц, и допуск составляет 10%, то можно передать до 110 единиц." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55472,7 +55484,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "Обновление товаров приведет к освобождению резервированного запаса. Вы точно хотите продолжить?" @@ -55489,8 +55501,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Выбранные спецификации не для одного продукта" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Выбранный аккаунт изменения {} не принадлежит Компании {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55506,8 +55518,8 @@ msgstr "Продавец и покупатель не могут быть оди #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "Серийный и пакетный пакет {0} не связан с {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55525,11 +55537,11 @@ msgstr "Акции уже существуют" msgid "The shares don't exist with the {0}" msgstr "Акций не существует с {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "Запас товара {0} на складе {1} был отрицательным на {2}. Вам нужно создать положительную запись {3} до даты {4} и времени {5}, чтобы корректно зафиксировать стоимость. Для получения подробной информации, пожалуйста, прочитайте документацию." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Запас товара {0} РЅР° складе {1} был отрицательным РЅР° {2}. Вам РЅСѓР¶РЅРѕ создать положительную запись {3} РґРѕ даты {4} Рё времени {5}, чтобы корректно зафиксировать стоимость. Для получения РїРѕРґСЂРѕР±РЅРѕР№ информации, пожалуйста, прочитайте документацию." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "Запасы зарезервированы для следующих товаров и складов, снимите резерв с {0} сверки запасов:

                    {1}" @@ -55551,17 +55563,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "Система создаст счёт на продажу или счёт точки продаж через интерфейс точки продаж в зависимости от этой настройки. Для транзакций с большим объёмом рекомендуется использовать счёт точки продаж." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "Задача была поставлена в качестве фонового задания. В случае возникновения каких-либо проблем с обработкой в фоновом режиме система добавит комментарий об ошибке в этой сверке запасов и вернется к этапу черновика" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "Задача поставлена в очередь как фоновое задание. В случае возникновения проблем при обработке в фоновом режиме система добавит комментарий об ошибке в этой сверке запасов и вернется к этапу «Отправлено»" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "Общее количество выпуска/передачи {0} в запросе на материалы {1} не может быть больше, чем допустимое запрошенное количество {2} для товара {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55599,7 +55611,7 @@ msgstr "Пользователи с этой ролью могут создав msgid "The value of {0} differs between Items {1} and {2}" msgstr "Значение {0} различается между элементами {1} и {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "Значение {0} уже присвоено существующему элементу {1}." @@ -55623,7 +55635,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) должен быть равен {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0} Содержит товары с ценой за единицу." @@ -55631,7 +55643,7 @@ msgstr "{0} Содержит товары с ценой за единицу." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "Префикс {0} '{1}' уже существует. Пожалуйста, измените серию серийного номера, иначе Вы получите ошибку Duplicate Entry." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} успешно созданы" @@ -55639,6 +55651,10 @@ msgstr "{0} {1} успешно созданы" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0} {1} не соответствует {0} {2} в {3} {4}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} используется для расчета оценочной стоимости готовой продукции {2}." @@ -55647,7 +55663,7 @@ msgstr "{0} {1} используется для расчета оценочно msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "Затем правила ценообразования фильтруются по Клиенту, Группе клиентов, Территории, Поставщику, Типу поставщика, Кампании, Партнеру по продажам и т. д." -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Активно проводится техническое обслуживание или ремонт актива. Вы должны выполнить их все, прежде чем аннулировать актив." @@ -55659,7 +55675,7 @@ msgstr "Существуют несоответствия между ставк msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "Есть записи в бухгалтерской книге по этому счету. Изменение {0} на не-{1} в реальной системе приведет к неправильному выводу в отчете «Счета {2}»" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "Нет неудачных транзакций" @@ -55676,6 +55692,10 @@ msgstr "Нет активных финансовых лет, для которы msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "Нет доступных слотов на эту дату" @@ -55692,10 +55712,6 @@ msgstr "Существует РґРІР° варРmsgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "Для выбранного товара нет вариантов" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Коэффициент накопления может быть разным, в зависимости от общей суммы расходов. Но коэффициент конвертации для погашения всегда будет одинаковым для всех уровней." @@ -55724,21 +55740,21 @@ msgstr "Не найдено ни одной партии для {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "В этой записи о движении товаров должно быть хотя бы одно готовое изделие" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Произошла ошибка при создании банковского счета при подключении к Plaid." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "Произошла ошибка синхронизации транзакций." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Произошла ошибка обновления банковского счета {} при подключении к Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55788,15 +55804,19 @@ msgstr "Резюме этого месяца" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "Данный заказ на поставку был полностью передан субподрядчику." -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "Данный заказ на продажу был полностью передан субподрядчику." @@ -55818,7 +55838,7 @@ msgstr "Это действие приведет к удалению этой у msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "Эта категория активов отмечена как не амортизируемая. Отключите расчёт амортизации или выберите другую категорию." @@ -55836,7 +55856,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "Это охватывает все оценочные карточки, привязанные к этой настройке" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Этот документ находится над пределом {0} {1} для элемента {4}. Вы делаете другой {3} против того же {2}?" @@ -55978,7 +55998,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "Этот фильтр товаров уже был применен для {0}" @@ -56042,7 +56062,7 @@ msgstr "Этот график был создан, когда Актив {0} б msgid "This schedule was created when Asset {0} was scrapped." msgstr "Этот график был создан, когда Актив {0} был списан." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "Этот график был создан, когда Актив {0} был {1} в новый Актив {2}." @@ -56069,10 +56089,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "В данном разделе можно задать текст тела и заключения письма о задолженности для выбранного типа уведомления о задолженности на определенном языке, который будет использоваться в печатной форме." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56130,8 +56150,8 @@ msgid "This will restrict user access to other employee records" msgstr "Это ограничит доступ пользователя к записям других сотрудников" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "Это {} будет рассматриваться как передача материала." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56259,6 +56279,12 @@ msgstr "Время (в мин)" msgid "Timeline" msgstr "Временная шкала" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56545,8 +56571,8 @@ msgid "To Time" msgstr "До" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "Время \"до\" не может быть раньше времени \"с\"" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56576,15 +56602,15 @@ msgstr "Чтобы добавить операции, поставьте гал msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Для добавления сырья по субподрядным товарам, если отключен параметр \"Включать развернутые товары\"." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Чтобы разрешить чрезмерную оплату, обновите «Разрешение на чрезмерную оплату» в настройках учетных записей или элемента." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Чтобы разрешить перерасход / доставку, обновите параметр «Сверх квитанция / доставка» в настройках запаса или позиции." @@ -56601,8 +56627,8 @@ msgid "To be Delivered to Customer" msgstr "Подлежит доставке клиенту" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "Чтобы отменить {}, необходимо сначала отменить запись закрытия точки продаж {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56613,8 +56639,8 @@ msgid "To create a Payment Request reference document is required" msgstr "Для создания ссылочного документа запроса платежа требуется" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Чтобы включить учет незавершенного капитального строительства," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56626,8 +56652,8 @@ msgstr "Для того чтобы добавить товары, не учит msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Для учета налога в строке {0} в размере Item, налоги в строках должны быть также включены {1}" @@ -56647,7 +56673,7 @@ msgstr "Чтобы отменить это, включите '{0}' в компа msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Чтобы продолжить редактирование этого значения атрибута, включите {0} в настройках варианта элемента." @@ -56664,10 +56690,12 @@ msgstr "Чтобы отправить счет без чека о покупке msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Чтобы использовать другую финансовую книгу, снимите галочку с параметра \"Включать активы по умолчанию для финансовой книги\"" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Чтобы использовать другую финансовую книгу, снимите галочку с параметра \"Включать записи по умолчанию для финансовой книги\"" @@ -56746,8 +56774,8 @@ msgstr "Торр" msgid "Total (Company Currency)" msgstr "Всего (валюта компании)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Итого (кредит)" @@ -56789,6 +56817,22 @@ msgstr "Общие дополнительные затраты" msgid "Total Advance" msgstr "Всего аванса" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56836,11 +56880,11 @@ msgstr "Общая сумма к оплате" msgid "Total Amount in Words" msgstr "Общая сумма прописью" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Всего Применимые сборы в таблице Purchase квитанций Элементов должны быть такими же, как все налоги и сборы" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Всего активов" @@ -57022,7 +57066,7 @@ msgstr "Общая доставленная сумма" msgid "Total Demand (Past Data)" msgstr "Общий спрос (прошлые данные)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "Общий собственный капитал" @@ -57031,11 +57075,11 @@ msgstr "Общий собственный капитал" msgid "Total Estimated Distance" msgstr "Общее расчетное расстояние" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Всего расходов" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Всего расходов в этом году" @@ -57073,11 +57117,11 @@ msgstr "Общее время удержания" msgid "Total Holidays" msgstr "Всего праздников" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Суммарный доход" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Общий доход в этом году" @@ -57120,7 +57164,7 @@ msgstr "Общие дополнительные расходы (валюта к msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "Общая сумма обязательств" @@ -57435,7 +57479,7 @@ msgstr "Всего налогов и сборов" msgid "Total Taxes and Charges (Company Currency)" msgstr "Общая сумма налогов и сборов (валюта компании)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Общее время (в минутах)" @@ -57444,7 +57488,11 @@ msgstr "Общее время (в минутах)" msgid "Total Time in Mins" msgstr "Общее время в минутах" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Общая сумма невыплаченных: {0}" @@ -57523,7 +57571,7 @@ msgstr "Общее время рабочего места (в часах)" msgid "Total allocated percentage for sales team should be 100" msgstr "Всего выделено процент для отдела продаж должен быть 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Общий процент взносов должен быть равен 100" @@ -57541,8 +57589,8 @@ msgstr "Всего часов: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Общая сумма платежей не может быть больше {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57559,9 +57607,9 @@ msgstr "Общее количество в графике отгрузки не msgid "Total {0} ({1})" msgstr "Общая {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Всего {0} для всех элементов равно нулю, может быть, вы должны изменить «Распределить плату на основе»" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57649,27 +57697,11 @@ msgstr "Информация о статусе отслеживания" msgid "Tracking URL" msgstr "URL отслеживания" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Транзакция" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "Валюта транзакции" @@ -57722,11 +57754,11 @@ msgstr "Элемент записи удаления транзакции" msgid "Transaction Deletion Record To Delete" msgstr "Запись удаления транзакции" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "Запись удаления транзакции {0} уже выполняется. {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "Запись удаления транзакции {0} в настоящее время удаляет {1}. Невозможно сохранить документы до завершения процесса." @@ -58116,6 +58148,10 @@ msgstr "Пробный баланс (простой)" msgid "Trial Balance for Party" msgstr "Пробный баланс для партии" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58300,7 +58336,7 @@ msgstr "Настройки НДС в ОАЭ" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58322,7 +58358,7 @@ msgstr "Настройки НДС в ОАЭ" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58352,7 +58388,7 @@ msgstr "Настройки НДС в ОАЭ" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58416,7 +58452,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Коэффициент пересчета единицы измерения" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Коэффициент преобразования UOM ({0} -> {1}) не найден для элемента: {2}" @@ -58490,7 +58526,7 @@ msgstr "Отмена согласования" msgid "UnReconcile Allocations" msgstr "Несогласованные распределения" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "Не удалось получить детали DocType. Пожалуйста, свяжитесь с системным администратором." @@ -58503,10 +58539,6 @@ msgstr "Невозможно найти обменный курс {0} до {1} msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Не удалось найти курс для {0} к {1} на дату {2}. Пожалуйста, создайте запись обменного курса вручную." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Не удалось найти результат, начинающийся с {0}. Вы должны иметь постоянные баллы, покрывающие 0 до 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "Не удалось найти временной интервал в ближайшие {0} дней для операции {1}. Пожалуйста, увеличьте «Планирование мощности на (дней)» в {2}." @@ -58531,7 +58563,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Нераспределенная сумма" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Нераспределенное количество" @@ -58543,8 +58575,10 @@ msgstr "Заказы без выставленных счетов" msgid "Unblock Invoice" msgstr "Разблокировать счет" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58594,7 +58628,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "Непредвиденный шаблон именования серий" @@ -58617,7 +58651,7 @@ msgstr "" msgid "Unit Price" msgstr "Цена за единицу товара" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Единица измерения" @@ -58820,7 +58854,7 @@ msgstr "Незапланированный" msgid "Unsecured Loans" msgstr "Необеспеченных кредитов" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "Отменить привязку платежной записи и запроса на оплату" @@ -58833,7 +58867,7 @@ msgstr "Неподписанный" msgid "Unsubscribe from this Email Digest" msgstr "Отписаться от этого дайджеста электронной почты" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58977,7 +59011,7 @@ msgstr "Обновить текущий запас" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59041,7 +59075,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "Обновить актуальную цену во всех спецификациях" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "Для счета-фактуры на покупку необходимо включить обновление запасов {0}" @@ -59269,7 +59303,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "Использовать обменный курс на дату транзакции" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Используйте название, которое отличается от предыдущего названия проекта" @@ -59358,6 +59392,10 @@ msgstr "Время решения задачи пользователем" msgid "User has not applied rule on the invoice {0}" msgstr "Пользователь не применил правило к счету {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Пользователь {0} не существует" @@ -59370,6 +59408,10 @@ msgstr "Пользователь {0} не имеет профиля точки msgid "User {0} is already assigned to Employee {1}" msgstr "Пользователь {0} уже назначен сотрудником {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Пользователь {0}: Удалена роль \"Самообслуживание сотрудника\", так как не найден соответствующий сотрудник." @@ -59378,10 +59420,6 @@ msgstr "Пользователь {0}: Удалена роль \"Самообсл msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Пользователь {0}: Удалена роль сотрудника, поскольку сопоставленного сотрудника нет." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Пользователь {} отключен. Выберите действующего пользователя / кассира" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59674,15 +59712,15 @@ msgstr "Ставка оценки" msgid "Valuation Rate (In / Out)" msgstr "Оценочная стоимость (при поступлении/отгрузке)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Оценка ставки отсутствует" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Курс оценки для Предмета {0}, необходим для ведения бухгалтерских записей для {1} {2}." @@ -59690,7 +59728,7 @@ msgstr "Курс оценки для Предмета {0}, необходим д msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Ставка оценки является обязательной, если введен начальный запас" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Коэффициент оценки требуется для позиции {0} в строке {1}" @@ -59700,7 +59738,7 @@ msgstr "Коэффициент оценки требуется для позиц msgid "Valuation and Total" msgstr "Оценка и итог" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "Оценочная стоимость для товаров, предоставленных клиентами, установлена на уровне нуля." @@ -59713,14 +59751,14 @@ msgstr "Оценочная стоимость для товаров, предо msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Оценочная стоимость товара согласно счету-фактуре (только для внутренних переводов)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Плата за тип оценки не может быть помечена как «Включая»" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Обвинения типа Оценка не может отмечен как включено" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59770,12 +59808,12 @@ msgstr "Ценностное предложение" msgid "Value Type" msgstr "Тип значения" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "Значение на момент" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Значение атрибута {0} должно быть в диапазоне от {1} до {2} в приращений {3} для п {4}" @@ -59784,19 +59822,19 @@ msgstr "Значение атрибута {0} должно быть в диап msgid "Value of Goods" msgstr "Стоимость товаров" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Стоимость нового капитализированного актива" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Стоимость новой покупки" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Стоимость списанного актива" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Стоимость проданного актива" @@ -60272,7 +60310,7 @@ msgstr "Наименование документа" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60300,7 +60338,7 @@ msgstr "Наименование документа" msgid "Voucher No" msgstr "Ваучер №" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Необходим номер документа" @@ -60312,7 +60350,7 @@ msgstr "Количество по документу" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Подтип документа" @@ -60344,7 +60382,7 @@ msgstr "Подтип документа" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60551,7 +60589,7 @@ msgstr "Склад является обязательным" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Склад не найден для учетной записи {0}" @@ -60569,16 +60607,16 @@ msgstr "Складские товары Элемент Баланс Возрас msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Склад {0} не может быть удален как существует количество для Пункт {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Склад {0} не принадлежит компании {1}." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Склад {0} не принадлежит компания {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "Склад {0} не существует" @@ -60699,7 +60737,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Предупреждение — Строка {0}: Количество часов для выставления счета больше фактически затраченных часов" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "Предупреждение об отрицательном запасе" @@ -60719,7 +60757,7 @@ msgstr "Внимание: Еще {0} # {1} существует против в msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Внимание: Кол-во в запросе на материалы меньше минимального количества для заказа" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "Внимание: количество превышает максимальное количество, которое может быть произведено на основе количества сырья, полученного по внутреннему субподрядному заказу {0}." @@ -60873,10 +60911,6 @@ msgstr "Продуктовая группа на сайте" msgid "Website Specifications" msgstr "Технические характеристики вебсайта" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61022,7 +61056,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61198,17 +61232,17 @@ msgstr "Незавершенная работа" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61247,7 +61281,7 @@ msgstr "Использованные материалы по заказу на msgid "Work Order Item" msgstr "Продукт под заказ" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61288,20 +61322,20 @@ msgstr "Сводка заказа на работу" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Заказ на работу не может быть создан по следующей причине:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Рабочий ордер не может быть поднят против шаблона предмета" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "Рабочий заказ был {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61322,7 +61356,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Заказы на работу" @@ -61347,7 +61381,7 @@ msgstr "Незавершенное производство" msgid "Work-in-Progress Warehouse" msgstr "Склад незавершенного производства" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Перед утверждением требуется склад незавершенного производства" @@ -61400,7 +61434,7 @@ msgstr "Часы работы" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61632,14 +61666,6 @@ msgstr "Название года" msgid "Year Start Date" msgstr "Дата начала года" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61654,8 +61680,8 @@ msgid "You are importing data for the code list:" msgstr "Вы импортируете данные для списка кодов:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Вам не разрешено обновлять в соответствии с условиями, установленными в рабочем процессе {}." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61674,8 +61700,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "Вы отбираете товар {0} в количестве, превышающем потребность. Убедитесь, что для заказа на продажу {1} не создан другой список отбора." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "Для продолжения вы можете добавить исходный счет-фактуру {} вручную." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61685,19 +61711,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "Вы также можете скопировать и вставить эту ссылку в свой браузер" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Вы также можете установить учетную запись CWIP по умолчанию в Company {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Вы можете изменить родительский счет на счет баланса или выбрать другой счет." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "Вы можете либо настроить счета амортизации по умолчанию в разделе «Компания», либо указать необходимые счета в следующих строках:

                    " @@ -61719,8 +61741,8 @@ msgid "You can only select one mode of payment as default" msgstr "Вы можете выбрать только один способ оплаты по умолчанию" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Вы можете использовать до {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61738,14 +61760,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "Вы можете использовать {0} для сверки с {1} позже." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "Вы не можете вносить изменения в Карту работы, поскольку Заказ на работу закрыт." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "Вы не можете обработать серийный номер {0}, так как он уже использовался в SABB {1}. {2} Если вы хотите ввести один и тот же серийный номер несколько раз, включите «Разрешить повторное изготовление/получение существующего серийного номера» в {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "Вы не можете использовать баллы лояльности, стоимость которых превышает общую сумму." @@ -61754,17 +61768,17 @@ msgstr "Вы не можете использовать баллы лояльн msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "Ставка не может быть изменена, если для товара задана спецификация." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "Вы не можете создать {0} в течение закрытого отчетного периода {1}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Вы не можете создавать или отменять какие-либо бухгалтерские записи в закрытом отчетном периоде {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "Создание и изменение бухгалтерских записей невозможно до указанной даты." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61775,32 +61789,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "Вы не можете удалить проект типа \"Внешний\"" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Вы не можете редактировать корневой узел." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "Вы не можете включить обе настройки «{0}» и «{1}»." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "Вы не можете отправлять товары, следующие за {0} поскольку они либо доставлены, либо неактивны, либо находятся на другом складе." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "Вы не можете обменять более {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "Невозможно повторно провести оценку стоимости товара до {}" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "Вы не можете перезапустить подписку, которая не отменена." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Вы не можете отправить пустой заказ." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61814,6 +61836,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "Вы не можете {0} этот документ, так как есть другая запись о закрытии периода {1}, созданная после {2}" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61824,8 +61850,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "У вас нет разрешений на {} элементов в {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61851,11 +61877,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "При создании начальных счетов у вас было {} ошибок. Проверьте {} для получения дополнительной информации" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Вы уже выбрали продукты из {0} {1}" @@ -61872,8 +61898,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "Вы включили {0} и {1} в {2}. Это может привести к тому, что цены из прайс-листа по умолчанию будут вставлены в прайс-лист транзакции." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "Вы ввели дубликат транспортной накладной в строке" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61887,19 +61913,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Вы должны включить автоматический повторный заказ в настройках запаса, чтобы поддерживать уровни повторного заказа." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "У вас есть несохранённые изменения. Хотите сохранить счёт?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Перед добавлением товара необходимо выбрать клиента." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "Чтобы отменить этот документ, необходимо сначала отменить запись закрытия точки продаж {}." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "Вы выбрали группу счетов {1} как счет {2} в строке {0}. Пожалуйста, выберите один счет." @@ -61951,6 +61977,10 @@ msgstr "Почтовый индекс" msgid "Zero Balance" msgstr "Нулевой баланс" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "Нулевая ставка" @@ -61981,7 +62011,7 @@ msgstr "[Важно] [ERPNext] Ошибки автоматического из msgid "`Allow Negative rates for Items`" msgstr "Разрешить отрицательные ставки для товаров" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "после" @@ -62001,7 +62031,7 @@ msgstr "как заголовок" msgid "as a percentage of finished item quantity" msgstr "в процентах от количества готовой продукции" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "по состоянию на {0}" @@ -62017,10 +62047,6 @@ msgstr "основанный_на" msgid "by {}" msgstr "к {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "не может быть больше 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62075,8 +62101,8 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "имя поля" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62156,14 +62182,10 @@ msgstr "из 5" msgid "paid to" msgstr "оплачено" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "платежное приложение не установлено. Пожалуйста, установите его с {0} или {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "платежное приложение не установлено. Пожалуйста, установите его из {} или {}" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62177,7 +62199,7 @@ msgstr "платежное приложение не установлено. П msgid "per hour" msgstr "в час" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "выполняя одно из следующих действий:" @@ -62253,8 +62275,8 @@ msgstr "продан" msgid "subscription is already cancelled." msgstr "подписка уже отменена." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "поле ссылки на объект" @@ -62317,10 +62339,6 @@ msgstr "Через ремонт активов" msgid "via BOM Update Tool" msgstr "через инструмент обновления спецификации" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "необходимо выбрать счет «Капитальное незавершенное производство» в таблице счетов" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' отключен" @@ -62333,7 +62351,7 @@ msgstr "{0} '{1}' не в {2} Финансовом году" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) не может быть больше запланированного количества ({2}) в рабочем порядке {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} отправил(а) Активы. Удалите элемент {2} из таблицы, чтобы продолжить." @@ -62353,7 +62371,7 @@ msgstr "{0} Бюджет для счёта {1} по сравнению с {2} {3 msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "{0} Бюджет для счёта {1} по сравнению с {2} {3} составляет {4}. Он будет превышен на {5}." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "Использован {0} купон: {1}. Допустимое количество исчерпано" @@ -62361,11 +62379,6 @@ msgstr "Использован {0} купон: {1}. Допустимое кол msgid "{0} Digest" msgstr "{0} Дайджест" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Номер {1} уже используется в {2} {3}" @@ -62447,10 +62460,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "{0} не может быть отрицательным" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} Нельзя изменить при открытых начальных записях." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} не может использоваться как основной центр затрат, поскольку он используется как дочерний в распределении центров затрат {1}" @@ -62466,7 +62487,7 @@ msgstr "{0} не может быть нулем" msgid "{0} created" msgstr "{0} создано" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "Создание {0} для следующих записей будет пропущено." @@ -62508,7 +62529,7 @@ msgstr "{0} для {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "Для {0} включено распределение на основе условий платежа. Выберите условие платежа для строки # {1} в разделе «Ссылки на платежи»" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "{0} был изменён после того, как вы его перетащили. Пожалуйста, перетащите его ещё раз." @@ -62516,6 +62537,10 @@ msgstr "{0} был изменён после того, как вы его пер msgid "{0} has been submitted successfully" msgstr "{0} успешно отправлен" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} часов" @@ -62524,7 +62549,11 @@ msgstr "{0} часов" msgid "{0} in row {1}" msgstr "{0} в строке {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} — это дочерняя таблица, и она будет автоматически удалена вместе со своей родительской таблицей" @@ -62538,7 +62567,7 @@ msgstr "{0} — обязательный параметр учета.
                    Уст msgid "{0} is added multiple times on rows: {1}" msgstr "{0} добавлено несколько раз в строки: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} уже запущено для {1}" @@ -62546,7 +62575,7 @@ msgstr "{0} уже запущено для {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} заблокирован, поэтому эта транзакция не может быть продолжена" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} находится в стадии черновика. Отправьте его перед созданием актива." @@ -62559,11 +62588,11 @@ msgstr "{0} является обязательным для продукта {1 msgid "{0} is mandatory for account {1}" msgstr "{0} обязательно для счета {1}" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} является обязательным. Возможно, запись обмена валют не создана для {1} - {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} является обязательным. Может быть, запись Обмен валюты не создана для {1} по {2}." @@ -62571,7 +62600,7 @@ msgstr "{0} является обязательным. Может быть, за msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} не является банковским счетом компании" @@ -62587,7 +62616,7 @@ msgstr "{0} нескладируемый продукт" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} не является допустимым значением для атрибута {1} элемента {2}." @@ -62603,17 +62632,17 @@ msgstr "{0} не добавлен в таблицу" msgid "{0} is not enabled in {1}" msgstr "{0} не включен в {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} не запущен. Невозможно запустить события для этого документа" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} не является поставщиком по умолчанию для любых товаров." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} выполняется до {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62663,7 +62692,7 @@ msgstr "Недопустимый параметр {0}" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} записи оплаты не могут быть отфильтрованы по {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "{0} количество товара {1} поступает на склад {2} вместимостью {3}." @@ -62676,7 +62705,7 @@ msgstr "{0} до {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} единиц зарезервировано для товара {1} на складе {2}, пожалуйста, снимите резервирование с {3} для сверки запасов." @@ -62692,16 +62721,16 @@ msgstr "{0} единиц товара {1} нет в наличии ни на о msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} Единицы {1} требуются на {2} с размером запаса: {3} на {4} {5} для {6} чтобы завершить операцию." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} единиц {1} требуется в {2} на {3} {4} для {5} чтобы завершить эту транзакцию." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} единиц {1} требуется в {2} на {3} {4} для чтобы завершить эту транзакцию." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} единиц {1} необходимо в {2} для завершения этой транзакции." @@ -62709,7 +62738,7 @@ msgstr "{0} единиц {1} необходимо в {2} для завершен msgid "{0} until {1}" msgstr "{0} до {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} действительные серийные номера для продукта {1}" @@ -62717,7 +62746,7 @@ msgstr "{0} действительные серийные номера для п msgid "{0} variants created." msgstr "Созданы варианты {0}." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "Представление {0} в настоящее время не поддерживается в пользовательском финансовом отчете." @@ -62751,7 +62780,7 @@ msgstr "{0} {1} создано" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} не существует" @@ -62785,12 +62814,21 @@ msgstr "{0} {1} распределено дважды в этой банковс msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} Уже связан с общим кодом {2}." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} связано с {2}, но с учетной записью Party {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} отменено или закрыто" @@ -62822,6 +62860,10 @@ msgstr "{0} {1} полностью выставлен" msgid "{0} {1} is not active" msgstr "{0} {1} не активен" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} не связано с {2} {3}" @@ -62927,27 +62969,23 @@ msgstr "{0}% от общей стоимости счета будет предо msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{0}' {1} не может быть после {2} 'Ожидаемой даты окончания." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, завершите операцию {1} перед операцией {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: Дочерняя таблица (автоматически удаляется вместе с родительской)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0} Не найдено" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: Защищенный DocType" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: Виртуальный DocType (нет таблицы в базе данных)" @@ -62963,7 +63001,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "{0}: {1} — групповая учетная запись." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} должно быть меньше {2}" @@ -62975,7 +63013,7 @@ msgstr "Создано {count} ОС для {item_code}" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} отменено или закрыто." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "Размер выборки {item_name}({sample_size}) не может быть больше, чем допустимое количество ({accepted_quantity})" @@ -62987,32 +63025,7 @@ msgstr "{ref_doctype} {ref_name} статус — {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} не может быть отменен, так как заработанные баллы лояльности были погашены. Сначала отмените {} № {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} отправил связанные с ним активы. Вам необходимо отменить активы, чтобы создать возврат покупки." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} счета" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} является дочерней компанией." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} уже связан с другим {}" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} уже связан с {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} не влияет на банковский счет {}" - diff --git a/erpnext/locale/sl.po b/erpnext/locale/sl.po index 435ce599d6f..687402239d5 100644 --- a/erpnext/locale/sl.po +++ b/erpnext/locale/sl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-24 19:23\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Slovenian\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: sl_SI\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "»Je Osnovno Sredstvo« ni mogoče odznačiti, ker za element obstaja za msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" za \"SN-01\" do \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Na Zalogi" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Zahtevani Artikli" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "»Dovoli več Prodajnih Naročil za Kupolno Naročilo Stranke«" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Na podlagi' in 'Po skupini' ne moreta biti enaka" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "\"Od Datuma\" mora biti za \"Do Datuma\"" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "\"Ima serijsko številko\" ne more biti \"Da\" za artikel, ki ni na zalogi" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "'Pregled Obvezen pred Dostavo' je onemogočen za artikel {0}, zato ni treba ustvariti Nadzor Kakovosti" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "\"Pregled pred nakupom je potreben\" je onemogočen za artikel {0}, ni treba ustvariti Kontrol Kvaliteta" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Začetno'" @@ -326,13 +317,13 @@ msgstr "'Začetno'" msgid "'To Date' is required" msgstr "'Do Datuma' je obavezno" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'\"Številka paketa do\" ne more biti manjša od \"Številka paketa od\"." #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "\"Posodobi zaloge\" ni mogoče preveriti, ker izdelki niso dostavljeni prek {0}." +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90 Zgoraj" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -818,17 +809,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Plačilni dokument, potreben za vrstico(e): {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Za naslednje artikle ni mogoče zaračunati preveč:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Sledi {0}s ne pripada podjetju {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1047,9 +1038,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - B" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Skupina strank že obstaja z istim imenom. Prosimo, spremenite ime stranke ali preimenujte skupino strank." +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1059,9 +1050,9 @@ msgstr "Seznam praznikov lahko dodate, da izključite štetje teh dni za delovno msgid "A Lead requires either a person's name or an organization's name" msgstr "Za potencialno stranko je potrebno ime osebe ali ime organizacije" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Pakirni Listek je mogoče ustvariti samo za Osnutek Dobavnice." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1077,7 +1068,7 @@ msgstr "Cenik je zbirka cen artiklov, bodisi Prodajnih, Nakupnih ali obojega" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Artikel ali Storitev, ki se kupuje, prodaja ali hrani na zalogi." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Za iste filtre se izvaja naloga usklajevanja {0}. Usklajevanje trenutno ni mogoče" @@ -1110,7 +1101,7 @@ msgstr "" msgid "A logical Warehouse against which stock entries are made." msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1286,7 +1277,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Sprejeta Količina na Enoti Zaloge" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Sprejeta Količina" @@ -1317,12 +1308,16 @@ msgstr "Dostopni Ključ" msgid "Access Key is required for Service Provider: {0}" msgstr "" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "V skladu s CEFACT/ICG/2010/IC013 ali CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "V skladu s Kosovnico {0} v vnosu zaloge manjka postavka '{1}'." @@ -1575,7 +1570,7 @@ msgstr "Račun je obvezen za pridobitev vnosov plačil" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Račun ni najden" @@ -1705,11 +1700,11 @@ msgstr "Račun: {0} je kapital v teku in ga ni mogoče posodobiti z vnoso msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Račun: {0} je mogoče posodobiti samo prek transakcij z zalogami" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Račun: {0} ni dovoljen pri vnosu plačila" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Računa: {0} z valuto: {1} ni mogoče izbrati" @@ -1988,8 +1983,8 @@ msgstr "Filter Računovodskih Dimenzij" msgid "Accounting Entries" msgstr "Računovodski Vnosi" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Računovodski Vnos za Sredstvo" @@ -2014,8 +2009,8 @@ msgstr "Računovodski Vnos za Storitev" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2063,7 +2058,11 @@ msgstr "" msgid "Accounting Period" msgstr "Obdobje Računovodstva" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Obdobje Računovodstva se prekriva z {0}" @@ -2261,8 +2260,8 @@ msgstr "Račun Akumulirane Amortizacije" msgid "Accumulated Depreciation Amount" msgstr "Znesek Akumulirane Amortizacije" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Akumulirana amortizacija na dan" @@ -2490,7 +2489,7 @@ msgstr "Dejanska Bilanca Količina" msgid "Actual Batch Quantity" msgstr "Dejanska Količina Šarže" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Dejanski Stroški" @@ -2500,7 +2499,7 @@ msgstr "Dejanski Stroški" msgid "Actual Date" msgstr "Dejanski Datum" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2650,8 +2649,8 @@ msgstr "Dejanski Čas v Urah (prek Časovnega Lista)" msgid "Actual qty in stock" msgstr "Dejanska količina na zalogi" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "" @@ -2816,10 +2815,6 @@ msgstr "Dodaj Serijsko/Šaržno Številko" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Dodaj Serijsko/ Šaržno Številko (Zavrnjena Količina)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Dodaj Zalogo" @@ -2918,13 +2913,13 @@ msgstr "Dodal/a" msgid "Added On" msgstr "Dodano" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Dodana vloga Dobavitelja Uporabniku {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Uporabniku {0} je bila dodana vloga {1}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3066,7 +3061,7 @@ msgstr "Dodatni Znesek Popusta" msgid "Additional Discount Amount (Company Currency)" msgstr "Dodatni Znesek Popusta (Valuta Podjetja)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "Dodatni Znesek Popusta ({discount_amount}) ne sme presegati skupnega zneska pred takim popustom ({total_before_discount})" @@ -3185,11 +3180,7 @@ msgid "Additional Transferred Qty" msgstr "Dodatna Prenesena Količina" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3454,7 +3445,7 @@ msgstr "" msgid "Advance amount" msgstr "Znesek Predplačila" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "" @@ -3523,7 +3514,7 @@ msgstr "Proti" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Proti Računu" @@ -3643,7 +3634,7 @@ msgstr "" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "" @@ -3667,7 +3658,7 @@ msgstr "" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "" @@ -3781,6 +3772,13 @@ msgstr "Letalska Družba" msgid "Algorithm" msgstr "Algoritem" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3957,7 +3955,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3969,7 +3967,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3988,15 +3986,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -4020,7 +4018,7 @@ msgstr "Samodejna Dodelitev Predplačil (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Dodeli Znesek Plačila" @@ -4030,7 +4028,7 @@ msgstr "Dodeli Znesek Plačila" msgid "Allocate Payment Based On Payment Terms" msgstr "Dodeli Plačilo na podlagi Plačilnih Pogojev" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "" @@ -4060,7 +4058,7 @@ msgstr "Dodeljeno" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4143,7 +4141,7 @@ msgid "Allow Alternative Item" msgstr "Dovoli Alternativni Artikel" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" +msgid "Allow Alternative Item must be checked on Item {0}" msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing @@ -4251,7 +4249,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "" @@ -4532,12 +4530,14 @@ msgstr "Dovoljeni Artikli" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4572,10 +4572,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4583,10 +4583,6 @@ msgstr "" msgid "Already Picked" msgstr "Že Izbrano" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4602,12 +4598,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Nadomestni Artikel" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4812,7 +4808,7 @@ msgstr "Vedno Vprašaj" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5038,12 +5034,12 @@ msgstr "" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "" @@ -5257,7 +5253,7 @@ msgstr "Uporabljena Koda Kupona" msgid "Applied on each reading." msgstr "Uporabljeno pri vsakem branju." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Uporabljena pravila skladiščenja." @@ -5434,10 +5430,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5463,6 +5455,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5504,6 +5500,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5586,18 +5591,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5636,7 +5641,7 @@ msgstr "Artikli Montaže" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5708,7 +5713,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5874,7 +5879,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6006,7 +6011,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -6022,7 +6027,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -6075,7 +6080,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6153,7 +6158,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6174,7 +6179,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6184,6 +6189,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6202,19 +6212,23 @@ msgstr "V vrstici #{0}: Izbrana količina {1} za artikel {2} je večja od razpol msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6235,6 +6249,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6255,7 +6273,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "V vrstici {0}: Številka Šarže je obvezna za artikel {1}" @@ -6263,26 +6281,22 @@ msgstr "V vrstici {0}: Številka Šarže je obvezna za artikel {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "V vrstici {0}: Količina je obvezna za šaržo {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "V vrstici {0}: Za artikel {1}je obvezna številka šarže." #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6494,7 +6508,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6555,7 +6569,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6680,7 +6694,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6776,7 +6790,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6894,7 +6908,7 @@ msgstr "Skladiščna Količina" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6913,8 +6927,8 @@ msgid "BOM 1" msgstr "Kosovnica 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "Kosovnica 1 {0} in Kosovnica 2 {1} ne smeta biti enaka" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6928,7 +6942,7 @@ msgstr "Kosovnica 2" msgid "BOM Comparison Tool" msgstr "Orodje za primerjavo Kosovnice" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7059,7 +7073,7 @@ msgstr "Operacija Kosovnice" msgid "BOM Operations Time" msgstr "Čas Operacij Kosovnice" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7080,7 +7094,7 @@ msgstr "Iskanje Kosovnice" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7132,10 +7146,6 @@ msgstr "Dnevnik orodja za posodobitev kosovnice z vzdrževanim stanjem opravila" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Posodobitev kosovnice je že v teku. Počakajte, da se {0} zaključi." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "Posodobitev kosovnice je v čakalni vrsti in lahko traja nekaj minut. Preverite napredek {0}." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7174,15 +7184,19 @@ msgstr "Rekurzija Kosovnice: {0} ne more biti podrejena od {1}" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Rekurzija Kosovnice: {1} ne more biti nadrejena ali podrejena artiklu {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "Kosovnica {0} ne spada v artikel {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "Kosovnica {0} mora biti aktivna" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "Kosovnica {0} mora biti predložena" @@ -7263,7 +7277,7 @@ msgstr "Stanje" msgid "Balance (Dr - Cr)" msgstr "Stanje (Dr - Cr)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Stanje ({0})" @@ -7333,6 +7347,10 @@ msgstr "Končno Stanje Bilance Stanja" msgid "Balance Sheet Summary" msgstr "Povzetek Bilance Stanja" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Bilanca Zaloge Količina" @@ -7393,7 +7411,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7493,7 +7511,7 @@ msgid "Bank Account Type" msgstr "Tip Bančnega Računa" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7738,7 +7756,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7750,7 +7768,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7762,7 +7780,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -8038,8 +8056,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8070,15 +8088,15 @@ msgstr "" msgid "Batch No" msgstr "Številke Šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Številka Šarže je obvezna" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Številka Šarže {0} ne obstaja" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Številka Šarže {0} je povezana z artiklom {1}, ki ima serijsko številko. Prosimo, da namesto tega skenirate serijsko številko." @@ -8086,6 +8104,10 @@ msgstr "Številka Šarže {0} je povezana z artiklom {1}, ki ima serijsko števi msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Številka Šarže {0} ni prisotna v originalni {1} {2}, zato je ne morete vrniti glede na {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8151,9 +8173,9 @@ msgstr "Šaržna Enota" msgid "Batch and Serial No" msgstr "Šarža in Serijska Številka" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Šarža ni bila ustvarjena za element {}, ker nima serije šarže." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8265,7 +8287,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8740,7 +8762,7 @@ msgid "Booked Fixed Asset" msgstr "Knjiženo osnovno sredstvo" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8968,7 +8990,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8986,7 +9008,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8994,7 +9016,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9321,6 +9343,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9492,7 +9518,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9521,21 +9547,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9564,7 +9593,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9572,11 +9601,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9591,10 +9615,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9619,6 +9639,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9628,14 +9653,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9643,7 +9668,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9655,7 +9680,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9680,7 +9705,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9707,7 +9732,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9716,6 +9741,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9733,7 +9762,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9746,7 +9775,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9778,7 +9807,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9803,19 +9832,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9827,12 +9860,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9841,19 +9878,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10280,8 +10321,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10308,8 +10349,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10503,7 +10544,7 @@ msgstr "Širina Čeka" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10561,7 +10602,7 @@ msgstr "Ime podrejenega dokumenta" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Referenca podrejene vrstice" @@ -10571,7 +10612,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10750,7 +10791,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10764,7 +10805,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10994,9 +11035,9 @@ msgstr "Provizija" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11433,7 +11474,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11503,7 +11544,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11543,10 +11584,6 @@ msgstr "Podjetje" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11711,7 +11748,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11755,11 +11792,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11798,6 +11835,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11806,14 +11851,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11835,7 +11872,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12279,7 +12316,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12595,7 +12632,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12895,7 +12932,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12920,7 +12957,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12978,7 +13015,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12990,7 +13027,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -13012,11 +13049,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13141,14 +13178,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13160,7 +13197,7 @@ msgstr "Kreditna Faktura ni bilo mogoče ustvariti samodejno, odstranite potrdit msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13170,7 +13207,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13194,7 +13231,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13424,10 +13461,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13446,7 +13479,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13461,7 +13494,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13689,7 +13722,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13723,7 +13756,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13818,7 +13851,7 @@ msgstr "Ustvarjanje Uporabnika..." msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Ustvarjanje {} od {} {}" @@ -13828,16 +13861,16 @@ msgstr "Ustvarjanje {} od {} {}" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13871,11 +13904,11 @@ msgstr "" msgid "Credit" msgstr "Kredit" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13956,7 +13989,7 @@ msgstr "" msgid "Credit Limit" msgstr "Kreditna Omejitev" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -14036,16 +14069,16 @@ msgstr "Kredit za" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14104,12 +14137,12 @@ msgstr "Nastavitev Meril" msgid "Criteria Weight" msgstr "Teža Meril" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Uteži meril se morajo sešteti do 100 %." -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14232,7 +14265,7 @@ msgstr "Valuta in Cenik" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14297,8 +14330,8 @@ msgid "Current BOM" msgstr "Trenutna Kosovnica" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "Trenutna Kosovnica in nova Kosovnica ne moreta biti enaka" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14360,10 +14393,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15194,7 +15223,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15339,10 +15368,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15449,11 +15474,11 @@ msgstr "" msgid "Debit" msgstr "Debit" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15615,7 +15640,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16296,8 +16321,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16391,7 +16416,7 @@ msgstr "Dostavljeni Artikli za Fakturiranje" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16449,7 +16474,7 @@ msgstr "Dostava" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16779,7 +16804,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16795,7 +16820,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16865,7 +16890,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16894,11 +16919,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16926,7 +16951,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Podroben Razlog" @@ -17029,11 +17054,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17096,7 +17121,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17269,7 +17294,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17278,8 +17303,8 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' @@ -17287,8 +17312,8 @@ msgstr "" msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17538,8 +17563,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17904,11 +17929,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} ne obstaja" @@ -17946,22 +17971,6 @@ msgstr "" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18267,7 +18276,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18421,7 +18430,7 @@ msgstr "" msgid "Edit Cart" msgstr "Uredi Košarico" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18645,7 +18654,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18833,7 +18842,7 @@ msgstr "" msgid "Empty" msgstr "Prazno" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18842,7 +18851,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18921,6 +18930,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19192,7 +19207,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19315,7 +19330,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19370,6 +19385,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19405,7 +19424,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19429,7 +19448,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19461,18 +19480,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19487,7 +19508,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19536,7 +19557,7 @@ msgstr "Primer: ABCD.#####. Če je serija nastavljena in številka šarže ni om msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19817,7 +19838,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19904,7 +19925,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20163,8 +20184,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20362,7 +20383,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20400,15 +20421,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20417,7 +20438,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20576,11 +20597,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20649,7 +20670,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20662,7 +20683,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20770,7 +20791,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20869,10 +20890,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20886,11 +20903,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20923,7 +20937,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21059,7 +21073,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -21084,10 +21098,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21154,11 +21164,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21191,12 +21201,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21209,8 +21219,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21226,21 +21236,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21259,11 +21265,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21351,6 +21361,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21894,7 +21919,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -22019,6 +22044,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22072,7 +22101,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22415,7 +22444,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22598,7 +22627,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22738,7 +22767,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -23041,7 +23070,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -23069,7 +23098,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23105,7 +23134,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23688,15 +23717,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23734,7 +23763,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23835,7 +23864,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -24053,14 +24082,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24537,7 +24566,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24623,7 +24652,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24632,7 +24661,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24640,11 +24669,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24653,7 +24682,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24670,7 +24699,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24753,7 +24782,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24950,7 +24979,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24966,12 +24995,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25101,7 +25130,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25126,7 +25155,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25152,7 +25181,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25173,7 +25202,7 @@ msgstr "" msgid "Internal Transfer" msgstr "Notranji Prenos" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25215,8 +25244,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25235,7 +25264,7 @@ msgstr "" msgid "Invalid Amount" msgstr "" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25252,11 +25281,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25276,13 +25305,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25303,11 +25332,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25337,7 +25366,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25346,7 +25375,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25385,7 +25414,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25402,7 +25431,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25414,8 +25443,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25423,7 +25452,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25440,7 +25469,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25450,14 +25479,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25489,7 +25518,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26452,10 +26481,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26464,7 +26489,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26513,12 +26538,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26551,7 +26576,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26625,7 +26650,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26786,7 +26811,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26818,7 +26843,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26827,12 +26852,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26928,7 +26953,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27124,7 +27149,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27278,7 +27303,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27309,7 +27334,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27317,8 +27342,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27375,7 +27400,7 @@ msgstr "" msgid "Item Name" msgstr "Ime Artikla" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27422,8 +27447,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27435,7 +27460,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27480,7 +27505,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27596,7 +27621,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27715,7 +27740,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27751,7 +27776,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27765,7 +27790,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27780,7 +27805,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27796,10 +27821,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27808,6 +27829,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Artikla {0} ni mogoče naročiti za več kot {1} v okviru Naročila Pogodbe {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27817,6 +27842,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27849,6 +27875,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27881,7 +27911,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27913,10 +27943,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27967,6 +27993,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27983,7 +28013,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -28023,7 +28053,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -28033,7 +28063,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28103,7 +28133,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28166,20 +28196,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28242,11 +28271,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28592,7 +28629,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28713,7 +28750,7 @@ msgstr "" msgid "Lead" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28807,7 +28844,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28955,7 +28992,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28984,7 +29021,7 @@ msgstr "Raven (Kosovnica)" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -29014,7 +29051,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29110,7 +29147,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29277,7 +29314,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29363,7 +29400,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29601,7 +29638,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29698,7 +29735,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29845,7 +29882,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29928,8 +29965,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30151,7 +30188,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30329,10 +30366,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30359,7 +30392,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30470,7 +30503,7 @@ msgstr "Zahteva za Material" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30520,7 +30553,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30542,7 +30575,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30556,7 +30589,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30676,13 +30709,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30851,7 +30884,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30886,7 +30919,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31232,7 +31265,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31241,11 +31274,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31270,11 +31303,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31282,7 +31315,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31294,7 +31327,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31306,7 +31339,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31314,12 +31347,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31568,8 +31601,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31577,7 +31610,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31598,7 +31631,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31607,10 +31640,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31695,11 +31728,7 @@ msgstr "Poimenovanje Serije je obvezno" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31743,7 +31772,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31753,12 +31782,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31836,8 +31865,8 @@ msgstr "Neto Znesek" msgid "Net Amount (Company Currency)" msgstr "Neto Znesek (Valuta Podjetja)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31887,7 +31916,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31895,7 +31924,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31909,11 +31938,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32157,7 +32186,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32230,6 +32259,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Nova Različica" @@ -32242,8 +32272,8 @@ msgstr "" msgid "New Workplace" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32252,6 +32282,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32264,7 +32298,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32328,16 +32362,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32345,15 +32378,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32396,11 +32429,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32503,6 +32531,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32548,7 +32580,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32585,10 +32617,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32685,7 +32713,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32723,15 +32751,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32760,7 +32793,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32797,7 +32830,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32805,11 +32838,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32861,7 +32889,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32872,8 +32900,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32887,8 +32915,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32951,10 +32979,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32971,10 +32995,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32987,7 +33007,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33232,7 +33252,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33408,11 +33428,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33447,7 +33467,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33512,7 +33532,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33578,7 +33598,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33731,7 +33751,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33761,7 +33781,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33789,7 +33809,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33798,7 +33818,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33828,20 +33848,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33850,7 +33870,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33893,7 +33913,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33984,7 +34004,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -34008,7 +34028,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34194,6 +34214,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34210,10 +34234,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34499,7 +34519,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34553,7 +34573,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34634,11 +34654,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34655,12 +34675,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34711,10 +34731,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34780,6 +34796,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34827,7 +34848,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34925,7 +34946,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34985,7 +35006,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -35006,7 +35027,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -35029,7 +35050,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -35049,7 +35070,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -35061,19 +35082,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35103,11 +35124,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35126,7 +35147,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35751,7 +35772,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35878,7 +35899,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35964,7 +35985,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35985,7 +36006,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -36021,7 +36042,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36531,7 +36552,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36606,7 +36627,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36628,7 +36649,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36728,7 +36749,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36935,11 +36956,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37455,12 +37476,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37482,7 +37503,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37633,15 +37654,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37649,7 +37661,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37657,19 +37668,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37685,7 +37696,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37693,35 +37704,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Prosimo, dodajte vsaj eno Serijsko Številko / Številko Šarže" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37763,7 +37771,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37776,11 +37784,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37796,15 +37804,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37812,11 +37820,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37828,7 +37836,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37840,11 +37848,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37869,7 +37877,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37881,11 +37889,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37901,7 +37909,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37917,7 +37925,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37926,7 +37934,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37962,7 +37970,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38092,7 +38100,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38128,11 +38136,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38161,12 +38165,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38182,9 +38186,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38194,7 +38198,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38217,7 +38221,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38226,6 +38230,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38250,11 +38258,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38283,6 +38291,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38290,11 +38299,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38303,7 +38313,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38315,7 +38325,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38331,6 +38341,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38364,22 +38375,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38388,7 +38403,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38396,10 +38411,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38408,18 +38431,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38457,12 +38472,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38471,7 +38486,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38495,20 +38510,16 @@ msgstr "" msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38537,7 +38548,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38567,13 +38578,11 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" msgstr "" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38581,7 +38590,7 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38598,8 +38607,7 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" +msgid "Please set Tax ID for the customer '{0}'" msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 @@ -38619,15 +38627,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38644,8 +38652,7 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" +msgid "Please set an Address on the Company '{0}'" msgstr "" #: erpnext/stock/services/base_stock_gl_composer.py:194 @@ -38664,24 +38671,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38713,11 +38717,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38725,7 +38729,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38780,7 +38784,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38788,7 +38792,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38798,8 +38802,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38807,11 +38811,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38819,6 +38823,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38982,7 +38994,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39007,7 +39019,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39050,7 +39062,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -39059,7 +39071,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39252,6 +39264,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39341,7 +39357,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39483,7 +39499,7 @@ msgstr "" msgid "Price List Currency" msgstr "Valuta Cenika" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39604,7 +39620,7 @@ msgstr "Cena ni Odvisna od Enote" msgid "Price Per Unit ({0})" msgstr "Cena na Enoto ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39715,7 +39731,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39923,7 +39939,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40105,7 +40121,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40231,7 +40247,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40256,7 +40272,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40459,7 +40475,7 @@ msgstr "" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "" @@ -40488,6 +40504,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40496,8 +40516,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40570,7 +40590,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40650,7 +40670,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40701,7 +40721,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40847,7 +40867,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40880,9 +40900,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41110,8 +41130,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41152,7 +41172,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41176,11 +41196,11 @@ msgstr "" msgid "Purchase Order" msgstr "Nakupna Naročilnica" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41195,7 +41215,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41244,7 +41264,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41304,7 +41324,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41394,7 +41414,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41414,7 +41434,7 @@ msgid "Purchase Receipt Trends " msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41642,7 +41662,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41661,7 +41681,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41726,7 +41746,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41763,7 +41783,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41858,7 +41878,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -42044,7 +42064,7 @@ msgstr "Pregled Kakovosti" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42121,7 +42141,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42204,7 +42224,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42248,12 +42268,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42404,7 +42424,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42432,11 +42452,11 @@ msgstr "" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42444,6 +42464,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42469,7 +42493,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42709,7 +42733,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42893,7 +42917,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43212,7 +43236,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43454,8 +43478,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43631,6 +43655,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43681,7 +43709,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43761,7 +43789,7 @@ msgstr "Referenčni #" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -44053,7 +44081,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44160,7 +44188,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44199,7 +44227,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44350,7 +44378,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44433,7 +44461,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44479,6 +44507,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44563,7 +44600,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44679,11 +44716,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44862,6 +44899,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44900,7 +44941,7 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." msgstr "" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material @@ -44945,7 +44986,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44961,13 +45002,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45461,6 +45502,10 @@ msgstr "" msgid "Returns" msgstr "Vračila" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45885,11 +45930,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45973,23 +46018,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -46065,13 +46110,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46083,7 +46131,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46091,12 +46139,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46108,7 +46156,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46116,6 +46164,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46128,11 +46180,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46155,8 +46214,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46168,7 +46227,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46180,6 +46239,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46208,16 +46271,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46233,12 +46296,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46249,15 +46316,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46269,24 +46336,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46302,6 +46393,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46321,7 +46416,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46344,7 +46439,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46352,17 +46447,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46382,11 +46477,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46396,7 +46491,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46405,6 +46500,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46417,7 +46516,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46441,7 +46540,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46510,7 +46609,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46518,19 +46617,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46542,11 +46649,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46554,6 +46665,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46570,6 +46694,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46610,71 +46742,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46687,10 +46758,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46711,19 +46778,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46739,11 +46806,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46771,24 +46838,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46809,6 +46876,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46830,7 +46900,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46861,7 +46931,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46885,7 +46955,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46893,12 +46963,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46917,11 +46987,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46929,7 +46999,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46941,7 +47011,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46966,10 +47036,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -47022,15 +47092,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -47069,7 +47143,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47130,10 +47204,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47201,7 +47271,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47500,7 +47570,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47717,8 +47787,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48125,7 +48195,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48157,7 +48227,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48267,7 +48337,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48278,7 +48348,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48564,7 +48634,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48585,7 +48655,7 @@ msgid "Select BOM and Qty for Production" msgstr "Izberi Kosovnico in Količino za Proizvodnjo" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48650,7 +48720,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48675,7 +48745,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48705,7 +48775,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48719,13 +48789,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48816,6 +48886,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48957,10 +49028,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49108,7 +49183,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49192,7 +49267,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49249,10 +49324,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49294,6 +49370,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49311,7 +49391,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49356,7 +49436,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49368,7 +49448,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49388,21 +49468,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49417,25 +49494,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49455,7 +49533,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49556,6 +49634,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49604,7 +49686,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49612,122 +49694,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Serija Poimenovanja" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49809,7 +49781,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49918,12 +49890,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49947,7 +49919,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49962,7 +49934,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50067,7 +50039,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50085,7 +50057,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50111,7 +50083,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50209,15 +50181,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50285,7 +50257,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50713,6 +50685,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50915,7 +50888,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -51018,11 +50991,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -51083,7 +51056,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51139,7 +51112,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51207,7 +51180,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51244,8 +51217,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51375,7 +51348,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51388,7 +51361,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51441,7 +51419,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51506,10 +51484,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51539,7 +51533,7 @@ msgstr "" msgid "Start Timer" msgstr "Zaženi Časovnik" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51568,10 +51562,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51652,7 +51650,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51780,7 +51778,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51862,16 +51860,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -52038,7 +52040,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52121,7 +52123,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52146,15 +52148,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52324,7 +52326,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52483,8 +52485,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52503,7 +52505,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52518,7 +52520,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52526,7 +52528,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52740,7 +52742,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52812,7 +52814,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52850,7 +52852,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52924,7 +52926,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52943,7 +52945,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52972,7 +52974,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53114,7 +53116,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53292,7 +53294,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53474,7 +53476,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53622,7 +53624,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53807,10 +53809,6 @@ msgstr "" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53896,7 +53894,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53957,7 +53955,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -54067,11 +54065,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54546,7 +54544,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54758,7 +54756,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -55065,12 +55063,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -55078,10 +55072,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55106,6 +55108,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55123,8 +55129,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55135,11 +55144,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55187,15 +55200,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55244,6 +55257,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55265,8 +55282,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55294,7 +55311,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55306,7 +55323,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55342,7 +55359,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55380,11 +55397,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55433,6 +55450,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55442,7 +55463,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55459,7 +55480,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55476,7 +55497,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55495,11 +55516,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55521,16 +55542,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55569,7 +55590,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55593,7 +55614,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55601,7 +55622,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55609,6 +55630,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55617,7 +55642,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55629,7 +55654,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55646,6 +55671,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55662,10 +55691,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55694,20 +55719,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55758,15 +55783,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55788,7 +55817,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55806,7 +55835,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "" @@ -55948,7 +55977,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -56012,7 +56041,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -56039,10 +56068,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56100,7 +56129,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56229,6 +56258,12 @@ msgstr "" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56515,7 +56550,7 @@ msgid "To Time" msgstr "Do Časa" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56546,15 +56581,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56571,7 +56606,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56583,7 +56618,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56596,8 +56631,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56617,7 +56652,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56634,10 +56669,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56716,8 +56753,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "Skupaj (Valuta Podjetja)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56759,6 +56796,22 @@ msgstr "" msgid "Total Advance" msgstr "Skupni Predujem" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56806,11 +56859,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56992,7 +57045,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -57001,11 +57054,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "" @@ -57043,11 +57096,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "" @@ -57090,7 +57143,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57405,7 +57458,7 @@ msgstr "Skupni DDV in Stroški" msgid "Total Taxes and Charges (Company Currency)" msgstr "Skupni DDV in Stroški (Valuta Podjetja)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57414,7 +57467,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57493,7 +57550,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57511,7 +57568,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57529,8 +57586,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57619,27 +57676,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57692,11 +57733,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58086,6 +58127,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58270,7 +58315,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58292,7 +58337,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58322,7 +58367,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58386,7 +58431,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Faktor Pretvorbe Enote" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58460,7 +58505,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58473,10 +58518,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58501,7 +58542,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58513,8 +58554,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58564,7 +58607,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58587,7 +58630,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58790,7 +58833,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58803,7 +58846,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58947,7 +58990,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59011,7 +59054,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59239,7 +59282,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59328,6 +59371,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59340,6 +59387,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59348,10 +59399,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59644,15 +59691,15 @@ msgstr "Stopnja Vrednotenja" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59660,7 +59707,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59670,7 +59717,7 @@ msgstr "" msgid "Valuation and Total" msgstr "Vrednotenje in Skupaj" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59683,13 +59730,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59740,12 +59787,12 @@ msgstr "" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59754,19 +59801,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60242,7 +60289,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60270,7 +60317,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60282,7 +60329,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60314,7 +60361,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60521,7 +60568,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60539,16 +60586,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60669,7 +60716,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60689,7 +60736,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60843,10 +60890,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60992,7 +61035,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61168,17 +61211,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61217,7 +61260,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61258,20 +61301,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61292,7 +61335,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61317,7 +61360,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61370,7 +61413,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61602,14 +61645,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61624,7 +61659,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61644,7 +61679,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61655,19 +61690,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61689,7 +61720,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61708,14 +61739,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61724,16 +61747,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61745,15 +61768,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61761,7 +61792,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61769,7 +61800,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61784,6 +61815,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61794,7 +61829,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61821,11 +61856,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61842,7 +61877,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61857,19 +61892,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61921,6 +61956,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61951,7 +61990,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61971,7 +62010,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61987,10 +62026,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62045,8 +62080,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62126,14 +62161,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62147,7 +62178,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62223,8 +62254,8 @@ msgstr "" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62287,10 +62318,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62303,7 +62330,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62323,7 +62350,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62331,11 +62358,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62417,10 +62439,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62436,7 +62466,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62478,7 +62508,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62486,6 +62516,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62494,7 +62528,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62508,7 +62546,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62516,7 +62554,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62529,11 +62567,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62541,7 +62579,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62557,7 +62595,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62573,16 +62611,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62633,7 +62671,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62646,7 +62684,7 @@ msgstr "{0} do {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62662,16 +62700,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62679,7 +62717,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62687,7 +62725,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62721,7 +62759,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62755,12 +62793,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62792,6 +62839,10 @@ msgstr "{0} {1} je v celoti fakturirano" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62897,27 +62948,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62933,7 +62980,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62945,7 +62992,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62957,32 +63004,7 @@ msgstr "" msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} fakture" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/sr.po b/erpnext/locale/sr.po index ab061c11ef3..4db4289b32c 100644 --- a/erpnext/locale/sr.po +++ b/erpnext/locale/sr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Serbian (Cyrillic)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: sr_SP\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "\"Да ли је основно средство\" мора бити о msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" за \"SN-01\" до \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# На залихама" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Обавезне ставке" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'Дозволи више продајних поруџбина везаних за набавну поруџбину купца'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'На основу' и 'Груписано по' не могу бити исти" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Датум почетка' мора бити мањи од 'Датум завршетка'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Има серијски број' не може бити 'Да' за ставке ван залиха" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "'Инспекција је потребна пре испоруке' је онемогућена за ставку {0}, није потребно креирати инспекцију квалитета" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "'Инспекција је потребна пре набавке' је онемогућена за ставку {0}, није потребно креирати инспекцију квалитета" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Почетно'" @@ -326,13 +317,13 @@ msgstr "'Почетно'" msgid "'To Date' is required" msgstr "'Датум завршетка' је обавезан" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'До броја пакета' не може бити мањи од поља 'Од броја пакета'" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Ажурирај залихе' не може бити означено јер ставке нису испоручене путем {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "Изнад 90" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "Не може се креирати имовина.

                    Покушавате да креирате {0} имовину из {2} {3}.
                    Међутим, само је {1} ставка набављена и већ постоји {4} имовина за {5}." @@ -826,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Документ о плаћању је обавезан за ред(ове): {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Није могуће извршити прекомерно фактурисање за следеће ставке:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Следећи {0} не припада компанији {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1055,9 +1046,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Група купаца са истим називом већ постоји, молимо Вас да промените име купца или преименујете групу купаца" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1067,9 +1058,9 @@ msgstr "Листа празника може се додати како би с msgid "A Lead requires either a person's name or an organization's name" msgstr "Потенцијални купац захтева или име особе или назив организације" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Документ листе паковања може бити креиран само у нацрту отпремнице." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1085,7 +1076,7 @@ msgstr "Ценовник је збирка цена ставки, било да msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Производ или услуга која се купује, продаје или чува на складишту." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Посао усклађивања {0} се извршава за исте филтере. Тренутно се не може ускладити" @@ -1118,7 +1109,7 @@ msgstr "Драјвер мора бити подешен за подношење. msgid "A logical Warehouse against which stock entries are made." msgstr "Логичко складиште у које се врше уноси залиха." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "Дошло је до конфликта у серији именовања приликом креирања бројева серија. Молимо Вас да промените серију именовања за ставку {0}." @@ -1294,7 +1285,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Прихваћена количина у јединици мере залиха" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Прихваћена количина" @@ -1325,12 +1316,16 @@ msgstr "Кључ за приступ" msgid "Access Key is required for Service Provider: {0}" msgstr "Кључ за приступ је обавезан за пружаоца услуга: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "У складу са CEFACT/ICG/2010/IC013 или CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "У складу са саставницом {0}, ставка '{1}' недостаје у уносу залиха." @@ -1583,7 +1578,7 @@ msgstr "Рачун је обавезан за унос уплате" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Рачун није пронађен" @@ -1713,11 +1708,11 @@ msgstr "Рачун: {0} је недовршени капитал у ра msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Рачун: {0} може бити ажуриран само путем трансакција залиха" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Рачун: {0} није дозвољен у оквиру уноса уплате" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Рачун: {0} са валутом: {1} не може бити изабран" @@ -1996,8 +1991,8 @@ msgstr "Филтер рачуноводствених димензија" msgid "Accounting Entries" msgstr "Рачуноводствени уноси" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Рачуноводствени унос за имовину" @@ -2022,8 +2017,8 @@ msgstr "Рачуноводствени унос за услугу" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2071,7 +2066,11 @@ msgstr "Увод у рачуноводство" msgid "Accounting Period" msgstr "Рачуноводствени период" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Рачуноводствени период се преклапа са {0}" @@ -2269,8 +2268,8 @@ msgstr "Рачун акумулиране амортизације" msgid "Accumulated Depreciation Amount" msgstr "Износ акумулиране амортизације" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Акумулирана амортизација на дан" @@ -2498,7 +2497,7 @@ msgstr "Стварна количина" msgid "Actual Batch Quantity" msgstr "Стварна количина шарже" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Стварни трошак" @@ -2508,7 +2507,7 @@ msgstr "Стварни трошак" msgid "Actual Date" msgstr "Стварни датум" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2658,8 +2657,8 @@ msgstr "Стварно време у сатима (преко евиденциј msgid "Actual qty in stock" msgstr "Стварна количина на складишту" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Стварна врста пореза не може бити укључена у цену ставке у реду {0}" @@ -2824,10 +2823,6 @@ msgstr "Додај број серије / шарже" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Додај број серије / шарже (Одбијена количина)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Додај залихе" @@ -2926,13 +2921,13 @@ msgstr "Додато од" msgid "Added On" msgstr "Датум додавања" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Додата улога добављача кориснику {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Додата улога {1} кориснику {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3074,7 +3069,7 @@ msgstr "Висина додатног попуста" msgid "Additional Discount Amount (Company Currency)" msgstr "Висина додатног попуста (валута компаније)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "Додатни износ попуста ({discount_amount}) не може премашити укупан износ пре таквог попуста ({total_before_discount})" @@ -3193,16 +3188,8 @@ msgid "Additional Transferred Qty" msgstr "Додатно пренета количина" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "Додатно пренета количина {0}\n" -"\t\t\t\t\tне може бити већа од {1}.\n" -"\t\t\t\t\tДа бисте то исправили, повећајте процентуалну\n" -"\t\t\t\t\tвредност поља 'Пренеси додатне сировине у\n" -"\t\t\t\t\tскладиште недовршене производње' у подешавањима производње." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3466,7 +3453,7 @@ msgstr "Врста документа за аванс" msgid "Advance amount" msgstr "Износ аванса" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Износ аванса не може бити већи од {0} {1}" @@ -3535,7 +3522,7 @@ msgstr "Против" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Против рачуна" @@ -3655,7 +3642,7 @@ msgstr "Против фактуре добављача {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Против документа" @@ -3679,7 +3666,7 @@ msgstr "Против броја документа" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Против врсте документа" @@ -3793,6 +3780,13 @@ msgstr "Авиокомпанија" msgid "Algorithm" msgstr "Алгоритам" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3969,7 +3963,7 @@ msgstr "" msgid "All items are already requested" msgstr "Све ставке су већ захтеване" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Све ставке су већ фактурисане/враћене" @@ -3981,7 +3975,7 @@ msgstr "Све ставке су већ примљене" msgid "All items have already been transferred for this Work Order." msgstr "Све ставке су већ пребачене за овај радни налог." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Све ставке у овом документу већ имају повезану инспекцију квалитета." @@ -4000,16 +3994,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Сви коментари и имејлови биће копирани из једног документа у други новокреирани документ (Потенцијал -> Прилика -> Понуда) кроз CRM документа." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Све ставке су већ враћене." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Све потребне ставке (сировине) биће преузете из саставнице и попуњене у овој табели. Овде можете такође променити изворно складиште за било коју ставку. Током производње, можете пратити пренесене сировине из ове табеле." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Све ове ставке су већ фактурисане/враћене" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4032,7 +4026,7 @@ msgstr "Аутоматски расподели авансе (ФИФО)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Расподели износе плаћања" @@ -4042,7 +4036,7 @@ msgstr "Расподели износе плаћања" msgid "Allocate Payment Based On Payment Terms" msgstr "Расподели плаћање на основу услова плаћања" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Расподели захтев за наплату" @@ -4072,7 +4066,7 @@ msgstr "Распоређено" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4155,8 +4149,8 @@ msgid "Allow Alternative Item" msgstr "Дозволи алтернативну ставку" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Дозволи алтернативну ставку мора бити означена на ставци {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4263,7 +4257,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Дозволи преименовање назива вредности атрибута" @@ -4544,14 +4538,16 @@ msgstr "Дозвољене ставке" msgid "Allowed To Transact With" msgstr "Дозвољене трансакције са" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "Дозвољене примарне улоге су 'Купац' и 'Добављач'. Молимо Вас да изаберете само једну од ових улога." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4584,10 +4580,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "Омогућава корисницима да поднесу понуду добављача са нултом количином. Корисно када су цене фиксне, а количине нису, на пример уговори где су цене унапред договорене, а количине нису познате." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4595,10 +4591,6 @@ msgstr "" msgid "Already Picked" msgstr "Већ одабрано" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Већ постоји запис за ставку {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Већ је постављен подразумевани профил малопродаје {0} за корисника {1}, искључите подразумевану опцију" @@ -4614,12 +4606,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Алтернативна ставка" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4824,7 +4816,7 @@ msgstr "Увек питај" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5050,12 +5042,12 @@ msgstr "Група ставки је начин за класификацију msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Догодила се грешка приликом поновне обраде вредновања ставки путем {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Догодила се грешка током процеса ажурирања" @@ -5269,7 +5261,7 @@ msgstr "Примењена шифра купона" msgid "Applied on each reading." msgstr "Примењено на свако очитавање." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Примењена правила складиштења." @@ -5446,10 +5438,6 @@ msgstr "Доступни термини за заказивање" msgid "Appointment Confirmation" msgstr "Потврда термина" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Термин успешно креиран" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5475,6 +5463,10 @@ msgstr "Заказивање термина је онемогућено за о msgid "Appointment With" msgstr "Термин са" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Термин је креиран. Није пронађен потенцијални клијент. Молимо Вас да проверите имејл за потврду" @@ -5516,6 +5508,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "Да ли сте сигурно да желите да обришете све демо податке?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "Да ли сте сигурни да желите да обришете ову ставку?" @@ -5598,18 +5599,18 @@ msgstr "Пошто је поље {0} омогућено, вредност пољ msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Пошто већ постоје поднете трансакције за ставку {0}, не можете променити вредност за {1}." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "Пошто постоје резервисане залихе, не можете онемогућити {0}." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Пошто постоји довољно ставки подсклопова, радни налог није потребан за складиште {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Пошто постоји довољно сировина, захтев за набавку није потребан за складиште {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5648,7 +5649,7 @@ msgstr "Саставне компоненте" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5720,7 +5721,7 @@ msgstr "Ставка залиха за капитализацију имовин #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5886,7 +5887,7 @@ msgstr "Ставка кретања имовине" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6018,7 +6019,7 @@ msgstr "Аналитика вредности имовине" msgid "Asset cancelled" msgstr "Имовина отказана" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Имовина не може бити отказана, јер је већ {0}" @@ -6034,7 +6035,7 @@ msgstr "Имовина је капитализована након што је msgid "Asset created" msgstr "Имовина је креирана" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Имовина је креирана након што је одвојена од имовине {0}" @@ -6087,7 +6088,7 @@ msgstr "Имовина поднета" msgid "Asset transferred to Location {0}" msgstr "Имовина пребачена на локацију {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Имовина ажурирана након што је подељено на имовину {0}" @@ -6165,7 +6166,7 @@ msgstr "Вредност имовине је подешена након под #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6186,7 +6187,7 @@ msgstr "Имовина није креирана за {item_code}. Мораће msgid "Assets {assets_link} created for {item_code}" msgstr "Имовина {assets_link} је креирана за {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Додели посао запосленом лицу" @@ -6196,6 +6197,11 @@ msgstr "Додели посао запосленом лицу" msgid "Assign to Name" msgstr "Додели за име" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6214,19 +6220,23 @@ msgstr "У реду #{0}: Одабрана количина {1} за ставк msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "У реду #{0}: Одабрана количина {1} за ставку {2} је већа од доступног стања {3} у складишту {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "У реду {0}: Пакет серије и шарже {1} мора имати docstatus 1, а не 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "Мора бити изабран барем један рачун прихода или расхода од курсних разлика" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "Мора бити изабрана барем једна ставка имовине." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "Мора бити изабрана барем једна фактура." @@ -6247,6 +6257,10 @@ msgstr "Мора бити изабран барем један од релева msgid "At least one of the Selling or Buying must be selected" msgstr "Мора бити изабран барем један од продаје или набавке" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "Најмање једна сировина мора бити присутна у уносу залиха за врсту {0}" @@ -6267,7 +6281,7 @@ msgstr "У реду #{0}: Идентификатор секвенце {1} не msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "У реду {0}: Број шарже је обавезан за ставку {1}" @@ -6275,26 +6289,22 @@ msgstr "У реду {0}: Број шарже је обавезан за став msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "У реду {0}: Број матичног реда не може бити постављен за ставку {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "У реду {0}: Количина је обавезна за шаржу {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "У реду {0}: Број серије је обавезан за ставку {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "У реду {0}: Пакет серије и шарже {1} је већ креиран. Молимо Вас да уклоните вредности из поља за пакет." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "У реду {0}: поставите број матичног реда за ставку {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "Најмање једна сировина за ставку готовог производа {0} мора бити обезбеђена од стране купца." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6506,7 +6516,7 @@ msgstr "Аутоматско усклађивање уплата је онемо msgid "Auto Repeat Detail" msgstr "Детаљи аутоматског понављања" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "Грешка у аутоматском подешавању пореза" @@ -6567,7 +6577,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Документ аутоматског понављања је ажуриран" @@ -6692,7 +6702,7 @@ msgstr "Датум доступности за употребу" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6788,7 +6798,7 @@ msgstr "Потребан је датум доступности за употр msgid "Available {0}" msgstr "Доступно {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Датум доступности за употребу треба да буде после датума набавке" @@ -6906,7 +6916,7 @@ msgstr "Количина у запису о стању ставки" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6925,8 +6935,8 @@ msgid "BOM 1" msgstr "Саставница 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "Саставница 1 {0} и саставница 2 {1} не би требале да буду исте" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6940,7 +6950,7 @@ msgstr "Саставница 2" msgid "BOM Comparison Tool" msgstr "Алат за упоређивање саставница" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7071,7 +7081,7 @@ msgstr "Операција у саставници" msgid "BOM Operations Time" msgstr "Време операције у саставници" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7092,7 +7102,7 @@ msgstr "Саставница претрага" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "Секундарна ставка саставнице" @@ -7144,10 +7154,6 @@ msgstr "Евиденција алата за ажурирање саставни msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Ажурирање саставнице је већ у току. Молимо сачекајте док се {0} не заврши." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "Ажурирање саставнице је у реду чекања и може потрајати неколико минута. Проверите {0} за напредак." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7186,15 +7192,19 @@ msgstr "Рекурзија саставнице: {0} не може проист msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Рекурзија саставнице: {1} не може бити матична или зависна за {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "Саставница {0} не припада ставци {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "Саставница {0} мора бити активна" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "Саставница {0} мора бити поднета" @@ -7275,7 +7285,7 @@ msgstr "Стање" msgid "Balance (Dr - Cr)" msgstr "Стање (Д - П)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Стање ({0})" @@ -7345,6 +7355,10 @@ msgstr "Завршно стање биланса стања" msgid "Balance Sheet Summary" msgstr "Резиме биланса стања" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Количина стања залиха" @@ -7405,7 +7419,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7505,8 +7519,8 @@ msgid "Bank Account Type" msgstr "Врста текућег рачуна" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "Текући рачун {} у банкарској трансакцији {} се не поклапа са текућим рачуном {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7750,7 +7764,7 @@ msgstr "Банкарска трансакција {0} је ажурирана" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Банкарска трансакција не може бити названа као {0}" @@ -7762,7 +7776,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Текући рачун {0} већ постоји и не може бити поново креиран" @@ -7774,7 +7788,7 @@ msgstr "Текући рачун је додат" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Грешка при креирању банкарске трансакције" @@ -8050,8 +8064,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8082,15 +8096,15 @@ msgstr "" msgid "Batch No" msgstr "Број шарже" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Број шарже је обавезан" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Број шарже {0} не постоји" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Број шарже {0} је повезан са ставком {1} који има број серије. Молимо Вас да скенирате број серије." @@ -8098,6 +8112,10 @@ msgstr "Број шарже {0} је повезан са ставком {1} ко msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Број шарже {0} није присутан у оригиналном {1} {2}, самим тим није могуће вратити је против {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8163,9 +8181,9 @@ msgstr "Јединица мере шарже" msgid "Batch and Serial No" msgstr "Број серије и шарже" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Шаржа није креирана за ставку {} јер нема серију шарже." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8277,7 +8295,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8752,8 +8770,8 @@ msgid "Booked Fixed Asset" msgstr "Уписано основно средство" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "Књиге су затворене до периода који се завршава {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8980,8 +8998,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Буџет не може бити додељен групном рачуну {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Буџет не може бити додељен против {0}, јер то није рачун прихода или расхода" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8998,7 +9016,7 @@ msgstr "Сигурносно време" msgid "Buffered Cursor" msgstr "Buffered Cursor" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Изградити све?" @@ -9006,7 +9024,7 @@ msgstr "Изградити све?" msgid "Build Tree" msgstr "Изградити стабло" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Количина за изградњу" @@ -9333,6 +9351,10 @@ msgstr "Обрачунато стање банкарског извода" msgid "Calculated Discount Mismatch" msgstr "Неслагање у обрачунатом попусту" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9504,7 +9526,7 @@ msgstr "Кампања {0} није пронађена" msgid "Can be approved by {0}" msgstr "Може бити одобрен од {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "Не може се затворити радни налог. Пошто {0} радних картица има статус у обради." @@ -9533,21 +9555,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Не може се филтрирати према броју документа, уколико је груписано по документу" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Може се извршити плаћање само за неизмирене {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Можете се позвати на ред само ако је врста наплате 'На износ претходног реда' или 'Укупан износ претходног реда'" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "Не можете променити метод вредновања, јер постоје трансакције за неке ставке које немају сопствени метод вредновања" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Отказивање посете материјалу {0} пре отказивања овог захтева за гаранцију" @@ -9576,7 +9601,7 @@ msgstr "" msgid "Cancelation Date" msgstr "Датум отказивања" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9584,11 +9609,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "Није могуће доделити благајника" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Није могуће израчунати време јер недостаје адреса возача." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "Није могуће променити подешавање рачуна инвентара" @@ -9603,10 +9623,6 @@ msgstr "Није могуће креирати повраћај" msgid "Cannot Merge" msgstr "Није могуће спојити" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Не може се оптимизовати рута јер недостаје адреса возача." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Не може се отпустити запослено лице" @@ -9631,6 +9647,11 @@ msgstr "Не може се применити порез одбијен на и msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Не може бити основно средство јер је креирана књига залиха." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "Није могуће отказати распоред амортизације имовине {0} јер постоји нацрт налога књижења {1}." @@ -9640,14 +9661,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "Није могуће отказати унос затварања малопродаје" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "Није могуће отказати унос резервације залиха {0}, јер је коришћен у радном налогу {1}. Молимо Вас да прво откажете радни налог или поништите резервацију залиха" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "Не може се отказати јер је обрада отказаних докумената у току." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Не може се отказати јер већ постоји унос залиха {0}" @@ -9655,7 +9676,7 @@ msgstr "Не може се отказати јер већ постоји уно msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "Није могуће отказати трансакцију. Поновна обрада вредновања ставки при предаји још није завршена." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "Није могуће отказати овај унос залиха у производњи јер количина произведеног готовог производа не може бити мања од испоручене количине у повезаном налогу за пријем из подуговарања." @@ -9667,7 +9688,7 @@ msgstr "Није могуће отказати овај документ јер msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Не може се отказати овај документ јер је повезан са поднетом имовином {asset_link}. Молимо Вас да је откажете да бисте наставили." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Не може се отказати трансакција за завршени радни налог." @@ -9692,8 +9713,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Не може се променити подразумевана валута компаније јер постоје трансакције. Трансакције морају бити отказане да би се променила подразумевана валута." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "Не може се завршити задатак {0} јер његов завистан задатак {1} није завршен/ отказан је." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9719,7 +9740,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "Не могу се креирати уноси за резервацију залиха за пријемницу набавке са будућим датумом." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Не може се креирати листа за одабир за продајну поруџбину {0} јер има резервисане залихе. Поништите резервисање залиха да бисте креирали листу." @@ -9728,6 +9749,10 @@ msgstr "Не може се креирати листа за одабир за п msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Не могу се креирати књиговодствени уноси за онемогућене рачуне: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "Није могуће креирати повраћај за консолидовану фактуру {0}." @@ -9745,7 +9770,7 @@ msgstr "Не може се прогласити као изгубљено јер msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Не може се одбити када је категорија за 'Вредновање' или 'Вредновање и укупно'" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Не може се обрисати ред прихода/расхода курсних разлика" @@ -9758,7 +9783,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Није могуће обрисати ставку која је већ поручена" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "Није могуће обрисати заштићени основни DocType: {0}" @@ -9790,7 +9815,7 @@ msgstr "Није могуће демонтирати количину {0} из msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "Није могуће омогућити рачун инвентара по ставкама јер постоје уноси у књигу залиха за компанију {0} који користе рачун инвентара по складиштима. Молимо Вас да најпре откажете трансакције залиха и покушате поново." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9815,19 +9840,23 @@ msgstr "Не може се пронаћи ставка са овим бар-ко msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "Не може се пронаћи подразумевано складиште за ставку {0}. Молимо Вас да поставите један у мастер подацима ставке или подешавањима залиха." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "Није могуће спојити {0} '{1}' у '{2}' јер оба имају постојеће књиговодствене уносе у различитим валутама за '{3}'." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "Није могуће произвести више ставке {0} него што је количина на продајној поруџбини {1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "Не може се произвести више ставки за {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "Не може се произвести више од {0} ставки за {1}" @@ -9839,12 +9868,16 @@ msgstr "Не може се примити од купца против нега msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "Није могуће смањити количину испод поручене или набављене количине" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Не може се позвати број реда већи или једнак тренутном броју реда за ову врсту наплате" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "Није могуће преузети токен за ажурирање. Проверите евиденцију грешака за више информација" @@ -9853,19 +9886,23 @@ msgstr "Није могуће преузети токен за ажурирањ msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Није могуће преузети токен за повезивање. Проверите евиденцију грешака за више информација" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "Није могуће изабрати врсту групе као група купаца. Молимо Вас да изаберете групу купаца која није групне врсте." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Не може се изабрати врста наплате као 'На износ претходног реда' или 'На укупан износ претходног реда' за први ред" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Не може се поставити као изгубљено јер је направљена продајна поруџбина." @@ -10292,9 +10329,9 @@ msgstr "Промените врсту рачуна на Потраживање msgid "Change this date manually to setup the next synchronization start date" msgstr "Ручно промените овај датум да поставите датум почетка следеће синхронизације" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "Промењено име купца у '{}' јер '{}' већ постоји." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10320,8 +10357,8 @@ msgstr "Промена методе вредновања на просечну msgid "Channel Partner" msgstr "Канал партнера" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "Накнада врсте 'Стварно' у реду {0} не може бити укључена у цену ставке или плаћени износ" @@ -10515,7 +10552,7 @@ msgstr "Ширина чека" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Датум чека / референце" @@ -10573,7 +10610,7 @@ msgstr "Зависни Docname" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Референца зависног реда" @@ -10583,8 +10620,8 @@ msgid "Child Table Not Allowed" msgstr "Зависна табела није дозвољена" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Постоји зависни задатак за овај задатак. Не можете обрисати овај задатак." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10762,7 +10799,7 @@ msgstr "Затвори зајам" msgid "Close Replied Opportunity After Days" msgstr "Затвори одговорену прилику након неколико дана" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Затвори малопродају" @@ -10776,7 +10813,7 @@ msgstr "Затворен документ" msgid "Closed Documents" msgstr "Затворени документи" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Затворени радни налог се не може зауставити или поново отворити" @@ -11006,9 +11043,9 @@ msgstr "Провизија" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11445,7 +11482,7 @@ msgstr "Компаније" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11515,7 +11552,7 @@ msgstr "Компаније" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11555,10 +11592,6 @@ msgstr "Компанија" msgid "Company Abbreviation" msgstr "Скраћеница компаније" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Скраћеница компаније не може да има више од 5 карактера" @@ -11723,7 +11756,7 @@ msgstr "Адреса за испоруку" msgid "Company Tax ID" msgstr "ПИБ компаније" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "Компанија и датум књижења су обавезни" @@ -11767,12 +11800,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "Назив поља за линк компаније који се користи за филтрирање (опционо - оставите празно да бисте обрисали све записе)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Назив компаније није исти" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "Имовина {0} за компанију и улазни документ {1} се не поклапају." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11810,6 +11843,14 @@ msgstr "Компанија {0} је додата више пута" msgid "Company {0} does not exist" msgstr "Компанија {0} не постоји" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Компанија {0} је додата више пута" @@ -11818,14 +11859,6 @@ msgstr "Компанија {0} је додата више пута" msgid "Company {0} is not in South Africa." msgstr "Компанија {0} није у Јужној Африци." -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "Компанија {} још увек не постоји. Поставке пореза су прекинуте." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "Компанија {} се не подудара са профилом малопродаје компаније {}" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11847,7 +11880,7 @@ msgstr "Назив конкурента" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Конкуренти" @@ -12291,8 +12324,8 @@ msgid "Consumed Qty" msgstr "Утрошена количина" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "Утрошена количина не може бити већа од резервисане количине за ставку {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12607,7 +12640,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12907,7 +12940,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12932,7 +12965,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12990,7 +13023,7 @@ msgstr "Број трошковног центра" msgid "Cost Center and Budgeting" msgstr "Трошковни центар и буџетирање" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "Трошковни центар за ставку у реду је ажуриран на {0}" @@ -13002,7 +13035,7 @@ msgstr "Трошковни центар је део расподеле трош msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Трошковни центар је обавезан у реду {0} у табели пореза за врсту {1}" @@ -13024,12 +13057,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "Трошковни центар {0} не може бити коришћен за расподелу јер је коришћен као главни трошковни центар у другом запису расподеле." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Трошковни центар {} не припада компанији {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "Трошковни центар {} је групни трошковни центар. Групни трошковни центар не може се користити у трансакцијама" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13153,14 +13186,14 @@ msgid "Costing and Billing" msgstr "Обрачун трошкова и фактурисање" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "Поља за обрачун трошкова и фактурисање су ажурирана" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Није могуће обрисати демо податке" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Није могуће аутоматски креирати купца због следећих недостајућих обавезних поља:" @@ -13172,7 +13205,7 @@ msgstr "Није могуће аутоматски креирати докуме msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Није могуће детектовати компанију за ажурирање текућих рачуна" @@ -13182,8 +13215,8 @@ msgstr "Није пронађена одговарајућа смена која #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "Није могуће пронаћи пут за " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13206,7 +13239,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Није могуће решити функцију оцене критеријума за {0}. Проверите да ли је формула валидна." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Није могуће решити функцију пондерисаног резултата. Проверите да ли је формула валидна." @@ -13436,10 +13469,6 @@ msgstr "Креирај новог купца" msgid "Create New Lead" msgstr "Креирај новог потенцијалног клијента" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13458,7 +13487,7 @@ msgstr "Креирај операције" msgid "Create Opportunity" msgstr "Креирај прилику" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Креирај унос почетног стања малопродаје" @@ -13473,7 +13502,7 @@ msgstr "Креирај унос уплате" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "Креирај унос уплате за консолидоване фискалне рачуне." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Креирај захтев за наплату" @@ -13701,7 +13730,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "Креирај варијанту са шаблонском сликом." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Креирај трансакцију улазних залиха за ставку." @@ -13735,7 +13764,7 @@ msgstr "Креирај {0} {1} ?" msgid "Created By Migration" msgstr "Креирано путем миграције" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "Креирано {0} таблица за оцењивање за {1} између:" @@ -13830,7 +13859,7 @@ msgstr "Креирање корисника ..." msgid "Creating demo data" msgstr "Креирање демо података" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Креирање {} од {} {}" @@ -13840,17 +13869,17 @@ msgstr "Креирање {} од {} {}" msgid "Creation" msgstr "Креирање" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "Креирање {1}(s) успешно" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Креирање {0} безуспешно.\n" "\t\t\t\tПровери Евиденцију масовних трансакција" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Креирање {0} делимично успешно.\n" @@ -13885,11 +13914,11 @@ msgstr "Креирање {0} делимично успешно.\n" msgid "Credit" msgstr "Потражује" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Потражује (Трансакција)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Потражује ({0})" @@ -13970,7 +13999,7 @@ msgstr "Одложено плаћање" msgid "Credit Limit" msgstr "Ограничење потраживања" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Ограничење потраживања премашено" @@ -14050,16 +14079,16 @@ msgstr "Потражује" msgid "Credit in Company Currency" msgstr "Потражује у валути компаније" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Ограничење потраживања премашено за клијента {0} ({1}/{2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Ограничење потраживања је већ дефинисано за компанију {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Ограничење потраживања премашено за купца {0}" @@ -14118,12 +14147,12 @@ msgstr "Подешавање критеријума" msgid "Criteria Weight" msgstr "Тежина критеријума" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Тежине критеријума морају резултирати збиром од 100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Интервал Cron задатка треба да буде између 1 и 59 минута" @@ -14246,7 +14275,7 @@ msgstr "Валута и ценовник" msgid "Currency can not be changed after making entries using some other currency" msgstr "Валута не може бити промењена након што су унесени подаци користећи другу валуту" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "Филтери по валути тренутно нису подржани у прилагођеном финансијском извештају." @@ -14311,8 +14340,8 @@ msgid "Current BOM" msgstr "Тренутна саставница" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "Тренутна саставница и нова саставница не могу бити исте" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14374,10 +14403,6 @@ msgstr "Тренутни пакет серије/шарже" msgid "Current Serial No" msgstr "Тренутни број серије" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15208,7 +15233,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Дневни резиме пројекта за {0}" @@ -15353,10 +15378,6 @@ msgstr "Датуми за обраду" msgid "Day Of Week" msgstr "Дан у недељи" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15463,11 +15484,11 @@ msgstr "Трговац" msgid "Debit" msgstr "Дугује" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Дугује (Трансакција)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Дугује ({0})" @@ -15629,7 +15650,7 @@ msgstr "Децилитар" msgid "Decimeter" msgstr "Дециметар" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Прогласи изгубљено" @@ -16310,8 +16331,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "Брисање {0} и свих повезаних докумената са заједничком шифром..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Брисање у току!" @@ -16405,7 +16426,7 @@ msgstr "Испоручене ставке које треба фактуриса #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16463,7 +16484,7 @@ msgstr "Испорука" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16793,7 +16814,7 @@ msgstr "Амортизација" msgid "Depreciation Amount" msgstr "Износ амортизације" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Износ амортизације током периода" @@ -16809,7 +16830,7 @@ msgstr "Датум амортизације" msgid "Depreciation Details" msgstr "Детаљи амортизације" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Амортизација престала због отуђења имовине" @@ -16879,7 +16900,7 @@ msgstr "Датум књижења амортизације не може бит msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Ред амортизације {0}: Датум књижења амортизације не може бити пре датума када је средство доступно за употребу" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Ред амортизације {0}: Очекивана вредност након корисног века мора бити већа или једнака {1}" @@ -16908,11 +16929,11 @@ msgstr "Распоред амортизације" msgid "Depreciation Schedule View" msgstr "Преглед распореда амортизације" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "Амортизација се не може израчунати за потпуно амортизовану имовину" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "Амортизација елиминисана путем поништавања" @@ -16940,7 +16961,7 @@ msgstr "Дизајнер" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Детаљан разлог" @@ -17043,12 +17064,12 @@ msgid "Difference Account in Items Table" msgstr "Рачун разлике у табели ставки" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "Рачун разлике мора бити рачун имовине или обавеза (привремено почетно стање), јер је овај унос залиха унос отварања почетног стања" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Рачун разлике мора бити рачун имовине или обавеза, јер ово усклађивање залиха представља унос почетног стања" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17110,7 +17131,7 @@ msgstr "Вредност разлике" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "За сваки ред се могу подесити различито 'Изворно складиште' и 'Циљно складиште'." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Различите јединице мере за ставке ће довести до нетачне (укупне) нето тежине. Уверите се да је нето тежина сваке ставке у истој јединици мере." @@ -17283,7 +17304,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "Онемогућено складиште {0} се не може користити за ову трансакцију." @@ -17292,18 +17313,18 @@ msgstr "Онемогућено складиште {0} се не може кор msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Ценовна правила су онемогућена јер је ово {} интерна трансакција" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "Цене са укљученим порезом су онемогућене јер је ово {} интерна трансакција" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17552,9 +17573,9 @@ msgstr "Попуст не може бити већи од 100%." msgid "Discount must be less than 100" msgstr "Попуст мора бити мањи од 100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Попуст од {} примењен према услову плаћања" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17918,11 +17939,11 @@ msgstr "Да ли желите да поднесете унос залиха?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} не постоји" @@ -17960,22 +17981,6 @@ msgstr "Претрага докумената" msgid "Document Count" msgstr "Број докумената" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "Број документа" @@ -18281,7 +18286,7 @@ msgstr "Дупликат пројекта са задацима" msgid "Duplicate Sales Invoices found" msgstr "Пронађени су дупликати излазне фактуре" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "Грешка дупликата броја серије" @@ -18435,7 +18440,7 @@ msgstr "Измени капацитет" msgid "Edit Cart" msgstr "Измени корпу" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Измена није дозвољена" @@ -18659,8 +18664,8 @@ msgid "Email verification failed." msgstr "Имејл верификације неуспешна." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "Имејл у реду чекања" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18847,7 +18852,7 @@ msgstr "Запослена лица" msgid "Empty" msgstr "Празно" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "Листа за брисање је празна" @@ -18856,7 +18861,7 @@ msgstr "Листа за брисање је празна" msgid "Ems(Pica)" msgstr "Ems (Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18935,6 +18940,12 @@ msgstr "Омогући попусте и маржу" msgid "Enable European Access" msgstr "Омогући европски приступ" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19206,7 +19217,7 @@ msgstr "Време завршетка" msgid "End Transit" msgstr "Завршетак транзита" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19329,7 +19340,7 @@ msgstr "Унесите број телефона купца" msgid "Enter date to scrap asset" msgstr "Унесите датум за отпис имовине" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Унесите детаље амортизације" @@ -19385,6 +19396,10 @@ msgstr "Унесите количину за производњу. Ставке msgid "Enter {0} amount." msgstr "Унесите износ за {0}." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Рекреација и слободно време" @@ -19420,7 +19435,7 @@ msgstr "Врста уноса" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Капитал" @@ -19444,7 +19459,7 @@ msgstr "Erg" msgid "Error Description" msgstr "Опис грешке" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Дошло је до грешке" @@ -19476,21 +19491,21 @@ msgstr "Грешка приликом књижења амортизације" msgid "Error while processing deferred accounting for {0}" msgstr "Грешка приликом обраде временског разграничења код {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Грешка приликом поновне обраде вредновања ставке" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Грешка: Ова имовина већ има {0} евидентираних периода амортизације.\n" -"\t\t\t\t\t Датум 'почетка амортизације' мора бити најмање {1} периода након датума 'доступно за коришћење'.\n" -"\t\t\t\t\t Молимо Вас да исправите датум у складу са тим." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Грешка: {0} је обавезно поље" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19504,7 +19519,7 @@ msgid "Estimated Arrival" msgstr "Предвиђено време доласка" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Процена трошкова" @@ -19554,7 +19569,7 @@ msgstr "Пример: АБЦД.#####. Уколико је серија пост msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Пример: Број серије {0} је резервисан у {1}." @@ -19835,7 +19850,7 @@ msgstr "Очекивани датум затварања" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19922,7 +19937,7 @@ msgstr "Очекивана вредност након корисног века #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Трошак" @@ -20181,9 +20196,9 @@ msgstr "Фаренхајт" msgid "Failed Entries" msgstr "Неуспешни уноси" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Неуспешна аутентификација API кључа." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20380,7 +20395,7 @@ msgid "Fetching Sales Orders..." msgstr "Преузимање продајних поруџбина..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Преузимање девизних курсних листа ..." @@ -20418,15 +20433,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "Поља ће бити копирана само приликом креирања." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "Фајл не припада овом запису о брисању трансакције" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Фајл није пронађен" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Фајл није пронађен на серверу" @@ -20435,7 +20450,7 @@ msgstr "Фајл није пронађен на серверу" msgid "File to Rename" msgstr "Фајл за преименовање" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20594,11 +20609,11 @@ msgstr "Ред финансијског извештаја" msgid "Financial Report Template" msgstr "Шаблон финансијског извештаја" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "Шаблон финансијског извештаја {0} је онемогућен" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "Шаблон финансијског извештаја {0} није пронађен" @@ -20667,7 +20682,7 @@ msgstr "Саставница готовог производа" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20680,7 +20695,7 @@ msgstr "Ставка готовог производа" msgid "Finished Good Item Code" msgstr "Шифра ставке готовог производа" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Количина готовог производа" @@ -20788,7 +20803,7 @@ msgstr "Скалдиште готових производа" msgid "Finished Goods based Operating Cost" msgstr "Оперативни трошак заснован на готовим производима" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Готов производ {0} не одговара радном налогу {1}" @@ -20887,10 +20902,6 @@ msgstr "Фискални режим је обавезан, молимо Вас msgid "Fiscal Year" msgstr "Фискална година" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20904,11 +20915,8 @@ msgstr "Детаљи фискалне године" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Датум краја фискалне године треба бити годину дана након почетног датума фискалне године" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Фискална година {0} не постоји" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Фискална година {0} не постоји" @@ -20941,7 +20949,7 @@ msgstr "Основна средства" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21077,7 +21085,7 @@ msgstr "Стопа/Секунд" msgid "For" msgstr "За" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "За ставке 'Група производа', складиште, број серије и број шарже биће преузети из табеле 'Листа паковања'. Уколико су складиште и број шарже исти за све ставке које се пакују у оквиру 'Групе производа', ти подаци могу бити унесени у главну табелу ставки, а вредности ће бити копиране у табелу 'Листа паковања'." @@ -21102,10 +21110,6 @@ msgstr "За компанију" msgid "For Item" msgstr "За ставку" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "За ставку {0} количина не може бити примљена у већој количини од {1} у односу на {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21172,12 +21176,12 @@ msgid "For Work Order" msgstr "За радни налог" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "За ставку {0}, количина мора бити негативна број" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "За ставку {0}, количина мора бити позитиван број" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21209,13 +21213,13 @@ msgstr "За колико је потрошено = 1 лојалти поен" msgid "For individual supplier" msgstr "За појединачног добављача" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "За ставку {0}, је креирано или повезано само {1} имовине у {2}. Молимо Вас да креирате или повежете још {3} имовина са одговарајућим документом." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "За ставку {0}, цена мора бити позитиван број. Да бисте омогућили негативне цене, омогућите {1} у {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21227,9 +21231,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "За операцију {0} у реду {1}, молимо Вас да додате сировине или доделите саставницу." -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "За операцију {0}: Количина ({1}) не може бити већа од преостале количине ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21244,21 +21248,17 @@ msgstr "За пројекат - {0}, ажурирајте свој статус" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "За пројектоване и прогнозиране количине, систем ће узети у обзир сва зависна складишта под изабраним матичним складиштем." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "Количина {0} не би смела бити већа од дозвољене количине {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "За референцу" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "За ред {0} у {1}. Да бисте укључили {2} у цену ставке, редови {3} такође морају бити укључени" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "За ред {0}: Унесите планирану количину" @@ -21277,11 +21277,15 @@ msgstr "За поље 'Примени правило на остале' {0} је msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Ради погодности купаца, ове шифре могу се користити у форматима за штампање као што су фактуре и отпремнице" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "За ставку {0}, утрошена количина треба да буде {1} према саставници {2}." -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "Да би нови {0} ступио на снагу, желите ли да обришете тренутни {1}?" @@ -21369,6 +21373,21 @@ msgstr "Постови на форуму" msgid "Forum URL" msgstr "URL форума" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "Frappe School" @@ -21912,7 +21931,7 @@ msgstr "Стање главне књиге" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Унос у главну књигу" @@ -22037,6 +22056,10 @@ msgstr "Главна књига" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22090,7 +22113,7 @@ msgstr "Генериши унос затварања залиха" msgid "Generate To Delete List" msgstr "Генериши листу за брисање" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "Прво генеришите листу за брисање" @@ -22433,7 +22456,7 @@ msgstr "Роба на путу" msgid "Goods Transferred" msgstr "Роба премештена" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Роба је већ примљена на основу излазног уноса {0}" @@ -22616,7 +22639,7 @@ msgstr "Укупан износ мора одговарати збиру реф msgid "Grant Commission" msgstr "Одобри комисион" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Већи од износа" @@ -22756,7 +22779,7 @@ msgstr "Груписано по продајној поруџбини" msgid "Group by Voucher" msgstr "Груписано по документу" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Није дозвољено изабрати складиште групног чвора за трансакције" @@ -23059,7 +23082,7 @@ msgstr "Помаже Вам да расподелите буџет/циљ по msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Ово су евиденције грешака за претходно неуспеле уносе амортизације: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "Следеће су опције за наставак:" @@ -23087,7 +23110,7 @@ msgstr "Овде су Ваши недељни одмори унапред поп msgid "Hertz" msgstr "Херц" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Здраво," @@ -23123,7 +23146,7 @@ msgstr "Сакриј уколико је нула" msgid "Hide Images" msgstr "Сакриј слике" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "Сакриј недавне налоге" @@ -23710,15 +23733,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "Уколико порези нису постављени, а шаблон пореза и накнада је изабран, систем ће аутоматски применити порезе из изабраног шаблона." -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "Уколико није, можете отказати/ поднети овај унос" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "Уколико странка не постоји, креирајте је користећи поље назив купца." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "Уколико странка не постоји, креирајте је користећи поље назив добављача." @@ -23756,7 +23779,7 @@ msgstr "Уколико саставница резултира отписани msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Уколико је рачун закључан, унос је дозвољен само ограниченом броју корисника." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Уколико се ставка књижи као ставка са нултом стопом вредновања у овом уносу, омогућите опцију 'Дозволи нулту стопу вредновања' у табели ставки {0}." @@ -23857,7 +23880,7 @@ msgstr "Уколико треба да ускладите одређене тр msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "Уколико и даље желите да наставите, омогућите {0}." @@ -24075,14 +24098,14 @@ msgstr "Увези фактуре" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "Увези МТ940 формат" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Увоз успешан" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Резиме увоза" @@ -24559,7 +24582,7 @@ msgstr "Укључујући ставке за подсклопове" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Приход" @@ -24645,7 +24668,7 @@ msgstr "Долазни позив од {0}" msgid "Incompatible Setting Detected" msgstr "Откривена некомпатибилна подешавања" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "Нетачан рачун" @@ -24654,7 +24677,7 @@ msgstr "Нетачан рачун" msgid "Incorrect Balance Qty After Transaction" msgstr "Погрешан салдо количине након трансакције" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Утрошена нетачна шаржа" @@ -24662,11 +24685,11 @@ msgstr "Утрошена нетачна шаржа" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Нетачно складиште за поновно наручивање" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "Нетачна компанија" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Нетачна количина компоненти" @@ -24675,7 +24698,7 @@ msgstr "Нетачна количина компоненти" msgid "Incorrect Date" msgstr "Нетачан датум" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Нетачна фактура" @@ -24692,7 +24715,7 @@ msgstr "Нетачан референтни документ (ставка пр msgid "Incorrect Serial No Valuation" msgstr "Неисправно вредновање серијског броја" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Утрошен нетачан број серије" @@ -24775,7 +24798,7 @@ msgstr "Повећање" msgid "Increment cannot be 0" msgstr "Повећање не може бити 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Повећање за атрибут {0} не може бити 0" @@ -24972,7 +24995,7 @@ msgid "Instruction" msgstr "Упутство" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Недовољан капацитет" @@ -24988,12 +25011,12 @@ msgstr "Недовољне дозволе" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Недовољно залиха" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Недовољно залиха за шаржу" @@ -25123,7 +25146,7 @@ msgstr "Трошак камата" msgid "Interest Income" msgstr "Приход од камата" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Камата и/или накнада за опомену" @@ -25148,7 +25171,7 @@ msgstr "Интерни" msgid "Internal Customer Accounting" msgstr "Рачуноводство интерног купца" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Интерни купац за компанију {0} већ постоји" @@ -25174,7 +25197,7 @@ msgstr "Недостаје референца за интерну продају msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "Интерни добављач за компанију {0} већ постоји" @@ -25195,7 +25218,7 @@ msgstr "Интерни добављач за компанију {0} већ по msgid "Internal Transfer" msgstr "Интерни трансфер" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Недостаје референца за интерни трансфер" @@ -25237,8 +25260,8 @@ msgstr "Интервал мора бити између 1 и 59 минута" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25257,7 +25280,7 @@ msgstr "Неважећи распоређени износ" msgid "Invalid Amount" msgstr "Неважећи износ" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Неважећи атрибут" @@ -25274,11 +25297,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Неважећи бар-код. Не постоји ставка која је приложена са овим бар-кодом." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Неважећа оквирна наруџбина за изабраног купца и ставку" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "Неважећи CSV формат. Очекивана колона: doctype_name" @@ -25298,13 +25321,13 @@ msgstr "Неважећа компанија за међукомпанијску msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Неважећи трошковни центар" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "Неважећа група купаца" @@ -25325,11 +25348,11 @@ msgstr "" msgid "Invalid Discount" msgstr "Неважећи попуст" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "Неважећи износ попуста" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Неважећи документ" @@ -25359,7 +25382,7 @@ msgstr "Неважеће груписање по" msgid "Invalid Item" msgstr "Неважећа ставка" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Неважећи подразумевани подаци за ставку" @@ -25368,7 +25391,7 @@ msgstr "Неважећи подразумевани подаци за ставк msgid "Invalid Ledger Entries" msgstr "Неважећи рачуноводствени уноси" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "Неважећи нето износ набавке" @@ -25407,7 +25430,7 @@ msgstr "Неважећи формат штампе" msgid "Invalid Priority" msgstr "Неважећи приоритет" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Неважећа конфигурација губитака у процесу" @@ -25424,7 +25447,7 @@ msgstr "Неважећа количина" msgid "Invalid Quantity" msgstr "Неважећа количина" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "Неважећи упит" @@ -25436,8 +25459,8 @@ msgstr "Неважећи поврат" msgid "Invalid Sales Invoices" msgstr "Неважеће излазне фактуре" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Неважећи распоред" @@ -25445,7 +25468,7 @@ msgstr "Неважећи распоред" msgid "Invalid Selling Price" msgstr "Неважећа продајна цена" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Неважећи број пакета серије и шарже" @@ -25462,7 +25485,7 @@ msgstr "" msgid "Invalid Upload" msgstr "Неважеће отпремање" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Неважећа вредност" @@ -25472,14 +25495,14 @@ msgid "Invalid Warehouse" msgstr "Неважеће складиште" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "Неважећи износ у рачуноводственим уносима за {} {} за рачун {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Неважећи израз услова" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "Неважећи URL фајла" @@ -25511,7 +25534,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "Неважећи кључ резултата. Одговор:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Неважећи упит претраге" @@ -26474,10 +26497,6 @@ msgstr "Датум издавања" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Може потрајати неколико сати да тачне вредности залиха постану видљиве након спајања ставки." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Потребно је преузети детаље ставки." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26486,7 +26505,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "Није могуће равномерно расподелити трошкове када је укупни износ нула, молимо поставите 'Расподели трошкове засноване на' као 'Количина'" @@ -26535,12 +26554,12 @@ msgstr "Курзивни текст за међузбирове или напо #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26573,7 +26592,7 @@ msgstr "Курзивни текст за међузбирове или напо #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26647,7 +26666,7 @@ msgstr "Ставка 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26808,7 +26827,7 @@ msgstr "Корпа ставке" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26840,7 +26859,7 @@ msgstr "Корпа ставке" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26849,12 +26868,12 @@ msgstr "Корпа ставке" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26950,7 +26969,7 @@ msgstr "Шифра ставке не може бити промењена за msgid "Item Code required at Row No {0}" msgstr "Шифра ставке неопходна је у реду број {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Шифра ставке: {0} није доступна у складишту {1}." @@ -27146,7 +27165,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Стабло група ставки" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Група ставке није поменута у мастер подацима за ставку {0}" @@ -27300,7 +27319,7 @@ msgstr "Произвођач ставке" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27331,7 +27350,7 @@ msgstr "Произвођач ставке" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27339,8 +27358,8 @@ msgstr "Произвођач ставке" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27397,7 +27416,7 @@ msgstr "Произвођач ставке" msgid "Item Name" msgstr "Назив ставке" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "Назив ставке је обавезан." @@ -27444,8 +27463,8 @@ msgstr "Подешавање цене ставке" msgid "Item Price Stock" msgstr "Цене ставке на складишту" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27457,7 +27476,7 @@ msgstr "Цена ставке се појављује више пута на о msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Цена ставке ажурирана за {0} у ценовнику {1}" @@ -27502,7 +27521,7 @@ msgstr "Поновно наручивање ставке" msgid "Item Row" msgstr "Ред ставке" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Ред ставке {0}: {1} {2} не постоји у наведеној '{1}' табели" @@ -27618,7 +27637,7 @@ msgstr "Ставка за производњу" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Варијанта ставке" @@ -27737,7 +27756,7 @@ msgstr "Порески детаљи по ставкама" msgid "Item Wise Tax Details" msgstr "Детаљи пореза по ставкама" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "Детаљи пореза по ставкама се не поклапају са порезима и трошковима у следећим редовима:" @@ -27773,7 +27792,7 @@ msgstr "Ставка је обавезна у табели сировина." msgid "Item is removed since no serial / batch no selected." msgstr "Ставка је уклоњена јер није изабран број серије / шарже." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Ставка мора бити додата коришћењем дугмета 'Преузми ставке из пријемнице набавке'" @@ -27787,7 +27806,7 @@ msgstr "Назив ставке" msgid "Item operation" msgstr "Ставка операције" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "Цена ставке је ажурирана на нулу јер је означена опција 'Дозволи нулту стопу вредновања' за ставку {0}" @@ -27802,7 +27821,7 @@ msgstr "Ставка за производњу" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "Стопа вредновања ставке је прерачуната узимајући у обзир зависне трошкове набавке" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Поновна обрада вредновања ставке је у току. Извештај може приказати нетачно вредновање ставке." @@ -27818,10 +27837,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "Ставка {0} је додата више пута под истом матичном ставком {1} у редовима {2} и {3}" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "Ставка {0} не може бити додата као подсклоп саме себе" @@ -27830,6 +27845,10 @@ msgstr "Ставка {0} не може бити додата као подскл msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Ставка {0} не може бити наручена у количини већој од {1} према оквирном налогу {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27839,6 +27858,7 @@ msgstr "Ставка {0} не постоји" msgid "Item {0} does not exist in the system or has expired" msgstr "Ставка {0} не постоји у систему или је истекла" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Ставка {0} не постоји." @@ -27871,6 +27891,10 @@ msgstr "Ставка {0} је достигла крај свог животно msgid "Item {0} ignored since it is not a stock item" msgstr "Ставка {0} је занемарена јер није ставка на залихама" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Ставка {0} је већ резервисана / испоручена према продајној поруџбини {1}." @@ -27903,7 +27927,7 @@ msgstr "Ставка {0} није ставка за подуговарање" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "Ставка {0} није активна или је достигла крај животног века" @@ -27935,10 +27959,6 @@ msgstr "Ставка {0}: Наручена количина {1} не може б msgid "Item {0}: {1} qty produced. " msgstr "Ставка {0}: Произведена количина {1}. " -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "Ставка {} не постоји." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27989,6 +28009,10 @@ msgstr "Ставка/Шифра ставке је неопходна за пре msgid "Item: {0} does not exist in the system" msgstr "Ставка: {0} не постоји у систему" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -28005,7 +28029,7 @@ msgstr "Каталог ставки" msgid "Items Filter" msgstr "Филтер ставки" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Потребне ставке" @@ -28045,7 +28069,7 @@ msgstr "Ставке за захтев за набавку сировина" msgid "Items not found." msgstr "Ставке нису пронађене." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "Цена ставки је ажурирана на нулу јер је опција дозволи нулту стопу вредновања означена за следеће ставке: {0}" @@ -28055,7 +28079,7 @@ msgstr "Цена ставки је ажурирана на нулу јер је msgid "Items to Be Repost" msgstr "Ставке за поновно књижење" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Ставке за производњу су потребне за преузимање повезаних сировина." @@ -28125,7 +28149,7 @@ msgstr "Капацитет посла" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28188,20 +28212,19 @@ msgstr "Запис времена радне картице" msgid "Job Card and Capacity Planning" msgstr "Радна картица и планирање капацитета" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "Радна картица {0} је завршен" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "Радне картице" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "Посао паузиран" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Посао започет" @@ -28264,11 +28287,19 @@ msgstr "Назив извршиоца посла" msgid "Job Worker Warehouse" msgstr "Складиште извршиоца посла" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Радна картица {0} је креирана" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "Посао: {0} је покренут за обраду неуспелих трансакција" @@ -28614,8 +28645,8 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "Последње ажурирање уноса у главну књигу је извршено {}. Ова операција није дозвољена док је систем активно у употреби. Молимо Вас да сачекате 5 минута пре него што покушате поново." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28735,7 +28766,7 @@ msgstr "Географска ширина" msgid "Lead" msgstr "Потенцијални клијент" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Потенцијални клијент -> Могући купац" @@ -28829,7 +28860,7 @@ msgstr "Време испоруке у данима" msgid "Lead Type" msgstr "Врста потенцијалног клијента" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "Потенцијални клијент {0} је додат у могућег купца {1}." @@ -28978,7 +29009,7 @@ msgstr "Легенда" msgid "Length (cm)" msgstr "Дужина (цм)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Мање од износа" @@ -29007,7 +29038,7 @@ msgstr "Ниво (Саставница)" msgid "Lft" msgstr "Лева позиција" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Обавезе" @@ -29037,7 +29068,7 @@ msgstr "Број возачке дозволе" msgid "License Plate" msgstr "Број регистарске ознаке" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Прекорачен лимит" @@ -29133,8 +29164,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Повезивање са купцем није успело. Молимо покушајте поново." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Повезивање са добављачем није успело. Молимо покушајте поново." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29300,7 +29331,7 @@ msgstr "Детаљи о разлогу губитка" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Разлози губитка" @@ -29386,7 +29417,7 @@ msgstr "Искоришћење поена лојалности" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Поени лојалности биће израчунати на основу потрошње (путем излазне фактуре), на основу поменутог фактора прикупљања." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Поени лојалности: {0}" @@ -29624,7 +29655,7 @@ msgstr "Детаљи распореда одржавања" msgid "Maintenance Schedule Item" msgstr "Ставка распореда одржавања" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Распоред одржавања није генерисан за све ставке. Молимо Вас да кликнете на 'Генериши распоред'" @@ -29721,7 +29752,7 @@ msgstr "Посета одржавања" msgid "Maintenance Visit Purpose" msgstr "Сврха посете одржавања" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Датум почетка одржавања не може бити пре датума испоруке за број серије {0}" @@ -29868,7 +29899,7 @@ msgstr "Обавезно за биланс стања" msgid "Mandatory For Profit and Loss Account" msgstr "Обавезно за рачун биланса успеха" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Недостаје обавезно" @@ -29951,8 +29982,8 @@ msgstr "Ручно уношење не може бити креирано! Он #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30174,7 +30205,7 @@ msgstr "Мапирање налога за пријем из подуговар msgid "Mapping Subcontracting Order ..." msgstr "Мапирање налога за подуговарање ..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Мапирање {0} ..." @@ -30352,10 +30383,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30382,7 +30409,7 @@ msgstr "Потрошња материјала" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Потрошња материјала за производњу" @@ -30493,7 +30520,7 @@ msgstr "Захтев за набавку" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Датум захтева за набавку" @@ -30543,7 +30570,7 @@ msgstr "Детаљи захтева за набавку" msgid "Material Request Item" msgstr "Ставка захтева за набавку" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Број захтева за набавку" @@ -30565,7 +30592,7 @@ msgstr "Врста захтева за набавку" msgid "Material Request already created for the ordered quantity" msgstr "Захтев за набавку је већ креиран за наручену количину" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Захтев за набавку није креиран, јер је количина сировина већ доступна." @@ -30579,7 +30606,7 @@ msgstr "Максимално {0} захтева за набавку може б msgid "Material Request used to make this Stock Entry" msgstr "Захтев за набавку коришћен за овај унос залиха" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Захтев за набавку {0} је отказан или заустављен" @@ -30699,14 +30726,14 @@ msgstr "Материјал ка добављачу" msgid "Materials To Be Transferred" msgstr "Материјал за пренос" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Материјали су већ примљени према {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "Материјали морају бити премештени у складиште недовршене производње за радну картицу {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30874,7 +30901,7 @@ msgstr "Мегаџул" msgid "Megawatt" msgstr "Мегават" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Навести стопу вредновања у мастер подацима ставки." @@ -30909,7 +30936,7 @@ msgstr "Напредак спајања" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Споји порезе из више докумената" @@ -31255,7 +31282,7 @@ msgstr "Разни трошкови" msgid "Mismatch" msgstr "Неподударање" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Недостаје" @@ -31264,11 +31291,11 @@ msgstr "Недостаје" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Недостајући рачун" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "Недостајући рачуни" @@ -31293,11 +31320,11 @@ msgstr "" msgid "Missing Filters" msgstr "Недостају филтери" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Недостајућа финансијска евиденција" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Недостаје готов производ" @@ -31305,7 +31332,7 @@ msgstr "Недостаје готов производ" msgid "Missing Formula" msgstr "Недостаје формула" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Недостајућа ставка" @@ -31317,7 +31344,7 @@ msgstr "Недостајући параметар" msgid "Missing Payments App" msgstr "Недостаје апликација за уплате" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31329,7 +31356,7 @@ msgstr "Недостаје број серије пакета" msgid "Missing Warehouse" msgstr "Недостаје складиште" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "Недостаје конфигурација рачун за компанију {0}." @@ -31337,12 +31364,12 @@ msgstr "Недостаје конфигурација рачун за компа msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Недостаје имејл шаблон за слање. Молимо Вас да га поставите у подешавањима испоруке." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Недостаје обавезни филтер: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Недостајућа вредност" @@ -31591,17 +31618,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Пронађено је више програма лојалности за купца {}. Молимо Вас да изаберете ручно." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "Вишеструки уноси почетног стања малопродаје" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Постоји више ценовних правила са истим критеријумима, молимо Вас да решите конфликт додељивањем приоритета. Ценовна правила: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31621,7 +31648,7 @@ msgstr "Доступно је више поља компаније: {0}. Мол msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Постоји више фискалних година за датум {0}. Молимо поставите компанију у фискалну годину" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "Више ставки не може бити означено као готов производ" @@ -31630,10 +31657,10 @@ msgid "Music" msgstr "Музика" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Мора бити цео број" @@ -31718,11 +31745,7 @@ msgstr "Серија именовања је обавезна" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "Серија именовања '{0}' за DocType '{1}' не садржи стандардни сепаратор '.' или '{{'. Користи се резервни начин екстракције." @@ -31766,7 +31789,7 @@ msgstr "Анализа потребна" msgid "Negative Batch Report" msgstr "Извештај о шаржама са негативним стањем" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Негативна количина није дозвољена" @@ -31776,12 +31799,12 @@ msgstr "Негативна количина није дозвољена" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "Грешка због негативног стања залиха" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Негативна стопа вредновања није дозвољена" @@ -31859,8 +31882,8 @@ msgstr "Нето износ" msgid "Net Amount (Company Currency)" msgstr "Нето износ (валута компаније)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Нето вредност имовине на дан" @@ -31910,7 +31933,7 @@ msgstr "Нето сатница" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Нето профит" @@ -31918,7 +31941,7 @@ msgstr "Нето профит" msgid "Net Profit Ratio" msgstr "Стопа нето добитка" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Нето добитак/губитак" @@ -31932,11 +31955,11 @@ msgstr "Нето добитак/губитак" msgid "Net Purchase Amount" msgstr "Нето износ набавке" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "Нето износ набавке је обавезан" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "Нето износ набавке треба да буде једнак износу набавке појединачне имовине." @@ -32180,7 +32203,7 @@ msgstr "Нова фискална година - {0}" msgid "New Income" msgstr "Нови приход" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "Нова фактура" @@ -32253,6 +32276,7 @@ msgid "New Task" msgstr "Нови задатак" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Нова верзија" @@ -32265,9 +32289,9 @@ msgstr "Нови назив складишта" msgid "New Workplace" msgstr "Ново радно место" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Нови кредитни лимит је мањи од тренутног неизмиреног износа за купца. Кредитни лимит мора бити најмање {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32275,6 +32299,10 @@ msgstr "Нови кредитни лимит је мањи од тренутно msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Нове фактуре ће бити генерисане према распореду, иако тренутне фактуре нису плаћене или је прошао датум доспећа" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Нови датум издавања мора бити у будућности" @@ -32287,7 +32315,7 @@ msgstr "Нови ревидирани буџет је успешно креир msgid "New task" msgstr "Нови задатак" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Нова {0} ценовна правила су креирана" @@ -32351,16 +32379,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Није пронађен купац за међукомпанијске трансакције који представљају компанију {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "Нема купаца са изабраним опцијама." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Не постоје изабране отпремнице за купца {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "Нема DocType-ова на листи за брисање. Молимо Вас да генеришете или увезете листу пре подношења." @@ -32368,15 +32395,15 @@ msgstr "Нема DocType-ова на листи за брисање. Молим msgid "No Impact on Accounting Ledger" msgstr "Без утицаја на главну књигу" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Нема ставки са бар-кодом {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Нема ставке са бројем серије {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "Нема ставки изабраних за трансфер." @@ -32419,11 +32446,6 @@ msgstr "Без дозволе" msgid "No Purchase Orders were created" msgstr "Ниједна набавна поруџбина није креирана" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "Без записа за ове поставке." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Није извршен избор" @@ -32526,6 +32548,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "Нису пронађени контакти са имејл адресама." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Нема података за овај период" @@ -32571,7 +32597,7 @@ msgstr "Није отпремљен фајл нити је унет URL." msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "Не постоји ставка доступна за трансфер." @@ -32608,10 +32634,6 @@ msgstr "Нема више зависних елемената са леве ст msgid "No more children on Right" msgstr "Нема више зависних елемената са десне стране" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Број испорука" @@ -32708,7 +32730,7 @@ msgstr "Нису пронађене неизмирене фактуре" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Ниједна неизмирена фактура не захтева ревалоризацију девизног курса" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "Није пронађен ниједан неизмирени {0} за {1} {2} који квалификује филтере које сте навели." @@ -32746,15 +32768,20 @@ msgstr "" msgid "No record found" msgstr "Нема записа" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "Није пронађен запис у табели расподеле" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "Није пронађен запис у табели фактура" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "Није пронађен запис у табели уплата" @@ -32783,7 +32810,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "Нема доступних залиха за ову шаржу." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "Уноси у књигу залиха нису креирани. Молимо Вас да правилно подесите количину или стопу вредновања за ставке и да покушате поново." @@ -32820,7 +32847,7 @@ msgstr "Без вредности" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32828,11 +32855,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "Нема {0} за међукомпанијске трансакције." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "Бр." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32884,7 +32906,7 @@ msgstr "Нема нула" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "Није могуће креирати саставницу која није виртуелна за ставку ван залиха {0}." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Ниједна од ставки није имала промене у количини или вредности." @@ -32895,8 +32917,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "Комад" @@ -32910,8 +32932,8 @@ msgstr "Комад" msgid "Not Applicable" msgstr "Није примењиво" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Није доступно" @@ -32974,10 +32996,6 @@ msgstr "Није започето" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "Није могуће пронаћи најранију фискалну годину за дату компанију." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Није дозвољено поставити алтернативну ставку за ставку {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Није дозвољено креирати рачуноводствену димензију за {0}" @@ -32994,10 +33012,6 @@ msgstr "Није дозвољено јер {0} премашује лимите" msgid "Not authorized to edit frozen Account {0}" msgstr "Није дозвољено изменити закључани рачун {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "Није пронађено на складишту" @@ -33010,7 +33024,7 @@ msgstr "Није пронађено на складишту" msgid "Not permitted to make Purchase Orders" msgstr "Није дозвољено креирање набавних поруџбина" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33255,8 +33269,8 @@ msgid "Numeric Values" msgstr "Нумеричке вредности" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Број није постављен у XML фајлу" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33431,12 +33445,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Када је постављено, ова фактура ће бити на чекању до поновљеног датума" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "Када је радни налог затворен, не може се поново покренути." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Један купац може бити део само једног програма лојалности." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33470,7 +33484,7 @@ msgstr "Подржани су само 'Уноси плаћања' који су msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Само CSV и Excel фајлови могу бити коришћени за увоз података. Молимо Вас да проверите формат фајла који покушавате да увезете" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "Дозвољени су искључиво CSV фајлови" @@ -33535,7 +33549,7 @@ msgstr "Само једна операција може имати означе msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "Може се креирати само један {0} унос против радног налога {1}" @@ -33602,7 +33616,7 @@ msgstr "Отвори догађај" msgid "Open Events" msgstr "Отвори догађаје" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Отвори приказ формулара" @@ -33755,7 +33769,7 @@ msgstr "Почетно стање = почетак периода, завршн #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Детаљи почетног стања" @@ -33785,7 +33799,7 @@ msgstr "Почетни датум" msgid "Opening Entry" msgstr "Унос почетног стања" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Креирање почетне фактуре је у току" @@ -33813,7 +33827,7 @@ msgstr "Ставка почетне фактуре" msgid "Opening Invoice Tool" msgstr "Алат за унос почетних фактура" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "Почетна фактура има прилагођавање за заокруживање од {0}.

                    За књижење ових вредности потребан је рачун '{1}'. Молимо Вас да га поставите у компанији: {2}.

                    Или можете омогућити '{3}' да не поставите никакво прилагођавање за заокруживање." @@ -33822,7 +33836,7 @@ msgstr "Почетна фактура има прилагођавање за з msgid "Opening Invoices" msgstr "Почетне фактуре" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Резиме почетних фактура" @@ -33852,20 +33866,20 @@ msgstr "Почетне излазне фактуре су креиране." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Почетни лагер" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33874,7 +33888,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33917,7 +33931,7 @@ msgstr "Трошак оперативних компоненти" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Оперативни трошак" @@ -34008,7 +34022,7 @@ msgstr "Број реда операције" msgid "Operation Time" msgstr "Време операције" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Време операције за операцију {0} мора бити веће од 0" @@ -34032,8 +34046,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "Операција {0} не припада радном налогу {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Операција {0} траје дуже од било којег доступног радног времена на радној станици {1}, поделите операцију на више операција" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34218,6 +34232,10 @@ msgstr "Прилика {0} креирана" msgid "Optimize Route" msgstr "Оптимизуј руту" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "Опционо. Изаберите конкретан унос производње који желите да поништите." @@ -34234,10 +34252,6 @@ msgstr "Опционо. Ово подешавање ће се користити msgid "Optional. Used with Financial Report Template" msgstr "Опционо. Користи се уз шаблон финансијског извештаја" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Износ наруџбине" @@ -34523,7 +34537,7 @@ msgid "Out of stock" msgstr "Нема на стању" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "Застарели унос почетног стања малопродаје" @@ -34577,7 +34591,7 @@ msgstr "Неизмирено (валута компаније)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34658,11 +34672,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Дозвола за преузимање вишка (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "Прекорачење пријема" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "Прекорачење пријема/испоруке од {0} {1} занемарено за ставку {2} јер имате улогу {3}." @@ -34679,14 +34693,14 @@ msgstr "Дозвола за прекорачење преноса (%)" msgid "Over Withheld" msgstr "Прекомерно обрачунат порез по одбитку" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "Прекорачење фактурисања од {0} {1} је занемарено за ставку {2} јер имате улогу {3}." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "Прекорачење фактурисања од {} је занемарено јер имате улогу {}." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34735,10 +34749,6 @@ msgstr "Прекорачени задаци" msgid "Overdue and Discounted" msgstr "Прекорачено и снижено" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Преклапање у оцењивању између {0} и {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Пронађени преклапајући услови између:" @@ -34804,6 +34814,11 @@ msgstr "ПИБ" msgid "PCV" msgstr "Документ за затварање периода" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "Документ за затварање периода је паузиран" @@ -34851,7 +34866,7 @@ msgstr "Малопродаја" msgid "POS Additional Fields" msgstr "Додатна поља за малопродају" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "Малопродаја затворена" @@ -34949,8 +34964,8 @@ msgid "POS Invoice is not submitted" msgstr "Фискални рачун није поднет" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "Фискални рачун није креиран од стране корисника {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35009,7 +35024,7 @@ msgstr "Унос почетног стања малопродаје - {0} је msgid "POS Opening Entry Cancellation Error" msgstr "Грешка при отказивању уноса почетног стања малопродаје" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "Унос почетног стања малопродаје је отказан" @@ -35030,7 +35045,7 @@ msgstr "Недостаје унос почетног стања малопрод msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "Унос почетног стања малопродаје не може бити отказан јер постоје неконсолидовани рачуни." -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "Унос почетног стања малопродаје је отказан. Молимо Вас да освежите страницу." @@ -35053,7 +35068,7 @@ msgstr "Метод плаћања у малопродаји" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "Профил малопродаје" @@ -35073,8 +35088,8 @@ msgstr "Корисник малопродаје" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "Профил малопродаје се не поклапа са {}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35085,20 +35100,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "Профил малопродаје {0} не може бити онемогућен јер постоје активне малопродајне сесије." #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "Профил малопродаје {} садржи начин плаћања {}. Молимо Вас да га уклоните да бисте онемогућили овај начин." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "Профил малопродаје {} не припада компанији {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "Профил малопродаје {} не постоји." +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "Профил малопродаје {} је онемогућен." +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35127,11 +35142,11 @@ msgstr "Подешавања малопродаје" msgid "POS Transactions" msgstr "Малопродајне трансакције" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "Малопродаја је затворена у {0}. Молимо Вас да освежите страницу." -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "Фискални рачун {0} је успешно креиран" @@ -35150,7 +35165,7 @@ msgstr "PSOA пројекат" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "Пакетни број(еви) су већ у употреби. Покушајте од броја пакета {0}" @@ -35775,7 +35790,7 @@ msgstr "Милионити део" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35902,7 +35917,7 @@ msgstr "Неподударање странке" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35988,7 +36003,7 @@ msgstr "Специфична ставка странке" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36009,7 +36024,7 @@ msgstr "Врста странке" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "Врста странке и странка могу бити постављени за рачун потраживања / обавеза

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Врста странке и странка су обавезни за рачун {0}" @@ -36045,7 +36060,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36555,7 +36570,7 @@ msgstr "Референце плаћања" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36630,7 +36645,7 @@ msgstr "Распоред плаћања" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "Захтев за наплату на основу распореда плаћања не може бити креиран јер већ постоји налог за плаћање за овај документ." -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "Распореди плаћања" @@ -36652,7 +36667,7 @@ msgstr "Распореди плаћања" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36752,8 +36767,8 @@ msgid "Payment Type" msgstr "Врста плаћања" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Врста плаћања мора бити једна од следећих ставки: Прими, Плати или Интерни трансфер" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36959,11 +36974,11 @@ msgstr "Активности на чекању за данас" msgid "Pending processing" msgstr "На чекању за обраду" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37479,12 +37494,12 @@ msgstr "Plaid ИД клијента" msgid "Plaid Environment" msgstr "Plaid окружење" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Веза за Plaid -ом није успешна" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Потребно је освежавање везе са Plaid -ом" @@ -37506,7 +37521,7 @@ msgstr "Plaid тајни кључ" msgid "Plaid Settings" msgstr "Plaid подешавања" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Грешка при синхронизацији Plaid трансакција" @@ -37657,15 +37672,6 @@ msgstr "Постројења и машине" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Молимо Вас да допуните ставке и ажурирате листу за одабир за наставак. Да бисте прекинули, откажите листу за одабир." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Молимо Вас да изаберете компанију" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Молимо Вас да изаберете компанију." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37673,7 +37679,6 @@ msgstr "Молимо Вас да изаберете купца" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Молимо Вас да изаберете добављача" @@ -37681,19 +37686,19 @@ msgstr "Молимо Вас да изаберете добављача" msgid "Please Set Priority" msgstr "Молимо Вас да поставите приоритет" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Молимо Вас да поставите групу добављача у подешавањима за набавку." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Молимо Вас да наведете рачун" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Молимо Вас да додате улогу 'Добављач' кориснику {0}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Молимо Вас да додате начин плаћања и детаље почетног стања." @@ -37709,7 +37714,7 @@ msgstr "Молимо Вас да додате захтев за понуду у msgid "Please add Root Account for - {0}" msgstr "Молимо Вас да додате основни рачун за - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Молимо Вас да додате привремени рачун за отварање почетног стања у контни оквир" @@ -37717,35 +37722,32 @@ msgstr "Молимо Вас да додате привремени рачун з msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Молимо Вас да додате барем један број серије / шарже" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Молимо Вас да додате колону за текући рачун" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Молимо Вас да додате рачун за основни ниво компаније - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Молимо Вас да додате рачун за основни ниво компаније - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Молимо Вас да додате улогу {1} кориснику {0}." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Молимо Вас да прилагодите количину или измените {0} за наставак." @@ -37787,7 +37789,7 @@ msgstr "Молимо Вас да проверите оперативне тро msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "Молимо Вас да означите опцију 'Активирај број серије и шарже за ставку' у документу {0} како бисте омогућили пакет серије / шарже за ту ставку." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Молимо Вас да проверите поруке о грешкама, предузмите потребне кораке да исправите грешку и затим поново покрените процес поновне обраде." @@ -37800,11 +37802,11 @@ msgstr "Молимо Вас да проверите свој Plaid клијен msgid "Please check your email to confirm the appointment" msgstr "Молимо Вас да проверите свој имејл да бисте потврдили термин" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Молимо Вас да кликенте на 'Генериши распоред'" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Молимо Вас да кликнете на 'Генериши распоред' да преузмете број серије додат за ставку {0}" @@ -37820,15 +37822,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Молимо Вас да контактирате било ког од следећих корисника да бисте проширили кредитни лимит за {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Молимо Вас да контактирате било кога од следећих корисника да бисте {} ову трансакцију." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Молимо Вас да контакирате свог администратора да бисте проширили кредитне лимите за {0}." @@ -37836,11 +37838,11 @@ msgstr "Молимо Вас да контакирате свог админис msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Молимо Вас да претворите матични рачун у одговарајућој зависној компанији у групни рачун." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Молимо Вас да креирате купца из потенцијалног клијента {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Молимо Вас да креирате документ зависних трошкова набавке за фактуре које имају омогућену опцију 'Ажурирај залихе'." @@ -37852,7 +37854,7 @@ msgstr "Молимо Вас да креирате нову рачуноводс msgid "Please create purchase from internal sale or delivery document itself" msgstr "Молимо Вас да креирате набавку из интерне продаје или из самог документа о испоруци" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Молимо Вас да креирате пријемницу набавке или улазну фактуру за ставку {0}" @@ -37864,11 +37866,11 @@ msgstr "Молимо Вас да обришете производну комб msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "Молимо Вас да привремено онемогућите радни ток за налог књижења {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Молимо Вас да не књижите трошак више различитих ставки имовине на једну ставку имовине." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Молимо Вас да не креирате више од 500 ставки одједном" @@ -37893,8 +37895,8 @@ msgid "Please enable {0} in the {1}." msgstr "Молимо Вас да омогућите {0} у {1}." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Молимо Вас да омогућите {} у {} да бисте омогућили исту ставку у више редова" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37905,12 +37907,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Молимо Вас да се уверите да је рачун {0} {1} рачун обавеза. Можете променити врсту рачуна у обавезе или изабрати други рачун." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Молимо Вас да водите рачуна да је рачун {} рачун у билансу стања." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Молимо Вас да водите рачуна да {} рачун {} представља рачун потраживања." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37925,7 +37927,7 @@ msgstr "Молимо Вас да унесете рачун за кусур" msgid "Please enter Approving Role or Approving User" msgstr "Молимо Вас да унесете улогу одобравања или корисника који одобрава" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Молимо Вас да унесете број шарже" @@ -37941,7 +37943,7 @@ msgstr "Молимо Вас да унесете датум испоруке" msgid "Please enter Employee Id of this sales person" msgstr "Молимо Вас да унесете ИД запосленог лица за овог продавца" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Молимо Вас да унесете рачун расхода" @@ -37950,7 +37952,7 @@ msgstr "Молимо Вас да унесете рачун расхода" msgid "Please enter Item Code to get Batch Number" msgstr "Молимо Вас да унесете шифру ставке да бисте добили број шарже" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Молимо Вас да унесете шифру ставке да бисте добили број шарже" @@ -37986,7 +37988,7 @@ msgstr "Молимо Вас да унесете датум референце" msgid "Please enter Root Type for account- {0}" msgstr "Молимо Вас да унесете врсту главног рачуна за рачун - {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Молимо Вас да унесете број серије" @@ -38116,8 +38118,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "Молимо Вас да генеришете листу за брисање пре подношења" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Молимо Вас да увезете рачуне према матичној компанији или да омогућите {} у мастер подацима о компанији." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38152,11 +38154,7 @@ msgstr "Молимо Вас да наведете тренутну и нову msgid "Please pull items from Delivery Note" msgstr "Молимо Вас да преузмете ставке из отпремнице" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Молимо Вас да исправите грешку и покушате поново." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Молимо Вас да освежите или ресетујете Plaid везу са банком {}." @@ -38185,12 +38183,12 @@ msgstr "Сачувајте продајну поруџбину пре додав msgid "Please select Template Type to download template" msgstr "Молимо Вас да изаберете Врсту шаблона да преузмете шаблон" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Молимо Вас да изаберете на шта ће се применити попуст" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Молимо Вас да изаберете саставницу за ставку {0}" @@ -38206,9 +38204,9 @@ msgstr "Молимо Вас да изаберете текући рачун" msgid "Please select Category first" msgstr "Молимо Вас да прво изаберете категорију" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Молимо Вас да прво изаберете врсту трошка" @@ -38218,8 +38216,8 @@ msgstr "Молимо Вас да изаберете компанију" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Молимо Вас да изаберете компанију и датум књижења да бисте добили уносе" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38241,7 +38239,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Молимо Вас да изаберете постојећу компанију за креирање контног оквира" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Молимо Вас да изаберете готов производ за услужну ставку {0}" @@ -38250,6 +38248,10 @@ msgstr "Молимо Вас да изаберете готов производ msgid "Please select Item Code first" msgstr "Молимо Вас да прво изаберете шифру ставке" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Молимо Вас да изаберете статус одржавања као Завршено или уклоните датум завршетка" @@ -38274,11 +38276,11 @@ msgstr "Молимо Вас да изаберете датум књижења п msgid "Please select Posting Date first" msgstr "Молимо Вас да прво изаберете датум књижења" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Молимо Вас да изаберете ценовник" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Молимо Вас да изаберете количину за ставку {0}" @@ -38307,6 +38309,7 @@ msgid "Please select a BOM" msgstr "Молимо Вас да изаберете саставницу" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Молимо Вас да изаберете компанију" @@ -38314,11 +38317,12 @@ msgstr "Молимо Вас да изаберете компанију" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Молимо Вас да прво изаберете компанију." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Молимо Вас да изаберете купца" @@ -38327,7 +38331,7 @@ msgstr "Молимо Вас да изаберете купца" msgid "Please select a Delivery Note" msgstr "Молимо Вас да изаберете отпремницу" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Молимо Вас да изаберете набавну поруџбину подуговарања." @@ -38339,7 +38343,7 @@ msgstr "Молимо Вас да изаберете добављача" msgid "Please select a Warehouse" msgstr "Молимо Вас да изаберете складиште" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Молимо Вас да прво изаберете радни налог." @@ -38355,6 +38359,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38388,22 +38393,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "Молимо Вас да изаберете учесталост распореда испорука" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Молимо Вас да изаберете ред за креирање поновног књижења" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Молимо Вас да изаберете добављача за преузимање уплата." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Молимо Вас да изаберете валидну набавну поруџбину која је конфигурисана за подуговарање." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Молимо Вас да изаберете вредност за {0} понуду за {1}" @@ -38412,7 +38421,7 @@ msgstr "Молимо Вас да изаберете вредност за {0} п msgid "Please select an item code before setting the warehouse." msgstr "Молимо Вас да изаберете шифру ставке пре него што поставите складиште." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38420,10 +38429,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Молимо Вас да изаберете барем један филтер: Шифра ставке, шаржа или број серије." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Молимо Вас да изаберете барем један ред за исправку" @@ -38432,18 +38449,10 @@ msgstr "Молимо Вас да изаберете барем један ред msgid "Please select at least one row with difference value" msgstr "Молимо Вас да изаберете најмање један ред са вредношћу разлике" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "Молимо Вас да изаберете барем један распоред." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "Молимо Вас да изаберете барем једну ставку да бисте наставили" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "Молимо Вас да изаберете барем једну операцију за креирање радне картице" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Молимо Вас да изаберете исправан рачун" @@ -38481,12 +38490,12 @@ msgstr "Молимо Вас да изаберете ставке које тре msgid "Please select items to unreserve." msgstr "Молимо Вас да изаберете ставке за које поништавате резервисање." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Молимо Вас да изаберете само један ред за креирање поновног књижења" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Молимо Вас да изаберете редове за креирање уноса поновне обраде" @@ -38495,8 +38504,8 @@ msgid "Please select the Company" msgstr "Молимо Вас да изаберете компанију" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Молимо Вас да изаберете врсту програма са више нивоа за више правила наплате." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38519,20 +38528,16 @@ msgstr "Молимо Вас да прво изаберете врсту доку msgid "Please select the required filters" msgstr "Молимо Вас да изаберете потребне филтере" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Молимо Вас да изаберете валидну врсту документа." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Молимо Вас да изаберете недељни дан одмора" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Молимо Вас да прво изаберете {0}" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Молимо Вас да поставите 'Примени додатни попуст на'" @@ -38561,8 +38566,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Молимо Вас да поставите рачун у складишту {0} или подразумевани рачун инвентара у компанији {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Молимо Вас да поставите рачуноводствену димензију {} у {}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38591,22 +38596,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Молимо Вас да поставите имејл/телефон за контакт" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Молимо Вас да поставите фискалну шифру за купца '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Молимо Вас да поставите фискалну шифру за купца '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Молимо Вас да поставите фискалну шифру за јавну управу '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Молимо Вас да поставите фискалну шифру за јавну управу '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "Молимо Вас да поставите рачун основних средстава у категорији имовине {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Молимо Вас да поставите рачун основних средстава у {} против {}." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38622,9 +38625,8 @@ msgid "Please set Root Type" msgstr "Молимо Вас да поставите врсту главног рачуна" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Молимо Вас да поставите порески број за купца '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Молимо Вас да поставите порески број за купца '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38643,15 +38645,15 @@ msgid "Please set a Company" msgstr "Молимо Вас да поставите компанију" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Молимо Вас да поставите трошковни центар за имовину или трошковни центар амортизације имовине за компанију {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Молимо Вас да поставите подразумевану листу празника за компанију {0}" @@ -38668,9 +38670,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "Молимо Вас подесите стварну потражњу или прогнозу продаје да бисте генерисали извештај о планирању потреба за материјалом." #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Молимо Вас да поставите адресу на компанију '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "Молимо Вас да поставите адресу на компанију '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38688,25 +38689,22 @@ msgstr "Молимо Вас да поставите бар један ред у msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "Молимо Вас да поставите или пореску или фискалну шифру за компанију {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Молимо Вас да поставите као подразумевано благајну или текући рачун у начину плаћања {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Молимо Вас да поставите као подразумевано благајну или текући рачун у начину плаћања {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Молимо Вас да поставите као подразумевано благајну или текући рачун у начину плаћања {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Молимо Вас да поставите као подразумевано благајну или текући рачун у начинима плаћања {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Молимо Вас да поставите подразумевани рачун прихода/расхода курсних разлика у компанији {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38737,11 +38735,11 @@ msgstr "Молимо Вас да поставите филтер на основ msgid "Please set one of the following:" msgstr "Молимо Вас да поставите једно од следећег:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "Молимо Вас да унесете почетни број књижених амортизација" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Молимо Вас да поставите понављање након чувања" @@ -38749,7 +38747,7 @@ msgstr "Молимо Вас да поставите понављање нако msgid "Please set the Customer Address" msgstr "Молимо Вас да поставите адресу купца" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Молимо Вас да поставите подразумевани трошковни центар у компанији {0}." @@ -38804,7 +38802,7 @@ msgstr "Молимо Вас да поставите {0} у компанији {1 msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Молимо Вас да поставите {0} у {1}, исти рачун који је коришћен у оригиналној фактури {2}." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Молимо Вас да поставите и омогућите групни рачун са врстом рачуна - {0} за компанију {1}" @@ -38812,7 +38810,7 @@ msgstr "Молимо Вас да поставите и омогућите гру msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Молимо Вас да поделите овај имејл са Вашим тимом за подршку како би могли пронаћи и решити проблем." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Молимо Вас да прецизирате компанију" @@ -38822,8 +38820,8 @@ msgstr "Молимо Вас да прецизирате компанију" msgid "Please specify Company to proceed" msgstr "Молимо Вас да прецизирате компанију да бисте наставили" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Молимо Вас да прецизирате валидан ИД ред за ред {0} у табели {1}" @@ -38831,11 +38829,11 @@ msgstr "Молимо Вас да прецизирате валидан ИД ре msgid "Please specify a {0} first." msgstr "Молимо Вас прецизирајте {0}." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Молимо Вас да прецизирате барем један атрибут у табели атрибута" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Молимо Вас да прецизирате или количину или стопу вредновања или оба" @@ -38843,6 +38841,14 @@ msgstr "Молимо Вас да прецизирате или количину msgid "Please specify from/to range" msgstr "Молимо Вас да прецизирате почетни и крајњи опсег" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Молимо Вас да покушате поново за сат времена." @@ -39006,7 +39012,7 @@ msgstr "Објављено на" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39031,7 +39037,7 @@ msgstr "Објављено на" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39074,8 +39080,8 @@ msgstr "Датум књижења" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Датум књижења не може бити у будућности" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39083,7 +39089,7 @@ msgstr "Датум књижења не може бити у будућности msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "Датум књижења ће се променити на данашњи дан јер опција за измену датума и времена није означена. Да ли сте сигурни да желите да наставите?" @@ -39276,6 +39282,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "Унапред плаћени расходи" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "Председник" @@ -39365,7 +39375,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Претходна фискална година није затворена" @@ -39507,7 +39517,7 @@ msgstr "Земља ценовника" msgid "Price List Currency" msgstr "Валута ценовника" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Валута ценовника није изабрана" @@ -39628,7 +39638,7 @@ msgstr "Цена не зависи од саставнице" msgid "Price Per Unit ({0})" msgstr "Цена по јединици ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "Цена није постављена за ставку." @@ -39739,7 +39749,7 @@ msgstr "Ценовно правило се прво бира на основу msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "Ценовно правило је направљено да замени ценовник или дефинише проценат попуста, на основу неких критеријума." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "Правило цена {0} је ажурирано" @@ -39947,8 +39957,8 @@ msgid "Priorities" msgstr "Приоритети" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "Приоритет не може бити мањи од 1." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40129,7 +40139,7 @@ msgstr "Обрада претплате" msgid "Process in Single Transaction" msgstr "Обрада у једној трансакцији" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40255,7 +40265,7 @@ msgstr "Пакет производа" msgid "Product Bundle Balance" msgstr "Стање пакета производа" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40280,7 +40290,7 @@ msgstr "Помоћ за пакет производа" msgid "Product Bundle Item" msgstr "Ставка пакета производа" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40483,7 +40493,7 @@ msgstr "Производи" msgid "Profit & Loss" msgstr "Биланс успеха" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Добитак ове године" @@ -40512,6 +40522,10 @@ msgstr "Биланс успеха" msgid "Profit and Loss Statement" msgstr "Биланс успеха" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40520,8 +40534,8 @@ msgstr "Биланс успеха" msgid "Profit and Loss Summary" msgstr "Резиме биланса успеха" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Добитак за годину" @@ -40594,7 +40608,7 @@ msgstr "Статус пројекта" msgid "Project Summary" msgstr "Резиме пројекта" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Резиме пројекта за {0}" @@ -40674,7 +40688,7 @@ msgstr "Праћење залиха по пројекту" msgid "Project wise Stock Tracking " msgstr "Праћење залиха по пројекту " -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Подаци о пројекту нису доступни за понуду" @@ -40725,7 +40739,7 @@ msgstr "Очекивана количина" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40871,7 +40885,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Потенцијални купци укључени, али нису конвертовани" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "Заштићен DocType" @@ -40904,9 +40918,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "Привремени рачун расхода" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Привремени добитак/губитак (Потражује)" @@ -41134,8 +41148,8 @@ msgstr "Трендови улазних фактура" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Улазна фактура не може бити направљена за постојећу имовину {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Улазна фактура {0} је већ поднета" @@ -41176,7 +41190,7 @@ msgstr "Улазне фактуре" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41200,11 +41214,11 @@ msgstr "Улазне фактуре" msgid "Purchase Order" msgstr "Набавна поруџбина" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Износ набавне поруџбине" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Износ набавне поруџбине (валута компаније)" @@ -41219,7 +41233,7 @@ msgstr "Износ набавне поруџбине (валута компан msgid "Purchase Order Analysis" msgstr "Анализа набавне поруџбине" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Датум набавне поруџбине" @@ -41268,8 +41282,8 @@ msgid "Purchase Order Required" msgstr "Набавна поруџбина је обавезна" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Набавна поруџбина је обавезна за ставку {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41328,8 +41342,8 @@ msgid "Purchase Orders to Receive" msgstr "Набавне поруџбине за пријем" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Набавне поруџбине {0} нису повезане" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41418,8 +41432,8 @@ msgid "Purchase Receipt Required" msgstr "Пријемница набавке је обавезна" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Пријемница набавке је обавезна за ставку {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41438,8 +41452,8 @@ msgid "Purchase Receipt Trends " msgstr "Трендови пријемница набавке " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Пријемница набавке нема ниједну ставку за коју је омогућено задржавање узорка." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41666,7 +41680,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41685,7 +41699,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41750,7 +41764,7 @@ msgstr "Количина након трансакције" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41787,7 +41801,7 @@ msgstr "Количина по јединици" msgid "Qty To Manufacture" msgstr "Количина за производњу" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "Количина за производњу ({0}) не може бити децимални број за јединицу мере {2}. Да бисте омогућили ово, онемогућите '{1}' у јединици мере {2}." @@ -41882,7 +41896,7 @@ msgstr "Количина која треба бити утрошена" msgid "Qty to Bill" msgstr "Количина за фактурисање" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Количина за изградњу" @@ -42068,7 +42082,7 @@ msgstr "Инспекција квалитета" msgid "Quality Inspection Analysis" msgstr "Анализа инспекције квалитета" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42145,7 +42159,7 @@ msgstr "Инспекција квалитета {0} није поднета за msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "Инспекција квалитета {0} је одбијена за ставку: {1}" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Инспекције квалитета" @@ -42228,7 +42242,7 @@ msgstr "Преглед квалитета" msgid "Quality Review Objective" msgstr "Циљ прегледа квалитета" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42272,12 +42286,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42428,7 +42442,7 @@ msgstr "Количина је обавезна" msgid "Quantity must be greater than zero" msgstr "Количина мора бити већа од нуле" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "Количина мора бити већа од нуле." @@ -42456,11 +42470,11 @@ msgstr "Количина треба бити већа од 0" msgid "Quantity to Manufacture" msgstr "Количина за производњу" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "Количина за производњу не може бити нула за операцију {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Количина за производњу мора бити већа од 0." @@ -42468,6 +42482,10 @@ msgstr "Количина за производњу мора бити већа о msgid "Quantity to Scan" msgstr "Количина за скенирање" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42493,7 +42511,7 @@ msgstr "Квартал {0} {1}" msgid "Query Route String" msgstr "Query Route String" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "Величина реда мора бити између 5 и 100" @@ -42733,7 +42751,7 @@ msgstr "Покренуто од стране (Имејл)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42917,8 +42935,8 @@ msgid "Rate at which this tax is applied" msgstr "Стопа по којој се порез примењује" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "Цена ставке '{}' се не може мењати" +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43236,7 +43254,7 @@ msgstr "Разлог за стављање на чекање" msgid "Reason for Failure" msgstr "Разлог неуспеха" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Разлог за задржавање" @@ -43478,8 +43496,8 @@ msgstr "Листа примаоца је празна. Молимо креира msgid "Receiving" msgstr "Пријем" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Недавни налози" @@ -43655,6 +43673,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43705,7 +43727,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Поновни прорачун количине не може бити мањи од 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "Системски није подржано коришћење рекурзивних попуста са мешовитим условима" @@ -43785,7 +43807,7 @@ msgstr "Референца #" msgid "Reference #{0} dated {1}" msgstr "Референца #{0} од {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Датум референце за попуст на ранију уплату" @@ -44077,8 +44099,8 @@ msgid "Rejected Warehouse" msgstr "Складиште одбијених залиха" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Складиште одбијених залиха и Складиште прихваћених залиха не могу бити исто." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44184,7 +44206,7 @@ msgstr "Напомена" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44223,7 +44245,7 @@ msgstr "Уклони записе са нултим бројем" msgid "Remove item if charges is not applicable to that item" msgstr "Уклони ставку уколико трошкови нису примењиви на њу" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Уклони ставке без промене у количини или вредности." @@ -44375,7 +44397,7 @@ msgstr "Грешка у извештају" msgid "Report Line Items" msgstr "Ставке реда извештаја" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44458,7 +44480,7 @@ msgstr "Евиденција грешака при поновном уносу" msgid "Repost Item Valuation" msgstr "Поновно објављивање вредновања ставки" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "Поновно књижење вредновања ставке је покренуто за изабране неуспешне записе." @@ -44504,6 +44526,15 @@ msgstr "Поновно објављивање је започето у поза msgid "Reposting Data File" msgstr "Поновна обрада датотеке података" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44588,7 +44619,7 @@ msgstr "Захтевано до датума" msgid "Reqd Qty (BOM)" msgstr "Потребна количина (саставница)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Захтевано до датума" @@ -44704,11 +44735,11 @@ msgstr "Затражена количина" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Затражена количина: Количина затражена за набавку, али није наручена." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Захтевајући објекат" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Подносилац захтева" @@ -44887,6 +44918,10 @@ msgstr "Резервисане залихе" msgid "Reserve Warehouse" msgstr "Резервисано складиште" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "Резервиши за сировине" @@ -44925,8 +44960,8 @@ msgid "Reserved Qty" msgstr "Резервисана количина" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "Резервисану количину ({0}) није могуће унети као децимални број. Да бисте то омогућили, онемогућите '{1}' у мерној јединици {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Резервисану количину ({0}) није могуће унети као децимални број. Да бисте то омогућили, онемогућите '{1}' у мерној јединици {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44970,7 +45005,7 @@ msgstr "Резервисана количина" msgid "Reserved Quantity for Production" msgstr "Резервисана количина за производњу" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Резервисани број серије." @@ -44986,13 +45021,13 @@ msgstr "Резервисани број серије." #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Резервисане залихе" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Резервисане залихе за шаржу" @@ -45486,6 +45521,10 @@ msgstr "Враћени девизни курс није ни цео број н msgid "Returns" msgstr "Повраћаји" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45910,11 +45949,11 @@ msgstr "Назив за рутирање" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Ред # {0}: Не може се вратити више од {1} за ставку {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Ред {0}: Молимо Вас да додате пакет серије и шарже за ставку {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "Ред # {0}: Молимо Вас да унесете количину за ставку {1} јер није нула." @@ -45998,23 +46037,23 @@ msgstr "Ред #{0}: Није пронађена саставница за ст msgid "Row #{0}: Batch No {1} is already selected." msgstr "Ред #{0}: Број шарже {1} је већ изабран." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "Ред #{0}: Број шарже {1} није део повезаног налога за пријем из подуговарања. Молимо Вас да изаберете исправан број шарже." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Ред #{0}: Не може се расподелити више од {1} за услов плаћања {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "Ред #{0}: Није могуће отказати овај унос залиха у производњи јер фактурисана количина ставке {1} не може бити већа од утрошене количине." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "Ред #{0}: Није могуће отказати овај унос залиха производње јер произведена количина секундарне ставке {1} не може бити мања од испоручене количине." -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "Ред #{0}: Није могуће отказати овај унос залиха јер враћена количина не може бити већа од испоручене количине за ставку {1} у повезаном налогу за пријем из подуговарања" @@ -46090,13 +46129,16 @@ msgstr "Ред #{0}: Није пронађен довољан број унос msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Ред #{0}: Кумулативни праг не може бити мањи од прага за једну трансакцију" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} повезана са ставком налога за пријем из подуговарања {2} ({3}) не може бити додата више пута." -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} не може бити додата више пута у процесу пријема из подуговарања." @@ -46108,7 +46150,7 @@ msgstr "Ред #{0}: Ставка обезбеђена од стране куп msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} не постоји у табели потребних ставки повезаној са налогом за пријем из подуговарања." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} премашује доступну количину путем налога за пријем из подуговарања" @@ -46116,12 +46158,12 @@ msgstr "Ред #{0}: Ставка обезбеђена од стране куп msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} нема довољну количину у налогу за пријем из подуговарања. Доступна количина је {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} није део налога за пријем из подуговарања {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} није део радног налога {2}" @@ -46133,7 +46175,7 @@ msgstr "Ред #{0}: Датуми се преклапају са другим р msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Ред #{0}: Подразумевана саставница није пронађена за готов производ {1}" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Ред #{0}: Датум почетка амортизације је обавезан" @@ -46141,6 +46183,10 @@ msgstr "Ред #{0}: Датум почетка амортизације је о msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Ред #{0}: Дупли унос у референцама {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Ред #{0}: Очекивани датум испоруке не може бити пре датума набавне поруџбине" @@ -46153,11 +46199,18 @@ msgstr "Ред #{0}: Рачун расхода није постављен за msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "Ред #{0}: Рачун расхода {1} није важећи за улазну фактуру {2}. Дозвољени су само рачуни расхода за ставке ван залиха." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Ред #{0}: Количина готових производа не може бити нула" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46180,8 +46233,8 @@ msgstr "Ред #{0}: Готов производ мора бити {1}" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "Ред #{0}: Референца готовог производа је обавезна за секундарну ставку {1}." -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "Ред #{0}: За ставку обезбеђену од стране купца {1}, изворно складиште мора бити {2}" @@ -46193,7 +46246,7 @@ msgstr "Ред #{0}: За {1}, можете изабрати референтн msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Ред #{0}: За {1}, можете изабрати референтни документ само уколико се износ постави на дуговну страну рачуна" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "Ред #{0}: Учесталост амортизације мора бити већа од нуле" @@ -46205,6 +46258,10 @@ msgstr "Ред #{0}: Датум почетка не може бити пре д msgid "Row #{0}: From Time and To Time fields are required" msgstr "Ред #{0}: Поља за време почетка и време завршетка су обавезна" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Ред #{0}: Ставка је додата" @@ -46233,16 +46290,16 @@ msgstr "Ред #{0}: Ставка {1} има стопу нула, али опц msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "Ред #{0}: Ставка {1} у складишту {2}: Доступно {3}, потребно {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "Ред #{0}: Ставка {1} није ставка обезбеђена од стране купца." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Ред #{0}: Ставка {1} није ставка серије / шарже. Не може имати број серије / шарже." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Ред #{0}: Ставка {1} није део налога за пријем из подуговарања {2}" @@ -46258,13 +46315,17 @@ msgstr "Ред #{0}: Ставка {1} није складишна ставка" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "Ред #{0}: Неподударање ставке {1}. Промена шифре ставке није дозвољена, додајте нови ред уместо тога." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "Ред #{0}: Неподударање ставке {1}. Промена шифре ставке није дозвољена." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46274,15 +46335,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Ред #{0}: Налог књижења {1} не садржи рачун {2} или је већ повезан са другим документом" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "Ред #{0}: Недостаје {1} за компанију {2}." -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "Ред #{0}: Следећи датум амортизације не може бити пре датума доступности за употребу" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "Ред #{0}: Следећи датум амортизације не може бити пре датума набавке" @@ -46294,24 +46355,48 @@ msgstr "Ред #{0}: Није дозвољено променити добављ msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Ред #{0}: Само {1} је доступно за резервацију за ставку {2}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "Ред #{0}: Почетна акумулирана амортизација мора бити мања од или једнака {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "Ред #{0}: Прекомерна потрошња ставке обезбеђене од стране купца {1} у односу на радни налог {2} није дозвољена у процесу пријема из подуговарања." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Ред #{0}: Молимо Вас да изаберете шифру ставке у састављеним ставкама" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Ред #{0}: Молимо Вас да изаберете број саставнице у састављеним ставкама" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "Ред #{0}: Молимо Вас да изаберете ставку готовог производа уз коју ће се користити ова ставка обезбеђена од стране купца." @@ -46327,6 +46412,10 @@ msgstr "Ред #{0}: Молимо Вас да поставите количин msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Ред #{0}: Молимо Вас да ажурирате рачун разграничених прихода/расхода у реду ставке или подразумевани рачун у мастер подацима компаније" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46346,8 +46435,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Ред #{0}: Количина мора бити позитиван број" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Ред #{0}: Количина треба да буде мања или једнака доступној количини за резервацију (стварна количина - резервисана количина) {1} за ставку {2} против шарже {3} у складишту {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46369,7 +46458,7 @@ msgstr "Ред #{0}: Количина мора бити позитиван бр msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Ред #{0}: Количина за ставку {1} не може бити нула." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "Ред #{0}: Количина ставке {1} не може бити већа од {2} {3} у односу на налог за пријем из подуговарања {4}" @@ -46377,17 +46466,17 @@ msgstr "Ред #{0}: Количина ставке {1} не може бити в msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Ред #{0}: Количина за резервацију за ставку {1} мора бити већа од 0." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Ред #{0}: Цена мора бити иста као {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Ред #{0}: Врста референтног документа мора бити једна од следећих: набавна поруџбина, улазна фактура, налог књижења или опомена" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Ред #{0}: Врста референтног документа мора бити једна од следећих: продајна поруџбина, излазна фактура, налог књижења или опомена" @@ -46407,11 +46496,11 @@ msgstr "Ред #{0}: Трошак поправке {1} премашује рас msgid "Row #{0}: Return Against is required for returning asset" msgstr "Ред #{0}: Поврат по основу је неопходан за враћање имовине" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "Ред #{0}: Враћена количина не може бити већа од доступне количине за ставку {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "Ред #{0}: Враћена количина не може бити већа од количине доступне за повраћај за ставку {1}" @@ -46421,18 +46510,19 @@ msgstr "Ред #{0}: Количина секундарне ставке не м #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "Ред #{0}: Продајна цена за ставку {1} је нижа од њене {2}.\n" -"\t\t\t\t\tПродајна {3} мора бити најмање {4}.

                    Алтернативно,\n" -"\t\t\t\t\tможете онемогућити '{5}' у {6} да бисте заобишли\n" -"\t\t\t\t\tову проверу." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "Ред #{0}: ИД секвенце мора бити {1} или {2} за операцију {3}." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Ред #{0}: Број серије {1} не припада шаржи {2}" @@ -46445,7 +46535,7 @@ msgstr "Ред #{0}: Број серије {1} за ставку {2} није д msgid "Row #{0}: Serial No {1} is already selected." msgstr "Ред #{0}: Број серије {1} је већ изабран." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "Ред #{0}: Број серије {1} није део повезаног налога за пријем из подуговарања. Молимо Вас да изаберете исправан број серије." @@ -46469,7 +46559,7 @@ msgstr "Ред #{0}: Поставите добављача за ставку {1} msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "Ред #{0}: С обзиром да је 'Праћење полупроизвода' омогућено, саставница {1} не може бити коришћена за подсклопове" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Ред #{0}: Изворно складиште мора бити исто као складиште купца {1} из повезаног налога за пријем из подуговарања" @@ -46538,7 +46628,7 @@ msgstr "Ред #{0}: Залихе нису доступне за резерва msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "Ред #{0}: Количина залиха {1} ({2}) за ставку {3} не може премашити {4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Ред #{0}: Циљно складиште мора бити исто као складиште купца {1} из повезаног налога за пријем из подуговарања" @@ -46546,19 +46636,27 @@ msgstr "Ред #{0}: Циљно складиште мора бити исто к msgid "Row #{0}: The batch {1} has already expired." msgstr "Ред #{0}: Шаржа {1} је већ истекла." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Ред #{0}: Складиште {1} није зависно складиште групног складишта {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Ред #{0}: Временски сукоб са редом {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Ред #{0}: Укупан број амортизација не може бити мањи или једнак броју почетних књижених амортизација" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "Ред #{0}: Укупан број амортизација мора бити већи од нуле" @@ -46570,11 +46668,15 @@ msgstr "Ред #{0}: Складиште {1} се не подудара са ск msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "Ред #{0}: Износ пореза по одбитку {1} не одговара обрачунатом износу {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "Ред #{0}: Радни налог постоји за потпуну или делимичну количину ставке {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Ред #{0}: Не можете користити димензију инвентара '{1}' у усклађивању залиха за измену количине или стопе вредновања. Усклађивање залиха са димензијама инвентара је предвиђено само за обављање уноса почетног стања." @@ -46582,6 +46684,19 @@ msgstr "Ред #{0}: Не можете користити димензију и msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Ред #{0}: Морате изабрати имовину за ставку {1}." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Ред #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Ред #{0}: {1} не може бити негативно за ставку {2}" @@ -46598,6 +46713,14 @@ msgstr "Ред #{0}: {1} је обавезно за креирање почет msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Ред #{0}: {1} од {2} треба да буде {3}. Молимо Вас да ажурирате {1} или изаберете други рачун." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "Ред #{0}: Количина за ставку {1} не може бити нула." @@ -46638,71 +46761,10 @@ msgstr "Ред #{idx}: {from_warehouse_field} и {to_warehouse_field} не мо msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "Ред #{idx}: {schedule_date} не може бити пре {transaction_date}." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Ред #{}: Валута за {} - {} се не поклапа са валутом компаније." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "Ред #{}: Обавезан је или ИД странке или назив странке" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Ред #{}: Финансијска евиденција не сме бити празна, с обзиром да су у употреби више њих." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Ред #{}: Фискални рачун {} је {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Ред #{}: Фискални рачун {} није везан за купца {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Ред #{}: Фискални рачун {} још увек није поднет" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "Ред #{}: ИД странке ја обавезан" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Ред #{}: Молимо Вас да доделите задатак члану тима." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Ред #{}: Молимо Вас да користите другу финансијску евиденцију." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Ред #{}: Број серије {} не може бити враћен јер није било трансакција у оригиналној фактури {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Ред #{}: оригинална фактура {} за рекламациону фактуру {} није консолидована." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Ред #{}: Не можете додати позитивне количине у рекламациону фактуру. Молимо Вас да уклоните ставку {} да бисте завршили поврат." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Ред #{}: ставка {} је већ изабрана." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Ред #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Ред #{}: {} {} не постоји." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Ред #{}: {} {} не припада компанији {}. Молимо Вас да изаберете важећи {}." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Ред број {0}: Складиште је обавезно. Молимо Вас да поставите подразумевано складиште за ставку {1} и компанију {2}" @@ -46715,10 +46777,6 @@ msgstr "Ред {0} : Операција је обавезна за ставку msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "Ред {0} одабрана количина је мања од захтеване количине, потребно је додатних {1} {2}." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Ред {0}# ставка {1} није пронађена у табели 'Примљене сировине' у {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Ред {0}: Прихваћена количина и одбијена количина не могу бити нула истовремено." @@ -46739,19 +46797,19 @@ msgstr "Ред {0}: Аванс против купца мора бити на п msgid "Row {0}: Advance against Supplier must be debit" msgstr "Ред {0}: Аванс против добављача мора бити на дуговној страни" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Ред {0}: Распоређени износ {1} мора бити мањи или једнак неизмиреном износу {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Ред {0}: Распоређени износ {1} мора бити мањи или једнак преосталом износу за плаћање {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Ред {0}: Пошто је {1} омогућен, сировине не могу бити додате у {2} унос. Користите {3} унос за потрошњу сировина." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Ред {0}: Саставница није пронађена за ставку {1}" @@ -46767,11 +46825,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Ред {0}: Фактор конверзије је обавезан" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Ред {0}: Трошковни центар {1} не припада компанији {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Ред {0}: Трошковни центар је обавезан за ставку {1}" @@ -46799,24 +46857,24 @@ msgstr "Ред {0}: Складиште за испоруку не може би msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Ред {0}: Датум доспећа у табели услова плаћања не може бити пре датума књижења" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Ред {0}: Ставка из отпремнице или референца упаковане ставке је обавезна." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Ред {0}: Девизни курс је обавезан" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "Ред {0}: Очекивана вредност након корисног века не може бити негативна" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "Ред {0}: Очекивана вредност током корисног века мора бити мања од нето износа набавке" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "Ред {0}: Рачун расхода {1} је повезан са компанијом {2}. Молимо Вас да изаберете рачун који припада компанији {3}." @@ -46837,6 +46895,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Ред {0}: Време почетка и време завршетка су обавезни." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Ред {0}: Време почетка и време завршетка за {1} се преклапају са {2}" @@ -46858,8 +46919,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Ред {0}: Неважећа референца {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Ред {0}: Шаблон ставке пореза ажуриран према важењу и примењеној стопи" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46889,7 +46950,7 @@ msgstr "Ред {0}: Време операције мора бити већ од msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Ред {0}: Упакована количина мора бити једнака количини {1}." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Ред {0}: Документ листе паковања је већ креиран за ставку {1}." @@ -46913,7 +46974,7 @@ msgstr "Ред {0}: Плаћање на основу продајне/набав msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Ред {0}: Молимо Вас да означите опцију 'Аванс' за рачун {1} уколико је ово авансни унос." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Ред {0}: Молимо Вас да наведете референцу за предмет отпремнице или референцу за упаковану ставку." @@ -46921,14 +46982,14 @@ msgstr "Ред {0}: Молимо Вас да наведете референцу msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Ред {0}: Молимо Вас да изаберете саставницу за ставку {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Ред {0}: Молимо Вас да изаберете активну саставницу за ставку {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Ред {0}: Молимо Вас да изаберете валидну саставницу за ставку {1}." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Ред {0}: Молимо Вас да поставите разлог ослобођања од пореза у секцији Порези и таксе на продају" @@ -46945,11 +47006,11 @@ msgstr "Ред {0}: Молимо Вас да поставите исправну msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Ред {0}: Пројекат мора бити исти као онај постављем у евиденцији времена: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Ред {0}: Улазна фактура {1} нема утицај на залихе." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Ред {0}: Количина не може бити већа од {1} за ставку {2}." @@ -46957,7 +47018,7 @@ msgstr "Ред {0}: Количина не може бити већа од {1} з msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Ред {0}: Количина у основној јединици мере залиха не може бити нула." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Ред {0}: Количина мора бити већа од 0." @@ -46969,7 +47030,7 @@ msgstr "Ред {0}: Количина не може бити негативна." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "Ред {0}: Излазна фактура {1} је већ креирана за {2}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46994,10 +47055,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "Ред {0}: Целокупан износ расхода за рачун {1} у {2} је већ распоређен." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Ред {0}: Ставка {1}, количина мора бити позитиван број" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Ред {0}: Рачун {3} {1} не припада компанији {2}" @@ -47050,15 +47111,19 @@ msgstr "Ред {0}: {1} {2} не може бити исто као {3} (Рачу msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Ред {0}: {1} {2} се не подудара са {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "Ред {0}: {1} {2} је повезан са компанијом {3}. Молимо Вас да изаберете документ који припада компанији {4}." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Ред {0}: Ставка {2} {1} не постоји у {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Ред {1}: Количина ({0}) не може бити разломак. Да бисте то омогућили, онемогућите опцију '{2}' у јединици мере {3}." @@ -47097,8 +47162,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Редови: {0} имају 'Унос уплате' као референтну врсту. Ово не треба подешавати ручно." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Редови: {0} у одељку {1} су неважећи. Назив референце треба да упућује на валидан унос уплате или налог књижења." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47158,10 +47223,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47229,7 +47290,7 @@ msgstr "Статус испуњења споразума о нивоу услу msgid "SLA Paused On" msgstr "Споразум о нивоу услуге је паузиран" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "Споразум о нивоу услуге је на чекању од {0}" @@ -47528,8 +47589,8 @@ msgid "Sales Invoice is not submitted" msgstr "Излазна фактура није поднета" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "Излазна фактура није креирана од стране корисника {}" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47745,8 +47806,8 @@ msgstr "Продајна поруџбина {0} већ постоји за на msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "Продајна поруџбина {0} није доступна за производњу" @@ -48153,7 +48214,7 @@ msgstr "Иста ставка" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Иста ставка и комбинација складишта су већ унесени." @@ -48185,7 +48246,7 @@ msgstr "Складиште за задржане узорке" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Величина узорка" @@ -48295,7 +48356,7 @@ msgstr "Скенирана количина" msgid "Schedule Date" msgstr "Датум распореда" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "Назив распореда" @@ -48306,7 +48367,7 @@ msgstr "Назив распореда" msgid "Scheduled Date" msgstr "Заказани датум" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "Заказани датум је обавезан." @@ -48594,7 +48655,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "Изаберите рачуноводствену димензију." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Изаберите алтернативну ставку" @@ -48615,7 +48676,7 @@ msgid "Select BOM and Qty for Production" msgstr "Изаберите саставницу и количину за производњу" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Изаберите број шарже" @@ -48680,7 +48741,7 @@ msgstr "Изаберите димензију" msgid "Select Dispatch Address " msgstr "Изаберите адресу отпреме " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Изаберите запослена лица" @@ -48705,7 +48766,7 @@ msgstr "Изаберите ставке" msgid "Select Items based on Delivery Date" msgstr "Изаберите ставке на основу датума испоруке" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "Изаберите ставке за контролу квалитета" @@ -48735,7 +48796,7 @@ msgstr "Изаберите адресу запосленог" msgid "Select Loyalty Program" msgstr "Изаберите програм лојалности" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "Изаберите распоред плаћања" @@ -48749,13 +48810,13 @@ msgid "Select Quantity" msgstr "Изаберите количину" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Изаберите број серије" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Изаберите серију и шаржу" @@ -48846,6 +48907,7 @@ msgid "Select an Item Group." msgstr "Изаберите групу ставки." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Изаберите рачун за штампање у валути рачуна" @@ -48988,10 +49050,14 @@ msgstr "Изабрана документа" msgid "Selected date is" msgstr "Изабрани датум је" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "Изабрани документ мора бити у статусу поднет" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49139,7 +49205,7 @@ msgid "Send Emails to Suppliers" msgstr "Пошаљи имејлове добављачима" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Пошаљи SMS" @@ -49223,7 +49289,7 @@ msgstr "Недостаје пакет серије / шарже" msgid "Serial / Batch No" msgstr "Број серије / шарже" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Бројеви серије / шарже" @@ -49280,10 +49346,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49325,6 +49392,10 @@ msgstr "Број серије / шаржа" msgid "Serial No Already Assigned" msgstr "Број серије је већ додељен" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Број серијских бројева" @@ -49342,7 +49413,7 @@ msgstr "Дневник бројева серија" msgid "Serial No Range" msgstr "Опсег серијских бројева" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "Резервисани број серије" @@ -49387,8 +49458,8 @@ msgid "Serial No and Batch" msgstr "Број серије и шаржа" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "Селектор броја серије и шарже не може бити коришћен када је опција користи поља за серију / шаржу омогућена." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49399,7 +49470,7 @@ msgstr "Селектор броја серије и шарже не може б msgid "Serial No and Batch Traceability" msgstr "Пратљивост броја серије и шарже" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "Број серије је обавезан" @@ -49419,22 +49490,19 @@ msgstr "Број серије {0} је већ скениран" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Број серије {0} не припада отпремници {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Број серије {0} не припада ставци {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Број серије {0} не постоји" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "Број серије {0} не постоји" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "Број серије {0} је већ испоручен. Не можете га поново користити у уносу производње или препаковању." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49448,25 +49516,26 @@ msgstr "Број серије {0} је већ додељен купцу {1}. М msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Број серије {0} није присутан у {1} {2}, стога га не можете вратити против {1} {2}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Број серије {0} је под сервисним уговором до {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Број серије {0} је под гаранцијом до {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Број серије {0} није пронађен" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Број серије: {0} је већ трансакцијски уписан у други фискални рачун." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49486,7 +49555,7 @@ msgstr "Бројеви серија / шарже" msgid "Serial Nos are created successfully" msgstr "Бројеви серије су успешно креирани" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Бројеви серије су резервисани у уносима резервације залихе, морате поништити резервисање пре него што наставите." @@ -49587,6 +49656,10 @@ msgstr "Пакет серије и шарже {0} није поднет" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49635,7 +49708,7 @@ msgstr "Резервација серије и шарже" msgid "Serial and Batch Summary" msgstr "Резиме серије и шарже" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Број серије {0} је унет више пута" @@ -49643,122 +49716,12 @@ msgstr "Број серије {0} је унет више пута" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "Бројеви серије нису доступни за ставку {0} у складишту {1}. Молимо Вас да промените складиште." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Серија" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Серија за унос амортизације имовине (Налог књижења)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Серија је обавезна" @@ -49840,7 +49803,7 @@ msgid "Service Item {0} is disabled." msgstr "Услужна ставка {0} је онемогућена." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "Услужна ставка {0} мора бити ставка ван залиха." @@ -49949,12 +49912,12 @@ msgid "Service Stop Date" msgstr "Датум прекидања услуге" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Датум прекидања услуге не може бити после датума завршетка услуге" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "Датум прекидања услуге не може бити пре датума почетка услуге" @@ -49978,7 +49941,7 @@ msgstr "Постави авансе и расподели (ФИФО)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Постави основну цену ручно" @@ -49993,7 +49956,7 @@ msgstr "Постави подразумеваног добављача" msgid "Set Delivery Warehouse" msgstr "Постави складиште за испоруку" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50098,7 +50061,7 @@ msgstr "Постави именовање пакета серије и шарж #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50116,7 +50079,7 @@ msgstr "Постави добављача" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50142,7 +50105,7 @@ msgstr "Постави као затворено" msgid "Set as Completed" msgstr "Постави као завршено" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Постави као изгубљено" @@ -50240,15 +50203,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Постави {0} у категорију имовине {1} за компанију {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Постави {0} у категорију имовине {1} или у компанију {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Постави {0} у компанију {1}" @@ -50316,7 +50279,7 @@ msgid "Setting up company" msgstr "Постављање компаније" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "Подешавање {0} је неопходно" @@ -50744,6 +50707,7 @@ msgid "Show Completed" msgstr "Прикажи завршено" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "Прикажи потражује / дугује у валути компаније" @@ -50946,7 +50910,7 @@ msgstr "Прикажи само непосредно наредни период msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Прикажи нерешене уносе" @@ -51051,11 +51015,11 @@ msgstr "Једноставна python формула примењена на ч msgid "Simultaneous" msgstr "Симултано" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "Пошто постоје активна средства која се амортизују у овој категорији, следећи рачуни су обавезни.

                    " -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Пошто постоје губици у процесу од {0} јединица за готов производ {1}, требало би да смањите количину за {0} јединица за готов производ {1} у табели ставки." @@ -51116,7 +51080,7 @@ msgstr "Прескочи пренос материјала за недоврше msgid "Skip Material Transfer to WIP Warehouse" msgstr "Прескочи пренос материјала за складишта недовршене производње" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "Прескочено {0} DocType-ова:
                    {1}" @@ -51172,8 +51136,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "Неки обавезни подаци о компанији недостају. Немате дозволу да их ажурирате. Молимо Вас да контактирате систем менаџера." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Дошло је до грешке, молимо Вас да покушате поново" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51240,7 +51204,7 @@ msgstr "Изворни унос производње" msgid "Source Stock Entry (Manufacture)" msgstr "Изворни унос залиха (производња)" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "Изворни унос залиха {0} припада радном налогу {1}, а не {2}. Молимо Вас да користите унос производње из истог радног налога." @@ -51277,8 +51241,8 @@ msgstr "Врста извора" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51408,7 +51372,7 @@ msgstr "Подели издавање" msgid "Split Qty" msgstr "Подели количину" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "Подељена количина мора бити мања од количине имовине" @@ -51421,7 +51385,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Подела {0} {1} у {2} редова према условима плаћања" @@ -51474,7 +51443,7 @@ msgstr "Назив фазе" msgid "Stale Days" msgstr "Дани застаривања" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Дани застаривања би требало да почну од 1." @@ -51539,10 +51508,26 @@ msgstr "Стандардни порески шаблон који се може msgid "Standing Name" msgstr "Стојећи назив" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Почетак / Наставак" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Датум почетка не може бити пре тренутног датума" @@ -51572,7 +51557,7 @@ msgstr "Време почетка не може бити веће или јед msgid "Start Timer" msgstr "Покрени тајмер" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51601,10 +51586,14 @@ msgstr "Датум почетка треба да буде мањи од дат msgid "Start date should be less than end date for task {0}" msgstr "Датум почетка треба да буде мањи од датума завршетка за задатак {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "Покренут је позадински задатак за креирање {1} {0}. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51685,7 +51674,7 @@ msgstr "Илустрација статуса" msgid "Status and Reference" msgstr "Статус и референца" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Статус мора бити отказан или завршен" @@ -51813,8 +51802,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "Унос затварања залиха {0} већ постоји за изабрани временски период" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "Унос затварања залиха {0} је стављен у ред за обраду, систему ће бити потребно неко време да га заврши." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51895,17 +51884,21 @@ msgstr "Ставка уноса залиха" msgid "Stock Entry Type" msgstr "Врста уноса залиха" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Унос залиха је већ креиран за ову листу за одабир" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Унос залиха {0} креиран" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Унос залиха {0} је креиран" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52071,7 +52064,7 @@ msgstr "Очекивана количина залиха" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52154,7 +52147,7 @@ msgstr "Подешавање поновне обраде залиха" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52179,15 +52172,15 @@ msgstr "Резервација залиха" msgid "Stock Reservation Entries Cancelled" msgstr "Уноси резервације залиха отказани" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Уноси резервације залиха креирани" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "Креирани уноси резервације залиха" @@ -52357,7 +52350,7 @@ msgstr "Трансакције залиха" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52516,9 +52509,9 @@ msgstr "Поништено је резервисање залиха за рад msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "Залихе нису доступне за ставку {0} у складишту {1}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "Количина залиха није довољна за шифру ставке: {0} у складишту {1}. Доступна количина {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52536,7 +52529,7 @@ msgstr "Трансакције залиха старије од наведени msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "Залихе ће бити резервисане након подношења Пријемнице набавке креиране према захтеву за набавку за продајну поруџбину." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "Залихе/Рачуни не могу бити закључани јер се тренутно обрађују уноси са старијим датумима. Покушајте поново касније." @@ -52551,7 +52544,7 @@ msgstr "Stone" msgid "Stop Reason" msgstr "Разлог заустављања" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Заустављени радни налози не могу бити отказани. Прво је потребно отказати заустављање да бисте отказали" @@ -52559,7 +52552,7 @@ msgstr "Заустављени радни налози не могу бити о #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Магацини" @@ -52773,7 +52766,7 @@ msgstr "Фактор конверзије из подуговарања" msgid "Subcontracting Delivery" msgstr "Испорука за подуговарање" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52845,7 +52838,7 @@ msgstr "Ставка услуге налога за пријем из подуг #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52883,7 +52876,7 @@ msgstr "Услужна ставка налога за подуговарање" msgid "Subcontracting Order Supplied Item" msgstr "Набављене ставке налога за подуговарање" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Налог за подуговарање {0} је креиран." @@ -52957,7 +52950,7 @@ msgstr "Повраћај у подуговарању" msgid "Subcontracting Sales Order" msgstr "Продајна поруџбина за подуговарање" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52976,7 +52969,7 @@ msgstr "Поставке подуговарања" msgid "Subdivision" msgstr "Пододељење" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Подношење радње није успело" @@ -53005,7 +52998,7 @@ msgstr "Поднеси овај радни налог за даљу обраду msgid "Submit your Quotation" msgstr "Поднеси своју понуду" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53147,7 +53140,7 @@ msgstr "Подешавање успеха" msgid "Successful" msgstr "Успешно" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Успешно усклађено" @@ -53325,7 +53318,7 @@ msgstr "Набављена количина" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53507,7 +53500,7 @@ msgstr "Датум издавања фактуре добављача" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Број фактуре добављача" @@ -53655,7 +53648,7 @@ msgstr "Поређење понуда добављача" msgid "Supplier Quotation Item" msgstr "Ставка из понуде добављача" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Понуда добављача {0} креирана" @@ -53840,10 +53833,6 @@ msgstr "Тим за подршку" msgid "Support Tickets" msgstr "Тикет за подршку" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "Сумњиви износи попуста" @@ -53929,7 +53918,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "Резиме обрачуна пореза одбијеног на извору" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "Одбијен порез по одбитку на извору" @@ -53990,8 +53979,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "Циљана имовина {0} не припада компанији {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "Циљана имовина {0} мора бити композитна имовина" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54100,11 +54089,11 @@ msgstr "Линк за адресу циљног складишта" msgid "Target Warehouse Reservation Error" msgstr "Грешка резервације у циљном складишту" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "Циљно складиште за готов производ мора бити исто као складиште готових производа {1} у радном налогу {2} повезано са налогом за пријем из подуговарања." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "Циљно складиште за готов производ мора бити исто као складиште готових производа {0} у радном налогу {1} повезано са налогом за пријем из подуговарања." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "Циљно складиште је обавезно пре подношења" @@ -54580,7 +54569,7 @@ msgstr "Порез по одбитку се обрачунава само на #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Опорезиви износ" @@ -54792,7 +54781,7 @@ msgstr "Телевизија" msgid "Template Item" msgstr "Ставка шаблона" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Изабрана ставка шаблона" @@ -55099,23 +55088,27 @@ msgstr "Тесла" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "Текст приказан у финансијском извештају (нпр. 'Укупни приходи', 'Готовина и готовински еквиваленти')" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "Поље 'Од броја пакета' не може бити празно нити његова вредност може бити мања од 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "Приступ захтеву за понуду са портала је онемогућено. Да бисте омогућили приступ, омогућите га у подешавањима портала." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "Саставница која ће бити замењена" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "Шаржа {0} има негативну количину од {1}. Да бисте то исправили, отворите шаржу и кликните да поново израчунате количину шарже. Уколико проблем и даље постоји, креирајте улазну ставку." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "Кампања '{0}' већ постоји за {1} '{2}'" @@ -55140,6 +55133,10 @@ msgstr "Уноси у главну књигу и закључна салда ћ msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Уноси у главну књигу ће бити отказани у позадини, ово може потрајати неколико минута." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Програм лојалности није важећи за изабрану компанију" @@ -55157,9 +55154,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "Листа за одабир која садржи уносе резервације залиха не може бити ажурирана. Уколико морате да извршите промене, препоручујемо да откажете постојеће ставке уноса резервације залиха пре него што ажурирате листу за одабир." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "Количина губитка у процесу је ресетована према количини губитка у процесу са радном картицом" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55169,11 +55169,15 @@ msgstr "Продавац је повезан са {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Број серије у реду #{0}: {1} није доступан у складишту {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Серијски број {0} је резервисан за {1} {2} и не може се користити за било коју другу трансакцију." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Пакет серије и шарже {0} није валидан за ову трансакцију. 'Врста трансакције' треба да буде 'Излазна' уместо 'Улазна' у пакету серије и шарже {0}" @@ -55221,15 +55225,15 @@ msgstr "Компанија {0} није у Јужној Африци. Извеш msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "Завршена количина {0} за операцију {1} не може бити већа од завршене количине {2} из претходне операције {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "Валута фактуре {} ({}) се разликује од валуте у овој опомени ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "Тренутни уноси почетног стања малопродаје је застарео. Затворите га и креирајте нови." @@ -55278,6 +55282,10 @@ msgstr "Поље ка власнику не може бити празно" msgid "The field {0} in row {1} is not set" msgstr "Поље {0} у реду {1} није постављено" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Поља од власника и ка власнику не могу бити празна" @@ -55299,9 +55307,9 @@ msgstr "Фискална година је аутоматски креирана msgid "The folio numbers are not matching" msgstr "Референтни бројеви се не поклапају" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "Следеће ставке, које имају правила складиштења, нису могле бити распоређене:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55328,8 +55336,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Следећа запослена лица још увек извештавају ка {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "Следећа неважећа ценовна правила су обрисана:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55341,7 +55349,7 @@ msgstr "Следећи распореди плаћања већ постоје:\ msgid "The following rows are duplicates:" msgstr "Следећи редови су дупликати:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Следећи {0} је креиран: {1}" @@ -55377,8 +55385,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "Следеће ставке {items} нису означене као {type_of} ставке. Можете их омогућити као {type_of} ставке из мастер података ставке." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "Радна картица {0} је {1} и не можете да је завршите." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55415,12 +55423,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "Операција {0} не може бити додата више пута" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "Операција {0} не може бити подоперација" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55468,6 +55476,10 @@ msgstr "Проценат за који Вам је одобрено да при msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "Проценат за који Вам је одобрено да пренесете више од наручене количине. На пример, уколико сте наручили 100 јединица, а Ваше одобрење је 10%, онда Вам је одобрено да пренесете 110 јединица." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55477,7 +55489,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "Резервисане залихе ће бити поново доступне када ажурирате ставке. Да ли сте сигурни да желите да наставите?" @@ -55494,8 +55506,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Изабране саставнице нису за исту ставку" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Изабрани рачун за промене {} не припада компанији {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55511,8 +55523,8 @@ msgstr "Продавац и купац не могу бити исто лице" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "Пакет серије и шарже {0} није повезан са {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55530,11 +55542,11 @@ msgstr "Удели већ постоје" msgid "The shares don't exist with the {0}" msgstr "Удели не постоје са {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "Залихе за ставку {0} у складишту {1} су биле негативне на {2}. Требало би да креирате позитиван унос {3} пре датума {4} и времена {5} како бисте унели исправну стопу вредновања. За више детаља прочитајте документацију.." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Залихе за ставку {0} у складишту {1} су биле негативне на {2}. Требало би да креирате позитиван унос {3} пре датума {4} и времена {5} како бисте унели исправну стопу вредновања. За више детаља прочитајте документацију.." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "Залихе су резервисане за следеће ставке и складишта, поништите резервисање како бисте могли да {0} ускладите залихе:

                    {1}" @@ -55556,17 +55568,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "Систем ће креирати излазну фактуру или фискални рачун са малопродајног интерфејса у зависности од овог подешавања. За трансакције великог обима препоручује се коришћење фискалног рачуна." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "Задатак је стављен у статус чекања као позадински процес. У случају проблема при обради у позадини, систем ће додати коментар о грешци у овом усклађивању залиха и вратити га у фазу нацрта" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "Задатак је стављен у статус чекања као позадински процес. У случају проблема при обради у позадини, систем ће додати коментар о грешци у овом усклађивању залиха и вратити га у статус поднето" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "Укупна количина издавања / преноса {0} у захтеву за набавку {1} не може бити већа од дозвољене тражене количине {2} за ставку {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55604,7 +55616,7 @@ msgstr "Корисници са овом улогом имају дозволу msgid "The value of {0} differs between Items {1} and {2}" msgstr "Вредност {0} се разликује између ставки {1} и {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "Вредност {0} је већ додељена постојећој ставци {1}." @@ -55628,7 +55640,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) мора бити једнако {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0} садржи ставке са јединичном ценом." @@ -55636,7 +55648,7 @@ msgstr "{0} садржи ставке са јединичном ценом." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "Префикс {0} '{1}' већ постоји. Молимо Вас да промените серију бројева серије, у супротном ће доћи до грешке дуплог уноса." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} успешно креиран" @@ -55644,6 +55656,10 @@ msgstr "{0} {1} успешно креиран" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0} {1} се не подудара са {0} {2} у {3} {4}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} се користи за израчунавање вредности трошкова за готов производ {2}." @@ -55652,7 +55668,7 @@ msgstr "{0} {1} се користи за израчунавање вреднос msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "Затим се ценовна правила филтрирају на основу купца, групе купаца, територије, добављача, врсте добављача, кампање, продајног партнера итд." -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Постоје активна одржавања или поправке за ову имовину. Морате их завршити пре него што откажете имовину." @@ -55664,7 +55680,7 @@ msgstr "Постоје недоследности између вредност msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "Постоје књижења за овај рачун. Промена {0} и не-{1} у активном систему изазваће нетачан излаз у извештају 'Рачуни' {2}" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "Нема неуспелих трансакција" @@ -55681,6 +55697,10 @@ msgstr "Нема активних фискалних година за које msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "Нема доступних термина за овај датум" @@ -55697,10 +55717,6 @@ msgstr "Постоје две опције за процену залиха. Ф msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "Не постоје варијанте ставке за изабрану ставку" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Могу постојати вишеструкти нивои наплате на основу укупно потрошеног износа. Фактор конверзије за искоришћење ће увек бити исти за све износе." @@ -55729,21 +55745,21 @@ msgstr "Није пронађена ниједна шаржа за {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "Мора постојати бар један готов производ у уносу залиха" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Дошло је до грешке приликом креирања текућег рачуна током повезивања са Plaid-ом." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "Дошло је до грешке приликом синхронизације трансакција." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Дошло је до грешке при ажурирању текућег рачуна {} током повезивања са Plaid-ом." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55793,15 +55809,19 @@ msgstr "Резиме овог месеца" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "Ова набавна поруџбина је у потпуности подуговорена." -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "Ова продајна поруџбина је у потпуности подуговорена." @@ -55823,7 +55843,7 @@ msgstr "Ова радња ће поништити повезивање рачу msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "Ова категорија имовине је означена као неподложна амортизацији. Омогућите обрачун амортизације или изаберите другу категорију." @@ -55841,7 +55861,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "Ово обухвата све таблице за оцењивање повезане са овим подешавањем" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Овај документ прелази ограничење за {0} {1} за ставку {4}. Да ли правите још један {3} за исти {2}?" @@ -55983,7 +56003,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "Овај филтер ставки је већ примењен за {0}" @@ -56047,7 +56067,7 @@ msgstr "Овај распоред је креиран када је имовин msgid "This schedule was created when Asset {0} was scrapped." msgstr "Овај распоред је креиран када је имовина {0} отписана." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "Овај распоред је креиран када је имовина {0} била {1} у нову имовину {2}." @@ -56074,10 +56094,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "Овај одељак омогућава кориснику да постави текст и закључак опомене за врсту опомене на основу језика, који се може користити при штампању." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56135,8 +56155,8 @@ msgid "This will restrict user access to other employee records" msgstr "Ово ће ограничити кориснички приступ записима других запослених лица" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "Ово {} ће се третирати као пренос материјала." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56264,6 +56284,12 @@ msgstr "Време (у минутима)" msgid "Timeline" msgstr "Временски редослед" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56550,8 +56576,8 @@ msgid "To Time" msgstr "Време завршетка" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "Време завршетка не може бити пре датума почетка" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56581,15 +56607,15 @@ msgstr "Да бисте додали операције, означите пољ msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "За додавање сировина за подуговорену ставку уколико је опција укључи детаљне ставке онемогућена." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Да бисте одобрили прекорачење фактурисања, ажурирајте \"Дозвола за фактурисање преко лимита\" у подешавањима рачуна или у ставци." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Да бисте одобрили прекорачење пријема/испоруке, ажурирајте \"Дозвола за пријем/испоруку преко лимита\" у подешавањима залиха или у ставци." @@ -56606,8 +56632,8 @@ msgid "To be Delivered to Customer" msgstr "За испоруку купцу" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "Да бисте отказали {} морате отказати унос затварања малопродаје." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56618,8 +56644,8 @@ msgid "To create a Payment Request reference document is required" msgstr "За креирање захтева за наплату потребан је референтни документ" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Да бисте омогучили рачуноводство недовршених капиталних радова," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56631,8 +56657,8 @@ msgstr "За укључивање ставки ван залиха у плани msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "Омогућава укључивање трошкова подсклопова и секундарних ставки у готове производе у радном налогу без коришћења радне картице, када је укључена опција 'Користи вишеслојну саставницу'." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Да би порез био укључен у ред {0} у цени ставке, порези у редовима {1} такође морају бити укључени" @@ -56652,7 +56678,7 @@ msgstr "Да бисте ово поништили, омогућите '{0}' у msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Да бисте наставили са уређивањем ове вредности атрибута, омогућите {0} у подешавањима варијанти ставке." @@ -56669,10 +56695,12 @@ msgstr "Да бисте поднели фактуру без пријемниц msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Да бисте користили другу финансијску евиденцију, поништите означавање опције 'Укључи подразумевану имовину у финансијским евиденцијама'" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Да бисте користили другу финансијску књигу, поништите означавање опције 'Укључи подразумеване уносе у финансијским евиденцијама'" @@ -56751,8 +56779,8 @@ msgstr "Торр" msgid "Total (Company Currency)" msgstr "Укупно (валута компаније)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Укупно (Потражује)" @@ -56794,6 +56822,22 @@ msgstr "Укупно додатних трошкова" msgid "Total Advance" msgstr "Укупно аванс" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56841,11 +56885,11 @@ msgstr "Укупан доспели износ" msgid "Total Amount in Words" msgstr "Укупно словима" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Укупни примењени трошкови у табели пријемнице набавке морају бити исти као укупни порези и таксе" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Укупна имовина" @@ -57027,7 +57071,7 @@ msgstr "Укупно испоручени износ" msgid "Total Demand (Past Data)" msgstr "Укупна потражња (историјски подаци)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "Укупни капитал" @@ -57036,11 +57080,11 @@ msgstr "Укупни капитал" msgid "Total Estimated Distance" msgstr "Укупна процењена удаљеност" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Укупни трошак" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Укупни трошак током ове године" @@ -57078,11 +57122,11 @@ msgstr "Укупно време задржавања" msgid "Total Holidays" msgstr "Укупно празника" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Укупни приходи" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Укупни приходи током ове године" @@ -57125,7 +57169,7 @@ msgstr "Укупни зависни трошкови набавке (валут msgid "Total Ledgers" msgstr "Укупно пословних књига" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "Укупна обавеза" @@ -57440,7 +57484,7 @@ msgstr "Укупно пореза и такси" msgid "Total Taxes and Charges (Company Currency)" msgstr "Укупно пореза и такси (валута компаније)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Укупно време (у минутима)" @@ -57449,7 +57493,11 @@ msgstr "Укупно време (у минутима)" msgid "Total Time in Mins" msgstr "Укупно време у минутима" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Укупно неизмирено: {0}" @@ -57528,7 +57576,7 @@ msgstr "Укупно време радних станица (у сатима)" msgid "Total allocated percentage for sales team should be 100" msgstr "Укупно распоређени проценат за продајни тим треба бити 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Укупни проценат доприноса треба бити 100" @@ -57546,8 +57594,8 @@ msgstr "Укупно сати: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Укупан износ за плаћање не може бити већи од {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57564,9 +57612,9 @@ msgstr "Укупна количина у распореду испорука н msgid "Total {0} ({1})" msgstr "Укупно {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Укупно {0} за све ставке је нула, можда би требало да промените 'Расподели трошкове засноване на'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57654,27 +57702,11 @@ msgstr "Информације о статусу праћења" msgid "Tracking URL" msgstr "URL за праћење" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Трансакција" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "Валута трансакције" @@ -57727,11 +57759,11 @@ msgstr "Ставка у запису о брисању трансакције" msgid "Transaction Deletion Record To Delete" msgstr "Запис брисања трансакција за брисање" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "Запис брисања трансакција {0} је већ у току. {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "Запис брисања трансакција {0} тренутно брише {1}. Није могуће сачувати документа док се брисање не заврши." @@ -58121,6 +58153,10 @@ msgstr "Бруто биланс (Једноставан)" msgid "Trial Balance for Party" msgstr "Бруто биланс по странкама" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58305,7 +58341,7 @@ msgstr "UAE VAT Settings" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58327,7 +58363,7 @@ msgstr "UAE VAT Settings" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58357,7 +58393,7 @@ msgstr "UAE VAT Settings" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58421,7 +58457,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Фактор конверзије јединице мере" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Фактор конверзије јединице мере ({0} -> {1}) није пронађен за ставку: {2}" @@ -58495,7 +58531,7 @@ msgstr "Поништи усклађивање" msgid "UnReconcile Allocations" msgstr "Поништи расподелу" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "Није могуће преузети детаље DocType. Молимо Вас да контактирате систем администратора." @@ -58508,10 +58544,6 @@ msgstr "Није могуће пронаћи девизни курс за {0} у msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Није могуће пронаћи девизни курс за {0} у {1} за кључни датум {2}. Молимо Вас да ручно креирате запис о конверзији валуте." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Није могуће пронаћи оцену која почиње са {0}. Морате имати постојеће оцене који су у опсегу од 0 до 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "Није могуће пронаћи временски термин у наредних {0} дана за операцију {1}. Молимо Вас да повећате 'Планирање капацитета за (у данима)' за {2}." @@ -58536,7 +58568,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Нераспоређени износ" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Недодељена количина" @@ -58548,8 +58580,10 @@ msgstr "Нефактурисане поруџбине" msgid "Unblock Invoice" msgstr "Одблокирај фактуру" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58599,7 +58633,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "Неочекивани образац серије именовања" @@ -58622,7 +58656,7 @@ msgstr "" msgid "Unit Price" msgstr "Јединична цена" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Јединица мере" @@ -58825,7 +58859,7 @@ msgstr "Непланирано" msgid "Unsecured Loans" msgstr "Необезбеђени кредити" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "Поништи усклађени захтев за наплату" @@ -58838,7 +58872,7 @@ msgstr "Непотписано" msgid "Unsubscribe from this Email Digest" msgstr "Откажи претплату на овај имејл извештај" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58982,7 +59016,7 @@ msgstr "Ажурирај тренутне залихе" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59046,7 +59080,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "Ажурирај најновију цену у свим саставницама" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "Морате омогућити ажурирање залиха за улазну фактуру {0}" @@ -59274,7 +59308,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "Користи девизни курс на датум трансакције" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Кориси назив који се разликује од претходног назива пројекта" @@ -59363,6 +59397,10 @@ msgstr "Време решавања за корисника" msgid "User has not applied rule on the invoice {0}" msgstr "Корисник није применио правило на фактури {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Корисник {0} не постоји" @@ -59375,6 +59413,10 @@ msgstr "Корисник {0} нема подразумевани профил м msgid "User {0} is already assigned to Employee {1}" msgstr "Корисник {0} је већ додељен запосленом лицу {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Корисник {0}: Уклоњена улога самосталног управљања запосленог лица јер нема додељеног запосленог лица." @@ -59383,10 +59425,6 @@ msgstr "Корисник {0}: Уклоњена улога самосталног msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Корисник {0}: Уклоњена улога запосленог лица јер нема улоге додељеног запосленог лица." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Корисник {} је онемогућен. Молимо Вас да изаберете валидног корисника/благајника" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59679,15 +59717,15 @@ msgstr "Стопа вредновања" msgid "Valuation Rate (In / Out)" msgstr "Стопа вредновања (улаз/излаз)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Недостаје стопа вредновања" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Стопа вредновања за ставку {0} је неопходна за рачуноводствене уносе за {1} {2}." @@ -59695,7 +59733,7 @@ msgstr "Стопа вредновања за ставку {0} је неопхо msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Стопа вредновања је обавезна уколико је унет почетни инвентар" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Стопа вредновања је обавезна за ставку {0} у реду {1}" @@ -59705,7 +59743,7 @@ msgstr "Стопа вредновања је обавезна за ставку msgid "Valuation and Total" msgstr "Вредновање и укупно" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "Стопа вредновања за ставке обезбеђене од стране купца је постављена на нулу." @@ -59718,14 +59756,14 @@ msgstr "Стопа вредновања за ставке обезбеђене msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Стопа вредновања за ставку према излазној фактури (само за унутрашње трансфере)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Накнаде са врстом вредновања не могу бити означене као укључене у цену" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Накнаде са врстом вредовања не могу бити означене као укључене у цену" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59775,12 +59813,12 @@ msgstr "Предлог вредности" msgid "Value Type" msgstr "Врста вредности" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "Вредност на дан" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Вредност за атрибут {0} мора бити у опсегу од {1} до {2} у корацима од {3} за ставку {4}" @@ -59789,19 +59827,19 @@ msgstr "Вредност за атрибут {0} мора бити у опсег msgid "Value of Goods" msgstr "Вредност робе" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Вредност нове капитализоване имовине" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Вредност нове набавке" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Вредност отписане имовине" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Вредност продате имовине" @@ -60277,7 +60315,7 @@ msgstr "Назив документа" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60305,7 +60343,7 @@ msgstr "Назив документа" msgid "Voucher No" msgstr "Документ број" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Број документа је обавезан" @@ -60317,7 +60355,7 @@ msgstr "Количина у документу" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Подврста документа" @@ -60349,7 +60387,7 @@ msgstr "Подврста документа" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60556,7 +60594,7 @@ msgstr "Складиште је обавезно" msgid "Warehouse is required to get producible FG Items" msgstr "Складиште је обавезно за добијање производивих готових производа" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Складиште није пронађено за рачун {0}" @@ -60574,16 +60612,16 @@ msgstr "Складиште и вредност салда ставки по ск msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Складиште {0} не може бити обрисано јер постоји количина за ставку {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Складиште {0} не припада компанији {1}" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Складиште {0} не припада компанији {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "Складиште {0} не постоји" @@ -60704,7 +60742,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Упозорење - Ред {0}: Фактурисани сати су већи од стварних сати" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "Упозорење на негативно стање залиха" @@ -60724,7 +60762,7 @@ msgstr "Упозорење: Још један {0} # {1} постоји у одн msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Упозорење: Затражени материјал је мањи од минималне количине за поруџбину" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "Упозорење: Количина премашује максималну количину која се може произвести на основу количине примљених сировина кроз налог за пријем из подуговарања {0}." @@ -60878,10 +60916,6 @@ msgstr "Група ставки веб-сајта" msgid "Website Specifications" msgstr "Спецификације веб-сајта" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61027,7 +61061,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "Када у уносу залиха за препаковање постоји више готових производа ({0}), основна цена за све готове производе мора бити постављена ручно. Да бисте ручно поставили цену, омогућите опцију 'Постави основну цену ручно' у одговарајуће реду готовог производа." @@ -61203,17 +61237,17 @@ msgstr "Недовршена производња" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61252,7 +61286,7 @@ msgstr "Утрошени материјали радног налога" msgid "Work Order Item" msgstr "Ставка радног налога" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "Неусклађеност радног налога" @@ -61293,20 +61327,20 @@ msgstr "Резиме радног налога" msgid "Work Order Summary Report" msgstr "Извештај резимеа радних налога" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Радни налог не може бити креиран из следећег разлога:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Радни налог се не може креирати из ставке шаблона" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "Радни налог је {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61327,7 +61361,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Радни налози" @@ -61352,7 +61386,7 @@ msgstr "Недовршена производња" msgid "Work-in-Progress Warehouse" msgstr "Складиште за радове у току" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Складиште за радове у току је обавезно пре него што поднесете" @@ -61405,7 +61439,7 @@ msgstr "Радни сати" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61637,14 +61671,6 @@ msgstr "Назив фискалне године" msgid "Year Start Date" msgstr "Датум почетка године" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61659,8 +61685,8 @@ msgid "You are importing data for the code list:" msgstr "Увозите податке за листу шифара:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Нисте овлашћени да ажурирате према условима постављеним у радном току {}." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61679,8 +61705,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "Узимате више него што је потребно за ставку {0}. Проверите да ли је креирана још нека листа за одабир за продајну поруџбину {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "Можете ручно додати оригиналну фактуру {} да бисте наставили." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61690,19 +61716,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "Такође можете копирати и залепити овај линк у Вашем интернет претраживачу" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Такође можете поставити подразумевани рачун за грађевинске радове у току у компанији {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Можете променити матични рачун у рачун биланса стања или изабрати други рачун." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "Можете конфигурисати подразумеване рачуне амортизације у подешавањима компаније или унети потребне рачуне у следећим редовима:

                    " @@ -61724,8 +61746,8 @@ msgid "You can only select one mode of payment as default" msgstr "Можете изабрати само један начин плаћања као подразумевани" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Можете искористити до {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61743,14 +61765,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "Можете користити {0} за усклађивање са {1} касније." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "Не можете извршити никакве измене на радној картици јер је радни налог затворен." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "Не можете обрадити број серије {0} јер је већ коришћен у пакету серије и шарже {1}. {2} уколико желите да поново користите исти серијски број више пута, омогућите опцију 'Дозволи да постојећи број серије буде поново произведен/примљен' у {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "Не можете искористити поене лојалности у вредности већој од укупног износа." @@ -61759,17 +61773,17 @@ msgstr "Не можете искористити поене лојалности msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "Не можете променити цену уколико је саставница наведена за било коју ставку." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "Не можете креирати {0} унутар затвореног рачуноводственог периода {1}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Не можете креирати или отказати никакве рачуноводствене уносе у затвореном рачуноводственом периоду {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "Не можете креирати/изменити рачуноводствене уносе до овог датума." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61780,32 +61794,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "Не можете обрисати врсту пројекта 'Екстерни'" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Не можете уређивати коренски чвор." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "Не можете омогућити оба подешавања '{0}' и '{1}'." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "Није могуће послати следеће {0} јер су или испоручени, неактивни или се налазе у другом складишту." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "Не можете искористити више од {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "Не можете поново поставити вредновање ставке пре {}" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "Не можете поново покренути претплату која није отказана." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Не можете послати празну наруџбину." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61819,6 +61841,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "Не можете {0} овај документ јер постоји други унос за периодично затварање {1} после {2}" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61829,8 +61855,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "Немате дозволу да {} ставке у {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61856,11 +61882,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "Немате дозволу да ажурирате овај документ. Молимо Вас да се обратите систем менаџеру." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Имали сте {} грешака приликом креирања почетних фактура. Погледајте {} за више детаља" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Већ сте изабрали ставке из {0} {1}" @@ -61877,8 +61903,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "Омогућили сте {0} и {1} у {2}. Ово може довести до тога да се цене из подразумеваног ценовника убацују у ценовник трансакције." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "Унели сте дуплу отпремницу у реду" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61892,19 +61918,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Морате омогућити аутоматско поновно наручивање у подешавањима залиха да бисте одржали нивое поновног наручивања." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "Имате несачуване промене. Да ли желите да сачувате фактуру?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Морате да изаберете купца пре него што додате ставку." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "Морате отказати унос затварања малопродаје {} да бисте могли да откажете овај документ." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "Изабрали сте групу рачуна {1} као {2} рачун у реду {0}. Молимо Вас да изаберете један рачун." @@ -61956,6 +61982,10 @@ msgstr "Поштански број" msgid "Zero Balance" msgstr "Нулто стање" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "Нулта стопа" @@ -61986,7 +62016,7 @@ msgstr "[Important] [ERPNext] Грешке аутоматског поновно msgid "`Allow Negative rates for Items`" msgstr "`Дозволи негативне цене за артикле`" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "после" @@ -62006,7 +62036,7 @@ msgstr "као наслов" msgid "as a percentage of finished item quantity" msgstr "као проценат количине финалне ставке" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "на дан {0}" @@ -62022,10 +62052,6 @@ msgstr "заснованона" msgid "by {}" msgstr "од {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "не може бити веће од 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62080,8 +62106,8 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "назив поља" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62161,14 +62187,10 @@ msgstr "од 5" msgid "paid to" msgstr "плаћено према" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "апликација за плаћање није инсталирана. Инсталирајте је са {0} или {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "апликација за плаћање није инсталирана. Инсталирајте је са {0} или {1}" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62182,7 +62204,7 @@ msgstr "апликација за плаћање није инсталирана msgid "per hour" msgstr "по часу" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "обављајући било коју од доле наведених:" @@ -62258,8 +62280,8 @@ msgstr "продато" msgid "subscription is already cancelled." msgstr "претплата је већ отказана." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "target_ref_field" @@ -62322,10 +62344,6 @@ msgstr "путем поправке имовине" msgid "via BOM Update Tool" msgstr "путем алата за ажурирање саставнице" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "морате изабрати рачун недовршених капиталних радова у табели рачуна" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' је онемогућен" @@ -62338,7 +62356,7 @@ msgstr "{0} '{1}' није у фискалној години {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) не може бити већи од планиране количине ({2}) у радном налогу {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1}има поднету имовину. Уклоните ставку {2} из табеле да бисте наставили." @@ -62358,7 +62376,7 @@ msgstr "Буџет {0} за рачун {1} у вези са {2} {3} износи msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "Буџет {0} за рачун {1} у вези са {2} {3} износи {4}. Биће прекорачен за {5}." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} купона искоришћено за {1}. Дозвољена количина је искоришћена" @@ -62366,11 +62384,6 @@ msgstr "{0} купона искоришћено за {1}. Дозвољена к msgid "{0} Digest" msgstr "{0} Извештај" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} број {1} већ коришћен у {2} {3}" @@ -62452,10 +62465,18 @@ msgstr "{0} може бити или {1} или {2}." msgid "{0} can not be negative" msgstr "{0} не може бити негативно" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} се не може мењати док су уноси почетног стања отворени." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} не може бити коришћено као главни трошковни центар јер је већ коришћен као зависни трошковни центар у расподели трошковних центара {1}" @@ -62471,7 +62492,7 @@ msgstr "{0} не може бити нула" msgid "{0} created" msgstr "{0} креирано" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "Креирање {0} за следеће записе ће бити прескочено." @@ -62513,7 +62534,7 @@ msgstr "{0} за {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} има омогућену расподелу засновану на условима плаћања. Изаберите услов плаћања за ред #{1} у одељку референце плаћања" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "{0} је измењена тако што сте је повукли. Молимо Вас да је повучете поново." @@ -62521,6 +62542,10 @@ msgstr "{0} је измењена тако што сте је повукли. М msgid "{0} has been submitted successfully" msgstr "{0} је успешно поднет" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} часова" @@ -62529,7 +62554,11 @@ msgstr "{0} часова" msgid "{0} in row {1}" msgstr "{0} у реду {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} је зависна табела и биће аутоматски обрисана заједно са матичним записом" @@ -62543,7 +62572,7 @@ msgstr "{0} је обавезна рачуноводствена димензи msgid "{0} is added multiple times on rows: {1}" msgstr "{0} је додат више пута у редовима: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} је већ покренут за {1}" @@ -62551,7 +62580,7 @@ msgstr "{0} је већ покренут за {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} је блокиран, самим тим ова трансакција не може бити настављена" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} је у нацрту. Поднесите га пре креирања имовине." @@ -62564,11 +62593,11 @@ msgstr "{0} је обавезно за ставку {1}" msgid "{0} is mandatory for account {1}" msgstr "{0} је обавезно за рачун {1}" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} је обавезно. Можда запис о конверзији валуте није креиран за {1} у {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} је обавезно. Можда запис о конверзији валуте није креиран за {1} у {2}." @@ -62576,7 +62605,7 @@ msgstr "{0} је обавезно. Можда запис о конверзији msgid "{0} is not a CSV file." msgstr "{0} није CSV фајл." -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} није текући рачун компаније" @@ -62592,7 +62621,7 @@ msgstr "{0} није ставка на залихама" msgid "{0} is not a valid Accounting Dimension." msgstr "{0} није важећа рачуноводствена димензија." -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} није валидна вредност за атрибут {1} за ставку {2}." @@ -62608,17 +62637,17 @@ msgstr "{0} није додат у табелу" msgid "{0} is not enabled in {1}" msgstr "{0} није омогућен у {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} није покренут. Не може се покренути догађај за овај документ" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} није подразумевани добављач ни за једну ставку." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} је на чекању до {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62668,7 +62697,7 @@ msgstr "Параметар {0} је неважећи" msgid "{0} payment entries can not be filtered by {1}" msgstr "Уноси плаћања {0} не могу се филтрирати према {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "Количина {0} за ставку {1} се прима у складиште {2} са капацитетом {3}." @@ -62681,7 +62710,7 @@ msgstr "{0} до {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} јединица је резервисано за ставку {1} у складишту {2}, молимо Вас да поништите резервисање у {3} да ускладите залихе." @@ -62697,16 +62726,16 @@ msgstr "{0} јединица ставке {1} није доступно ни у msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} јединица од {1} је неопходно у {2} са димензијом инвентара: {3} на {4} {5} за {6} да би се трансакција завршила." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} јединица {1} је потребно у {2} на {3} {4} за {5} како би се ова трансакција завршила." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} јединица {1} је потребно у {2} на {3} {4} како би се ова трансакција завршила." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} јединица {1} је потребно у {2} како би се ова трансакција завршила." @@ -62714,7 +62743,7 @@ msgstr "{0} јединица {1} је потребно у {2} како би се msgid "{0} until {1}" msgstr "{0} до {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} важећих серијских бројева за ставку {1}" @@ -62722,7 +62751,7 @@ msgstr "{0} важећих серијских бројева за ставку { msgid "{0} variants created." msgstr "{0} варијанти је креирано." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "Приказ {0} тренутно није подржан у прилагођеном финансијском извештају." @@ -62756,7 +62785,7 @@ msgstr "{0} {1} креирано" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} не постоји" @@ -62790,12 +62819,21 @@ msgstr "{0} {1} је распоређено два пута у овој банк msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} је већ повезано са заједничком шифром {2}." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} је повезано са {2}, али је рачун странке {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} је отказано или затворено" @@ -62827,6 +62865,10 @@ msgstr "{0} {1} је у потпуности фактурисано" msgid "{0} {1} is not active" msgstr "{0} {1} није активно" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} није повезано са {2} {3}" @@ -62932,27 +62974,23 @@ msgstr "{0}% од укупне вредности фактуре биће одо msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{1} за {0} не може бити након очекиваног датума завршетка за {2}" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, завршите операцију {1} пре операције {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: Зависна табела (аутоматски се брише са матичним записом)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Није пронађено" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: Заштићени DocType" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: Виртуелни DocType (нема табелу у бази података)" @@ -62968,7 +63006,7 @@ msgstr "{0}: {1} не постоји" msgid "{0}: {1} is a group account." msgstr "{0}: {1} је групни рачун." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} мора бити мање од {2}" @@ -62980,7 +63018,7 @@ msgstr "{count} имовине креиране за {item_code}" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} је отказано или затворено." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "Величина узорка за {item_name} ({sample_size}) не може бити већа од прихваћене количине ({accepted_quantity})" @@ -62992,32 +63030,7 @@ msgstr "Статус {ref_doctype} {ref_name} је {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} не може бити отказано јер су зарађени поени лојалности искоришћени. Прво откажите {} број {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} има поднету повезану имовину. Морате отказати имовину да бисте креирали повраћај набавке ." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} фактуре" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} је зависна компанија." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} је већ повезан са другим {}" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} је већ повезан са {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} не утиче на текући рачун {}" - diff --git a/erpnext/locale/sr_CS.po b/erpnext/locale/sr_CS.po index 76eab944e98..6692118d460 100644 --- a/erpnext/locale/sr_CS.po +++ b/erpnext/locale/sr_CS.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:04\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Serbian (Latin)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: sr_CS\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "\"Da li je osnovno sredstvo\" mora biti označeno, jer postoji zapis o i msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" za \"SN-01\" do \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Na zalihama" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Obavezne stavke" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'Dozvoli više prodajnih porudžbina vezanih za nabavnu porudžbinu kupca'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Na osnovu' i 'Grupisano po' ne mogu biti isti" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Datum početka' mora biti manji od 'Datum završetka'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Ima serijski broj' ne može biti 'Da' za stavke van zaliha" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "'Inspekcija je potrebna pre isporuke' je onemogućena za stavku {0}, nije potrebno kreirati inspekciju kvaliteta" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "'Inspekcija je potrebna pre nabavke' je onemogućena za stavku {0}, nije potrebno kreirati inspekciju kvaliteta" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Početno'" @@ -326,13 +317,13 @@ msgstr "'Početno'" msgid "'To Date' is required" msgstr "'Datum završetka' je obavezan" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'Do broja paketa' ne može biti manji od polja 'Od broja paketa'" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Ažuriraj zalihe' ne može biti označeno jer stavke nisu isporučene putem {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "Iznad 90" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "Ne može se kreirati imovina.

                    Pokušavate da kreirate {0} imovinu iz {2} {3}.
                    Međutim, samo je {1} stavka nabavljena i već postoji {4} imovina za {5}." @@ -826,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Dokument o plaćanju je obavezan za red(ove): {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Nije moguće izvršiti prekomerno fakturisanje za sledeće stavke:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Sledeći {0} ne pripada kompaniji {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1055,9 +1046,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Grupa kupaca sa istim nazivom već postoji, molimo Vas da promenite ime kupca ili preimenujete grupu kupaca" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1067,9 +1058,9 @@ msgstr "Lista praznika može se dodati kako bi se isključili posebni dani iz ob msgid "A Lead requires either a person's name or an organization's name" msgstr "Potencijalni kupac zahteva ili ime osobe ili naziv organizacije" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Dokument liste pakovanja može biti kreiran samo u nacrtu otpremnice." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1085,7 +1076,7 @@ msgstr "Cenovnik je zbirka cena stavki, bilo da su prodajne ili nabavne" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Proizvod ili usluga koja se kupuje, prodaje ili čuva na skladištu." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Posao usklađivanja {0} se izvršava za iste filtere. Trenutno se ne može uskladiti" @@ -1118,7 +1109,7 @@ msgstr "Drajver mora biti podešen za podnošenje." msgid "A logical Warehouse against which stock entries are made." msgstr "Logičko skladište u koje se vrše unosi zaliha." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "Došlo je do konflikta u seriji imenovanja prilikom kreiranja brojeva serija. Molimo Vas da promenite seriju imenovanja za stavku {0}." @@ -1294,7 +1285,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Prihvaćena količina u jedinici mere zaliha" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Prihvaćena količina" @@ -1325,12 +1316,16 @@ msgstr "Ključ za pristup" msgid "Access Key is required for Service Provider: {0}" msgstr "Ključ za pristup je obavezan za pružaoca usluga: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "U skladu sa CEFACT/ICG/2010/IC013 ili CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "U skladu sa sastavnicom {0}, stavka '{1}' nedostaje u unosu zaliha." @@ -1583,7 +1578,7 @@ msgstr "Račun je obavezan za unos uplate" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Račun nije pronađen" @@ -1713,11 +1708,11 @@ msgstr "Račun: {0} je nedovršeni kapital u radu i ne može se ažurirat msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Račun: {0} može biti ažuriran samo putem transakcija zaliha" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Račun: {0} nije dozvoljen u okviru unosa uplate" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Račun: {0} sa valutom: {1} ne može biti izabran" @@ -1996,8 +1991,8 @@ msgstr "Filter računovodstvenih dimenzija" msgid "Accounting Entries" msgstr "Računovodstveni unosi" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Računovodstveni unos za imovinu" @@ -2022,8 +2017,8 @@ msgstr "Računovodstveni unos za uslugu" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2071,7 +2066,11 @@ msgstr "Uvod u računovodstvo" msgid "Accounting Period" msgstr "Računovodstveni period" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Računovodstveni period se preklapa sa {0}" @@ -2269,8 +2268,8 @@ msgstr "Račun akumulirane amortizacije" msgid "Accumulated Depreciation Amount" msgstr "Iznos akumulirane amortizacije" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Akumulirana amortizacija na dan" @@ -2498,7 +2497,7 @@ msgstr "Stvarna količina" msgid "Actual Batch Quantity" msgstr "Stvarna količina šarže" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Stvarni trošak" @@ -2508,7 +2507,7 @@ msgstr "Stvarni trošak" msgid "Actual Date" msgstr "Stvarni datum" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2658,8 +2657,8 @@ msgstr "Stvarno vreme u satima (preko evidencije vremena)" msgid "Actual qty in stock" msgstr "Stvarna količina na skladištu" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Stvarna vrsta poreza ne može biti uključena u cenu stavke u redu {0}" @@ -2824,10 +2823,6 @@ msgstr "Dodaj broj serije / šarže" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Dodaj broj serije / šarže (Odbijena količina)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Dodaj zalihe" @@ -2926,13 +2921,13 @@ msgstr "Dodato od" msgid "Added On" msgstr "Datum dodavanja" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Dodata uloga dobavljača korisniku {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Dodata uloga {1} korisniku {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3074,7 +3069,7 @@ msgstr "Visina dodatnog popusta" msgid "Additional Discount Amount (Company Currency)" msgstr "Visina dodatnog popusta (valuta kompanije)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "Dodatni iznos popusta ({discount_amount}) ne može premašiti ukupan iznos pre takvog popusta ({total_before_discount})" @@ -3193,16 +3188,8 @@ msgid "Additional Transferred Qty" msgstr "Dodatno preneta količina" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "Dodatno preneta količina {0}\n" -"\t\t\t\t\tne može biti veća od {1}.\n" -"\t\t\t\t\tDa biste to ispravili, povećajte procentualnu vrednost\n" -"\t\t\t\t\tpolja 'Prenesi dodatne sirovine u skladište nedovršene\n" -"\t\t\t\t\tproizvodnje' u podešavanjima proizvodnje." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3466,7 +3453,7 @@ msgstr "Vrsta dokumenta za avans" msgid "Advance amount" msgstr "Iznos avansa" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Iznos avansa ne može biti veći od {0} {1}" @@ -3535,7 +3522,7 @@ msgstr "Protiv" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Protiv računa" @@ -3655,7 +3642,7 @@ msgstr "Protiv fakture dobavljača {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Protiv dokumenta" @@ -3679,7 +3666,7 @@ msgstr "Protiv broja dokumenta" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Protiv vrste dokumenta" @@ -3793,6 +3780,13 @@ msgstr "Aviokompanija" msgid "Algorithm" msgstr "Algoritam" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3969,7 +3963,7 @@ msgstr "" msgid "All items are already requested" msgstr "Sve stavke su već zahtevane" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Sve stavke su već fakturisane/vraćene" @@ -3981,7 +3975,7 @@ msgstr "Sve stavke su već primljene" msgid "All items have already been transferred for this Work Order." msgstr "Sve stavke su već prebačene za ovaj radni nalog." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Sve stavke u ovom dokumentu već imaju povezanu inspekciju kvaliteta." @@ -4000,16 +3994,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Svi komentari i imejlovi biće kopirani iz jednog dokumenta u drugi novokreirani dokument (Potencijal -> Prilika -> Ponuda) kroz CRM dokumenta." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Sve stavke su već vraćene." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Sve potrebne stavke (sirovine) biće preuzete iz sastavnice i popunjene u ovoj tabeli. Ovde možete takođe promeniti izvorno skladište za bilo koju stavku. Tokom proizvodnje, možete pratiti prenesene sirovine iz ove tabele." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Sve ove stavke su već fakturisane/vraćene" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4032,7 +4026,7 @@ msgstr "Automatski raspodeli avanse (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Raspodeli iznose plaćanja" @@ -4042,7 +4036,7 @@ msgstr "Raspodeli iznose plaćanja" msgid "Allocate Payment Based On Payment Terms" msgstr "Raspodeli plaćanje na osnovu uslova plaćanja" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Raspodeli zahtev za naplatu" @@ -4072,7 +4066,7 @@ msgstr "Raspoređeno" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4155,8 +4149,8 @@ msgid "Allow Alternative Item" msgstr "Dozvoli alternativnu stavku" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Dozvoli alternativnu stavku mora biti označena na stavci {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4263,7 +4257,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Dozvoli preimenovanje naziva vrednosti atributa" @@ -4544,14 +4538,16 @@ msgstr "Dozvoljene stavke" msgid "Allowed To Transact With" msgstr "Dozvoljene transakcije sa" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "Dozvoljene primarne uloge su 'Kupac' i 'Dobavljač'. Molimo Vas da izaberete samo jednu od ovih uloga." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4584,10 +4580,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "Omogućava korisnicima da podnesu ponudu dobavljača sa nultom količinom. Korisno kada su cene fiksne, a količine nisu, na primer ugovori gde su cene unapred dogovorene, a količine nisu poznate." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4595,10 +4591,6 @@ msgstr "" msgid "Already Picked" msgstr "Već odabrano" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Već postoji zapis za stavku {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Već je postavljen podrazumevani profil maloprodaje {0} za korisnika {1}, isključite podrazumevanu opciju" @@ -4614,12 +4606,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Alternativna stavka" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4824,7 +4816,7 @@ msgstr "Uvek pitaj" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5050,12 +5042,12 @@ msgstr "Grupa stavki je način za klasifikaciju stavki na osnovu vrste." msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Dogodila se greška prilikom ponovne obrade vrednovanja stavki putem {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Dogodila se greška tokom procesa ažuriranja" @@ -5269,7 +5261,7 @@ msgstr "Primenjena šifra kupona" msgid "Applied on each reading." msgstr "Primenjeno na svako očitavanje." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Primenjena pravila skladištenja." @@ -5446,10 +5438,6 @@ msgstr "Dostupni termini za zakazivanje" msgid "Appointment Confirmation" msgstr "Potvrda termina" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Termin uspešno kreiran" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5475,6 +5463,10 @@ msgstr "Zakazivanje termina je onemogućeno za ovu lokaciju" msgid "Appointment With" msgstr "Termin sa" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Termin je kreiran. Nije pronađen potencijalni klijent. Molimo Vas da proverite imejl za potvrdu" @@ -5516,6 +5508,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "Da li ste sigurno da želite da obrišete sve demo podatke?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "Da li ste sigurni da želite da obrišete ovu stavku?" @@ -5598,18 +5599,18 @@ msgstr "Pošto je polje {0} omogućeno, vrednost polja {1} treba da bude veća o msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Pošto već postoje podnete transakcije za stavku {0}, ne možete promeniti vrednost za {1}." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "Pošto postoje rezervisane zalihe, ne možete onemogućiti {0}." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Pošto postoji dovoljno stavki podsklopova, radni nalog nije potreban za skladište {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Pošto postoji dovoljno sirovina, zahtev za nabavku nije potreban za skladište {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5648,7 +5649,7 @@ msgstr "Sastavne komponente" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5720,7 +5721,7 @@ msgstr "Stavka zaliha za kapitalizaciju imovine" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5886,7 +5887,7 @@ msgstr "Stavka kretanja imovine" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6018,7 +6019,7 @@ msgstr "Analitika vrednosti imovine" msgid "Asset cancelled" msgstr "Imovina otkazana" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Imovina ne može biti otkazana, jer je već {0}" @@ -6034,7 +6035,7 @@ msgstr "Imovina je kapitalizovana nakon što je kapitalizacija imovine {0} podne msgid "Asset created" msgstr "Imovina je kreirana" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Imovina je kreirana nakon što je odvojena od imovine {0}" @@ -6087,7 +6088,7 @@ msgstr "Imovina podneta" msgid "Asset transferred to Location {0}" msgstr "Imovina prebačena na lokaciju {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Imovina ažurirana nakon što je podeljeno na imovinu {0}" @@ -6165,7 +6166,7 @@ msgstr "Vrednost imovine je podešena nakon podnošenja korekcije vrednosti imov #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6186,7 +6187,7 @@ msgstr "Imovina nije kreirana za {item_code}. Moraćete da kreirate imovinu ruč msgid "Assets {assets_link} created for {item_code}" msgstr "Imovina {assets_link} je kreirana za {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Dodeli posao zaposlenom licu" @@ -6196,6 +6197,11 @@ msgstr "Dodeli posao zaposlenom licu" msgid "Assign to Name" msgstr "Dodeli za ime" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6214,19 +6220,23 @@ msgstr "U redu #{0}: Odabrana količina {1} za stavku {2} je veća od dostupnog msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "U redu #{0}: Odabrana količina {1} za stavku {2} je veća od dostupnog stanja {3} u skladištu {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "U redu {0}: Paket serije i šarže {1} mora imati docstatus 1, a ne 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "Mora biti izabran barem jedan račun prihoda ili rashoda od kursnih razlika" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "Mora biti izabrana barem jedna stavka imovine." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "Mora biti izabrana barem jedna faktura." @@ -6247,6 +6257,10 @@ msgstr "Mora biti izabran barem jedan od relevantnih modula" msgid "At least one of the Selling or Buying must be selected" msgstr "Mora biti izabran barem jedan od prodaje ili nabavke" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "Najmanje jedna sirovina mora biti prisutna u unosu zaliha za vrstu {0}" @@ -6267,7 +6281,7 @@ msgstr "U redu #{0}: Identifikator sekvence {1} ne može biti manji od identifik msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "U redu {0}: Broj šarže je obavezan za stavku {1}" @@ -6275,26 +6289,22 @@ msgstr "U redu {0}: Broj šarže je obavezan za stavku {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "U redu {0}: Broj matičnog reda ne može biti postavljen za stavku {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "U redu {0}: Količina je obavezna za šaržu {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "U redu {0}: Broj serije je obavezan za stavku {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "U redu {0}: Paket serije i šarže {1} je već kreiran. Molimo Vas da uklonite vrednosti iz polja za paket." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "U redu {0}: postavite broj matičnog reda za stavku {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "Najmanje jedna sirovina za stavku gotovog proizvoda {0} mora biti obezbeđena od strane kupca." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6506,7 +6516,7 @@ msgstr "Automatsko usklađivanje uplata je onemogućeno. Omogućite ga kroz {0}" msgid "Auto Repeat Detail" msgstr "Detalji automatskog ponavljanja" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "Greška u automatskom podešavanju poreza" @@ -6567,7 +6577,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Dokument automatskog ponavljanja je ažuriran" @@ -6692,7 +6702,7 @@ msgstr "Datum dostupnosti za upotrebu" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6788,7 +6798,7 @@ msgstr "Potreban je datum dostupnosti za upotrebu" msgid "Available {0}" msgstr "Dostupno {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Datum dostupnosti za upotrebu treba da bude posle datuma nabavke" @@ -6906,7 +6916,7 @@ msgstr "Količina u zapisu o stanju stavki" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6925,8 +6935,8 @@ msgid "BOM 1" msgstr "Sastavnica 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "Sastavnica 1 {0} i sastavnica 2 {1} ne bi trebale da budu iste" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6940,7 +6950,7 @@ msgstr "Sastavnica 2" msgid "BOM Comparison Tool" msgstr "Alat za upoređivanje sastavnica" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7071,7 +7081,7 @@ msgstr "Operacija u sastavnici" msgid "BOM Operations Time" msgstr "Vreme operacije u sastavnici" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7092,7 +7102,7 @@ msgstr "Sastavnica pretraga" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "Sekundarna stavka sastavnice" @@ -7144,10 +7154,6 @@ msgstr "Evidencija alata za ažuriranje sastavnice sa sačuvanim statusom zadatk msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Ažuriranje sastavnice je već u toku. Molimo sačekajte dok se {0} ne završi." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "Ažuriranje sastavnice je u redu čekanja i može potrajati nekoliko minuta. Proverite {0} za napredak." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7186,15 +7192,19 @@ msgstr "Rekurzija sastavnice: {0} ne može proisteći iz {1}" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Rekurzija sastavnice: {1} ne može biti matična ili zavisna za {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "Sastavnica {0} ne pripada stavci {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "Sastavnica {0} mora biti aktivna" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "Sastavnica {0} mora biti podneta" @@ -7275,7 +7285,7 @@ msgstr "Stanje" msgid "Balance (Dr - Cr)" msgstr "Stanje (D - P)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Stanje ({0})" @@ -7345,6 +7355,10 @@ msgstr "Završno stanje bilansa stanja" msgid "Balance Sheet Summary" msgstr "Rezime bilansa stanja" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Količina stanja zaliha" @@ -7405,7 +7419,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7505,8 +7519,8 @@ msgid "Bank Account Type" msgstr "Vrsta tekućeg računa" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "Tekući račun {} u bankarskoj transakciji {} se ne poklapa sa tekućim računom {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7750,7 +7764,7 @@ msgstr "Bankarska transakcija {0} je ažurirana" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Bankarska transakcija ne može biti nazvana kao {0}" @@ -7762,7 +7776,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Tekući račun {0} već postoji i ne može biti ponovo kreiran" @@ -7774,7 +7788,7 @@ msgstr "Tekući račun je dodat" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Greška pri kreiranju bankarske transakcije" @@ -8050,8 +8064,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8082,15 +8096,15 @@ msgstr "" msgid "Batch No" msgstr "Broj šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Broj šarže je obavezan" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Broj šarže {0} ne postoji" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Broj šarže {0} je povezan sa stavkom {1} koji ima broj serije. Molimo Vas da skenirate broj serije." @@ -8098,6 +8112,10 @@ msgstr "Broj šarže {0} je povezan sa stavkom {1} koji ima broj serije. Molimo msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Broj šarže {0} nije prisutan u originalnom {1} {2}, samim tim nije moguće vratiti je protiv {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8163,9 +8181,9 @@ msgstr "Jedinica mere šarže" msgid "Batch and Serial No" msgstr "Broj serije i šarže" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Šarža nije kreirana za stavku {} jer nema seriju šarže." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8277,7 +8295,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8752,8 +8770,8 @@ msgid "Booked Fixed Asset" msgstr "Upisano osnovno sredstvo" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "Knjige su zatvorene do perioda koji se završava {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8980,8 +8998,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Budžet ne može biti dodeljen grupnom računu {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Budžet ne može biti dodeljen protiv {0}, jer to nije račun prihoda ili rashoda" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8998,7 +9016,7 @@ msgstr "Sigurnosno vreme" msgid "Buffered Cursor" msgstr "Buffered Cursor" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Izgraditi sve?" @@ -9006,7 +9024,7 @@ msgstr "Izgraditi sve?" msgid "Build Tree" msgstr "Izgraditi stablo" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Količina za izgradnju" @@ -9333,6 +9351,10 @@ msgstr "Obračunato stanje bankarskog izvoda" msgid "Calculated Discount Mismatch" msgstr "Neslaganje u obračunatom popustu" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9504,7 +9526,7 @@ msgstr "Kampanja {0} nije pronađena" msgid "Can be approved by {0}" msgstr "Može biti odobren od {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "Ne može se zatvoriti radni nalog. Pošto {0} radnih kartica ima status u obradi." @@ -9533,21 +9555,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Ne može se filtrirati prema broju dokumenta, ukoliko je grupisano po dokumentu" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Može se izvršiti plaćanje samo za neizmirene {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Možete se pozvati na red samo ako je vrsta naplate 'Na iznos prethodnog reda' ili 'Ukupan iznos prethodnog reda'" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "Ne možete promeniti metod vrednovanja, jer postoje transakcije za neke stavke koje nemaju sopstveni metod vrednovanja" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Otkazivanje posete materijalu {0} pre otkazivanja ovog zahteva za garanciju" @@ -9576,7 +9601,7 @@ msgstr "" msgid "Cancelation Date" msgstr "Datum otkazivanja" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9584,11 +9609,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "Nije moguće dodeliti blagajnika" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Nije moguće izračunati vreme jer nedostaje adresa vozača." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "Nije moguće promeniti podešavanje računa inventara" @@ -9603,10 +9623,6 @@ msgstr "Nije moguće kreirati povraćaj" msgid "Cannot Merge" msgstr "Nije moguće spojiti" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Ne može se optimizovati ruta jer nedostaje adresa vozača." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Ne može se otpustiti zaposleno lice" @@ -9631,6 +9647,11 @@ msgstr "Ne može se primeniti porez odbijen na izvoru protiv više stranaka u je msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Ne može biti osnovno sredstvo jer je kreirana knjiga zaliha." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "Nije moguće otkazati raspored amortizacije imovine {0} jer postoji nacrt naloga knjiženja {1}." @@ -9640,14 +9661,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "Nije moguće otkazati unos zatvaranja maloprodaje" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "Nije moguće otkazati unos rezervacije zaliha {0}, jer je korišćen u radnom nalogu {1}. Molimo Vas da prvo otkažete radni nalog ili poništite rezervaciju zaliha" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "Ne može se otkazati jer je obrada otkazanih dokumenata u toku." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Ne može se otkazati jer već postoji unos zaliha {0}" @@ -9655,7 +9676,7 @@ msgstr "Ne može se otkazati jer već postoji unos zaliha {0}" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "Nije moguće otkazati transakciju. Ponovna obrada vrednovanja stavki pri predaji još nije završena." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "Nije moguće otkazati ovaj unos zaliha u proizvodnji jer količina proizvedenog gotovog proizvoda ne može biti manja od isporučene količine u povezanom nalogu za prijem iz podugovaranja." @@ -9667,7 +9688,7 @@ msgstr "Nije moguće otkazati ovaj dokument jer je povezan sa podnetom korekcijo msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Ne može se otkazati ovaj dokument jer je povezan sa podnetom imovinom {asset_link}. Molimo Vas da je otkažete da biste nastavili." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Ne može se otkazati transakcija za završeni radni nalog." @@ -9692,8 +9713,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Ne može se promeniti podrazumevana valuta kompanije jer postoje transakcije. Transakcije moraju biti otkazane da bi se promenila podrazumevana valuta." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "Ne može se završiti zadatak {0} jer njegov zavistan zadatak {1} nije završen/ otkazan je." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9719,7 +9740,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "Ne mogu se kreirati unosi za rezervaciju zaliha za prijemnicu nabavke sa budućim datumom." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Ne može se kreirati lista za odabir za prodajnu porudžbinu {0} jer ima rezervisane zalihe. Poništite rezervisanje zaliha da biste kreirali listu." @@ -9728,6 +9749,10 @@ msgstr "Ne može se kreirati lista za odabir za prodajnu porudžbinu {0} jer ima msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Ne mogu se kreirati knjigovodstveni unosi za onemogućene račune: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "Nije moguće kreirati povraćaj za konsolidovanu fakturu {0}." @@ -9745,7 +9770,7 @@ msgstr "Ne može se proglasiti kao izgubljeno jer je izdata ponuda." msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Ne može se odbiti kada je kategorija za 'Vrednovanje' ili 'Vrednovanje i ukupno'" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Ne može se obrisati red prihoda/rashoda kursnih razlika" @@ -9758,7 +9783,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Nije moguće obrisati stavku koja je već poručena" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "Nije moguće obrisati zaštićeni osnovni DocType: {0}" @@ -9790,7 +9815,7 @@ msgstr "Nije moguće demontirati količinu {0} iz unosa zaliha {1}. Dostupno je msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "Nije moguće omogućiti račun inventara po stavkama jer postoje unosi u knjigu zaliha za kompaniju {0} koji koriste račun inventara po skladištima. Molimo Vas da najpre otkažete transakcije zaliha i pokušate ponovo." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9815,19 +9840,23 @@ msgstr "Ne može se pronaći stavka sa ovim bar-kodom" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "Ne može se pronaći podrazumevano skladište za stavku {0}. Molimo Vas da postavite jedan u master podacima stavke ili podešavanjima zaliha." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "Nije moguće spojiti {0} '{1}' u '{2}' jer oba imaju postojeće računovodstvene unose u različitim valutama za kompaniju '{3}'." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "Nije moguće proizvesti više stavke {0} nego što je količina na prodajnoj porudžbini {1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "Ne može se proizvesti više stavki za {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "Ne može se proizvesti više od {0} stavki za {1}" @@ -9839,12 +9868,16 @@ msgstr "Ne može se primiti od kupca protiv negativnih neizmirenih obaveza" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "Nije moguće smanjiti količinu ispod poručene ili nabavljene količine" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Ne može se pozvati broj reda veći ili jednak trenutnom broju reda za ovu vrstu naplate" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "Nije moguće preuzeti token za ažuriranje. Proverite evidenciju grešaka za više informacija" @@ -9853,19 +9886,23 @@ msgstr "Nije moguće preuzeti token za ažuriranje. Proverite evidenciju grešak msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Nije moguće preuzeti token za povezivanje. Proverite evidenciju grešaka za više informacija" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "Nije moguće izabrati vrstu grupe kao grupa kupaca. Molimo Vas da izaberete grupu kupaca kojа nije grupne vrste." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Ne može se izabrati vrsta naplate kao 'Na iznos prethodnog reda' ili 'Na ukupan iznos prethodnog reda' za prvi red" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Ne može se postaviti kao izgubljeno jer je napravljena prodajna porudžbina." @@ -10292,9 +10329,9 @@ msgstr "Promenite vrstu računa na Potraživanje ili izaberite drugi račun." msgid "Change this date manually to setup the next synchronization start date" msgstr "Ručno promenite ovaj datum da postavite datum početka sledeće sinhronizacije" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "Promenjeno ime kupca u '{}' jer '{}' već postoji." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10320,8 +10357,8 @@ msgstr "Promena metode vrednovanja na prosečnu vrednost će uticati na nove tra msgid "Channel Partner" msgstr "Kanal partnera" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "Naknada vrste 'Stvarno' u redu {0} ne može biti uključena u cenu stavke ili plaćeni iznos" @@ -10515,7 +10552,7 @@ msgstr "Širina čeka" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Datum čeka / reference" @@ -10573,7 +10610,7 @@ msgstr "Zavisni Docname" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Referenca zavisnog reda" @@ -10583,8 +10620,8 @@ msgid "Child Table Not Allowed" msgstr "Zavisna tabela nije dozvoljena" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Postoji zavisni zadatak za ovaj zadatak. Ne možete obrisati ovaj zadatak." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10762,7 +10799,7 @@ msgstr "Zatvori zajam" msgid "Close Replied Opportunity After Days" msgstr "Zatvori odgovorenu priliku nakon nekoliko dana" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Zatvori maloprodaju" @@ -10776,7 +10813,7 @@ msgstr "Zatvoren dokument" msgid "Closed Documents" msgstr "Zatvoreni dokumenti" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Zatvoreni radni nalog se ne može zaustaviti ili ponovo otvoriti" @@ -11006,9 +11043,9 @@ msgstr "Provizija" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11445,7 +11482,7 @@ msgstr "Kompanije" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11515,7 +11552,7 @@ msgstr "Kompanije" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11555,10 +11592,6 @@ msgstr "Kompanija" msgid "Company Abbreviation" msgstr "Skraćenica kompanije" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Skraćenica kompanije ne može da ima više od 5 karaktera" @@ -11723,7 +11756,7 @@ msgstr "Adresa za isporuku" msgid "Company Tax ID" msgstr "PIB kompanije" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "Kompanija i datum knjiženja su obavezni" @@ -11767,12 +11800,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "Naziv polja za link kompanije koji se koristi za filtriranje (opciono - ostavite prazno da biste obrisali sve zapise)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Naziv kompanije nije isti" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "Imovina {0} za kompaniju i ulazni dokument {1} se ne poklapaju." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11810,6 +11843,14 @@ msgstr "Kompanija {0} je dodata više puta" msgid "Company {0} does not exist" msgstr "Kompanija {0} ne postoji" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Kompanija {0} je dodata više puta" @@ -11818,14 +11859,6 @@ msgstr "Kompanija {0} je dodata više puta" msgid "Company {0} is not in South Africa." msgstr "Kompanija {0} nije u Južnoj Africi." -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "Kompanija {} još uvek ne postoji. Postavke poreza su prekinute." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "Kompanija {} se ne podudara sa profilom maloprodaje kompanije {}" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11847,7 +11880,7 @@ msgstr "Naziv konkurenta" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Konkurenti" @@ -12291,8 +12324,8 @@ msgid "Consumed Qty" msgstr "Utrošena količina" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "Utrošena količina ne može biti veća od rezervisane količine za stavku {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12607,7 +12640,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12907,7 +12940,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12932,7 +12965,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12990,7 +13023,7 @@ msgstr "Broj troškovnog centra" msgid "Cost Center and Budgeting" msgstr "Troškovni centar i budžetiranje" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "Troškovni centar za stavku u redu je ažuriran na {0}" @@ -13002,7 +13035,7 @@ msgstr "Troškovni centar je deo raspodele troškovnog centra, stoga ne može bi msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Troškovni centar je obavezan u redu {0} u tabeli poreza za vrstu {1}" @@ -13024,12 +13057,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "Troškovni centar {0} ne može biti korišćen za raspodelu jer je korišćen kao glavni troškovni centar u drugom zapisu raspodele." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Troškovni centar {} ne pripada kompaniji {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "Troškovni centar {} je grupni troškovni centar. Grupni troškovni centar ne može se koristiti u transakcijama" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13153,14 +13186,14 @@ msgid "Costing and Billing" msgstr "Obračun troškova i fakturisanje" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "Polja za obračun troškova i fakturisanje su ažurirana" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Nije moguće obrisati demo podatke" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Nije moguće automatski kreirati kupca zbog sledećih nedostajućih obaveznih polja:" @@ -13172,7 +13205,7 @@ msgstr "Nije moguće automatski kreirati dokument o smanjenju, poništite označ msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Nije moguće detektovati kompaniju za ažuriranje tekućih računa" @@ -13182,8 +13215,8 @@ msgstr "Nije pronađena odgovarajuća smena koja odgovara razlici: {0}" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "Nije moguće pronaći put za " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13206,7 +13239,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Nije moguće rešiti funkciju ocene kriterijuma za {0}. Proverite da li je formula validna." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Nije moguće rešiti funkciju ponderisanog rezultata. Proverite da li je formula validna." @@ -13436,10 +13469,6 @@ msgstr "Kreiraj novog kupca" msgid "Create New Lead" msgstr "Kreiraj novog potencijalnog klijenta" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13458,7 +13487,7 @@ msgstr "Kreiraj operacije" msgid "Create Opportunity" msgstr "Kreiraj priliku" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Kreiraj unos početnog stanja maloprodaje" @@ -13473,7 +13502,7 @@ msgstr "Kreiraj unos uplate" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "Kreiraj unos uplate za konsolidovane fiskalne račune." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Kreiraj zahtev za naplatu" @@ -13701,7 +13730,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "Kreiraj varijantu sa šablonskom slikom." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Kreiraj transakciju ulaznih zaliha za stavku." @@ -13735,7 +13764,7 @@ msgstr "Kreiraj {0} {1} ?" msgid "Created By Migration" msgstr "Kreirano putem migracije" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "Kreirano {0} tablica za ocenjivanje za {1} između:" @@ -13830,7 +13859,7 @@ msgstr "Kreiranje korisnika ..." msgid "Creating demo data" msgstr "Kreiranje demo podataka" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Kreiranje {} od {} {}" @@ -13840,17 +13869,17 @@ msgstr "Kreiranje {} od {} {}" msgid "Creation" msgstr "Kreiranje" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "Kreiranje {1}(s) uspešno" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Kreiranje {0} bezuspešno.\n" "\t\t\t\tProveri Evidenciju masovnih transakcija" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Kreiranje {0} delimično uspešno.\n" @@ -13885,11 +13914,11 @@ msgstr "Kreiranje {0} delimično uspešno.\n" msgid "Credit" msgstr "Potražuje" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Potražuje (Transakcija)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Potražuje ({0})" @@ -13970,7 +13999,7 @@ msgstr "Odloženo plaćanje" msgid "Credit Limit" msgstr "Ograničenje potraživanja" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Ograničenje potraživanja premašeno" @@ -14050,16 +14079,16 @@ msgstr "Potražuje" msgid "Credit in Company Currency" msgstr "Potražuje u valuti kompanije" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Ograničenje potraživanja premašeno za klijenta {0} ({1}/{2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Ograničenje potraživanja je već definisano za kompaniju {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Ograničenje potraživanja premašeno za kupca {0}" @@ -14118,12 +14147,12 @@ msgstr "Podešavanje kriterijuma" msgid "Criteria Weight" msgstr "Težina kriterijuma" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Težine kriterijuma moraju rezultirati zbirom od 100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Interval Cron zadatka treba da bude između 1 i 59 minuta" @@ -14246,7 +14275,7 @@ msgstr "Valuta i cenovnik" msgid "Currency can not be changed after making entries using some other currency" msgstr "Valuta ne može biti promenjena nakon što su uneseni podaci koristeći drugu valutu" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "Filteri po valuti trenutno nisu podržani u prilagođenom finansijskom izveštaju." @@ -14311,8 +14340,8 @@ msgid "Current BOM" msgstr "Trenutna sastavnica" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "Trenutna sastavnica i nova sastavnica ne mogu biti iste" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14374,10 +14403,6 @@ msgstr "Trenutni paket serije/šarže" msgid "Current Serial No" msgstr "Trenutni broj serije" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15208,7 +15233,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Dnevni rezime projekta za {0}" @@ -15353,10 +15378,6 @@ msgstr "Datumi za obradu" msgid "Day Of Week" msgstr "Dan u nedelji" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15463,11 +15484,11 @@ msgstr "Trgovac" msgid "Debit" msgstr "Duguje" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Duguje (Transakcija)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Duguje ({0})" @@ -15629,7 +15650,7 @@ msgstr "Decilitar" msgid "Decimeter" msgstr "Decimetar" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Proglasi izgubljeno" @@ -16310,8 +16331,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "Brisanje {0} i svih povezanih dokumenata sa zajedničkom šifrom..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Brisanje u toku!" @@ -16405,7 +16426,7 @@ msgstr "Isporučene stavke koje treba fakturisati" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16463,7 +16484,7 @@ msgstr "Isporuka" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16793,7 +16814,7 @@ msgstr "Amortizacija" msgid "Depreciation Amount" msgstr "Iznos amortizacije" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Iznos amortizacije tokom perioda" @@ -16809,7 +16830,7 @@ msgstr "Datum amortizacije" msgid "Depreciation Details" msgstr "Detalji amortizacije" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Amortizacija prestala zbog otuđenja imovine" @@ -16879,7 +16900,7 @@ msgstr "Datum knjiženja amortizacije ne može biti pre datuma kada je sredstvo msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Red amortizacije {0}: Datum knjiženja amortizacije ne može biti pre datuma kada je sredstvo dostupno za upotrebu" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Red amortizacije {0}: Očekivana vrednost nakon korisnog veka mora biti veća ili jednaka {1}" @@ -16908,11 +16929,11 @@ msgstr "Raspored amortizacije" msgid "Depreciation Schedule View" msgstr "Pregled rasporeda amortizacije" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "Amortizacija se ne može izračunati za potpuno amortizovanu imovinu" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "Amortizacija eliminisana putem poništavanja" @@ -16940,7 +16961,7 @@ msgstr "Dizajner" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Detaljan razlog" @@ -17043,12 +17064,12 @@ msgid "Difference Account in Items Table" msgstr "Račun razlike u tabeli stavki" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "Račun razlike mora biti račun imovine ili obaveza (privremeno početno stanje), jer je ovaj unos zaliha unos otvaranja početnog stanja" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Račun razlike mora biti račun imovine ili obaveza, jer ovo usklađivanje zaliha predstavlja unos početnog stanja" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17110,7 +17131,7 @@ msgstr "Vrednost razlike" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "Za svaki red se mogu podesiti različito 'Izvorno skladište' i 'Ciljno skladište'." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Različite jedinice mere za stavke će dovesti do netačne (ukupne) neto težine. Uverite se da je neto težina svake stavke u istoj jedinici mere." @@ -17283,7 +17304,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "Onemogućeno skladište {0} se ne može koristiti za ovu transakciju." @@ -17292,18 +17313,18 @@ msgstr "Onemogućeno skladište {0} se ne može koristiti za ovu transakciju." msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Cenovna pravila su onemogućena jer je ovo {} interna transakcija" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "Cene sa uključenim porezom su onemogućene jer je ovo {} interna transakcija" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17552,9 +17573,9 @@ msgstr "Popust ne može biti veći od 100%." msgid "Discount must be less than 100" msgstr "Popust mora biti manji od 100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Popust od {} primenjen prema uslovu plaćanja" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17918,11 +17939,11 @@ msgstr "Da li želite da podnesete unos zaliha?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} ne postoji" @@ -17960,22 +17981,6 @@ msgstr "Pretraga dokumenata" msgid "Document Count" msgstr "Broj dokumenata" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "Broj dokumenta" @@ -18281,7 +18286,7 @@ msgstr "Duplikat projekta sa zadacima" msgid "Duplicate Sales Invoices found" msgstr "Pronađeni su duplikati izlazne fakture" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "Greška duplikata broja serije" @@ -18435,7 +18440,7 @@ msgstr "Izmeni kapacitet" msgid "Edit Cart" msgstr "Izmeni korpu" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Izmena nije dozvoljena" @@ -18659,8 +18664,8 @@ msgid "Email verification failed." msgstr "Imejl verifikacije neuspešna." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "Imejl u redu čekanja" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18847,7 +18852,7 @@ msgstr "Zaposlena lica" msgid "Empty" msgstr "Prazno" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "Lista za brisanje je prazna" @@ -18856,7 +18861,7 @@ msgstr "Lista za brisanje je prazna" msgid "Ems(Pica)" msgstr "Ems (Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18935,6 +18940,12 @@ msgstr "Omogući popuste i maržu" msgid "Enable European Access" msgstr "Omogući evropski pristup" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19206,7 +19217,7 @@ msgstr "Vreme završetka" msgid "End Transit" msgstr "Završetak tranzita" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19329,7 +19340,7 @@ msgstr "Unesite broj telefona kupca" msgid "Enter date to scrap asset" msgstr "Unesite datum za otpis imovine" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Unesite detalje amortizacije" @@ -19385,6 +19396,10 @@ msgstr "Unesite količinu za proizvodnju. Stavke sirovine će biti preuzete samo msgid "Enter {0} amount." msgstr "Unesite iznos za {0}." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Rekreacija i slobodno vreme" @@ -19420,7 +19435,7 @@ msgstr "Vrsta unosa" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Kapital" @@ -19444,7 +19459,7 @@ msgstr "Erg" msgid "Error Description" msgstr "Opis greške" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Došlo je do greške" @@ -19476,21 +19491,21 @@ msgstr "Greška prilikom knjiženja amortizacije" msgid "Error while processing deferred accounting for {0}" msgstr "Greška prilikom obrade vremenskog razgraničenja kod {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Greška prilikom ponovne obrade vrednovanja stavke" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Greška: Ova imovina već ima {0} evidentiranih perioda amortizacije.\n" -"\t\t\t\t\t Datum 'početka amortizacije' mora biti najmanje {1} perioda nakon datuma 'dostupno za korišćenje'.\n" -"\t\t\t\t\t Molimo Vas da ispravite datum u skladu sa tim." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Greška: {0} je obavezno polje" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19504,7 +19519,7 @@ msgid "Estimated Arrival" msgstr "Predviđeno vreme dolaska" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Procena troškova" @@ -19554,7 +19569,7 @@ msgstr "Primer: ABCD.#####. Ukoliko je serija postavljena i broj šarže nije na msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Primer: Broj serije {0} je rezervisan u {1}." @@ -19835,7 +19850,7 @@ msgstr "Očekivani datum zatvaranja" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19922,7 +19937,7 @@ msgstr "Očekivana vrednost nakon korisnog veka" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Trošak" @@ -20181,9 +20196,9 @@ msgstr "Farenhajt" msgid "Failed Entries" msgstr "Neuspešni unosi" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Neuspešna autentifikacija API ključa." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20380,7 +20395,7 @@ msgid "Fetching Sales Orders..." msgstr "Preuzimanje prodajnih porudžbina..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Preuzimanje deviznih kursnih lista ..." @@ -20418,15 +20433,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "Polja će biti kopirana samo prilikom kreiranja." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "Fajl ne pripada ovom zapisu o brisanju transakcije" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Fajl nije pronađen" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Fajl nije pronađen na serveru" @@ -20435,7 +20450,7 @@ msgstr "Fajl nije pronađen na serveru" msgid "File to Rename" msgstr "Fajl za preimenovanje" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20594,11 +20609,11 @@ msgstr "Red finansijskog izveštaja" msgid "Financial Report Template" msgstr "Šablon finansijskog izveštaja" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "Šablon finansijskog izveštaja {0} je onemogućen" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "Šablon finansijskog izveštaja {0} nije pronađen" @@ -20667,7 +20682,7 @@ msgstr "Sastavnica gotovog proizvoda" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20680,7 +20695,7 @@ msgstr "Stavka gotovog proizvoda" msgid "Finished Good Item Code" msgstr "Šifra stavke gotovog proizvoda" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Količina gotovog proizvoda" @@ -20788,7 +20803,7 @@ msgstr "Skaldište gotovih proizvoda" msgid "Finished Goods based Operating Cost" msgstr "Operativni trošak zasnovan na gotovim proizvodima" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Gotov proizvod {0} ne odgovara radnom nalogu {1}" @@ -20887,10 +20902,6 @@ msgstr "Fiskalni režim je obavezan, molimo Vas da postavite fiskalni režim u k msgid "Fiscal Year" msgstr "Fiskalna godina" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20904,11 +20915,8 @@ msgstr "Detalji fiskalne godine" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Datum kraja fiskalne godine treba biti godinu dana nakon početnog datuma fiskalne godine" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Fiskalna godina {0} ne postoji" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Fiskalna godina {0} ne postoji" @@ -20941,7 +20949,7 @@ msgstr "Osnovna sredstva" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21077,7 +21085,7 @@ msgstr "Stopa/Sekund" msgid "For" msgstr "Za" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "Za stavke 'Grupa proizvoda', skladište, broj serije i broj šarže biće preuzeti iz tabele 'Lista pakovanja'. Ukoliko su skladište i broj šarže isti za sve stavke koje se pakuju u okviru 'Grupe proizvoda', ti podaci mogu biti uneseni u glavnu tabelu stavki, a vrednosti će biti kopirane u tabelu 'Lista pakovanja'." @@ -21102,10 +21110,6 @@ msgstr "Za kompaniju" msgid "For Item" msgstr "Za stavku" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "Za stavku {0} količina ne može biti primljena u većoj količini od {1} u odnosu na {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21172,12 +21176,12 @@ msgid "For Work Order" msgstr "Za radni nalog" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Za stavku {0}, količina mora biti negativna broj" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Za stavku {0}, količina mora biti pozitivan broj" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21209,13 +21213,13 @@ msgstr "Za koliko je potrošeno = 1 lojalti poen" msgid "For individual supplier" msgstr "Za pojedinačnog dobavljača" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "Za stavku {0}, je kreirano ili povezano samo {1} imovine u {2}. Molimo Vas da kreirate ili povežete još {3} imovina sa odgovarajućim dokumentom." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "Za stavku {0}, cena mora biti pozitivan broj. Da biste omogućili negativne cene, omogućite {1} u {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21227,9 +21231,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "Za operaciju {0} u redu {1}, molimo Vas da dodate sirovine ili dodelite sastavnicu." -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "Za operaciju {0}: Količina ({1}) ne može biti veća od preostale količine ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21244,21 +21248,17 @@ msgstr "Za projekat - {0}, ažurirajte svoj status" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "Za projektovane i prognozirane količine, sistem će uzeti u obzir sva zavisna skladišta pod izabranim matičnim skladištem." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "Količina {0} ne bi smela biti veća od dozvoljene količine {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Za referencu" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Za red {0} u {1}. Da biste uključili {2} u cenu stavke, redovi {3} takođe moraju biti uključeni" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Za red {0}: Unesite planiranu količinu" @@ -21277,11 +21277,15 @@ msgstr "Za polje 'Primeni pravilo na ostale' {0} je obavezno" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Radi pogodnosti kupaca, ove šifre mogu se koristiti u formatima za štampanje kao što su fakture i otpremnice" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "Za stavku {0}, utrošena količina treba da bude {1} prema sastavnici {2}." -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "Da bi novi {0} stupio na snagu, želite li da obrišete trenutni {1}?" @@ -21369,6 +21373,21 @@ msgstr "Postovi na forumu" msgid "Forum URL" msgstr "URL foruma" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "Frappe School" @@ -21912,7 +21931,7 @@ msgstr "Stanje glavne knjige" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Unos u glavnu knjigu" @@ -22037,6 +22056,10 @@ msgstr "Glavna knjiga" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22090,7 +22113,7 @@ msgstr "Generiši unos zatvaranja zaliha" msgid "Generate To Delete List" msgstr "Generiši listu za brisanje" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "Prvo generišite listu za brisanje" @@ -22433,7 +22456,7 @@ msgstr "Roba na putu" msgid "Goods Transferred" msgstr "Roba premeštena" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Roba je već primljena na osnovu izlaznog unosa {0}" @@ -22616,7 +22639,7 @@ msgstr "Ukupan iznos mora odgovarati zbiru referenci plaćanja" msgid "Grant Commission" msgstr "Odobri komision" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Veći od iznosa" @@ -22756,7 +22779,7 @@ msgstr "Grupisano po prodajnoj porudžbini" msgid "Group by Voucher" msgstr "Grupisano po dokumentu" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Nije dozvoljeno izabrati skladište grupnog čvora za transakcije" @@ -23059,7 +23082,7 @@ msgstr "Pomaže Vam da raspodelite budžet/cilj po mesecima ako imate sezonalnos msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Ovo su evidencije grešaka za prethodno neuspele unose amortizacije: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "Sledeće su opcije za nastavak:" @@ -23087,7 +23110,7 @@ msgstr "Ovde su Vaši nedeljni odmori unapred popunjeni na osnovu prethodnih oda msgid "Hertz" msgstr "Herc" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Zdravo," @@ -23123,7 +23146,7 @@ msgstr "Sakrij ukoliko je nula" msgid "Hide Images" msgstr "Sakrij slike" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "Sakrij nedavne naloge" @@ -23710,15 +23733,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "Ukoliko porezi nisu postavljeni, a šablon poreza i naknada je izabran, sistem će automatski primeniti poreze iz izabranog šablona." -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "Ukoliko nije, možete otkazati/ podneti ovaj unos" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "Ukoliko stranka ne postoji, kreirajte je koristeći polje naziv kupca." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "Ukoliko stranka ne postoji, kreirajte je koristeći polje naziv dobavljača." @@ -23756,7 +23779,7 @@ msgstr "Ukoliko sastavnica rezultira otpisanim stavkama, potrebno je izabrati sk msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Ukoliko je račun zaključan, unos je dozvoljen samo ograničenom broju korisnika." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Ukoliko se stavka knjiži kao stavka sa nultom stopom vrednovanja u ovom unosu, omogućite opciju 'Dozvoli nultu stopu vrednovanja' u tabeli stavki {0}." @@ -23857,7 +23880,7 @@ msgstr "Ukoliko treba da uskladite određene transakcije međusobno, izaberite o msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "Ukoliko i dalje želite da nastavite, omogućite {0}." @@ -24075,14 +24098,14 @@ msgstr "Uvezi fakture" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "Uvezi MT940 format" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Uvoz uspešan" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Rezime uvoza" @@ -24559,7 +24582,7 @@ msgstr "Uključujući stavke za podsklopove" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Prihod" @@ -24645,7 +24668,7 @@ msgstr "Dolazni poziv od {0}" msgid "Incompatible Setting Detected" msgstr "Otkrivena nekompatibilna podešavanja" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "Netačan račun" @@ -24654,7 +24677,7 @@ msgstr "Netačan račun" msgid "Incorrect Balance Qty After Transaction" msgstr "Pogrešan saldo količine nakon transakcije" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Utrošena netačna šarža" @@ -24662,11 +24685,11 @@ msgstr "Utrošena netačna šarža" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Netačno skladište za ponovno naručivanje" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "Netačna kompanija" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Netačna količina komponenti" @@ -24675,7 +24698,7 @@ msgstr "Netačna količina komponenti" msgid "Incorrect Date" msgstr "Netačan datum" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Netačna faktura" @@ -24692,7 +24715,7 @@ msgstr "Netačan referentni dokument (stavka prijemnice nabavke)" msgid "Incorrect Serial No Valuation" msgstr "Neispravno vrednovanje serijskog broja" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Utrošen netačan broj serije" @@ -24775,7 +24798,7 @@ msgstr "Povećanje" msgid "Increment cannot be 0" msgstr "Povećanje ne može biti 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Povećanje za atribut {0} ne može biti 0" @@ -24972,7 +24995,7 @@ msgid "Instruction" msgstr "Uputstvo" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Nedovoljan kapacitet" @@ -24988,12 +25011,12 @@ msgstr "Nedovoljne dozvole" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Nedovoljno zaliha" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Nedovoljno zaliha za šaržu" @@ -25123,7 +25146,7 @@ msgstr "Trošak kamata" msgid "Interest Income" msgstr "Prihod od kamata" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Kamata i/ili naknada za opomenu" @@ -25148,7 +25171,7 @@ msgstr "Interni" msgid "Internal Customer Accounting" msgstr "Računovodstvo internog kupca" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Interni kupac za kompaniju {0} već postoji" @@ -25174,7 +25197,7 @@ msgstr "Nedostaje referenca za internu prodaju" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "Interni dobavljač za kompaniju {0} već postoji" @@ -25195,7 +25218,7 @@ msgstr "Interni dobavljač za kompaniju {0} već postoji" msgid "Internal Transfer" msgstr "Interni transfer" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Nedostaje referenca za interni transfer" @@ -25237,8 +25260,8 @@ msgstr "Interval mora biti između 1 i 59 minuta" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25257,7 +25280,7 @@ msgstr "Nevažeći raspoređeni iznos" msgid "Invalid Amount" msgstr "Nevažeći iznos" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Nevažeći atribut" @@ -25274,11 +25297,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Nevažeći bar-kod. Ne postoji stavka koja je priložena sa ovim bar-kodom." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Nevažeća okvirna narudžbina za izabranog kupca i stavku" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "Nevažeći CSV format. Očekivana kolona: doctype_name" @@ -25298,13 +25321,13 @@ msgstr "Nevažeća kompanija za međukompanijsku transakciju." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Nevažeći troškovni centar" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "Nevažeća grupa kupaca" @@ -25325,11 +25348,11 @@ msgstr "" msgid "Invalid Discount" msgstr "Nevažeći popust" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "Nevažeći iznos popusta" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Nevažeći dokument" @@ -25359,7 +25382,7 @@ msgstr "Nevažeće grupisanje po" msgid "Invalid Item" msgstr "Nevažeća stavka" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Nevažeći podrazumevani podaci za stavku" @@ -25368,7 +25391,7 @@ msgstr "Nevažeći podrazumevani podaci za stavku" msgid "Invalid Ledger Entries" msgstr "Nevažeći računovodstveni unosi" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "Nevažeći neto iznos nabavke" @@ -25407,7 +25430,7 @@ msgstr "Nevažeći format štampe" msgid "Invalid Priority" msgstr "Nevažeći prioritet" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Nevažeća konfiguracija gubitaka u procesu" @@ -25424,7 +25447,7 @@ msgstr "Nevažeća količina" msgid "Invalid Quantity" msgstr "Nevažeća količina" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "Nevažeći upit" @@ -25436,8 +25459,8 @@ msgstr "Nevažeći povrat" msgid "Invalid Sales Invoices" msgstr "Nevažeće izlazne fakture" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Nevažeći raspored" @@ -25445,7 +25468,7 @@ msgstr "Nevažeći raspored" msgid "Invalid Selling Price" msgstr "Nevažeća prodajna cena" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Nevažeći broj paketa serije i šarže" @@ -25462,7 +25485,7 @@ msgstr "" msgid "Invalid Upload" msgstr "Nevažeće otpremanje" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Nevažeća vrednost" @@ -25472,14 +25495,14 @@ msgid "Invalid Warehouse" msgstr "Nevažeće skladište" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "Nevažeći iznos u računovodstvenim unosima za {} {} za račun {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Nevažeći izraz uslova" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "Nevažeći URL fajla" @@ -25511,7 +25534,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "Nevažeći ključ rezultata. Odgovor:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Nevažeći upit pretrage" @@ -26474,10 +26497,6 @@ msgstr "Datum izdavanja" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Može potrajati nekoliko sati da tačne vrednosti zaliha postanu vidljive nakon spajanja stavki." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Potrebno je preuzeti detalje stavki." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26486,7 +26505,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "Nije moguće ravnomerno raspodeliti troškove kada je ukupni iznos nula, molimo postavite 'Raspodeli troškove zasnovane na' kao 'Količina'" @@ -26535,12 +26554,12 @@ msgstr "Kurizvni tekst za međuzbirove ili napomene" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26573,7 +26592,7 @@ msgstr "Kurizvni tekst za međuzbirove ili napomene" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26647,7 +26666,7 @@ msgstr "Stavka 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26808,7 +26827,7 @@ msgstr "Korpa stavke" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26840,7 +26859,7 @@ msgstr "Korpa stavke" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26849,12 +26868,12 @@ msgstr "Korpa stavke" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26950,7 +26969,7 @@ msgstr "Šifra stavke ne može biti promenjena za broj serije." msgid "Item Code required at Row No {0}" msgstr "Šifra stavke neophodna je u redu broj {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Šifra stavke: {0} nije dostupna u skladištu {1}." @@ -27146,7 +27165,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Stablo grupa stavki" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Grupa stavke nije pomenuta u master podacima za stavku {0}" @@ -27300,7 +27319,7 @@ msgstr "Proizvođač stavke" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27331,7 +27350,7 @@ msgstr "Proizvođač stavke" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27339,8 +27358,8 @@ msgstr "Proizvođač stavke" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27397,7 +27416,7 @@ msgstr "Proizvođač stavke" msgid "Item Name" msgstr "Naziv stavke" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "Naziv stavke je obavezan." @@ -27444,8 +27463,8 @@ msgstr "Podešavanje cene stavke" msgid "Item Price Stock" msgstr "Cene stavke na skladištu" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27457,7 +27476,7 @@ msgstr "Cena stavke se pojavljuje više puta na osnovu cenovnika, dobavljača / msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Cena stavke ažurirana za {0} u cenovniku {1}" @@ -27502,7 +27521,7 @@ msgstr "Ponovno naručivanje stavke" msgid "Item Row" msgstr "Red stavke" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Red stavke {0}: {1} {2} ne postoji u navedenoj '{1}' tabeli" @@ -27618,7 +27637,7 @@ msgstr "Stavka za proizvodnju" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Varijanta stavke" @@ -27737,7 +27756,7 @@ msgstr "Poreski detalji po stavkama" msgid "Item Wise Tax Details" msgstr "Detalji poreza po stavkama" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "Detalji poreza po stavkama se ne poklapaju sa porezima i troškovima u sledećim redovima:" @@ -27773,7 +27792,7 @@ msgstr "Stavka je obavezna u tabeli sirovina." msgid "Item is removed since no serial / batch no selected." msgstr "Stavka je uklonjena jer nije izabran broj serije / šarže." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Stavka mora biti dodata korišćenjem dugmeta 'Preuzmi stavke iz prijemnice nabavke'" @@ -27787,7 +27806,7 @@ msgstr "Naziv stavke" msgid "Item operation" msgstr "Stavka operacije" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "Cena stavke je ažurirana na nulu jer je označena opcija 'Dozvoli nultu stopu vrednovanja' za stavku {0}" @@ -27802,7 +27821,7 @@ msgstr "Stavka za proizvodnju" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "Stopa vrednovanja stavke je preračunata uzimajući u obzir zavisne troškove nabavke" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Ponovna obrada vrednovanja stavke je u toku. Izveštaj može prikazati netačno vrednovanje stavke." @@ -27818,10 +27837,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "Stavka {0} je dodata više puta pod istom matičnom stavkom {1} u redovima {2} i {3}" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "Stavka {0} ne može biti dodata kao podsklop same sebe" @@ -27830,6 +27845,10 @@ msgstr "Stavka {0} ne može biti dodata kao podsklop same sebe" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Stavka {0} ne može biti naručena u količini većoj od {1} prema okvirnom nalogu {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27839,6 +27858,7 @@ msgstr "Stavka {0} ne postoji" msgid "Item {0} does not exist in the system or has expired" msgstr "Stavka {0} ne postoji u sistemu ili je istekla" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Stavka {0} ne postoji." @@ -27871,6 +27891,10 @@ msgstr "Stavka {0} je dostigla kraj svog životnog veka na dan {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "Stavka {0} je zanemarena jer nije stavka na zalihama" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Stavka {0} je već rezervisana / isporučena prema prodajnoj porudžbini {1}." @@ -27903,7 +27927,7 @@ msgstr "Stavka {0} nije stavka za podugovaranje" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "Stavka {0} nije aktivna ili je dostigla kraj životnog veka" @@ -27935,10 +27959,6 @@ msgstr "Stavka {0}: Naručena količina {1} ne može biti manja od minimalne kol msgid "Item {0}: {1} qty produced. " msgstr "Stavka {0}: Proizvedena količina {1}. " -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "Stavka {} ne postoji." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27989,6 +28009,10 @@ msgstr "Stavka/Šifra stavke je neophodna za preuzimanje šablona stavke poreza. msgid "Item: {0} does not exist in the system" msgstr "Stavka: {0} ne postoji u sistemu" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -28005,7 +28029,7 @@ msgstr "Katalog stavki" msgid "Items Filter" msgstr "Filter stavki" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Potrebne stavke" @@ -28045,7 +28069,7 @@ msgstr "Stavke za zahtev za nabavku sirovina" msgid "Items not found." msgstr "Stavke nisu pronađene." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "Cena stavki je ažurirana na nulu jer je opcija dozvoli nultu stopu vrednovanja označena za sledeće stavke: {0}" @@ -28055,7 +28079,7 @@ msgstr "Cena stavki je ažurirana na nulu jer je opcija dozvoli nultu stopu vred msgid "Items to Be Repost" msgstr "Stavke za ponovno knjiženje" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Stavke za proizvodnju su potrebne za preuzimanje povezanih sirovina." @@ -28125,7 +28149,7 @@ msgstr "Kapacitet posla" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28188,20 +28212,19 @@ msgstr "Zapis vremena radne kartice" msgid "Job Card and Capacity Planning" msgstr "Radna kartica i planiranje kapaciteta" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "Radna kartica {0} je završen" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "Radne kartice" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "Posao pauziran" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Posao započet" @@ -28264,11 +28287,19 @@ msgstr "Naziv izvršioca posla" msgid "Job Worker Warehouse" msgstr "Skladište izvršioca posla" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Radna kartica {0} je kreirana" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "Posao: {0} je pokrenut za obradu neuspelih transakcija" @@ -28614,8 +28645,8 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "Poslednje ažuriranje unosa u glavnu knjigu je izvršeno {}. Ova operacija nije dozvoljena dok je sistem aktivno u upotrebi. Molimo Vas da sačekate 5 minuta pre nego što pokušate ponovo." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28735,7 +28766,7 @@ msgstr "Geografska širina" msgid "Lead" msgstr "Potencijalni klijent" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Potencijalni klijent -> Mogući kupac" @@ -28829,7 +28860,7 @@ msgstr "Vreme isporuke u danima" msgid "Lead Type" msgstr "Vrsta potencijalnog klijenta" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "Potencijalni klijent {0} je dodat u mogućeg kupca {1}." @@ -28978,7 +29009,7 @@ msgstr "Legenda" msgid "Length (cm)" msgstr "Dužina (cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Manje od iznosa" @@ -29007,7 +29038,7 @@ msgstr "Nivo (Sastavnica)" msgid "Lft" msgstr "Leva pozicija" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Obaveze" @@ -29037,7 +29068,7 @@ msgstr "Broj vozačke dozvole" msgid "License Plate" msgstr "Broj registarske oznake" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Prekoračen limit" @@ -29133,8 +29164,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Povezivanje sa kupcem nije uspelo. Molimo pokušajte ponovo." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Povezivanje sa dobavljačem nije uspelo. Molimo pokušajte ponovo." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29300,7 +29331,7 @@ msgstr "Detalji o razlogu gubitka" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Razlozi gubitka" @@ -29386,7 +29417,7 @@ msgstr "Iskorišćenje poena lojalnosti" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Poeni lojalnosti biće izračunati na osnovu potrošnje (putem izlazne fakture), na osnovu pomenutog faktora prikupljanja." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Poeni lojalnosti: {0}" @@ -29624,7 +29655,7 @@ msgstr "Detalji rasporeda održavanja" msgid "Maintenance Schedule Item" msgstr "Stavka rasporeda održavanja" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Raspored održavanja nije generisan za sve stavke. Molimo Vas da kliknete na 'Generiši raspored'" @@ -29721,7 +29752,7 @@ msgstr "Poseta održavanja" msgid "Maintenance Visit Purpose" msgstr "Svrha posete održavanja" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Datum početka održavanja ne može biti pre datuma isporuke za broj serije {0}" @@ -29868,7 +29899,7 @@ msgstr "Obavezno za bilans stanja" msgid "Mandatory For Profit and Loss Account" msgstr "Obavezno za račun bilansa uspeha" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Nedostaje obavezno" @@ -29951,8 +29982,8 @@ msgstr "Ručno unošenje ne može biti kreirano! Onemogućite automatski unos za #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30174,7 +30205,7 @@ msgstr "Mapiranje naloga za prijem iz podugovaranja ..." msgid "Mapping Subcontracting Order ..." msgstr "Mapiranje naloga za podugovaranje ..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Mapiranje {0} ..." @@ -30352,10 +30383,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30382,7 +30409,7 @@ msgstr "Potrošnja materijala" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Potrošnja materijala za proizvodnju" @@ -30493,7 +30520,7 @@ msgstr "Zahtev za nabavku" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Datum zahteva za nabavku" @@ -30543,7 +30570,7 @@ msgstr "Detalji zahteva za nabavku" msgid "Material Request Item" msgstr "Stavka zahteva za nabavku" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Broj zahteva za nabavku" @@ -30565,7 +30592,7 @@ msgstr "Vrsta zahteva za nabavku" msgid "Material Request already created for the ordered quantity" msgstr "Zahtev za nabavku je već kreiran za naručenu količinu" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Zahtev za nabavku nije kreiran, jer je količina sirovina već dostupna." @@ -30579,7 +30606,7 @@ msgstr "Maksimalno {0} zahteva za nabavku može biti napravljeno za stavku {1} n msgid "Material Request used to make this Stock Entry" msgstr "Zahtev za nabavku korišćen za ovaj unos zaliha" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Zahtev za nabavku {0} je otkazan ili zaustavljen" @@ -30699,14 +30726,14 @@ msgstr "Materijal ka dobavljaču" msgid "Materials To Be Transferred" msgstr "Materijal za prenos" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Materijali su već primljeni prema {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "Materijali moraju biti premešteni u skladište nedovršene proizvodnje za radnu karticu {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30874,7 +30901,7 @@ msgstr "Megadžul" msgid "Megawatt" msgstr "Megavat" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Navesti stopu vrednovanja u master podacima stavki." @@ -30909,7 +30936,7 @@ msgstr "Napredak spajanja" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Spoji poreze iz više dokumenata" @@ -31255,7 +31282,7 @@ msgstr "Razni troškovi" msgid "Mismatch" msgstr "Nepodudaranje" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Nedostaje" @@ -31264,11 +31291,11 @@ msgstr "Nedostaje" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Nedostajući račun" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "Nedostajući računi" @@ -31293,11 +31320,11 @@ msgstr "" msgid "Missing Filters" msgstr "Nedostaju filteri" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Nedostajuća finansijska evidencija" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Nedostaje gotov proizvod" @@ -31305,7 +31332,7 @@ msgstr "Nedostaje gotov proizvod" msgid "Missing Formula" msgstr "Nedostaje formula" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Nedostajuća stavka" @@ -31317,7 +31344,7 @@ msgstr "Nedostajući parametar" msgid "Missing Payments App" msgstr "Nedostaje aplikacija za uplate" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31329,7 +31356,7 @@ msgstr "Nedostaje broj serije paketa" msgid "Missing Warehouse" msgstr "Nedostaje skladište" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "Nedostaje konfiguracija računa za kompaniju {0}." @@ -31337,12 +31364,12 @@ msgstr "Nedostaje konfiguracija računa za kompaniju {0}." msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Nedostaje imejl šablon za slanje. Molimo Vas da ga postavite u podešavanjima isporuke." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Nedostaje obavezni filter: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Nedostajuća vrednost" @@ -31591,17 +31618,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Pronađeno je više programa lojalnosti za kupca {}. Molimo Vas da izaberete ručno." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "Višestruki unosi početnog stanja maloprodaje" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Postoji više cenovnih pravila sa istim kriterijumima, molimo Vas da rešite konflikt dodeljivanjem prioriteta. Cenovna pravila: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31621,7 +31648,7 @@ msgstr "Dostupno je više polja kompanije: {0}. Molimo Vas da izaberete ručno." msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Postoji više fiskalnih godina za datum {0}. Molimo postavite kompaniju u fiskalnu godinu" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "Više stavki ne može biti označeno kao gotov proizvod" @@ -31630,10 +31657,10 @@ msgid "Music" msgstr "Muzika" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Mora biti ceo broj" @@ -31718,11 +31745,7 @@ msgstr "Serija imenovanja je obavezna" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "Serija imenovanja '{0}' za DocType '{1}' ne sadrži standardni separator '.' ili '{{'. Koristi se rezervni način ekstrakcije." @@ -31766,7 +31789,7 @@ msgstr "Analiza potrebna" msgid "Negative Batch Report" msgstr "Izveštaj o šaržama sa negativnim stanjem" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Negativna količina nije dozvoljena" @@ -31776,12 +31799,12 @@ msgstr "Negativna količina nije dozvoljena" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "Greška zbog negativnog stanja zaliha" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Negativna stopa vrednovanja nije dozvoljena" @@ -31859,8 +31882,8 @@ msgstr "Neto iznos" msgid "Net Amount (Company Currency)" msgstr "Neto iznos (valuta kompanije)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Neto vrednost imovine na dan" @@ -31910,7 +31933,7 @@ msgstr "Neto satnica" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Neto profit" @@ -31918,7 +31941,7 @@ msgstr "Neto profit" msgid "Net Profit Ratio" msgstr "Stopa neto dobitka" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Neto dobitak/gubitak" @@ -31932,11 +31955,11 @@ msgstr "Neto dobitak/gubitak" msgid "Net Purchase Amount" msgstr "Neto iznos nabavke" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "Neto iznos nabavke je obavezan" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "Neto iznos nabavke treba da bude jednak iznosu nabavke pojedinačne imovine." @@ -32180,7 +32203,7 @@ msgstr "Nova fiskalna godina - {0}" msgid "New Income" msgstr "Novi prihod" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "Nova faktura" @@ -32253,6 +32276,7 @@ msgid "New Task" msgstr "Novi zadatak" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Nova verzija" @@ -32265,9 +32289,9 @@ msgstr "Novi naziv skladišta" msgid "New Workplace" msgstr "Novo radno mesto" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Novi kreditni limit je manji od trenutnog neizmirenog iznosa za kupca. Kreditni limit mora biti najmanje {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32275,6 +32299,10 @@ msgstr "Novi kreditni limit je manji od trenutnog neizmirenog iznosa za kupca. K msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Nove fakture će biti generisane prema rasporedu, iako trenutne fakture nisu plaćene ili je prošao datum dospeća" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Novi datum izdavanja mora biti u budućnosti" @@ -32287,7 +32315,7 @@ msgstr "Novi revidirani budžet je uspešno kreiran" msgid "New task" msgstr "Novi zadatak" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Nova {0} cenovna pravila su kreirana" @@ -32351,16 +32379,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Nije pronađen kupac za međukompanijske transakcije koji predstavljaju kompaniju {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "Nema kupaca sa izabranim opcijama." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Ne postoje izabrane otpremnice za kupca {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "Nema DocType-ova na listi za brisanje. Molimo Vas da generišete ili uvezete listu pre podnošenja." @@ -32368,15 +32395,15 @@ msgstr "Nema DocType-ova na listi za brisanje. Molimo Vas da generišete ili uve msgid "No Impact on Accounting Ledger" msgstr "Bez uticaja na glavnu knjigu" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Nema stavki sa bar-kodom {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Nema stavke sa brojem serije {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "Nema stavki izabranih za transfer." @@ -32419,11 +32446,6 @@ msgstr "Bez dozvole" msgid "No Purchase Orders were created" msgstr "Nijedna nabavna porudžbina nije kreirana" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "Bez zapisa za ove postavke." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Nije izvršen izbor" @@ -32526,6 +32548,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "Nisu pronađeni kontakti sa imejl adresama." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Nema podataka za ovaj period" @@ -32571,7 +32597,7 @@ msgstr "Nije otpremljen fajl niti je unet URL." msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "Ne postoji stavka dostupna za transfer." @@ -32608,10 +32634,6 @@ msgstr "Nema više zavisnih elemenata sa leve strane" msgid "No more children on Right" msgstr "Nema više zavisnih elemenata sa desne strane" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Broj isporuka" @@ -32708,7 +32730,7 @@ msgstr "Nisu pronađene neizmirene fakture" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Nijedna neizmirena faktura ne zahteva revalorizaciju deviznog kursa" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "Nije pronađen nijedan neizmireni {0} za {1} {2} koji kvalifikuje filtere koje ste naveli." @@ -32746,15 +32768,20 @@ msgstr "" msgid "No record found" msgstr "Nema zapisa" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "Nije pronađen zapis u tabeli raspodele" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "Nije pronađen zapis u tabeli faktura" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "Nije pronađen zapis u tabeli uplata" @@ -32783,7 +32810,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "Nema dostupnih zaliha za ovu šaržu." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "Unosi u knjigu zaliha nisu kreirani. Molimo Vas da pravilno podesite količinu ili stopu vrednovanja za stavke i da pokušate ponovo." @@ -32820,7 +32847,7 @@ msgstr "Bez vrednosti" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32828,11 +32855,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "Nema {0} za međukompanijske transakcije." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "Br." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32884,7 +32906,7 @@ msgstr "Nema nula" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "Nije moguće kreirati sastavnicu koja nije virtuelna za stavku van zaliha {0}." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Nijedna od stavki nije imala promene u količini ili vrednosti." @@ -32895,8 +32917,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "Komad" @@ -32910,8 +32932,8 @@ msgstr "Komad" msgid "Not Applicable" msgstr "Nije primenjivo" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Nije dostupno" @@ -32974,10 +32996,6 @@ msgstr "Nije započeto" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "Nije moguće pronaći najraniju fiskalnu godinu za datu kompaniju." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Nije dozvoljeno postaviti alternativnu stavku za stavku {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Nije dozvoljeno kreirati računovodstvenu dimenziju za {0}" @@ -32994,10 +33012,6 @@ msgstr "Nije dozvoljeno jer {0} premašuje limite" msgid "Not authorized to edit frozen Account {0}" msgstr "Nije dozvoljeno izmeniti zaključani račun {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "Nije pronađeno na skladištu" @@ -33010,7 +33024,7 @@ msgstr "Nije pronađeno na skladištu" msgid "Not permitted to make Purchase Orders" msgstr "Nije dozvoljeno kreiranje nabavnih porudžbina" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33255,8 +33269,8 @@ msgid "Numeric Values" msgstr "Numeričke vrednosti" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Broj nije postavljen u XML fajlu" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33431,12 +33445,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Kada je postavljeno, ova faktura će biti na čekanju do ponovljenog datuma" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "Kada je radni nalog zatvoren, ne može se ponovo pokrenuti." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Jedan kupac može biti deo samo jednog programa lojalnosti." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33470,7 +33484,7 @@ msgstr "Podržani su samo 'Unosi plaćanja' koji su napravljeni protiv ovog avan msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Samo CSV i Excel fajlovi mogu biti korišćeni za uvoz podataka. Molimo Vas da proverite format fajla koji pokušavate da uvezete" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "Dozvoljeni su isključivo CSV fajlovi" @@ -33535,7 +33549,7 @@ msgstr "Samo jedna operacija može imati označeno 'Finalni gotov proizvod' kada msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "Može se kreirati samo jedan {0} unos protiv radnog naloga {1}" @@ -33602,7 +33616,7 @@ msgstr "Otvori događaj" msgid "Open Events" msgstr "Otvori događaje" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Otvori prikaz formulara" @@ -33755,7 +33769,7 @@ msgstr "Početno stanje = početak perioda, završno stanje = kraj perioda, kret #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Detalji početnog stanja" @@ -33785,7 +33799,7 @@ msgstr "Početni datum" msgid "Opening Entry" msgstr "Unos početnog stanja" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Kreiranje početne fakture je u toku" @@ -33813,7 +33827,7 @@ msgstr "Stavka početne fakture" msgid "Opening Invoice Tool" msgstr "Alat za unos početnih faktura" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "Početna faktura ima prilagođavanje za zaokruživanje od {0}.

                    Za knjiženje ovih vrednosti potreban je račun '{1}'. Molimo Vas da ga postavite u kompaniji: {2}.

                    Ili možete omogućiti '{3}' da ne postavite nikakvo prilagođavanje za zaokruživanje." @@ -33822,7 +33836,7 @@ msgstr "Početna faktura ima prilagođavanje za zaokruživanje od {0}.

                    Z msgid "Opening Invoices" msgstr "Početne fakture" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Rezime početnih faktura" @@ -33852,20 +33866,20 @@ msgstr "Početne izlazne fakture su kreirane." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Početni lager" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33874,7 +33888,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33917,7 +33931,7 @@ msgstr "Trošak operativnih komponenti" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Operativni trošak" @@ -34008,7 +34022,7 @@ msgstr "Broj reda operacije" msgid "Operation Time" msgstr "Vreme operacije" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Vreme operacije za operaciju {0} mora biti veće od 0" @@ -34032,8 +34046,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "Operacija {0} ne pripada radnom nalogu {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Operacija {0} traje duže od bilo kojeg dostupnog radnog vremena na radnoj stanici {1}, podelite operaciju na više operacija" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34218,6 +34232,10 @@ msgstr "Prilika {0} kreirana" msgid "Optimize Route" msgstr "Optimizuj rutu" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "Opciono. Izaberite konkretan unos proizvodnje koji želite da poništite." @@ -34234,10 +34252,6 @@ msgstr "Opciono. Ovo podešavanje će se koristiti za filtriranje u raznim trans msgid "Optional. Used with Financial Report Template" msgstr "Opciono. Koristi se uz šablon finansijskog izveštaja" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Iznos narudžbine" @@ -34523,7 +34537,7 @@ msgid "Out of stock" msgstr "Nema na stanju" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "Zastareli unos početnog stanja maloprodaje" @@ -34577,7 +34591,7 @@ msgstr "Neizmireno (valuta kompanije)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34658,11 +34672,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Dozvola za preuzimanje viška (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "Prekoračenje prijema" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "Prekoračenje prijema/isporuke od {0} {1} zanemareno za stavku {2} jer imate ulogu {3}." @@ -34679,14 +34693,14 @@ msgstr "Dozvola za prekoračenje prenosa (%)" msgid "Over Withheld" msgstr "Prekomerno obračunat porez po odbitku" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "Prekoračenje fakturisanja od {0} {1} je zanemareno za stavku {2} jer imate ulogu {3}." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "Prekoračenje fakturisanja od {} je zanemareno jer imate ulogu {}." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34735,10 +34749,6 @@ msgstr "Prekoračeni zadaci" msgid "Overdue and Discounted" msgstr "Prekoračeno i sniženo" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Preklapanje u ocenjivanju između {0} i {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Pronađeni preklapajući uslovi između:" @@ -34804,6 +34814,11 @@ msgstr "PIB" msgid "PCV" msgstr "Dokument za zatvaranje perioda" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "Dokument za zatvaranje perioda je pauziran" @@ -34851,7 +34866,7 @@ msgstr "Maloprodaja" msgid "POS Additional Fields" msgstr "Dodatna polja za maloprodaju" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "Maloprodaja zatvorena" @@ -34949,8 +34964,8 @@ msgid "POS Invoice is not submitted" msgstr "Fiskalni račun nije podnet" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "Fiskalni račun nije kreiran od strane korisnika {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35009,7 +35024,7 @@ msgstr "Unos početnog stanja maloprodaje - {0} je zastareo. Zatvorite maloproda msgid "POS Opening Entry Cancellation Error" msgstr "Greška pri otkazivanju unosa početnog stanja maloprodaje" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "Unos početnog stanja maloprodaje je otkazan" @@ -35030,7 +35045,7 @@ msgstr "Nedostaje unos početnog stanja maloprodaje" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "Unos početnog stanja maloprodaje ne može biti otkazan jer postoje nekonsolidovani računi." -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "Unos početnog stanja maloprodaje je otkazan. Molimo Vas da osvežite stranicu." @@ -35053,7 +35068,7 @@ msgstr "Metod plaćanja u maloprodaji" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "Profil maloprodaje" @@ -35073,8 +35088,8 @@ msgstr "Korisnik maloprodaje" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "Profil maloprodaje se ne poklapa sa {}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35085,20 +35100,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "Profil maloprodaje {0} ne može biti onemogućen jer postoje aktivne maloprodajne sesije." #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "Profil maloprodaje {} sadrži način plaćanja {}. Molimo Vas da ga uklonite da biste onemogućili ovaj način." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "Profil maloprodaje {} ne pripada kompaniji {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "Profil maloprodaje {} ne postoji." +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "Profil maloprodaje {} je onemogućen." +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35127,11 +35142,11 @@ msgstr "Podešavanja maloprodaje" msgid "POS Transactions" msgstr "Maloprodajne transakcije" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "Maloprodaja je zatvorena u {0}. Molimo Vas da osvežite stranicu." -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "Fiskalni račun {0} je uspešno kreiran" @@ -35150,7 +35165,7 @@ msgstr "PSOA projekat" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "Paketni broj(evi) su već u upotrebi. Pokušajte od broja paketa {0}" @@ -35775,7 +35790,7 @@ msgstr "Milioniti deo" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35902,7 +35917,7 @@ msgstr "Nepodudaranje stranke" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35988,7 +36003,7 @@ msgstr "Specifična stavka stranke" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36009,7 +36024,7 @@ msgstr "Vrsta stranke" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "Vrsta stranke i stranka mogu biti postavljeni za račun potraživanja / obaveza

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Vrsta stranke i stranka su obavezni za račun {0}" @@ -36045,7 +36060,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36555,7 +36570,7 @@ msgstr "Reference plaćanja" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36630,7 +36645,7 @@ msgstr "Raspored plaćanja" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "Zahtev za naplatu na osnovu rasporeda plaćanja ne može biti kreiran jer već postoji nalog za plaćanje za ovaj dokument." -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "Rasporedi plaćanja" @@ -36652,7 +36667,7 @@ msgstr "Rasporedi plaćanja" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36752,8 +36767,8 @@ msgid "Payment Type" msgstr "Vrsta plaćanja" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Vrsta plaćanja mora biti jedna od sledećih stavki: Primi, Plati ili Interni transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36959,11 +36974,11 @@ msgstr "Aktivnosti na čekanju za danas" msgid "Pending processing" msgstr "Na čekanju za obradu" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37479,12 +37494,12 @@ msgstr "Plaid ID klijenta" msgid "Plaid Environment" msgstr "Plaid okruženje" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Veza za Plaid-om nije uspešna" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Potrebno je osvežavanje veze sa Plaid-om" @@ -37506,7 +37521,7 @@ msgstr "Plaid tajni ključ" msgid "Plaid Settings" msgstr "Plaid podešavanja" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Greška pri sinhronizaciji Plaid transakcija" @@ -37657,15 +37672,6 @@ msgstr "Postrojenja i mašine" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Molimo Vas da dopunite stavke i ažurirate listu za odabir za nastavak. Da biste prekinuli, otkažite listu za odabir." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Molimo Vas da izaberete kompaniju" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Molimo Vas da izaberete kompaniju." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37673,7 +37679,6 @@ msgstr "Molimo Vas da izaberete kupca" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Molimo Vas da izaberete dobavljača" @@ -37681,19 +37686,19 @@ msgstr "Molimo Vas da izaberete dobavljača" msgid "Please Set Priority" msgstr "Molimo Vas da postavite prioritet" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Molimo Vas da postavite grupu dobavljača u podešavanjima za nabavku." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Molimo Vas da navedete račun" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Molimo Vas da dodate ulogu 'Dobavljač' korisniku {0}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Molimo Vas da dodate način plaćanja i detalje početnog stanja." @@ -37709,7 +37714,7 @@ msgstr "Molimo Vas da dodate zahtev za ponudu u bočni meni u podešavanjima por msgid "Please add Root Account for - {0}" msgstr "Molimo Vas da dodate osnovni račun za - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Molimo Vas da dodate privremeni račun za otvaranje početnog stanja u kontni okvir" @@ -37717,35 +37722,32 @@ msgstr "Molimo Vas da dodate privremeni račun za otvaranje početnog stanja u k msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Molimo Vas da dodate barem jedan broj serije / šarže" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Molimo Vas da dodate kolonu za tekući račun" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Molimo Vas da dodate račun za osnovni nivo kompanije - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Molimo Vas da dodate račun za osnovni nivo kompanije - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Molimo Vas da dodate ulogu {1} korisniku {0}." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Molimo Vas da prilagodite količinu ili izmenite {0} za nastavak." @@ -37787,7 +37789,7 @@ msgstr "Molimo Vas da proverite operativne troškove ili sa operacijama ili sa t msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "Molimo Vas da označite opciju 'Aktiviraj broj serije i šarže za stavku' u dokumentu {0} kako biste omogućili paket serije / šarže za tu stavku." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Molimo Vas da proverite poruke o greškama, preduzmite potrebne korake da ispravite grešku i zatim ponovo pokrenite proces ponovne obrade." @@ -37800,11 +37802,11 @@ msgstr "Molimo Vas da proverite svoj Plaid klijent ID i tajni ključ" msgid "Please check your email to confirm the appointment" msgstr "Molimo Vas da proverite svoj imejl da biste potvrdili termin" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Molimo Vas da klikente na 'Generiši raspored'" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Molimo Vas da kliknete na 'Generiši raspored' da preuzmete broj serije dodat za stavku {0}" @@ -37820,15 +37822,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Molimo Vas da kontaktirate bilo kog od sledećih korisnika da biste proširili kreditni limit za {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Molimo Vas da kontaktirate bilo koga od sledećih korisnika da biste {} ovu transakciju." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Molimo Vas da kontakirate svog administratora da biste proširili kreditne limite za {0}." @@ -37836,11 +37838,11 @@ msgstr "Molimo Vas da kontakirate svog administratora da biste proširili kredit msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Molimo Vas da pretvorite matični račun u odgovarajućoj zavisnoj kompaniji u grupni račun." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Molimo Vas da kreirate kupca iz potencijalnog klijenta {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Molimo Vas da kreirate dokument zavisnih troškova nabavke za fakture koje imaju omogućenu opciju 'Ažuriraj zalihe'." @@ -37852,7 +37854,7 @@ msgstr "Molimo Vas da kreirate novu računovodstvenu dimenziju ukoliko je potreb msgid "Please create purchase from internal sale or delivery document itself" msgstr "Molimo Vas da kreirate nabavku iz interne prodaje ili iz samog dokumenta o isporuci" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Molimo Vas da kreirate prijemnicu nabavke ili ulaznu fakturu za stavku {0}" @@ -37864,11 +37866,11 @@ msgstr "Molimo Vas da obrišete proizvodnu kombinaciju {0}, pre nego što spojit msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "Molimo Vas da privremeno onemogućite radni tok za nalog knjiženja {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Molimo Vas da ne knjižite trošak više različitih stavki imovine na jednu stavku imovine." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Molimo Vas da ne kreirate više od 500 stavki odjednom" @@ -37893,8 +37895,8 @@ msgid "Please enable {0} in the {1}." msgstr "Molimo Vas da omogućite {0} u {1}." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Molimo Vas da omogućite {} u {} da biste omogućili istu stavku u više redova" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37905,12 +37907,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Molimo Vas da se uverite da je račun {0} {1} račun obaveza. Možete promeniti vrstu računa u obaveze ili izabrati drugi račun." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Molimo Vas da vodite računa da je račun {} račun u bilansu stanja." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Molimo Vas da vodite računa da {} račun {} predstavlja račun potraživanja." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37925,7 +37927,7 @@ msgstr "Molimo Vas da unesete račun za kusur" msgid "Please enter Approving Role or Approving User" msgstr "Molimo Vas da unesete ulogu odobravanja ili korisnika koji odobrava" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Molimo Vas da unesete broj šarže" @@ -37941,7 +37943,7 @@ msgstr "Molimo Vas da unesete datum isporuke" msgid "Please enter Employee Id of this sales person" msgstr "Molimo Vas da unesete ID zaposlenog lica za ovog prodavca" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Molimo Vas da unesete račun rashoda" @@ -37950,7 +37952,7 @@ msgstr "Molimo Vas da unesete račun rashoda" msgid "Please enter Item Code to get Batch Number" msgstr "Molimo Vas da unesete šifru stavke da biste dobili broj šarže" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Molimo Vas da unesete šifru stavke da biste dobili broj šarže" @@ -37986,7 +37988,7 @@ msgstr "Molimo Vas da unesete datum reference" msgid "Please enter Root Type for account- {0}" msgstr "Molimo Vas da unesete vrstu glavnog računa za račun - {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Molimo Vas da unesete broj serije" @@ -38116,8 +38118,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "Molimo Vas da generišete listu za brisanje pre podnošenja" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Molimo Vas da uvezete račune prema matičnoj kompaniji ili da omogućite {} u master podacima o kompaniji." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38152,11 +38154,7 @@ msgstr "Molimo Vas da navedete trenutnu i novu sastavnicu za zamenu." msgid "Please pull items from Delivery Note" msgstr "Molimo Vas da preuzmete stavke iz otpremnice" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Molimo Vas da ispravite grešku i pokušate ponovo." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Molimo Vas da osvežite ili resetujete Plaid vezu sa bankom {}." @@ -38185,12 +38183,12 @@ msgstr "Sačuvajte prodajnu porudžbinu pre dodavanja rasporeda isporuke." msgid "Please select Template Type to download template" msgstr "Molimo Vas da izaberete Vrstu šablona da preuzmete šablon" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Molimo Vas da izaberete na šta će se primeniti popust" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Molimo Vas da izaberete sastavnicu za stavku {0}" @@ -38206,9 +38204,9 @@ msgstr "Molimo Vas da izaberete tekući račun" msgid "Please select Category first" msgstr "Molimo Vas da prvo izaberete kategoriju" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Molimo Vas da prvo izaberete vrstu troška" @@ -38218,8 +38216,8 @@ msgstr "Molimo Vas da izaberete kompaniju" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Molimo Vas da izaberete kompaniju i datum knjiženja da biste dobili unose" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38241,7 +38239,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Molimo Vas da izaberete postojeću kompaniju za kreiranje kontnog okvira" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Molimo Vas da izaberete gotov proizvod za uslužnu stavku {0}" @@ -38250,6 +38248,10 @@ msgstr "Molimo Vas da izaberete gotov proizvod za uslužnu stavku {0}" msgid "Please select Item Code first" msgstr "Molimo Vas da prvo izaberete šifru stavke" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Molimo Vas da izaberete status održavanja kao Završeno ili uklonite datum završetka" @@ -38274,11 +38276,11 @@ msgstr "Molimo Vas da izaberete datum knjiženja pre nego što izaberete stranku msgid "Please select Posting Date first" msgstr "Molimo Vas da prvo izaberete datum knjiženja" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Molimo Vas da izaberete cenovnik" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Molimo Vas da izaberete količinu za stavku {0}" @@ -38307,6 +38309,7 @@ msgid "Please select a BOM" msgstr "Molimo Vas da izaberete sastavnicu" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Molimo Vas da izaberete kompaniju" @@ -38314,11 +38317,12 @@ msgstr "Molimo Vas da izaberete kompaniju" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Molimo Vas da prvo izaberete kompaniju." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Molimo Vas da izaberete kupca" @@ -38327,7 +38331,7 @@ msgstr "Molimo Vas da izaberete kupca" msgid "Please select a Delivery Note" msgstr "Molimo Vas da izaberete otpremnicu" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Molimo Vas da izaberete nabavnu porudžbinu podugovaranja." @@ -38339,7 +38343,7 @@ msgstr "Molimo Vas da izaberete dobavljača" msgid "Please select a Warehouse" msgstr "Molimo Vas da izaberete skladište" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Molimo Vas da prvo izaberete radni nalog." @@ -38355,6 +38359,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38388,22 +38393,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "Molimo Vas da izaberete učestalost rasporeda isporuka" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Molimo Vas da izaberete red za kreiranje ponovnog knjiženja" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Molimo Vas da izaberete dobavljača za preuzimanje uplata." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Molimo Vas da izaberete validnu nabavnu porudžbinu koja je konfigurisana za podugovaranje." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Molimo Vas da izaberete vrednost za {0} ponudu za {1}" @@ -38412,7 +38421,7 @@ msgstr "Molimo Vas da izaberete vrednost za {0} ponudu za {1}" msgid "Please select an item code before setting the warehouse." msgstr "Molimo Vas da izaberete šifru stavke pre nego što postavite skladište." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38420,10 +38429,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Molimo Vas da izaberete barem jedan filter: Šifra stavke, šarža ili broj serije." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Molimo Vas da izaberete barem jedan red za ispravku" @@ -38432,18 +38449,10 @@ msgstr "Molimo Vas da izaberete barem jedan red za ispravku" msgid "Please select at least one row with difference value" msgstr "Molimo Vas da izaberete najmanje jedan red sa vrednošću razlike" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "Molimo Vas da izaberete barem jedan raspored." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "Molimo Vas da izaberete barem jednu stavku da biste nastavili" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "Molimo Vas da izaberete barem jednu operaciju za kreiranje radne kartice" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Molimo Vas da izaberete ispravan račun" @@ -38481,12 +38490,12 @@ msgstr "Molimo Vas da izaberete stavke koje treba rezervisati." msgid "Please select items to unreserve." msgstr "Molimo Vas da izaberete stavke za koje poništavate rezervisanje." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Molimo Vas da izaberete samo jedan red za kreiranje ponovnog knjiženja" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Molimo Vas da izaberete redove za kreiranje unosa ponovne obrade" @@ -38495,8 +38504,8 @@ msgid "Please select the Company" msgstr "Molimo Vas da izaberete kompaniju" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Molimo Vas da izaberete vrstu programa sa više nivoa za više pravila naplate." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38519,20 +38528,16 @@ msgstr "Molimo Vas da prvo izaberete vrstu dokumenta." msgid "Please select the required filters" msgstr "Molimo Vas da izaberete potrebne filtere" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Molimo Vas da izaberete validnu vrstu dokumenta." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Molimo Vas da izaberete nedeljni dan odmora" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Molimo Vas da prvo izaberete {0}" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Molimo Vas da postavite 'Primeni dodatni popust na'" @@ -38561,8 +38566,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Molimo Vas da postavite račun u skladištu {0} ili podrazumevani račun inventara u kompaniji {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Molimo Vas da postavite računovodstvenu dimenziju {} u {}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38591,22 +38596,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Molimo Vas da postavite imejl/telefon za kontakt" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Molimo Vas da postavite fiskalnu šifru za kupca '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Molimo Vas da postavite fiskalnu šifru za kupca '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Molimo Vas da postavite fiskalnu šifru za javnu upravu '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Molimo Vas da postavite fiskalnu šifru za javnu upravu '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "Molimo Vas da postavite račun osnovnih sredstava u kategoriji imovine {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Molimo Vas da postavite račun osnovnih sredstava u {} protiv {}." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38622,9 +38625,8 @@ msgid "Please set Root Type" msgstr "Molimo Vas da postavite vrstu glavnog računa" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Molimo Vas da postavite poreski broj za kupca '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Molimo Vas da postavite poreski broj za kupca '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38643,15 +38645,15 @@ msgid "Please set a Company" msgstr "Molimo Vas da postavite kompaniju" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Molimo Vas da postavite troškovni centar za imovinu ili troškovni centar amortizacije imovine za kompaniju {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Molimo Vas da postavite podrazumevanu listu praznika za kompaniju {0}" @@ -38668,9 +38670,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "Molimo Vas da podesite stvarnu potražnju ili prognozu prodaje da biste generisali izveštaj o planiranju potreba za materijalom." #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Molimo Vas da postavite adresu na kompaniju '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "Molimo Vas da postavite adresu na kompaniju '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38688,25 +38689,22 @@ msgstr "Molimo Vas da postavite bar jedan red u tabeli poreza i taksi" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "Molimo Vas da postavite ili poresku ili fiskalnu šifru za kompaniju {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Molimo Vas da postavite kao podrazumevano blagajnu ili tekući račun u načinu plaćanja {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Molimo Vas da postavite kao podrazumevano blagajnu ili tekući račun u načinu plaćanja {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Molimo Vas da postavite kao podrazumevano blagajnu ili tekući račun u načinu plaćanja {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Molimo Vas da postavite kao podrazumevano blagajnu ili tekući račun u načinima plaćanja {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Molimo Vas da postavite podrazumevani račun prihoda/rashoda kursnih razlika u kompaniji {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38737,11 +38735,11 @@ msgstr "Molimo Vas da postavite filter na osnovu stavke ili skladišta" msgid "Please set one of the following:" msgstr "Molimo Vas da postavite jedno od sledećeg:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "Molimo Vas da unesete početni broj knjiženih amortizacija" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Molimo Vas da postavite ponavljanje nakon čuvanja" @@ -38749,7 +38747,7 @@ msgstr "Molimo Vas da postavite ponavljanje nakon čuvanja" msgid "Please set the Customer Address" msgstr "Molimo Vas da postavite adresu kupca" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Molimo Vas da postavite podrazumevani troškovni centar u kompaniji {0}." @@ -38804,7 +38802,7 @@ msgstr "Molimo Vas da postavite {0} u kompaniji {1} za evidentiranje prihoda/ras msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Molimo Vas da postavite {0} u {1}, isti račun koji je korišćen u originalnoj fakturi {2}." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Molimo Vas da postavite i omogućite grupni račun sa vrstom računa - {0} za kompaniju {1}" @@ -38812,7 +38810,7 @@ msgstr "Molimo Vas da postavite i omogućite grupni račun sa vrstom računa - { msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Molimo Vas da podelite ovaj imejl sa Vašim timom za podršku kako bi mogli pronaći i rešiti problem." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Molimo Vas da precizirate kompaniju" @@ -38822,8 +38820,8 @@ msgstr "Molimo Vas da precizirate kompaniju" msgid "Please specify Company to proceed" msgstr "Molimo Vas da precizirate kompaniju da biste nastavili" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Molimo Vas da precizirate validan ID red za red {0} u tabeli {1}" @@ -38831,11 +38829,11 @@ msgstr "Molimo Vas da precizirate validan ID red za red {0} u tabeli {1}" msgid "Please specify a {0} first." msgstr "Molimo Vas precizirajte {0}." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Molimo Vas da precizirate barem jedan atribut u tabeli atributa" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Molimo Vas da precizirate ili količinu ili stopu vrednovanja ili oba" @@ -38843,6 +38841,14 @@ msgstr "Molimo Vas da precizirate ili količinu ili stopu vrednovanja ili oba" msgid "Please specify from/to range" msgstr "Molimo Vas da precizirate početni i krajnji opseg" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Molimo Vas da pokušate ponovo za sat vremena." @@ -39006,7 +39012,7 @@ msgstr "Objavljeno na" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39031,7 +39037,7 @@ msgstr "Objavljeno na" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39074,8 +39080,8 @@ msgstr "Datum knjiženja" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Datum knjiženja ne može biti u budućnosti" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39083,7 +39089,7 @@ msgstr "Datum knjiženja ne može biti u budućnosti" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "Datum knjiženja će se promeniti na današnji dan jer opcija za izmenu datuma i vremena nije označena. Da li ste sigurni da želite da nastavite?" @@ -39276,6 +39282,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "Unapred plaćeni rashodi" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "Predsednik" @@ -39365,7 +39375,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Prethodna fiskalna godina nije zatvorena" @@ -39507,7 +39517,7 @@ msgstr "Zemlja cenovnika" msgid "Price List Currency" msgstr "Valuta cenovnika" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Valuta cenovnika nije izabrana" @@ -39628,7 +39638,7 @@ msgstr "Cena ne zavisi od sastavnice" msgid "Price Per Unit ({0})" msgstr "Cena po jedinici ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "Cena nije postavljena za stavku." @@ -39739,7 +39749,7 @@ msgstr "Cenovno pravilo se prvo bira na osnovu polja 'Primeni na', koje može bi msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "Cenovno pravilo je napravljeno da zameni cenovnik ili definiše procenat popusta, na osnovu nekih kriterijuma." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "Pravilo cena {0} je ažurirano" @@ -39947,8 +39957,8 @@ msgid "Priorities" msgstr "Prioriteti" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "Prioritet ne može biti manji od 1." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40129,7 +40139,7 @@ msgstr "Obrada pretplate" msgid "Process in Single Transaction" msgstr "Obrada u jednoj transakciji" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40255,7 +40265,7 @@ msgstr "Paket proizvoda" msgid "Product Bundle Balance" msgstr "Stanje paketa proizvoda" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40280,7 +40290,7 @@ msgstr "Pomoć za paket proizvoda" msgid "Product Bundle Item" msgstr "Stavka paketa proizvoda" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40483,7 +40493,7 @@ msgstr "Proizvodi" msgid "Profit & Loss" msgstr "Bilans uspeha" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Dobitak ove godine" @@ -40512,6 +40522,10 @@ msgstr "Bilans uspeha" msgid "Profit and Loss Statement" msgstr "Bilans uspeha" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40520,8 +40534,8 @@ msgstr "Bilans uspeha" msgid "Profit and Loss Summary" msgstr "Rezime bilansa uspeha" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Dobitak za godinu" @@ -40594,7 +40608,7 @@ msgstr "Status projekta" msgid "Project Summary" msgstr "Rezime projekta" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Rezime projekta za {0}" @@ -40674,7 +40688,7 @@ msgstr "Praćenje zaliha po projektu" msgid "Project wise Stock Tracking " msgstr "Praćenje zaliha po projektu " -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Podaci o projektu nisu dostupni za ponudu" @@ -40725,7 +40739,7 @@ msgstr "Očekivana količina" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40871,7 +40885,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Potencijalni kupci uključeni, ali nisu konvertovani" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "Zaštićen DocType" @@ -40904,9 +40918,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "Privremeni račun rashoda" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Privremeni dobitak/gubitak (Potražuje)" @@ -41134,8 +41148,8 @@ msgstr "Trendovi ulaznih faktura" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Ulazna faktura ne može biti napravljena za postojeću imovinu {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Ulazna faktura {0} je već podneta" @@ -41176,7 +41190,7 @@ msgstr "Ulazne fakture" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41200,11 +41214,11 @@ msgstr "Ulazne fakture" msgid "Purchase Order" msgstr "Nabavna porudžbina" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Iznos nabavne porudžbine" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Iznos nabavne porudžbine (valuta kompanije)" @@ -41219,7 +41233,7 @@ msgstr "Iznos nabavne porudžbine (valuta kompanije)" msgid "Purchase Order Analysis" msgstr "Analiza nabavne porudžbine" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Datum nabavne porudžbine" @@ -41268,8 +41282,8 @@ msgid "Purchase Order Required" msgstr "Nabavna porudžbina je obavezna" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Nabavna porudžbina je obavezna za stavku {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41328,8 +41342,8 @@ msgid "Purchase Orders to Receive" msgstr "Nabavne porudžbine za prijem" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Nabavne porudžbine {0} nisu povezane" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41418,8 +41432,8 @@ msgid "Purchase Receipt Required" msgstr "Prijemnica nabavke je obavezna" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Prijemnica nabavke je obavezna za stavku {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41438,8 +41452,8 @@ msgid "Purchase Receipt Trends " msgstr "Trendovi prijemnica nabavke " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Prijemnica nabavke nema nijednu stavku za koju je omogućeno zadržavanje uzorka." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41666,7 +41680,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41685,7 +41699,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41750,7 +41764,7 @@ msgstr "Količina nakon transakcije" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41787,7 +41801,7 @@ msgstr "Količina po jedinici" msgid "Qty To Manufacture" msgstr "Količina za proizvodnju" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "Količina za proizvodnju ({0}) ne može biti decimalni broj za jedinicu mere {2}. Da biste omogućili ovo, onemogućite '{1}' u jedinici mere {2}." @@ -41882,7 +41896,7 @@ msgstr "Količina koja treba biti utrošena" msgid "Qty to Bill" msgstr "Količina za fakturisanje" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Količina za izgradnju" @@ -42068,7 +42082,7 @@ msgstr "Inspekcija kvaliteta" msgid "Quality Inspection Analysis" msgstr "Analiza inspekcije kvaliteta" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42145,7 +42159,7 @@ msgstr "Inspekcija kvaliteta {0} nije podneta za stavku: {1}" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "Inspekcija kvaliteta {0} je odbijena za stavku: {1}" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Inspekcije kvaliteta" @@ -42228,7 +42242,7 @@ msgstr "Pregled kvaliteta" msgid "Quality Review Objective" msgstr "Cilj pregleda kvaliteta" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42272,12 +42286,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42428,7 +42442,7 @@ msgstr "Količina je obavezna" msgid "Quantity must be greater than zero" msgstr "Količina mora biti veća od nule" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "Količina mora biti veća od nule." @@ -42456,11 +42470,11 @@ msgstr "Količina treba biti veća od 0" msgid "Quantity to Manufacture" msgstr "Količina za proizvodnju" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "Količina za proizvodnju ne može biti nula za operaciju {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Količina za proizvodnju mora biti veća od 0." @@ -42468,6 +42482,10 @@ msgstr "Količina za proizvodnju mora biti veća od 0." msgid "Quantity to Scan" msgstr "Količina za skeniranje" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42493,7 +42511,7 @@ msgstr "Kvartal {0} {1}" msgid "Query Route String" msgstr "Query Route String" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "Veličina reda mora biti između 5 i 100" @@ -42733,7 +42751,7 @@ msgstr "Pokrenuto od strane (Imejl)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42917,8 +42935,8 @@ msgid "Rate at which this tax is applied" msgstr "Stopa po kojoj se porez primenjuje" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "Cena stavke '{}' se ne može menjati" +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43236,7 +43254,7 @@ msgstr "Razlog za stavljanje na čekanje" msgid "Reason for Failure" msgstr "Razlog neuspeha" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Razlog za zadržavanje" @@ -43478,8 +43496,8 @@ msgstr "Lista primaoca je prazna. Molimo kreirajte listu primaoca" msgid "Receiving" msgstr "Prijem" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Nedavni nalozi" @@ -43655,6 +43673,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43705,7 +43727,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Ponovni proračun količine ne može biti manji od 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "Sistemski nije podržano korišćenje rekurzivnih popusta sa mešovitim uslovima" @@ -43785,7 +43807,7 @@ msgstr "Referenca #" msgid "Reference #{0} dated {1}" msgstr "Referenca #{0} od {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Datum reference za popust na raniju uplatu" @@ -44077,8 +44099,8 @@ msgid "Rejected Warehouse" msgstr "Skladište odbijenih zaliha" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Skladište odbijenih zaliha i Skladište prihvaćenih zaliha ne mogu biti isto." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44184,7 +44206,7 @@ msgstr "Napomena" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44223,7 +44245,7 @@ msgstr "Ukloni zapise sa nultim brojem" msgid "Remove item if charges is not applicable to that item" msgstr "Ukloni stavku ukoliko troškovi nisu primenjivi na nju" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Ukloni stavke bez promene u količini ili vrednosti." @@ -44375,7 +44397,7 @@ msgstr "Greška u izveštaju" msgid "Report Line Items" msgstr "Stavke reda izveštaja" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44458,7 +44480,7 @@ msgstr "Evidencija grešaka pri ponovnom unosu" msgid "Repost Item Valuation" msgstr "Ponovno objavljivanje vrednovanja stavki" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "Ponovno knjiženje vrednovanja stavke je pokrenuto za izabrane neuspešne zapise." @@ -44504,6 +44526,15 @@ msgstr "Ponovno objavljivanje je započeto u pozadini" msgid "Reposting Data File" msgstr "Ponovna obrada datoteke podataka" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44588,7 +44619,7 @@ msgstr "Zahtevano do datuma" msgid "Reqd Qty (BOM)" msgstr "Potrebna količina (sastavnica)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Zahtevano do datuma" @@ -44704,11 +44735,11 @@ msgstr "Zatražena količina" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Zatražena količina: Količina zatražena za nabavku, ali nije naručena." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Zahtevajući objekat" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Podnosilac zahteva" @@ -44887,6 +44918,10 @@ msgstr "Rezervisane zalihe" msgid "Reserve Warehouse" msgstr "Rezervisano skladište" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "Rezerviši za sirovine" @@ -44925,8 +44960,8 @@ msgid "Reserved Qty" msgstr "Rezervisana količina" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "Rezervisanu količinu ({0}) nije moguće uneti kao decimalni broj. Da biste to omogućili, onemogućite '{1}' u mernoj jedinici {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Rezervisanu količinu ({0}) nije moguće uneti kao decimalni broj. Da biste to omogućili, onemogućite '{1}' u mernoj jedinici {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44970,7 +45005,7 @@ msgstr "Rezervisana količina" msgid "Reserved Quantity for Production" msgstr "Rezervisana količina za proizvodnju" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Rezervisani broj serije." @@ -44986,13 +45021,13 @@ msgstr "Rezervisani broj serije." #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Rezervisane zalihe" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Rezervisane zalihe za šaržu" @@ -45486,6 +45521,10 @@ msgstr "Vraćeni devizni kurs nije ni ceo broj ni decimalni broj." msgid "Returns" msgstr "Povraćaji" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45910,11 +45949,11 @@ msgstr "Naziv za rutiranje" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Red # {0}: Ne može se vratiti više od {1} za stavku {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Red {0}: Molimo Vas da dodate paket serije i šarže za stavku {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "Red # {0}: Molimo Vas da unesete količinu za stavku {1} jer nije nula." @@ -45998,23 +46037,23 @@ msgstr "Red #{0}: Nije pronađena sastavnica za stavku gotovog proizvoda {1}" msgid "Row #{0}: Batch No {1} is already selected." msgstr "Red #{0}: Broj šarže {1} je već izabran." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "Red #{0}: Broj šarže {1} nije deo povezanog naloga za prijem iz podugovaranja. Molimo Vas da izaberete ispravan broj šarže." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Red #{0}: Ne može se raspodeliti više od {1} za uslov plaćanja {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "Red #{0}: Nije moguće otkazati ovaj unos zaliha u proizvodnji jer fakturisana količina stavke {1} ne može biti veća od utrošene količine." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "Red #{0}: Nije moguće otkazati ovaj unos zaliha proizvodnje jer proizvedena količina sekundarne stavke {1} ne može biti manja od isporučene količine." -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "Red #{0}: Nije moguće otkazati ovaj unos zaliha jer vraćena količina ne može biti veća od isporučene količine za stavku {1} u povezanom nalogu za prijem iz podugovaranja" @@ -46090,13 +46129,16 @@ msgstr "Red #{0}: Nije pronađen dovoljan broj unosa {1} za usklađivanje. Preos msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Red #{0}: Kumulativni prag ne može biti manji od praga za jednu transakciju" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} povezana sa stavkom naloga za prijem iz podugovaranja {2} ({3}) ne može biti dodata više puta." -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} ne može biti dodata više puta u procesu prijema iz podugovaranja." @@ -46108,7 +46150,7 @@ msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} ne može biti dodata vi msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} ne postoji u tabeli potrebnih stavki povezanoj sa nalogom za prijem iz podugovaranja." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} premašuje dostupnu količinu putem naloga za prijem iz podugovaranja" @@ -46116,12 +46158,12 @@ msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} premašuje dostupnu kol msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} nema dovoljnu količinu u nalogu za prijem iz podugovaranja. Dostupna količina je {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} nije deo naloga za prijem iz podugovaranja {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} nije deo radnog naloga {2}" @@ -46133,7 +46175,7 @@ msgstr "Red #{0}: Datumi se preklapaju sa drugim redom u grupi {1}" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Red #{0}: Podrazumevana sastavnica nije pronađena za gotov proizvod {1}" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Red #{0}: Datum početka amortizacije je obavezan" @@ -46141,6 +46183,10 @@ msgstr "Red #{0}: Datum početka amortizacije je obavezan" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Red #{0}: Dupli unos u referencama {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Red #{0}: Očekivani datum isporuke ne može biti pre datuma nabavne porudžbine" @@ -46153,11 +46199,18 @@ msgstr "Red #{0}: Račun rashoda nije postavljen za stavku {1}. {2}" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "Red #{0}: Račun rashoda {1} nije važeći za ulaznu fakturu {2}. Dozvoljeni su samo računi rashoda za stavke van zaliha." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Red #{0}: Količina gotovih proizvoda ne može biti nula" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46180,8 +46233,8 @@ msgstr "Red #{0}: Gotov proizvod mora biti {1}" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "Red #{0}: Referenca gotovog proizvoda je obavezna za sekundarnu stavku {1}." -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "Red #{0}: Za stavku obezbeđenu od strane kupca {1}, izvorno skladište mora biti {2}" @@ -46193,7 +46246,7 @@ msgstr "Red #{0}: Za {1}, možete izabrati referentni dokument samo ukoliko se i msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Red #{0}: Za {1}, možete izabrati referentni dokument samo ukoliko se iznos postavi na dugovnu stranu računa" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "Red #{0}: Učestalost amortizacije mora biti veća od nule" @@ -46205,6 +46258,10 @@ msgstr "Red #{0}: Datum početka ne može biti pre datuma završetka" msgid "Row #{0}: From Time and To Time fields are required" msgstr "Red #{0}: Polja za vreme početka i vreme završetka su obavezna" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Red #{0}: Stavka je dodata" @@ -46233,16 +46290,16 @@ msgstr "Red #{0}: Stavka {1} ima stopu nula, ali opcija '{2}' nije omogućena." msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "Red #{0}: Stavka {1} u skladištu {2}: Dostupno {3}, potrebno {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "Red #{0}: Stavka {1} nije stavka obezbeđena od strane kupca." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Red #{0}: Stavka {1} nije stavka serije / šarže. Ne može imati broj serije / šarže." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Red #{0}: Stavka {1} nije deo naloga za prijem iz podugovaranja {2}" @@ -46258,13 +46315,17 @@ msgstr "Red #{0}: Stavka {1} nije skladišna stavka" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "Red #{0}: Nepodudaranje stavke {1}. Promena šifre stavke nije dozvoljena, dodajte novi red umesto toga." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "Red #{0}: Nepodudaranje stavke {1}. Promena šifre stavke nije dozvoljena." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46274,15 +46335,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Red #{0}: Nalog knjiženja {1} ne sadrži račun {2} ili je već povezan sa drugim dokumentom" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "Red #{0}: Nedostaje {1} za kompaniju {2}." -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "Red #{0}: Sledeći datum amortizacije ne može biti pre datuma dostupnosti za upotrebu" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "Red #{0}: Sledeći datum amortizacije ne može biti pre datuma nabavke" @@ -46294,24 +46355,48 @@ msgstr "Red #{0}: Nije dozvoljeno promeniti dobavljača jer nabavna porudžbina msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Red #{0}: Samo {1} je dostupno za rezervaciju za stavku {2}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "Red #{0}: Početna akumulirana amortizacija mora biti manja od ili jednaka {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "Red #{0}: Prekomerna potrošnja stavke obezbeđene od strane kupca {1} u odnosu na radni nalog {2} nije dozvoljena u procesu prijema iz podugovaranja." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Red #{0}: Molimo Vas da izaberete šifru stavke u sastavljenim stavkama" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Red #{0}: Molimo Vas da izaberete broj sastavnice u sastavljenim stavkama" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "Red #{0}: Molimo Vas da izaberete stavku gotovog proizvoda uz koju će se koristiti ova stavka obezbeđena od strane kupca." @@ -46327,6 +46412,10 @@ msgstr "Red #{0}: Molimo Vas da postavite količinu za naručivanje" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Red #{0}: Molimo Vas da ažurirate račun razgraničenih prihoda/rashoda u redu stavke ili podrazumevani račun u master podacima kompanije" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46346,8 +46435,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Red #{0}: Količina mora biti pozitivan broj" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Red #{0}: Količina treba da bude manja ili jednaka dostupnoj količini za rezervaciju (stvarna količina - rezervisana količina) {1} za stavku {2} protiv šarže {3} u skladištu {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46369,7 +46458,7 @@ msgstr "Red #{0}: Količina mora biti pozitivan broj. Molimo Vas da povećate ko msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Red #{0}: Količina za stavku {1} ne može biti nula." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "Red #{0}: Količina stavke {1} ne može biti veća od {2} {3} u odnosu na nalog za prijem iz podugovaranja {4}" @@ -46377,17 +46466,17 @@ msgstr "Red #{0}: Količina stavke {1} ne može biti veća od {2} {3} u odnosu n msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Red #{0}: Količina za rezervaciju za stavku {1} mora biti veća od 0." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Red #{0}: Cena mora biti ista kao {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Red #{0}: Vrsta referentnog dokumenta mora biti jedna od sledećih: nabavna porudžbina, ulazna faktura, nalog knjiženja ili opomena" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Red #{0}: Vrsta referentnog dokumenta mora biti jedna od sledećih: prodajna porudžbina, izlazna faktura, nalog knjiženja ili opomena" @@ -46407,11 +46496,11 @@ msgstr "Red #{0}: Trošak popravke {1} premašuje raspoloživi iznos {2} za ulaz msgid "Row #{0}: Return Against is required for returning asset" msgstr "Red #{0}: Povrat po osnovu je neophodan za vraćanje imovine" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "Red #{0}: Vraćena količina ne može biti veća od dostupne količine za stavku {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "Red #{0}: Vraćena količina ne može biti veća od količine dostupne za povraćaj za stavku {1}" @@ -46421,18 +46510,19 @@ msgstr "Red #{0}: Količina sekundarne stavke ne može biti nula" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "Red #{0}: Prodajna cena za stavku {1} je niža od njene {2}.\n" -"\t\t\t\t\tProdajna {3} mora biti najmanje {4}.

                    Alternativno,\n" -"\t\t\t\t\tmožete onemogućiti '{5}' u {6} da biste zaobišli\n" -" \t\t\t\t\tovu proveru." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "Red #{0}: ID sekvence mora biti {1} ili {2} za operaciju {3}." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Red #{0}: Broj serije {1} ne pripada šarži {2}" @@ -46445,7 +46535,7 @@ msgstr "Red #{0}: Broj serije {1} za stavku {2} nije dostupan u {3} {4} ili mož msgid "Row #{0}: Serial No {1} is already selected." msgstr "Red #{0}: Broj serije {1} je već izabran." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "Red #{0}: Broj serije {1} nije deo povezanog naloga za prijem iz podugovaranja. Molimo Vas da izaberete ispravan broj serije." @@ -46469,7 +46559,7 @@ msgstr "Red #{0}: Postavite dobavljača za stavku {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "Red #{0}: S obzirom da je 'Praćenje poluproizvoda' omogućeno, sastavnica {1} ne može biti korišćena za podsklopove" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Red #{0}: Izvorno skladište mora biti isto kao skladište kupca {1} iz povezanog naloga za prijem iz podugovaranja" @@ -46538,7 +46628,7 @@ msgstr "Red #{0}: Zalihe nisu dostupne za rezervaciju za stavku {1} u skladištu msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "Red #{0}: Količina zaliha {1} ({2}) za stavku {3} ne može premašiti {4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Red #{0}: Ciljno skladište mora biti isto kao skladište kupca {1} iz povezanog naloga za prijem iz podugovaranja" @@ -46546,19 +46636,27 @@ msgstr "Red #{0}: Ciljno skladište mora biti isto kao skladište kupca {1} iz p msgid "Row #{0}: The batch {1} has already expired." msgstr "Red #{0}: Šarža {1} je već istekla." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Red #{0}: Skladište {1} nije zavisno skladište grupnog skladišta {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Red #{0}: Vremenski sukob sa redom {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Red #{0}: Ukupan broj amortizacija ne može biti manji ili jednak broju početnih knjiženih amortizacija" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "Red #{0}: Ukupan broj amortizacija mora biti veći od nule" @@ -46570,11 +46668,15 @@ msgstr "Red #{0}: Skladište {1} se ne podudara sa skladištem {2} u paketu seri msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "Red #{0}: Iznos poreza po odbitku {1} ne odgovara obračunatom iznosu {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "Red #{0}: Radni nalog postoji za potpunu ili delimičnu količinu stavke {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Red #{0}: Ne možete koristiti dimenziju inventara '{1}' u usklađivanju zaliha za izmenu količine ili stope vrednovanja. Usklađivanje zaliha sa dimenzijama inventara je predviđeno samo za obavljanje unosa početnog stanja." @@ -46582,6 +46684,19 @@ msgstr "Red #{0}: Ne možete koristiti dimenziju inventara '{1}' u usklađivanju msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Red #{0}: Morate izabrati imovinu za stavku {1}." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Red #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Red #{0}: {1} ne može biti negativno za stavku {2}" @@ -46598,6 +46713,14 @@ msgstr "Red #{0}: {1} je obavezno za kreiranje početnih {2} faktura" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Red #{0}: {1} od {2} treba da bude {3}. Molimo Vas da ažurirate {1} ili izaberete drugi račun." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "Red #{0}: Količina za stavku {1} ne može biti nula." @@ -46638,71 +46761,10 @@ msgstr "Red #{idx}: {from_warehouse_field} i {to_warehouse_field} ne mogu biti i msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "Red #{idx}: {schedule_date} ne može biti pre {transaction_date}." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Red #{}: Valuta za {} - {} se ne poklapa sa valutom kompanije." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "Red #{}: Obavezan je ili ID stranke ili naziv stranke" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Red #{}: Finansijska evidencija ne sme biti prazna, s obzirom da su u upotrebi više njih." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Red #{}: Fiskalni račun {} je {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Red #{}: Fiskalni račun {} nije vezan za kupca {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Red #{}: Fiskalni račun {} još uvek nije podnet" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "Red #{}: ID stranke je obavezan" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Red #{}: Molimo Vas da dodelite zadatak članu tima." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Red #{}: Molimo Vas da koristite drugu finansijsku evidenciju." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Red #{}: Broj serije {} ne može biti vraćen jer nije bilo transakcija u originalnoj fakturi {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Red #{}: originalna faktura {} za reklamacionu fakturu {} nije konsolidovana." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Red #{}: Ne možete dodati pozitivne količine u reklamacionu fakturu. Molimo Vas da uklonite stavku {} da biste završili povrat." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Red #{}: stavka {} je već izabrana." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Red #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Red #{}: {} {} ne postoji." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Red #{}: {} {} ne pripada kompaniji {}. Molimo Vas da izaberete važeći {}." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Red broj {0}: Skladište je obavezno. Molimo Vas da postavite podrazumevano skladište za stavku {1} i kompaniju {2}" @@ -46715,10 +46777,6 @@ msgstr "Red {0} : Operacija je obavezna za stavku sirovine {1}" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "Red {0} odabrana količina je manja od zahtevane količine, potrebno je dodatnih {1} {2}." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Red {0}# stavka {1} nije pronađena u tabeli 'Primljene sirovine' u {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Red {0}: Prihvaćena količina i odbijena količina ne mogu biti nula istovremeno." @@ -46739,19 +46797,19 @@ msgstr "Red {0}: Avans protiv kupca mora biti na potražnoj strani" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Red {0}: Avans protiv dobavljača mora biti na dugovnoj strani" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Red {0}: Raspoređeni iznos {1} mora biti manji ili jednak neizmirenom iznosu {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Red {0}: Raspoređeni iznos {1} mora biti manji ili jednak preostalom iznosu za plaćanje {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Red {0}: Pošto je {1} omogućen, sirovine ne mogu biti dodate u {2} unos. Koristite {3} unos za potrošnju sirovina." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Red {0}: Sastavnica nije pronađena za stavku {1}" @@ -46767,11 +46825,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Red {0}: Faktor konverzije je obavezan" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Red {0}: Troškovni centar {1} ne pripada kompaniji {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Red {0}: Troškovni centar je obavezan za stavku {1}" @@ -46799,24 +46857,24 @@ msgstr "Red {0}: Skladište za isporuku ne može biti isto kao skladište kupca msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Red {0}: Datum dospeća u tabeli uslova plaćanja ne može biti pre datuma knjiženja" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Red {0}: Stavka iz otpremnice ili referenca upakovane stavke je obavezna." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Red {0}: Devizni kurs je obavezan" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "Red {0}: Očekivana vrednost nakon korisnog veka ne može biti negativna" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "Red {0}: Očekivana vrednost nakon korisnog veka mora biti manja od neto iznosa nabavke" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "Red {0}: Račun rashoda {1} je povezan sa kompanijom {2}. Molimo Vas da izaberete račun koji pripada kompaniji {3}." @@ -46837,6 +46895,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Red {0}: Vreme početka i vreme završetka su obavezni." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Red {0}: Vreme početka i vreme završetka za {1} se preklapaju sa {2}" @@ -46858,8 +46919,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Red {0}: Nevažeća referenca {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Red {0}: Šablon stavke poreza ažuriran prema važenju i primenjenoj stopi" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46889,7 +46950,7 @@ msgstr "Red {0}: Vreme operacije mora biti veće od 0 za operaciju {1}" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Red {0}: Upakovana količina mora biti jednaka količini {1}." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Red {0}: Dokument liste pakovanja je već kreiran za stavku {1}." @@ -46913,7 +46974,7 @@ msgstr "Red {0}: Plaćanje na osnovu prodajne/nabavne porudžbine uvek treba ozn msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Red {0}: Molimo Vas da označite opciju 'Avans' za račun {1} ukoliko je ovo avansni unos." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Red {0}: Molimo Vas da navedete referencu za predmet otpremnice ili referencu za upakovanu stavku." @@ -46921,14 +46982,14 @@ msgstr "Red {0}: Molimo Vas da navedete referencu za predmet otpremnice ili refe msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Red {0}: Molimo Vas da izaberete sastavnicu za stavku {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Red {0}: Molimo Vas da izaberete aktivnu sastavnicu za stavku {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Red {0}: Molimo Vas da izaberete validnu sastavnicu za stavku {1}." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Red {0}: Molimo Vas da postavite razlog oslobođanja od poreza u sekciji Porezi i takse na prodaju" @@ -46945,11 +47006,11 @@ msgstr "Red {0}: Molimo Vas da postavite ispravnu šifru za način plaćanja {1} msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Red {0}: Projekat mora biti isti kao onaj postavljem u evidenciji vremena: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Red {0}: Ulazna faktura {1} nema uticaj na zalihe." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Red {0}: Količina ne može biti veća od {1} za stavku {2}." @@ -46957,7 +47018,7 @@ msgstr "Red {0}: Količina ne može biti veća od {1} za stavku {2}." msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Red {0}: Količina u osnovnoj jedinici mere zaliha ne može biti nula." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Red {0}: Količina mora biti veća od 0." @@ -46969,7 +47030,7 @@ msgstr "Red {0}: Količina ne može biti negativna." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "Red {0}: Izlazna faktura {1} je već kreirana za {2}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46994,10 +47055,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "Red {0}: Celokupan iznos rashoda za račun {1} u {2} je već raspoređen." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Red {0}: Stavka {1}, količina mora biti pozitivan broj" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Red {0}: Račun {3} {1} ne pripada kompaniji {2}" @@ -47050,15 +47111,19 @@ msgstr "Red {0}: {1} {2} ne može biti isto kao {3} (Račun stranke) {4}" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Red {0}: {1} {2} se ne podudara sa {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "Red {0}: {1} {2} je povezan sa kompanijom {3}. Molimo Vas da izaberete dokument koji pripada kompaniji {4}." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Red {0}: Stavka {2} {1} ne postoji u {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Red {1}: Količina ({0}) ne može biti razlomak. Da biste to omogućili, onemogućite opciju '{2}' u jedinici mere {3}." @@ -47097,8 +47162,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Redovi: {0} imaju 'Unos uplate' kao referentnu vrstu. Ovo ne treba podešavati ručno." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Redovi: {0} u odeljku {1} su nevažeći. Naziv reference treba da upućuje na validan unos uplate ili nalog knjiženja." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47158,10 +47223,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47229,7 +47290,7 @@ msgstr "Status ispunjenja sporazuma o nivou usluge" msgid "SLA Paused On" msgstr "Sporazum o nivou usluge je pauziran" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "Sporazum o nivou usluge je na čekanju od {0}" @@ -47528,8 +47589,8 @@ msgid "Sales Invoice is not submitted" msgstr "Izlazna faktura nije podneta" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "Izlazna faktura nije kreirana od strane korisnika {}" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47745,8 +47806,8 @@ msgstr "Prodajna porudžbina {0} već postoji za nabavnu porudžbinu kupca {1}. msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "Prodajna porudžbina {0} nije dostupna za proizvodnju" @@ -48153,7 +48214,7 @@ msgstr "Ista stavka" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Ista stavka i kombinacija skladišta su već uneseni." @@ -48185,7 +48246,7 @@ msgstr "Skladište za zadržane uzorke" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Veličina uzorka" @@ -48295,7 +48356,7 @@ msgstr "Skenirana količina" msgid "Schedule Date" msgstr "Datum rasporeda" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "Naziv rasporeda" @@ -48306,7 +48367,7 @@ msgstr "Naziv rasporeda" msgid "Scheduled Date" msgstr "Zakazani datum" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "Zakazani datum je obavezan." @@ -48594,7 +48655,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "Izaberite računovodstvenu dimenziju." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Izaberite alternativnu stavku" @@ -48615,7 +48676,7 @@ msgid "Select BOM and Qty for Production" msgstr "Izaberite sastavnicu i količinu za proizvodnju" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Izaberite broj šarže" @@ -48680,7 +48741,7 @@ msgstr "Izaberite dimenziju" msgid "Select Dispatch Address " msgstr "Izaberite adresu otpreme " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Izaberite zaposlena lica" @@ -48705,7 +48766,7 @@ msgstr "Izaberite stavke" msgid "Select Items based on Delivery Date" msgstr "Izaberite stavke na osnovu datuma isporuke" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "Izaberite stavke za kontrolu kvaliteta" @@ -48735,7 +48796,7 @@ msgstr "Izaberite adresu zaposlenog" msgid "Select Loyalty Program" msgstr "Izaberite program lojalnosti" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "Izaberite raspored plaćanja" @@ -48749,13 +48810,13 @@ msgid "Select Quantity" msgstr "Izaberite količinu" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Izaberite broj serije" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Izaberite seriju i šaržu" @@ -48846,6 +48907,7 @@ msgid "Select an Item Group." msgstr "Izaberite grupu stavki." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Izaberite račun za štampanje u valuti računa" @@ -48988,10 +49050,14 @@ msgstr "Izabrana dokumenta" msgid "Selected date is" msgstr "Izabrani datum je" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "Izabrani dokument mora biti u statusu podnet" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49139,7 +49205,7 @@ msgid "Send Emails to Suppliers" msgstr "Pošalji imejlove dobavljačima" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Pošalji SMS" @@ -49223,7 +49289,7 @@ msgstr "Nedostaje paket serije / šarže" msgid "Serial / Batch No" msgstr "Broj serije / šarže" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Brojevi serije / šarže" @@ -49280,10 +49346,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49325,6 +49392,10 @@ msgstr "Broj serije / šarža" msgid "Serial No Already Assigned" msgstr "Broj serije je već dodeljen" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Broj serijskih brojeva" @@ -49342,7 +49413,7 @@ msgstr "Dnevnik brojeva serija" msgid "Serial No Range" msgstr "Opseg serijskih brojeva" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "Rezervisani broj serije" @@ -49387,8 +49458,8 @@ msgid "Serial No and Batch" msgstr "Broj serije i šarža" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "Selektor broja serije i šarže ne može biti korišćen kada je opcija koristi polja za seriju / šaržu omogućena." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49399,7 +49470,7 @@ msgstr "Selektor broja serije i šarže ne može biti korišćen kada je opcija msgid "Serial No and Batch Traceability" msgstr "Pratljivost broja serije i šarže" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "Broj serije je obavezan" @@ -49419,22 +49490,19 @@ msgstr "Broj serije {0} je već skeniran" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Broj serije {0} ne pripada otpremnici {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Broj serije {0} ne pripada stavci {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Broj serije {0} ne postoji" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "Broj serije {0} ne postoji" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "Broj serije {0} je već isporučen. Ne možete ga ponovo koristiti u unosu za proizvodnju ili prepakovanje." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49448,25 +49516,26 @@ msgstr "Broj serije {0} je već dodeljen kupcu {1}. Može biti vraćen samo kupc msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Broj serije {0} nije prisutan u {1} {2}, stoga ga ne možete vratiti protiv {1} {2}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Broj serije {0} je pod servisnim ugovorom do {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Broj serije {0} je pod garancijom do {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Broj serije {0} nije pronađen" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Broj serije: {0} je već transakcijski upisan u drugi fiskalni račun." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49486,7 +49555,7 @@ msgstr "Brojevi serija / šarže" msgid "Serial Nos are created successfully" msgstr "Brojevi serije su uspešno kreirani" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Brojevi serije su rezervisani u unosima rezervacije zalihe, morate poništiti rezervisanje pre nego što nastavite." @@ -49587,6 +49656,10 @@ msgstr "Paket serije i šarže {0} nije podnet" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49635,7 +49708,7 @@ msgstr "Rezervacija serije i šarže" msgid "Serial and Batch Summary" msgstr "Rezime serije i šarže" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Broj serije {0} je unet više puta" @@ -49643,122 +49716,12 @@ msgstr "Broj serije {0} je unet više puta" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "Brojevi serije nisu dostupni za stavku {0} u skladištu {1}. Molimo Vas da promenite skladište." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Serija" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Serija za unos amortizacije imovine (Nalog knjiženja)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Serija je obavezna" @@ -49840,7 +49803,7 @@ msgid "Service Item {0} is disabled." msgstr "Uslužna stavka {0} je onemogućena." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "Uslužna stavka {0} mora biti stavka van zaliha." @@ -49949,12 +49912,12 @@ msgid "Service Stop Date" msgstr "Datum prekidanja usluge" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Datum prekidanja usluge ne može biti posle datuma završetka usluge" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "Datum prekidanja usluge ne može biti pre datuma početka usluge" @@ -49978,7 +49941,7 @@ msgstr "Postavi avanse i raspodeli (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Postavi osnovnu cenu ručno" @@ -49993,7 +49956,7 @@ msgstr "Postavi podrazumevanog dobavljača" msgid "Set Delivery Warehouse" msgstr "Postavi skladište za isporuku" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50098,7 +50061,7 @@ msgstr "Postavi imenovanje paketa serije i šarže na osnovu serije imenovanja" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50116,7 +50079,7 @@ msgstr "Postavi dobavljača" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50142,7 +50105,7 @@ msgstr "Postavi kao zatvoreno" msgid "Set as Completed" msgstr "Postavi kao završeno" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Postavi kao izgubljeno" @@ -50240,15 +50203,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Postavi {0} u kategoriju imovine {1} za kompaniju {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Postavi {0} u kategoriju imovine {1} ili u kompaniju {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Postavi {0} u kompaniju {1}" @@ -50316,7 +50279,7 @@ msgid "Setting up company" msgstr "Postavljanje kompanije" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "Podešavanje {0} je neophodno" @@ -50744,6 +50707,7 @@ msgid "Show Completed" msgstr "Prikaži završeno" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "Prikaži potražuje / duguje u valuti kompanije" @@ -50946,7 +50910,7 @@ msgstr "Prikaži samo neposredno naredni period" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Prikaži nerešene unose" @@ -51051,11 +51015,11 @@ msgstr "Jednostavna python formula primenjena na čitanje polja.
                    Numeric eg msgid "Simultaneous" msgstr "Simultano" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "Pošto postoje aktivna sredstva koja se amortizuju u ovoj kategoriji, sledeći računi su obavezni.

                    " -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Pošto postoje gubici u procesu od {0} jedinica za gotov proizvod {1}, trebalo bi da smanjite količinu za {0} jedinica za gotov proizvod {1} u tabeli stavki." @@ -51116,7 +51080,7 @@ msgstr "Preskoči prenos materijala za nedovršenu proizvodnju" msgid "Skip Material Transfer to WIP Warehouse" msgstr "Preskoči prenos materijala za skladišta nedovršene proizvodnje" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "Preskočeno {0} DocType-ova:
                    {1}" @@ -51172,8 +51136,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "Neki obavezni podaci o kompaniji nedostaju. Nemate dozvolu da ih ažurirate. Molimo Vas da kontaktirate sistem menadžera." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Došlo je do greške, molimo Vas da pokušate ponovo" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51240,7 +51204,7 @@ msgstr "Izvorni unos proizvodnje" msgid "Source Stock Entry (Manufacture)" msgstr "Izvorni unos zaliha (proizvodnja)" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "Izvorni unos zaliha {0} pripada radnom nalogu {1}, a ne {2}. Molimo Vas da koristite unos proizvodnje iz istog radnog naloga." @@ -51277,8 +51241,8 @@ msgstr "Vrsta izvora" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51408,7 +51372,7 @@ msgstr "Podeli izdavanje" msgid "Split Qty" msgstr "Podeli količinu" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "Podeljena količina mora biti manja od količine imovine" @@ -51421,7 +51385,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Podela {0} {1} u {2} redova prema uslovima plaćanja" @@ -51474,7 +51443,7 @@ msgstr "Naziv faze" msgid "Stale Days" msgstr "Dani zastarivanja" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Dani zastarivanja bi trebalo da počnu od 1." @@ -51539,10 +51508,26 @@ msgstr "Standardni poreski šablon koji se može primeniti na sve prodajne trans msgid "Standing Name" msgstr "Stojeći naziv" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Početak / Nastavak" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Datum početka ne može biti pre trenutnog datuma" @@ -51572,7 +51557,7 @@ msgstr "Vreme početka ne može biti veće ili jednako vremenu završetka za {0} msgid "Start Timer" msgstr "Pokreni tajmer" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51601,10 +51586,14 @@ msgstr "Datum početka treba da bude manji od datuma završetka za stavku {0}" msgid "Start date should be less than end date for task {0}" msgstr "Datum početka treba da bude manji od datuma završetka za zadatak {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "Pokrenut je pozadinski zadatak za kreiranje {1} {0}. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51685,7 +51674,7 @@ msgstr "Ilustracija statusa" msgid "Status and Reference" msgstr "Status i referenca" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Status mora biti otkazan ili završen" @@ -51813,8 +51802,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "Unos zatvaranja zaliha {0} već postoji za izabrani vremenski period" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "Unos zatvaranja zaliha {0} je stavljen u red za obradu, sistemu će biti potrebno neko vreme da ga završi." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51895,17 +51884,21 @@ msgstr "Stavka unosa zaliha" msgid "Stock Entry Type" msgstr "Vrsta unosa zaliha" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Unos zaliha je već kreiran za ovu listu za odabir" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Unos zaliha {0} kreiran" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Unos zaliha {0} je kreiran" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52071,7 +52064,7 @@ msgstr "Očekivana količina zaliha" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52154,7 +52147,7 @@ msgstr "Podešavanje ponovne obrade zaliha" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52179,15 +52172,15 @@ msgstr "Rezervacija zaliha" msgid "Stock Reservation Entries Cancelled" msgstr "Unosi rezervacije zaliha otkazani" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Unosi rezervacije zaliha kreirani" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "Kreirani unosi rezervacije zaliha" @@ -52357,7 +52350,7 @@ msgstr "Transakcije zaliha" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52516,9 +52509,9 @@ msgstr "Poništeno je rezervisanje zaliha za radni nalog {0}." msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "Zalihe nisu dostupne za stavku {0} u skladištu {1}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "Količina zaliha nije dovoljna za šifru stavke: {0} u skladištu {1}. Dostupna količina {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52536,7 +52529,7 @@ msgstr "Transakcije zaliha starije od navedenih dana ne mogu se modifikovati." msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "Zalihe će biti rezervisane nakon podnošenja Prijemnice nabavke kreirane prema zahtevu za nabavku za prodajnu porudžbinu." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "Zalihe/Računi ne mogu biti zaključani jer se trenutno obrađuju unosi sa starijim datumima. Pokušajte ponovo kasnije." @@ -52551,7 +52544,7 @@ msgstr "Stone" msgid "Stop Reason" msgstr "Razlog zaustavljanja" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Zaustavljeni radni nalozi ne mogu biti otkazani. Prvo je potrebno otkazati zaustavljanje da biste otkazali" @@ -52559,7 +52552,7 @@ msgstr "Zaustavljeni radni nalozi ne mogu biti otkazani. Prvo je potrebno otkaza #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Magacini" @@ -52773,7 +52766,7 @@ msgstr "Faktor konverzije iz podugovaranja" msgid "Subcontracting Delivery" msgstr "Isporuka za podugovaranje" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52845,7 +52838,7 @@ msgstr "Stavka usluge naloga za prijem iz podugovaranja" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52883,7 +52876,7 @@ msgstr "Uslužna stavka naloga za podugovaranje" msgid "Subcontracting Order Supplied Item" msgstr "Nabavljene stavke naloga za podugovaranje" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Nalog za podugovaranje {0} je kreiran." @@ -52957,7 +52950,7 @@ msgstr "Povraćaj u podugovaranju" msgid "Subcontracting Sales Order" msgstr "Prodajna porudžbina za podugovaranje" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52976,7 +52969,7 @@ msgstr "Postavke podugovaranja" msgid "Subdivision" msgstr "Pododeljenje" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Podnošenje radnje nije uspelo" @@ -53005,7 +52998,7 @@ msgstr "Podnesi ovaj radni nalog za dalju obradu." msgid "Submit your Quotation" msgstr "Podnesi svoju ponudu" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53147,7 +53140,7 @@ msgstr "Podešavanje uspeha" msgid "Successful" msgstr "Uspešno" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Uspešno usklađeno" @@ -53325,7 +53318,7 @@ msgstr "Nabavljena količina" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53507,7 +53500,7 @@ msgstr "Datum izdavanja fakture dobavljača" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Broj fakture dobavljača" @@ -53655,7 +53648,7 @@ msgstr "Poređenje ponuda dobavljača" msgid "Supplier Quotation Item" msgstr "Stavka iz ponude dobavljača" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Ponuda dobavljača {0} kreirana" @@ -53840,10 +53833,6 @@ msgstr "Tim za podršku" msgid "Support Tickets" msgstr "Tiket za podršku" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "Sumnjivi iznosi popusta" @@ -53929,7 +53918,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "Rezime obračuna poreza odbijenog na izvoru" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "Odbijen porez po odbitku na izvoru" @@ -53990,8 +53979,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "Ciljana imovina {0} ne pripada kompaniji {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "Ciljana imovina {0} mora biti kompozitna imovina" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54100,11 +54089,11 @@ msgstr "Link za adresu ciljnog skladišta" msgid "Target Warehouse Reservation Error" msgstr "Greška rezervacije u ciljnom skladištu" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "Ciljno skladište za gotov proizvod mora biti isto kao skladište gotovih proizvoda {1} u radnom nalogu {2} povezano sa nalogom za prijem iz podugovaranja." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "Ciljno skladište za gotov proizvod mora biti isto kao skladište gotovih proizvoda {0} u radnom nalogu {1} povezano sa nalogom za prijem iz podugovaranja." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "Ciljno skladište je obavezno pre podnošenja" @@ -54580,7 +54569,7 @@ msgstr "Porez po odbitku se obračunava samo na iznos koji prelazi kumulativni p #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Oporezivi iznos" @@ -54792,7 +54781,7 @@ msgstr "Televizija" msgid "Template Item" msgstr "Stavka šablona" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Izabrana stavka šablona" @@ -55099,23 +55088,27 @@ msgstr "Tesla" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "Tekst prikazan u finansijskom izveštaju (npr. 'Ukupni prihodi', 'Gotovina i gotovinski ekvivalenti')" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "Polje 'Od broja paketa' ne može biti prazno niti njegova vrednost može biti manja od 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "Pristup zahtevu za ponudu sa portala je onemogućeno. Da biste omogućili pristup, omogućite ga u podešavanjima portala." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "Sastavnica koja će biti zamenjena" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "Šarža {0} ima negativnu količinu od {1}. Da biste to ispravili, otvorite šaržu i kliknite da ponovo izračunate količinu šarže. Ukoliko problem i dalje postoji, kreirajte ulaznu stavku." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "Kampanja '{0}' već postoji za {1} '{2}'" @@ -55140,6 +55133,10 @@ msgstr "Unosi u glavnu knjigu i zaključna salda će biti obrađena u pozadini, msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Unosi u glavnu knjigu će biti otkazani u pozadini, ovo može potrajati nekoliko minuta." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Program lojalnosti nije važeći za izabranu kompaniju" @@ -55157,9 +55154,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "Lista za odabir koja sadrži unose rezervacije zaliha ne može biti ažurirana. Ukoliko morate da izvršite promene, preporučujemo da otkažete postojeće stavke unosa rezervacije zaliha pre nego što ažurirate listu za odabir." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "Količina gubitka u procesu je resetovana prema količini gubitka u procesu sa radnom karticom" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55169,11 +55169,15 @@ msgstr "Prodavac je povezan sa {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Broj serije u redu #{0}: {1} nije dostupan u skladištu {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Serijski broj {0} je rezervisan za {1} {2} i ne može se koristiti za bilo koju drugu transakciju." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Paket serije i šarže {0} nije validan za ovu transakciju. 'Vrsta transakcije' treba da bude 'Izlazna' umesto 'Ulazna' u paketu serije i šarže {0}" @@ -55221,15 +55225,15 @@ msgstr "Kompanija {0} nije u Južnoj Africi. Izveštaj o PDV reviziji dostupan j msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "Završena količina {0} za operaciju {1} ne može biti veća od završene količine {2} iz prethodne operacije {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "Valuta fakture {} ({}) se razlikuje od valute u ovoj opomeni ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "Trenutni unosi početnog stanja maloprodaje je zastareo. Zatvorite ga i kreirajte novi." @@ -55278,6 +55282,10 @@ msgstr "Polje ka vlasniku ne može biti prazno" msgid "The field {0} in row {1} is not set" msgstr "Polje {0} u redu {1} nije postavljeno" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Polja od vlasnika i ka vlasniku ne mogu biti prazna" @@ -55299,9 +55307,9 @@ msgstr "Fiskalna godina je automatski kreirana u onemogućenom statusu radi uskl msgid "The folio numbers are not matching" msgstr "Referentni brojevi se ne poklapaju" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "Sledeće stavke, koje imaju pravila skladištenja, nisu mogle biti raspoređene:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55328,8 +55336,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Sledeća zaposlena lica još uvek izveštavaju ka {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "Sledeća nevažeća cenovna pravila su obrisana:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55341,7 +55349,7 @@ msgstr "Sledeći rasporedi plaćanja već postoje:\n" msgid "The following rows are duplicates:" msgstr "Sledeći redovi su duplikati:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Sledeći {0} je kreiran: {1}" @@ -55377,8 +55385,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "Sledeće stavke {items} nisu označene kao {type_of} stavke. Možete ih omogućiti kao {type_of} stavke iz master podataka stavke." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "Radna kartica {0} je {1} i ne možete da je završite." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55415,12 +55423,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "Operacija {0} ne može biti dodata više puta" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "Operacija {0} ne može biti podoperacija" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55468,6 +55476,10 @@ msgstr "Procenat za koji Vam je odobreno da primite ili isporučite više od nar msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "Procenat za koji Vam je odobreno da prenesete više od naručene količine. Na primer, ukoliko ste naručili 100 jedinica, a Vaše odobrenje je 10%, onda Vam je odobreno da prenesete 110 jedinica." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55477,7 +55489,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "Rezervisane zalihe će biti ponovo dostupne kada ažurirate stavke. Da li ste sigurni da želite da nastavite?" @@ -55494,8 +55506,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Izabrane sastavnice nisu za istu stavku" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Izabrani račun za promene {} ne pripada kompaniji {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55511,8 +55523,8 @@ msgstr "Prodavac i kupac ne mogu biti isto lice" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "Paket serije i šarže {0} nije povezan sa {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55530,11 +55542,11 @@ msgstr "Udeli već postoje" msgid "The shares don't exist with the {0}" msgstr "Udeli ne postoje sa {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "Zalihe za stavku {0} u skladištu {1} su bile negativne na {2}. Trebalo bi da kreirate pozitivan unos {3} pre datuma {4} i vremena {5} kako biste uneli ispravnu stopu vrednovanja. Za više detalja pročitajte dokumentaciju.." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Zalihe za stavku {0} u skladištu {1} su bile negativne na {2}. Trebalo bi da kreirate pozitivan unos {3} pre datuma {4} i vremena {5} kako biste uneli ispravnu stopu vrednovanja. Za više detalja pročitajte dokumentaciju.." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "Zalihe su rezervisane za sledeće stavke i skladišta, poništite rezervisanje kako biste mogli da {0} uskladite zalihe:

                    {1}" @@ -55556,17 +55568,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "Sistem će kreirati izlaznu fakturu ili fiskalni račun sa maloprodajnog interfejsa u zavisnosti od ovog podešavanja. Za transakcije velikog obima preporučuje se korišćenje fiskalnog računa." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "Zadatak je stavljen u status čekanja kao pozadinski proces. U slučaju problema pri obradi u pozadini, sistem će dodati komentar o grešci u ovom usklađivanju zaliha i vratiti ga u fazu nacrta" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "Zadatak je stavljen u status čekanja kao pozadinski proces. U slučaju problema pri obradi u pozadini, sistem će dodati komentar o grešci u ovom usklađivanju zaliha i vratiti ga u status podneto" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "Ukupna količina izdavanja / prenosa {0} u zahtevu za nabavku {1} ne može biti veća od dozvoljene tražene količine {2} za stavku {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55604,7 +55616,7 @@ msgstr "Korisnici sa ovom ulogom imaju dozvolu da kreiraju/izmene transakciju za msgid "The value of {0} differs between Items {1} and {2}" msgstr "Vrednost {0} se razlikuje između stavki {1} i {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "Vrednost {0} je već dodeljena postojećoj stavci {1}." @@ -55628,7 +55640,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) mora biti jednako {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0} sadrži stavke sa jediničnom cenom." @@ -55636,7 +55648,7 @@ msgstr "{0} sadrži stavke sa jediničnom cenom." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "Prefiks {0} '{1}' već postoji. Molimo Vas da promenite seriju brojeva serije, u suprotnom će doći do greške duplog unosa." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} uspešno kreiran" @@ -55644,6 +55656,10 @@ msgstr "{0} {1} uspešno kreiran" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0} {1} se ne podudara sa {0} {2} u {3} {4}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} se koristi za izračunavanje vrednosti troškova za gotov proizvod {2}." @@ -55652,7 +55668,7 @@ msgstr "{0} {1} se koristi za izračunavanje vrednosti troškova za gotov proizv msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "Zatim se cenovna pravila filtriraju na osnovu kupca, grupe kupaca, teritorije, dobavljača, vrste dobavljača, kampanje, prodajnog partnera, itd." -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Postoje aktivna održavanja ili popravke za ovu imovinu. Morate ih završiti pre nego što otkažete imovinu." @@ -55664,7 +55680,7 @@ msgstr "Postoje nedoslednosti između vrednosti po udelu, broja udela i izračun msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "Postoje knjiženja za ovaj račun. Promena {0} i ne-{1} u aktivnom sistemu izazvaće netačan izlaz u izveštaju 'Računi' {2}" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "Nema neuspelih transakcija" @@ -55681,6 +55697,10 @@ msgstr "Nema aktivnih fiskalnih godina za koje se mogu generisati demo podaci." msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "Nema dostupnih termina za ovaj datum" @@ -55697,10 +55717,6 @@ msgstr "Postoje dve opcije za procenu zaliha. FIFO (prvi ulaz - prvi izlaz) i pr msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "Ne postoje varijante stavke za izabranu stavku" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Mogu postojati višestrukti nivoi naplate na osnovu ukupno potrošenog iznosa. Faktor konverzije za iskorišćenje će uvek biti isti za sve iznose." @@ -55729,21 +55745,21 @@ msgstr "Nije pronađena nijedna šarža za {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "Mora postojati bar jedan gotov proizvod u unosu zaliha" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Došlo je do greške prilikom kreiranja tekućeg računa tokom povezivanja sa Plaid-om." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "Došlo je do greške prilikom sinhronizacije transakcija." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Došlo je do greške pri ažuriranju tekućeg računa {} tokom povezivanja sa Plaid-om." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55793,15 +55809,19 @@ msgstr "Rezime ovog meseca" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "Ova nabavna porudžbina je u potpunosti podugovorena." -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "Ova prodajna porudžbina je u potpunosti podugovorena." @@ -55823,7 +55843,7 @@ msgstr "Ova radnja će poništiti povezivanje računa od bilo koje eskterne uslu msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "Ova kategorija imovine je označena kao nepodložna amortizaciji. Omogućite obračun amortizacije ili izaberite drugu kategoriju." @@ -55841,7 +55861,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "Ovo obuhvata sve tablice za ocenjivanje povezane sa ovim podešavanjem" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Ovaj dokument prelazi ograničenje za {0} {1} za stavku {4}. Da li pravite još jedan {3} za isti {2}?" @@ -55983,7 +56003,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "Ovaj filter stavki je već primenjen za {0}" @@ -56047,7 +56067,7 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} vraćena putem izlazne fakt msgid "This schedule was created when Asset {0} was scrapped." msgstr "Ovaj raspored je kreiran kada je imovina {0} otpisana." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "Ovaj raspored je kreiran kada je imovina {0} bila {1} u novu imovinu {2}." @@ -56074,10 +56094,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "Ovaj odeljak omogućava korisniku da postavi tekst i zaključak opomene za vrstu opomene na osnovu jezika, koji se može koristiti pri štampanju." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56135,8 +56155,8 @@ msgid "This will restrict user access to other employee records" msgstr "Ovo će ograničiti korisnički pristup zapisima drugih zaposlenih lica" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "Ovo {} će se tretirati kao prenos materijala." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56264,6 +56284,12 @@ msgstr "Vreme (u minutima)" msgid "Timeline" msgstr "Vremenski redosled" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56550,8 +56576,8 @@ msgid "To Time" msgstr "Vreme završetka" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "Vreme završetka ne može biti pre datuma početka" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56581,15 +56607,15 @@ msgstr "Da biste dodali operacije, označite polje 'Sa operacijama'." msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Za dodavanje sirovina za podugovorenu stavku ukoliko je opcija uključi detaljne stavke onemogućena." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Da biste odobrili prekoračenje fakturisanja, ažurirajte \"Dozvola za fakturisanje preko limita\" u podešavanjima računa ili u stavci." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Da biste odobrili prekoračenje prijema/isporuke, ažurirajte \"Dozvola za prijem/isporuku preko limita\" u podešavanjima zaliha ili u stavci." @@ -56606,8 +56632,8 @@ msgid "To be Delivered to Customer" msgstr "Za isporuku kupcu" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "Da biste otkazali {} morate otkazati unos zatvaranja maloprodaje." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56618,8 +56644,8 @@ msgid "To create a Payment Request reference document is required" msgstr "Za kreiranje zahteva za naplatu potreban je referentni dokument" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Da biste omogučili računovodstvo nedovršenih kapitalnih radova," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56631,8 +56657,8 @@ msgstr "Za uključivanje stavki van zaliha u planiranju zahteva za nabavku, to j msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "Omogućava uključivanje troškova podsklopova i sekundarnih stavki u gotove proizvode u radnom nalogu bez korišćenja radne kartice, kada je uključena opcija 'Koristi višeslojnu sastavnicu'." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Da bi porez bio uključen u red {0} u ceni stavke, porezi u redovima {1} takođe moraju biti uključeni" @@ -56652,7 +56678,7 @@ msgstr "Da biste ovo poništili, omogućite '{0}' u kompaniji {1}" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Da biste nastavili sa uređivanjem ove vrednosti atributa, omogućite {0} u podešavanjima varijanti stavke." @@ -56669,10 +56695,12 @@ msgstr "Da biste podneli fakturu bez prijemnica nabavke, molimo Vas da postavite msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Da biste koristili drugu finansijsku evidenciju, poništite označavanje opcije 'Uključi podrazumevanu imovinu u finansijskim evidencijama'" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Da biste koristili drugu finansijsku knjigu, poništite označavanje opcije 'Uključi podrazumevane unose u finansijskim evidencijama'" @@ -56751,8 +56779,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "Ukupno (valuta kompanije)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Ukupno (Potražuje)" @@ -56794,6 +56822,22 @@ msgstr "Ukupno dodatnih troškova" msgid "Total Advance" msgstr "Ukupno avans" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56841,11 +56885,11 @@ msgstr "Ukupan dospeli iznos" msgid "Total Amount in Words" msgstr "Ukupno slovima" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Ukupni primenjeni troškovi u tabeli prijemnice nabavke moraju biti isti kao ukupni porezi i takse" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Ukupna imovina" @@ -57027,7 +57071,7 @@ msgstr "Ukupno isporučeni iznos" msgid "Total Demand (Past Data)" msgstr "Ukupna potražnja (istorijski podaci)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "Ukupni kapital" @@ -57036,11 +57080,11 @@ msgstr "Ukupni kapital" msgid "Total Estimated Distance" msgstr "Ukupna procenjena udaljenost" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Ukupni trošak" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Ukupni trošak tokom ove godine" @@ -57078,11 +57122,11 @@ msgstr "Ukupno vreme zadržavanja" msgid "Total Holidays" msgstr "Ukupno praznika" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Ukupni prihodi" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Ukupni prihodi tokom ove godine" @@ -57125,7 +57169,7 @@ msgstr "Ukupni zavisni troškovi nabavke (valuta kompanije)" msgid "Total Ledgers" msgstr "Ukupno poslovnih knjiga" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "Ukupna obaveza" @@ -57440,7 +57484,7 @@ msgstr "Ukupno poreza i taksi" msgid "Total Taxes and Charges (Company Currency)" msgstr "Ukupno poreza i taksi (valuta kompanije)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Ukupno vreme (u minutima)" @@ -57449,7 +57493,11 @@ msgstr "Ukupno vreme (u minutima)" msgid "Total Time in Mins" msgstr "Ukupno vreme u minutima" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Ukupno neizmireno: {0}" @@ -57528,7 +57576,7 @@ msgstr "Ukupno vreme radnih stanica (u satima)" msgid "Total allocated percentage for sales team should be 100" msgstr "Ukupno raspoređeni procenat za prodajni tim treba biti 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Ukupni procenat doprinosa treba biti 100" @@ -57546,8 +57594,8 @@ msgstr "Ukupno sati: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Ukupan iznos za plaćanje ne može biti veći od {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57564,9 +57612,9 @@ msgstr "Ukupna količina u rasporedu isporuka ne može biti veća od količine s msgid "Total {0} ({1})" msgstr "Ukupno {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Ukupno {0} za sve stavke je nula, možda bi trebalo da promenite 'Raspodeli troškove zasnovane na'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57654,27 +57702,11 @@ msgstr "Informacije o statusu praćenja" msgid "Tracking URL" msgstr "URL za praćenje" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Transakcija" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "Valuta transakcije" @@ -57727,11 +57759,11 @@ msgstr "Stavka u zapisu o brisanju transakcije" msgid "Transaction Deletion Record To Delete" msgstr "Zapis brisanja transakcija za brisanje" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "Zapis brisanja transakcija {0} je već u toku. {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "Zapis brisanja transakcija {0} trenutno briše {1}. Nije moguće sačuvati dokumenta dok se brisanje ne završi." @@ -58121,6 +58153,10 @@ msgstr "Bruto bilans (Jednostavan)" msgid "Trial Balance for Party" msgstr "Bruto bilans po strankama" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58305,7 +58341,7 @@ msgstr "UAE VAT Settings" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58327,7 +58363,7 @@ msgstr "UAE VAT Settings" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58357,7 +58393,7 @@ msgstr "UAE VAT Settings" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58421,7 +58457,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Faktor konverzije jedinice mere" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Faktor konverzije jedinice mere ({0} -> {1}) nije pronađen za stavku: {2}" @@ -58495,7 +58531,7 @@ msgstr "Poništi usklađivanje" msgid "UnReconcile Allocations" msgstr "Poništi raspodelu" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "Nije moguće preuzeti detalje DocType. Molimo Vas da kontaktirate sistem administratora." @@ -58508,10 +58544,6 @@ msgstr "Nije moguće pronaći devizni kurs za {0} u {1} za ključni datum {2}. M msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Nije moguće pronaći devizni kurs za {0} u {1} za ključni datum {2}. Molimo Vas da ručno kreirate zapis o konverziji valute." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Nije moguće pronaći ocenu koja počinje sa {0}. Morate imati postojeće ocene koji su u opsegu od 0 do 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "Nije moguće pronaći vremenski termin u narednih {0} dana za operaciju {1}. Molimo Vas da povećate 'Planiranje kapaciteta za (u danima)' za {2}." @@ -58536,7 +58568,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Neraspoređeni iznos" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Nedodeljena količina" @@ -58548,8 +58580,10 @@ msgstr "Nefakturisane porudžbine" msgid "Unblock Invoice" msgstr "Odblokiraj fakturu" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58599,7 +58633,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "Neočekivani obrazac serije imenovanja" @@ -58622,7 +58656,7 @@ msgstr "" msgid "Unit Price" msgstr "Jedinična cena" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Jedinica mere" @@ -58825,7 +58859,7 @@ msgstr "Neplanirano" msgid "Unsecured Loans" msgstr "Neobezbeđeni krediti" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "Poništi usklađeni zahtev za naplatu" @@ -58838,7 +58872,7 @@ msgstr "Nepotpisano" msgid "Unsubscribe from this Email Digest" msgstr "Otkaži pretplatu na ovaj imejl izveštaj" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58982,7 +59016,7 @@ msgstr "Ažuriraj trenutne zalihe" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59046,7 +59080,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "Ažuriraj najnoviju cenu u svim sastavnicama" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "Morate omogućiti ažuriranje zaliha za ulaznu fakturu {0}" @@ -59274,7 +59308,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "Koristi devizni kurs na datum transakcije" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Korisi naziv koji se razlikuje od prethodnog naziva projekta" @@ -59363,6 +59397,10 @@ msgstr "Vreme rešavanja za korisnika" msgid "User has not applied rule on the invoice {0}" msgstr "Korisnik nije primenio pravilo na fakturi {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Korisnik {0} ne postoji" @@ -59375,6 +59413,10 @@ msgstr "Korisnik {0} nema podrazumevani profil maloprodaje. Proverite podrazumev msgid "User {0} is already assigned to Employee {1}" msgstr "Korisnik {0} je već dodeljen zaposlenom licu {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Korisnik {0}: Uklonjena uloga samostalnog upravljanja zaposlenog lica jer nema dodeljenog zaposlenog lica." @@ -59383,10 +59425,6 @@ msgstr "Korisnik {0}: Uklonjena uloga samostalnog upravljanja zaposlenog lica je msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Korisnik {0}: Uklonjena uloga zaposlenog lica jer nema uloge dodeljenog zaposlenog lica." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Korisnik {} je onemogućen. Molimo Vas da izaberete validnog korisnika/blagajnika" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59679,15 +59717,15 @@ msgstr "Stopa vrednovanja" msgid "Valuation Rate (In / Out)" msgstr "Stopa vrednovanja (ulaz/izlaz)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Nedostaje stopa vrednovanja" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Stopa vrednovanja za stavku {0} je neophodna za računovodstvene unose za {1} {2}." @@ -59695,7 +59733,7 @@ msgstr "Stopa vrednovanja za stavku {0} je neophodna za računovodstvene unose z msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Stopa vrednovanja je obavezna ukoliko je unet početni inventar" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Stopa vrednovanja je obavezna za stavku {0} u redu {1}" @@ -59705,7 +59743,7 @@ msgstr "Stopa vrednovanja je obavezna za stavku {0} u redu {1}" msgid "Valuation and Total" msgstr "Vrednovanje i ukupno" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "Stopa vrednovanja za stavke obezbeđene od strane kupca je postavljena na nulu." @@ -59718,14 +59756,14 @@ msgstr "Stopa vrednovanja za stavke obezbeđene od strane kupca je postavljena n msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Stopa vrednovanja za stavku prema izlaznoj fakturi (samo za unutrašnje transfere)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Naknade sa vrstom vrednovanja ne mogu biti označene kao uključene u cenu" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Naknade sa vrstom vredovanja ne mogu biti označene kao uključene u cenu" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59775,12 +59813,12 @@ msgstr "Predlog vrednosti" msgid "Value Type" msgstr "Vrsta vrednosti" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "Vrednost na dan" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Vrednost za atribut {0} mora biti u opsegu od {1} do {2} u koracima od {3} za stavku {4}" @@ -59789,19 +59827,19 @@ msgstr "Vrednost za atribut {0} mora biti u opsegu od {1} do {2} u koracima od { msgid "Value of Goods" msgstr "Vrednost robe" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Vrednost nove kapitalizovane imovine" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Vrednost nove nabavke" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Vrednost otpisane imovine" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Vrednost prodate imovine" @@ -60277,7 +60315,7 @@ msgstr "Naziv dokumenta" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60305,7 +60343,7 @@ msgstr "Naziv dokumenta" msgid "Voucher No" msgstr "Dokument broj" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Broj dokumenta je obavezan" @@ -60317,7 +60355,7 @@ msgstr "Količina u dokumentu" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Podvrsta dokumenta" @@ -60349,7 +60387,7 @@ msgstr "Podvrsta dokumenta" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60556,7 +60594,7 @@ msgstr "Skladište je obavezno" msgid "Warehouse is required to get producible FG Items" msgstr "Skladište je obavezno za dobijanje proizvodivih gotovih proizvoda" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Skladište nije pronađeno za račun {0}" @@ -60574,16 +60612,16 @@ msgstr "Skladište i vrednost salda stavki po skladištima" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Skladište {0} ne može biti obrisano jer postoji količina za stavku {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Skladište {0} ne pripada kompaniji {1}" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Skladište {0} ne pripada kompaniji {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "Skladište {0} ne postoji" @@ -60704,7 +60742,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Upozorenje - Red {0}: Fakturisani sati su veći od stvarnih sati" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "Upozorenje na negativno stanje zaliha" @@ -60724,7 +60762,7 @@ msgstr "Upozorenje: Još jedan {0} # {1} postoji u odnosu na unos zaliha {2}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Upozorenje: Zatraženi materijal je manji od minimalne količine za porudžbinu" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "Upozorenje: Količina premašuje maksimalnu količinu koja se može proizvesti na osnovu količine primljenih sirovina kroz nalog za prijem iz podugovaranja {0}." @@ -60878,10 +60916,6 @@ msgstr "Grupa stavki veb-sajta" msgid "Website Specifications" msgstr "Specifikacije veb-sajta" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61027,7 +61061,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "Kada u unosu zaliha za prepakovanje postoji više gotovih proizvoda ({0}), osnovna cena za sve gotove proizvode mora biti postavljena ručno. Da biste ručno postavili cenu, omogućite opciju 'Postavi osnovnu cenu ručno' u odgovarajućem redu gotovog proizvoda." @@ -61203,17 +61237,17 @@ msgstr "Nedovršena proizvodnja" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61252,7 +61286,7 @@ msgstr "Utrošeni materijali radnog naloga" msgid "Work Order Item" msgstr "Stavka radnog naloga" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "Neusklađenost radnog naloga" @@ -61293,20 +61327,20 @@ msgstr "Rezime radnog naloga" msgid "Work Order Summary Report" msgstr "Izveštaj rezimea radnih naloga" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Radni nalog ne može biti kreiran iz sledećeg razloga:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Radni nalog se ne može kreirati iz stavke šablona" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "Radni nalog je {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61327,7 +61361,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Radni nalozi" @@ -61352,7 +61386,7 @@ msgstr "Nedovršena proizvodnja" msgid "Work-in-Progress Warehouse" msgstr "Skladište za radove u toku" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Skladište za radove u toku je obavezno pre nego što podnesete" @@ -61405,7 +61439,7 @@ msgstr "Radni sati" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61637,14 +61671,6 @@ msgstr "Naziv fiskalne godine" msgid "Year Start Date" msgstr "Datum početka godine" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61659,8 +61685,8 @@ msgid "You are importing data for the code list:" msgstr "Uvozite podatke za listu šifara:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Niste ovlašćeni da ažurirate prema uslovima postavljenim u radnom toku {}." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61679,8 +61705,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "Uzimate više nego što je potrebno za stavku {0}. Proverite da li je kreirana još neka lista za odabir za prodajnu porudžbinu {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "Možete ručno dodati originalnu fakturu {} da biste nastavili." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61690,19 +61716,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "Takođe možete kopirati i zalepiti ovaj link u Vašem internet pretraživaču" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Takođe možete postaviti podrazumevani račun za građevinske radove u toku u kompaniji {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Možete promeniti matični račun u račun bilansa stanja ili izabrati drugi račun." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "Možete konfigurisati podrazumevane račune amortizacije u podešavanjima kompanije ili uneti potrebne račune u sledećim redovima:

                    " @@ -61724,8 +61746,8 @@ msgid "You can only select one mode of payment as default" msgstr "Možete izabrati samo jedan način plaćanja kao podrazumevani" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Možete iskoristiti do {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61743,14 +61765,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "Možete koristiti {0} za usklađivanje sa {1} kasnije." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "Ne možete izvršiti nikakve izmene na radnoj kartici jer je radni nalog zatvoren." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "Ne možete obraditi broj serije {0} jer je već korišćen u paketu serije i šarže {1}. {2} ukoliko želite da ponovo koristite isti serijski broj više puta, omogućite opciju 'Dozvoli da postojeći broj serije bude ponovo proizveden/primljen' u {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "Ne možete iskoristiti poene lojalnosti u vrednosti većoj od ukupnog iznosa." @@ -61759,17 +61773,17 @@ msgstr "Ne možete iskoristiti poene lojalnosti u vrednosti većoj od ukupnog iz msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "Ne možete promeniti cenu ukoliko je sastavnica navedena za bilo koju stavku." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "Ne možete kreirati {0} unutar zatvorenog računovodstvenog perioda {1}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Ne možete kreirati ili otkazati nikakve računovodstvene unose u zatvorenom računovodstvenom periodu {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "Ne možete kreirati/izmeniti računovodstvene unose do ovog datuma." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61780,32 +61794,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "Ne možete obrisati vrstu projekta 'Eksterni'" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Ne možete uređivati korenski čvor." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "Ne možete omogućiti oba podešavanja '{0}' i '{1}'." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "Nije moguće poslati sledeće {0} jer su ili isporučeni, neaktivni ili se nalaze u drugom skladištu." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "Ne možete iskoristiti više od {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "Ne možete ponovo postaviti vrednovanje stavke pre {}" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "Ne možete ponovo pokrenuti pretplatu koja nije otkazana." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Ne možete poslati praznu narudžbinu." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61819,6 +61841,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "Ne možete {0} ovaj dokument jer postoji drugi unos za periodično zatvaranje {1} posle {2}" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61829,8 +61855,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "Nemate dozvolu da {} stavke u {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61856,11 +61882,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "Nemate dozvolu da ažurirate ovaj dokument. Molimo Vas da se obratite sistem menadžeru." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Imali ste {} grešaka prilikom kreiranja početnih faktura. Pogledajte {} za više detalja" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Već ste izabrali stavke iz {0} {1}" @@ -61877,8 +61903,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "Omogućili ste {0} i {1} u {2}. Ovo može dovesti do toga da se cene iz podrazumevanog cenovnika ubacuju u cenovnik transakcije." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "Uneli ste duplu otpremnicu u redu" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61892,19 +61918,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Morate omogućiti automatsko ponovno naručivanje u podešavanjima zaliha da biste održali nivoe ponovnog naručivanja." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "Imate nesačuvane promene. Da li želite da sačuvate fakturu?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Morate da izaberete kupca pre nego što dodate stavku." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "Morate otkazati unos zatvaranja maloprodaje {} da biste mogli da otkažete ovaj dokument." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "Izabrali ste grupu računa {1} kao {2} račun u redu {0}. Molimo Vas da izaberete jedan račun." @@ -61956,6 +61982,10 @@ msgstr "Poštanski broj" msgid "Zero Balance" msgstr "Nulto stanje" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "Nulta stopa" @@ -61986,7 +62016,7 @@ msgstr "[Important] [ERPNext] Greške automatskog ponovnog naručivanja" msgid "`Allow Negative rates for Items`" msgstr "`Dozvoli negativne cene za artikle`" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "posle" @@ -62006,7 +62036,7 @@ msgstr "kao naslov" msgid "as a percentage of finished item quantity" msgstr "kao procenat količine finalne stavke" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "na dan {0}" @@ -62022,10 +62052,6 @@ msgstr "zasnovano_na" msgid "by {}" msgstr "od {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "ne može biti veće od 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62080,8 +62106,8 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "naziv polja" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62161,14 +62187,10 @@ msgstr "od 5" msgid "paid to" msgstr "plaćeno prema" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "aplikacija za plaćanje nije instalirana. Instalirajte je sa {0} ili {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "aplikacija za plaćanje nije instalirana. Instalirajte je sa {0} ili {1}" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62182,7 +62204,7 @@ msgstr "aplikacija za plaćanje nije instalirana. Instalirajte je sa {0} ili {1} msgid "per hour" msgstr "po času" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "obavljajući bilo koju od dole navedenih:" @@ -62258,8 +62280,8 @@ msgstr "prodato" msgid "subscription is already cancelled." msgstr "pretplata je već otkazana." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "target_ref_field" @@ -62322,10 +62344,6 @@ msgstr "putem popravke imovine" msgid "via BOM Update Tool" msgstr "putem alata za ažuriranje sastavnice" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "morate izabrati račun nedovršenih kapitalnih radova u tabeli računa" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' je onemogućen" @@ -62338,7 +62356,7 @@ msgstr "{0} '{1}' nije u fiskalnoj godini {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) ne može biti veći od planirane količine ({2}) u radnom nalogu {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1}ima podnetu imovinu. Uklonite stavku {2} iz tabele da biste nastavili." @@ -62358,7 +62376,7 @@ msgstr "Budžet {0} za račun {1} u vezi sa {2} {3} iznosi {4}. Već je prekora msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "Budžet {0} za račun {1} u vezi sa {2} {3} iznosi {4}. Biće prekoračen za {5}." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} kupona iskorišćeno za {1}. Dozvoljena količina je iskorišćena" @@ -62366,11 +62384,6 @@ msgstr "{0} kupona iskorišćeno za {1}. Dozvoljena količina je iskorišćena" msgid "{0} Digest" msgstr "{0} Izveštaj" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} broj {1} već korišćen u {2} {3}" @@ -62452,10 +62465,18 @@ msgstr "{0} može bit ili {1} ili {2}." msgid "{0} can not be negative" msgstr "{0} ne može biti negativno" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} se ne može menjati dok su unosi početnog stanja otvoreni." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} ne može biti korišćeno kao glavni troškovni centar jer je već korišćen kao zavisni troškovni centar u raspodeli troškovnih centara {1}" @@ -62471,7 +62492,7 @@ msgstr "{0} ne može biti nula" msgid "{0} created" msgstr "{0} kreirano" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "Kreiranje {0} za sledeće zapise će biti preskočeno." @@ -62513,7 +62534,7 @@ msgstr "{0} za {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} ima omogućenu raspodelu zasnovanu na uslovima plaćanja. Izaberite uslov plaćanja za red #{1} u odeljku reference plaćanja" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "{0} je izmenjena tako što ste je povukli. Molimo Vas da je povučete ponovo." @@ -62521,6 +62542,10 @@ msgstr "{0} je izmenjena tako što ste je povukli. Molimo Vas da je povučete po msgid "{0} has been submitted successfully" msgstr "{0} je uspešno podnet" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} časova" @@ -62529,7 +62554,11 @@ msgstr "{0} časova" msgid "{0} in row {1}" msgstr "{0} u redu {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} je zavisna tabela i biće automatski obrisana zajedno sa matičnim zapisom" @@ -62543,7 +62572,7 @@ msgstr "{0} je obavezna računovodstvena dimenzija.
                    Molimo Vas da postavite msgid "{0} is added multiple times on rows: {1}" msgstr "{0} je dodat više puta u redovima: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} je već pokrenut za {1}" @@ -62551,7 +62580,7 @@ msgstr "{0} je već pokrenut za {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} je blokiran, samim tim ova transakcija ne može biti nastavljena" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} je u nacrtu. Podnesite ga pre kreiranja imovine." @@ -62564,11 +62593,11 @@ msgstr "{0} je obavezno za stavku {1}" msgid "{0} is mandatory for account {1}" msgstr "{0} je obavezno za račun {1}" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} je obavezno. Možda zapis o konverziji valute nije kreiran za {1} u {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} je obavezno. Možda zapis o konverziji valute nije kreiran za {1} u {2}." @@ -62576,7 +62605,7 @@ msgstr "{0} je obavezno. Možda zapis o konverziji valute nije kreiran za {1} u msgid "{0} is not a CSV file." msgstr "{0} nije CSV fajl." -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} nije tekući račun kompanije" @@ -62592,7 +62621,7 @@ msgstr "{0} nije stavka na zalihama" msgid "{0} is not a valid Accounting Dimension." msgstr "{0} nije važeća računovodstvena dimenzija." -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} nije validna vrednost za atribut {1} za stavku {2}." @@ -62608,17 +62637,17 @@ msgstr "{0} nije dodat u tabelu" msgid "{0} is not enabled in {1}" msgstr "{0} nije omogućen u {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} nije pokrenut. Ne može se pokrenuti događaj za ovaj dokument" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} nije podrazumevani dobavljač ni za jednu stavku." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} je na čekanju do {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62668,7 +62697,7 @@ msgstr "Parametar {0} je nevažeći" msgid "{0} payment entries can not be filtered by {1}" msgstr "Unosi plaćanja {0} ne mogu se filtrirati prema {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "Količina {0} za stavku {1} se prima u skladište {2} sa kapacitetom {3}." @@ -62681,7 +62710,7 @@ msgstr "{0} do {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} jedinica je rezervisano za stavku {1} u skladištu {2}, molimo Vas da poništite rezervisanje u {3} da uskladite zalihe." @@ -62697,16 +62726,16 @@ msgstr "{0} jedinica stavke {1} nije dostupno ni u jednom skladištu. Postoje dr msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} jedinica od {1} je neophodno u {2} sa dimenzijom inventara: {3} na {4} {5} za {6} da bi se transakcija završila." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} jedinica {1} je potrebno u {2} na {3} {4} za {5} kako bi se ova transakcija završila." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} jedinica {1} je potrebno u {2} na {3} {4} kako bi se ova transakcija završila." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} jedinica {1} je potrebno u {2} kako bi se ova transakcija završila." @@ -62714,7 +62743,7 @@ msgstr "{0} jedinica {1} je potrebno u {2} kako bi se ova transakcija završila. msgid "{0} until {1}" msgstr "{0} do {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} važećih serijskih brojeva za stavku {1}" @@ -62722,7 +62751,7 @@ msgstr "{0} važećih serijskih brojeva za stavku {1}" msgid "{0} variants created." msgstr "{0} varijanti je kreirano." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "Prikaz {0} trenutno nije podržan u prilagođenom finansijskom izveštaju." @@ -62756,7 +62785,7 @@ msgstr "{0} {1} kreirano" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} ne postoji" @@ -62790,12 +62819,21 @@ msgstr "{0} {1} je raspoređeno dva puta u ovoj bankarskoj transakciji" msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} je već povezano sa zajedničkom šifrom {2}." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} je povezano sa {2}, ali je račun stranke {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} je otkazano ili zatvoreno" @@ -62827,6 +62865,10 @@ msgstr "{0} {1} je u potpunosti fakturisano" msgid "{0} {1} is not active" msgstr "{0} {1} nije aktivno" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} nije povezano sa {2} {3}" @@ -62932,27 +62974,23 @@ msgstr "{0}% od ukupne vrednosti fakture biće odobren popust." msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{1} za {0} ne može biti nakon očekivanog datuma završetka za {2}" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, završite operaciju {1} pre operacije {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: Zavisna tabela (automatski se briše sa matičnim zapisom)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Nije pronađeno" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: Zaštićeni DocType" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: Virtuelni DocType (nema tabelu u bazi podataka)" @@ -62968,7 +63006,7 @@ msgstr "{0}: {1} ne postoji" msgid "{0}: {1} is a group account." msgstr "{0}: {1} je grupni račun." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} mora biti manje od {2}" @@ -62980,7 +63018,7 @@ msgstr "{count} imovine kreirane za {item_code}" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} je otkazano ili zatvoreno." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "Veličina uzorka za {item_name} ({sample_size}) ne može biti veća od prihvaćene količine ({accepted_quantity})" @@ -62992,32 +63030,7 @@ msgstr "Status {ref_doctype} {ref_name} je {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} ne može biti otkazano jer su zarađeni poeni lojalnosti iskorišćeni. Prvo otkažite {} broj {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} ima podnetu povezanu imovinu. Morate otkazati imovinu da biste kreirali povraćaj nabavke ." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} fakture" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} je zavisna kompanija." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} je već povezan sa drugim {}" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} je već povezan sa {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} ne utiče na tekući račun {}" - diff --git a/erpnext/locale/sv.po b/erpnext/locale/sv.po index 59bb86af9fe..f870d7ad9ca 100644 --- a/erpnext/locale/sv.po +++ b/erpnext/locale/sv.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-24 19:23\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -18,20 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: sv_SE\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "\n" -"\t\t\tParti {0} av artikel {1} har negativt lager på lager {2}{3}.\n" -"\t\t\tLägg till lager kvantitet på {4} för att gå vidare med denna post.\n" -"\t\t\tOm det inte är möjligt att göra justering post, aktivera \"Tillåt Negativt Lager för Parti\" för Parti {0} eller i Lager Inställningar för att fortsätta.\n" -"\t\t\tVid aktivering av denna inställning kan det dock leda till negativt lager i system.\n" -"\t\t\tSe till att lager nivåer justeras så snart som möjligt för att bibehålla korrekt Värdering Pris." - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -116,11 +102,11 @@ msgstr "\"Är Fast Tillgång\" kan inte ångras då Tillgång Register finns mot msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" för \"SN-01\" till \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# I Lager" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Erfordrade Artiklar" @@ -282,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "\"Tillåt flera Försäljning Order mot Kund Inköp Order\"" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "\"Baserad på\" och \"Gruppera efter\" kan inte vara samma" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -308,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Från Datum' måste vara efter 'Till Datum'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Har Serie Nummer' kan inte vara 'Ja' för ej Lager Artikel" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "\"Kontroll erfordras före Leverans\" har inaktiverats för artikel {0}, inget behov av att skapa Kvalitet Kontroll" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "\"Kontroll erfordras före Inköp\" har inaktiverats för artikel {0}, inget behov av att skapa Kvalitet Kontroll" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Öppning'" @@ -331,13 +317,13 @@ msgstr "'Öppning'" msgid "'To Date' is required" msgstr "'Till Datum' erfordras" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "\"Till Förpackning Nummer.\" får inte vara lägre än \"Från Förpackning Nummer.\"" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "\"Uppdatera Lager\" kan inte väljas eftersom artiklar inte är levererade via {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -622,7 +608,7 @@ msgstr "90+ Dagar" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "Kan inte skapa tillgång.

                    Du försöker skapa {0} tillgång(ar) från {2} {3}.
                    Men endast {1} artikel(ar) köptes och {4} tillgång(ar) finns redan mot {5}." @@ -831,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Verifikat erfordras för rad(ar): {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Kan inte överfakturera för följande Artiklar:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Följande {0} tillhör inte {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1061,9 +1047,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Kund Grupp finns redan med samma namn.Ändra Kund Namn eller ändra namn på Kund Grupp" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1073,9 +1059,9 @@ msgstr "Helg Lista kan läggas till för att utesluta dessa dagar för Arbetssta msgid "A Lead requires either a person's name or an organization's name" msgstr "Potentiell Kund kräver antingen person namn eller bolag namn" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Packsedel kan endast skapas för utkast till Försäljning Följesedel." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1091,7 +1077,7 @@ msgstr "Prislista är samling av artikel priser som antingen säljs, köpes elle msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Artikel eller Service som köpes, säljes eller finns på lager." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Avstämning jobb {0} körs för samma filter. Kan inte stämma av nu" @@ -1124,7 +1110,7 @@ msgstr "Förare måste anges för att godkänna." msgid "A logical Warehouse against which stock entries are made." msgstr "Logisk Lager mot vilken lager poster skapas" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "Namngivning konflikt uppstod när serienummer skapades. Ändra namngivning serie för artikel {0}." @@ -1300,7 +1286,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Accepterad Kvantitet i Lager Enhet" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Godkänd Kvantitet" @@ -1331,12 +1317,16 @@ msgstr "Åtkomst Nyckel" msgid "Access Key is required for Service Provider: {0}" msgstr "Åtkomst Nyckel erfordras för Tjänsteleverantör: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "Enligt CEFACT/ICG/2010/IC013 eller CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "Enligt stycklista {0} saknas artikel '{1}' i lager post." @@ -1589,7 +1579,7 @@ msgstr "Konto erfordras att hämta Betalning Poster" msgid "Account is required" msgstr "Konto erfordras" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Konto ej funnen" @@ -1719,11 +1709,11 @@ msgstr "Konto: {0} är Kapitalarbete pågår och kan inte uppdateras av J msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Konto: {0} kan endast uppdateras via Lager Transaktioner" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Konto: {0} är inte tillåtet enligt Betalning Post" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Konto: {0} med valuta: kan inte väljas {1}" @@ -2002,8 +1992,8 @@ msgstr "Bokföring Dimension Filter" msgid "Accounting Entries" msgstr "Bokföring Poster" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Bokföring Post för Tillgång" @@ -2028,8 +2018,8 @@ msgstr "Bokföring Post för Service" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2077,7 +2067,11 @@ msgstr "Bokföring Introduktion" msgid "Accounting Period" msgstr "Bokföring Period" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Bokföring Period överlappar med {0}" @@ -2275,8 +2269,8 @@ msgstr "Ackumulerad Avskrivning Konto" msgid "Accumulated Depreciation Amount" msgstr "Ackumulerad Avskrivning Belopp" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Ackumulerad Avskrivning per " @@ -2504,7 +2498,7 @@ msgstr "Faktiskt Saldo Kvantitet" msgid "Actual Batch Quantity" msgstr "Faktiskt Parti Kvantitet" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Faktisk Kostnad" @@ -2514,7 +2508,7 @@ msgstr "Faktisk Kostnad" msgid "Actual Date" msgstr "Faktisk Datum" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2664,8 +2658,8 @@ msgstr "Faktisk Tid i Timmar (via Tidrapport)" msgid "Actual qty in stock" msgstr "Faktisk Kvantitet på Lager" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Faktisk Moms/Avgift kan inte inkluderas i Artikel Pris på rad {0}" @@ -2830,10 +2824,6 @@ msgstr "Lägg till Serie/Parti Nummer" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Lägg till Serie/Parti Nummer (Avvisad Kvantitet)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "Lägg till Namngivning Serie Prefix" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Lägg till Lager" @@ -2932,13 +2922,13 @@ msgstr "Lagt till Av" msgid "Added On" msgstr "Tillagd" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Lade till Leverantör Roll till Användare {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Lade till {1} roll till användare {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3080,7 +3070,7 @@ msgstr "Extra Rabatt Belopp" msgid "Additional Discount Amount (Company Currency)" msgstr "Extra Rabatt Belopp (Bolag Valuta)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "Extra Rabatt Blopp ({discount_amount}) kan inte överstiga summan före sådan rabatt ({total_before_discount})" @@ -3199,16 +3189,8 @@ msgid "Additional Transferred Qty" msgstr "Extra Överförd Kvantitet" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "Extra Överförd Kvantitet {0}\n" -"\t\t\t\t\tkan inte vara högre än {1}.\n" -"\t\t\t\t\tFör att åtgärda detta, öka procentuellt värde\n" -"\t\t\t\t\tunder fält \"Överför Extra Råmaterial till Pågående Arbete Lager\"\n" -"\t\t\t\t\ti Produktion Inställningar." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3472,7 +3454,7 @@ msgstr "Förskott Verifikat Typ" msgid "Advance amount" msgstr "Förskott Belopp" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Förskott Belopp kan inte vara högre än {0} {1}" @@ -3541,7 +3523,7 @@ msgstr "Mot " #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Mot Konto" @@ -3661,7 +3643,7 @@ msgstr "Mot Leverantör Faktura {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Mot Verifikat" @@ -3685,7 +3667,7 @@ msgstr "Mot Verifikat Nummer" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Mot Verifikat Typ" @@ -3799,6 +3781,13 @@ msgstr "Flygbolag" msgid "Algorithm" msgstr "Algoritm" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3975,7 +3964,7 @@ msgstr "Alla fakturor och order för denna kund kommer att skapas i denna valuta msgid "All items are already requested" msgstr "Alla artiklar är redan efterfrågade" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Alla Artiklar är redan Fakturerade / Återlämnade" @@ -3987,7 +3976,7 @@ msgstr "Alla Artiklar är redan mottagna" msgid "All items have already been transferred for this Work Order." msgstr "Alla Artikel har redan överförts för denna Arbetsorder." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Alla Artiklar i detta dokument har redan länkad Kvalitet Kontroll." @@ -4006,16 +3995,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Alla Kommentar och E-post meddelande kommer att kopieras från ett dokument till ett annat nyskapad dokument (Potentiell Kund -> Möjlighet -> Försäljning Offert) genom hela Säljstöd process." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Alla artiklar är redan returnerade." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Alla nödvändiga artiklar (råmaterial) kommer att hämtas från stycklista och läggs till denna tabell. Här kan du också ändra hämtlager för valfri artikel. Och under produktion kan du spåra överförd råmaterial från denna tabell." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Alla Artiklar är redan Fakturerade / Återlämnade" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4038,7 +4027,7 @@ msgstr "Tilldela Förskott Automatiskt (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "Fördela Hela Belopp till Lager Artiklar" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Tilldela Betalning Belopp" @@ -4048,7 +4037,7 @@ msgstr "Tilldela Betalning Belopp" msgid "Allocate Payment Based On Payment Terms" msgstr "Tilldela Betalning baserat på Betalning Villkor" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Tilldela Betalning Begäran" @@ -4078,7 +4067,7 @@ msgstr "Tilldelad" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4161,8 +4150,8 @@ msgid "Allow Alternative Item" msgstr "Tillåt Alternativ Artikel" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Tillåt Alternativ Artikel måste vara vald för Artikel {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4269,7 +4258,7 @@ msgstr "Tillåt offert med noll kvantitet" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Tillåt Namnändring på Artikel Egenskaper" @@ -4550,14 +4539,16 @@ msgstr "Tillåtna Artiklar" msgid "Allowed To Transact With" msgstr "Tillåtet att skapa Transaktioner med" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "Tillåtna primära roller är 'Kund' och 'Leverantör'. Välj endast en av dessa roller." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "Tillåtna specialtecken är '/' och '-'" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4590,10 +4581,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "Tillåter användare att godkänna Leverantör Offerter med noll kvantitet. Användbart när priserna är fasta men kvantiteter inte är. T. ex. Pris Avtal." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "Redan Importerad" @@ -4601,10 +4592,6 @@ msgstr "Redan Importerad" msgid "Already Picked" msgstr "Redan Plockad" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Det finns redan post för Artikel {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Standard i Kassa Profil {0} för Användare {1} redan angiven. Inaktivera Standard i Kassa Profil." @@ -4620,12 +4607,12 @@ msgstr "Alternativ Enhet" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Alternativ Artikel" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "Alternativ Artikel" @@ -4830,7 +4817,7 @@ msgstr "Fråga Alltid" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5056,12 +5043,12 @@ msgstr "Artikel grupp är ett sätt att klassificera artiklar baserat på typer. msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "E-post meddelande kommer att skickas till användare med roll ”Inköp Ansvarig” när automatisk Material Begäran skapas." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Fel har uppstått vid ombokning av artikel värdering via {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Fel uppstod under uppdatering process" @@ -5275,7 +5262,7 @@ msgstr "Använd Rabatt Kod" msgid "Applied on each reading." msgstr "Tillämpas vid varje läsning." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Tillämpad Läggundan Regler" @@ -5452,10 +5439,6 @@ msgstr "Tid Bokning Lediga Tider" msgid "Appointment Confirmation" msgstr "Tid Bokning Bekräftelse" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Tid Bokning Skapad" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5481,6 +5464,10 @@ msgstr "Tid Bokning är Inaktiverad för denna Webbplats" msgid "Appointment With" msgstr "Tid Bokning med" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Tid Bokning Skapad, men ingen Potentiell Kund hittades. Kontrollera e-post meddelande för att bekräfta" @@ -5522,6 +5509,15 @@ msgstr "Är du säker på att du vill avbryta detta {} {}?" msgid "Are you sure you want to clear all demo data?" msgstr "Är du säker på att du vill ta bort alla demodata?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "Är du säker på att du vill ta bort detta Artikel?" @@ -5604,18 +5600,18 @@ msgstr "Eftersom fält {0} är aktiverad ska värdet för fält {1} vara mer än msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Eftersom det finns befintliga godkäAda transaktioner mot artikel {0} kan man inte ändra värdet på {1}." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "Eftersom det finns reserverat lager kan du inte inaktivera {0}." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Eftersom det finns tillräckligt med Underenhet Artiklar erfordras inte Arbetsorder för Lager {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Eftersom det finns tillräckligt med Råmaterial erfordras inte Material Begäran för Lager {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5654,7 +5650,7 @@ msgstr "Montering Artiklar" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5726,7 +5722,7 @@ msgstr "Tillgång Aktivering Lager Post" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5892,7 +5888,7 @@ msgstr "Tillgång Förändring Artikel" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6024,7 +6020,7 @@ msgstr "Tillgång Värde" msgid "Asset cancelled" msgstr "Tillgång Annullerad" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Tillgång kan inte annulleras, eftersom det redan är {0}" @@ -6040,7 +6036,7 @@ msgstr "Tillgång aktiverad efter att Tillgång Aktivering {0} godkändes" msgid "Asset created" msgstr "Tillgång Skapad" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Tillgång skapad efter att ha delats från Tillgång {0}" @@ -6093,7 +6089,7 @@ msgstr "Tillgång Godkänd" msgid "Asset transferred to Location {0}" msgstr "Tillgång överförd till Plats {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Tillgång uppdaterad efter att ha delats upp i Tillgång {0}" @@ -6171,7 +6167,7 @@ msgstr "Tillgångens Värde Justerat efter godkänade av Tillgång Värde Juster #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6192,7 +6188,7 @@ msgstr "Tillgångar har inte skapats för {item_code}. Skapa Tillgång manuellt. msgid "Assets {assets_link} created for {item_code}" msgstr "Tillgångar {assets_link} skapade för {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Tilldela jobb till Personal" @@ -6202,6 +6198,11 @@ msgstr "Tilldela jobb till Personal" msgid "Assign to Name" msgstr "Tilldela till Namn" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6220,19 +6221,23 @@ msgstr "Rad #{0}: Plockad kvantitet {1} för artikel {2} är högre än som är msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "På rad #{0}: Plockad kvantitet {1} för artikel {2} är större än tillgänglig kvantitet {3} i lager {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "På Rad {0}: I Serie och Parti Paket {1} måste dokument status vara 1 och inte 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "Minst ett konto med Valutaväxling Resultat erfordras" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "Minst en Tillgång måste väljas." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "Minst en Faktura måste väljas" @@ -6253,6 +6258,10 @@ msgstr "Åtminstone en av Tillämpliga Moduler ska väljas" msgid "At least one of the Selling or Buying must be selected" msgstr "Minst en av Försäljning eller Inköp måste väljas" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "Minst en råmaterial artikel måste finnas i lager post för typ {0}" @@ -6273,7 +6282,7 @@ msgstr "Rad # {0}: sekvens nummer {1} får inte vara lägre än föregående rad msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "På rad #{0}: du har valt Differens Konto {1}..." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "Rad {0}: Parti Nummer erfordras för Artikel {1}" @@ -6281,26 +6290,22 @@ msgstr "Rad {0}: Parti Nummer erfordras för Artikel {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "Rad {0}: Överordnad rad nummer kan inte anges för artikel {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "Rad {0}: Kvantitet erfordras för Artikel {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "Rad {0}: Serie Nummer erfordras för Artikel {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "Rad {0}: Serie och Parti Paket {1} år redan skapad. Ta bort värde från serie nummer eller parti nummer fält." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "Rad {0}: ange överordnad rad nummer för artikel {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "Minst ett Råmaterial för Färdig Artikel {0} ska tillhandahållas av kund." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6512,7 +6517,7 @@ msgstr "Automatisk Avstämning av Betalningar är inaktiverad. Aktivera genom {0 msgid "Auto Repeat Detail" msgstr "Återkommande Detaljer" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "Automatiska Moms Inställningar Fel" @@ -6573,7 +6578,7 @@ msgid "Auto reconcile Payments" msgstr "Automatisk Betalning Avstämning" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Återkommande Dokument uppdaterad" @@ -6698,7 +6703,7 @@ msgstr "Tillgängligt för Användning Datum" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6794,7 +6799,7 @@ msgstr "Tillgängligt för Användning Datum erfordras" msgid "Available {0}" msgstr "Tillgänglig {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Tillgängligt för Användning Datum ska vara senare än Inköp Datum" @@ -6912,7 +6917,7 @@ msgstr "Lager Kvantitet" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6931,8 +6936,8 @@ msgid "BOM 1" msgstr "Stycklista 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "Stycklista 1 {0} och Stycklista 2 {1} ska inte vara lika" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6946,7 +6951,7 @@ msgstr "Stycklista 2" msgid "BOM Comparison Tool" msgstr "Stycklista Jämförelse Verktyg" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "Stycklista Komponent" @@ -7077,7 +7082,7 @@ msgstr "Stycklista Åtgärd" msgid "BOM Operations Time" msgstr "Stycklista Åtgärd Tid" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "Stycklista" @@ -7098,7 +7103,7 @@ msgstr "Stycklista Sökning" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "Stycklista Sekundär Artikel" @@ -7150,10 +7155,6 @@ msgstr "Stycklista Uppdatering Verktyg Logg med jobb status upprätthållen" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Stycklista Uppdatering pågår. Vänta tills {0} är klar." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "Stycklista Uppdatering i kö och kan ta några minuter. Kontrollera {0} för framsteg." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7192,15 +7193,19 @@ msgstr "Stycklista Rekursion: {0} kan inte vara underordnad till {1}" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Stycklista Rekursion: {1} kan inte vara överordnad eller underordnad till {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "Stycklista {0} tillhör inte Artikel {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "Stycklista {0} måste vara aktiv" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "Stycklista {0} måste godkännas" @@ -7281,7 +7286,7 @@ msgstr "Saldo" msgid "Balance (Dr - Cr)" msgstr "Saldo (Dr - Cr)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Saldo ({0})" @@ -7351,6 +7356,10 @@ msgstr "Balans Rapport Stängning Saldo" msgid "Balance Sheet Summary" msgstr "Balans Rapport Översikt" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Lager Saldo Kvantitet" @@ -7411,7 +7420,7 @@ msgstr "Saldon enligt bankutdrag före {0}" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7511,8 +7520,8 @@ msgid "Bank Account Type" msgstr "Bank Konto Typ" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "Bank Konto {} i Bank Transaktion {} stämmer inte överens med Bank Konto {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7756,7 +7765,7 @@ msgstr "Bank Transaktion {0} uppdaterad" msgid "Bank Transactions" msgstr "Bank Transaktioner" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Bank Konto kan inte namnges som {0}" @@ -7768,7 +7777,7 @@ msgstr "Bankkonto kredit för uttag" msgid "Bank account debit for deposit" msgstr "Bankkonto debet för insättning" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Bank Konto {0} finns redan och kunde inte skapas igen" @@ -7780,7 +7789,7 @@ msgstr "Bank Konto Tillagda" msgid "Bank statement imported." msgstr "Bank Kontoutdrag importerad." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Bank Transaktioner fel vid skapande" @@ -8056,8 +8065,8 @@ msgstr "Parti Artikel Inställningar" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8088,15 +8097,15 @@ msgstr "Parti Artikel Inställningar" msgid "Batch No" msgstr "Parti Nummer" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Parti Nummer erfordras" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Parti Nummer {0} finns inte" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Parti Nummer {0} är länkat till Artikel {1} som har serie nummer. Skanna serie nummer istället." @@ -8104,6 +8113,10 @@ msgstr "Parti Nummer {0} är länkat till Artikel {1} som har serie nummer. Skan msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Parti nr {0} finns inte i {1} {2}, därför kan du inte returnera det mot {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8169,9 +8182,9 @@ msgstr "Parti Enhet" msgid "Batch and Serial No" msgstr "Parti och Serie Nummer" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Parti är inte skapad för Artikel {} eftersom den inte har Parti Nummer." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8283,7 +8296,7 @@ msgstr "Faktura för avvisad kvantitet i Inköp Faktura" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8758,8 +8771,8 @@ msgid "Booked Fixed Asset" msgstr "Bokförd Fast Tillgång" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "Bokföring är låst till {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8986,8 +8999,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Budget kan inte tilldelas mot Grupp Konto {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Budget kan inte tilldelas mot {0}, eftersom det inte är Intäkt eller Kostnad Konto" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -9004,7 +9017,7 @@ msgstr "Buffert Tid" msgid "Buffered Cursor" msgstr "Buffrad Kursor" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Skapa Alla?" @@ -9012,7 +9025,7 @@ msgstr "Skapa Alla?" msgid "Build Tree" msgstr "Build Tree" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Producerbart Kvantitet" @@ -9339,6 +9352,10 @@ msgstr "Beräknad Bank Konto Utdrag Saldo" msgid "Calculated Discount Mismatch" msgstr "Beräknad Rabatt Avvikelse" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9510,7 +9527,7 @@ msgstr "Kampanj {0} hittades inte" msgid "Can be approved by {0}" msgstr "Kan godkännas av {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "Kan inte stänga Arbetsorder, eftersom {0} Jobbkort har Pågående Arbete status." @@ -9539,21 +9556,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Kan inte filtrera baserat på Verifikat nummer om grupperad efter Verifikat" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Kan bara skapa betalning mot ofakturerad {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Kan hänvisa till rad endast om avgiften är \"På Föregående Rad Belopp\" eller \"Föregående Rad Totalt\"" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "Kan inte ändra värdering sätt, eftersom det finns transaktioner mot vissa artiklar som inte har egen värdering sätt" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Annullera Material Besök {0} före annullering av Garanti Ärende" @@ -9582,7 +9602,7 @@ msgstr "Avbryt vid Period Slut" msgid "Cancelation Date" msgstr "Annullering Datum" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "Avbrutet Jobbkort kan inte behandlas." @@ -9590,11 +9610,6 @@ msgstr "Avbrutet Jobbkort kan inte behandlas." msgid "Cannot Assign Cashier" msgstr "Kan inte tilldela Kassör" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Kan inte Beräkna Ankomst Tid eftersom Förare Adress saknas." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "Kan inte ändra Lager Konto Inställningar" @@ -9609,10 +9624,6 @@ msgstr "Kan inte Skapa Retur" msgid "Cannot Merge" msgstr "Kan inte Slå Samman" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Kan inte optimera rutt eftersom Start Adress saknas." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Kan inte Avlösa Personal" @@ -9637,6 +9648,11 @@ msgstr "Kan inte tillämpa TDS mot flera parter i en post" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Kan inte vara Fast Tillgång artikel när Lager Register är skapad." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "Kan inte avbryta Tillgång Avskrivning Schema {0} eftersom det finns utkast i journal post {1}." @@ -9646,14 +9662,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "Kan inte annullera Kassa Stängning Post" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "Kan inte annullera lager reservation post {0}, eftersom den har använts i arbetsorder {1}. Annullera arbetsorder först eller annullera reservation" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "Kan inte avbryta eftersom behandling av annullerade dokument väntar." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Kan inte annullera eftersom godkänd Lager Post {0} finns redan" @@ -9661,7 +9677,7 @@ msgstr "Kan inte annullera eftersom godkänd Lager Post {0} finns redan" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "Kan inte annullera transaktion. Ombokning av artikel värdering vid godkännande är inte klar ännu." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "Kan inte avbryta denna Produktion Lager Post eftersom kvantitet av Producerade Färdiga Artiklar kan inte vara mindre än kvantitet levererad i länkad Underleverantör Order." @@ -9673,7 +9689,7 @@ msgstr "Det går inte att annullera detta dokument eftersom det är länkat till msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Kan inte annullera detta dokument eftersom det är länkad med godkänd tillgång {asset_link}. Annullera att fortsätta." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Kan inte annullera transaktion för Klart Arbetsorder." @@ -9698,8 +9714,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Kan inte ändra Bolag Standard Valuta, eftersom det redan finns transaktioner. Transaktioner måste annulleras för att ändra valuta." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "Kan inte slutföra uppgift {0} eftersom dess beroende uppgift {1} inte har slutförts/avbrutits." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9725,7 +9741,7 @@ msgstr "Kan inte skapa mellan bolag {0}. Alla ursprung artiklar {1} är redan fa msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "Kan inte skapa Lager Reservation Poster för framtid daterade Inköp Följesedlar." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Kan inte skapa plocklista för Försäljning Order {0} eftersom den har reserverad lager. Vänligen avboka lager för att skapa plocklista." @@ -9734,6 +9750,10 @@ msgstr "Kan inte skapa plocklista för Försäljning Order {0} eftersom den har msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Kan inte skapa bokföring poster mot inaktiverade konto: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "Kan inte skapa retur för konsoliderad faktura {0}." @@ -9751,7 +9771,7 @@ msgstr "Kan inte ange som förlorad, eftersom Försäljning Offert är skapad." msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Kan inte dra av när an kategori \"Värdering\" eller \"Värdering och Total\"" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Kan inte ta bort Valutaväxling Resultat rad" @@ -9764,7 +9784,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Det går inte att ta bort artikel som finns på order" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "Kan inte ta bort skyddad system DocType: {0}" @@ -9796,7 +9816,7 @@ msgstr "Kan inte demontera {0} mot Lager Post {1}. Endast {2} tillgängliga för msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "Kan inte aktivera Lager Konto per Lager, eftersom det redan finns befintliga Lager Register Poster för {0} med Lager Konto per Lager. Avbryt lager transaktioner först och försök igen." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "Kan inte aktivera Möjlighet skapande från Kontakta Oss eftersom Kontakta Oss formulär är inaktiverad." @@ -9821,19 +9841,23 @@ msgstr "Kan inte hitta Artikel med denna Streck/QR Kod" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "Kan inte hitta standardlager för artikel {0}. Ange det i Artikelinställningar eller i Lagerinställningar." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "Det går inte att slå samman {0} '{1}' till '{2}' eftersom båda har befintliga bokföring poster i olika valutor för '{3}'." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "Kan inte producera mer av artikel {0} än Försäljning Order Kvantitet {1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "Kan inte producera fler artiklar för {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "Kan inte producera mer än {0} artiklar för {1}" @@ -9845,12 +9869,16 @@ msgstr "Kan inte ta emot från kund mot negativt utestående" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "Kan inte minska kvantitet än den som är på order eller inköp kvantitet" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Kan inte hänvisa till rad nummer högre än eller lika med aktuell rad nummer för denna avgift typ" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "Kan inte hämta länk token för uppdatering Kontrollera Fellogg för mer information" @@ -9859,19 +9887,23 @@ msgstr "Kan inte hämta länk token för uppdatering Kontrollera Fellogg för me msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Kan inte hämta länk token. Se fellogg för mer information" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "Det går inte att välja en grupptyp Kundgrupp. Välj grupp som inte tillhör Kund Grupp." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Kan inte välja avgifts typ som \"På föregående Rad Belopp\" eller \"På föregående Rad Totalt\" för första rad" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Kan inte ange som förlorad eftersom Försäljning Order är skapad." @@ -10298,9 +10330,9 @@ msgstr "Ändra Konto Typ till Fordring Konto eller välj annat konto." msgid "Change this date manually to setup the next synchronization start date" msgstr "Ange datum för nästa synkronisering" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "Ändrade kund namn till '{}' eftersom '{}' redan finns." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10326,8 +10358,8 @@ msgstr "Om värdering sätt ändras till MV kommer det att påverka nya transakt msgid "Channel Partner" msgstr "Partner" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "Debitering av typ \"Faktisk\" i rad {0} kan inte inkluderas i Artikel Pris eller Betald Belopp" @@ -10521,7 +10553,7 @@ msgstr "Check Bredd" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Referens Datum" @@ -10579,7 +10611,7 @@ msgstr "Underordnad Dokument Namn" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Underordnad Rad Referens" @@ -10589,8 +10621,8 @@ msgid "Child Table Not Allowed" msgstr "Underordnad tabell är inte tillåten" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Underordnad Uppgift finns för denna Uppgift. Kan inte ta bort denna Uppgift." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10768,7 +10800,7 @@ msgstr "Avsluta Lån" msgid "Close Replied Opportunity After Days" msgstr "Stäng Besvarad Möjlighet Efter Dagar" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Stäng Kassa" @@ -10782,7 +10814,7 @@ msgstr "Stängd Dokument" msgid "Closed Documents" msgstr "Stängda Dokument" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Stängd Arbetsorder kan inte stoppas eller öppnas igen" @@ -11012,9 +11044,9 @@ msgstr "Provision" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11451,7 +11483,7 @@ msgstr "Bolag" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11521,7 +11553,7 @@ msgstr "Bolag" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11561,10 +11593,6 @@ msgstr "Bolag" msgid "Company Abbreviation" msgstr "Bolag Förkortning" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "Bolag Förkortning (erfordrar installerad system)" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Bolag Förkortning får inte ha mer än 5 tecken" @@ -11729,7 +11757,7 @@ msgstr "Bolag Leverans Adress" msgid "Company Tax ID" msgstr "Org.Nr." -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "Bolag och Registrering Datum erfordras" @@ -11773,12 +11801,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "Fältnamn för bolag länk som används för filtrering (valfritt - lämna tomt för att radera alla poster)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Bolag Namn är inte samma" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "Bolag Tillgång {0} och Inköp Dokument {1} stämmer inte." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11816,6 +11844,14 @@ msgstr "Bolag {0} har lagts till flera gånger" msgid "Company {0} does not exist" msgstr "Bolag {0} finns inte" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Bolag{0} har lagts till mer än en gång" @@ -11824,14 +11860,6 @@ msgstr "Bolag{0} har lagts till mer än en gång" msgid "Company {0} is not in South Africa." msgstr "Bolag {0} är inte registrerad i Sydafrika." -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "Bolag {} finns inte ännu. Moms inställning avbröts." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "Bolag {} stämmer inte med Kassa Profil Bolag {}" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11853,7 +11881,7 @@ msgstr "Konkurrent Namn" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Konkurrenter" @@ -12297,8 +12325,8 @@ msgid "Consumed Qty" msgstr "Förbrukad Kvantitet" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "Förbrukad Kvantitet kan inte vara högre än Reserverad Kvantitet för artikel {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12613,7 +12641,7 @@ msgstr "Kontrollerar vilken moms mall som tillämpas automatiskt när denna kund #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12913,7 +12941,7 @@ msgstr "Kostnadsfördelning / Processförlust" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12938,7 +12966,7 @@ msgstr "Kostnadsfördelning / Processförlust" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12996,7 +13024,7 @@ msgstr "Resultat Enhet Nummer" msgid "Cost Center and Budgeting" msgstr "Resultat Enhet & Budget" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "Resultat Enhet för artikel rader är uppdaterad till {0}" @@ -13008,7 +13036,7 @@ msgstr "Resultat Enhet är del av Resultat Enhet Tilldelning och kan därför in msgid "Cost Center is required" msgstr "Resultat Enhet erfordras" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Resultat Enhet erfodras på rad {0} i Moms Tabell för typ {1}" @@ -13030,12 +13058,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "Resultat Enhet {0} kan inte användas för tilldelning eftersom det används som Huvud Resultat Enhet i annan tilldelning post." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Resultat Enhet {} tillhör inte bolag {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "Resultat Enhet {} är Grupp Resultat Enhet och Grupp Resultat Enhet kan inte användas i transaktioner" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13159,14 +13187,14 @@ msgid "Costing and Billing" msgstr "Kostnadsberäkning och Fakturering" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "Kostnad och Fakturering fält är uppdaterad" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Kunde inte ta bort Demo Data" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Kunde inte skapa Kund automatiskt pga följande erfodrade fält saknas:" @@ -13178,7 +13206,7 @@ msgstr "Kunde inte skapa Kredit Faktura automatiskt, avmarkera 'Skapa Kredit Fak msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "Kunde inte hitta några tabeller i denna PDF. Det kan vara skannat eller bildbaserat utdrag, vilket inte stöds (ingen OCR)." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Kunde inte identifiera bolag för uppdatering av Bank Konto" @@ -13188,8 +13216,8 @@ msgstr "Kunde inte hitta lämplig skift som stämmer med skillnaden: {0}" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "Kunde inte hitta sökväg för" +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13212,7 +13240,7 @@ msgstr "Kunde inte spara tabell inställningarna." msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Kunde inte lösa kriterierna för funktion {0}. Se till att formel är giltig." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Kunde inte lösa prioriterad poäng funktion. Se till att formel är giltig." @@ -13442,10 +13470,6 @@ msgstr "Skapa Ny Kund" msgid "Create New Lead" msgstr "Skapa Ny Potentiell Kund" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "Skapa ny Version" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "Skapa ny {0}" @@ -13464,7 +13488,7 @@ msgstr "Skapa Åtgärder" msgid "Create Opportunity" msgstr "Skapa Möjlighet" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Skapa Kassa Öppning Post" @@ -13479,7 +13503,7 @@ msgstr "Skapa Kontering Post" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "Skapa Kontering Post för Konsoliderade Kassa Fakturor." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Skapa Betalning Begäran" @@ -13707,7 +13731,7 @@ msgstr "Skapa ny regel för att automatiskt klassificera transaktioner." msgid "Create a variant with the template image." msgstr "Skapa variant med Mall Bild." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Skapa inkommande Lager Transaktion för Artikel." @@ -13741,7 +13765,7 @@ msgstr "Skapa {0} {1} ?" msgid "Created By Migration" msgstr "Skapad av Migrering" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "Skapade {0} Resultatkort för {1} mellan:" @@ -13836,7 +13860,7 @@ msgstr "Skapar Användare..." msgid "Creating demo data" msgstr "Skapar demo data" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Skapar {} av {} {} ..." @@ -13846,17 +13870,17 @@ msgstr "Skapar {} av {} {} ..." msgid "Creation" msgstr "Skapande" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "Skapande av {1}(s) klar" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Skapande av {0} misslyckad.\n" "\t\t\t\tKontrollera Mass Transaktion Logg" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Skapande av {0} delvis klar.\n" @@ -13891,11 +13915,11 @@ msgstr "Skapande av {0} delvis klar.\n" msgid "Credit" msgstr "Kredit" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Kredit (Transaktion)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Kredit ({0})" @@ -13976,7 +14000,7 @@ msgstr "Kredit Dagar" msgid "Credit Limit" msgstr "Kredit Gräns" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Kredit Gräns Överskriden" @@ -14056,16 +14080,16 @@ msgstr "Kredit Till" msgid "Credit in Company Currency" msgstr "Kredit i Bolag Valuta" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Kredit Gräns överskriden för Kund {0} ({1} / {2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Kredit Gräns är redan definierad för Bolag {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Kredit gräns uppnåd för Kund {0}" @@ -14124,12 +14148,12 @@ msgstr "Kriterier Inställningar" msgid "Criteria Weight" msgstr "Kriterier Prioritet" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Kriterier Prioritet är upp till 100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Cron Intervall ska vara mellan 1 och 59 minuter" @@ -14252,7 +14276,7 @@ msgstr "Valuta och Prislista" msgid "Currency can not be changed after making entries using some other currency" msgstr "Valuta kan inte ändras efter att poster är skapade med någon annan valuta" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "Valuta filter stöds för närvarande inte i Anpassad Bokslut Rapport." @@ -14317,8 +14341,8 @@ msgid "Current BOM" msgstr "Aktuell Stycklista" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "Aktuell Stycklista och ny Stycklista kan inte vara samma" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14380,10 +14404,6 @@ msgstr "Aktuell Serie / Parti Paket" msgid "Current Serial No" msgstr "Aktuellt Serie Nummer" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "Nuvarande Namngivning Serie" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15214,7 +15234,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Daglig Projekt Översikt för {0}" @@ -15359,10 +15379,6 @@ msgstr "Datum att Bearbeta" msgid "Day Of Week" msgstr "Veckodag" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "Dag i månaden" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15469,11 +15485,11 @@ msgstr "Handlare" msgid "Debit" msgstr "Debet" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Debet (Transaktion)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Debet ({0})" @@ -15635,7 +15651,7 @@ msgstr "Deciliter" msgid "Decimeter" msgstr "Decimeter" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Ange som Förlorad" @@ -16316,8 +16332,8 @@ msgstr "Tar bort regel..." msgid "Deleting {0} and all associated Common Code documents..." msgstr "Tar bort {0} och alla tillhörande Gemensamma Kod dokument..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Borttagning Pågår!" @@ -16411,7 +16427,7 @@ msgstr "Levererade Artiklar Att Fakturera" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16469,7 +16485,7 @@ msgstr "Leverans" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16799,7 +16815,7 @@ msgstr "Avskrivning" msgid "Depreciation Amount" msgstr "Avskrivning Belopp" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Avskrivning Belopp under Period" @@ -16815,7 +16831,7 @@ msgstr "Avskrivning Datum" msgid "Depreciation Details" msgstr "Avskrivning Detaljer" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Avskrivning borttagen pga avskrivning av Tillgångar" @@ -16885,7 +16901,7 @@ msgstr "Avskrivning Registrering Datum kan inte vara före Tillgänglig för Anv msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Avskrivning Rad {0}: Avskrivning Registrering Datum kan inte vara före Tillgänglig för Användning Datum" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Avskrivning Rad {0}: Förväntad värde efter nyttjande tid måste vara högre än eller lika med {1}" @@ -16914,11 +16930,11 @@ msgstr "Avskrivning Schema" msgid "Depreciation Schedule View" msgstr "Avskrivning Schema Vy" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "Avskrivning kan inte beräknas för fullt avskrivna tillgångar" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "Avskrivning eliminerad via återföring" @@ -16946,7 +16962,7 @@ msgstr "Designer" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Detaljerad Anledning" @@ -17049,12 +17065,12 @@ msgid "Difference Account in Items Table" msgstr "Differens Konto i Artikel Inställningar" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "Differens konto måste vara konto av typ Tillgång/Skuld (Tillfällig Öppning), eftersom denna Lager Post är Öppning Post." +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Differens Konto måste vara Tillgång / Skuld Konto Typ, eftersom denna Inventering är Öppning Post" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17116,7 +17132,7 @@ msgstr "Differens Värde" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "Olika 'Från Lager' och 'Till Lager' kan anges för varje rad." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Olika Enheter för Artiklar kommer att leda till felaktiga (Totalt) Netto Vikt värden. Se till att Netto Vikt för varje Artikel är samma Enhet." @@ -17289,7 +17305,7 @@ msgstr "Inaktiverat Bankkonto" msgid "Disabled Product Bundle" msgstr "Inaktiverade Artikel Paket" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "Inaktiverad Lager {0} kan inte användas för denna transaktion." @@ -17298,18 +17314,18 @@ msgstr "Inaktiverad Lager {0} kan inte användas för denna transaktion." msgid "Disabled items cannot be selected in any transaction." msgstr "Inaktiverade artiklar kan inte väljas i någon transaktion." -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Inaktiverade Prissättning Regler eftersom detta {} är intern överföring" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "Leverantörer med inaktiverad status visas inte vid valet i nya transaktioner, men finns kvar i historiska poster" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "Inaktiverade Pris Inklusive Moms eftersom detta {} är intern överföring" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17558,9 +17574,9 @@ msgstr "Rabatt kan inte vara högre än 100%." msgid "Discount must be less than 100" msgstr "Rabatt måste vara lägre än 100%" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Rabatt på {} tillämpad enligt Betalning Villkor" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17924,11 +17940,11 @@ msgstr "Vill du godkänna lagerpost?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" -msgstr "DocType kan vara en av dem {0}" +msgid "DocType can be one of {0}" +msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} finns inte" @@ -17966,22 +17982,6 @@ msgstr "Dokument Sökning" msgid "Document Count" msgstr "Antal Dokument" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "Dokument Namngivning" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "Dokument Nr" @@ -18287,7 +18287,7 @@ msgstr "Kopiera Projekt med Uppgifter" msgid "Duplicate Sales Invoices found" msgstr "Dubbletter av Försäljning Fakturor hittades" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "Duplicerad Serienummer Fel" @@ -18441,7 +18441,7 @@ msgstr "Redigera Kapacitet" msgid "Edit Cart" msgstr "Ändra Kundkorg" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Ej Tillåtet att Redigera " @@ -18665,8 +18665,8 @@ msgid "Email verification failed." msgstr "E-post verifiering misslyckades." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "E-post i Kö" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18853,7 +18853,7 @@ msgstr "Personal" msgid "Empty" msgstr "Tom" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "Töm för att ta bort lista" @@ -18862,7 +18862,7 @@ msgstr "Töm för att ta bort lista" msgid "Ems(Pica)" msgstr "Ems(Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "Aktivera {0} i Artikel Inställningar för att fortsätta med {1} kontroll." @@ -18941,6 +18941,12 @@ msgstr "Aktivera Rabatter och Marginaler" msgid "Enable European Access" msgstr "Aktivera Europeisk Åtkomst" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19217,7 +19223,7 @@ msgstr "Slut Tid " msgid "End Transit" msgstr "Avsluta Transit" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19340,7 +19346,7 @@ msgstr "Ange Kund Telefon Nummer" msgid "Enter date to scrap asset" msgstr "Ange datum för tillgång avskrivning" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Ange Avskrivning Detaljer" @@ -19396,6 +19402,10 @@ msgstr "Ange kvantitet som ska produceras. Råmaterial Artiklar hämtas endast n msgid "Enter {0} amount." msgstr "Ange {0} belopp." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Underhållning & Fritid" @@ -19431,7 +19441,7 @@ msgstr "Post Typ" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Eget Kapital" @@ -19455,7 +19465,7 @@ msgstr "Erg" msgid "Error Description" msgstr "Fel Beskrivning" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Fel Inträffade" @@ -19487,21 +19497,21 @@ msgstr "Fel uppstod vid registrering av avskrivning poster" msgid "Error while processing deferred accounting for {0}" msgstr "Fel uppstod när uppskjuten bokföring för {0} bearbetades" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Fel uppstod vid ombokning av artikel värdering" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Fel: Denna tillgång har redan {0} avskrivning perioder bokade.\n" -"\t\t\t\t\tStart datum för \"avskrivning\" måste vara minst {1} perioder efter \"tillgänglig för användning\" datum.\t\t\t\t\t\n" -" Korrigera datum enligt detta." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Fel: {0} är erfordrad fält" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "Fel: {0}" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19515,7 +19525,7 @@ msgid "Estimated Arrival" msgstr "Beräknad Ankomst" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Beräknad Kostnad" @@ -19564,7 +19574,7 @@ msgstr "Exempel: ABCD.#####. Om serie är angiven och Parti Nummer inte anges i msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "Exempel: Om transaktion belopp är 200, beräknas detta som {} = {}" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Exempel: Serie Nummer {0} reserverad i {1}." @@ -19845,7 +19855,7 @@ msgstr "Förväntad Avslut Datum" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19932,7 +19942,7 @@ msgstr "Förväntad Värde Efter Användning" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Kostnader" @@ -20191,9 +20201,9 @@ msgstr "Fahrenheit" msgid "Failed Entries" msgstr "Misslyckade Poster" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Msslyckades att Autentisera API Nyckel." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20390,7 +20400,7 @@ msgid "Fetching Sales Orders..." msgstr "Hämtar Försäljning Ordrar..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Hämtar växelkurser ..." @@ -20428,15 +20438,15 @@ msgstr "Fältnamn {0} finns redan i följande dokument typer: {1}. Separat dimen msgid "Fields will be copied over only at time of creation." msgstr "Fält kopieras över endast när variant skapas." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "Filen tillhör inte denna Transaktion Borttagning Post" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Filen hittades inte" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Filen hittades inte på servern" @@ -20445,7 +20455,7 @@ msgstr "Filen hittades inte på servern" msgid "File to Rename" msgstr "Fil att Ändra Namn på" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20604,11 +20614,11 @@ msgstr "Bokslut Rapport Rad" msgid "Financial Report Template" msgstr "Bokslut Rapport Mall" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "Bokslut Rapport Mall {0} är inaktiverad" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "Bokslut Rapport Mall {0} hittades inte" @@ -20677,7 +20687,7 @@ msgstr "Färdig Stycklista" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20690,7 +20700,7 @@ msgstr "Färdig Artikel" msgid "Finished Good Item Code" msgstr "Färdig Artikel Kod" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Färdig Artikel Kvantitet" @@ -20798,7 +20808,7 @@ msgstr "Färdig Artikel Lager" msgid "Finished Goods based Operating Cost" msgstr "Färdiga Artiklar baserad Drift Kostnad" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Färdig Artikel {0} stämmer inte med Arbetsorder {1}" @@ -20897,10 +20907,6 @@ msgstr "Skatteregler erfordras, ange Skatteregler i Bolag {0}" msgid "Fiscal Year" msgstr "Bokföring År" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "Bokföring År (erfordrar installerad System)" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20914,11 +20920,8 @@ msgstr "Bokföring År Detaljer" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Bokföring År Slut Datum ska vara ett år efter Bokföring År Start Datum" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Bokföring År {0} finns inte" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Bokföring År {0} finns inte" @@ -20951,7 +20954,7 @@ msgstr "Fast Tillgång" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21087,7 +21090,7 @@ msgstr "Foot/Sekund" msgid "For" msgstr "För" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "För \"Artikel Paket\" Artiklar, Lager, Serie Nummer och Parti kommer att hämtas från \"Packlista\". Om Lager och Parti inte är samma för alla förpackning artiklar för alla \"Artikel Paket\", kan dessa värden anges i Artikel Paket, värde kommer att kopieras till \"Packlista\"." @@ -21112,10 +21115,6 @@ msgstr "För Bolag" msgid "For Item" msgstr "För Artikel" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "För Artikel {0} kan inte tas emot mer än {1} i kvantitet mot {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21182,12 +21181,12 @@ msgid "For Work Order" msgstr "För Arbetsorder" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "För Artikel {0} måste kvantitet vara negativt tal" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "För Artikel {0} måste kvantitet vara positivt tal" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21219,13 +21218,13 @@ msgstr "För hur mycket du spenderat = 1 Lojalitet Poäng" msgid "For individual supplier" msgstr "För Enskild Leverantör" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "För artikel {0}endast {1} tillgång har skapats eller länkats till {2}. Skapa eller länka {3} fler tillgångar med respektive dokument." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "För Artikel {0} pris måste vara positiv tal. Att tillåta negativa priser, aktivera {1} i {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21237,9 +21236,9 @@ msgstr "För äldre serienummer, hämta inte inköp pris från serienummer och b msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "För åtgärd {0} på rad {1}, lägg till råmaterial eller ange Stycklista." -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "För Åtgärd {0}: Kvantitet ({1}) kan inte vara högre än pågående kvantitet ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21254,21 +21253,17 @@ msgstr "För projekt - {0}, uppdatera din status" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "För beräknade och förväntade kvantiteter kommer system att inkludera alla underordnade lager under vald överordnad lager." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "För Kvantitet {0} ska inte vara högre än tillåten kvantitet {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Referens" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "För rad {0} i {1}. Om man vill inkludera {2} i Artikel Pris, rader {3} måste också inkluderas" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "För rad {0}: Ange Planerad Kvantitet" @@ -21287,11 +21282,15 @@ msgstr "För 'Tillämpa Regel på' villkor erfordras fält {0}" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "För kundernas bekvämlighet kan dessa koder användas i utskriftsformat som Fakturor och Följesedlar" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "För artikel {0} förbrukad kvantitet ska vara {1} enligt stycklista {2}." -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "För att ny {0} ska gälla, vill du radera nuvarande {1}?" @@ -21379,6 +21378,21 @@ msgstr "Forum Inlägg" msgid "Forum URL" msgstr "Forum Adress" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Säljstöd" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "Frappe Skola" @@ -21922,7 +21936,7 @@ msgstr "Bokföring Register Saldo" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Bokföring Register Post" @@ -22047,6 +22061,10 @@ msgstr "Bokföring Register" msgid "General Ledger remarks length" msgstr "Bokföring Register kommentar längd" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22100,7 +22118,7 @@ msgstr "Skapa Lager Stängning Post" msgid "Generate To Delete List" msgstr "Generera för att ta bort lista" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "Generera Ta Bort lista först" @@ -22443,7 +22461,7 @@ msgstr "I Transit" msgid "Goods Transferred" msgstr "Överförd" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Artiklarna redan mottagna mot extern post {0}" @@ -22626,7 +22644,7 @@ msgstr "Total summa måste stämma med summan av Betalning Referenser" msgid "Grant Commission" msgstr "Tillåt Provision" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Högre än Belopp" @@ -22766,7 +22784,7 @@ msgstr "Gruppera efter Försäljning Order" msgid "Group by Voucher" msgstr "Gruppera efter Verifikat" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Ej Tillåtet att välja Grupp Nod Lager för transaktioner" @@ -23069,7 +23087,7 @@ msgstr "Hjälper vid fördelning av Budget/ Mål över månader om bolag har sä msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Här är felloggar för ovannämnda misslyckade avskrivning poster: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "Här är alternativ för att fortsätta:" @@ -23097,7 +23115,7 @@ msgstr "Här är dina veckoledigheter förifyllda baserat på tidigare val. Du k msgid "Hertz" msgstr "Hertz" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Hej," @@ -23133,7 +23151,7 @@ msgstr "Dölj om noll" msgid "Hide Images" msgstr "Dölj Bilder" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "Dölj Senaste Ordrar" @@ -23720,15 +23738,15 @@ msgstr "Om inget Artikel Pris hittas för artikel i Prislista angiven i transakt msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "Om ingen Moms är angiven och Moms och Avgifter Mall är vald, kommer system automatiskt att tillämpa Moms från vald mall." -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "Om inte kan man Annullera/Godkänna denna post" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "Om parti inte finns, skapa den med hjälp av Kund Namn fält." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "Om parti inte finns, skapa den med hjälp av Leverantör Namn fält." @@ -23766,7 +23784,7 @@ msgstr "Om Stycklista har Rest Material måste Rest Lager väljas." msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Om konto är låst, tillåts poster för Behöriga Användare." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Om artikel handlas som Noll Värdering Pris i denna post, aktivera 'Tillåt Noll Värdering Pris' i {0} Artikel Tabell." @@ -23867,7 +23885,7 @@ msgstr "Om man behöver stämma av specifika transaktioner mot varandra, välj d msgid "If you still want to proceed, please disable {0} checkbox." msgstr "Om du ändå vill fortsätta, inaktivera {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "För att fortsätta, aktivera {0}." @@ -24085,14 +24103,14 @@ msgstr "Importera Fakturor" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "Importera MT940 Fromat" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Import Klar" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Import Sammanfattning" @@ -24569,7 +24587,7 @@ msgstr "Inklusive artiklar för underenhet" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Intäkt" @@ -24655,7 +24673,7 @@ msgstr "Inkommande samtal från {0}" msgid "Incompatible Setting Detected" msgstr "Inkompatibel inställning upptäckt" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "Felaktigt Konto" @@ -24664,7 +24682,7 @@ msgstr "Felaktigt Konto" msgid "Incorrect Balance Qty After Transaction" msgstr "Felaktig Saldo Kvantitet Efter Transaktion" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Felaktig Parti Förbrukad" @@ -24672,11 +24690,11 @@ msgstr "Felaktig Parti Förbrukad" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Felaktig vald (grupp) Lager för Ombeställning" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "Felaktigt Bolag" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Felaktig Komponent Kvantitet" @@ -24685,7 +24703,7 @@ msgstr "Felaktig Komponent Kvantitet" msgid "Incorrect Date" msgstr "Felaktigt Datum" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Felaktig Faktura" @@ -24702,7 +24720,7 @@ msgstr "Felaktig Referens Dokument (Inköp Följesedel Artikel)" msgid "Incorrect Serial No Valuation" msgstr "Felaktig Serie Nummer Värdering" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Felaktig Serie Nummer Förbrukad" @@ -24785,7 +24803,7 @@ msgstr "Påslag" msgid "Increment cannot be 0" msgstr "Påslag kan inte vara 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Påslag för Egenskap {0} kan inte vara 0" @@ -24982,7 +25000,7 @@ msgid "Instruction" msgstr "Instruktion" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Otillräcklig Kapacitet" @@ -24998,12 +25016,12 @@ msgstr "Otillräckliga Behörigheter" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Otillräcklig Lager" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Otillräcklig Lager för Parti" @@ -25133,7 +25151,7 @@ msgstr "Räntekostnader" msgid "Interest Income" msgstr "Ränteintäkter" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Ränta och/eller Påminnelse avgift" @@ -25158,7 +25176,7 @@ msgstr "Intern" msgid "Internal Customer Accounting" msgstr "Internt Kund Bokföring" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Intern Kund för Bolag {0} finns redan" @@ -25184,7 +25202,7 @@ msgstr "Intern Försäljning Referens saknas" msgid "Internal Supplier Details" msgstr "Intern Leverantör Detaljer" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "Intern Leverantör för Bolag {0} finns redan" @@ -25205,7 +25223,7 @@ msgstr "Intern Leverantör för Bolag {0} finns redan" msgid "Internal Transfer" msgstr "Intern Överföring" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Intern Överföring Referens saknas" @@ -25247,8 +25265,8 @@ msgstr "Intervall ska vara mellan 1 och 59 minuter" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25267,7 +25285,7 @@ msgstr "Ogiltig Tilldelad Belopp" msgid "Invalid Amount" msgstr "Ogiltig Belopp" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Ogiltig Egenskap" @@ -25284,11 +25302,11 @@ msgstr "Ogiltigt Bankkonto" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Ogiltig Streck/QR Kod. Det finns ingen Artikel med denna Streck/QR Kod." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Ogiltig Ramavtal Order för vald Kund och Artikel" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "Ogiltigt CSV format. Förväntad kolumn: doctype_name" @@ -25308,13 +25326,13 @@ msgstr "Ogiltig Bolag för Intern Bolag Transaktion" msgid "Invalid Configuration" msgstr "Ogiltig Konfiguration" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Ogiltig Resultat Enhet" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "Ogiltig Kund Grupp" @@ -25335,11 +25353,11 @@ msgstr "Ogiltig Demontering Kvantitet" msgid "Invalid Discount" msgstr "Ogiltig Rabatt" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "Ogiltigt Rabatt Belopp" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Ogiltig Dokument" @@ -25369,7 +25387,7 @@ msgstr "Ogiltig Gruppera Efter" msgid "Invalid Item" msgstr "Ogiltig Artikel" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Ogiltig Artikel Standard" @@ -25378,7 +25396,7 @@ msgstr "Ogiltig Artikel Standard" msgid "Invalid Ledger Entries" msgstr "Ogiltiga Register Poster" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "Ogiltig Netto Inköp Belopp" @@ -25417,7 +25435,7 @@ msgstr "Ogiltig Utskrift Format" msgid "Invalid Priority" msgstr "Ogiltig Prioritet" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Ogiltig Process Förlust Konfiguration" @@ -25434,7 +25452,7 @@ msgstr "Ogiltig Kvantitet" msgid "Invalid Quantity" msgstr "Ogiltig Kvantitet" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "Ogiltig Fråga" @@ -25446,8 +25464,8 @@ msgstr "Ogiltig Retur" msgid "Invalid Sales Invoices" msgstr "Ogiltiga Försäljning Fakturor" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Ogiltig Schema" @@ -25455,7 +25473,7 @@ msgstr "Ogiltig Schema" msgid "Invalid Selling Price" msgstr "Ogiltig Försäljning Pris" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Felaktig Serie och Parti Paket" @@ -25472,7 +25490,7 @@ msgstr "Ogiltig Träd Typ {0}" msgid "Invalid Upload" msgstr "Ogiltig Uppladdning" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Ogiltig Värde" @@ -25482,14 +25500,14 @@ msgid "Invalid Warehouse" msgstr "Ogiltig Lager" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "Ogiltigt belopp i bokföring av {} {} för Konto {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Ogiltig Villkor Uttryck" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "Ogiltig fil URL" @@ -25521,7 +25539,7 @@ msgstr "Ogiltigt regex mönster." msgid "Invalid result key. Response:" msgstr "Ogiltig resultat nyckel. Svar:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Ogiltig sökfråga" @@ -26484,10 +26502,6 @@ msgstr "Utfärdande Datum" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Det kan ta upp till några timmar för korrekta lagervärden att vara synliga efter sammanslagning av artiklar." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Behövs för att hämta Artikel Detaljer." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "Den tar hänsyn till alla transaktioner som är registrerade och subtraherar de transaktioner som ännu inte är avstämda." @@ -26496,7 +26510,7 @@ msgstr "Den tar hänsyn till alla transaktioner som är registrerade och subtrah msgid "It's all good!" msgstr "Allt är bra!" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "Det är inte möjligt att fördela avgifter proportionellt när det totala belopp är noll, vänligen ange \"Distribuera Avgifter Baserat På\" som \"Kvantitet\"" @@ -26545,12 +26559,12 @@ msgstr "Kursiv text för delsummor eller anteckningar" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26583,7 +26597,7 @@ msgstr "Kursiv text för delsummor eller anteckningar" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26657,7 +26671,7 @@ msgstr "Artikel 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26818,7 +26832,7 @@ msgstr "Artikel Kundkorg" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26850,7 +26864,7 @@ msgstr "Artikel Kundkorg" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26859,12 +26873,12 @@ msgstr "Artikel Kundkorg" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26960,7 +26974,7 @@ msgstr "Artikel Kod kan inte ändras för Serie Nummer" msgid "Item Code required at Row No {0}" msgstr "Artikel Kod erfordras vid Rad Nummer {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Artikel Kod: {0} finns inte på Lager {1}." @@ -27156,7 +27170,7 @@ msgstr "Artikel Grupp Åsidosättning" msgid "Item Group Tree" msgstr "Artikel Grupp Träd" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Artikel Grupp inte angiven i Artikel Inställningar för Artikel {0}" @@ -27310,7 +27324,7 @@ msgstr "Artikel Producent" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27341,7 +27355,7 @@ msgstr "Artikel Producent" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27349,8 +27363,8 @@ msgstr "Artikel Producent" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27407,7 +27421,7 @@ msgstr "Artikel Producent" msgid "Item Name" msgstr "Artikel Namn" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "Artikel Namn erfordras." @@ -27454,8 +27468,8 @@ msgstr "Artikel Pris Inställningar" msgid "Item Price Stock" msgstr "Lager Artikel Pris" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "Artikel pris tillagt för {0} i Prislista - {1}" @@ -27467,7 +27481,7 @@ msgstr "Artikel Pris visas flera gånger baserat på Prislista, Leverantör/Kund msgid "Item Price created at rate {0}" msgstr "Artikelpris skapat till pris {0}" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Artikel Pris uppdaterad för {0} i Prislista {1}" @@ -27512,7 +27526,7 @@ msgstr "Artikel Ombeställning" msgid "Item Row" msgstr "Artikelrad" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Artikel rad {0}: {1} {2} finns inte i ovanstående '{1}' tabell" @@ -27628,7 +27642,7 @@ msgstr "Artikel att Producera" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Artikel Variant" @@ -27747,7 +27761,7 @@ msgstr "Moms Detalj per Artikel" msgid "Item Wise Tax Details" msgstr "Artikel Moms Detaljer" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "Artikel Moms Detaljer stämmer inte överens med Moms och Avgifter på följande rader:" @@ -27783,7 +27797,7 @@ msgstr "Artikel erfordras i Råmaterial Tabell." msgid "Item is removed since no serial / batch no selected." msgstr "Artikel tas bort eftersom ingen serie nummer/parti nummer är vald." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Artikel måste läggas till med hjälp av 'Hämta Artiklar från Inköp Följesedel' Knapp" @@ -27797,7 +27811,7 @@ msgstr "Artikel Namn" msgid "Item operation" msgstr "Artikel Åtgärd" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "Artikel pris har angivits till noll eftersom Tillåt Noll Värdering Grad är vald för artikel {0}" @@ -27812,7 +27826,7 @@ msgstr "Artikel att Producera" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "Värdering Pris räknas om med hänsyn till landad kostnad verifikat belopp" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Artikel värdering ombokning pågår. Rapport kan visa felaktig artikelvärde." @@ -27828,10 +27842,6 @@ msgstr "Artikel med namn {0} hittades inte i Inköp Order" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "Artikel {0} har lagt till flera gånger under samma överordnad artikel {1} på rad {2} och {3}" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "Artikel {0} har redan aktivt Artikel Paket ({1}). Vid godkännade av detta skapas ny version och {1} inaktiveras." - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "Artikel {0} kan inte läggas till som underenhet av sig själv" @@ -27840,6 +27850,10 @@ msgstr "Artikel {0} kan inte läggas till som underenhet av sig själv" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Artikel {0} kan inte skapas order för mer än {1} mot Ramavtal Order {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27849,6 +27863,7 @@ msgstr "Artikel {0} finns inte" msgid "Item {0} does not exist in the system or has expired" msgstr "Artikel finns inte {0} i system eller har förfallit" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Artikel {0} finns inte." @@ -27881,6 +27896,10 @@ msgstr "Artikel {0} har nått slut på sin livslängd {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "Artikel {0} ignorerad eftersom det inte är Lager Artikel" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Artikel {0} är redan reserverad/levererad mot Försäljning Order {1}." @@ -27913,7 +27932,7 @@ msgstr "Artikel {0} är inte underleverantör artikel" msgid "Item {0} is not a template item." msgstr "Artikel {0} är inte mall artikel." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "Artikel {0} är inte aktiv eller livslängd har uppnåtts" @@ -27945,10 +27964,6 @@ msgstr "Artikel {0}: Order Kvantitet {1} kan inte vara lägre än minimum order msgid "Item {0}: {1} qty produced. " msgstr "Artikel {0}: {1} Kvantitet producerad ." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "Artikel {} finns inte." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27999,6 +28014,10 @@ msgstr "Artikel / Artikel Kod erfordras för att hämta Artikel Moms Mall." msgid "Item: {0} does not exist in the system" msgstr "Artikel: {0} finns inte i system" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -28015,7 +28034,7 @@ msgstr "Artikel Katalog" msgid "Items Filter" msgstr "Artikel Filter" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Artiklar Erfodrade" @@ -28055,7 +28074,7 @@ msgstr "Artiklar för Råmaterial Begäran" msgid "Items not found." msgstr "Artiklar hittades inte." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "Artikel Pris har ändrats till noll eftersom Tillåt Noll Värdering Pris är vald för följande artiklar: {0}" @@ -28065,7 +28084,7 @@ msgstr "Artikel Pris har ändrats till noll eftersom Tillåt Noll Värdering Pri msgid "Items to Be Repost" msgstr "Artikel som ska Läggas om" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Artiklar som ska produceras erfordras för att hämta tilldelad Råmaterial." @@ -28135,7 +28154,7 @@ msgstr "Arbetskapacitet" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28198,20 +28217,19 @@ msgstr "Jobbkort Tid Logg" msgid "Job Card and Capacity Planning" msgstr "Jobbkort & Kapacitet Planering" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "Jobbkort {0} klar" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "Jobbkort " -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "Jobb Pausad" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Jobb Startad" @@ -28274,11 +28292,19 @@ msgstr "Jobb Ansvarig Namn" msgid "Job Worker Warehouse" msgstr "Jobb Ansvarig Lager" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Jobbkort {0} skapad" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "Jobb: {0} är utlöst för bearbetning av misslyckade transaktioner" @@ -28624,8 +28650,8 @@ msgid "Last Fiscal Year" msgstr "Förra Bokföring År" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "Senaste uppdatering av Bokföring Register gjordes {}. Denna åtgärd är inte tillåten när system används aktivt. Vänta i 5 minuter innan du försöker igen." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28745,7 +28771,7 @@ msgstr "Latitud" msgid "Lead" msgstr "Potentiell Kund" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Potentiell Kund -> Prospekt" @@ -28839,7 +28865,7 @@ msgstr "Ledtid (Dagar)" msgid "Lead Type" msgstr "Potentiell Kund Typ" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "Potentiell Kund {0} är lagd till Prospekt {1}." @@ -28987,7 +29013,7 @@ msgstr "Förklaring" msgid "Length (cm)" msgstr "Längd (cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Lägre än Belopp" @@ -29016,7 +29042,7 @@ msgstr "Nivå (Stycklista)" msgid "Lft" msgstr "Vänster" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Skulder" @@ -29046,7 +29072,7 @@ msgstr "Körkort Nummer" msgid "License Plate" msgstr "Registrering Nummer" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Gräns Överskriden" @@ -29142,8 +29168,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Länkning med Kund Misslyckades. Var god försök igen." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Länkning med Leverantör Misslyckades. Var god försök igen." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29309,7 +29335,7 @@ msgstr "Förlorad Anledning Detalj" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Förlorad Anledningar" @@ -29395,7 +29421,7 @@ msgstr "Lojalitet Poäng Inlösen" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Lojalitet poäng kommer att beräknas från spenderad belopp (via försäljning faktura), baserat på vald inlösen faktor." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Lojalitet Poäng: {0}" @@ -29633,7 +29659,7 @@ msgstr "Service Schema Detalj" msgid "Maintenance Schedule Item" msgstr "Service Schema Post" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Service Schema skapades inte för alla Artiklar. Klicka på 'Skapa Schema'" @@ -29730,7 +29756,7 @@ msgstr "Service Besök" msgid "Maintenance Visit Purpose" msgstr "Service Besök Anledning" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Service start datum kan inte vara före leverans datum för Serie Nummer {0}" @@ -29877,7 +29903,7 @@ msgstr "Erfordrad för Balans Rapport" msgid "Mandatory For Profit and Loss Account" msgstr "Erfodrad för Resultat Rapport" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Erfodrad Saknas" @@ -29960,8 +29986,8 @@ msgstr "Manuell post kan inte skapas! Inaktivera automatisk post för uppskjuten #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30183,7 +30209,7 @@ msgstr "Mappar Intern Order ..." msgid "Mapping Subcontracting Order ..." msgstr "Mappar Order ..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Mappar {0} ..." @@ -30361,10 +30387,6 @@ msgstr "Stäm av överföringar inom 'N' dagar" msgid "Matched" msgstr "Avstämd" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "Avstämd Fält" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30391,7 +30413,7 @@ msgstr "Material Förbrukning" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Material Förbrukning för Produktion" @@ -30502,7 +30524,7 @@ msgstr "Material Begäran" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Material Begäran Datum" @@ -30552,7 +30574,7 @@ msgstr "Material Begäran Detalj" msgid "Material Request Item" msgstr "Material Begäran Artikel" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Material Begäran Nummer" @@ -30574,7 +30596,7 @@ msgstr "Material Begäran Typ" msgid "Material Request already created for the ordered quantity" msgstr "Material Begäran är redan skapad för order kvantitet" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Material Begäran är inte skapad eftersom kvantitet för Råmaterial är redan tillgänglig." @@ -30588,7 +30610,7 @@ msgstr "Material Begäran för maximum {0} kan skapas för Artikel {1} mot Förs msgid "Material Request used to make this Stock Entry" msgstr "Material Begäran användes för att skapa detta Lager Post" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Material Begäran {0} avbruten eller stoppad" @@ -30708,14 +30730,14 @@ msgstr "Material till Leverantör" msgid "Materials To Be Transferred" msgstr "Råmaterial att Överföra" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Material mottagen mot {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "Material måste överföras till Pågående Arbete Lager för Jobbkort {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30883,7 +30905,7 @@ msgstr "Megajoule" msgid "Megawatt" msgstr "Megawatt" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Ange Värdering Pris i Artikel Inställningar." @@ -30918,7 +30940,7 @@ msgstr "Sammanfoga Framsteg" msgid "Merge similar Account Heads" msgstr "Slå ihop liknande Konto Poster" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Slå Samman Moms från flera dokument" @@ -31264,7 +31286,7 @@ msgstr "Diverse Kostnader" msgid "Mismatch" msgstr "Felavstämd" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Saknas" @@ -31273,11 +31295,11 @@ msgstr "Saknas" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Konto Saknas" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "Konton Saknas" @@ -31302,11 +31324,11 @@ msgstr "Saknad Beroende" msgid "Missing Filters" msgstr "Saknade Filter" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Bokslut Register Saknas" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Färdig Artikel Saknas" @@ -31314,7 +31336,7 @@ msgstr "Färdig Artikel Saknas" msgid "Missing Formula" msgstr "Formel Saknas" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Saknad Artikel" @@ -31326,7 +31348,7 @@ msgstr "Parameter Saknas" msgid "Missing Payments App" msgstr "Betalning App Saknas" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "Saknar Erforderlig Filter" @@ -31338,7 +31360,7 @@ msgstr "Serie Nummer Paket Saknas" msgid "Missing Warehouse" msgstr "Lager Saknas" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "Konfiguration för {0} saknas." @@ -31346,12 +31368,12 @@ msgstr "Konfiguration för {0} saknas." msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "E-post Mall saknas för Leverans. Ange Mall i Leverans Inställningar." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Erfordrad filter saknas: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Värde Saknas" @@ -31600,17 +31622,17 @@ msgstr "Flera Konto" msgid "Multiple Accounts (Journal Template)" msgstr "Flera Konto (Journal Mall)" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Flera Lojalitet Program hittades för Kund {}. Välj manuellt." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "Flera Kassa Öppning Poster" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Flera Pris Regler finns med samma villkor, lös konflikter genom att tilldela prioritet. Pris Regler: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31630,7 +31652,7 @@ msgstr "Flera bolag fält tillgängliga: {0}. Välj manuellt." msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Flera Bokföring År finns för datum {0}. Ange Bolag för Bokföring År" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "Flera artiklar kan inte väljas som färdiga artiklar" @@ -31639,10 +31661,10 @@ msgid "Music" msgstr "Musik" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Måste vara Heltal" @@ -31727,11 +31749,7 @@ msgstr "Namngivning Serie erfodras" msgid "Naming Series options" msgstr "Namngivning Serie alternativ" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "Namngivning Serie uppdaterad" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "Namngivning serie '{0}' för DocType '{1}' innehåller inte standard '.' eller '{{' avgränsare. Använder reserv extraktion." @@ -31775,7 +31793,7 @@ msgstr "Behöv Statistik" msgid "Negative Batch Report" msgstr "Negativ Parti Rapport" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Negativ Kvantitet är inte tillåtet" @@ -31785,12 +31803,12 @@ msgstr "Negativ Kvantitet är inte tillåtet" msgid "Negative Stock" msgstr "Negativt Lager" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "Negativt Lager Fel" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Negativ Värdering Pris är inte tillåtet" @@ -31868,8 +31886,8 @@ msgstr "Netto Belopp" msgid "Net Amount (Company Currency)" msgstr "Netto Belopp (Bolag Valuta)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Netto Tillgång Värde per" @@ -31919,7 +31937,7 @@ msgstr "Netto Timpris" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Netto Resultat" @@ -31927,7 +31945,7 @@ msgstr "Netto Resultat" msgid "Net Profit Ratio" msgstr "Netto Resultat Förhållande" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Netto Resultat" @@ -31941,11 +31959,11 @@ msgstr "Netto Resultat" msgid "Net Purchase Amount" msgstr "Netto Inköp Belopp" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "Netto Inköp Belopp Erfordras" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "Netto Inköp Belopp ska vara lika med inköp belopp för enskild Tillgång." @@ -32189,7 +32207,7 @@ msgstr "Ny Bokföring År - {0}" msgid "New Income" msgstr "Ny Intäkt" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "Ny Faktura" @@ -32262,6 +32280,7 @@ msgid "New Task" msgstr "Ny Uppgift" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Ny Version" @@ -32274,9 +32293,9 @@ msgstr "Ny Lager Namn" msgid "New Workplace" msgstr "Ny Arbetsplats" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Ny Kredit Gräns är lägre än aktuell utestående belopp för kund. Kredit Gräns måste vara minst {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32284,6 +32303,10 @@ msgstr "Ny Kredit Gräns är lägre än aktuell utestående belopp för kund. Kr msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Nya fakturor skapas enligt schema även om aktuella fakturor är obetalda eller förfallna" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Ny utgivning datum ska vara i framtiden" @@ -32296,7 +32319,7 @@ msgstr "Ny reviderad budget skapad" msgid "New task" msgstr "Ny Uppgift" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Nya {0} Prisregler skapade" @@ -32360,16 +32383,15 @@ msgstr "Inget Bolag Hittades" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Ingen Kund hittades för Inter Bolag Transaktioner som representerar Bolag {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "Inga Kunder hittades med valda alternativ." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Ingen Försäljning Följesedel vald för Kund {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "Inga DocTypes i Att ta bort lista. Skapa eller importera listan innan godkännande." @@ -32377,15 +32399,15 @@ msgstr "Inga DocTypes i Att ta bort lista. Skapa eller importera listan innan go msgid "No Impact on Accounting Ledger" msgstr "Ingen påverkan på Bokföring Register" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Ingen Artikel med Streck/QR Kod {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Ingen Artikel med Serie Nummer {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "Inga Artiklar har valts för överföring." @@ -32428,11 +32450,6 @@ msgstr "Ingen Behörighet" msgid "No Purchase Orders were created" msgstr "Inga inköp Order skapades" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "Inga Poster för dessa inställningar." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Inget valt" @@ -32535,6 +32552,10 @@ msgstr "Inget bolag hittades." msgid "No contacts with email IDs found." msgstr "Inga kontakter med e-post hittades." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Ingen data för denna period" @@ -32580,7 +32601,7 @@ msgstr "Ingen fil har laddats upp eller URL inte angiven." msgid "No invoice linked" msgstr "Ingen faktura länkad" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "Ingen artikel tillgänglig för överföring." @@ -32617,10 +32638,6 @@ msgstr "Inga fler underordnade till Vänster" msgid "No more children on Right" msgstr "Inga fler underordnade till Höger" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "Ingen namngivning serie definierad" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Antal Leveranser" @@ -32717,7 +32734,7 @@ msgstr "Inga utestående fakturor hittades" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Inga utestående fakturor kräver växelkurs omvärdering" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "Inga utestående {0} hittades för {1} {2} som uppfyller angiven filter." @@ -32755,15 +32772,20 @@ msgstr "Inga avstämning åtgärder hittades" msgid "No record found" msgstr "Ingen post hittad" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "Inga poster hittades i Tilldelning tabell" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "Inga poster hittades i Faktura Tabell" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "Inga poster hittades i Betalning Tabell" @@ -32792,7 +32814,7 @@ msgstr "Inga regler inställda ännu" msgid "No stock available for this batch." msgstr "Inget lager tillgängligt för denna parti." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "Inga Lager Register Poster skapade. Ange kvantitet eller grund pris för artiklar på rätt sätt och försök igen." @@ -32829,7 +32851,7 @@ msgstr "Inga Värden" msgid "No vouchers found for this transaction" msgstr "Inga verifikat hittades för denna transaktion" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "Inget lager hittades för bolag {0}. Ange Standard Lager i Standard Artikel Inställningar eller Lager Inställningar." @@ -32837,11 +32859,6 @@ msgstr "Inget lager hittades för bolag {0}. Ange Standard Lager i Standard Arti msgid "No {0} found for Inter Company Transactions." msgstr "Ingen {0} hittades för Inter Bolag Transaktioner." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "Nr." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32893,7 +32910,7 @@ msgstr "Ej Nollvärde" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "Ej Virtuell Stycklista kan inte skapas för ej lagerförd artikel {0}." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Ingen av Artiklar har någon förändring i kvantitet eller värde." @@ -32904,8 +32921,8 @@ msgid "Normal Balances" msgstr "Normala Saldon" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "St" @@ -32919,8 +32936,8 @@ msgstr "St" msgid "Not Applicable" msgstr "Ej Tillämpningbar" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Ej Tillgänglig" @@ -32983,10 +33000,6 @@ msgstr "Ej Startad" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "Kunde inte hitta tidigare Bokföring År för angiven bolag." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Ej Tillåtet att ange alternativ Artikel för Artikel {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Ej Tillåtet att skapa Bokföring Dimension för {0}" @@ -33003,10 +33016,6 @@ msgstr "Ej Auktoriserad eftersom {0} överskrider gränserna" msgid "Not authorized to edit frozen Account {0}" msgstr "Ej Tillåtet redigera stängd konto {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "Ej konfigurerad" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "Ej på Lager " @@ -33019,7 +33028,7 @@ msgstr "Ej på Lager" msgid "Not permitted to make Purchase Orders" msgstr "Ej tillåtet att skapa Inköp Ordrar" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "Ej tillåtet att läsa Jobbkort" @@ -33264,8 +33273,8 @@ msgid "Numeric Values" msgstr "Numeriska Värden" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Nummer är inte angiven i XML fil" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33440,12 +33449,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Om vald, kommer faktura spärras tills angiven datum" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "När Arbetsorder är Stängd kan den inte återupptas." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "En kund kan endast ingå i ett enda Lojalitet Program." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33479,7 +33488,7 @@ msgstr "Endast \"Kontering Poster\" som skapas mot detta förskott konto stöds. msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Endast CSV och Excel filer kan användas för data import. Kontrollera filformat du försöker ladda upp" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "Endast CSV filer är tillåtna" @@ -33544,7 +33553,7 @@ msgstr "Endast en operation kan ha \"Är Slutgiltig Färdig Artikel\" angiven n msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "Endast en version av ett Artikel Paket kan vara aktiv åt gången för given överordnad artikel. Aktivering av en version inaktiverar tidigare aktiva Artikel Paket." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "Endast en {0} post kan skapas mot Arbetsorder {1}" @@ -33611,7 +33620,7 @@ msgstr "Öppna Händelse" msgid "Open Events" msgstr "Öppna Händelser" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Öppna Formulär Vy" @@ -33764,7 +33773,7 @@ msgstr "Öppning Saldo = Period Start, Stängning Saldo = Period Slut, Period F #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Öppning Saldo Detalj" @@ -33794,7 +33803,7 @@ msgstr "Öppning Datum" msgid "Opening Entry" msgstr "Öppning Post" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Öppning Faktura Under Behandling" @@ -33822,7 +33831,7 @@ msgstr "Öppning Faktura Post" msgid "Opening Invoice Tool" msgstr "Öppning Faktura Verktyg" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "Öppning Fakturan har avrundning justering på {0}.

                    '{1}' konto erfordras för att bokföra dessa värden. Ange det i Bolag: {2}.

                    Eller så kan '{3}' aktiveras för att inte bokföra någon avrundning justering." @@ -33831,7 +33840,7 @@ msgstr "Öppning Fakturan har avrundning justering på {0}.

                    '{1}' konto msgid "Opening Invoices" msgstr "Öppning Fakturor" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Öppning Fakturor Översikt" @@ -33861,20 +33870,20 @@ msgstr "Öppning Försäljning Fakturor är skapade." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Öppning Lager" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "Öpning Lager kan endast anges för Lager Artiklar." -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "Öppning Lager kan inte skapas eftersom lager transaktioner redan finns för artikel {0}." -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "Öppning Lager för artiklar med serie eller parti nummer måste anges via Lager Inventering." @@ -33883,7 +33892,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "Öppning Lager Inventering skapades med noll Värdering Pris: {0}" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "Öppning Lager Inventering skapad: {0}" @@ -33926,7 +33935,7 @@ msgstr "Drift Komponenter Kostnad" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Drift Kostnad" @@ -34017,7 +34026,7 @@ msgstr "Åtgärd Rad Nummer" msgid "Operation Time" msgstr "Åtgärd Tid" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Åtgärd Tid måste vara högre än 0 för Åtgärd {0}" @@ -34041,8 +34050,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "Åtgärd {0} tillhör inte Arbetsorder {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Åtgärd {0} är längre än alla tillgängliga arbetstider för Arbetsplats {1}, dela upp Åtgärd i flera Åtgärder" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34227,6 +34236,10 @@ msgstr "Möjlighet {0} skapad" msgid "Optimize Route" msgstr "Optimera Sökväg" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "Valfritt. Välj specifik produktion post att återföra." @@ -34243,10 +34256,6 @@ msgstr "Tillval.Kommer att användas att filtrera i olika transaktioner." msgid "Optional. Used with Financial Report Template" msgstr "Valfri. Används med Finans Rapport Mall" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "Alternativt kan antal siffror anges i serie med hjälp av punkt (.) följt av hash (#). Till exempel betyder '.####' att serie kommer att ha fyra siffror. Standardvärde är fem siffror." - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Order Belopp" @@ -34532,7 +34541,7 @@ msgid "Out of stock" msgstr "Ej på Lager" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "Föråldrad Kassa Öppning Post" @@ -34586,7 +34595,7 @@ msgstr "Utestående (Bolag Valuta)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34667,11 +34676,11 @@ msgstr "Över Order Tillåtelse (%)" msgid "Over Picking Allowance (%)" msgstr "Över Plock Tillåtelse (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "Över Följesedel" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "Över Följesedel/Leverans av {0} {1} ignoreras för artikel {2} eftersom du har {3} roll." @@ -34688,14 +34697,14 @@ msgstr "Över Överföring Tillåtelse (%)" msgid "Over Withheld" msgstr "Över Avdrag" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "Överfakturering av {0} {1} ignoreras för artikel {2} eftersom du har {3} roll." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "Överfakturering av {} ignoreras eftersom du har {} roll." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34744,10 +34753,6 @@ msgstr "Försenade Uppgifter" msgid "Overdue and Discounted" msgstr "Försenad och Rabatterad" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Överlappning i resultat mellan {0} och {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Överlappande villkor hittade mellan:" @@ -34813,6 +34818,11 @@ msgstr "PAN Nummer" msgid "PCV" msgstr "Period Stängning Verifikat" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "Period Stängning Verifikat Pausad" @@ -34860,7 +34870,7 @@ msgstr "Kassa" msgid "POS Additional Fields" msgstr "Kassa Extra Fält" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "Kassa Stängd" @@ -34958,8 +34968,8 @@ msgid "POS Invoice is not submitted" msgstr "Kassa Faktura är inte godkänd" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "Kassa Faktura skapades inte av Användare {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35018,7 +35028,7 @@ msgstr "Kassa Öppning Post - {0} är föråldrad. Stäng Kass och skapa ny Kass msgid "POS Opening Entry Cancellation Error" msgstr "Fel vid annullering av Kassa Öppning Post" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "Kassa Öppning Post Annullerad" @@ -35039,7 +35049,7 @@ msgstr "Kassa Öppning Post Saknas" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "Kasa Öppning Post kan inte annulleras eftersom det finns okonsoliderade fakturor." -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "Kassa Öppning Post annullerad. Uppdatera Sida." @@ -35062,7 +35072,7 @@ msgstr "Kassa Betalning Sätt" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "Kassa Profil" @@ -35082,8 +35092,8 @@ msgstr "Kassa Profil Användare" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "Kassa Profil matchar inte {}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35094,20 +35104,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "Kassa Profil {0} kan inte inaktiveras eftersom det finns pågående Kassa sessioner." #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "Kassa Profil {} innehåller Betalning Sätt {}. Ta bort Betalning Sätt för att inaktivera detta läge." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "Kassa Profil {} tillhör inte {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "Kassa Profil {} finns inte." +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "Kassa Profil {} är inaktiverad." +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35136,11 +35146,11 @@ msgstr "Kassa Inställningar" msgid "POS Transactions" msgstr "Kassa Transaktioner" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "Kassa stängd {0}. Uppdatera sida." -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "Kassa Faktura {0} är skapad" @@ -35159,7 +35169,7 @@ msgstr "PSOA Projekt" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "Förpackning Nummer används redan. Prova från Förpackning Nummer {0}" @@ -35784,7 +35794,7 @@ msgstr "Delar Per Million" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35911,7 +35921,7 @@ msgstr "Parti Stämmer Ej" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35997,7 +36007,7 @@ msgstr "Parti Specifik Artikel" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36018,7 +36028,7 @@ msgstr "Parti Typ" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "Parti Typ och Parti kan endast anges för Fordring / Skuld konto

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Parti Typ och Parti erfodras för {0} konto" @@ -36054,8 +36064,8 @@ msgid "Party is required" msgstr "Parti erfodrdras" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." -msgstr "Parti erfordras för att skapa kontering post." +msgid "Party is required to create a payment entry." +msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 msgid "Party type is required to create a payment entry." @@ -36564,7 +36574,7 @@ msgstr "Betalning Referenser" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36639,7 +36649,7 @@ msgstr "Betalning Schema" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "Betalning Schema baserad Betalning Begäran kan inte skapas eftersom betalning transaktion redan finns för detta dokument." -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "Betalning Scheman" @@ -36661,7 +36671,7 @@ msgstr "Betalning Scheman" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36761,8 +36771,8 @@ msgid "Payment Type" msgstr "Betalning Typ" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Betalning Typ måste vara en av Inbetalning, Utbetalning eller Intern Överföring" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36968,11 +36978,11 @@ msgstr "Väntar på aktiviteter för idag" msgid "Pending processing" msgstr "Väntar på bearbetning" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "Väntande Kvantitet kan inte vara högre än angiven kvantitet." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "Väntande Kvantitet kan inte vara negativ." @@ -37489,12 +37499,12 @@ msgstr "Plaid Klient ID" msgid "Plaid Environment" msgstr "Plaid Miljö" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Plaid Länk Misslyckades" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Plaid Länk Uppdatering erfordras" @@ -37516,7 +37526,7 @@ msgstr "Plaid Hemlighet" msgid "Plaid Settings" msgstr "Plaid Inställningar" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Plaid transaktion synkronisering fel" @@ -37667,15 +37677,6 @@ msgstr "Växter och Maskiner" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Ladda om Artiklar och uppdatera Plocklista för att fortsätta. För att annullera, annullera Plocklista." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Välj Bolag" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Välj Bolag" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37683,7 +37684,6 @@ msgstr "Välj Kund" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Välj Leverantör" @@ -37691,19 +37691,19 @@ msgstr "Välj Leverantör" msgid "Please Set Priority" msgstr "Ange Prioritet" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Ange Leverantör Grupp i Inköp Inställningar." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Specificera Konto" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Lägg till Roll \"Leverantör\" till användare {0}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Lägg till Betalning Sätt och Öppning Saldo Information." @@ -37719,7 +37719,7 @@ msgstr "Lägg till Offert Förfråga i sidofält i Portal Inställningar." msgid "Please add Root Account for - {0}" msgstr "Lägg till Överordnad Konto för - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Lägg till Tillfällig Öppning Konto i Kontoplan" @@ -37727,35 +37727,32 @@ msgstr "Lägg till Tillfällig Öppning Konto i Kontoplan" msgid "Please add an account for the Bank Entry rule." msgstr "Lägg till konto för Bank Post regel." -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." -msgstr "Lägg till åtminstone en Namngivning Serie." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" +msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "Lägg till minst en rad i Artikel Inställningar med Bolag innan öppning lager anges." -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Lägg till minst en Serie Nr / Parti Nr" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Lägg till Bank Konto kolumn" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Lägg till Konto till Överordnad Bolag - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Lägg till konto i rot nivå Bolag - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Lägg till roll {1} till användare {0}." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Justera kvantitet eller redigera {0} för att fortsätta." @@ -37797,7 +37794,7 @@ msgstr "Välj antingen Med Åtgärder eller Färdig Artikel Baserad Åtgärd Kos msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "Välj 'Aktivera Serie och Parti Nummer för Artikel' i {0} för att skapa Serie och Parti Paket för artikel." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Kontrollera felmeddelande och vidta nödvändiga åtgärder för att åtgärda fel och starta sedan ombokning igen." @@ -37810,11 +37807,11 @@ msgstr "Kontrollera Plaid Klient ID och Hemlighet" msgid "Please check your email to confirm the appointment" msgstr "Kontrollera din E-post för att bekräfta tid" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Klicka på \"Skapa Schema\"" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Klicka på \"Skapa Schema\" för att hämta Serie Nummer skapad för Artikel {0}" @@ -37830,15 +37827,15 @@ msgstr "Avsluta jobb först innan angivning av Väntande Kvantitet" msgid "Please configure accounts for the Bank Entry rule." msgstr "Konfigurera konton för Bank Post regel." -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Kontakta någon av följande användare för att utöka kredit gränser för {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Kontakta någon av följande användare för att {} denna transaktion." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Kontakta administratör för att utöka kredit gränser för {0}." @@ -37846,11 +37843,11 @@ msgstr "Kontakta administratör för att utöka kredit gränser för {0}." msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Konvertera Överordnad Konto i motsvarande Dotter Bolag till ett Grupp Konto." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Skapa Kund från Potentiell Kund {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Skapa Landad Kostnad Verifikat mot fakturor som har \"Uppdatera Lager\" aktiverad." @@ -37862,7 +37859,7 @@ msgstr "Skapa Bokföring Dimension vid behov." msgid "Please create purchase from internal sale or delivery document itself" msgstr "Skapa Inköp från intern Försäljning eller Följesedel" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Skapa Inköp Följesdel eller Inköp Faktura för Artikel {0}" @@ -37874,11 +37871,11 @@ msgstr "Ta bort Artikel Paket {0} innan sammanslagning av {1} med {2}" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "Inaktivera Arbetsflöde tillfälligt för Journal Post {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Bokför inte kostnader för flera Tillgångar mot enskild Tillgång." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Skapa inte mer än 500 Artiklar åt gång" @@ -37903,8 +37900,8 @@ msgid "Please enable {0} in the {1}." msgstr "Aktivera {0} i {1}." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Aktivera {} i {} för att tillåta samma Artikel i flera rader" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37915,12 +37912,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Kontrollera att {0} konto {1} är Skuld Konto. Ändra Konto Typ till Skuld Konto Typ eller välj ett annat konto." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Kontrollera att {} konto är Balans Rapport konto." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Kontrollera att {} konto {} är fordring konto." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37935,7 +37932,7 @@ msgstr "Ange Växel Belopp Konto" msgid "Please enter Approving Role or Approving User" msgstr "Ange Godkännande Roll eller Godkännande Användare" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Vänligen ange Parti Nummer" @@ -37951,7 +37948,7 @@ msgstr "Ange Leverans Datum" msgid "Please enter Employee Id of this sales person" msgstr "Ange Anställning ID för denna Säljare" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Ange Kostnad Konto" @@ -37960,7 +37957,7 @@ msgstr "Ange Kostnad Konto" msgid "Please enter Item Code to get Batch Number" msgstr "Ange Artikel Kod att hämta Parti Nummer" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Ange Artikel Kod att hämta Parti Nummer" @@ -37996,7 +37993,7 @@ msgstr "Ange Referens Datum" msgid "Please enter Root Type for account- {0}" msgstr "Ange Konto Klass för konto {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Vänligen ange Serienummer" @@ -38126,8 +38123,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "Vänligen generera Ta Bort lista innan godkännade" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Importera konton mot moderbolag eller aktivera {} i bolag inställningar." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38162,11 +38159,7 @@ msgstr "Ange Aktuell och Ny Stycklista för ersättning." msgid "Please pull items from Delivery Note" msgstr "Hämta Artiklar från Försäljning Följesedel" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Rätta till och försök igen." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Uppdatera eller återställ Plaid Länk för Bank {}." @@ -38195,12 +38188,12 @@ msgstr "Spara Försäljning Order innan du lägger till ett leverans schema." msgid "Please select Template Type to download template" msgstr "Välj Mall Typ att ladda ner mall" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Välj Tillämpa Rabatt på" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Välj Stycklista mot Artikel {0}" @@ -38216,9 +38209,9 @@ msgstr "Välj Bank Konto" msgid "Please select Category first" msgstr "Välj Kategori" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Välj Avgift Typ" @@ -38228,8 +38221,8 @@ msgstr "Välj Bolag" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Välj Bolag och Registrering Datum för att hämta poster" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38251,7 +38244,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Välj Befintligt Bolag att skapa Kontoplan" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Välj Färdig Artikel för Service Artikel {0}" @@ -38260,6 +38253,10 @@ msgstr "Välj Färdig Artikel för Service Artikel {0}" msgid "Please select Item Code first" msgstr "Välj Artikel Kod" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Välj Service Status som Klar eller ta bort Slutdatum" @@ -38284,11 +38281,11 @@ msgstr "Välj Registrering Datum före val av Parti" msgid "Please select Posting Date first" msgstr "Välj Registrering Datum" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Välj Prislista" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Välj Kvantitet mot Artikel {0}" @@ -38317,6 +38314,7 @@ msgid "Please select a BOM" msgstr "Välj Stycklista" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Välj Bolag" @@ -38324,11 +38322,12 @@ msgstr "Välj Bolag" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Välj Bolag" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Välj Kund" @@ -38337,7 +38336,7 @@ msgstr "Välj Kund" msgid "Please select a Delivery Note" msgstr "Välj Försäljning Följesedel" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Välj Inköp Order." @@ -38349,7 +38348,7 @@ msgstr "Välj Leverantör" msgid "Please select a Warehouse" msgstr "Välj Lager" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Välj Arbetsorder" @@ -38365,6 +38364,7 @@ msgstr "Välj ett bankkonto för att visa bank avstämning utdrag." msgid "Please select a bank and set the date range" msgstr "Välj bank och ange datum intervall" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "Välj Bolag." @@ -38398,22 +38398,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "Välj intervall för leverans schema" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Välj rad att skapa Ombokning Post" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Välj Leverantör för att hämta betalningar." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "Välj transaktion." - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Välj giltig Inköp Order som är konfigurerad för Underleverantör." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Välj värde för {0} Försäljning Offert {1}" @@ -38422,7 +38426,7 @@ msgstr "Välj värde för {0} Försäljning Offert {1}" msgid "Please select an item code before setting the warehouse." msgstr "Välj Artikel Kod innan du anger Lager." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "Välj minst en egenskap värde" @@ -38430,10 +38434,18 @@ msgstr "Välj minst en egenskap värde" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Välj minst ett filter: Artikel Kod, Parti eller Serie Nummer." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "Välj minst en artikel för att uppdatera levererad kvantitet." +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Välj minst en rad att åtgärda" @@ -38442,18 +38454,10 @@ msgstr "Välj minst en rad att åtgärda" msgid "Please select at least one row with difference value" msgstr "Vänligen välj minst en rad med skillnad i värde" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "Välj minst ett schema." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "Välj artikel för att fortsätta" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "Välj minst en åtgärd för att skapa Jobb Kort" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Välj Rätt Konto" @@ -38491,12 +38495,12 @@ msgstr "Välj Artiklar att reservera" msgid "Please select items to unreserve." msgstr "Välj Artiklar att reservera" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Vänligen välj endast en rad för att skapa Ombokning Post" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Välj rader för att skapa Ombokning Poster" @@ -38505,8 +38509,8 @@ msgid "Please select the Company" msgstr "Välj Bolag" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Välj Fler Nivå Program typ för mer än en inlösning regel." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38529,20 +38533,16 @@ msgstr "Välj DocType." msgid "Please select the required filters" msgstr "Välj de filter som krävs" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Välj giltig dokument typ." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Välj Ledig Veckodag" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Välj {0}" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Ange 'Tillämpa Extra Rabatt På'" @@ -38571,8 +38571,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Ange Konto i Lager {0} eller Standard Lager Konto i Bolag {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Ange Bokföring Dimension {} i {}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38601,22 +38601,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Ange E-post/Telefon för Kontakt" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Ange Org.Nr. för Kund \"%s\"" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Ange Org.Nr. för Kund \"{0}\"" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Ange Org.Nr. för Offentlig Förvaltning \"%s\"" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Ange Org.Nr. för Offentlig Förvaltning \"{0}\"" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "Ange Fast Tillgång Konto för Tillgång Kategori {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Ange Tillgång Konto i {} mot {}." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38632,9 +38630,8 @@ msgid "Please set Root Type" msgstr "Ange Konto Klass" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Ange Org.Nr. for Kund '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Ange Org.Nr. for Kund '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38653,15 +38650,15 @@ msgid "Please set a Company" msgstr "Ange Bolag" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Ange Resultat Enhet för Tillgång eller ange Resultat Enhet för Tillgång Avskrivningar för Bolag {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "Ange Tillfälligt Öppning konto för {0} för att skapa Öppning Lager Inventering." -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Ange standard Helg Lista för Bolag {0}" @@ -38678,9 +38675,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "Ange faktisk efterfråga eller försäljning prognos för att skapa planering rapport för material behov." #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Ange adress för Bolag '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "Ange adress för Bolag '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38698,25 +38694,22 @@ msgstr "Ange minst en rad i Moms och Avgifter Tabell" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "Ange både Moms och Org. Nr. för {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Ange Standard Kassa eller Bank Konto i Betalning Sätt {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Ange Standard Kassa eller Bank Konto i Betalning Sätt {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Ange Standard Kassa eller Bank Konto i Betalning Sätt {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Ange Standard Kassa eller Bank Konto i Betalning Sätt {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Ange Standard Valutaväxling Resultat Konto för Bolag {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38747,11 +38740,11 @@ msgstr "Ange filter baserad på Artikel eller Lager" msgid "Please set one of the following:" msgstr "Ange något av följande:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "Ange Öppning Nummer för Bokförda Avskrivningar" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Ange Återkommande efter spara" @@ -38759,7 +38752,7 @@ msgstr "Ange Återkommande efter spara" msgid "Please set the Customer Address" msgstr "Ange Kund Adress" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Ange Standard Resultat Enhet i {0} Bolag." @@ -38814,7 +38807,7 @@ msgstr "Ange {0} i Bolag {1} för att bokföra valutaväxling resultat" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Ange {0} till {1}, samma konto som användes i ursprunglig faktura {2}." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Konfigurera och aktivera Kontoplan Grupp med Kontoklass {0} för bolag {1}" @@ -38822,7 +38815,7 @@ msgstr "Konfigurera och aktivera Kontoplan Grupp med Kontoklass {0} för bolag { msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Dela detta e-post meddelande med support så att de kan hitta och åtgärda problem. " -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Ange Bolag" @@ -38832,8 +38825,8 @@ msgstr "Ange Bolag" msgid "Please specify Company to proceed" msgstr "Ange Bolag att fortsätta" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Ange giltig Rad ID för Rad {0} i Tabell {1}" @@ -38841,11 +38834,11 @@ msgstr "Ange giltig Rad ID för Rad {0} i Tabell {1}" msgid "Please specify a {0} first." msgstr "Ange {0} först." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Ange minst en Egenskap i Egenskap Tabell" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Ange antingen Kvantitet eller Värdering Pris eller båda" @@ -38853,6 +38846,14 @@ msgstr "Ange antingen Kvantitet eller Värdering Pris eller båda" msgid "Please specify from/to range" msgstr "Ange från/till intervall" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Försök igen om en timme." @@ -39016,7 +39017,7 @@ msgstr "Datum" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39041,7 +39042,7 @@ msgstr "Datum" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39084,8 +39085,8 @@ msgstr "Registrering Datum" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Registrering Datum kan inte vara i framtiden" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39093,7 +39094,7 @@ msgstr "Registrering Datum kan inte vara i framtiden" msgid "Posting Date inheritance for exchange gain / loss" msgstr "Bokföring Datum arv för valutaväxling resultat" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "Registrering Datum ändras till dagens datum eftersom Redigera Registrering Datum och Tid är inte valt. Är du säker på att du vill fortsätta?" @@ -39286,6 +39287,10 @@ msgstr "Förbetalt (faktura vid period start)" msgid "Prepaid Expenses" msgstr "Förbetalda Kostnader" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "Ordförande" @@ -39375,7 +39380,7 @@ msgstr "Förhandsgranska Transaktioner" msgid "Preview mode" msgstr "Förhandsgranskning läge" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Föregående Bokslut År är inte stängd" @@ -39517,7 +39522,7 @@ msgstr "Prislista Land" msgid "Price List Currency" msgstr "Prislista Valuta" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Prislista Valuta inte vald" @@ -39638,7 +39643,7 @@ msgstr "Pris är Enhet oberoende" msgid "Price Per Unit ({0})" msgstr "Pris Per Enhet ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "Artikel pris är inte angiven." @@ -39749,7 +39754,7 @@ msgstr "Prissättningsregel väljs först baserat på fältet \"Tillämpa på\", msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "Prissättningsregel görs för att skriva över prislista / definiera rabattprocent, baserat på vissa kriterier." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "Prissättning Regler {0} är uppdaterad" @@ -39957,8 +39962,8 @@ msgid "Priorities" msgstr "Prioriteringar" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "Prioritet får inte vara mindre än 1." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40139,7 +40144,7 @@ msgstr "Behandla Prenumeration" msgid "Process in Single Transaction" msgstr "Process i Singel Transaktion" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "Process förlust kvantitet kan inte vara negativ." @@ -40265,7 +40270,7 @@ msgstr "Artikel Paket" msgid "Product Bundle Balance" msgstr "Artikel Paket Saldo" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "Artikel Paket Komponent" @@ -40290,7 +40295,7 @@ msgstr "Artikel Paket Hjälp" msgid "Product Bundle Item" msgstr "Artikel Paket Artikel" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "Artikel Paket Överordnad" @@ -40493,7 +40498,7 @@ msgstr "Artiklar" msgid "Profit & Loss" msgstr "Resultat" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Resultat i År" @@ -40522,6 +40527,10 @@ msgstr "Resultat Rapport" msgid "Profit and Loss Statement" msgstr "Resultat Rapport" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40530,8 +40539,8 @@ msgstr "Resultat Rapport" msgid "Profit and Loss Summary" msgstr "Resultat Rapport" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Årets Resultat" @@ -40604,7 +40613,7 @@ msgstr "Projekt Status" msgid "Project Summary" msgstr "Projekt Översikt" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Projekt Översikt för {0}" @@ -40684,7 +40693,7 @@ msgstr "Lager Spårning per Projekt" msgid "Project wise Stock Tracking " msgstr "Lager Spårning per Projekt" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Data per Projekt finns inte tillgängligt för Försäljning Offert" @@ -40735,7 +40744,7 @@ msgstr "Förväntad Kvantitet" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40881,7 +40890,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Potentiella Kunder Engagerade men inte Konverterade" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "Skyddad DocType" @@ -40914,9 +40923,9 @@ msgstr "Preliminärt Konto (Tjänst)" msgid "Provisional Expense Account" msgstr "Provisoriskt Kostnad Konto" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Provisoriskt Resultat (Kredit)" @@ -41144,8 +41153,8 @@ msgstr "Inköp Faktura Statistik" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Inköp Faktura kan inte skapas mot befintlig tillgång {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Inköp Faktura {0} är redan godkänd" @@ -41186,7 +41195,7 @@ msgstr "Inköp Fakturor" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41210,11 +41219,11 @@ msgstr "Inköp Fakturor" msgid "Purchase Order" msgstr "Inköp Order" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Inköp Order Belopp" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Inköp Order Belopp (Bolag Valuta)" @@ -41229,7 +41238,7 @@ msgstr "Inköp Order Belopp (Bolag Valuta)" msgid "Purchase Order Analysis" msgstr "Inköp Order Statistik" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Inköp Order Datum" @@ -41278,8 +41287,8 @@ msgid "Purchase Order Required" msgstr "Inköp Order Erfodras" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Inköp Order Erfodras för Artikel {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41338,8 +41347,8 @@ msgid "Purchase Orders to Receive" msgstr "Inköp Ordrar att Ta Emot" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Inköp Ordrar {0} är inte länkade" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41428,8 +41437,8 @@ msgid "Purchase Receipt Required" msgstr "Inköp Följesedel Erfodras" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Inköp Följesedel Erfodras för Artikel {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41448,8 +41457,8 @@ msgid "Purchase Receipt Trends " msgstr "Inköp Följesedel Statistik " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Inköp Följesedel innehar inte någon Artikel som Behåll Prov är aktiverad för." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41676,7 +41685,7 @@ msgstr "K4" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41695,7 +41704,7 @@ msgstr "K4" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41760,7 +41769,7 @@ msgstr "Kvantitet efter Transaktion" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41797,7 +41806,7 @@ msgstr "Kvantitet per Enhet" msgid "Qty To Manufacture" msgstr "Kvantitet att Producera" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "Kvantitet att Producera ({0}) kan inte vara bråkdel för enhet {2}. För att tillåta detta, inaktivera '{1}' i enhet {2}." @@ -41892,7 +41901,7 @@ msgstr "Kvantitet att Förbruka" msgid "Qty to Bill" msgstr "Kvantitet att Betala" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Kvantitet att Producera" @@ -42078,7 +42087,7 @@ msgstr "Kvalitet Kontroll" msgid "Quality Inspection Analysis" msgstr "Kvalitet Kontroll Statistik" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "Kvalitetskontroll är inte Konfigurerad" @@ -42155,7 +42164,7 @@ msgstr "Kvalitet Kontroll {0} är inte godkänd för artikel: {1}" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "Kvalitet Kontroll {0} är avvisad för artikel: {1}" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Kvalitet Kontroll" @@ -42238,7 +42247,7 @@ msgstr "Kvalitet Granskning" msgid "Quality Review Objective" msgstr "Kvalitet Granskning Avsikt" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "Kvantiteter uppdaterade." @@ -42282,12 +42291,12 @@ msgstr "Kvantiteter uppdaterade." #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42438,7 +42447,7 @@ msgstr "Kvantitet erfodras" msgid "Quantity must be greater than zero" msgstr "Kvantitet måste vara högre än noll" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "Kvantitet måste vara högre än noll." @@ -42466,11 +42475,11 @@ msgstr "Kvantitet ska vara högre än 0" msgid "Quantity to Manufacture" msgstr "Kvantitet att Producera" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "Kvantitet att Producera kan inte vara noll för åtgärd {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Kvantitet att Producera måste vara högre än 0." @@ -42478,6 +42487,10 @@ msgstr "Kvantitet att Producera måste vara högre än 0." msgid "Quantity to Scan" msgstr "Kvantitet att Skanna" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42503,7 +42516,7 @@ msgstr "Kvartal {0} {1}" msgid "Query Route String" msgstr "Dataförfrågning Sökväg Sträng" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "Kö Storlek ska vara mellan 5 och 100" @@ -42743,7 +42756,7 @@ msgstr "Initierad av (E-post)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42927,8 +42940,8 @@ msgid "Rate at which this tax is applied" msgstr "Moms Sats" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "Pris på \"{}\" artiklar kan inte ändras" +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43246,7 +43259,7 @@ msgstr "Spärr Anledning" msgid "Reason for Failure" msgstr "Anledning för Fel" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Anledning för Spärr" @@ -43488,8 +43501,8 @@ msgstr "Mottagar Lista är tom. Skapa Mottagar Lista" msgid "Receiving" msgstr "Mottagning" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Senaste Ordrar" @@ -43665,6 +43678,10 @@ msgstr "Registrera betalning post mot kund eller leverantör" msgid "Record a transfer between two bank accounts" msgstr "Registrera överföring mellan två bank konto" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43715,7 +43732,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Rekurs Över Kvantitet får inte vara mindre än 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "Rekursiva Rabatter med Blandat Villkor stöds inte av system" @@ -43795,7 +43812,7 @@ msgstr "Referens #" msgid "Reference #{0} dated {1}" msgstr "Referens # {0} daterad {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Referens Datum för Tidig Betalning Rabatt" @@ -44087,8 +44104,8 @@ msgid "Rejected Warehouse" msgstr "Avvisad Lager" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Avvisad lager och Accepterad lager kan inte vara samma." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44194,7 +44211,7 @@ msgstr "Anmärkning" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44233,7 +44250,7 @@ msgstr "Ta bort noll antal" msgid "Remove item if charges is not applicable to that item" msgstr "Ta bort artikel om avgifter inte är tillämpliga för den" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Borttagna Artiklar med inga förändringar i Kvantitet eller Värde." @@ -44385,7 +44402,7 @@ msgstr "Rapport Fel" msgid "Report Line Items" msgstr "Rapportrad Artiklar" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44468,7 +44485,7 @@ msgstr "Återskapa Fel Logg" msgid "Repost Item Valuation" msgstr "Boka om Artikel Värdering" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "Omvärdering av Artikel har startats om för valda misslyckade poster." @@ -44514,6 +44531,15 @@ msgstr "Bokföring startad i bakgrunden" msgid "Reposting Data File" msgstr "Ombokning av Data Fil" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44598,7 +44624,7 @@ msgstr "Erfodras till Datum " msgid "Reqd Qty (BOM)" msgstr "Begärd Kvantitet (Stycklista)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Erfodras till Datum" @@ -44714,11 +44740,11 @@ msgstr "Begärd Kvantitet" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Begärd Kvantitet: Kvantitet som begärts för inköp, men inte beställt." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Begärande Webbplats" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Förfrågande" @@ -44897,6 +44923,10 @@ msgstr "Reservera" msgid "Reserve Warehouse" msgstr "Reserv Lager" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "Reservera för Råmaterial" @@ -44935,8 +44965,8 @@ msgid "Reserved Qty" msgstr "Reserverad Kvantitet" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "Reserverat Kvantitet ({0}) kan inte vara bråkdel. För att tillåta detta, inaktivera '{1}' i Enhet {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Reserverat Kvantitet ({0}) kan inte vara bråkdel. För att tillåta detta, inaktivera '{1}' i Enhet {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44980,7 +45010,7 @@ msgstr "Reserverad Kvantitet" msgid "Reserved Quantity for Production" msgstr "Reserverad Kvantitet för Produktion" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Reserverad Serie Nummer" @@ -44996,13 +45026,13 @@ msgstr "Reserverad Serie Nummer" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Reserverad" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Reserverad för Parti" @@ -45496,6 +45526,10 @@ msgstr "Returnerad växelkurs är varken heltal eller flyttal." msgid "Returns" msgstr "Retur" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45920,11 +45954,11 @@ msgstr "Åtgärd Ordning Benämning" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Rad # {0}: Kan inte returnera mer än {1} för Artikel {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Rad # {0}: Lägg till serie och partipaket för artikel {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "Rad # {0}: Ange kvantitet för artikel {1} eftersom den inte är noll." @@ -46008,23 +46042,23 @@ msgstr "Rad #{0}: Stycklista hittades inte för Färdig Artikel {1}" msgid "Row #{0}: Batch No {1} is already selected." msgstr "Rad # {0}: Parti Nummer {1} är redan vald." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "Rad #{0}: Parti Nummer {1} finns inte i länkade Intern Underleverantör Order. Välj giltiga Parti Nummer." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Rad # {0}: Kan inte tilldela mer än {1} mot betalning villkor {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "Rad #{0}: Kan inte avbryta denna Produktion Lager Post eftersom fakturerad kvantitet av artikel {1} kan inte vara högre än förbrukad kvantitet." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "Rad #{0}: Det går inte att annullera denna produktion lagerpost eftersom producerad kvantitet av sekundär artikel {1} inte kan vara mindre än levererad kvantitet." -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "Rad #{0}: Kan inte avbryta denna Lager Post eftersom returnerad kvantitet kan inte vara högre än levererad kvantitet för artikel {1} i länkad Intern Underleverantör Order" @@ -46100,13 +46134,16 @@ msgstr "Rad #{0}: Kunde inte hitta tillräckligt många {1} poster för att stä msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Rad # {0}: Kumulativ tröskel får inte vara lägre än Enskild Transaktion tröskel" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "Rad #{0}: Kund Försedd Artikel {1} mot Underleverantör Intern Order Artikel {2} ({3}) kan inte läggas till flera gånger." -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "Rad #{0}: Kund Försedd Artikel {1} kan inte läggas till flera gånger i Intern Underleverantör process." @@ -46118,7 +46155,7 @@ msgstr "Rad #{0}: Kund Försedd Artikel {1} kan inte läggas till flera gånger. msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "Rad #{0}: Kund Försedd Artikel {1} finns inte i Erfordrad Artikel Tabell länkad till Intern Underleverantör Order." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "Rad #{0}: Kund Försedd Artikel {1} överstiger tillgänglig kvantitet via Intern Underleverantör Order" @@ -46126,12 +46163,12 @@ msgstr "Rad #{0}: Kund Försedd Artikel {1} överstiger tillgänglig kvantitet v msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "Rad #{0}: Kund Försedd Artikel {1} har otillräcklig kvantitet i Intern Underleverantör Order. Tillgänglig kvantitet är {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Rad #{0}: Kund Försedd Artikel {1} finns inte i Intern Underleverantör Order {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "Rad #{0}: Kund Försedd Artikel {1} finns inte i Underleverantör Order {2}" @@ -46143,7 +46180,7 @@ msgstr "Rad #{0}: Datum överlappar med annan rad i grupp {1}" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Rad # {0}: Standard Stycklista hittades inte för Färdig Artikel {1} " -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Rad # #{0}: Avskrivning Start Datum erfordras" @@ -46151,6 +46188,10 @@ msgstr "Rad # #{0}: Avskrivning Start Datum erfordras" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Rad # {0}: Duplikat Post i Referenser {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Rad # {0}: Förväntad Leverans Datum kan inte vara före Inköp Datum" @@ -46163,11 +46204,18 @@ msgstr "Rad # {0}: Kostnad Konto inte angiven för Artikel {1}. {2}" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "Rad #{0}: Kostnad konto {1} är inte giltigt för inköp faktura {2}. Endast kostnad konton från ej lager artiklar är tillåtna." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Rad # {0}: Färdig Artikel Kvantitet kan inte vara noll" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46190,8 +46238,8 @@ msgstr "Rad #{0}: Färdig Artikel måste vara {1}" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "Rad #{0}: Färdig Artikel referens erfordras för Sekundär Artikel {1}." -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "Rad #{0}: För Kund Försedd Artikel {1} Lager måste vara {2}" @@ -46203,7 +46251,7 @@ msgstr "Rad # {0}: För {1} kan du välja referens dokument endast om konto kred msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Rad # {0}: För {1} kan du välja referens dokument endast om konto debiteras" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "Rad #{0}: Avskrivning intervall måste vara högre än noll" @@ -46215,6 +46263,10 @@ msgstr "Rad # {0}: Från Datum kan inte vara före Till Datum" msgid "Row #{0}: From Time and To Time fields are required" msgstr "Rad #{0}: Fält Från Tid och Till Tid erfordras" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Rad # {0}: Artikel Lagt till" @@ -46243,16 +46295,16 @@ msgstr "Rad #{0}: Artikel {1} är inte prissatt men '{2}' är inte aktiverad." msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "Rad #{0}: Artikel {1} i lager {2}: Tillgänglig {3}, Behövs {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "Rad #{0}: Artikel {1} är inte Kund Försedd Artikel." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Rad # {0}: Artikel {1} är inte Serialiserad/Parti Artikel. Det kan inte ha Serie Nummer / Parti Nummer mot det." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Rad #{0}: Artikel {1} finns inte i Intern Underleverantör Order {2}" @@ -46268,13 +46320,17 @@ msgstr "Rad # {0}: Artikel {1} är inte service artikel" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "Rad #{0}: Artikel {1} är inte del av ursprunglig artikel post och kan inte läggas till i denna demontering." -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "Rad #{0}: Artikel {1} stämmer inte. Ändring av Artikel Kod är inte tillåten, lägg till annan rad istället." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "Rad #{0}: Artikel {1} stämmer inte. Ändring av Artikel Kod är inte tillåten." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46284,15 +46340,15 @@ msgstr "Rad #{0}: Artikel {1} kvantitet ({2} i lager enhet) stämmer inte övere msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Rad # {0}: Journal Post {1} har inte konto {2} eller redan avstämd mot annan verifikat" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "Rad #{0}: Saknar {1} för {2}." -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "Rad #{0}: Nästa avskrivning datum kan inte vara före datum för tillgänglig för användning" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "Rad #{0}: Nästa avskrivning datum kan inte vara före inköp datum" @@ -46304,24 +46360,48 @@ msgstr "Rad # {0}: Otillåtet att ändra Leverantör eftersom Inköp Order finns msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Rad # {0}: Endast {1} tillgänglig att reservera för artikel {2} " -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "Rad #{0}: Ingående Ackumulerad Avskrivning måste vara lägre än eller lika med {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "Rad #{0}: Överförbrukning av Kund Försedd Artikel {1} mot Arbetsorder {2} är inte tillåten i Intern Underleverantör process." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Rad # {0}: Välj Artikel Kod för Montering Artiklar" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Rad # {0}: Välj Stycklista Nummer för Montering Artiklar" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "Rad #{0}: Välj Färdig Artikel mot vilken denna Kund Försedd Artikel ska användas." @@ -46337,6 +46417,10 @@ msgstr "Rad # {0}: Ange Ombeställning Kvantitet" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Rad # {0}: Uppdatera konto för uppskjutna intäkter/kostnader i artikel rad eller standard konto i bolag" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46356,8 +46440,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Rad # {0}: Kvantitet måste vara psitivt tal" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Rad # {0}: Kvantitet ska vara mindre än eller lika med tillgänglig kvantitet att reservera (verklig antal - reserverad antal) {1} för artikel {2} mot parti {3} i lager {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46379,7 +46463,7 @@ msgstr "Rad #{0}: Kvantitet kan inte vara negativ tal. Ange kvantitet eller ta b msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Rad # {0}: Kvantitet för Artikel {1} kan inte vara noll." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "Rad #{0}: Kvantitet för Artikel {1} kan inte vara mer än {2} {3} mot Intern Underleverantör Order {4}" @@ -46387,17 +46471,17 @@ msgstr "Rad #{0}: Kvantitet för Artikel {1} kan inte vara mer än {2} {3} mot I msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Rad # {0}: Kvantitet att reservera för Artikel {1} ska vara högre än 0." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Rad #{0}: Pris måste vara samma som {1}: {2} ({3} / {4}) " -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Rad # {0}: Referens Dokument Typ måste vara Inköp Order, Inköp Faktura eller Journal Post" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Rad # {0}: Referens Dokument Typ måste vara Försäljning Order, Försäljning Faktura, Journal Post eller Påmminelse" @@ -46417,11 +46501,11 @@ msgstr "Rad #{0}: Reparation kostnad {1} överstiger tillgängligt belopp {2} f msgid "Row #{0}: Return Against is required for returning asset" msgstr "Rad #{0}: Retur mot erfordras för returnerande tillgång" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "Rad #{0}: Returnerad kvantitet kan inte vara högre än tillgänglig kvantitet för artikel {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "Rad #{0}: Returnerad kvantitet kan inte vara högre än tillgänglig kvantitet att returnera för artikel {1}" @@ -46431,18 +46515,19 @@ msgstr "Rad # {0}: Sekundär Artikel Kvantitet kan inte vara noll" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "Rad #{0}: Försäljning pris för artikel {1} är lägre än {2}.\n" -"\t\t\t\t\tFörsäljning {3} ska vara minst {4}.

                    Alternativt,\n" -"\t\t\t\t\tinaktivera '{5}' i {6} för att ignorera\n" -"\t\t\t\t\tdenna validering." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "Rad #{0}: Sekvens ID måste vara {1} eller {2} för Åtgärd {3}." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Rad # {0}: Serie Nummer {1} tillhör inte Parti {2}" @@ -46455,7 +46540,7 @@ msgstr "Rad # {0}: Serie Nummer {1} för artikel {2} är inte tillgänglig i {3} msgid "Row #{0}: Serial No {1} is already selected." msgstr "Rad # {0}: Serie Nummer {1} är redan vald." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "Rad #{0}: Serie Nummer {1} finns inte i länkad Intern Underleverantör Order. Välj giltiga Serie Nummer." @@ -46479,7 +46564,7 @@ msgstr "Rad # {0}: Ange Leverantör för artikel {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "Rad #{0}: Eftersom \"Spåra Halvfärdiga Artiklar\" är aktiverat kan inte Stycklista {1} användas för underenhet artiklar" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Rad #{0}: Lager måste vara samma som Kund Lager {1} från länkad Intern Underleverantör Order" @@ -46548,7 +46633,7 @@ msgstr "Rad # {0}: Kvantitet ej tillgänglig för reservation för Artikel {1} p msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "Rad #{0}: Lager kvantitet {1} ({2}) för artikel {3} får inte överstiga {4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Rad #{0}: Lager måste vara samma som Kund Lager {1} från länkad Intern Underleverantör Order" @@ -46556,19 +46641,27 @@ msgstr "Rad #{0}: Lager måste vara samma som Kund Lager {1} från länkad Inter msgid "Row #{0}: The batch {1} has already expired." msgstr "Rad # {0}: Parti {1} har förfallit." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Rad # {0}: Lager {1} är inte underordnad till grupp lager {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Rad # {0}: Tid Konflikt med rad {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Rad # #{0}: Totalt Antal Avskrivningar får inte vara mindre än eller lika med antal bokförda avskrivningar" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "Rad #{0}: Totalt antal avskrivningar måste vara högre än noll" @@ -46580,11 +46673,15 @@ msgstr "Rad #{0}: Lager {1} stämmer inte med lager {2} i Serie och Parti Paket msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "Rad #{0}: Avdrag Belopp {1} stämmer inte med beräknad belopp {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "Rad #{0}: Arbetsorder finns för hel eller delvis kvantitet av artikel {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Rad #{0}: Kan inte använda Lager Dimension '{1}' i Lager Inventering för att ändra kvantitet eller Värdering Pris. Lager Avstämning med Lager Dimensioner är endast avsedd för att utföra öppning poster." @@ -46592,6 +46689,19 @@ msgstr "Rad #{0}: Kan inte använda Lager Dimension '{1}' i Lager Inventering f msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Rad # {0}: Du måste välja Tillgång för Artikel {1}." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Rad #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Rad # {0}: {1} kan inte vara negativ för Artikel {2}" @@ -46608,6 +46718,14 @@ msgstr "Rad # {0}: {1} erfordras för att skapa Öppning {2} Fakturor" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Rad # {0}: {1} av {2} ska vara {3}. Uppdatera {1} eller välj ett annat konto." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "Rad #{0}: Kvantitet för Artikel {1} kan inte vara noll." @@ -46648,71 +46766,10 @@ msgstr "Rad #{idx}: {from_warehouse_field} och {to_warehouse_field} kan inte var msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "Rad #{idx}: {schedule_date} kan inte vara före {transaction_date}." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Rad # {}: Valuta för {} - {} matchar inte bolag valuta." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "Rad #{}: Antingen Parti ID eller Parti Namn erfordras" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Rad # {}: Bokslut Register ska inte vara tom eftersom du använder flera." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Rad # {}: Kassa Faktura {} har {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Rad # {}: Kassa Faktura {} är inte mot kund {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Rad # {}: Kassa Faktura {} ej godkänd ännu" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "Rad #{}: Parti ID erfordras" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Rad # {}: Tilldela uppgift till medlem." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Rad # {}: Använd annan Bokslut Register." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Rad # {}: Serie Nummer {} kan inte returneras eftersom den inte ingick i original faktura {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Rad #{}: Ursprunglig Faktura {} för Retur Faktura {} är inte konsoliderad." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Rad # {}: Man kan inte lägga till positiva kvantiteter i retur faktura. Ta bort artikel {} för att slutföra retur." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Rad # {}: Artikel {} är redan plockad." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Rad # {}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Rad # {}: {} {} finns inte." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Rad # {}: {} {} tillhör inte bolag {}. Välj giltig {}." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Rad # {0}: Lager erfordras. Ange Standard Lager för Artikel {1} och Bolag {2}" @@ -46725,10 +46782,6 @@ msgstr "Rad # {0}: Åtgärd erfodras mot Råmaterial post {1}" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "Rad {0} plockad kvantitet är mindre än önskad kvantitet, extra {1} {2} erfordras." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Rad # {0}: Artikel {1} hittades inte i tabellen \"Råmaterial Levererad\" i {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Rad # {0}: Godkänd Kvantitet och Avvisad Kvantitet kan inte vara noll samtidigt." @@ -46749,19 +46802,19 @@ msgstr "Rad # {0}: Förskott mot Kund måste vara Kredit" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Rad # {0}: Förskott mot Leverantör måste vara Debet" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Rad # {0}: Tilldelad belopp {1} måste vara lägre än eller lika med utestående faktura belopp {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Rad # {0}: Tilldelad belopp {1} måste vara lägre än eller lika med återstående betalning belopp {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Rad {0}: Eftersom {1} är aktiverat kan råmaterial inte läggas till {2} post. Använd {3} post för att förbruka råmaterial." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Rad # {0}: Stycklista hittades inte för Artikel {1}" @@ -46777,11 +46830,11 @@ msgstr "Rad {0}: Kan inte sälja artikeln {1} från provlager {2}" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Rad # {0}: Konvertering Faktor erfordras" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Rad # {0}: Resultat Enhet {1} tillhör inte Bolag {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Rad # {0}: Resultat Enhet erfodras för Artikel {1}" @@ -46809,24 +46862,24 @@ msgstr "Rad {0}: Leverans Lager kan inte vara samma som Kund Lager för artikel msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Rad # {0}: Förfallo Datum i Betalning Villkor Tabell får inte vara före Registrering Datum" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Rad # {0}: Antingen Följesedel eller Packad Artikel Referens erfordras" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Rad # {0}: Växelkurs erfordras" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "Rad {0}: Förväntad värde efter nyttjande period kan inte vara negativt" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "Rad {0}: Förväntat värde efter nyttjandeperiod måste vara lägre än Netto Inköp Belopp" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "Rad {0}: Kostnad Konto {1} är länkat till {2}. Välj ett konto som tillhör {3}." @@ -46847,6 +46900,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Rad # {0}: Från Tid och till Tid erfordras." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Rad # {0}: Från Tid och till Tid av {1} överlappar med {2}" @@ -46868,8 +46924,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Rad # {0}: Ogiltig Referens {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Rad # {0}: Artikel Moms Mall uppdaterad enligt giltighet och tillämpad moms sats" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46899,7 +46955,7 @@ msgstr "Rad {0}: Åtgärd tid ska vara högre än 0 för åtgärd {1}" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Rad # {0}: Packad Kvantitet måste vara lika med {1} Kvantitet." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Rad # {0}: Packsedel är redan skapad för Artikel {1}." @@ -46923,7 +46979,7 @@ msgstr "Rad # {0}: Betalning mot Försäljning / Inköp Order ska alltid registr msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Rad # {0}: Kontrollera \"Är Förskott\" mot Konto {1} om det är förskott post." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Rad # {0}: Ange giltig referens för Försäljning Följesedel eller Packsedel." @@ -46931,14 +46987,14 @@ msgstr "Rad # {0}: Ange giltig referens för Försäljning Följesedel eller Pac msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Rad # {0}: Välj Stycklista för Artikel {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Rad # {0}: Välj aktiv Stycklista för Artikel {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Rad # {0}: Välj giltig Stycklista för Artikel {1}" - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Rad # {0}: Ange Moms Undantag Anledning i Försäljning Moms och Avgifter" @@ -46955,11 +47011,11 @@ msgstr "Rad # {0}: Ange rätt kod i Betalning Sätt {1}" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Rad # {0}: Projekt måste vara samma som är angiven i tidrapport: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Rad # {0}: Inköp Faktura {1} har ingen efekt på lager." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Rad # {0}: Kvantitet får inte vara högre än {1} för Artikel {2}." @@ -46967,7 +47023,7 @@ msgstr "Rad # {0}: Kvantitet får inte vara högre än {1} för Artikel {2}." msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Rad # {0}: Kvantitet i Lager Enhet kan inte vara noll." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Rad # {0}: Kvantitet måste vara högre än 0." @@ -46979,7 +47035,7 @@ msgstr "Rad {0}: Kvantitet kan inte vara negativ." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "Rad {0}: Försäljning Faktura {1} har redan skapats för {2}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "Rad {0}: Serie / Parti nummer har återställts till värden som är kopplade till Arbetsorder {1} eftersom tidigare valda serie / parti nummer inte hör till denna Arbetsorder." @@ -47004,10 +47060,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "Rad {0}: Hela kostnad belopp för konto {1} i {2} är redan tilldelad." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Rad # {0}: Artikel {1}, Kvantitet måste vara positivt tal" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Rad {0}: {3} Konto {1} tillhör inte bolag {2}" @@ -47060,15 +47116,19 @@ msgstr "Rad # {0}: {1} {2} kan inte vara samma som {3} (Parti Konto) {4}" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Rad # {0}: {1} {2} stämmer inte med {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "Rad {0}: {1} {2} är länkad till {3}. Välj ett dokument som tillhör {4}." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Rad # {0}: {2} Artikel {1} finns inte i {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Rad # {1}: Kvantitet ({0}) kan inte vara bråkdel. För att tillåta detta, inaktivera '{2}' i Enhet {3}." @@ -47107,8 +47167,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Rader: {0} har \"Betalning Post\" som referens typ. Detta ska inte anges manuellt." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Rader: {0} i sektion {1} är ogiltiga. Referens namn ska peka på giltig Betalning Post eller Journal Post" +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47168,10 +47228,6 @@ msgstr "Regelutvärdering slutförd" msgid "Rules evaluation started" msgstr "Regelutvärdering påbörjad" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "Regler för Namngivning Serie Konfigurering" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "Regler för att stämma av mot transaktion beskrivning" @@ -47239,7 +47295,7 @@ msgstr "Service Nivå Avtal Uppfylld Status" msgid "SLA Paused On" msgstr "Service Nivå Avtal Pausad" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "Service Nivå Avtal Parkerad sedan {0}" @@ -47539,8 +47595,8 @@ msgid "Sales Invoice is not submitted" msgstr "Försäljning Faktura är inte godkänd" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "Försäljning Faktura skapas inte av {}" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47756,8 +47812,8 @@ msgstr "Försäljning Order {0} finns redan mot Kund Inköp Order {1}. För att msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "Försäljning Order {0} är redan länkad till projekt {1}, länk hoppas över." -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "Försäljning Order {0} är inte tillgänglig för produktion" @@ -48164,7 +48220,7 @@ msgstr "Samma Artikel" msgid "Same day" msgstr "Samma dag" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Samma artikel och lager kombination är redan angivna." @@ -48196,7 +48252,7 @@ msgstr "Prov Lager" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Prov Kvantitet" @@ -48306,7 +48362,7 @@ msgstr "Skannad Kvantitet" msgid "Schedule Date" msgstr "Förväntad Datum" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "Schema Namn" @@ -48317,7 +48373,7 @@ msgstr "Schema Namn" msgid "Scheduled Date" msgstr "Förväntad Datum" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "Schema Datum erfordras." @@ -48605,7 +48661,7 @@ msgstr "Välj Konto" msgid "Select Accounting Dimension." msgstr "Välj Bokföring Dimension" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Välj Alternativ Artikel" @@ -48626,7 +48682,7 @@ msgid "Select BOM and Qty for Production" msgstr "Välj Stycklista och Kvantitet för Produktion" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Välj Parti Nummer" @@ -48691,7 +48747,7 @@ msgstr "Välj Dimension" msgid "Select Dispatch Address " msgstr "Välj Avsändning Adress " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Välj Personal" @@ -48716,7 +48772,7 @@ msgstr "Välj Artiklar" msgid "Select Items based on Delivery Date" msgstr "Välj Artiklar baserad på Leverans Datum" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr " Välj Artiklar för Kvalitet Kontroll" @@ -48746,7 +48802,7 @@ msgstr "Välj Jobb Ansvarig Adress" msgid "Select Loyalty Program" msgstr "Välj Lojalitet Program" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "Välj Betalning Schema" @@ -48760,13 +48816,13 @@ msgid "Select Quantity" msgstr "Välj Kvantitet" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Välj Serie Nummer" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Välj Serie Nummer och Parti Nummer" @@ -48857,6 +48913,7 @@ msgid "Select an Item Group." msgstr "Välj Artikel Grupp" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Välj Konto för utskrift i Konto Valuta" @@ -48999,10 +49056,14 @@ msgstr "Valda Verifikat" msgid "Selected date is" msgstr "Vald Datum" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "Vald dokument måste ha godkänd status" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49150,7 +49211,7 @@ msgid "Send Emails to Suppliers" msgstr "Skicka E-post till Leverantörer" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Skicka SMS" @@ -49234,7 +49295,7 @@ msgstr "Serie / Parti Paket Saknas" msgid "Serial / Batch No" msgstr "Serie / Parti Nummer" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Serie / Parti Nummer" @@ -49291,10 +49352,11 @@ msgstr "Serie Artikel Inställningar" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49336,6 +49398,10 @@ msgstr "Serie Nummer / Parti" msgid "Serial No Already Assigned" msgstr "Serienummer Redan Tilldelad" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Serie Nummer Antal" @@ -49353,7 +49419,7 @@ msgstr "Serie Nummer Register" msgid "Serial No Range" msgstr "Serienummer Intervall" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "Serienummer Reserverad" @@ -49398,8 +49464,8 @@ msgid "Serial No and Batch" msgstr "Serie Nummer & Parti" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "Serie Nummer och Parti Väljare kan inte användas när Använd Serie Nummer / Parti Fält är aktiverad." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49410,7 +49476,7 @@ msgstr "Serie Nummer och Parti Väljare kan inte användas när Använd Serie Nu msgid "Serial No and Batch Traceability" msgstr "Serie Nummer och Parti Spårbarhet" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "Serie Nummer erfordras" @@ -49430,22 +49496,19 @@ msgstr "Serie Nummer {0} är redan skannad" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Serie Nummer {0} tillhör inte Försäljning Följesedel {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Serie Nummer {0} tillhör inte Artikel {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Serie Nummer {0} finns inte" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "Serie Nummer {0} finns inte " - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "Serienummer {0} är redan levererad. Du kan inte använda dem igen i Produktion / Ompaketering." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49459,25 +49522,26 @@ msgstr "Serienummer {0} är redan tilldelad {1}. Kan endast returneras mot {1}" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Serienummer {0} finns inte i {1} {2}, därför kan du inte returnera det mot {1} {2}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Serie Nummer {0} är under Service Avtal till {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Serie Nummer {0} är under garanti till {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Serie Nummer {0} hittades inte" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Serie Nummer: {0} har redan använts i annan Kassa Faktura." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49497,7 +49561,7 @@ msgstr "Serie Nummer / Partier" msgid "Serial Nos are created successfully" msgstr "Serie Nummer skapade" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Serie Nmmer är reserverade iLagerreservationsinlägg, du måste avboka dem innan du fortsätter." @@ -49598,6 +49662,10 @@ msgstr "Serie och Parti Paket {0} är inte godkänd" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "Serie och Parti Paket {0} är godkänd och deras poster kan inte ändras." +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49646,7 +49714,7 @@ msgstr "Serie Nummer och Parti Reservation" msgid "Serial and Batch Summary" msgstr "Serie och Parti Översikt" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Serie Nummer {0} angiven mer än en gång" @@ -49654,122 +49722,12 @@ msgstr "Serie Nummer {0} angiven mer än en gång" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "Serienummer är inte tillgängliga för artikel {0} under lager {1}. Försök att byta lager." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Namngivning Serie" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Tillgång Avskrivning Nummer Serie (Journal Post)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Namngivning Serie erfordras" @@ -49851,7 +49809,7 @@ msgid "Service Item {0} is disabled." msgstr "Service Artikel är inaktiverad" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "Service Artikel {0} får inte vara Lager Artikel." @@ -49960,12 +49918,12 @@ msgid "Service Stop Date" msgstr "Service Stopp Datum" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Service Stopp Datum kan inte vara efter Service Slut Datum" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "Service Stopp Datum kan inte vara före Service Start Datum" @@ -49989,7 +49947,7 @@ msgstr "Ange Förskott och Tilldela (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Ange Bas Pris Manuellt" @@ -50004,7 +49962,7 @@ msgstr "Ange Standard Leverantör" msgid "Set Delivery Warehouse" msgstr "Ange Leverans Lager" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "Ange leverans kvantitet för Dropship artiklar" @@ -50109,7 +50067,7 @@ msgstr "Ange namn på Serie och Parti Paket baserad på Namngivning Serie" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50127,7 +50085,7 @@ msgstr "Ange Leverantör" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50153,7 +50111,7 @@ msgstr "Ange som Stängd" msgid "Set as Completed" msgstr "Ange som Klart" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Ange som Förlorad" @@ -50251,15 +50209,15 @@ msgstr "Ange regler för att automatiskt klassificera transaktioner. Dra och sl msgid "Set valuation rate for rejected Materials" msgstr "Ange Värdering Pris för Avvisad Material" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Ange {0} i Tillgång Kategori {1} för Bolag {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Ange {0} i Tillgång Kategori {1} eller Bolag {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Ange {0} i Bolag {1}" @@ -50327,7 +50285,7 @@ msgid "Setting up company" msgstr "Konfigurerar Bolag" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "Inställning av {0} erfordras" @@ -50755,6 +50713,7 @@ msgid "Show Completed" msgstr "Visa Klar" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "Visa Kredit / Debet i Bolag Valuta" @@ -50957,7 +50916,7 @@ msgstr "Visa endast Omedelbart Kommande Villkor" msgid "Show pay button in Purchase Order portal" msgstr "Visa betala knapp i Inköp Order Portal" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Visa väntande poster" @@ -51062,11 +51021,11 @@ msgstr "Enkel Python formel tillämpad på läsfält.
                    Numerisk t.ex. 1: r msgid "Simultaneous" msgstr "Samtidig" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "Eftersom det finns aktiva avskrivningsbara tillgångar i denna kategori erfordras följande konton.

                    " -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Eftersom det finns processförlust på {0} enheter för färdig artikel {1}, ska man minska kvantitet med {0} enheter för färdig artikel {1} i Artikel Tabell." @@ -51127,7 +51086,7 @@ msgstr "Hoppa över Material Överföring till Pågående Arbete" msgid "Skip Material Transfer to WIP Warehouse" msgstr "Hoppa över Material Överföring till Pågående Arbete Lager" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "Utelämnade {0} DocTyp(er):
                    {1}" @@ -51183,8 +51142,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "Vissa erfordrade bolagsuppgifter saknas. Du har inte behörighet att uppdatera dem. Kontakta System Ansvarig." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Något gick snett! Försök igen." +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51251,7 +51210,7 @@ msgstr "Från Produktion Post" msgid "Source Stock Entry (Manufacture)" msgstr "Från Produktion Post (Produktion)" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "Från Lager Post {0} tillhör arbetsorder {1}, inte {2}. Använd produktion post från samma Arbetsorder." @@ -51288,8 +51247,8 @@ msgstr "Käll Typ" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51419,7 +51378,7 @@ msgstr "Delad Ärende" msgid "Split Qty" msgstr "Dela Kvantitet" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "Delad Kvantitet måste vara lägre än Tillgång Kvantitet" @@ -51432,7 +51391,12 @@ msgstr "Dela mellan {} konton" msgid "Split commission credit across multiple sales persons." msgstr "Dela upp provision mellan flera säljare." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Delar {0} {1} i {2} rader enligt Betalning Villkor" @@ -51485,7 +51449,7 @@ msgstr "Fas Namn" msgid "Stale Days" msgstr "Inaktuella Dagar" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Inaktuella Dagar ska börja från 1." @@ -51550,10 +51514,26 @@ msgstr "Standard Moms Mall som kan tillämpas på alla Försäljning Transaktion msgid "Standing Name" msgstr "Ställning Namn" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Starta / Återuppta" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Start Datum kan inte vara före Aktuell Datum" @@ -51583,7 +51563,7 @@ msgstr "Start Tid får inte vara senare än eller lika med Slut Tid för {0}." msgid "Start Timer" msgstr "Starta Tidur" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51612,10 +51592,14 @@ msgstr "Start Datum ska vara före Slut Datum för Artikel {0}" msgid "Start date should be less than end date for task {0}" msgstr "Start Datum ska vara före Slut Datum för Uppgift {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "Startade bakgrundsjobb för att skapa {1} {0}. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51696,7 +51680,7 @@ msgstr "Statusbild" msgid "Status and Reference" msgstr "Status och Referens" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Status måste vara Annullerad eller Klar" @@ -51824,8 +51808,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "Lager Stängning Post {0} finns redan för vald datumintervall" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "Lager Stängning Post {0} är i kö för behandling, och kommer att ta lite tid att slutföra." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51906,17 +51890,21 @@ msgstr "Lager Post Artikel" msgid "Stock Entry Type" msgstr "Lager Post Typ" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Lager Post är redan skapad mot denna Plocklista" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Lager Post {0} skapades" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Lager Post {0} skapad" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52082,7 +52070,7 @@ msgstr "Lager Förväntad Kvantitet" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52165,7 +52153,7 @@ msgstr "Lager Ombokning Inställningar" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52190,15 +52178,15 @@ msgstr "Lager Reservation" msgid "Stock Reservation Entries Cancelled" msgstr "Lager Reservation Poster Annullerade" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Lager Reservation Poster Skapade" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "Lager Reservation Poster skapade" @@ -52368,7 +52356,7 @@ msgstr "Lager Transaktioner" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52527,9 +52515,9 @@ msgstr "Lager reservation är ångrad för arbetsorder {0}." msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "Lager ej tillgängligt för Artikel {0} i Lager {1}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "Lager Kvantitet ej tillgänglig för Artikel Kod: {0} på lager {1}. Tillgänglig kvantitet {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52547,7 +52535,7 @@ msgstr "Lager Transaktioner som är äldre än angiven antal dagar kan inte änd msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "Lager kommer att reserveras vid godkännade av Inköp Följesedel skapat mot Material Begäran för Försäljning Order." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "Lager/Bokföring kan inte stängas eftersom bearbetning av retroaktiva poster pågår. Försök igen senare." @@ -52562,7 +52550,7 @@ msgstr "Sten" msgid "Stop Reason" msgstr "Driftstopp Anledning" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Stoppad Arbetsorder kan inte annulleras, Ångra först för att annullera" @@ -52570,7 +52558,7 @@ msgstr "Stoppad Arbetsorder kan inte annulleras, Ångra först för att annuller #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Butiker" @@ -52784,7 +52772,7 @@ msgstr "Konvertering Faktor" msgid "Subcontracting Delivery" msgstr "Lager Post" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "Underleverantör Färdig Artikel" @@ -52856,7 +52844,7 @@ msgstr "Intern Order Service Artikel" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52894,7 +52882,7 @@ msgstr "Order Service Artikel" msgid "Subcontracting Order Supplied Item" msgstr "Order Levererad Artikel" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Order {0} skapad." @@ -52968,7 +52956,7 @@ msgstr "Underleverantör Retur" msgid "Subcontracting Sales Order" msgstr "Försäljning Order" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "Underleverantör Service Artikel" @@ -52987,7 +52975,7 @@ msgstr "Underleverantör Inställningar" msgid "Subdivision" msgstr "Underavdelning" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Godkännande Misslyckades" @@ -53016,7 +53004,7 @@ msgstr "Godkänn Arbetsorder för vidare behandling." msgid "Submit your Quotation" msgstr "Godkänn Offert" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "Godkänd Jobbkort kan inte behandlas." @@ -53158,7 +53146,7 @@ msgstr "Klart Inställningar" msgid "Successful" msgstr "Klar" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Avstämd" @@ -53336,7 +53324,7 @@ msgstr "Levererad Kvantitet" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53518,7 +53506,7 @@ msgstr "Leverantör Faktura Datum" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Leverantör Faktura Nummer" @@ -53666,7 +53654,7 @@ msgstr "Leverentör Offert Jämförelse" msgid "Supplier Quotation Item" msgstr "Leverentör Offert Artikel" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Leverantör Offert {0} Skapad" @@ -53851,10 +53839,6 @@ msgstr "Support Team" msgid "Support Tickets" msgstr "Support Ärende" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "Variabler som stöds:" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "Förväntad Rabatt Belopp" @@ -53941,7 +53925,7 @@ msgstr "Källskatt moms kategori som tillämpas vid betalning till denna leveran msgid "TDS Computation Summary" msgstr "Källskatt Beräknad Översikt" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "Avdragen Källskatt" @@ -54002,8 +53986,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "Tillgång {0} tillhör inte bolag {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "Tillgång {0} måste vara sammansatt tillgång" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54112,11 +54096,11 @@ msgstr "Till Lager Adress" msgid "Target Warehouse Reservation Error" msgstr "Fel vid reservation av Till Lager" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "Lager för Färdiga Artiklar måste vara samma som Färdig Artikel Lager {1} i Arbetsorder {2} som är länkad till Intern Underleverantör Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "Lager för Färdiga Artiklar måste vara samma som Färdig Artikel Lager {0} i Arbetsorder {1} som är länkad till Intern Underleverantör Order." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "För Lager erfordras före Godkännande" @@ -54592,7 +54576,7 @@ msgstr "Moms avdragen endast för belopp som överstiger kumulativ tröskel" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Moms Belopp" @@ -54804,7 +54788,7 @@ msgstr "Television" msgid "Template Item" msgstr "Mall Artikel" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Mall Artikel Vald" @@ -55111,23 +55095,27 @@ msgstr "Tesla" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "Text som visas i Bokslut Rapport (t.ex. \"Totala Intäkter\", \"Likvida Medel\")" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "'Från Förpackning Nummer' får inte vara tom eller värde mindre än 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "Åtkomst till Inköp Offert från Portal är inaktiverad. För att tillåta åtkomst, aktivera i Portal Inställningar." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "Stycklista före" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "Parti {0} har negativ parti kvantitet {1}. För att åtgärda detta, gå till Parti Inställningar och aktivera Räkna om Parti Kvantitet. Om problemet kvarstår, skapa intern post." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "Kampanj '{0}' finns redan för {1} '{2}'" @@ -55152,6 +55140,10 @@ msgstr "Bokföringsposter och de stängning saldo behandlas i bakgrunden, det ka msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Bokföring Register Poster kommer att annulleras i bakgrunden, det kan ta några minuter." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Lojalitet Program är inte giltigt för vald Bolag" @@ -55169,9 +55161,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "Plocklista med Lager Reservation kan inte uppdateras. Om ändringar behöver göras rekommenderas annullering av befintlig Lager Reservation innan uppdatering av Plocklista." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "Process Förlust Kvantitet är återställd enligt Jobbkort Process Förlust Kvantitet" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55181,11 +55176,15 @@ msgstr "Säljare är länkad till {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Serie Nummer på rad #{0}: {1} är inte tillgänglig i lager {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Serienummer {0} är reserverad för {1} {2} och får inte användas för någon annan transaktion." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Serie och Parti Paket {0} är inte giltigt för denna transaktion. \"Typ av Transaktion\" ska vara \"Extern\" istället för \"Intern\" i Serie och Parti Paket {0}" @@ -55233,15 +55232,15 @@ msgstr "Bolag {0} är inte registrerad i Sydafrika. Momsrevision rapport är end msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "Bolag {0} finns inte i Förenade Arabemiraten. UAE VAT 201 rapport är endast tillgänglig för bolag i Förenade Arabemiraten." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "Färdig kvantitet {0} för åtgärd {1} kan inte vara högre än färdig kvantitet {2} för tidigare åtgärd {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "Faktura valuta {} ({}) är annan än valuta för denna påminnelse ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "Aktuell Kassa Öppning Post är föråldrad. Stäng den och skapa ny." @@ -55290,6 +55289,10 @@ msgstr "Till Aktieägare fält kan inte vara tom" msgid "The field {0} in row {1} is not set" msgstr "Fält {0} i rad {1} är inte angiven" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Från Aktieägare och Till Aktieägare fält kan inte vara tomma" @@ -55311,9 +55314,9 @@ msgstr "Bokföring År är automatiskt skapad i inaktiverat status för att bibe msgid "The folio numbers are not matching" msgstr "Folio nummer stämmer inte" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "Följande Artiklar, med Lägg undan regler, kunde inte tillgodoses:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55340,8 +55343,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Följande Personal rapporterar för närvarande fortfarande till {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "Följande ogiltiga prissättningsregler tas bort:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55353,7 +55356,7 @@ msgstr "Följande betalning schema(n) finns redan:\n" msgid "The following rows are duplicates:" msgstr "Följande rader är dubbletter:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Följande {0} skapades: {1}" @@ -55389,8 +55392,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "Artiklar {items} är inte angivna som {type_of} artiklar. Du kan aktivera dem som {type_of} artiklar från deras Artikel Inställningar." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "Jobbkort {0} är i {1} tillstånd och du kan inte slutföra." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55427,12 +55430,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "Öppning Saldo kanske inte stämmer med bankutdrag. Vill du stämma av dem?" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "Åtgärd {0} kan inte läggas till flera gånger" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "Åtgärd {0} kan inte vara underåtgärd" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55480,6 +55483,10 @@ msgstr "Procentandel att ta emot eller leverera mer mot order kvantitet. Till ex msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "Procentandel man får överföra mer mot order kvantitet. Till exempel, om man har order på 100 enheter och tillåtelse är 10%, får man överföra upp till 110 enheter." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55489,7 +55496,7 @@ msgstr "Priset som denna artikel senast köptes för via Inköp Faktura. Uppdate msgid "The reference number of the transaction" msgstr "Transaktion Referensnummer" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "Lager Reservation kommer att släppas när artiklar uppdaterats. Fortsätt?" @@ -55506,8 +55513,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Valda Stycklistor är inte för samma Artikel" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Vald Kassa Växel Konto {} tillhör inte Bolag {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55523,8 +55530,8 @@ msgstr "Säljare och Köpare kan inte vara samma" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "Serie och Parti Paket {0} är inte kopplat till {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55542,11 +55549,11 @@ msgstr "Aktier finns redan" msgid "The shares don't exist with the {0}" msgstr "Aktier finns inte med {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "Lager för artikel {0} i {1} lager var negativt {2}. Skapa positiv post {3} före {4} och {5} för att bokföra rätt Värdering Pris. För mer information, läs dokumentation ." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Lager för artikel {0} i {1} lager var negativt {2}. Skapa positiv post {3} före {4} och {5} för att bokföra rätt Värdering Pris. För mer information, läs dokumentation ." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "Lager är reserverad för följande Artiklar och Lager, ta bort reservation till {0} Lager Inventering :

                    {1}" @@ -55568,17 +55575,17 @@ msgstr "System kommer att försöka automatiskt stämma av part till bank transa msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "System kommer att skapa Försäljning Faktura eller Kassa Faktura från Kassa baserat på denna inställning. För transaktioner med stora volymer rekommenderas att Kassa Faktura används." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "Uppgift är i kö som bakgrund jobb. Om det finns problem med behandling i bakgrund kommer system att lägga till kommentar om fel i denna Lager Inventering och återgå till Utkast status." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "Uppgift är i kö som ett bakgrund jobb. Om det finns några problem med bearbetning i bakgrund kommer system att lägga till kommentar om fel på denna Lager Inventering och återgå till Godkänd status" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "Totalt Utfärdad / Överföring Kvantitet {0} i Material Begäran {1} kan inte vara högre än tillåten begärd kvantitet {2} för artikel {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55616,7 +55623,7 @@ msgstr "Användare med denna roll får skapa/ändra lager transaktion, även om msgid "The value of {0} differs between Items {1} and {2}" msgstr "Värde för {0} skiljer sig mellan Artikel {1} och {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "Värde {0} är redan tilldelad befintlig Artikel {1}." @@ -55640,7 +55647,7 @@ msgstr "Uttag eller insättning belopp - erfordras endast om det inte finns belo msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) måste vara lika med {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0} innehåller Enhet Pris Artiklar." @@ -55648,7 +55655,7 @@ msgstr "{0} innehåller Enhet Pris Artiklar." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "Prefix {0} '{1}' finns redan. Ändra serienummer, annars blir det dubblett post." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} är skapade" @@ -55656,6 +55663,10 @@ msgstr "{0} {1} är skapade" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0} {1} stämmer inte med {0} {2} på {3} {4}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} används för att beräkna grund kostnad för färdig artikel {2}." @@ -55664,7 +55675,7 @@ msgstr "{0} {1} används för att beräkna grund kostnad för färdig artikel {2 msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "Därefter filtreras prisreglerna utifrån kund, kundgrupp, distrikt, leverantör, leverantörstyp, kampanj, försäljningspartner etc." -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Det finns aktivt service eller reparationer mot tillgång. Du måste slutföra alla före annullering av tillgång." @@ -55676,7 +55687,7 @@ msgstr "Det finns inkonsekvenser mellan pris, antal aktier och beräknad belopp" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "Det finns bokföring register poster mot detta konto. Om du ändrar {0} till ej {1} i system kommer det att orsaka felaktig utdata i \"Konto {2}\" rapport" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "Det finns inga misslyckade transaktioner" @@ -55693,6 +55704,10 @@ msgstr "Det finns inga aktiva Bokföring År för vilka demo data kan skapas." msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "Det finns inga poster i system där klarering datum är före bokföring datum." +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "Det finns inga lediga tider för detta datum" @@ -55709,10 +55724,6 @@ msgstr "Det finns två alternativ för att upprätthålla lager värdering. FIFO msgid "There are {0} unreconciled transactions before {1}." msgstr "Det finns {0} ej avstämda transaktioner före {1}." -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "Det finns inga artikelvarianter för vald artikel" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Det kan finnas flera nivåer insamling faktor baserat på totalt spenderade. Men konvertering faktor för inlösen kommer alltid att vara densamma för alla nivåer." @@ -55741,21 +55752,21 @@ msgstr "Det finns ingen Parti mot {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "Det finns en ej avstämd transaktion före {0}." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "Det måste finnas minst en färdig artikel i denna Lager Post" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Det uppstod fel när Bank Konto skulle skapas vid länkning med Plaid." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "Det uppstod fel med synkronisering av transaktioner." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Det uppstod fel när Bank Konto {} skulle uppdateras vid länkning med Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55805,15 +55816,19 @@ msgstr "Månads Översikt" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "Denna PDF är lösenord skyddad. Ange rätt kontoutdrag lösenord för Bank Konto och försök igen." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "Denna Betalning Post är avstämd mot {0}. Om du annullerar avstämning kommer den automatiskt att ångras. Vill du fortsätta?" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "Denna Inköp Order har lagts ut helt på underleverantörsleverantör." -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "Denna Försäljning Order har lagts ut helt på underleverantörsleverantör." @@ -55835,7 +55850,7 @@ msgstr "Detta åtgärd kommer att koppla bort detta konto från alla externa tj msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "Detta möjliggör skapande av försäljningsordrar från offerter som har passerat sitt utgångsdatum, vilket ger flexibilitet vid bearbetning av ordrar trots föråldrade offerter." -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "Denna tillgång kategori är angiven som ej avskrivningsbar. Inaktivera avskrivning beräkning eller välj annan kategori." @@ -55853,7 +55868,7 @@ msgstr "Detta kan innehålla \"CR\"/\"DR\" värden eller positiva/negativa värd msgid "This covers all scorecards tied to this Setup" msgstr "Detta täcker alla resultatkort kopplade till denna inställning" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Detta dokument är över gräns med {0} {1} för post {4}. Skapa annan {3} mot samma {2}?" @@ -55995,7 +56010,7 @@ msgstr "Detta är rad för bankkonto. Den kommer att fyllas i automatiskt basera msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "Detta är vad systemet förväntar sig att stängning saldo ska vara på bankutdrag." -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "Detta artikel filter har redan tillämpats för {0}" @@ -56059,7 +56074,7 @@ msgstr "Detta schema skapades när Tillgång {0} returnerades via Försäljning msgid "This schedule was created when Asset {0} was scrapped." msgstr "Detta schema skapades när Tillgång {0} skrotades." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "Detta schema skapades när tillgång {0} var {1} till ny tillgång {2}." @@ -56086,10 +56101,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "Detta sektion gör det möjligt för Användare att ange Huvud och Avslutningtext för Påminnelse Brev för Påminnelse Typ baserad på språk, som kan användas i Utskrift." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "Detta kontoutdrag är redan importerad." @@ -56147,8 +56162,8 @@ msgid "This will restrict user access to other employee records" msgstr "Detta kommer att begränsa användar åtkomst till annan Personal Register" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "Denna {} kommer att behandlas som material överföring." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56276,6 +56291,12 @@ msgstr "Tid (Minuter)" msgid "Timeline" msgstr "Tidslinje" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56562,8 +56583,8 @@ msgid "To Time" msgstr "Till Tid" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "Till datum kan inte vara före från datum" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56593,15 +56614,15 @@ msgstr "Att lägga till Åtgärder kryssa i rutan 'Med Åtgärder'." msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Att lägga till Underleverantör Artikel råmaterial om Inkludera Utvidgade Artiklar är inaktiverad." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Att tillåta överfakturering uppdatera 'Över Fakturering Tillåtelse' i Konto Inställningar eller Artikel." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "För att tillåta utöver order kvantitet, uppdatera \"Över Order Tillåtelse\" i Inköp Inställningar." -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Att tillåta överleverans/övermottagning, uppdatera 'Över Leverans/Mottagning Tillåtelse' i Lager Inställningar eller Artikel." @@ -56618,8 +56639,8 @@ msgid "To be Delivered to Customer" msgstr "Levereras till Kund" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "Att annullera {} måste du annullera Kassa Stängning Post {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56630,8 +56651,8 @@ msgid "To create a Payment Request reference document is required" msgstr "Att skapa Betalning Begäran erfordras referens dokument" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Att aktivera Pågående Kapitalarbete Bokföring" +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56643,8 +56664,8 @@ msgstr "Att inkludera artiklar som inte finns på lager i material begäran plan msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "För att inkludera delmontering kostnader och sekundära artiklar i Färdiga Artiklar på arbetsorder utan att använda jobbkort, när alternativ \"Använd Fler Nivå Stycklista\" är aktiverat." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Att inkludera moms på rad {0} i artikel pris, moms i rader {1} måste också inkluderas" @@ -56664,7 +56685,7 @@ msgstr "Att åsidosätta detta, aktivera {0} i bolag {1}" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "För att välja mer än en transaktion åt gången, tryck och håll ner skifttangent." -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Att ändå fortsätta att redigera egenskap värde, aktivera {0} i Artikel Variant Inställningar." @@ -56681,10 +56702,12 @@ msgstr "Att godkänna faktura utan inköp följesedel ange {0} som {1} i {2}" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Att använda annan Bokslut Register, inaktivera \"Inkludera Standard Bokslut Register Tillgångar\"" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Att använda annan Bokslut Register, inaktivera \"Inkludera Standard Bokslut Register Tillgångar\"" @@ -56763,8 +56786,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "Totalt (Bolag Valuta)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Totalt (Kredit)" @@ -56806,6 +56829,22 @@ msgstr "Totalt Extra Kostnader" msgid "Total Advance" msgstr "Totalt Förskott" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56853,11 +56892,11 @@ msgstr "Totalt Förfallen Belopp" msgid "Total Amount in Words" msgstr "Totalt Belopp i Ord" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Totalt Tillämpliga Avgifter i Inköp Följesedel Artikel Tabell måste vara samma som Totalt Moms och Avgifter" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Totalt Tillgång" @@ -57039,7 +57078,7 @@ msgstr "Totalt Levererad Belopp" msgid "Total Demand (Past Data)" msgstr "Totalt Efterfråga (Tidigare Data)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "Totalt Eget Kapital" @@ -57048,11 +57087,11 @@ msgstr "Totalt Eget Kapital" msgid "Total Estimated Distance" msgstr "Totalt Uppskattad Avstånd" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Totalt Kostnad" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Totalt Kostnad i År" @@ -57090,11 +57129,11 @@ msgstr "Totalt Parkerad Tid" msgid "Total Holidays" msgstr "Totalt Antal Helger" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Totalt Intäkt" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Totalt Intäkt i År" @@ -57137,7 +57176,7 @@ msgstr "Total Landad Kostnad (Bolag Valuta)" msgid "Total Ledgers" msgstr "Totalt Återbokförda Poster" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "Totalt Skuld" @@ -57452,7 +57491,7 @@ msgstr "Totalt Moms och Avgifter" msgid "Total Taxes and Charges (Company Currency)" msgstr "Totalt Moms och Avgifter (Bolag Valuta)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Totalt Tid i Minuter" @@ -57461,7 +57500,11 @@ msgstr "Totalt Tid i Minuter" msgid "Total Time in Mins" msgstr "Totalt Tid i Minuter" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Totalt Obetald: {0}" @@ -57540,7 +57583,7 @@ msgstr "Total Arbetsplats Tid (I Timmar)" msgid "Total allocated percentage for sales team should be 100" msgstr "Totalt tilldelad procentsats för Försäljning Team ska vara 100%" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Totalt bidrag procentsats ska vara lika med 100%" @@ -57558,8 +57601,8 @@ msgstr "Totalt timmar: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Totalt betalning belopp kan inte vara högre än {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57576,9 +57619,9 @@ msgstr "Total kvantitet i leverans schema får inte vara högre än artikel kvan msgid "Total {0} ({1})" msgstr "Totalt {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Totalt {0} för alla artiklar är noll, ändra 'Fördela Avgifter Baserad På'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57666,27 +57709,11 @@ msgstr "Spårning Status Info" msgid "Tracking URL" msgstr "Spårning URL" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Transaktion" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "Transaktion Valuta" @@ -57739,11 +57766,11 @@ msgstr "Transaktion Borttagning Post Artikel" msgid "Transaction Deletion Record To Delete" msgstr "Transaktion Borttagning Post att ta bort" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "Transaktion Borttagning Post {0} körs redan. {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "Transaktion Borttagning Poste {0} tar för närvarande bort {1}. Det går inte att spara dokument förrän borttagning är klar." @@ -58133,6 +58160,10 @@ msgstr "Prov Saldo (Enkel)" msgid "Trial Balance for Party" msgstr "Prov Saldo för Parti" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58317,7 +58348,7 @@ msgstr "UAE VAT Inställningar" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58339,7 +58370,7 @@ msgstr "UAE VAT Inställningar" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58369,7 +58400,7 @@ msgstr "UAE VAT Inställningar" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58433,7 +58464,7 @@ msgstr "Enhet Konvertering Detaljer" msgid "UOM Conversion Factor" msgstr "Enhet Konvertering Faktor" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Enhet Konvertering Faktor ({0} -> {1}) hittades inte för Artikel: {2}" @@ -58507,7 +58538,7 @@ msgstr "Ångra" msgid "UnReconcile Allocations" msgstr "Ångra Tilldelningar" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "Kan inte hämta DocType detaljer. Kontakta system administratör." @@ -58520,10 +58551,6 @@ msgstr "Kunde inte hitta växelkurs för {0} till {1} för nyckel datum {2}. ska msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Kunde inte hitta växelkurs för {0} till {1} för nyckel datum {2}. Skapa Växelkurs post manuellt." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Kunde inte att hitta resultatkort från {0}. Du måste ha stående resultatkort som täcker 0 till 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "Kunde inte att hitta tider under de kommande {0} dagarna för åtgärd {1}. Öka \"Kapacitet Planering för (Dagar)\" i {2}." @@ -58548,7 +58575,7 @@ msgstr "Ej Tilldelad" msgid "Unallocated Amount" msgstr "Ofördelad Belopp" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Ej Tilldelat Kvantitet" @@ -58560,8 +58587,10 @@ msgstr "Ofakturerade Order" msgid "Unblock Invoice" msgstr "Släpp Faktura" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58611,7 +58640,7 @@ msgstr "Ångra Transaktion Avstämning" msgid "Undo {}?" msgstr "Ångra {}?" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "Oväntat Namngivning Serie Mönster" @@ -58634,7 +58663,7 @@ msgstr "Enhet" msgid "Unit Price" msgstr "Enhet Pris" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Enhet" @@ -58837,7 +58866,7 @@ msgstr "Ej Schemalagd" msgid "Unsecured Loans" msgstr "Osäkrade Lån" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "Ångra Avstämd Betalning Begäran" @@ -58850,7 +58879,7 @@ msgstr "Osignerad" msgid "Unsubscribe from this Email Digest" msgstr "Avregistrera E-post Utskick" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "Funktion stöds ej" @@ -58994,7 +59023,7 @@ msgstr "Uppdatera Aktuell Lager" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59058,7 +59087,7 @@ msgstr "Uppdatera befintlig Prislista Pris" msgid "Update latest price in all BOMs" msgstr "Uppdatera till senaste pris i alla Stycklistor" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "Uppdatera Lager måste vara aktiverat för Inköp Faktura {0}" @@ -59286,7 +59315,7 @@ msgstr "Använd Förslag" msgid "Use Transaction Date Exchange Rate" msgstr "Använd Transaktion Datum Växelkurs" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Använd namn som skiljer sig från tidigare projekt namn" @@ -59375,6 +59404,10 @@ msgstr "Användare Resolution Tid" msgid "User has not applied rule on the invoice {0}" msgstr "Användare har inte tillämpat regel på faktura {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Användare {0} finns inte" @@ -59387,6 +59420,10 @@ msgstr "Användare {0} har ingen standard Kassa Profil. Kontrollera standard på msgid "User {0} is already assigned to Employee {1}" msgstr "Användare {0} är redan tilldelad Personal {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Användare {0}: Borttagen Personal Självbetjäning roll eftersom det inte finns någon mappad personal." @@ -59395,10 +59432,6 @@ msgstr "Användare {0}: Borttagen Personal Självbetjäning roll eftersom det in msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Användare {0}: Borttagen Personal roll eftersom det inte finns mappad personal." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Användare {} är inaktiverad. Välj giltig Användare/kassör" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59691,15 +59724,15 @@ msgstr "Värdering Pris" msgid "Valuation Rate (In / Out)" msgstr "Värdering Pris (In/Ut)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Värdering Pris Saknas" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "Värdering Pris kan inte vara negativ." -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Värdering Pris för Artikel {0} erfordras att skapa bokföring poster för {1} {2}." @@ -59707,7 +59740,7 @@ msgstr "Värdering Pris för Artikel {0} erfordras att skapa bokföring poster f msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Värdering Pris erfordras om Öppning Lager anges" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Värdering Pris erfordras för Artikel {0} på rad {1}" @@ -59717,7 +59750,7 @@ msgstr "Värdering Pris erfordras för Artikel {0} på rad {1}" msgid "Valuation and Total" msgstr "Värdering och Totalt" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "Värdering Pris för Kund Försedda Artiklar angavs till noll." @@ -59730,14 +59763,14 @@ msgstr "Värdering Pris för Kund Försedda Artiklar angavs till noll." msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Värdering Pris för artikel enligt Försäljning Faktura (endast för Interna Överföringar)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Värdering typ avgifter kan inte väljas som Inklusiva" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Värdering Typ Avgifter kan inte anges som Inklusiva" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59787,12 +59820,12 @@ msgstr "Värde Förslag" msgid "Value Type" msgstr "Värde Typ" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "Värde per" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Värde för Egenskap {0} måste vara inom intervall {1} till {2} i steg om {3} för Artikel {4}" @@ -59801,19 +59834,19 @@ msgstr "Värde för Egenskap {0} måste vara inom intervall {1} till {2} i steg msgid "Value of Goods" msgstr "Gods Värde" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Värde av ny Aktiverad Tllgång" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Värde av ny Inköp" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Värde av Skrotad Tillgång" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Värde på Såld Tillgång" @@ -60289,7 +60322,7 @@ msgstr "Verifikat Namn" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60317,7 +60350,7 @@ msgstr "Verifikat Namn" msgid "Voucher No" msgstr "Verifikat Nummer" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Verifikat Nummer Erfodras" @@ -60329,7 +60362,7 @@ msgstr "Kvantitet" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Verifikat Undertyp" @@ -60361,7 +60394,7 @@ msgstr "Verifikat Undertyp" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60568,7 +60601,7 @@ msgstr "Lager erfordras" msgid "Warehouse is required to get producible FG Items" msgstr "Lager erfordras för att hämta Färdiga Artiklar att producera" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Lager hittades inte mot konto {0}" @@ -60586,16 +60619,16 @@ msgstr "Artikel Saldo Ålder och Värde per Lager" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Lager {0} kan inte tas bort då kvantitet finns för Artikel {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Lager {0} tillhör inte Bolag {1}." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Lager {0} tillhör inte Bolag {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "Lagret {0} finns inte" @@ -60716,7 +60749,7 @@ msgstr "Varna eller stoppa om artikelpris ändras i Inköp Faktura eller Inköp msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Varning - Rad # {0}: Fakturerbara timmar är fler än Faktiska Timmar" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "Varna vid Negativt Lager" @@ -60736,7 +60769,7 @@ msgstr "Varning: Annan {0} # {1} finns mot lager post {2}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Varning: Material Begäran Kvantitet är lägre än Minimum Order Kvantitet" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "Varning: Kvantitet överskrider maximal producerbar kvantitet baserat på kvantitet råmaterial som mottagits genom Intern Underleverantör Order {0}." @@ -60890,10 +60923,6 @@ msgstr "Webbplats Artikel Grupp" msgid "Website Specifications" msgstr "Webbshop Specifikationer" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "Årets Vecka" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61039,7 +61068,7 @@ msgstr "När funktion är aktiverad läggs ett filter för stopp datum till i f msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "När denna funktion är aktiverad kommer transaktioner med denna leverantör att blockeras baserat på Spärr Typ nedan" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "När det finns flera färdiga artiklar ({0}) i en ompackning lager transaktion måste bas pris för alla färdiga artiklar anges manuellt. För att ange pris manuellt, aktivera \"Aktivera bas pris manuellt\" på respektive rad för färdiga artiklar." @@ -61215,17 +61244,17 @@ msgstr "Pågående" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61264,7 +61293,7 @@ msgstr "Arbetsorder Förbrukad Material" msgid "Work Order Item" msgstr "Arbetsorder Artikel" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "Avvikande Arbetsorder" @@ -61305,20 +61334,20 @@ msgstr "Arbetsorder Översikt" msgid "Work Order Summary Report" msgstr "Arbetsorder Översikt Rapport" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Arbetsorder kan inte skapas för följande anledning:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Arbetsorder kan inte skapas mot Artikel Mall" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "Arbetsorder har varit {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "Arbetsorder erfordras" @@ -61339,7 +61368,7 @@ msgid "Work Order {0} must be submitted" msgstr "Arbetsorder {0} måste godkännas" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Arbetsordrar" @@ -61364,7 +61393,7 @@ msgstr "Pågående Arbete" msgid "Work-in-Progress Warehouse" msgstr "Pågående Arbete Lager" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Pågående Arbete Lager erfordras före Godkännande" @@ -61417,7 +61446,7 @@ msgstr "Arbets Timmar" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61649,14 +61678,6 @@ msgstr "År Namn" msgid "Year Start Date" msgstr "Start Datum" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "Årtal med 2 siffror" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "Årtal med 4 siffror" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61671,8 +61692,8 @@ msgid "You are importing data for the code list:" msgstr "Du importerar data för Kod Lista:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Du är inte behörig att uppdatera enligt villkoren i {} Arbetsflöde." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61691,8 +61712,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "Du väljer mer än vad som krävs för artikel {0}. Kontrollera om det finns någon annan plocklista skapad för försäljning order {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "Lägg till original faktura {} manuellt för att fortsätta." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61702,19 +61723,15 @@ msgstr "Du kan också lägga till kredit eller debet värde i förifyllning – msgid "You can also copy-paste this link in your browser" msgstr "Du kan också kopiera och klistra in den här länken i din webbläsare" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Du kan också ange standard Kapital Arbete Pågår konto i Bolag {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" -msgstr "Du kan också använda variabler i namngivning serie namn genom att placera dem mellan (.) punkter" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Du kan ändra Överordnad Konto till Balans Rapport Konto eller välja annat konto." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "Du kan antingen konfigurera standardkonton för avskrivningar för bolag eller ange de konton som erfordras på följande rader:

                    " @@ -61736,8 +61753,8 @@ msgid "You can only select one mode of payment as default" msgstr "Du kan bara välja ett betalning sätt som standard" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Du kan lösa in upp till {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61755,14 +61772,6 @@ msgstr "Du kan skapa regel för att dela upp transaktion över flera konto." msgid "You can use {0} to reconcile against {1} later." msgstr "Du kan använda {0} för att stämma av mot {1} senare." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "Du kan inte göra några ändringar i Jobbkort eftersom Arbetsorder är stängd." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "Du kan inte behandla serienummer {0} eftersom det redan har använts i Serienummer och Parti Paket {1}. {2} För att skapa intern serienummer flera gånger aktivera \"Tillåt att befintligt serienummer Produceras/Tas Emot igen\" i {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "Du kan inte lösa in Lojalitetspoäng som har ett högre värde än total belopp." @@ -61771,17 +61780,17 @@ msgstr "Du kan inte lösa in Lojalitetspoäng som har ett högre värde än tota msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "Du kan inte ändra pris om Stycklista är angiven mot någon artikel." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "Du kan inte skapa {0} inom stängd bokföring period {1}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Du kan inte skapa eller annullera bokföring poster under stängd bokföring period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "Du kan inte skapa/ändra några bokföring poster fram till detta datum." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61792,32 +61801,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "Kan inte ta bort Projekt Typ 'Extern'" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Man kan inte redigera överordnad nod." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "Du kan inte aktivera både \"{0}\" och \"{1}\" inställningar." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "Du kan inte skicka ut följande {0} eftersom de antingen är levererade, inaktiva eller finns i ett annat lager." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "Du kan inte lösa in mer än {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "Du kan inte boka om artikel värdering före {}" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "Du kan inte starta om prenumeration som inte är annullerad." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Du kan inte godkänna tom order." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61831,6 +61848,10 @@ msgstr "Du kan inte uppdatera lager för Debet Nota. Debet Nota är bokslut doku msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "Du kan inte {0} detta dokument eftersom en annan Period Stängning Post {1} finns efter {2}" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "Du har inte behörighet att importera och godkänna bank transaktioner" @@ -61841,8 +61862,8 @@ msgid "You do not have permission to import bank transactions" msgstr "Du har inte behörighet att importera bank transaktioner" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "Du har inte behörighet att {} artikel i {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61868,11 +61889,11 @@ msgstr "Du har inte behörighet att uppdatera Mottagen Kvantitet Dokument för a msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "Du har inte behörighet att uppdatera detta dokument. Kontakta Systemansvarig." -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Du hade {} fel när du skapade öppning fakturor. Kontrollera {} för mer information" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Du har redan valt Artikel från {0} {1}" @@ -61889,8 +61910,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "Du har aktiverat {0} och {1} i {2}. Detta kan leda till att priser från standardprislista infogas i transaktionsprislistan." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "Du har angett dubblett Försäljning Följesedel på Rad" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61904,19 +61925,19 @@ msgstr "Du har inte utfört några avstämningar i denna sessionen ännu." msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Du måste aktivera automatisk ombeställning i lager inställningar för att behålla ombeställning nivåer." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "Du har ändringar som inte är sparade. Vill du spara faktura?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Välj Kund före Artikel." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "Annullera Kassa Stängning Post {} för att annullera detta dokument." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "Du valde kontogrupp {1} som {2} Konto på rad {0}. Välj ett enskilt konto." @@ -61968,6 +61989,10 @@ msgstr "Postnummer" msgid "Zero Balance" msgstr "Noll Saldo" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "Noll Sats" @@ -61998,7 +62023,7 @@ msgstr "[Viktigt] [System] Automatisk Ombeställning Fel" msgid "`Allow Negative rates for Items`" msgstr "\"Tillåt Negativa Priser för Artiklar\"." -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "efter" @@ -62018,7 +62043,7 @@ msgstr "som Benämning" msgid "as a percentage of finished item quantity" msgstr "som procentsats av färdig artikel kvantitet" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "från och med {0}" @@ -62034,10 +62059,6 @@ msgstr "Baserad På" msgid "by {}" msgstr "av {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "Rabatt kan inte vara högre än 100%" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62092,9 +62113,9 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "Fält Namn " -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." -msgstr "fältnamn i dokument, t.ex." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" +msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency #. Exchange Settings' @@ -62173,14 +62194,10 @@ msgstr "av 5 möjliga" msgid "paid to" msgstr "Betald till" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "payment app är inte installerad. Installera det från {0} eller {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "payment app är inte installerad. Installera det från {0} eller {1}" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62194,7 +62211,7 @@ msgstr "payment app är inte installerad. Installera det från {0} eller {1}" msgid "per hour" msgstr "Kostnad per Timme" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "utför någon av dem nedan:" @@ -62270,8 +62287,8 @@ msgstr "såld" msgid "subscription is already cancelled." msgstr "prenumeration är redan annullerad." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "target_ref_field" @@ -62334,10 +62351,6 @@ msgstr "via Tillgång Reparation" msgid "via BOM Update Tool" msgstr "via Stycklista Uppdatering Verktyg" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "Välj Kapitalarbete Pågår Konto i Konto Tabell" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} {1} är inaktiverad" @@ -62350,7 +62363,7 @@ msgstr "{0} {1} inte under Bokföring År {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) kan inte vara högre än planerad kvantitet ({2}) i arbetsorder {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} har godkänt tillgångar. Ta bort Artikel {2} från tabell för att fortsätta." @@ -62370,7 +62383,7 @@ msgstr "{0} Budget för Konto {1} mot {2} {3} är {4}. Den har redan överskridi msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "{0} Budget för Konto {1} mot {2} {3} är {4}. Den kommer att överskridas med {5}." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} Kupong som användes är {1}. Tillåten kvantitet är förbrukad" @@ -62378,11 +62391,6 @@ msgstr "{0} Kupong som användes är {1}. Tillåten kvantitet är förbrukad" msgid "{0} Digest" msgstr "{0} Översikt" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "{0} Namngivning Serie" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Nummer {1} används redan i {2} {3}" @@ -62464,10 +62472,18 @@ msgstr "{0} kan vara antingen {1} eller {2}." msgid "{0} can not be negative" msgstr "{0} kan inte vara negativ" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} kan inte ändras med öppna Öppning Poster." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} kan inte användas som Överordnad Resultat Enhet eftersom det har använts som underordnad i Resultat Enhet Tilldelning {1}" @@ -62483,7 +62499,7 @@ msgstr "{0} kan inte vara noll" msgid "{0} created" msgstr "{0} skapad" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "{0} skapande för följande poster kommer att hoppas över." @@ -62525,7 +62541,7 @@ msgstr "{0} för {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} har Betalning Villkor baserad tilldelning aktiverad. Välj Betalning Villkor för Rad #{1} i Betalning Referenser" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "{0} har ändrats efter hämtning. Hämta det igen." @@ -62533,6 +62549,10 @@ msgstr "{0} har ändrats efter hämtning. Hämta det igen." msgid "{0} has been submitted successfully" msgstr "{0} är godkänd" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} timmar" @@ -62541,7 +62561,11 @@ msgstr "{0} timmar" msgid "{0} in row {1}" msgstr "{0} på rad {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} är en undertabell och kommer att tas bort automatiskt tillsammans med överordnad tabell" @@ -62555,7 +62579,7 @@ msgstr "{0} är erfordrad Bokföring Dimension.
                    Ange värde för {0} Bokför msgid "{0} is added multiple times on rows: {1}" msgstr "{0} läggs till flera gånger på rader: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr " {0} körs redan för {1}" @@ -62563,7 +62587,7 @@ msgstr " {0} körs redan för {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} är spärrad så denna transaktion kan inte fortsätta" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} är i utkast. Godkänn det innan tillgång skapas." @@ -62576,11 +62600,11 @@ msgstr "{0} är erfodrad för Artikel {1}" msgid "{0} is mandatory for account {1}" msgstr "{0} är erfodrad för konto {1}" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} är erfordrad. Kanske Valutaväxling Post är inte skapad för {1} till {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} är erfordrad. Kanske Valutaväxling Post är inte skapad för {1} till {2}." @@ -62588,7 +62612,7 @@ msgstr "{0} är erfordrad. Kanske Valutaväxling Post är inte skapad för {1} t msgid "{0} is not a CSV file." msgstr "{0} är inte CSV fil." -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} är inte bolag bank konto" @@ -62604,7 +62628,7 @@ msgstr "{0} är inte lager artikel" msgid "{0} is not a valid Accounting Dimension." msgstr "{0} är inte giltig Bokföring Dimension." -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} är inte ett giltigt värde för egenskap {1} för Artikel {2}." @@ -62620,17 +62644,17 @@ msgstr "{0} är inte lagd till i tabell" msgid "{0} is not enabled in {1}" msgstr "{0} är inte aktiverad i {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} körs inte. Kan inte utlösa händelser för detta Dokument" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} är inte Standard Leverantör för någon av Artiklar." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} är parkerad till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62680,7 +62704,7 @@ msgstr "{0} parameter är ogiltig" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} betalning poster kan inte filtreras efter {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "{0} kvantitet av artikel {1} tas emot i Lager {2} med kapacitet {3}." @@ -62693,7 +62717,7 @@ msgstr "{0} till {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "{0} transaktioner kommer att importeras till system. Granska information nedan och klicka på knapp \"Importera\" för att fortsätta." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} enheter är reserverade för Artikel {1} i Lager {2}, ta bort reservation för {3} Lager Inventering." @@ -62709,16 +62733,16 @@ msgstr "{0} enheter av artikel {1} är inte tillgänglig i något av lagren. And msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} enheter av {1} erfordras i {2} med lagerdimension: {3} på {4} {5} för {6} för att slutföra transaktion." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} enheter av {1} behövs i {2} den {3} {4} för {5} för att slutföra denna transaktion." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} enheter av {1} behövs i {2} den {3} {4} för att slutföra denna transaktion." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} enheter av {1} behövs i {2} för att slutföra denna transaktion." @@ -62726,7 +62750,7 @@ msgstr "{0} enheter av {1} behövs i {2} för att slutföra denna transaktion." msgid "{0} until {1}" msgstr "{0} till {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} giltig serie nummer för Artikel {1}" @@ -62734,7 +62758,7 @@ msgstr "{0} giltig serie nummer för Artikel {1}" msgid "{0} variants created." msgstr "{0} varianter skapade." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "{0} vy stöds för närvarande inte i Anpassad Bokslut Rapport." @@ -62768,7 +62792,7 @@ msgstr "{0} {1} skapad" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} finns inte" @@ -62802,12 +62826,21 @@ msgstr "{0} {1} är tilldelad två gånger i denna Bank Transaktion" msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} är redan länkad till Gemensam kod {2}." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} är associerad med {2}, men Parti Konto är {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} är annullerad eller stängd" @@ -62839,6 +62872,10 @@ msgstr "{0} {1} är fullt fakturerad" msgid "{0} {1} is not active" msgstr "{0} {1} är inte aktiv" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} är inte associerad med {2} {3}" @@ -62944,27 +62981,23 @@ msgstr "{0}% of total invoice value will be given as discount." msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{0}s {1} kan inte vara efter förväntad slut datum för {2}" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, slutför åtgärd {1} före åtgärd {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "{0}, {1} eller {2} är enda tillåtna alternativ." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: Underordnad tabell (tas bort automatiskt med överordnad tabell)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Hittades inte" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: Skyddad DocType" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: Virtuell DocType (ingen databas tabell)" @@ -62980,7 +63013,7 @@ msgstr "{0}: {1} finns inte" msgid "{0}: {1} is a group account." msgstr "{0}: {1} är grupp konto." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} måste vara mindre än {2}" @@ -62992,7 +63025,7 @@ msgstr "{count} Tillgångar skapade för {item_code}" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} är annullerad eller stängd." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "{item_name} Prov Kvantitet ({sample_size}) kan inte vara högre än accepterad kvantitete ({accepted_quantity})" @@ -63004,32 +63037,7 @@ msgstr "{ref_doctype} {ref_name} status är {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} kan inte annulleras eftersom intjänade Lojalitet Poäng har lösts in. Först annullera {} Nummer {}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} har befintliga tillgångar kopplade till den. Annullera tillgångar att skapa Inköp Retur." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} fakturor" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} är dotter bolag." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} är redan länkad till annan {}" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} är redan länkad till {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} påverkar inte bank konto {}" - diff --git a/erpnext/locale/th.po b/erpnext/locale/th.po index 07597f6f023..f711caa123a 100644 --- a/erpnext/locale/th.po +++ b/erpnext/locale/th.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Thai\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: th_TH\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "ไม่สามารถยกเลิกการเลือก \" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "“SN-01::10” ตั้งแต่ “SN-01” ถึง “SN-10”" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# มีสินค้าในสต๊อก" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# รายการที่ต้องการ" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'ยอมให้มีใบสั่งซื้อหลายใบที่อ้างอิงใบสั่งซื้อเดียวกันของลูกค้า'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Based On' กับ 'Group By' ไม่ต้องเหมือนกัน" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "จากวันที่ ต้องอยู่หลัง ถึงวันที่" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "มีหมายเลขซีเรียล ไม่สามารถเป็น ใช่ สำหรับสินค้าที่ไม่ใช่สต็อก" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "ต้องการการตรวจสอบก่อนการส่งมอบ ถูกปิดใช้งานสำหรับสินค้า {0}, ไม่จำเป็นต้องสร้าง QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "ต้องการการตรวจสอบก่อนการซื้อ ถูกปิดใช้งานสำหรับสินค้า {0}, ไม่จำเป็นต้องสร้าง QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "เปิด" @@ -326,13 +317,13 @@ msgstr "เปิด" msgid "'To Date' is required" msgstr "กรุณากรอก 'ถึงวันที่'" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "ถึงหมายเลขแพ็คเกจ ไม่สามารถน้อยกว่า จากหมายเลขแพ็คเกจ" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "อัปเดตสต็อก ไม่สามารถเลือกได้เพราะสินค้าไม่ได้ส่งผ่าน {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90 ขึ้นไป" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "ไม่สามารถสร้างสินทรัพย์ได้

                    คุณกำลังพยายามสร้าง {0} สินทรัพย์จาก {2} {3}.
                    อย่างไรก็ตาม มีเพียง {1} รายการที่ซื้อเท่านั้นและ {4} สินทรัพย์ที่มีอยู่แล้วสำหรับ {5}." @@ -826,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • เอกสารการชำระเงินที่ต้องการสำหรับแถว: {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • การแปล: \"การแปล\"" #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    ไม่สามารถเรียกเก็บเงินเกินสำหรับรายการต่อไปนี้:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    {0} {1} ไม่เป็นของบริษัท :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1055,9 +1046,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "มีกลุ่มลูกค้าที่ใช้ชื่อเดียวกันนี้อยู่แล้ว กรุณาเปลี่ยนชื่อลูกค้าหรือเปลี่ยนชื่อกลุ่มลูกค้า" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1067,9 +1058,9 @@ msgstr "สามารถเพิ่มรายการวันหยุด msgid "A Lead requires either a person's name or an organization's name" msgstr "ลูกค้าเป้าหมายต้องมีชื่อบุคคลหรือชื่อองค์กร" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "ใบจัดสินค้าสามารถสร้างได้จากใบส่งของฉบับร่างเท่านั้น" +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1085,7 +1076,7 @@ msgstr "รายการราคาคือชุดราคาสินค msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "ผลิตภัณฑ์หรือบริการที่มีการซื้อ, ขาย, หรือเก็บไว้ในสต็อก" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "งานกระทบยอด {0} กำลังทำงานด้วยตัวกรองเดียวกัน ไม่สามารถกระทบยอดได้ในขณะนี้" @@ -1118,7 +1109,7 @@ msgstr "ต้องกำหนดคนขับเพื่อดำเนิ msgid "A logical Warehouse against which stock entries are made." msgstr "คลังสินค้าเชิงตรรกะที่ใช้บันทึกรายการสต็อก" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "เกิดความขัดแย้งในชุดการตั้งชื่อขณะสร้างหมายเลขลำดับต่อเนื่อง กรุณาเปลี่ยนชุดการตั้งชื่อสำหรับรายการนี้ {0}" @@ -1294,7 +1285,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "ปริมาณที่ยอมรับในหน่วยสต็อก" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "ปริมาณที่ยอมรับ" @@ -1325,12 +1316,16 @@ msgstr "คีย์การเข้าถึง" msgid "Access Key is required for Service Provider: {0}" msgstr "จำเป็นต้องมีคีย์การเข้าถึงสำหรับผู้ให้บริการ: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "ตาม CEFACT/ICG/2010/IC013 หรือ CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "ตามรายการวัตถุดิบ (BOM) {0}, สินค้า '{1}' ไม่มีอยู่ในรายการบันทึกสต็อก" @@ -1583,7 +1578,7 @@ msgstr "ต้องระบุบัญชีเพื่อรับราย msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "ไม่พบบัญชี" @@ -1713,11 +1708,11 @@ msgstr "บัญชี: {0} เป็นงานระหว่าง msgid "Account: {0} can only be updated via Stock Transactions" msgstr "บัญชี: {0} สามารถอัปเดตได้ผ่านธุรกรรมสต็อกเท่านั้น" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "บัญชี: {0} ไม่ได้รับอนุญาตภายใต้รายการการชำระเงิน" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "บัญชี: {0} ที่มีสกุลเงิน: {1} ไม่สามารถเลือกได้" @@ -1996,8 +1991,8 @@ msgstr "ตัวกรองมิติทางการบัญชี" msgid "Accounting Entries" msgstr "รายการทางบัญชี" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "รายการทางบัญชีสำหรับสินทรัพย์" @@ -2022,8 +2017,8 @@ msgstr "รายการทางบัญชีสำหรับบริก #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2071,7 +2066,11 @@ msgstr "" msgid "Accounting Period" msgstr "รอบระยะเวลาบัญชี" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "รอบระยะเวลาบัญชีทับซ้อนกับ {0}" @@ -2269,8 +2268,8 @@ msgstr "บัญชีค่าเสื่อมราคาสะสม" msgid "Accumulated Depreciation Amount" msgstr "จำนวนค่าเสื่อมราคาสะสม" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "ค่าเสื่อมราคาสะสม ณ วันที่" @@ -2498,7 +2497,7 @@ msgstr "ยอดคงเหลือจริง จำนวน" msgid "Actual Batch Quantity" msgstr "ปริมาณการผลิตจริง" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "ต้นทุนจริง" @@ -2508,7 +2507,7 @@ msgstr "ต้นทุนจริง" msgid "Actual Date" msgstr "วันที่จริง" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2658,8 +2657,8 @@ msgstr "เวลาจริงเป็นชั่วโมง (จากแ msgid "Actual qty in stock" msgstr "จำนวนจริงในสต็อก" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "ไม่สามารถรวมภาษีประเภทจริงในอัตราของรายการในแถว {0}" @@ -2824,10 +2823,6 @@ msgstr "เพิ่มหมายเลขซีเรียล / หมาย msgid "Add Serial / Batch No (Rejected Qty)" msgstr "เพิ่มหมายเลขซีเรียล/ชุดการผลิต (จำนวนที่ถูกปฏิเสธ)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "เพิ่มสินค้า" @@ -2926,13 +2921,13 @@ msgstr "เพิ่มโดย" msgid "Added On" msgstr "เพิ่มเมื่อ" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "เพิ่มบทบาทผู้จัดจำหน่ายให้กับผู้ใช้ {0}" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "เพิ่ม {1} บทบาทให้กับผู้ใช้ {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3074,7 +3069,7 @@ msgstr "จำนวนส่วนลดเพิ่มเติม" msgid "Additional Discount Amount (Company Currency)" msgstr "จำนวนส่วนลดเพิ่มเติม (สกุลเงินบริษัท)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "จำนวนส่วนลดเพิ่มเติม ({discount_amount}) ไม่สามารถเกินจำนวนทั้งหมดก่อนส่วนลดดังกล่าว ({total_before_discount})" @@ -3193,16 +3188,8 @@ msgid "Additional Transferred Qty" msgstr "จำนวนที่โอนเพิ่มเติม" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "ปริมาณที่โอนเพิ่มเติม {0}\n" -"\t\t\t\t\tไม่สามารถมากกว่า {1}ได้\n" -"\t\t\t\t\tเพื่อแก้ไขปัญหานี้ ให้เพิ่มค่าเปอร์เซ็นต์\n" -"\t\t\t\t\tของฟิลด์ 'โอนวัตถุดิบเพิ่มเติมไปยัง WIP'\n" -"\t\t\t\t\tในการตั้งค่าการผลิต" +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3466,7 +3453,7 @@ msgstr "ประเภทบัตรกำนัลล่วงหน้า" msgid "Advance amount" msgstr "จำนวนเงินล่วงหน้า" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "จำนวนเงินล่วงหน้าไม่สามารถมากกว่า {0} {1}" @@ -3535,7 +3522,7 @@ msgstr "คัดค้าน" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "เทียบกับบัญชี" @@ -3655,7 +3642,7 @@ msgstr "อ้างอิงใบแจ้งหนี้ผู้จัดจ #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "อ้างอิงใบสำคัญ" @@ -3679,7 +3666,7 @@ msgstr "อ้างอิงหมายเลขใบสำคัญ" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "อ้างอิงประเภทใบสำคัญ" @@ -3793,6 +3780,13 @@ msgstr "สายการบิน" msgid "Algorithm" msgstr "อัลกอริทึม" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3969,7 +3963,7 @@ msgstr "" msgid "All items are already requested" msgstr "สินค้าทุกรายการถูกร้องขอแล้ว" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "สินค้าทุกรายการถูกออกใบแจ้งหนี้/คืนแล้ว" @@ -3981,7 +3975,7 @@ msgstr "ได้รับสินค้าทุกรายการแล้ msgid "All items have already been transferred for this Work Order." msgstr "สินค้าทุกรายการสำหรับใบสั่งงานนี้ถูกโอนย้ายแล้ว" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "สินค้าทุกรายการในเอกสารนี้มีการตรวจสอบคุณภาพที่เชื่อมโยงอยู่แล้ว" @@ -4000,16 +3994,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "ความคิดเห็นและอีเมลทั้งหมดจะถูกคัดลอกจากเอกสารหนึ่งไปยังเอกสารที่สร้างขึ้นใหม่ (ผู้สนใจ -> โอกาส -> ใบเสนอราคา) ตลอดทั้งเอกสาร CRM" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "สินค้าทุกรายการถูกคืนแล้ว" +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "สินค้าที่ต้องการทั้งหมด (วัตถุดิบ) จะถูกดึงมาจาก BOM และเติมลงในตารางนี้ ที่นี่คุณยังสามารถเปลี่ยนคลังสินค้าต้นทางสำหรับสินค้าใด ๆ ได้ และในระหว่างการผลิต คุณสามารถติดตามวัตถุดิบที่โอนย้ายจากตารางนี้ได้" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "สินค้าเหล่านี้ถูกออกใบแจ้งหนี้/คืนแล้ว" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4032,7 +4026,7 @@ msgstr "จัดสรรเงินทดรองจ่ายอัตโน msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "จัดสรรจำนวนเงินที่ชำระ" @@ -4042,7 +4036,7 @@ msgstr "จัดสรรจำนวนเงินที่ชำระ" msgid "Allocate Payment Based On Payment Terms" msgstr "จัดสรรการชำระเงินตามเงื่อนไขการชำระเงิน" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "จัดสรรคำขอชำระเงิน" @@ -4072,7 +4066,7 @@ msgstr "จัดสรรแล้ว" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4155,8 +4149,8 @@ msgid "Allow Alternative Item" msgstr "อนุญาตสินคาทดแทน" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "ต้องเลือก 'อนุญาตสินคาทดแทน' ในสินค้า {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4263,7 +4257,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "อนุญาตเปลี่ยนชื่อค่าคุณลักษณะ" @@ -4544,14 +4538,16 @@ msgstr "สินค้าที่อนุญาต" msgid "Allowed To Transact With" msgstr "อนุญาตให้ทำธุรกรรมกับ" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "บทบาทหลักที่อนุญาตคือ 'ลูกค้า' และ 'ผู้จัดจำหน่าย' กรุณาเลือกหนึ่งในบทบาทเหล่านี้เท่านั้น" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4584,10 +4580,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "อนุญาตให้ผู้ใช้ส่งใบเสนอราคาจากผู้จัดจำหน่ายที่มีปริมาณเป็นศูนย์ได้ มีประโยชน์เมื่ออัตราคงที่แต่ปริมาณไม่คงที่ เช่น สัญญาจ้างเหมา" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4595,10 +4591,6 @@ msgstr "" msgid "Already Picked" msgstr "จัดแล้ว" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "มีบันทึกสำหรับสินค้า {0} อยู่แล้ว" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "ตั้งค่าเริ่มต้นในโปรไฟล์ POS {0} สำหรับผู้ใช้ {1} แล้ว กรุณาปิดการใช้งานค่าเริ่มต้น" @@ -4614,12 +4606,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "สินคาทดแทน" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4824,7 +4816,7 @@ msgstr "ถามเสมอ" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5050,12 +5042,12 @@ msgstr "กลุ่มสินค้าคือวิธีการจำแ msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "เกิดข้อผิดพลาดขณะลงรายการประเมินค่าสินค้าอีกครั้งผ่าน {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "เกิดข้อผิดพลาดระหว่างกระบวนการอัปเดต" @@ -5269,7 +5261,7 @@ msgstr "รหัสคูปองที่ใช้" msgid "Applied on each reading." msgstr "ใช้กับการอ่านแต่ละครั้ง" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "ใช้กฎการจัดเก็บแล้ว" @@ -5446,10 +5438,6 @@ msgstr "ช่องเวลาการจองนัดหมาย" msgid "Appointment Confirmation" msgstr "การยืนยันนัดหมาย" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "สร้างการนัดหมายสำเร็จแล้ว" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5475,6 +5463,10 @@ msgstr "การจัดตารางนัดหมายถูกปิด msgid "Appointment With" msgstr "นัดหมายกับ" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "สร้างการนัดหมายแล้ว แต่ไม่พบข้อมูลผู้สนใจ กรุณาตรวจสอบอีเมลเพื่อยืนยัน" @@ -5516,6 +5508,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการล้างข้อมูลสาธิตทั้งหมด" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบรายการนี้?" @@ -5598,18 +5599,18 @@ msgstr "เนื่องจากฟิลด์ {0} ถูกเปิดใ msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "เนื่องจากมีธุรกรรมที่ส่งแล้วที่เกี่ยวข้องกับรายการ {0} คุณไม่สามารถเปลี่ยนค่าของ {1} ได้" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "เนื่องจากมีสต็อกที่ถูกจองไว้ คุณไม่สามารถปิดใช้งาน {0} ได้" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "เนื่องจากมีรายการชิ้นส่วนย่อยเพียงพอ จึงไม่จำเป็นต้องมีคำสั่งงานสำหรับคลังสินค้า {0}" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "เนื่องจากมีวัตถุดิบเพียงพอ จึงไม่จำเป็นต้องมีคำขอวัสดุสำหรับคลังสินค้า {0}" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5648,7 +5649,7 @@ msgstr "รายการชิ้นส่วนประกอบ" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5720,7 +5721,7 @@ msgstr "รายการสต็อกที่เพิ่มมูลค่ #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5886,7 +5887,7 @@ msgstr "รายการการเคลื่อนย้ายสินท #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6018,7 +6019,7 @@ msgstr "การวิเคราะห์มูลค่าสินทรั msgid "Asset cancelled" msgstr "สินทรัพย์ถูกยกเลิก" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "ไม่สามารถยกเลิกสินทรัพย์ได้ เนื่องจากมันอยู่ในสถานะ {0} แล้ว" @@ -6034,7 +6035,7 @@ msgstr "สินทรัพย์ถูกเพิ่มมูลค่าห msgid "Asset created" msgstr "สินทรัพย์ถูกสร้าง" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "สินทรัพย์ถูกสร้างหลังจากแยกออกจากสินทรัพย์ {0}" @@ -6087,7 +6088,7 @@ msgstr "สินทรัพย์ถูกส่ง" msgid "Asset transferred to Location {0}" msgstr "สินทรัพย์ถูกย้ายไปยังตำแหน่ง {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "สินทรัพย์ถูกอัปเดตหลังจากแยกออกเป็นสินทรัพย์ {0}" @@ -6165,7 +6166,7 @@ msgstr "มูลค่าสินทรัพย์ถูกปรับหล #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6186,7 +6187,7 @@ msgstr "สินทรัพย์ไม่ได้ถูกสร้างส msgid "Assets {assets_link} created for {item_code}" msgstr "สินทรัพย์ {assets_link} ถูกสร้างสำหรับ {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "มอบหมายงานให้พนักงาน" @@ -6196,6 +6197,11 @@ msgstr "มอบหมายงานให้พนักงาน" msgid "Assign to Name" msgstr "มอบหมายให้ (ชื่อ)" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6214,19 +6220,23 @@ msgstr "ที่แถว #{0}: ปริมาณที่เลือก {1} msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "ที่แถว #{0}: ปริมาณที่เลือก {1} สำหรับสินค้า {2} มากกว่าสต็อกที่มีอยู่ {3} ในคลังสินค้า {4}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "ที่แถว {0}: ใน Serial และ Batch Bundle {1} ต้องมีสถานะเอกสารเป็น 1 และไม่ใช่ 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "ต้องมีอย่างน้อยหนึ่งบัญชีสำหรับกำไรหรือขาดทุนจากอัตราแลกเปลี่ยน" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "ต้องเลือกสินทรัพย์อย่างน้อยหนึ่งรายการ" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "ต้องเลือกใบแจ้งหนี้อย่างน้อยหนึ่งรายการ" @@ -6247,6 +6257,10 @@ msgstr "ต้องเลือกโมดูลที่เกี่ยวข msgid "At least one of the Selling or Buying must be selected" msgstr "ต้องเลือกการขายหรือการซื้ออย่างน้อยหนึ่งอย่าง" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "ต้องมีวัตถุดิบอย่างน้อยหนึ่งรายการในรายการสต็อกสำหรับประเภท {0}" @@ -6267,7 +6281,7 @@ msgstr "ที่แถว #{0}: รหัสลำดับ {1} ต้องไ msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "ที่แถว {0}: หมายเลขชุดการผลิตเป็นสิ่งจำเป็นสำหรับสินค้า {1}" @@ -6275,26 +6289,22 @@ msgstr "ที่แถว {0}: หมายเลขชุดการผลิ msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "ที่แถว {0}: ไม่สามารถตั้งค่าหมายเลขแถวแม่สำหรับสินค้า {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "ที่แถว {0}: ปริมาณเป็นสิ่งจำเป็นสำหรับชุดการผลิต {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "ที่แถว {0}: หมายเลขซีเรียลเป็นสิ่งจำเป็นสำหรับสินค้า {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "ที่แถว {0}: ชุดซีเรียลและชุดการผลิต {1} ถูกสร้างขึ้นแล้ว กรุณาลบค่าออกจากช่องหมายเลขซีเรียลหรือหมายเลขชุดการผลิต" +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "ที่แถว {0}: ตั้งค่าหมายเลขแถวแม่สำหรับสินค้า {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "อย่างน้อยหนึ่งวัตถุดิบสำหรับสินค้าสำเร็จรูป {0} ควรได้รับการจัดหาจากลูกค้า" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6506,7 +6516,7 @@ msgstr "การกระทบยอดการชำระเงินอั msgid "Auto Repeat Detail" msgstr "รายละเอียดการทำซ้ำอัตโนมัติ" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "ข้อผิดพลาดการตั้งค่าภาษีอัตโนมัติ" @@ -6567,7 +6577,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "อัปเดตเอกสารที่ทำซ้ำอัตโนมัติแล้ว" @@ -6692,7 +6702,7 @@ msgstr "วันที่พร้อมใช้งาน" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6788,7 +6798,7 @@ msgstr "ต้องระบุวันที่พร้อมใช้งา msgid "Available {0}" msgstr "มีอยู่ {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "วันที่พร้อมใช้งานควรอยู่หลังวันที่ซื้อ" @@ -6906,7 +6916,7 @@ msgstr "ปริมาณในช่องเก็บ" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6925,8 +6935,8 @@ msgid "BOM 1" msgstr "บิลรายการ 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "BOM 1 {0} และ BOM 2 {1} ไม่ควรเหมือนกัน" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6940,7 +6950,7 @@ msgstr "บิลรายการ 2" msgid "BOM Comparison Tool" msgstr "เครื่องมือเปรียบเทียบ BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7071,7 +7081,7 @@ msgstr "การดำเนินการ BOM" msgid "BOM Operations Time" msgstr "เวลาการดำเนินการ BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7092,7 +7102,7 @@ msgstr "ค้นหา BOM" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7144,10 +7154,6 @@ msgstr "บันทึกเครื่องมืออัปเดต BOM msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "การอัปเดต BOM กำลังดำเนินการอยู่ โปรดรอจนกว่า {0} จะเสร็จสิ้น" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "การอัปเดต BOM อยู่ในคิวและอาจใช้เวลาสองสามนาที โปรดตรวจสอบ {0} สำหรับความคืบหน้า" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7186,15 +7192,19 @@ msgstr "การวนซ้ำ BOM: {0} ไม่สามารถเป็ msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "การวนซ้ำ BOM: {1} ไม่สามารถเป็นพ่อแม่หรือลูกของ {0} ได้" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "BOM {0} ไม่ได้เป็นของรายการ {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "BOM {0} ต้องเปิดใช้งาน" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "BOM {0} ต้องถูกส่ง" @@ -7275,7 +7285,7 @@ msgstr "ยอดคงเหลือ" msgid "Balance (Dr - Cr)" msgstr "ยอดคงเหลือ (เดบิต - เครดิต)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "ยอดคงเหลือ ({0})" @@ -7345,6 +7355,10 @@ msgstr "งบดุล ยอดคงเหลือ" msgid "Balance Sheet Summary" msgstr "สรุปงบดุล" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "ปริมาณสต็อกคงเหลือ" @@ -7405,7 +7419,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7505,8 +7519,8 @@ msgid "Bank Account Type" msgstr "ประเภทบัญชีธนาคาร" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "บัญชีธนาคาร {} ในธุรกรรมธนาคาร {} ไม่ตรงกับบัญชีธนาคาร {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7750,7 +7764,7 @@ msgstr "อัปเดตธุรกรรมธนาคาร {0} แล้ msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "บัญชีธนาคารไม่สามารถตั้งชื่อเป็น {0} ได้" @@ -7762,7 +7776,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "มีบัญชีธนาคาร {0} อยู่แล้วและไม่สามารถสร้างซ้ำได้" @@ -7774,7 +7788,7 @@ msgstr "เพิ่มบัญชีธนาคารแล้ว" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "ข้อผิดพลาดในการสร้างธุรกรรมธนาคาร" @@ -8050,8 +8064,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8082,15 +8096,15 @@ msgstr "" msgid "Batch No" msgstr "หมายเลขล็อต" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "ต้องระบุหมายเลขล็อต" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "ไม่มีหมายเลขล็อต {0}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "หมายเลขล็อต {0} เชื่อมโยงกับสินค้า {1} ซึ่งมีหมายเลขซีเรียล กรุณาสแกนหมายเลขซีเรียลแทน" @@ -8098,6 +8112,10 @@ msgstr "หมายเลขล็อต {0} เชื่อมโยงกั msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "ไม่มีหมายเลขล็อต {0} ใน {1} {2} ต้นฉบับ ดังนั้นคุณไม่สามารถคืนสินค้าโดยอ้างอิง {1} {2} ได้" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8163,9 +8181,9 @@ msgstr "หน่วยนับของแบทช์" msgid "Batch and Serial No" msgstr "แบทช์และหมายเลขซีเรียล" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "ไม่ได้สร้างแบทช์สำหรับสินค้า {} เนื่องจากไม่มีชุดเลขที่แบทช์" +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8277,7 +8295,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8752,8 +8770,8 @@ msgid "Booked Fixed Asset" msgstr "สินทรัพย์ถาวรที่จองแล้ว" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "บัญชีถูกปิดจนถึงงวดสิ้นสุดวันที่ {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8980,8 +8998,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "ไม่สามารถกำหนดงบประมาณให้กับบัญชีกลุ่ม {0} ได้" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "ไม่สามารถกำหนดงบประมาณให้กับ {0} ได้ เนื่องจากไม่ใช่บัญชีรายได้หรือค่าใช้จ่าย" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8998,7 +9016,7 @@ msgstr "เวลาสำรอง" msgid "Buffered Cursor" msgstr "เคอร์เซอร์แบบบัฟเฟอร์" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "สร้างทั้งหมดหรือไม่?" @@ -9006,7 +9024,7 @@ msgstr "สร้างทั้งหมดหรือไม่?" msgid "Build Tree" msgstr "สร้างโครงสร้างต้นไม้" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "ปริมาณที่สร้างได้" @@ -9333,6 +9351,10 @@ msgstr "ยอดคงเหลือในใบแจ้งยอดธนา msgid "Calculated Discount Mismatch" msgstr "ส่วนลดที่คำนวณไม่ตรงกัน" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9504,7 +9526,7 @@ msgstr "แคมเปญ {0} ไม่พบ" msgid "Can be approved by {0}" msgstr "สามารถอนุมัติโดย {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "ไม่สามารถปิดใบสั่งงานได้ เนื่องจากมีบัตรงาน {0} ใบอยู่ในสถานะ 'กำลังดำเนินการ'" @@ -9533,21 +9555,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "ไม่สามารถกรองตามเลขที่ใบสำคัญได้ หากจัดกลุ่มตามใบสำคัญ" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "สามารถชำระเงินได้เฉพาะกับ {0} ที่ยังไม่ได้เรียกเก็บเงิน" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "สามารถอ้างอิงแถวได้ก็ต่อเมื่อประเภทค่าใช้จ่ายเป็น 'ตามจำนวนเงินแถวก่อนหน้า' หรือ 'ยอดรวมแถวก่อนหน้า'" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "ไม่สามารถเปลี่ยนวิธีการประเมินค่าได้ เนื่องจากมีธุรกรรมที่เกี่ยวข้องกับสินค้าบางรายการที่ไม่มีวิธีการประเมินค่าของตนเอง" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "ยกเลิกการเข้าพบเรื่องวัสดุ {0} ก่อนที่จะยกเลิกการเคลมประกันนี้" @@ -9576,7 +9601,7 @@ msgstr "" msgid "Cancelation Date" msgstr "วันที่ยกเลิก" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9584,11 +9609,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "ไม่สามารถมอบหมายพนักงานเก็บเงิน" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "ไม่สามารถคำนวณเวลาถึงได้เนื่องจากไม่มีที่อยู่คนขับ" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "ไม่สามารถเปลี่ยนการตั้งค่าบัญชีสินค้าคงคลังได้" @@ -9603,10 +9623,6 @@ msgstr "ไม่สามารถสร้างรายการคืนส msgid "Cannot Merge" msgstr "ไม่สามารถรวมได้" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "ไม่สามารถปรับเส้นทางให้เหมาะสมได้เนื่องจากไม่มีที่อยู่คนขับ" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "ไม่สามารถปลดพนักงานได้" @@ -9631,6 +9647,11 @@ msgstr "ไม่สามารถใช้หัก ณ ที่จ่าย msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "ไม่สามารถเป็นสินทรัพย์ถาวรได้เนื่องจากมีการสร้างบัญชีแยกประเภทสต็อกแล้ว" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "ไม่สามารถยกเลิกตารางการคิดค่าเสื่อมราคาสินทรัพย์ {0} เนื่องจากมีรายการบันทึกบัญชีร่างอยู่ {1}." @@ -9640,14 +9661,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "ไม่สามารถยกเลิกรายการปิดยอด POS ได้" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "ไม่สามารถยกเลิกการจองสต็อกได้ {0}เนื่องจากมีการใช้งานในใบสั่งงาน {1}กรุณายกเลิกใบสั่งงานก่อนหรือยกเลิกการจองสต็อก" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "ไม่สามารถยกเลิกได้เนื่องจากกำลังรอการประมวลผลเอกสารที่ยกเลิก" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "ไม่สามารถยกเลิกได้เนื่องจากมีรายการสต็อกที่ส่งแล้ว {0} อยู่" @@ -9655,7 +9676,7 @@ msgstr "ไม่สามารถยกเลิกได้เนื่อง msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "ไม่สามารถยกเลิกธุรกรรมได้ การลงรายการประเมินค่าสินค้าใหม่เมื่อส่งยังไม่เสร็จสมบูรณ์" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "ไม่สามารถยกเลิกการบันทึกสินค้าคงคลังการผลิตนี้ได้ เนื่องจากจำนวนสินค้าสำเร็จรูปที่ผลิตได้ไม่สามารถน้อยกว่าจำนวนที่ส่งมอบในใบสั่งซื้อจากผู้รับเหมาช่วงที่เชื่อมโยง" @@ -9667,7 +9688,7 @@ msgstr "ไม่สามารถยกเลิกเอกสารนี้ msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "ไม่สามารถยกเลิกเอกสารนี้ได้เนื่องจากเชื่อมโยงกับสินทรัพย์ที่ส่งแล้ว {asset_link} กรุณายกเลิกสินทรัพย์เพื่อดำเนินการต่อ" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "ไม่สามารถยกเลิกธุรกรรมสำหรับใบสั่งงานที่เสร็จสมบูรณ์แล้วได้" @@ -9692,8 +9713,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "ไม่สามารถเปลี่ยนสกุลเงินเริ่มต้นของบริษัทได้เนื่องจากมีธุรกรรมอยู่แล้ว ต้องยกเลิกธุรกรรมเพื่อเปลี่ยนสกุลเงินเริ่มต้น" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "ไม่สามารถทำงาน {0} ให้เสร็จได้ เนื่องจากงานที่ขึ้นต่อกัน {1} ยังไม่เสร็จสิ้น / ถูกยกเลิก" +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9719,7 +9740,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "ไม่สามารถสร้างรายการสำรองสต็อกสำหรับใบรับสินค้าที่ลงวันที่ในอนาคตได้" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "ไม่สามารถสร้างรายการเลือกสินค้าสำหรับใบสั่งขาย {0} ได้เนื่องจากมีการสำรองสต็อกไว้ กรุณายกเลิกการสำรองสต็อกเพื่อสร้างรายการเลือกสินค้า" @@ -9728,6 +9749,10 @@ msgstr "ไม่สามารถสร้างรายการเลือ msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "ไม่สามารถสร้างรายการบัญชีกับบัญชีที่ปิดใช้งาน: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "ไม่สามารถสร้างการคืนสินค้าสำหรับใบแจ้งหนี้รวม {0} ได้" @@ -9745,7 +9770,7 @@ msgstr "ไม่สามารถประกาศเป็น 'สูญห msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "ไม่สามารถหักได้เมื่อหมวดหมู่อยู่ใน 'การประเมินค่า' หรือ 'การประเมินค่าและยอดรวม'" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "ไม่สามารถลบแถวกำไร/ขาดทุนจากอัตราแลกเปลี่ยนได้" @@ -9758,7 +9783,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "ไม่สามารถลบรายการที่ได้สั่งซื้อแล้ว" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "ไม่สามารถลบ DocType ที่ได้รับการป้องกันได้: {0}" @@ -9790,7 +9815,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "ไม่สามารถเปิดใช้งานบัญชีสินค้าคงคลังแบบรายรายการได้ เนื่องจากมีรายการบัญชีสต็อกคงเหลืออยู่แล้วสำหรับบริษัท {0} โดยใช้บัญชีสินค้าคงคลังแบบแยกตามคลังสินค้า กรุณายกเลิกรายการธุรกรรมสต็อกก่อนแล้วลองใหม่อีกครั้ง" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9815,19 +9840,23 @@ msgstr "ไม่พบสินค้าที่มีบาร์โค้ด msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "ไม่พบคลังสินค้าเริ่มต้นสำหรับสินค้า {0} กรุณาตั้งค่าในข้อมูลหลักของสินค้าหรือในการตั้งค่าสต็อก" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "ไม่สามารถรวม {0} '{1}' เข้าเป็น '{2}' ได้ เนื่องจากทั้งสองมีรายการบัญชีที่มีอยู่แล้วในสกุลเงินที่แตกต่างกันสำหรับบริษัท '{3}'" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "ไม่สามารถผลิตสินค้าได้มากกว่าปริมาณคำสั่งซื้อ {0} กว่าปริมาณคำสั่งซื้อ {1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "ไม่สามารถผลิตสินค้าเพิ่มสำหรับ {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "ไม่สามารถผลิตสินค้าเกิน {0} ชิ้นสำหรับ {1}" @@ -9839,12 +9868,16 @@ msgstr "ไม่สามารถรับเงินจากลูกค้ msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "ไม่สามารถลดปริมาณได้น้อยกว่าปริมาณที่สั่งหรือซื้อ" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "ไม่สามารถอ้างอิงหมายเลขแถวที่มากกว่าหรือเท่ากับหมายเลขแถวปัจจุบันสำหรับประเภทค่าใช้จ่ายนี้ได้" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "ไม่สามารถดึงโทเค็นลิงก์สำหรับการอัปเดตได้ ตรวจสอบบันทึกข้อผิดพลาดสำหรับข้อมูลเพิ่มเติม" @@ -9853,19 +9886,23 @@ msgstr "ไม่สามารถดึงโทเค็นลิงก์ส msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "ไม่สามารถดึงโทเค็นลิงก์ได้ ตรวจสอบบันทึกข้อผิดพลาดสำหรับข้อมูลเพิ่มเติม" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "ไม่สามารถเลือกประเภทค่าใช้จ่ายเป็น 'ตามจำนวนเงินแถวก่อนหน้า' หรือ 'ตามยอดรวมแถวก่อนหน้า' สำหรับแถวแรกได้" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "ไม่สามารถตั้งเป็น 'สูญหาย' ได้เนื่องจากมีการสร้างใบสั่งขายแล้ว" @@ -10292,9 +10329,9 @@ msgstr "เปลี่ยนประเภทบัญชีเป็น 'ล msgid "Change this date manually to setup the next synchronization start date" msgstr "เปลี่ยนวันที่นี้ด้วยตนเองเพื่อตั้งค่าวันที่เริ่มต้นการซิงโครไนซ์ครั้งถัดไป" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "เปลี่ยนชื่อลูกค้าเป็น '{}' เนื่องจากมี '{}' อยู่แล้ว" +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10320,8 +10357,8 @@ msgstr "การเปลี่ยนวิธีการประเมิน msgid "Channel Partner" msgstr "คู่ค้าช่องทาง" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "ค่าใช้จ่ายประเภท 'ตามจริง' ในแถวที่ {0} ไม่สามารถรวมอยู่ในอัตราสินค้าหรือจำนวนเงินที่ชำระได้" @@ -10515,7 +10552,7 @@ msgstr "ความกว้างเช็ค" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "วันที่เช็ค/อ้างอิง" @@ -10573,7 +10610,7 @@ msgstr "ชื่อเอกสารลูก" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "การอ้างอิงแถวลูก" @@ -10583,8 +10620,8 @@ msgid "Child Table Not Allowed" msgstr "ไม่อนุญาตให้ใช้ตารางย่อย" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "มีงานย่อยสำหรับงานนี้ คุณไม่สามารถลบงานนี้ได้" +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10762,7 +10799,7 @@ msgstr "ปิดเงินกู้" msgid "Close Replied Opportunity After Days" msgstr "ปิดโอกาสทางการขายที่ตอบกลับแล้วหลังจาก (วัน)" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "ปิด POS" @@ -10776,7 +10813,7 @@ msgstr "เอกสารที่ปิดแล้ว" msgid "Closed Documents" msgstr "เอกสารที่ปิดแล้ว" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "ใบสั่งงานที่ปิดแล้วไม่สามารถหยุดหรือเปิดใหม่ได้" @@ -11006,9 +11043,9 @@ msgstr "ค่าคอมมิชชั่น" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11445,7 +11482,7 @@ msgstr "บริษัท" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11515,7 +11552,7 @@ msgstr "บริษัท" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11555,10 +11592,6 @@ msgstr "บริษัท" msgid "Company Abbreviation" msgstr "ตัวย่อบริษัท" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "ตัวย่อบริษัทต้องมีความยาวไม่เกิน 5 ตัวอักษร" @@ -11723,7 +11756,7 @@ msgstr "ที่อยู่จัดส่งของบริษัท" msgid "Company Tax ID" msgstr "หมายเลขประจำตัวผู้เสียภาษีของบริษัท" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "ต้องระบุบริษัทและวันที่ลงรายการ" @@ -11767,12 +11800,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "ชื่อฟิลด์ลิงก์บริษัทที่ใช้สำหรับการกรอง (ไม่บังคับ - ปล่อยว่างไว้เพื่อลบข้อมูลทั้งหมด)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "ชื่อบริษัทไม่ตรงกัน" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "บริษัทของสินทรัพย์ {0} และเอกสารซื้อ {1} ไม่ตรงกัน" +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11810,6 +11843,14 @@ msgstr "บริษัท {0} ถูกเพิ่มหลายครั้ msgid "Company {0} does not exist" msgstr "ไม่มีบริษัท {0}" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "บริษัท {0} ถูกเพิ่มมากกว่าหนึ่งครั้ง" @@ -11818,14 +11859,6 @@ msgstr "บริษัท {0} ถูกเพิ่มมากกว่าห msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "ยังไม่มีบริษัท {} การตั้งค่าภาษีถูกยกเลิก" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "บริษัท {} ไม่ตรงกับบริษัทในโปรไฟล์ POS {}" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11847,7 +11880,7 @@ msgstr "ชื่อคู่แข่ง" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "คู่แข่ง" @@ -12291,8 +12324,8 @@ msgid "Consumed Qty" msgstr "ปริมาณที่ใช้ไป" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "ปริมาณที่ใช้ไปต้องไม่มากกว่าปริมาณที่สำรองไว้สำหรับสินค้า {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12607,7 +12640,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12907,7 +12940,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12932,7 +12965,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12990,7 +13023,7 @@ msgstr "หมายเลขศูนย์ต้นทุน" msgid "Cost Center and Budgeting" msgstr "ศูนย์ต้นทุนและการจัดทำงบประมาณ" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "ศูนย์ต้นทุนสำหรับแถวรายการได้รับการอัปเดตเป็น {0}" @@ -13002,7 +13035,7 @@ msgstr "ศูนย์ต้นทุนเป็นส่วนหนึ่ง msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "ต้องการศูนย์ต้นทุนในแถว {0} ในตารางภาษีสำหรับประเภท {1}" @@ -13024,12 +13057,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "ศูนย์ต้นทุน {0} ไม่สามารถใช้สำหรับการจัดสรรได้เนื่องจากใช้เป็นศูนย์ต้นทุนหลักในบันทึกการจัดสรรอื่น" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "ศูนย์ต้นทุน {} ไม่ได้เป็นของบริษัท {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "ศูนย์ต้นทุน {} เป็นศูนย์ต้นทุนกลุ่มและศูนย์ต้นทุนกลุ่มไม่สามารถใช้ในธุรกรรมได้" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13153,14 +13186,14 @@ msgid "Costing and Billing" msgstr "การคำนวณต้นทุนและการเรียกเก็บเงิน" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "ฟิลด์การคิดต้นทุนและการเรียกเก็บเงินได้รับการอัปเดตแล้ว" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "ไม่สามารถลบข้อมูลตัวอย่างได้" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "ไม่สามารถสร้างลูกค้าอัตโนมัติได้เนื่องจากขาดฟิลด์บังคับต่อไปนี้:" @@ -13172,7 +13205,7 @@ msgstr "ไม่สามารถสร้างใบลดหนี้อั msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "ไม่พบบริษัทสำหรับการอัปเดตบัญชีธนาคาร" @@ -13182,8 +13215,8 @@ msgstr "ไม่พบกะที่เหมาะสมเพื่อจั #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "ไม่พบเส้นทางสำหรับ " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13206,7 +13239,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "ไม่สามารถแก้ฟังก์ชันคะแนนเกณฑ์สำหรับ {0} ได้ โปรดตรวจสอบว่าสูตรถูกต้อง" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "ไม่สามารถแก้ฟังก์ชันคะแนนถ่วงน้ำหนักได้ โปรดตรวจสอบว่าสูตรถูกต้อง" @@ -13436,10 +13469,6 @@ msgstr "สร้างลูกค้าใหม่" msgid "Create New Lead" msgstr "สร้างลีดใหม่" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13458,7 +13487,7 @@ msgstr "" msgid "Create Opportunity" msgstr "สร้างโอกาสทางการขาย" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "สร้างรายการเปิด POS" @@ -13473,7 +13502,7 @@ msgstr "สร้างรายการชำระเงิน" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "สร้างรายการชำระเงินสำหรับใบแจ้งหนี้ POS ที่รวมยอดแล้ว" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13701,7 +13730,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "สร้างตัวแปรพร้อมรูปภาพเทมเพลต" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "สร้างธุรกรรมสต็อกขาเข้าสำหรับสินค้า" @@ -13735,7 +13764,7 @@ msgstr "สร้าง {0} {1} ?" msgid "Created By Migration" msgstr "สร้างโดยการย้ายข้อมูล" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "สร้าง {0} scorecards สำหรับ {1} ระหว่าง:" @@ -13830,7 +13859,7 @@ msgstr "กำลังสร้างผู้ใช้..." msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "กำลังสร้าง {} จาก {} {}" @@ -13840,17 +13869,17 @@ msgstr "กำลังสร้าง {} จาก {} {}" msgid "Creation" msgstr "การสร้าง" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "การสร้าง {1} สำเร็จ" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "การสร้าง {0} ล้มเหลว\n" "\t\t\t\tตรวจสอบ บันทึกธุรกรรมเป็นกลุ่ม" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "การสร้าง {0} สำเร็จบางส่วน\n" @@ -13885,11 +13914,11 @@ msgstr "การสร้าง {0} สำเร็จบางส่วน\n" msgid "Credit" msgstr "เครดิต" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "เครดิต (ธุรกรรม)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "เครดิต ({0})" @@ -13970,7 +13999,7 @@ msgstr "วันเครดิต" msgid "Credit Limit" msgstr "วงเงินเครดิต" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "เกินวงเงินเครดิต" @@ -14050,16 +14079,16 @@ msgstr "เครดิตไปยัง" msgid "Credit in Company Currency" msgstr "เครดิตในสกุลเงินบริษัท" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "เกินวงเงินเครดิตสำหรับลูกค้า {0} ({1}/{2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "มีการกำหนดวงเงินเครดิตสำหรับบริษัท {0} แล้ว" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "ถึงวงเงินเครดิตสำหรับลูกค้า {0}" @@ -14118,12 +14147,12 @@ msgstr "การตั้งค่าเกณฑ์" msgid "Criteria Weight" msgstr "น้ำหนักเกณฑ์" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "น้ำหนักเกณฑ์ต้องรวมกันได้ 100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "ช่วงเวลา Cron ควรอยู่ระหว่าง 1 ถึง 59 นาที" @@ -14246,7 +14275,7 @@ msgstr "สกุลเงินและรายการราคา" msgid "Currency can not be changed after making entries using some other currency" msgstr "ไม่สามารถเปลี่ยนสกุลเงินได้หลังจากทำรายการโดยใช้สกุลเงินอื่นแล้ว" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "ขณะนี้ตัวกรองสกุลเงินยังไม่รองรับในรายงานการเงินแบบกำหนดเอง" @@ -14311,8 +14340,8 @@ msgid "Current BOM" msgstr "BOM ปัจจุบัน" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "BOM ปัจจุบันและ BOM ใหม่ต้องไม่เหมือนกัน" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14374,10 +14403,6 @@ msgstr "ชุดซีเรียล / แบทช์ปัจจุบัน msgid "Current Serial No" msgstr "หมายเลขซีเรียลปัจจุบัน" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15208,7 +15233,7 @@ msgstr "ดี - อี" msgid "DFS" msgstr "ดีเอฟเอส" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "สรุปโครงการรายวันสำหรับ {0}" @@ -15353,10 +15378,6 @@ msgstr "วันที่ดำเนินการ" msgid "Day Of Week" msgstr "วันในสัปดาห์" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15463,11 +15484,11 @@ msgstr "ตัวแทนจำหน่าย" msgid "Debit" msgstr "เดบิต" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "เดบิต (ธุรกรรม)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "เดบิต ({0})" @@ -15629,7 +15650,7 @@ msgstr "เดซิลิตร" msgid "Decimeter" msgstr "เดซิเมตร" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "ประกาศสูญหาย" @@ -16310,8 +16331,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "กำลังลบ {0} และเอกสาร Common Code ที่เกี่ยวข้องทั้งหมด..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "กำลังดำเนินการลบ!" @@ -16405,7 +16426,7 @@ msgstr "รายการที่จัดส่งที่ต้องเร #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16463,7 +16484,7 @@ msgstr "การจัดส่ง" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16793,7 +16814,7 @@ msgstr "ค่าเสื่อมราคา" msgid "Depreciation Amount" msgstr "จำนวนค่าเสื่อมราคา" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "จำนวนค่าเสื่อมราคาในระหว่างงวด" @@ -16809,7 +16830,7 @@ msgstr "วันที่คิดค่าเสื่อมราคา" msgid "Depreciation Details" msgstr "รายละเอียดค่าเสื่อมราคา" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "ค่าเสื่อมราคาที่ถูกตัดออกเนื่องจากการจำหน่ายสินทรัพย์" @@ -16879,7 +16900,7 @@ msgstr "วันที่ลงรายการค่าเสื่อมร msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "แถวค่าเสื่อมราคา {0}: วันที่ลงรายการค่าเสื่อมราคาต้องไม่มาก่อนวันที่พร้อมใช้งาน" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "แถวค่าเสื่อมราคา {0}: มูลค่าคาดหวังหลังสิ้นสุดอายุการใช้งานต้องมากกว่าหรือเท่ากับ {1}" @@ -16908,11 +16929,11 @@ msgstr "ตารางค่าเสื่อมราคา" msgid "Depreciation Schedule View" msgstr "มุมมองตารางค่าเสื่อมราคา" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "ไม่สามารถคำนวณค่าเสื่อมราคาสำหรับสินทรัพย์ที่คิดค่าเสื่อมราคาเต็มจำนวนแล้ว" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "ค่าเสื่อมราคาถูกตัดออกผ่านการกลับรายการ" @@ -16940,7 +16961,7 @@ msgstr "นักออกแบบ" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "เหตุผลโดยละเอียด" @@ -17043,12 +17064,12 @@ msgid "Difference Account in Items Table" msgstr "บัญชีผลต่างในตารางสินค้า" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "บัญชีผลต่างต้องเป็นบัญชีประเภทสินทรัพย์/หนี้สิน (ยอดยกมา) เนื่องจากรายการสต็อกนี้เป็นรายการยอดยกมา" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "บัญชีผลต่างต้องเป็นบัญชีประเภทสินทรัพย์/หนี้สิน เนื่องจากรายการกระทบยอดสต็อกนี้เป็นรายการยอดยกมา" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17110,7 +17131,7 @@ msgstr "มูลค่าผลต่าง" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "สามารถตั้งค่า 'คลังสินค้าต้นทาง' และ 'คลังสินค้าปลายทาง' ที่แตกต่างกันสำหรับแต่ละแถวได้" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "หน่วยวัดที่แตกต่างกันสำหรับสินค้าจะทำให้ค่า (รวม) น้ำหนักสุทธิไม่ถูกต้อง โปรดตรวจสอบให้แน่ใจว่าน้ำหนักสุทธิของแต่ละสินค้าอยู่ในหน่วยวัดเดียวกัน" @@ -17283,7 +17304,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "ไม่สามารถใช้คลังสินค้าที่ปิดใช้งาน {0} สำหรับธุรกรรมนี้ได้" @@ -17292,18 +17313,18 @@ msgstr "ไม่สามารถใช้คลังสินค้าที msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "ปิดใช้งานกฎการกำหนดราคาเนื่องจาก {} นี้เป็นการโอนภายใน" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "ปิดใช้งานราคาที่รวมภาษีแล้วเนื่องจาก {} นี้เป็นการโอนภายใน" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17552,9 +17573,9 @@ msgstr "ส่วนลดต้องไม่เกิน 100%" msgid "Discount must be less than 100" msgstr "ส่วนลดต้องน้อยกว่า 100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "ใช้ส่วนลด {} ตามเงื่อนไขการชำระเงิน" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17918,11 +17939,11 @@ msgstr "คุณต้องการส่งรายการสต็อก #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "ประเภทเอกสาร {0} ไม่มีอยู่" @@ -17960,22 +17981,6 @@ msgstr "ค้นหาเอกสาร" msgid "Document Count" msgstr "จำนวนเอกสาร" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18281,7 +18286,7 @@ msgstr "โครงการซ้ำพร้อมงาน" msgid "Duplicate Sales Invoices found" msgstr "พบใบแจ้งหนี้ขายซ้ำ" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "หมายเลขซีเรียลซ้ำกัน" @@ -18435,7 +18440,7 @@ msgstr "แก้ไขความจุ" msgid "Edit Cart" msgstr "แก้ไขรถเข็น" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "ไม่อนุญาตให้แก้ไข" @@ -18659,8 +18664,8 @@ msgid "Email verification failed." msgstr "การยืนยันอีเมลล้มเหลว" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "อีเมลในคิว" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18847,7 +18852,7 @@ msgstr "พนักงาน" msgid "Empty" msgstr "ว่างเปล่า" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "ว่างเปล่า เพื่อลบบัญชี" @@ -18856,7 +18861,7 @@ msgstr "ว่างเปล่า เพื่อลบบัญชี" msgid "Ems(Pica)" msgstr "เอ็มส์ (Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18935,6 +18940,12 @@ msgstr "เปิดใช้งานส่วนลดและอัตรา msgid "Enable European Access" msgstr "เปิดใช้งานการเข้าถึงในยุโรป" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19206,7 +19217,7 @@ msgstr "เวลาสิ้นสุด" msgid "End Transit" msgstr "สิ้นสุดการขนส่ง" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19329,7 +19340,7 @@ msgstr "ป้อนหมายเลขโทรศัพท์ของลู msgid "Enter date to scrap asset" msgstr "ป้อนวันที่เพื่อทิ้งสินทรัพย์" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "ป้อนรายละเอียดค่าเสื่อมราคา" @@ -19385,6 +19396,10 @@ msgstr "ป้อนปริมาณที่จะผลิต รายก msgid "Enter {0} amount." msgstr "ป้อนจำนวนเงิน {0}" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "บันเทิงและสันทนาการ" @@ -19420,7 +19435,7 @@ msgstr "ประเภทการป้อนข้อมูล" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "ส่วนของผู้ถือหุ้น" @@ -19444,7 +19459,7 @@ msgstr "เอิร์ก" msgid "Error Description" msgstr "คำอธิบายข้อผิดพลาด" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "เกิดข้อผิดพลาด" @@ -19476,21 +19491,21 @@ msgstr "ข้อผิดพลาดขณะโพสต์รายการ msgid "Error while processing deferred accounting for {0}" msgstr "ข้อผิดพลาดขณะประมวลผลการบัญชีรอตัดบัญชีสำหรับ {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "ข้อผิดพลาดขณะโพสต์การประเมินมูลค่าสินค้าใหม่" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "ข้อผิดพลาด: สินทรัพย์นี้มีรอบค่าเสื่อมราคาที่บันทึกไว้แล้ว {0} รอบ\n" -"\t\t\t\t\tวันที่ `เริ่มคิดค่าเสื่อมราคา` ต้องอยู่หลังวันที่ `พร้อมใช้งาน` อย่างน้อย {1} รอบ\n" -"\t\t\t\t\tกรุณาแก้ไขวันที่ให้ถูกต้อง" +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "ข้อผิดพลาด: {0} เป็นฟิลด์บังคับ" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19504,7 +19519,7 @@ msgid "Estimated Arrival" msgstr "การมาถึงโดยประมาณ" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "ต้นทุนโดยประมาณ" @@ -19554,7 +19569,7 @@ msgstr "ตัวอย่าง: ABCD.#####. หากตั้งค่าซ msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "ตัวอย่าง: หมายเลขซีเรียล {0} ถูกจองใน {1}" @@ -19835,7 +19850,7 @@ msgstr "วันที่ปิดที่คาดหวัง" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19922,7 +19937,7 @@ msgstr "มูลค่าที่คาดหวังหลังจากอ #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "ค่าใช้จ่าย" @@ -20181,9 +20196,9 @@ msgstr "ฟาเรนไฮต์" msgid "Failed Entries" msgstr "รายการที่ล้มเหลว" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "ไม่สามารถยืนยันคีย์ API ได้" +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20380,7 +20395,7 @@ msgid "Fetching Sales Orders..." msgstr "กำลังดึงคำสั่งซื้อ..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "กำลังดึงอัตราแลกเปลี่ยน ..." @@ -20418,15 +20433,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "ฟิลด์จะถูกคัดลอกเมื่อสร้างเท่านั้น" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "ไฟล์นี้ไม่เกี่ยวข้องกับบันทึกการลบธุรกรรมนี้" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "ไฟล์ไม่พบ" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "ไฟล์ไม่พบในเซิร์ฟเวอร์" @@ -20435,7 +20450,7 @@ msgstr "ไฟล์ไม่พบในเซิร์ฟเวอร์" msgid "File to Rename" msgstr "ไฟล์ที่จะเปลี่ยนชื่อ" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20594,11 +20609,11 @@ msgstr "รายงานทางการเงิน แถว" msgid "Financial Report Template" msgstr "แบบรายงานทางการเงิน" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "เทมเพลตรายงานทางการเงิน {0} ถูกปิดใช้งาน" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "เทมเพลตรายงานทางการเงิน {0} ไม่พบ" @@ -20667,7 +20682,7 @@ msgstr "BOM สินค้าสำเร็จรูป" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20680,7 +20695,7 @@ msgstr "สินค้าสำเร็จรูป" msgid "Finished Good Item Code" msgstr "รหัสสินค้าสำเร็จรูป" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "ปริมาณสินค้าสำเร็จรูป" @@ -20788,7 +20803,7 @@ msgstr "คลังสินค้าสำเร็จรูป" msgid "Finished Goods based Operating Cost" msgstr "ต้นทุนการดำเนินงานตามสินค้าสำเร็จรูป" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "สินค้าสำเร็จรูป {0} ไม่ตรงกับใบสั่งงาน {1}" @@ -20887,10 +20902,6 @@ msgstr "ระบอบการคลังเป็นสิ่งจำเป msgid "Fiscal Year" msgstr "ปีงบประมาณ" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20904,11 +20915,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "วันที่สิ้นสุดปีงบประมาณควรเป็นหนึ่งปีหลังจากวันที่เริ่มต้นปีงบประมาณ" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "ปีงบประมาณ {0} ไม่มีอยู่" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "ปีงบประมาณ {0} ไม่มีอยู่" @@ -20941,7 +20949,7 @@ msgstr "สินทรัพย์ถาวร" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21077,7 +21085,7 @@ msgstr "ฟุต/วินาที" msgid "For" msgstr "สำหรับ" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "สำหรับสินค้า 'ชุดสินค้า', คลังสินค้า, หมายเลขซีเรียล และหมายเลขแบทช์จะถูกพิจารณาจากตาราง 'รายการบรรจุ'. หากคลังสินค้าและหมายเลขแบทช์เหมือนกันสำหรับสินค้าบรรจุทั้งหมดของ 'ชุดสินค้า' ใดๆ ค่าเหล่านั้นสามารถป้อนในตารางสินค้าหลัก และค่าจะถูกคัดลอกไปยังตาราง 'รายการบรรจุ'." @@ -21102,10 +21110,6 @@ msgstr "สำหรับบริษัท" msgid "For Item" msgstr "สำหรับสินค้า" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "สำหรับสินค้า {0} ไม่สามารถรับเกินกว่า {1} หน่วยสำหรับ {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21172,12 +21176,12 @@ msgid "For Work Order" msgstr "สำหรับใบสั่งงาน" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "สำหรับรายการ {0}จำนวนต้องเป็นจำนวนลบ" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "สำหรับรายการ {0}ปริมาณต้องเป็นจำนวนบวก" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21209,13 +21213,13 @@ msgstr "สำหรับจำนวนเงินที่ใช้จ่า msgid "For individual supplier" msgstr "สำหรับผู้จัดจำหน่ายรายบุคคล" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "สำหรับรายการ {0} มีเพียง {1} สินทรัพย์ที่ถูกสร้างหรือเชื่อมโยงกับ {2} โปรดสร้างหรือเชื่อมโยง {3} สินทรัพย์เพิ่มเติมกับเอกสารที่เกี่ยวข้อง" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "สำหรับรายการ {0} อัตราต้องเป็นตัวเลขบวก หากต้องการอนุญาตอัตราเชิงลบ ให้เปิดใช้งาน {1} ใน {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21227,9 +21231,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "สำหรับการดำเนินการ {0} ที่แถว {1}โปรดเพิ่มวัตถุดิบหรือกำหนด BOM ให้กับรายการนี้" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "สำหรับการดำเนินการ {0}: ปริมาณ ({1}) ไม่สามารถมากกว่าปริมาณที่ค้างอยู่ ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21244,21 +21248,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "สำหรับปริมาณที่คาดการณ์และประมาณการ ระบบจะพิจารณาคลังสินค้าย่อยทั้งหมดที่อยู่ภายใต้คลังสินค้าหลักที่เลือกไว้" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "สำหรับปริมาณ {0} ไม่ควรมากกว่าปริมาณที่อนุญาต {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "สำหรับการอ้างอิง" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "สำหรับแถว {0} ใน {1} เพื่อรวม {2} ในอัตรารายการ ต้องรวมแถว {3} ด้วย" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "สำหรับแถว {0}: ป้อนปริมาณที่วางแผนไว้" @@ -21277,11 +21277,15 @@ msgstr "สำหรับเงื่อนไข 'ใช้กฎกับผ msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "เพื่อความสะดวกของลูกค้า รหัสเหล่านี้สามารถใช้ในรูปแบบการพิมพ์ เช่น ใบแจ้งหนี้และใบส่งของ" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "สำหรับรายการ {0}ปริมาณที่ใช้ควรเป็น {1} ตาม BOM {2}" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "สำหรับ {0} ใหม่ที่จะมีผล คุณต้องการล้าง {1} ปัจจุบันหรือไม่?" @@ -21369,6 +21373,21 @@ msgstr "โพสต์ฟอรัม" msgid "Forum URL" msgstr "URL ฟอรัม" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "โรงเรียนแฟรปเป้" @@ -21912,7 +21931,7 @@ msgstr "GL บาลานซ์" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "รายการบันทึกบัญชี" @@ -22037,6 +22056,10 @@ msgstr "บัญชีแยกประเภททั่วไป" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22090,7 +22113,7 @@ msgstr "สร้างรายการปิดสต็อก" msgid "Generate To Delete List" msgstr "สร้างรายการเพื่อลบ" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "สร้างรายการเพื่อลบก่อน" @@ -22433,7 +22456,7 @@ msgstr "สินค้าระหว่างทาง" msgid "Goods Transferred" msgstr "สินค้าโอนแล้ว" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "ได้รับสินค้าสำหรับรายการขาออก {0} แล้ว" @@ -22616,7 +22639,7 @@ msgstr "" msgid "Grant Commission" msgstr "มอบค่าคอมมิชชั่น" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "จำนวนที่มากกว่า" @@ -22756,7 +22779,7 @@ msgstr "จัดกลุ่มตามใบสั่งขาย" msgid "Group by Voucher" msgstr "จัดกลุ่มตามใบสำคัญ" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "ไม่อนุญาตให้เลือกคลังสินค้าโหนดกลุ่มสำหรับธุรกรรม" @@ -23059,7 +23082,7 @@ msgstr "ช่วยให้คุณกระจายงบประมาณ msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "นี่คือบันทึกข้อผิดพลาดสำหรับรายการค่าเสื่อมราคาที่ล้มเหลวที่กล่าวถึงข้างต้น: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "นี่คือตัวเลือกในการดำเนินการต่อ:" @@ -23087,7 +23110,7 @@ msgstr "ที่นี่ วันหยุดประจำสัปดา msgid "Hertz" msgstr "เฮิรตซ์" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "สวัสดี," @@ -23123,7 +23146,7 @@ msgstr "ซ่อนหากเป็นศูนย์" msgid "Hide Images" msgstr "ซ่อนภาพ" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "ซ่อนคำสั่งซื้อล่าสุด" @@ -23709,15 +23732,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "หากไม่ได้ตั้งค่าภาษี และได้เลือกเทมเพลตภาษีและค่าธรรมเนียมไว้ ระบบจะนำภาษีจากเทมเพลตที่เลือกมาใช้โดยอัตโนมัติ" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "หากไม่ใช่ คุณสามารถยกเลิก / ส่งรายการนี้" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23755,7 +23778,7 @@ msgstr "หาก BOM ส่งผลให้เกิดวัสดุเศ msgid "If the account is frozen, entries are allowed to restricted users." msgstr "หากบัญชีถูกแช่แข็ง จะอนุญาตให้ผู้ใช้ที่ถูกจำกัดทำรายการได้" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "หากรายการกำลังทำธุรกรรมเป็นรายการที่มีอัตราการประเมินมูลค่าเป็นศูนย์ในรายการนี้ โปรดเปิดใช้งาน 'อนุญาตอัตราการประเมินมูลค่าเป็นศูนย์' ในตารางรายการ {0}" @@ -23856,7 +23879,7 @@ msgstr "หากคุณต้องการกระทบยอดธุร msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "หากคุณยังต้องการดำเนินการต่อ โปรดเปิดใช้งาน {0}" @@ -24074,14 +24097,14 @@ msgstr "นำเข้าใบแจ้งหนี้" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "นำเข้ารูปแบบ MT940" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "นำเข้าสำเร็จ" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "สรุปการนำเข้า" @@ -24558,7 +24581,7 @@ msgstr "รวมรายการสำหรับชุดย่อย" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "รายได้" @@ -24644,7 +24667,7 @@ msgstr "สายเรียกเข้าจาก {0}" msgid "Incompatible Setting Detected" msgstr "ตรวจพบการตั้งค่าที่ไม่เข้ากัน" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24653,7 +24676,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "ปริมาณคงเหลือไม่ถูกต้องหลังธุรกรรม" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "แบทช์ที่ใช้ไม่ถูกต้อง" @@ -24661,11 +24684,11 @@ msgstr "แบทช์ที่ใช้ไม่ถูกต้อง" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "การตรวจสอบในคลังสินค้า (กลุ่ม) สำหรับการสั่งซื้อใหม่ไม่ถูกต้อง" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "ปริมาณส่วนประกอบไม่ถูกต้อง" @@ -24674,7 +24697,7 @@ msgstr "ปริมาณส่วนประกอบไม่ถูกต้ msgid "Incorrect Date" msgstr "วันที่ไม่ถูกต้อง" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "ใบแจ้งหนี้ไม่ถูกต้อง" @@ -24691,7 +24714,7 @@ msgstr "เอกสารอ้างอิงไม่ถูกต้อง ( msgid "Incorrect Serial No Valuation" msgstr "การประเมินหมายเลขซีเรียลไม่ถูกต้อง" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "หมายเลขซีเรียลที่ใช้ไม่ถูกต้อง" @@ -24774,7 +24797,7 @@ msgstr "การเพิ่มขึ้น" msgid "Increment cannot be 0" msgstr "การเพิ่มขึ้นต้องไม่เป็น 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "การเพิ่มขึ้นสำหรับ Attribute {0} ต้องไม่เป็น 0" @@ -24971,7 +24994,7 @@ msgid "Instruction" msgstr "คำแนะนำ" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "ความจุไม่เพียงพอ" @@ -24987,12 +25010,12 @@ msgstr "สิทธิ์ไม่เพียงพอ" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "สต็อกไม่เพียงพอ" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "สต็อกไม่เพียงพอสำหรับแบทช์" @@ -25122,7 +25145,7 @@ msgstr "ดอกเบี้ยจ่าย" msgid "Interest Income" msgstr "รายได้จากดอกเบี้ย" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "ดอกเบี้ยและ/หรือค่าธรรมเนียมการทวงถาม" @@ -25147,7 +25170,7 @@ msgstr "ภายใน" msgid "Internal Customer Accounting" msgstr "บัญชีลูกค้าภายใน" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "ลูกค้าภายในสำหรับบริษัท {0} มีอยู่แล้ว" @@ -25173,7 +25196,7 @@ msgstr "การอ้างอิงการขายภายในหาย msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "ผู้จัดจำหน่ายภายในสำหรับบริษัท {0} มีอยู่แล้ว" @@ -25194,7 +25217,7 @@ msgstr "ผู้จัดจำหน่ายภายในสำหรับ msgid "Internal Transfer" msgstr "การโอนภายใน" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "การอ้างอิงการโอนภายในหายไป" @@ -25236,8 +25259,8 @@ msgstr "ช่วงเวลาควรอยู่ระหว่าง 1 ถ #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25256,7 +25279,7 @@ msgstr "จำนวนเงินที่จัดสรรไม่ถูก msgid "Invalid Amount" msgstr "จำนวนเงินไม่ถูกต้อง" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "แอตทริบิวต์ไม่ถูกต้อง" @@ -25273,11 +25296,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "บาร์โค้ดไม่ถูกต้อง ไม่มีรายการที่แนบมากับบาร์โค้ดนี้" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "คำสั่งซื้อแบบครอบคลุมไม่ถูกต้องสำหรับลูกค้าและรายการที่เลือก" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "รูปแบบ CSV ไม่ถูกต้อง คอลัมน์ที่คาดหวัง: doctype_name" @@ -25297,13 +25320,13 @@ msgstr "บริษัทไม่ถูกต้องสำหรับธุ msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "ศูนย์ต้นทุนไม่ถูกต้อง" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25324,11 +25347,11 @@ msgstr "" msgid "Invalid Discount" msgstr "ส่วนลดไม่ถูกต้อง" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "จำนวนส่วนลดไม่ถูกต้อง" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "เอกสารไม่ถูกต้อง" @@ -25358,7 +25381,7 @@ msgstr "จัดกลุ่มตามไม่ถูกต้อง" msgid "Invalid Item" msgstr "รายการไม่ถูกต้อง" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "ค่าเริ่มต้นของรายการไม่ถูกต้อง" @@ -25367,7 +25390,7 @@ msgstr "ค่าเริ่มต้นของรายการไม่ถ msgid "Invalid Ledger Entries" msgstr "รายการบัญชีแยกประเภทไม่ถูกต้อง" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "จำนวนเงินซื้อสุทธิไม่ถูกต้อง" @@ -25406,7 +25429,7 @@ msgstr "รูปแบบการพิมพ์ไม่ถูกต้อง msgid "Invalid Priority" msgstr "ลำดับความสำคัญไม่ถูกต้อง" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "การกำหนดค่าการสูญเสียกระบวนการไม่ถูกต้อง" @@ -25423,7 +25446,7 @@ msgstr "ปริมาณไม่ถูกต้อง" msgid "Invalid Quantity" msgstr "ปริมาณไม่ถูกต้อง" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "คำค้นหาไม่ถูกต้อง" @@ -25435,8 +25458,8 @@ msgstr "การคืนไม่ถูกต้อง" msgid "Invalid Sales Invoices" msgstr "ใบแจ้งหนี้ขายไม่ถูกต้อง" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "ตารางเวลาไม่ถูกต้อง" @@ -25444,7 +25467,7 @@ msgstr "ตารางเวลาไม่ถูกต้อง" msgid "Invalid Selling Price" msgstr "ราคาขายไม่ถูกต้อง" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "ชุดหมายเลขซีเรียลและแบทช์ไม่ถูกต้อง" @@ -25461,7 +25484,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "ค่าไม่ถูกต้อง" @@ -25471,14 +25494,14 @@ msgid "Invalid Warehouse" msgstr "คลังสินค้าไม่ถูกต้อง" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "จำนวนเงินไม่ถูกต้องในรายการบัญชีของ {} {} สำหรับบัญชี {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "นิพจน์เงื่อนไขไม่ถูกต้อง" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "ไฟล์ URL ไม่ถูกต้อง" @@ -25510,7 +25533,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "คีย์ผลลัพธ์ไม่ถูกต้อง การตอบกลับ:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "คำค้นหาไม่ถูกต้อง" @@ -26473,10 +26496,6 @@ msgstr "วันที่ออก" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "อาจใช้เวลาสองสามชั่วโมงเพื่อให้ค่าคงคลังที่ถูกต้องปรากฏหลังจากการรวมรายการ" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "จำเป็นต้องดึงรายละเอียดรายการ" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26485,7 +26504,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "ไม่สามารถกระจายค่าใช้จ่ายอย่างเท่าเทียมกันเมื่อจำนวนเงินรวมเป็นศูนย์ โปรดตั้งค่า 'กระจายค่าใช้จ่ายตาม' เป็น 'ปริมาณ'" @@ -26534,12 +26553,12 @@ msgstr "ข้อความตัวเอียงสำหรับผลร #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26572,7 +26591,7 @@ msgstr "ข้อความตัวเอียงสำหรับผลร #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26646,7 +26665,7 @@ msgstr "รายการ 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26807,7 +26826,7 @@ msgstr "ตะกร้ารายการ" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26839,7 +26858,7 @@ msgstr "ตะกร้ารายการ" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26848,12 +26867,12 @@ msgstr "ตะกร้ารายการ" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26949,7 +26968,7 @@ msgstr "ไม่สามารถเปลี่ยนรหัสรายก msgid "Item Code required at Row No {0}" msgstr "ต้องการรหัสรายการที่แถวที่ {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "รหัสรายการ: {0} ไม่มีในคลังสินค้า {1}" @@ -27145,7 +27164,7 @@ msgstr "" msgid "Item Group Tree" msgstr "โครงสร้างกลุ่มรายการ" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "ไม่ได้ระบุกลุ่มรายการในมาสเตอร์รายการสำหรับรายการ {0}" @@ -27299,7 +27318,7 @@ msgstr "ผู้ผลิตรายการ" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27330,7 +27349,7 @@ msgstr "ผู้ผลิตรายการ" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27338,8 +27357,8 @@ msgstr "ผู้ผลิตรายการ" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27396,7 +27415,7 @@ msgstr "ผู้ผลิตรายการ" msgid "Item Name" msgstr "ชื่อรายการ" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27443,8 +27462,8 @@ msgstr "การตั้งค่าราคาของรายการ" msgid "Item Price Stock" msgstr "ราคาสต็อกของรายการ" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27456,7 +27475,7 @@ msgstr "ราคาของรายการปรากฏหลายคร msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "อัปเดตราคาของรายการ {0} ในรายการราคา {1}" @@ -27501,7 +27520,7 @@ msgstr "การสั่งซื้อรายการใหม่" msgid "Item Row" msgstr "แถวรายการ" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "แถวรายการ {0}: {1} {2} ไม่มีอยู่ในตาราง '{1}' ด้านบน" @@ -27617,7 +27636,7 @@ msgstr "รายการที่จะผลิต" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "ตัวเลือกของรายการ" @@ -27736,7 +27755,7 @@ msgstr "รายละเอียดภาษีตามรายการ" msgid "Item Wise Tax Details" msgstr "รายละเอียดภาษีตามรายการ" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "รายละเอียดภาษีตามรายการไม่ตรงกับภาษีและค่าธรรมเนียมในแถวต่อไปนี้:" @@ -27772,7 +27791,7 @@ msgstr "รายการเป็นสิ่งจำเป็นในตา msgid "Item is removed since no serial / batch no selected." msgstr "รายการถูกลบเนื่องจากไม่มีการเลือกหมายเลขซีเรียล / แบทช์" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "ต้องเพิ่มรายการโดยใช้ปุ่ม 'ดึงรายการจากใบรับซื้อ'" @@ -27786,7 +27805,7 @@ msgstr "ชื่อรายการ" msgid "Item operation" msgstr "การดำเนินการของรายการ" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "อัตรารายการถูกอัปเดตเป็นศูนย์เนื่องจากเลือกอนุญาตอัตราการประเมินมูลค่าเป็นศูนย์สำหรับรายการ {0}" @@ -27801,7 +27820,7 @@ msgstr "รายการที่จะผลิต" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "อัตราการประเมินมูลค่าของรายการถูกคำนวณใหม่โดยพิจารณาจากจำนวนเงินในใบสำคัญต้นทุนที่มาถึง" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "กำลังดำเนินการโพสต์ใหม่การประเมินมูลค่าของรายการ รายงานอาจแสดงการประเมินมูลค่าของรายการไม่ถูกต้อง" @@ -27817,10 +27836,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "รายการ {0} ถูกเพิ่มหลายครั้งภายใต้รายการหลักเดียวกัน {1} ที่แถว {2} และ {3}" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "ไม่สามารถเพิ่มรายการ {0} เป็นชุดย่อยของตัวเองได้" @@ -27829,6 +27844,10 @@ msgstr "ไม่สามารถเพิ่มรายการ {0} เป msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "ไม่สามารถสั่งซื้อรายการ {0} ได้มากกว่า {1} ต่อคำสั่งซื้อแบบครอบคลุม {2}" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27838,6 +27857,7 @@ msgstr "รายการ {0} ไม่มีอยู่" msgid "Item {0} does not exist in the system or has expired" msgstr "รายการ {0} ไม่มีอยู่ในระบบหรือหมดอายุแล้ว" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "รายการ {0} ไม่มีอยู่" @@ -27870,6 +27890,10 @@ msgstr "รายการ {0} ถึงจุดสิ้นสุดของ msgid "Item {0} ignored since it is not a stock item" msgstr "ละเว้นรายการ {0} เนื่องจากไม่ใช่รายการสต็อก" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "รายการ {0} ถูกจอง/จัดส่งแล้วต่อคำสั่งขาย {1}" @@ -27902,7 +27926,7 @@ msgstr "รายการ {0} ไม่ใช่รายการที่จ msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "รายการ {0} ไม่ได้ใช้งานหรือถึงจุดสิ้นสุดของอายุการใช้งานแล้ว" @@ -27934,10 +27958,6 @@ msgstr "รายการ {0}: ปริมาณที่สั่งซื้ msgid "Item {0}: {1} qty produced. " msgstr "สินค้า {0}: ผลิตแล้ว {1} หน่วย " -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "รายการ {} ไม่มีอยู่" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27988,6 +28008,10 @@ msgstr "ต้องระบุสินค้า/รหัสสินค้ msgid "Item: {0} does not exist in the system" msgstr "รายการ: {0} ไม่มีอยู่ในระบบ" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -28004,7 +28028,7 @@ msgstr "แคตตาล็อกสินค้า" msgid "Items Filter" msgstr "ตัวกรองรายการ" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "ต้องการรายการ" @@ -28044,7 +28068,7 @@ msgstr "รายการสำหรับคำขอวัตถุดิบ msgid "Items not found." msgstr "ไม่พบรายการ" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "อัตรารายการถูกอัปเดตเป็นศูนย์เนื่องจากเลือกอนุญาตอัตราการประเมินมูลค่าเป็นศูนย์สำหรับรายการต่อไปนี้: {0}" @@ -28054,7 +28078,7 @@ msgstr "อัตรารายการถูกอัปเดตเป็น msgid "Items to Be Repost" msgstr "รายการที่จะโพสต์ใหม่" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "ต้องการรายการที่จะผลิตเพื่อดึงวัตถุดิบที่เกี่ยวข้องกับมัน" @@ -28124,7 +28148,7 @@ msgstr "กำลังการผลิตของงาน" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28187,20 +28211,19 @@ msgstr "บันทึกเวลาในใบงาน" msgid "Job Card and Capacity Planning" msgstr "ใบงานและการวางแผนกำลังการผลิต" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "ใบงาน {0} เสร็จสมบูรณ์แล้ว" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "ใบงาน" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "หยุดงานชั่วคราว" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "เริ่มงานแล้ว" @@ -28263,11 +28286,19 @@ msgstr "ชื่อผู้รับจ้างงาน" msgid "Job Worker Warehouse" msgstr "คลังสินค้าผู้รับจ้างงาน" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "สร้างใบงาน {0} แล้ว" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "งาน: {0} ถูกเรียกใช้งานเพื่อประมวลผลธุรกรรมที่ล้มเหลว" @@ -28613,8 +28644,8 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "การอัปเดตรายการบัญชีแยกประเภททั่วไปครั้งล่าสุดเสร็จสิ้น {} การดำเนินการนี้ไม่ได้รับอนุญาตในขณะที่ระบบกำลังใช้งานอยู่ โปรดรอ 5 นาทีก่อนลองอีกครั้ง" +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28734,7 +28765,7 @@ msgstr "ละติจูด" msgid "Lead" msgstr "ลูกค้าเป้าหมาย" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "ลูกค้าเป้าหมาย -> ผู้มีโอกาสเป็นลูกค้า" @@ -28828,7 +28859,7 @@ msgstr "เวลานำเป็นวัน" msgid "Lead Type" msgstr "ประเภทลูกค้าเป้าหมาย" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "ลูกค้าเป้าหมาย {0} ถูกเพิ่มในผู้มีโอกาสเป็นลูกค้า {1}" @@ -28977,7 +29008,7 @@ msgstr "คำอธิบาย" msgid "Length (cm)" msgstr "ความยาว (ซม.)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "น้อยกว่าจำนวนเงิน" @@ -29006,7 +29037,7 @@ msgstr "ระดับ (BOM)" msgid "Lft" msgstr "ซ้าย" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "หนี้สิน" @@ -29036,7 +29067,7 @@ msgstr "หมายเลขใบอนุญาต" msgid "License Plate" msgstr "ป้ายทะเบียน" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "เกินขีดจำกัด" @@ -29132,8 +29163,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "การลิงก์กับลูกค้าล้มเหลว โปรดลองอีกครั้ง" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "การลิงก์กับผู้จัดจำหน่ายล้มเหลว โปรดลองอีกครั้ง" +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29299,7 +29330,7 @@ msgstr "รายละเอียดเหตุผลที่สูญหา #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "เหตุผลที่สูญหาย" @@ -29385,7 +29416,7 @@ msgstr "การแลกคะแนนสะสม" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "คะแนนสะสมจะถูกคำนวณจากการใช้จ่าย (ผ่านใบแจ้งหนี้ขาย) ตามปัจจัยการสะสมที่ระบุไว้" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "คะแนนสะสม: {0}" @@ -29623,7 +29654,7 @@ msgstr "รายละเอียดตารางการบำรุงร msgid "Maintenance Schedule Item" msgstr "รายการในตารางการบำรุงรักษา" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "ยังไม่ได้สร้างตารางการบำรุงรักษาสำหรับทุกรายการ กรุณาคลิก 'สร้างตารางเวลา'" @@ -29720,7 +29751,7 @@ msgstr "การเข้าบำรุงรักษา" msgid "Maintenance Visit Purpose" msgstr "วัตถุประสงค์การเยี่ยมบำรุงรักษา" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "วันที่เริ่มต้นการบำรุงรักษาไม่สามารถอยู่ก่อนวันที่จัดส่งสำหรับหมายเลขซีเรียล {0}" @@ -29867,7 +29898,7 @@ msgstr "จำเป็นสำหรับงบดุล" msgid "Mandatory For Profit and Loss Account" msgstr "จำเป็นสำหรับบัญชีกำไรขาดทุน" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "ขาดสิ่งจำเป็น" @@ -29950,8 +29981,8 @@ msgstr "ไม่สามารถสร้างรายการด้วย #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30173,7 +30204,7 @@ msgstr "การทำแผนที่คำสั่งซื้อจาก msgid "Mapping Subcontracting Order ..." msgstr "กำลังจับคู่ใบสั่งจ้างเหมาช่วง..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "กำลังจับคู่ {0} ..." @@ -30351,10 +30382,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30381,7 +30408,7 @@ msgstr "การใช้วัสดุ" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "การใช้วัสดุเพื่อการผลิต" @@ -30492,7 +30519,7 @@ msgstr "คำขอวัสดุ" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "วันที่ในใบขอวัสดุ" @@ -30542,7 +30569,7 @@ msgstr "รายละเอียดใบขอวัสดุ" msgid "Material Request Item" msgstr "รายการในใบขอวัสดุ" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "เลขที่ใบขอวัสดุ" @@ -30564,7 +30591,7 @@ msgstr "ประเภทใบขอวัสดุ" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "ไม่ได้สร้างใบขอวัสดุ เนื่องจากมีปริมาณวัตถุดิบเพียงพอแล้ว" @@ -30578,7 +30605,7 @@ msgstr "สามารถสร้างใบขอวัสดุได้ส msgid "Material Request used to make this Stock Entry" msgstr "ใบขอวัสดุที่ใช้สร้างรายการสต็อกนี้" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "ใบขอวัสดุ {0} ถูกยกเลิกหรือหยุดแล้ว" @@ -30698,14 +30725,14 @@ msgstr "วัสดุให้ซัพพลายเออร์" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "ได้รับวัสดุสำหรับ {0} {1} แล้ว" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "ต้องโอนวัสดุไปยังคลังสินค้าระหว่างทำสำหรับใบงาน {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30873,7 +30900,7 @@ msgstr "เมกะจูล" msgid "Megawatt" msgstr "เมกะวัตต์" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "ระบุอัตราการประเมินมูลค่าในมาสเตอร์รายการ" @@ -30908,7 +30935,7 @@ msgstr "ความคืบหน้าการรวม" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "รวมภาษีจากเอกสารหลายฉบับ" @@ -31254,7 +31281,7 @@ msgstr "ค่าใช้จ่ายเบ็ดเตล็ด" msgid "Mismatch" msgstr "ไม่ตรงกัน" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "หายไป" @@ -31263,11 +31290,11 @@ msgstr "หายไป" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "บัญชีที่หายไป" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31292,11 +31319,11 @@ msgstr "" msgid "Missing Filters" msgstr "ฟิลเตอร์ที่หายไป" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "สมุดการเงินที่หายไป" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "สินค้าสำเร็จรูปที่หายไป" @@ -31304,7 +31331,7 @@ msgstr "สินค้าสำเร็จรูปที่หายไป" msgid "Missing Formula" msgstr "สูตรที่หายไป" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "รายการที่หายไป" @@ -31316,7 +31343,7 @@ msgstr "" msgid "Missing Payments App" msgstr "แอปการชำระเงินที่หายไป" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31328,7 +31355,7 @@ msgstr "ชุดหมายเลขซีเรียลที่หายไ msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31336,12 +31363,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "ไม่มีแม่แบบอีเมลสำหรับการจัดส่ง โปรดตั้งค่าในการตั้งค่าการจัดส่ง" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "ไม่มีตัวกรองที่จำเป็น: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "ค่าที่หายไป" @@ -31590,17 +31617,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "พบโปรแกรมสะสมคะแนนหลายรายการสำหรับลูกค้า {} โปรดเลือกด้วยตนเอง" +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "รายการเปิด POS หลายรายการ" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "มีข้อกำหนดราคาหลายรายการที่มีเกณฑ์เดียวกัน โปรดแก้ไขความขัดแย้งโดยกำหนดลำดับความสำคัญ ข้อกำหนดราคา: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31620,7 +31647,7 @@ msgstr "มีหลายช่องสำหรับข้อมูลบร msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "มีปีงบประมาณหลายปีสำหรับวันที่ {0} โปรดตั้งค่าบริษัทในปีงบประมาณ" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "ไม่สามารถทำเครื่องหมายรายการหลายรายการเป็นรายการที่เสร็จสิ้นแล้ว" @@ -31629,10 +31656,10 @@ msgid "Music" msgstr "ดนตรี" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "ต้องเป็นจำนวนเต็ม" @@ -31717,11 +31744,7 @@ msgstr "ชุดการตั้งชื่อเป็นสิ่งจำ msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "การตั้งชื่อซีรีส์ '{0}' สำหรับ DocType '{1}' ไม่มีตัวคั่นมาตรฐาน '.' หรือ '{{' ใช้การดึงข้อมูลแบบ fallback แทน" @@ -31765,7 +31788,7 @@ msgstr "การวิเคราะห์ความต้องการ" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "ไม่อนุญาตให้มีปริมาณติดลบ" @@ -31775,12 +31798,12 @@ msgstr "ไม่อนุญาตให้มีปริมาณติดล msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "ข้อผิดพลาดของสินค้าคงคลังติดลบ" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "ไม่อนุญาตให้อัตราการประเมินมูลค่าติดลบ" @@ -31858,8 +31881,8 @@ msgstr "จำนวนเงินสุทธิ" msgid "Net Amount (Company Currency)" msgstr "จำนวนเงินสุทธิ (สกุลเงินบริษัท)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "มูลค่าสินทรัพย์สุทธิตามวันที่" @@ -31909,7 +31932,7 @@ msgstr "อัตราต่อชั่วโมงสุทธิ" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "กำไรสุทธิ" @@ -31917,7 +31940,7 @@ msgstr "กำไรสุทธิ" msgid "Net Profit Ratio" msgstr "อัตราส่วนกำไรสุทธิ" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "กำไร/ขาดทุนสุทธิ" @@ -31931,11 +31954,11 @@ msgstr "กำไร/ขาดทุนสุทธิ" msgid "Net Purchase Amount" msgstr "จำนวนเงินซื้อสุทธิ" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "จำนวนเงินซื้อสุทธิเป็นข้อบังคับ" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "จำนวนเงินซื้อสุทธิควรเท่ากับจำนวนเงินซื้อของสินทรัพย์เพียงรายการเดียว" @@ -32179,7 +32202,7 @@ msgstr "" msgid "New Income" msgstr "รายได้ใหม่" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "ใบแจ้งหนี้ใหม่" @@ -32252,6 +32275,7 @@ msgid "New Task" msgstr "งานใหม่" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "เวอร์ชันใหม่" @@ -32264,9 +32288,9 @@ msgstr "ชื่อคลังสินค้าใหม่" msgid "New Workplace" msgstr "สถานที่ทำงานใหม่" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "วงเงินเครดิตใหม่ต่ำกว่ายอดค้างชำระปัจจุบันสำหรับลูกค้า วงเงินเครดิตต้องไม่น้อยกว่า {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32274,6 +32298,10 @@ msgstr "วงเงินเครดิตใหม่ต่ำกว่าย msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "ใบแจ้งหนี้ใหม่จะถูกสร้างตามกำหนดการแม้ว่าใบแจ้งหนี้ปัจจุบันจะยังไม่ได้ชำระหรือเกินกำหนดชำระ" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "วันที่เผยแพร่ใหม่ควรอยู่ในอนาคต" @@ -32286,7 +32314,7 @@ msgstr "งบประมาณฉบับแก้ไขใหม่สร้ msgid "New task" msgstr "งานใหม่" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "สร้างกฎการกำหนดราคา {0} ใหม่" @@ -32350,16 +32378,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "ไม่พบลูกค้าสำหรับธุรกรรมระหว่างบริษัทที่เป็นตัวแทนของบริษัท {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "ไม่พบลูกค้าตามตัวเลือกที่เลือก" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "ไม่ได้เลือกใบส่งของสำหรับลูกค้า {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "ไม่มี DocTypes ในรายการที่จะลบ กรุณาสร้างหรือนำเข้ารายการก่อนส่ง" @@ -32367,15 +32394,15 @@ msgstr "ไม่มี DocTypes ในรายการที่จะลบ msgid "No Impact on Accounting Ledger" msgstr "ไม่มีผลกระทบต่อบัญชีแยกประเภท" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "ไม่มีสินค้าที่มีบาร์โค้ด {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "ไม่มีสินค้าที่มีหมายเลขซีเรียล {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "ไม่ได้เลือกสินค้าสำหรับการโอน" @@ -32418,11 +32445,6 @@ msgstr "ไม่มีสิทธิ์" msgid "No Purchase Orders were created" msgstr "ไม่มีการสร้างใบสั่งซื้อ" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "ไม่มีระเบียนสำหรับการตั้งค่าเหล่านี้" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "ไม่มีการเลือก" @@ -32525,6 +32547,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "ไม่พบผู้ติดต่อที่มีอีเมล" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "ไม่มีข้อมูลสำหรับช่วงเวลานี้" @@ -32570,7 +32596,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "ไม่มีรายการที่พร้อมสำหรับการโอน" @@ -32607,10 +32633,6 @@ msgstr "ไม่มีลูกเพิ่มเติมทางซ้าย msgid "No more children on Right" msgstr "ไม่มีลูกเพิ่มเติมทางขวา" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "จำนวนการส่งมอบ" @@ -32707,7 +32729,7 @@ msgstr "ไม่พบใบแจ้งหนี้ที่ค้างชำ msgid "No outstanding invoices require exchange rate revaluation" msgstr "ไม่มีใบแจ้งหนี้ที่ค้างชำระที่ต้องการการประเมินค่าอัตราแลกเปลี่ยนใหม่" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "ไม่พบ {0} ที่ค้างชำระสำหรับ {1} {2} ที่ตรงตามตัวกรองที่คุณระบุ" @@ -32745,15 +32767,20 @@ msgstr "" msgid "No record found" msgstr "ไม่พบบันทึก" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "ไม่พบบันทึกในตารางการจัดสรร" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "ไม่พบบันทึกในตารางใบแจ้งหนี้" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "ไม่พบบันทึกในตารางการชำระเงิน" @@ -32782,7 +32809,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "ไม่มีการสร้างรายการบัญชีแยกประเภทสต็อก โปรดตั้งค่าปริมาณหรืออัตราการประเมินมูลค่าสำหรับรายการอย่างถูกต้องและลองอีกครั้ง" @@ -32819,7 +32846,7 @@ msgstr "ไม่มีค่า" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32827,11 +32854,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "ไม่พบ {0} สำหรับธุรกรรมระหว่างบริษัท" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "เลขที่" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32883,7 +32905,7 @@ msgstr "ไม่เป็นศูนย์" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "ไม่มีรายการใดที่มีการเปลี่ยนแปลงในปริมาณหรือมูลค่า" @@ -32894,8 +32916,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "จำนวน" @@ -32909,8 +32931,8 @@ msgstr "จำนวน" msgid "Not Applicable" msgstr "ไม่สามารถใช้ได้" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "ไม่พร้อมใช้งาน" @@ -32973,10 +32995,6 @@ msgstr "ยังไม่ได้เริ่ม" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "ไม่สามารถค้นหาปีงบประมาณแรกสุดของบริษัทที่ให้ข้อมูลได้" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "ไม่อนุญาตให้ตั้งค่ารายการทางเลือกสำหรับรายการ {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "ไม่อนุญาตให้สร้างมิติการบัญชีสำหรับ {0}" @@ -32993,10 +33011,6 @@ msgstr "ไม่ได้รับอนุญาตเนื่องจาก msgid "Not authorized to edit frozen Account {0}" msgstr "ไม่ได้รับอนุญาตให้แก้ไขบัญชีที่ถูกแช่แข็ง {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "ไม่มีในสต็อก" @@ -33009,7 +33023,7 @@ msgstr "ไม่มีในสต็อก" msgid "Not permitted to make Purchase Orders" msgstr "ไม่อนุญาตให้ทำรายการสั่งซื้อ" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33254,8 +33268,8 @@ msgid "Numeric Values" msgstr "ค่าตัวเลข" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "ไม่ได้ตั้งค่า Numero ในไฟล์ XML" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33430,12 +33444,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "เมื่อกำหนดแล้ว ใบแจ้งหนี้นี้จะถูกระงับจนถึงวันที่กำหนด" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "เมื่อคำสั่งงานถูกปิดแล้ว จะไม่สามารถดำเนินการต่อได้" +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "ลูกค้าหนึ่งรายสามารถเป็นส่วนหนึ่งของโปรแกรมสะสมคะแนนได้เพียงโปรแกรมเดียว" +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33469,7 +33483,7 @@ msgstr "รองรับเฉพาะ 'รายการชำระเง msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "สามารถใช้เฉพาะไฟล์ CSV และ Excel สำหรับการนำเข้าข้อมูล โปรดตรวจสอบรูปแบบไฟล์ที่คุณพยายามอัปโหลด" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "อนุญาตเฉพาะไฟล์ CSV เท่านั้น" @@ -33534,7 +33548,7 @@ msgstr "สามารถเลือก 'Is Final Finished Good' ได้เ msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "สามารถสร้างรายการ {0} ได้เพียงรายการเดียวต่อคำสั่งงาน {1}" @@ -33601,7 +33615,7 @@ msgstr "กิจกรรมเปิด" msgid "Open Events" msgstr "กิจกรรมเปิด" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "เปิดมุมมองแบบฟอร์ม" @@ -33754,7 +33768,7 @@ msgstr "ยอดคงเหลือเปิด = ยอดเริ่มต #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "รายละเอียดยอดคงเหลือเปิด" @@ -33784,7 +33798,7 @@ msgstr "วันเปิดทำการ" msgid "Opening Entry" msgstr "รายการเปิด" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "กำลังดำเนินการสร้างใบแจ้งหนี้เปิด" @@ -33812,7 +33826,7 @@ msgstr "รายการใบแจ้งหนี้เปิด" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "ใบแจ้งหนี้มีการปรับยอดปัดเศษจำนวน {0}. จำเป็นต้องมีบัญชี

                    '{1}' เพื่อลงรายการค่าเหล่านี้ กรุณาตั้งค่าใน บริษัท: {2}.

                    หรือ สามารถเปิดใช้งาน '{3}' เพื่อไม่ให้มีการลงรายการการปรับยอดปัดเศษใดๆ" @@ -33821,7 +33835,7 @@ msgstr "ใบแจ้งหนี้มีการปรับยอดปั msgid "Opening Invoices" msgstr "ใบแจ้งหนี้เปิด" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "สรุปใบแจ้งหนี้ที่เปิด" @@ -33851,20 +33865,20 @@ msgstr "ใบแจ้งหนี้การขายที่เปิดแ #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "สต็อกเริ่มต้น" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33873,7 +33887,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33916,7 +33930,7 @@ msgstr "ต้นทุนส่วนประกอบในการดำเ #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "ต้นทุนการดำเนินงาน" @@ -34007,7 +34021,7 @@ msgstr "การดำเนินการตามหมายเลขแถ msgid "Operation Time" msgstr "เวลาการดำเนินการ" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "เวลาการดำเนินการต้องมากกว่า 0 สำหรับการดำเนินการ {0}" @@ -34031,8 +34045,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "การดำเนินการ {0} ไม่ได้เป็นของคำสั่งงาน {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "การดำเนินการ {0} ยาวนานกว่าชั่วโมงการทำงานที่มีอยู่ในสถานีงาน {1} ให้แบ่งการดำเนินการออกเป็นหลายการดำเนินการ" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34217,6 +34231,10 @@ msgstr "สร้างโอกาส {0}" msgid "Optimize Route" msgstr "เพิ่มประสิทธิภาพเส้นทาง" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34233,10 +34251,6 @@ msgstr "ไม่บังคับ การตั้งค่านี้จ msgid "Optional. Used with Financial Report Template" msgstr "ตัวเลือก ใช้ร่วมกับแม่แบบรายงานทางการเงิน" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "จำนวนเงินคำสั่งซื้อ" @@ -34522,7 +34536,7 @@ msgid "Out of stock" msgstr "สินค้าหมด" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "รายการเปิดระบบ POS ล้าสมัย" @@ -34576,7 +34590,7 @@ msgstr "ค้างชำระ (สกุลเงินบริษัท)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34657,11 +34671,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "ค่าเผื่อการหยิบเกิน (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "การรับเกิน" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "การรับ/ส่งมอบเกิน {0} {1} ถูกละเว้นสำหรับรายการ {2} เนื่องจากคุณมีบทบาท {3}" @@ -34678,14 +34692,14 @@ msgstr "ค่าเบี้ยเลี้ยงเกินกำหนด (% msgid "Over Withheld" msgstr "เกินที่ถูกหักไว้" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "การเรียกเก็บเงินเกิน {0} {1} ถูกละเว้นสำหรับรายการ {2} เนื่องจากคุณมีบทบาท {3}" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "การเรียกเก็บเงินเกิน {} ถูกละเว้นเนื่องจากคุณมีบทบาท {}" - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34734,10 +34748,6 @@ msgstr "งานที่เกินกำหนด" msgid "Overdue and Discounted" msgstr "เกินกำหนดและลดราคา" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "คะแนนทับซ้อนระหว่าง {0} และ {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "พบเงื่อนไขที่ทับซ้อนระหว่าง:" @@ -34803,6 +34813,11 @@ msgstr "หมายเลข PAN" msgid "PCV" msgstr "พีซีวี" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "PCV หยุดชั่วคราว" @@ -34850,7 +34865,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "ฟิลด์เพิ่มเติมของระบบ POS" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "ปิด POS" @@ -34948,8 +34963,8 @@ msgid "POS Invoice is not submitted" msgstr "ใบแจ้งหนี้ POS ยังไม่ได้ส่ง" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "ใบแจ้งหนี้ POS ไม่ได้สร้างโดยผู้ใช้ {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35008,7 +35023,7 @@ msgstr "รายการเปิด POS - {0} ล้าสมัยแล้ msgid "POS Opening Entry Cancellation Error" msgstr "ข้อผิดพลาดในการยกเลิกการบันทึกเปิดระบบ POS" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "ยกเลิกการบันทึกเปิดระบบ POS" @@ -35029,7 +35044,7 @@ msgstr "ไม่มีรายการเปิด POS" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "ไม่สามารถยกเลิกการบันทึกเปิด POS ได้เนื่องจากมีใบแจ้งหนี้ที่ยังไม่ได้รวมอยู่" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "การบันทึกข้อมูลเปิดระบบ POS ถูกยกเลิกแล้ว กรุณาโหลดหน้าใหม่" @@ -35052,7 +35067,7 @@ msgstr "วิธีการชำระเงิน POS" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "โปรไฟล์ POS" @@ -35072,8 +35087,8 @@ msgstr "ผู้ใช้โปรไฟล์ POS" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "โปรไฟล์ POS ไม่ตรงกับ {}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35084,20 +35099,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "โปรไฟล์ POS {0} ไม่สามารถปิดการใช้งานได้เนื่องจากมีเซสชัน POS ที่กำลังดำเนินการอยู่" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "โปรไฟล์ POS {} มีวิธีการชำระเงิน {} โปรดลบออกเพื่อปิดใช้งานโหมดนี้" +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "โปรไฟล์ POS {} ไม่เป็นของบริษัท {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "โปรไฟล์ POS {} ไม่มีอยู่" +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "โปรไฟล์ POS {} ถูกปิดใช้งาน" +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35126,11 +35141,11 @@ msgstr "การตั้งค่า POS" msgid "POS Transactions" msgstr "ธุรกรรม POS" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "POS ถูกปิดที่ {0} โปรดรีเฟรชหน้า" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "สร้างใบแจ้งหนี้ POS {0} สำเร็จ" @@ -35149,7 +35164,7 @@ msgstr "โครงการ PSOA" msgid "PZN" msgstr "พีแซ็น" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "หมายเลขแพ็คเกจที่ใช้งานอยู่แล้ว ลองจากหมายเลขแพ็คเกจ {0}" @@ -35774,7 +35789,7 @@ msgstr "ส่วนในล้าน" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35901,7 +35916,7 @@ msgstr "ความไม่สอดคล้องของฝ่าย" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35987,7 +36002,7 @@ msgstr "รายการเฉพาะคู่สัญญา" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36008,7 +36023,7 @@ msgstr "ประเภทคู่สัญญา" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "ประเภทคู่สัญญาและคู่สัญญาสามารถตั้งค่าได้เฉพาะสำหรับบัญชีลูกหนี้/เจ้าหนี้

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "ประเภทคู่สัญญาและคู่สัญญาเป็นสิ่งจำเป็นสำหรับบัญชี {0}" @@ -36044,7 +36059,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36554,7 +36569,7 @@ msgstr "การอ้างอิงการชำระเงิน" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36629,7 +36644,7 @@ msgstr "กำหนดการชำระเงิน" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36651,7 +36666,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36751,8 +36766,8 @@ msgid "Payment Type" msgstr "ประเภทการชำระเงิน" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "ประเภทการชำระเงินต้องเป็นหนึ่งใน รับ, จ่าย และโอนภายใน" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36958,11 +36973,11 @@ msgstr "กิจกรรมที่รอดำเนินการสำห msgid "Pending processing" msgstr "อยู่ระหว่างการดำเนินการ" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37479,12 +37494,12 @@ msgstr "รหัสลูกค้า Plaid" msgid "Plaid Environment" msgstr "สภาพแวดล้อม Plaid" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "การเชื่อมโยง Plaid ล้มเหลว" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "ต้องการรีเฟรชการเชื่อมโยง Plaid" @@ -37506,7 +37521,7 @@ msgstr "รหัสลับ Plaid" msgid "Plaid Settings" msgstr "การตั้งค่า Plaid" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "ข้อผิดพลาดในการซิงค์ธุรกรรม Plaid" @@ -37657,15 +37672,6 @@ msgstr "โรงงานและเครื่องจักร" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "โปรดเติมสินค้าคงคลังและอัปเดตรายการเลือกเพื่อดำเนินการต่อ หากต้องการยกเลิก ให้ยกเลิกรายการเลือก" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "โปรดเลือกบริษัท" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "โปรดเลือกบริษัท" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37673,7 +37679,6 @@ msgstr "โปรดเลือกลูกค้า" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "โปรดเลือกผู้จัดจำหน่าย" @@ -37681,19 +37686,19 @@ msgstr "โปรดเลือกผู้จัดจำหน่าย" msgid "Please Set Priority" msgstr "โปรดตั้งค่าลำดับความสำคัญ" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "โปรดตั้งค่ากลุ่มผู้จัดจำหน่ายในการตั้งค่าการซื้อ" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "โปรดระบุบัญชี" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "โปรดเพิ่มบทบาท 'ผู้จัดจำหน่าย' ให้กับผู้ใช้ {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "โปรดเพิ่มวิธีการชำระเงินและรายละเอียดยอดคงเหลือเริ่มต้น" @@ -37709,7 +37714,7 @@ msgstr "โปรดเพิ่มคำขอใบเสนอราคาใ msgid "Please add Root Account for - {0}" msgstr "กรุณาเพิ่มบัญชี Root สำหรับ - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "กรุณาเพิ่มบัญชีเปิดชั่วคราวในผังบัญชี" @@ -37717,35 +37722,32 @@ msgstr "กรุณาเพิ่มบัญชีเปิดชั่วค msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "โปรดเพิ่มหมายเลขซีเรียล/แบทช์อย่างน้อยหนึ่งรายการ" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "โปรดเพิ่มคอลัมน์บัญชีธนาคาร" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "โปรดเพิ่มบัญชีไปยังบริษัทระดับราก - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "โปรดเพิ่มบัญชีไปยังบริษัทระดับราก - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "โปรดเพิ่มบทบาท {1} ให้กับผู้ใช้ {0}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "โปรดปรับปริมาณหรือแก้ไข {0} เพื่อดำเนินการต่อ" @@ -37787,7 +37789,7 @@ msgstr "โปรดตรวจสอบกับการดำเนินก msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "โปรดตรวจสอบข้อความข้อผิดพลาดและดำเนินการที่จำเป็นเพื่อแก้ไขข้อผิดพลาด จากนั้นเริ่มการโพสต์ใหม่อีกครั้ง" @@ -37800,11 +37802,11 @@ msgstr "โปรดตรวจสอบรหัสลูกค้า Plaid msgid "Please check your email to confirm the appointment" msgstr "โปรดตรวจสอบอีเมลของคุณเพื่อยืนยันการนัดหมาย" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "โปรดคลิกที่ 'สร้างกำหนดการ'" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "โปรดคลิกที่ 'สร้างกำหนดการ' เพื่อดึงหมายเลขซีเรียลที่เพิ่มสำหรับรายการ {0}" @@ -37820,15 +37822,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "โปรดติดต่อผู้ใช้ใด ๆ ต่อไปนี้เพื่อขยายวงเงินเครดิตสำหรับ {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "โปรดติดต่อผู้ใช้ใด ๆ ต่อไปนี้เพื่อ {} ธุรกรรมนี้" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "โปรดติดต่อผู้ดูแลระบบของคุณเพื่อขยายวงเงินเครดิตสำหรับ {0}" @@ -37836,11 +37838,11 @@ msgstr "โปรดติดต่อผู้ดูแลระบบของ msgid "Please convert the parent account in corresponding child company to a group account." msgstr "โปรดแปลงบัญชีหลักในบริษัทลูกที่เกี่ยวข้องให้เป็นบัญชีกลุ่ม" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "โปรดสร้างลูกค้าจากลูกค้าเป้าหมาย {0}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "โปรดสร้างใบสำคัญต้นทุนที่ดินกับใบแจ้งหนี้ที่เปิดใช้งาน 'อัปเดตสต็อก'" @@ -37852,7 +37854,7 @@ msgstr "โปรดสร้างมิติการบัญชีใหม msgid "Please create purchase from internal sale or delivery document itself" msgstr "โปรดสร้างการซื้อจากการขายภายในหรือเอกสารการจัดส่งเอง" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "โปรดสร้างใบรับซื้อหรือใบแจ้งหนี้ซื้อสำหรับรายการ {0}" @@ -37864,11 +37866,11 @@ msgstr "โปรดลบชุดผลิตภัณฑ์ {0} ก่อน msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "โปรดปิดใช้งานเวิร์กโฟลว์ชั่วคราวสำหรับรายการบัญชี {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "โปรดอย่าบันทึกค่าใช้จ่ายของสินทรัพย์หลายรายการกับสินทรัพย์เดียว" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "โปรดอย่าสร้างรายการมากกว่า 500 รายการในครั้งเดียว" @@ -37893,8 +37895,8 @@ msgid "Please enable {0} in the {1}." msgstr "โปรดเปิดใช้งาน {0} ใน {1}" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "โปรดเปิดใช้งาน {} ใน {} เพื่ออนุญาตรายการเดียวกันในหลายแถว" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37905,12 +37907,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "โปรดตรวจสอบว่าบัญชี {0} {1} เป็นบัญชีเจ้าหนี้ คุณสามารถเปลี่ยนประเภทบัญชีเป็นเจ้าหนี้หรือเลือกบัญชีอื่น" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "โปรดตรวจสอบว่าบัญชี {} เป็นบัญชีงบดุล" +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "โปรดตรวจสอบว่าบัญชี {} {} เป็นบัญชีลูกหนี้" +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37925,7 +37927,7 @@ msgstr "โปรดป้อนบัญชีสำหรับจำนวน msgid "Please enter Approving Role or Approving User" msgstr "โปรดป้อนบทบาทการอนุมัติหรือผู้ใช้งานที่อนุมัติ" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "กรุณาป้อนหมายเลขชุด" @@ -37941,7 +37943,7 @@ msgstr "โปรดป้อนวันที่จัดส่ง" msgid "Please enter Employee Id of this sales person" msgstr "โปรดป้อนรหัสพนักงานของพนักงานขายนี้" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "โปรดป้อนบัญชีค่าใช้จ่าย" @@ -37950,7 +37952,7 @@ msgstr "โปรดป้อนบัญชีค่าใช้จ่าย" msgid "Please enter Item Code to get Batch Number" msgstr "โปรดป้อนรหัสรายการเพื่อรับหมายเลขแบทช์" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "โปรดป้อนรหัสรายการเพื่อรับหมายเลขแบทช์" @@ -37986,7 +37988,7 @@ msgstr "โปรดป้อนวันที่อ้างอิง" msgid "Please enter Root Type for account- {0}" msgstr "กรุณากรอกหมวดหมู่สำหรับบัญชี- {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "กรุณากรอกหมายเลขซีเรียล" @@ -38116,8 +38118,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "กรุณาสร้างรายการที่ต้องลบ ก่อนส่ง" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "กรุณานำเข้าบัญชีจากบริษัทแม่หรือเปิดใช้งาน {} ในบัญชีหลักของบริษัท" +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38152,11 +38154,7 @@ msgstr "โปรดระบุ BOM ปัจจุบันและใหม msgid "Please pull items from Delivery Note" msgstr "โปรดดึงรายการจากใบส่งของ" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "โปรดแก้ไขและลองอีกครั้ง" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "โปรดรีเฟรชหรือรีเซ็ตการเชื่อมโยง Plaid ของธนาคาร {}" @@ -38185,12 +38183,12 @@ msgstr "กรุณาบันทึกคำสั่งขายก่อน msgid "Please select Template Type to download template" msgstr "กรุณาเลือก ประเภทเทมเพลต เพื่อดาวน์โหลดเทมเพลต" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "โปรดเลือกใช้ส่วนลดใน" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "โปรดเลือก BOM สำหรับรายการ {0}" @@ -38206,9 +38204,9 @@ msgstr "โปรดเลือกบัญชีธนาคาร" msgid "Please select Category first" msgstr "โปรดเลือกหมวดหมู่ก่อน" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "โปรดเลือกประเภทค่าใช้จ่ายก่อน" @@ -38218,8 +38216,8 @@ msgstr "โปรดเลือกบริษัท" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "โปรดเลือกบริษัทและวันที่โพสต์เพื่อรับรายการ" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38241,7 +38239,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "กรุณาเลือกบริษัทที่มีอยู่เพื่อสร้างผังบัญชี" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "โปรดเลือกรายการสินค้าสำเร็จรูปสำหรับรายการบริการ {0}" @@ -38250,6 +38248,10 @@ msgstr "โปรดเลือกรายการสินค้าสำเ msgid "Please select Item Code first" msgstr "โปรดเลือกรหัสรายการก่อน" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "โปรดเลือกสถานะการบำรุงรักษาเป็นเสร็จสมบูรณ์หรือเอาวันที่เสร็จสิ้นออก" @@ -38274,11 +38276,11 @@ msgstr "โปรดเลือกวันที่โพสต์ก่อน msgid "Please select Posting Date first" msgstr "โปรดเลือกวันที่โพสต์ก่อน" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "โปรดเลือกรายการราคา" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "โปรดเลือกปริมาณสำหรับรายการ {0}" @@ -38307,6 +38309,7 @@ msgid "Please select a BOM" msgstr "โปรดเลือก BOM" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "โปรดเลือกบริษัท" @@ -38314,11 +38317,12 @@ msgstr "โปรดเลือกบริษัท" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "โปรดเลือกบริษัทก่อน" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "โปรดเลือกลูกค้า" @@ -38327,7 +38331,7 @@ msgstr "โปรดเลือกลูกค้า" msgid "Please select a Delivery Note" msgstr "โปรดเลือกใบส่งของ" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "โปรดเลือกคำสั่งซื้อจ้างช่วง" @@ -38339,7 +38343,7 @@ msgstr "โปรดเลือกผู้จัดจำหน่าย" msgid "Please select a Warehouse" msgstr "โปรดเลือกคลังสินค้า" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "โปรดเลือกคำสั่งงานก่อน" @@ -38355,6 +38359,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38388,22 +38393,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "กรุณาเลือกความถี่สำหรับกำหนดการส่งมอบ" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "โปรดเลือกแถวเพื่อสร้างรายการโพสต์ใหม่" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "โปรดเลือกผู้จัดจำหน่ายเพื่อดึงการชำระเงิน" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "โปรดเลือกคำสั่งซื้อที่ถูกต้องที่กำหนดค่าสำหรับการจ้างช่วง" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "โปรดเลือกค่าสำหรับ {0} quotation_to {1}" @@ -38412,7 +38421,7 @@ msgstr "โปรดเลือกค่าสำหรับ {0} quotation_to msgid "Please select an item code before setting the warehouse." msgstr "โปรดเลือกรหัสรายการก่อนตั้งค่าคลังสินค้า" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38420,10 +38429,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "กรุณาเลือกอย่างน้อยหนึ่งตัวกรอง: รหัสสินค้า, ชุดการผลิต, หรือหมายเลขซีเรียล" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "กรุณาเลือกอย่างน้อยหนึ่งแถวเพื่อแก้ไข" @@ -38432,18 +38449,10 @@ msgstr "กรุณาเลือกอย่างน้อยหนึ่ง msgid "Please select at least one row with difference value" msgstr "กรุณาเลือกอย่างน้อยหนึ่งแถวที่มีค่าความแตกต่าง" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "กรุณาเลือกอย่างน้อยหนึ่งรายการเพื่อดำเนินการต่อ" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "กรุณาเลือกอย่างน้อยหนึ่งการดำเนินการเพื่อสร้างบัตรงาน" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "โปรดเลือกบัญชีที่ถูกต้อง" @@ -38481,12 +38490,12 @@ msgstr "โปรดเลือกรายการเพื่อจอง" msgid "Please select items to unreserve." msgstr "โปรดเลือกรายการเพื่อยกเลิกการจอง" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "โปรดเลือกเพียงแถวเดียวเพื่อสร้างรายการโพสต์ใหม่" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "โปรดเลือกแถวเพื่อสร้างรายการโพสต์ใหม่" @@ -38495,8 +38504,8 @@ msgid "Please select the Company" msgstr "โปรดเลือกบริษัท" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "โปรดเลือกประเภทโปรแกรมหลายระดับสำหรับกฎการรวบรวมมากกว่าหนึ่งข้อ" +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38519,20 +38528,16 @@ msgstr "โปรดเลือกประเภทเอกสารก่อ msgid "Please select the required filters" msgstr "โปรดเลือกตัวกรองที่ต้องการ" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "โปรดเลือกประเภทเอกสารที่ถูกต้อง" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "โปรดเลือกวันหยุดประจำสัปดาห์" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "โปรดเลือก {0} ก่อน" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "โปรดตั้งค่า 'ใช้ส่วนลดเพิ่มเติมใน'" @@ -38561,8 +38566,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "โปรดตั้งค่าบัญชีในคลังสินค้า {0} หรือบัญชีสินค้าคงคลังเริ่มต้นในบริษัท {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "โปรดตั้งค่ามิติการบัญชี {} ใน {}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38591,22 +38596,20 @@ msgid "Please set Email/Phone for the contact" msgstr "โปรดตั้งค่าอีเมล/โทรศัพท์สำหรับผู้ติดต่อ" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "กรุณาตั้งค่ารหัสภาษีสำหรับลูกค้า '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "กรุณาตั้งค่ารหัสภาษีสำหรับลูกค้า '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "กรุณาตั้งค่ารหัสการเงินสำหรับการบริหารราชการแผ่นดิน '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "กรุณาตั้งค่ารหัสการเงินสำหรับการบริหารราชการแผ่นดิน '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "โปรดตั้งค่าบัญชีสินทรัพย์ถาวรในหมวดสินทรัพย์ {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "โปรดตั้งค่าบัญชีสินทรัพย์ถาวรใน {} กับ {}" +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38622,9 +38625,8 @@ msgid "Please set Root Type" msgstr "โปรดตั้งค่าประเภทหลัก" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "กรุณาตั้งค่าหมายเลขประจำตัวผู้เสียภาษีสำหรับลูกค้า '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "กรุณาตั้งค่าหมายเลขประจำตัวผู้เสียภาษีสำหรับลูกค้า '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38643,15 +38645,15 @@ msgid "Please set a Company" msgstr "โปรดตั้งค่าบริษัท" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "โปรดตั้งค่าศูนย์ต้นทุนสำหรับสินทรัพย์หรือศูนย์ต้นทุนค่าเสื่อมราคาสินทรัพย์สำหรับบริษัท {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "โปรดตั้งค่ารายการวันหยุดเริ่มต้นสำหรับบริษัท {0}" @@ -38668,9 +38670,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "กรุณากำหนดความต้องการจริงหรือการคาดการณ์ยอดขายเพื่อสร้างรายงานการวางแผนความต้องการวัสดุ" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "กรุณาตั้งที่อยู่สำหรับบริษัท '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "กรุณาตั้งที่อยู่สำหรับบริษัท '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38688,25 +38689,22 @@ msgstr "โปรดตั้งค่าอย่างน้อยหนึ่ msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "โปรดตั้งค่าทั้งหมายเลขประจำตัวผู้เสียภาษีและรหัสการเงินในบริษัท {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "โปรดตั้งค่าบัญชีเงินสดหรือธนาคารเริ่มต้นในโหมดการชำระเงิน {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "โปรดตั้งค่าบัญชีเงินสดหรือธนาคารเริ่มต้นในโหมดการชำระเงิน {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "โปรดตั้งค่าบัญชีเงินสดหรือธนาคารเริ่มต้นในโหมดการชำระเงิน {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "โปรดตั้งค่าบัญชีเงินสดหรือธนาคารเริ่มต้นในโหมดการชำระเงิน {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "โปรดตั้งค่าบัญชีกำไร/ขาดทุนจากอัตราแลกเปลี่ยนเริ่มต้นในบริษัท {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38737,11 +38735,11 @@ msgstr "โปรดตั้งค่าตัวกรองตามราย msgid "Please set one of the following:" msgstr "โปรดตั้งค่าหนึ่งในสิ่งต่อไปนี้:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "โปรดตั้งค่าจำนวนการหักค่าเสื่อมราคาที่จองไว้" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "โปรดตั้งค่าการเกิดซ้ำหลังจากบันทึก" @@ -38749,7 +38747,7 @@ msgstr "โปรดตั้งค่าการเกิดซ้ำหลั msgid "Please set the Customer Address" msgstr "โปรดตั้งค่าที่อยู่ลูกค้า" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "โปรดตั้งค่าศูนย์ต้นทุนเริ่มต้นในบริษัท {0}" @@ -38804,7 +38802,7 @@ msgstr "โปรดตั้งค่า {0} ในบริษัท {1} เ msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "โปรดตั้งค่า {0} เป็น {1} ซึ่งเป็นบัญชีเดียวกับที่ใช้ในใบแจ้งหนี้ต้นฉบับ {2}" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "โปรดตั้งค่าและเปิดใช้งานบัญชีกลุ่มด้วยประเภทบัญชี - {0} สำหรับบริษัท {1}" @@ -38812,7 +38810,7 @@ msgstr "โปรดตั้งค่าและเปิดใช้งาน msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "โปรดแชร์อีเมลนี้กับทีมสนับสนุนของคุณเพื่อให้พวกเขาสามารถค้นหาและแก้ไขปัญหาได้" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "โปรดระบุบริษัท" @@ -38822,8 +38820,8 @@ msgstr "โปรดระบุบริษัท" msgid "Please specify Company to proceed" msgstr "โปรดระบุบริษัทเพื่อดำเนินการต่อ" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "โปรดระบุรหัสแถวที่ถูกต้องสำหรับแถว {0} ในตาราง {1}" @@ -38831,11 +38829,11 @@ msgstr "โปรดระบุรหัสแถวที่ถูกต้อ msgid "Please specify a {0} first." msgstr "โปรดระบุ {0} ก่อน" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "โปรดระบุอย่างน้อยหนึ่งแอตทริบิวต์ในตารางแอตทริบิวต์" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "โปรดระบุปริมาณหรืออัตราการประเมินมูลค่าหรือทั้งสองอย่าง" @@ -38843,6 +38841,14 @@ msgstr "โปรดระบุปริมาณหรืออัตราก msgid "Please specify from/to range" msgstr "โปรดระบุช่วงจาก/ถึง" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "โปรดลองอีกครั้งในหนึ่งชั่วโมง" @@ -39006,7 +39012,7 @@ msgstr "โพสต์เมื่อ" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39031,7 +39037,7 @@ msgstr "โพสต์เมื่อ" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39074,8 +39080,8 @@ msgstr "วันที่โพสต์" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "วันที่โพสต์ไม่สามารถเป็นวันที่ในอนาคตได้" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39083,7 +39089,7 @@ msgstr "วันที่โพสต์ไม่สามารถเป็น msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "วันที่โพสต์จะเปลี่ยนเป็นวันที่วันนี้ เนื่องจากไม่มีการเลือกช่องแก้ไขวันที่และเวลาโพสต์ คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?" @@ -39276,6 +39282,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "ค่าใช้จ่ายล่วงหน้า" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "ประธาน" @@ -39365,7 +39375,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "ปีการเงินก่อนหน้ายังไม่ปิด" @@ -39507,7 +39517,7 @@ msgstr "ประเทศในรายการราคา" msgid "Price List Currency" msgstr "สกุลเงินในรายการราคา" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "ไม่ได้เลือกสกุลเงินในรายการราคา" @@ -39628,7 +39638,7 @@ msgstr "ราคาไม่ขึ้นอยู่กับหน่วยว msgid "Price Per Unit ({0})" msgstr "ราคาต่อหน่วย ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "ไม่ได้ตั้งราคาสำหรับรายการ" @@ -39739,7 +39749,7 @@ msgstr "กฎการกำหนดราคาจะถูกเลือก msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "กฎการกำหนดราคาถูกสร้างขึ้นเพื่อเขียนทับรายการราคา / กำหนดเปอร์เซ็นต์ส่วนลด ตามเกณฑ์ที่กำหนด" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "กฎการตั้งราคา {0} ได้รับการอัปเดต" @@ -39947,8 +39957,8 @@ msgid "Priorities" msgstr "ลำดับความสำคัญ" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "ลำดับความสำคัญต้องไม่ต่ำกว่า 1" +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40129,7 +40139,7 @@ msgstr "ประมวลผลการสมัครสมาชิก" msgid "Process in Single Transaction" msgstr "ประมวลผลในธุรกรรมเดียว" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40255,7 +40265,7 @@ msgstr "ชุดสินค้า" msgid "Product Bundle Balance" msgstr "ยอดคงเหลือชุดสินค้า" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40280,7 +40290,7 @@ msgstr "ความช่วยเหลือชุดสินค้า" msgid "Product Bundle Item" msgstr "รายการชุดสินค้า" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40483,7 +40493,7 @@ msgstr "สินค้า" msgid "Profit & Loss" msgstr "กำไรและขาดทุน" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "กำไรปีนี้" @@ -40512,6 +40522,10 @@ msgstr "กำไรขาดทุน" msgid "Profit and Loss Statement" msgstr "งบกำไรขาดทุน" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40520,8 +40534,8 @@ msgstr "งบกำไรขาดทุน" msgid "Profit and Loss Summary" msgstr "สรุปกำไรขาดทุน" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "กำไรสำหรับปี" @@ -40594,7 +40608,7 @@ msgstr "สถานะโครงการ" msgid "Project Summary" msgstr "สรุปโครงการ" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "สรุปโครงการสำหรับ {0}" @@ -40674,7 +40688,7 @@ msgstr "การติดตามสต็อกตามโครงการ msgid "Project wise Stock Tracking " msgstr "การติดตามสต็อกตามโครงการ " -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "ข้อมูลตามโครงการไม่มีสำหรับใบเสนอราคา" @@ -40725,7 +40739,7 @@ msgstr "ปริมาณที่คาดการณ์" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40871,7 +40885,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "โอกาสที่มีการติดต่อแต่ยังไม่เปลี่ยนเป็นลูกค้า" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "ประเภทเอกสารที่ได้รับการคุ้มครอง" @@ -40904,9 +40918,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "บัญชีค่าใช้จ่ายชั่วคราว" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "กำไร/ขาดทุนชั่วคราว (เครดิต)" @@ -41134,8 +41148,8 @@ msgstr "แนวโน้มใบแจ้งหนี้ซื้อ" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "ไม่สามารถสร้างใบแจ้งหนี้ซื้อกับสินทรัพย์ที่มีอยู่ {0} ได้" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "ใบแจ้งหนี้ซื้อ {0} ถูกส่งแล้ว" @@ -41176,7 +41190,7 @@ msgstr "ใบแจ้งหนี้ซื้อ" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41200,11 +41214,11 @@ msgstr "ใบแจ้งหนี้ซื้อ" msgid "Purchase Order" msgstr "คำสั่งซื้อ" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "จำนวนเงินคำสั่งซื้อ" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "จำนวนเงินคำสั่งซื้อ (สกุลเงินบริษัท)" @@ -41219,7 +41233,7 @@ msgstr "จำนวนเงินคำสั่งซื้อ (สกุล msgid "Purchase Order Analysis" msgstr "การวิเคราะห์คำสั่งซื้อ" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "วันที่คำสั่งซื้อ" @@ -41268,8 +41282,8 @@ msgid "Purchase Order Required" msgstr "ต้องการคำสั่งซื้อ" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "ต้องการคำสั่งซื้อสำหรับรายการ {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41328,8 +41342,8 @@ msgid "Purchase Orders to Receive" msgstr "คำสั่งซื้อที่ต้องรับ" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "คำสั่งซื้อ {0} ถูกยกเลิกการเชื่อมโยง" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41418,8 +41432,8 @@ msgid "Purchase Receipt Required" msgstr "ต้องการใบรับซื้อ" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "ต้องการใบรับซื้อสำหรับรายการ {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41438,8 +41452,8 @@ msgid "Purchase Receipt Trends " msgstr "แนวโน้มใบรับซื้อ " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "ใบรับซื้อไม่มีรายการใดที่เปิดใช้งานการเก็บตัวอย่าง" +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41666,7 +41680,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41685,7 +41699,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41750,7 +41764,7 @@ msgstr "ปริมาณหลังธุรกรรม" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41787,7 +41801,7 @@ msgstr "ปริมาณต่อหน่วย" msgid "Qty To Manufacture" msgstr "ปริมาณที่จะผลิต" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "ปริมาณที่จะผลิต ({0}) ไม่สามารถเป็นเศษส่วนสำหรับหน่วยวัด {2} ได้ หากต้องการอนุญาต ให้ปิดใช้งาน '{1}' ในหน่วยวัด {2}" @@ -41882,7 +41896,7 @@ msgstr "ปริมาณที่จะใช้" msgid "Qty to Bill" msgstr "ปริมาณที่จะเรียกเก็บเงิน" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "ปริมาณที่จะสร้าง" @@ -42068,7 +42082,7 @@ msgstr "การตรวจสอบคุณภาพ" msgid "Quality Inspection Analysis" msgstr "การวิเคราะห์การตรวจสอบคุณภาพ" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42145,7 +42159,7 @@ msgstr "การตรวจสอบคุณภาพ {0} ไม่ได้ msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "การตรวจสอบคุณภาพ {0} ถูกปฏิเสธสำหรับรายการ: {1}" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "การตรวจสอบคุณภาพ" @@ -42228,7 +42242,7 @@ msgstr "การทบทวนคุณภาพ" msgid "Quality Review Objective" msgstr "วัตถุประสงค์การทบทวนคุณภาพ" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42272,12 +42286,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42428,7 +42442,7 @@ msgstr "ต้องการปริมาณ" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42456,11 +42470,11 @@ msgstr "ปริมาณควรมากกว่า 0" msgid "Quantity to Manufacture" msgstr "ปริมาณที่จะผลิต" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "ปริมาณที่จะผลิตไม่สามารถเป็นศูนย์สำหรับการดำเนินการ {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "ปริมาณที่จะผลิตต้องมากกว่า 0" @@ -42468,6 +42482,10 @@ msgstr "ปริมาณที่จะผลิตต้องมากกว msgid "Quantity to Scan" msgstr "ปริมาณที่จะสแกน" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42493,7 +42511,7 @@ msgstr "ไตรมาส {0} {1}" msgid "Query Route String" msgstr "สตริงเส้นทางการค้นหา" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "ขนาดคิวควรอยู่ระหว่าง 5 ถึง 100" @@ -42733,7 +42751,7 @@ msgstr "ผู้ดูแล (อีเมล)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42917,8 +42935,8 @@ msgid "Rate at which this tax is applied" msgstr "อัตราที่ใช้ในการเรียกเก็บภาษีนี้" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "ไม่สามารถเปลี่ยนแปลงอัตราของรายการ '{}' ได้" +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43236,7 +43254,7 @@ msgstr "เหตุผลในการพักการใช้งาน" msgid "Reason for Failure" msgstr "เหตุผลของความล้มเหลว" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "เหตุผลในการพักการใช้งาน" @@ -43478,8 +43496,8 @@ msgstr "รายการผู้รับว่างเปล่า โป msgid "Receiving" msgstr "กำลังรับ" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "คำสั่งซื้อล่าสุด" @@ -43655,6 +43673,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43705,7 +43727,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "การวนซ้ำปริมาณต้องไม่น้อยกว่า 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "ส่วนลดแบบวนซ้ำที่มีเงื่อนไขผสมไม่รองรับโดยระบบ" @@ -43785,7 +43807,7 @@ msgstr "อ้างอิง #" msgid "Reference #{0} dated {1}" msgstr "อ้างอิง #{0} ลงวันที่ {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "วันที่อ้างอิงสำหรับส่วนลดการชำระเงินล่วงหน้า" @@ -44077,8 +44099,8 @@ msgid "Rejected Warehouse" msgstr "คลังสินค้าที่ถูกปฏิเสธ" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "คลังสินค้าที่ถูกปฏิเสธและคลังสินค้าที่รับไม่สามารถเป็นคลังเดียวกันได้" +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44184,7 +44206,7 @@ msgstr "ข้อสังเกต" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44223,7 +44245,7 @@ msgstr "ลบจำนวนศูนย์" msgid "Remove item if charges is not applicable to that item" msgstr "ลบรายการหากค่าใช้จ่ายไม่สามารถใช้กับรายการนั้นได้" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "ลบรายการที่ไม่มีการเปลี่ยนแปลงในปริมาณหรือมูลค่าแล้ว" @@ -44375,7 +44397,7 @@ msgstr "รายงานข้อผิดพลาด" msgid "Report Line Items" msgstr "รายงานรายการ" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44458,7 +44480,7 @@ msgstr "บันทึกข้อผิดพลาดการโพสต์ msgid "Repost Item Valuation" msgstr "โพสต์ใหม่การประเมินมูลค่ารายการ" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "การประเมินมูลค่ารายการใหม่เริ่มต้นใหม่สำหรับบันทึกที่ล้มเหลวที่เลือกไว้" @@ -44504,6 +44526,15 @@ msgstr "การโพสต์ใหม่เริ่มต้นในพื msgid "Reposting Data File" msgstr "ไฟล์ข้อมูลการโพสต์ใหม่" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44588,7 +44619,7 @@ msgstr "วันที่ต้องการ" msgid "Reqd Qty (BOM)" msgstr "จำนวนที่ต้องการ (BOM)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "ต้องการภายในวันที่" @@ -44704,11 +44735,11 @@ msgstr "จำนวนที่ร้องขอ" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "จำนวนที่ขอ: จำนวนที่ขอซื้อ แต่ยังไม่ได้สั่งซื้อ" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "สถานที่ขอ" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "ผู้ร้องขอ" @@ -44887,6 +44918,10 @@ msgstr "สต็อกสำรอง" msgid "Reserve Warehouse" msgstr "คลังสินค้าสำรอง" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "สำรองวัตถุดิบ" @@ -44925,8 +44960,8 @@ msgid "Reserved Qty" msgstr "จำนวนที่จองไว้" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "จำนวนที่สำรองไว้ ({0}) ไม่สามารถเป็นเศษส่วนได้ หากต้องการให้สามารถทำได้ ให้ปิดการใช้งาน '{1}' ใน UOM {3}" +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "จำนวนที่สำรองไว้ ({0}) ไม่สามารถเป็นเศษส่วนได้ หากต้องการให้สามารถทำได้ ให้ปิดการใช้งาน '{1}' ใน UOM {2}" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44970,7 +45005,7 @@ msgstr "จำนวนที่สำรองไว้" msgid "Reserved Quantity for Production" msgstr "จำนวนที่สำรองไว้สำหรับการผลิต" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "หมายเลขประจำเครื่องที่สงวนไว้" @@ -44986,13 +45021,13 @@ msgstr "หมายเลขประจำเครื่องที่สง #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "สินค้าสำรอง" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "สต็อกสำรองสำหรับชุดการผลิต" @@ -45486,6 +45521,10 @@ msgstr "อัตราแลกเปลี่ยนที่คืนไม่ msgid "Returns" msgstr "การคืน" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45910,11 +45949,11 @@ msgstr "ชื่อการกำหนดเส้นทาง" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "แถว # {0}: ไม่สามารถคืนมากกว่า {1} สำหรับรายการ {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "แถว # {0}: โปรดเพิ่มชุดซีเรียลและแบทช์สำหรับรายการ {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "แถว # {0}: โปรดป้อนปริมาณสำหรับรายการ {1} เนื่องจากไม่ใช่ศูนย์" @@ -45998,23 +46037,23 @@ msgstr "แถว #{0}: ไม่พบ BOM สำหรับรายการ msgid "Row #{0}: Batch No {1} is already selected." msgstr "แถว #{0}: หมายเลขแบทช์ {1} ถูกเลือกแล้ว" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "แถว #{0}: หมายเลขล็อต {1} ไม่ใช่ส่วนหนึ่งของใบสั่งซื้อจากผู้รับเหมาช่วงที่เชื่อมโยง กรุณาเลือกหมายเลขล็อตที่ถูกต้อง" +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "แถว #{0}: ไม่สามารถจัดสรรมากกว่า {1} สำหรับเงื่อนไขการชำระเงิน {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "แถว #{0}: ไม่สามารถยกเลิกการบันทึกสต็อกการผลิตนี้ได้ เนื่องจากปริมาณที่เรียกเก็บของรายการ {1} ไม่สามารถมากกว่าปริมาณที่ใช้ไป" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "แถว #{0}: ไม่สามารถยกเลิกการบันทึกสินค้าคงคลังนี้ได้ เนื่องจากจำนวนที่ส่งคืนไม่สามารถมากกว่าจำนวนที่ส่งมอบสำหรับรายการ {1} ในใบสั่งซื้อจากผู้รับเหมาช่วงที่เชื่อมโยง" @@ -46090,13 +46129,16 @@ msgstr "แถว #{0}: ไม่พบรายการ {1} เพียงพ msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "แถว #{0}: เกณฑ์สะสมไม่สามารถน้อยกว่าเกณฑ์ธุรกรรมเดี่ยวได้" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} สำหรับรายการสั่งซื้อจากผู้รับเหมาช่วงขาเข้า {2} ({3}) ไม่สามารถเพิ่มได้หลายครั้ง" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} ไม่สามารถเพิ่มหลายครั้งในกระบวนการรับงานช่วงขาเข้า" @@ -46108,7 +46150,7 @@ msgstr "แถว #{0}: รายการที่ลูกค้าจัด msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} ไม่มีอยู่ในตารางรายการที่จำเป็นที่เชื่อมโยงกับใบสั่งซื้อจากผู้รับเหมาช่วงขาเข้า" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} เกินปริมาณที่มีอยู่ผ่านคำสั่งซื้อจากผู้รับเหมาช่วงขาเข้า" @@ -46116,12 +46158,12 @@ msgstr "แถว #{0}: รายการที่ลูกค้าจัด msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} มีจำนวนไม่เพียงพอในใบสั่งซื้อจากผู้รับเหมาช่วง จำนวนที่มีอยู่คือ {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} ไม่ใช่ส่วนหนึ่งของคำสั่งซื้อภายในงานรับเหมา {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} ไม่ใช่ส่วนหนึ่งของใบสั่งงาน {2}" @@ -46133,7 +46175,7 @@ msgstr "แถว #{0}: วันที่ทับซ้อนกับแถ msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "แถว #{0}: ไม่พบ BOM เริ่มต้นสำหรับรายการ FG {1}" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "แถว #{0}: ต้องการวันที่เริ่มต้นการหักค่าเสื่อมราคา" @@ -46141,6 +46183,10 @@ msgstr "แถว #{0}: ต้องการวันที่เริ่ม msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "แถว #{0}: รายการซ้ำในอ้างอิง {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "แถว #{0}: วันที่ส่งมอบที่คาดไว้ไม่สามารถก่อนวันที่คำสั่งซื้อได้" @@ -46153,11 +46199,18 @@ msgstr "แถว #{0}: ไม่ได้ตั้งค่าบัญชี msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "แถว #{0}: บัญชีค่าใช้จ่าย {1} ไม่ถูกต้องสำหรับใบแจ้งหนี้การซื้อ {2}. อนุญาตเฉพาะบัญชีค่าใช้จ่ายจากสินค้าที่ไม่มีสต็อกเท่านั้น" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "แถว #{0}: ปริมาณรายการสินค้าสำเร็จรูปไม่สามารถเป็นศูนย์ได้" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46180,8 +46233,8 @@ msgstr "แถว #{0}: สินค้าสำเร็จรูปต้อ msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "แถว #{0}: สำหรับสินค้าที่ลูกค้าจัดหาเอง {1}, คลังสินค้าต้นทางต้องเป็น {2}" @@ -46193,7 +46246,7 @@ msgstr "แถว #{0}: สำหรับ {1} คุณสามารถเล msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "แถว #{0}: สำหรับ {1} คุณสามารถเลือกเอกสารอ้างอิงได้เฉพาะเมื่อบัญชีถูกหัก" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "แถว #{0}: ความถี่ของการคิดค่าเสื่อมราคาต้องมากกว่าศูนย์" @@ -46205,6 +46258,10 @@ msgstr "แถว #{0}: วันที่เริ่มต้นไม่ส msgid "Row #{0}: From Time and To Time fields are required" msgstr "แถว #{0}: ต้องการฟิลด์เวลาเริ่มต้นและเวลาสิ้นสุด" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "แถว #{0}: เพิ่มรายการแล้ว" @@ -46233,16 +46290,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "แถว #{0}: รายการ {1} ในคลังสินค้า {2}: มี {3}, ต้องการ {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "แถว #{0}: รายการ {1} ไม่ใช่รายการที่ลูกค้าจัดหาให้" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "แถว #{0}: รายการ {1} ไม่ใช่รายการที่มีซีเรียล/แบทช์ ไม่สามารถมีหมายเลขซีเรียล/แบทช์ได้" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "แถว #{0}: รายการ {1} ไม่ใช่ส่วนหนึ่งของคำสั่งซื้อรับช่วงเข้า {2}" @@ -46258,13 +46315,17 @@ msgstr "แถว #{0}: รายการ {1} ไม่ใช่รายกา msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "แถว #{0}: รายการ {1} ไม่ตรงกัน ไม่อนุญาตให้เปลี่ยนรหัสรายการ กรุณาเพิ่มแถวใหม่แทน" +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "แถว #{0}: รายการ {1} ไม่ตรงกัน ไม่อนุญาตให้เปลี่ยนรหัสรายการ" +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46274,15 +46335,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "แถว #{0}: รายการสมุดรายวัน {1} ไม่มีบัญชี {2} หรือจับคู่กับใบสำคัญอื่นแล้ว" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "แถว #{0}: วันที่หักค่าเสื่อมราคาครั้งถัดไปไม่สามารถก่อนวันที่พร้อมใช้งานได้" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "แถว #{0}: วันที่หักค่าเสื่อมราคาครั้งถัดไปไม่สามารถก่อนวันที่ซื้อได้" @@ -46294,24 +46355,48 @@ msgstr "แถว #{0}: ไม่อนุญาตให้เปลี่ย msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "แถว #{0}: มีเพียง {1} ที่สามารถจองสำหรับรายการ {2}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "แถว #{0}: การหักค่าเสื่อมราคาสะสมเริ่มต้นต้องน้อยกว่าหรือเท่ากับ {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "แถว #{0}: การใช้งานเกินของรายการที่ลูกค้าจัดหาให้ {1} ตามใบสั่งงาน {2} ไม่ได้รับอนุญาตในกระบวนการรับงานช่วงเข้า" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "แถว #{0}: โปรดเลือกรหัสรายการในรายการประกอบ" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "แถว #{0}: โปรดเลือกหมายเลข BOM ในรายการประกอบ" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "แถว #{0}: กรุณาเลือกสินค้าสำเร็จรูปที่ต้องการใช้กับสินค้าที่ลูกค้าจัดหาให้" @@ -46327,6 +46412,10 @@ msgstr "แถว #{0}: โปรดตั้งค่าปริมาณก msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "โปรดอัปเดตบัญชีรายได้/ค่าใช้จ่ายรอตัดบัญชีในแถวรายการหรือบัญชีเริ่มต้นในมาสเตอร์บริษัท" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46346,8 +46435,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "ปริมาณต้องเป็นตัวเลขบวก" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "ปริมาณควรน้อยกว่าหรือเท่ากับปริมาณที่สามารถจองได้ (ปริมาณจริง - ปริมาณที่จอง) {1} สำหรับรายการ {2} ในแบทช์ {3} ในคลังสินค้า {4}" +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46369,7 +46458,7 @@ msgstr "แถว #{0}: ปริมาณไม่สามารถเป็ msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "ปริมาณสำหรับรายการ {1} ไม่สามารถเป็นศูนย์ได้" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "แถว #{0}: จำนวนของรายการ {1} ไม่สามารถมากกว่า {2} {3} ตามคำสั่งซื้อรับเหมาช่วงขาเข้า {4}" @@ -46377,17 +46466,17 @@ msgstr "แถว #{0}: จำนวนของรายการ {1} ไม่ msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "ปริมาณที่จะจองสำหรับรายการ {1} ควรมากกว่า 0" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "อัตราต้องเท่ากับ {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "ประเภทเอกสารอ้างอิงต้องเป็นหนึ่งในคำสั่งซื้อ, ใบแจ้งหนี้ซื้อ หรือรายการสมุดรายวัน" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "ประเภทเอกสารอ้างอิงต้องเป็นหนึ่งในคำสั่งขาย, ใบแจ้งหนี้ขาย, รายการสมุดรายวัน หรือการติดตามหนี้" @@ -46407,11 +46496,11 @@ msgstr "แถว #{0}: ค่าใช้จ่ายในการซ่อ msgid "Row #{0}: Return Against is required for returning asset" msgstr "ต้องการการอ้างอิงสำหรับการคืนสินทรัพย์" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "แถว #{0}: ปริมาณที่คืนไม่สามารถมากกว่าปริมาณที่มีอยู่สำหรับรายการ {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "แถว #{0}: ปริมาณที่ส่งคืนไม่สามารถมากกว่าปริมาณที่มีอยู่เพื่อส่งคืนสำหรับรายการ {1}" @@ -46421,18 +46510,19 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "แถว #{0}: อัตราการขายสำหรับสินค้า {1} ต่ำกว่า {2}ของมัน\n" -"\t\t\t\t\tการขาย {3} ควรอยู่ที่อย่างน้อย {4}

                    หรืออีกทางหนึ่ง\n" -"\t\t\t\t\tคุณสามารถปิดใช้งาน '{5}' ใน {6} เพื่อข้ามการตรวจสอบ\n" -"\t\t\t\t\tนี้ได้" +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "แถว #{0}: รหัสลำดับต้องเป็น {1} หรือ {2} สำหรับการดำเนินการ {3}." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "หมายเลขซีเรียล {1} ไม่ได้อยู่ในแบทช์ {2}" @@ -46445,7 +46535,7 @@ msgstr "หมายเลขซีเรียล {1} สำหรับรา msgid "Row #{0}: Serial No {1} is already selected." msgstr "หมายเลขซีเรียล {1} ถูกเลือกแล้ว" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "แถว #{0}: หมายเลขซีเรียล {1} ไม่เป็นส่วนหนึ่งของใบสั่งซื้อจากผู้รับเหมาช่วงที่เชื่อมโยง กรุณาเลือกหมายเลขซีเรียลที่ถูกต้อง" @@ -46469,7 +46559,7 @@ msgstr "ตั้งค่าผู้จัดจำหน่ายสำหร msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "แถว #{0}: เนื่องจาก 'ติดตามสินค้าครึ่งสำเร็จรูป' ถูกเปิดใช้งานแล้ว BOM {1} ไม่สามารถใช้กับรายการย่อยประกอบได้" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "แถว #{0}: คลังสินค้าต้นทางต้องเป็นคลังสินค้าของลูกค้า {1} จากใบสั่งซื้อจากผู้รับเหมาช่วงที่เชื่อมโยง" @@ -46538,7 +46628,7 @@ msgstr "ไม่มีสต็อกสำหรับจองสำหรั msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "แถว #{0}: จำนวนคงคลัง {1} ({2}) สำหรับรายการ {3} ไม่สามารถเกิน {4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "แถว #{0}: คลังสินค้าเป้าหมายต้องเป็นคลังสินค้าของลูกค้า {1} จากใบสั่งซื้อจากผู้รับเหมาช่วงที่เชื่อมโยง" @@ -46546,19 +46636,27 @@ msgstr "แถว #{0}: คลังสินค้าเป้าหมาย msgid "Row #{0}: The batch {1} has already expired." msgstr "แบทช์ {1} หมดอายุแล้ว" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "คลังสินค้า {1} ไม่ใช่คลังสินค้าย่อยของคลังสินค้ากลุ่ม {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "เวลาขัดแย้งกับแถว {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "จำนวนการหักค่าเสื่อมราคาทั้งหมดต้องไม่น้อยกว่าหรือเท่ากับจำนวนการหักค่าเสื่อมราคาที่จองไว้" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "แถว #{0}: จำนวนรวมของการคิดค่าเสื่อมราคาต้องมากกว่าศูนย์" @@ -46570,11 +46668,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "แถว #{0}: จำนวนเงินที่หักไว้ {1} ไม่ตรงกับจำนวนที่คำนวณได้ {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "แถว #{0}: ใบสั่งงานมีอยู่สำหรับจำนวนทั้งหมดหรือบางส่วนของรายการ {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "คุณไม่สามารถใช้มิติสินค้าคงคลัง '{1}' ในการกระทบยอดสต็อกเพื่อแก้ไขปริมาณหรืออัตราการประเมินมูลค่า การกระทบยอดสต็อกด้วยมิติสินค้าคงคลังมีไว้สำหรับการทำรายการเปิดเท่านั้น" @@ -46582,6 +46684,19 @@ msgstr "คุณไม่สามารถใช้มิติสินค้ msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "คุณต้องเลือกสินทรัพย์สำหรับรายการ {1}" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "แถวที่ #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "{1} ไม่สามารถเป็นค่าลบสำหรับรายการ {2}" @@ -46598,6 +46713,14 @@ msgstr "ต้องการ {1} เพื่อสร้างใบแจ้ msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "{1} ของ {2} ควรเป็น {3} โปรดอัปเดต {1} หรือเลือกบัญชีอื่น" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46638,71 +46761,10 @@ msgstr "{from_warehouse_field} และ {to_warehouse_field} ไม่สาม msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "{schedule_date} ไม่สามารถก่อน {transaction_date} ได้" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "สกุลเงินของ {} - {} ไม่ตรงกับสกุลเงินของบริษัท" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "สมุดการเงินไม่ควรว่างเปล่าเนื่องจากคุณกำลังใช้หลายสมุด" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "ใบแจ้งหนี้ POS {} ได้ถูก {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "ใบแจ้งหนี้ POS {} ไม่ได้อยู่กับลูกค้า {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "ใบแจ้งหนี้ POS {} ยังไม่ได้ส่ง" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "โปรดมอบหมายงานให้กับสมาชิก" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "โปรดใช้สมุดการเงินที่แตกต่างกัน" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "หมายเลขซีเรียล {} ไม่สามารถคืนได้เนื่องจากไม่ได้ทำธุรกรรมในใบแจ้งหนี้ต้นฉบับ {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "ใบแจ้งหนี้ต้นฉบับ {} ของใบแจ้งหนี้คืน {} ยังไม่ได้รวม" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "คุณไม่สามารถเพิ่มปริมาณบวกในใบแจ้งหนี้คืน โปรดลบรายการ {} เพื่อดำเนินการคืนให้เสร็จสิ้น" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "รายการ {} ถูกเลือกแล้ว" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "แถว #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "{} {} ไม่มีอยู่" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "{} {} ไม่ได้เป็นของบริษัท {} โปรดเลือก {} ที่ถูกต้อง" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "{1} หมายเลขแถว {0}: จำเป็นต้องมีคลังสินค้า กรุณากำหนดคลังสินค้าเริ่มต้นสำหรับรายการ และบริษัท {2}" @@ -46715,10 +46777,6 @@ msgstr "แถว {0} : ต้องการการดำเนินกา msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "แถว {0} ปริมาณที่เลือกน้อยกว่าปริมาณที่ต้องการ ต้องการเพิ่มเติม {1} {2}" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "แถว {0}# รายการ {1} ไม่พบในตาราง 'วัตถุดิบที่จัดหา' ใน {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "แถว {0}: ปริมาณที่ยอมรับและปริมาณที่ปฏิเสธไม่สามารถเป็นศูนย์พร้อมกันได้" @@ -46739,19 +46797,19 @@ msgstr "แถว {0}: การล่วงหน้ากับลูกค้ msgid "Row {0}: Advance against Supplier must be debit" msgstr "แถว {0}: การล่วงหน้ากับผู้จัดจำหน่ายต้องเป็นเดบิต" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "แถว {0}: จำนวนเงินที่จัดสรร {1} ต้องน้อยกว่าหรือเท่ากับจำนวนเงินค้างชำระในใบแจ้งหนี้ {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "แถว {0}: จำนวนเงินที่จัดสรร {1} ต้องน้อยกว่าหรือเท่ากับจำนวนเงินที่เหลืออยู่ {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "แถว {0}: เนื่องจาก {1} ถูกเปิดใช้งาน วัตถุดิบไม่สามารถเพิ่มในรายการ {2} ได้ ใช้รายการ {3} เพื่อใช้วัตถุดิบ" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "แถว {0}: ไม่พบใบกำกับวัสดุสำหรับรายการ {1}" @@ -46767,11 +46825,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "แถว {0}: ปัจจัยการแปลงเป็นสิ่งจำเป็น" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "แถว {0}: ศูนย์ต้นทุน {1} ไม่ได้เป็นของบริษัท {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "แถว {0}: ต้องการศูนย์ต้นทุนสำหรับรายการ {1}" @@ -46799,24 +46857,24 @@ msgstr "แถว {0}: คลังสินค้าสำหรับการ msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "แถว {0}: วันที่ครบกำหนดในตารางเงื่อนไขการชำระเงินไม่สามารถก่อนวันที่โพสต์ได้" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "แถว {0}: ต้องการการอ้างอิงรายการใบส่งของหรือรายการที่บรรจุ" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "แถว {0}: อัตราแลกเปลี่ยนเป็นสิ่งจำเป็น" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "แถว {0}: ค่าที่คาดหวังหลังอายุการใช้งานไม่สามารถเป็นค่าลบได้" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "แถว {0}: มูลค่าตามคาดหลังอายุการใช้งานต้องน้อยกว่าจำนวนเงินสุทธิที่ซื้อ" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46837,6 +46895,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "แถว {0}: เวลาเริ่มต้นและเวลาสิ้นสุดเป็นสิ่งจำเป็น" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "แถว {0}: เวลาเริ่มต้นและเวลาสิ้นสุดของ {1} ทับซ้อนกับ {2}" @@ -46858,8 +46919,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "แถว {0}: การอ้างอิง {1} ไม่ถูกต้อง" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "แถว {0}: แม่แบบภาษีรายการอัปเดตตามความถูกต้องและอัตราที่ใช้" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46889,7 +46950,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "แถว {0}: ปริมาณที่บรรจุต้องเท่ากับปริมาณ {1}" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "แถว {0}: ใบบรรจุถูกสร้างขึ้นแล้วสำหรับรายการ {1}" @@ -46913,7 +46974,7 @@ msgstr "แถว {0}: การชำระเงินกับคำสั่ msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "แถว {0}: โปรดตรวจสอบ 'เป็นล่วงหน้า' กับบัญชี {1} หากนี่เป็นรายการล่วงหน้า" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "แถว {0}: โปรดระบุการอ้างอิงรายการใบส่งของหรือรายการที่บรรจุที่ถูกต้อง" @@ -46921,14 +46982,14 @@ msgstr "แถว {0}: โปรดระบุการอ้างอิงร msgid "Row {0}: Please select a BOM for Item {1}." msgstr "แถว {0}: โปรดเลือก BOM สำหรับรายการ {1}" +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "แถว {0}: โปรดเลือก BOM ที่ใช้งานสำหรับรายการ {1}" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "แถว {0}: โปรดเลือก BOM ที่ถูกต้องสำหรับรายการ {1}" - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "แถว {0}: โปรดตั้งเหตุผลการยกเว้นภาษีในภาษีและค่าใช้จ่ายการขาย" @@ -46945,11 +47006,11 @@ msgstr "แถว {0}: โปรดตั้งรหัสที่ถูกต msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "แถว {0}: โครงการต้องเหมือนกับที่ตั้งไว้ในตารางเวลา: {1}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "แถว {0}: ใบแจ้งหนี้ซื้อ {1} ไม่มีผลกระทบต่อสต็อก" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "แถว {0}: ปริมาณไม่สามารถมากกว่า {1} สำหรับรายการ {2}" @@ -46957,7 +47018,7 @@ msgstr "แถว {0}: ปริมาณไม่สามารถมากก msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "แถว {0}: ปริมาณในหน่วยวัดสต็อกไม่สามารถเป็นศูนย์ได้" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "แถว {0}: ปริมาณต้องมากกว่า 0" @@ -46969,7 +47030,7 @@ msgstr "แถว {0}: ปริมาณไม่สามารถเป็น msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "แถว {0}: ใบแจ้งหนี้การขาย {1} ได้ถูกสร้างขึ้นแล้วสำหรับ {2}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46994,10 +47055,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "แถว {0}: จำนวนค่าใช้จ่ายทั้งหมดสำหรับบัญชี {1} ใน {2} ได้ถูกจัดสรรไปแล้ว" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "แถว {0}: รายการ {1} ปริมาณต้องเป็นตัวเลขบวก" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "แถว {0}: บัญชี {3} {1} ไม่ได้เป็นของบริษัท {2}" @@ -47050,15 +47111,19 @@ msgstr "แถว {0}: {1} {2} ไม่สามารถเหมือนก msgid "Row {0}: {1} {2} does not match with {3}" msgstr "แถว {0}: {1} {2} ไม่ตรงกับ {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "แถว {0}: รายการ {2} {1} ไม่มีอยู่ใน {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "แถว {1}: ปริมาณ ({0}) ไม่สามารถเป็นเศษส่วนได้ หากต้องการอนุญาต ให้ปิดใช้งาน '{2}' ในหน่วยวัด {3}" @@ -47097,8 +47162,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "แถว: {0} มี 'Payment Entry' เป็น reference_type ซึ่งไม่ควรตั้งค่าด้วยตนเอง" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "แถว: {0} ใน {1} ส่วนไม่ถูกต้อง ชื่อการอ้างอิงควรชี้ไปที่รายการชำระเงินหรือรายการบัญชีที่ถูกต้อง" +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47158,10 +47223,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47229,7 +47290,7 @@ msgstr "สถานะ SLA สำเร็จเมื่อ" msgid "SLA Paused On" msgstr "SLA หยุดชั่วคราวเมื่อ" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "SLA ถูกพักไว้ตั้งแต่ {0}" @@ -47528,8 +47589,8 @@ msgid "Sales Invoice is not submitted" msgstr "ใบแจ้งหนี้ขายยังไม่ได้ส่ง" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "ใบแจ้งหนี้ขายไม่ได้ถูกสร้างโดยผู้ใช้ {}" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47745,8 +47806,8 @@ msgstr "คำสั่งขาย {0} มีอยู่แล้วสำห msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48153,7 +48214,7 @@ msgstr "รายการเดียวกัน" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "การรวมกันของรายการและคลังสินค้าเดียวกันถูกป้อนแล้ว" @@ -48185,7 +48246,7 @@ msgstr "คลังสินค้าที่เก็บตัวอย่า #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "ขนาดตัวอย่าง" @@ -48295,7 +48356,7 @@ msgstr "จำนวนที่สแกน" msgid "Schedule Date" msgstr "กำหนดวัน" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48306,7 +48367,7 @@ msgstr "" msgid "Scheduled Date" msgstr "วันที่กำหนด" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48594,7 +48655,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "เลือกมิติการบัญชี" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "เลือกสินค้าทดแทน" @@ -48615,7 +48676,7 @@ msgid "Select BOM and Qty for Production" msgstr "เลือก BOM และจำนวนสำหรับผลิต" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "เลือกหมายเลขชุด" @@ -48680,7 +48741,7 @@ msgstr "เลือกมิติ" msgid "Select Dispatch Address " msgstr "เลือกที่อยู่จัดส่ง " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "เลือกพนักงาน" @@ -48705,7 +48766,7 @@ msgstr "เลือกรายการ" msgid "Select Items based on Delivery Date" msgstr "เลือกรายการตามวันที่ส่งมอบ" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "เลือกรายการสำหรับการตรวจสอบคุณภาพ" @@ -48735,7 +48796,7 @@ msgstr "เลือกที่อยู่ผู้ปฏิบัติงา msgid "Select Loyalty Program" msgstr "เลือกโปรแกรมสะสมคะแนน" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48749,13 +48810,13 @@ msgid "Select Quantity" msgstr "เลือกปริมาณ" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "เลือกหมายเลขซีเรียล" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "เลือกซีเรียลและแบทช์" @@ -48846,6 +48907,7 @@ msgid "Select an Item Group." msgstr "เลือกกลุ่มรายการ" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "เลือกบัญชีเพื่อพิมพ์ในสกุลเงินบัญชี" @@ -48988,10 +49050,14 @@ msgstr "ใบสำคัญที่เลือก" msgid "Selected date is" msgstr "วันที่ที่เลือกคือ" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "เอกสารที่เลือกต้องอยู่ในสถานะที่ส่งแล้ว" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49139,7 +49205,7 @@ msgid "Send Emails to Suppliers" msgstr "ส่งอีเมลถึงผู้จัดจำหน่าย" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "ส่ง SMS" @@ -49223,7 +49289,7 @@ msgstr "บันเดิลแบบต่อเนื่อง/ชุดข msgid "Serial / Batch No" msgstr "หมายเลขซีเรียล / หมายเลขชุด" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "หมายเลขซีเรียล / หมายเลขชุด" @@ -49280,10 +49346,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49325,6 +49392,10 @@ msgstr "หมายเลขซีเรียล / ล็อต" msgid "Serial No Already Assigned" msgstr "หมายเลขซีเรียลได้รับการกำหนดแล้ว" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "หมายเลขซีเรียล ไม่ระบุจำนวน" @@ -49342,7 +49413,7 @@ msgstr "เลขที่ซีเรียล หนังสือใหญ msgid "Serial No Range" msgstr "หมายเลขประจำเครื่อง ช่วง" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "หมายเลขซีเรียลสงวนไว้" @@ -49387,8 +49458,8 @@ msgid "Serial No and Batch" msgstr "หมายเลขซีเรียลและหมายเลขล็อต" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "ไม่สามารถใช้หมายเลขซีเรียลและตัวเลือกล็อตได้เมื่อเปิดใช้งานการใช้ฟิลด์หมายเลขซีเรียล/ล็อต" +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49399,7 +49470,7 @@ msgstr "ไม่สามารถใช้หมายเลขซีเรี msgid "Serial No and Batch Traceability" msgstr "หมายเลขซีเรียลและการตรวจสอบย้อนกลับของชุดการผลิต" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "หมายเลขซีเรียลเป็นข้อบังคับ" @@ -49419,22 +49490,19 @@ msgstr "หมายเลขเครื่อง {0} สแกนแล้ว" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "หมายเลขซีเรียล {0} ไม่ได้เป็นของใบส่งของ {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "หมายเลขซีเรียล {0} ไม่ได้เป็นของรายการ {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "หมายเลขซีเรียล {0} ไม่พบ" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "หมายเลขซีเรียล {0} ไม่พบ" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "หมายเลขซีเรียล {0} ได้ถูกส่งมอบแล้ว คุณไม่สามารถใช้งานอีกครั้งในรายการการผลิต / การบรรจุใหม่" +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49448,25 +49516,26 @@ msgstr "หมายเลขซีเรียล {0} ได้รับกา msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "หมายเลขซีเรียล {0} ไม่พบใน {1} {2}ดังนั้นคุณไม่สามารถคืนสินค้าตามหมายเลข {1} {2}ได้" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "หมายเลขเครื่อง {0} อยู่ภายใต้สัญญาบำรุงรักษาถึง {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "หมายเลขเครื่อง {0} อยู่ภายใต้การรับประกันถึง {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "หมายเลขซีเรียล {0} ไม่พบ" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "หมายเลขเครื่อง: {0} ได้ถูกทำรายการไปยังใบแจ้งหนี้ POS อื่นแล้ว" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49486,7 +49555,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "หมายเลขซีเรียลถูกสร้างขึ้นสำเร็จ" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "หมายเลขซีเรียลถูกสำรองไว้ในรายการสำรองสินค้า คุณจำเป็นต้องยกเลิกการสำรองก่อนดำเนินการต่อ" @@ -49587,6 +49656,10 @@ msgstr "บันเดิลแบบต่อเนื่องและแบ msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49635,7 +49708,7 @@ msgstr "การจองแบบต่อเนื่องและแบบ msgid "Serial and Batch Summary" msgstr "สรุปข้อมูลแบบต่อเนื่องและแบบชุด" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "หมายเลขซีเรียล {0} ถูกป้อนมากกว่าหนึ่งครั้ง" @@ -49643,122 +49716,12 @@ msgstr "หมายเลขซีเรียล {0} ถูกป้อนม msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "หมายเลขซีเรียลไม่พร้อมใช้งานสำหรับสินค้า {0} ภายใต้คลังสินค้า {1}. กรุณาลองเปลี่ยนคลังสินค้า" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "ซีรีส์" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "ชุดรายการสำหรับค่าเสื่อมราคาสินทรัพย์ (รายการในสมุดรายวัน)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "ซีรีส์เป็นสิ่งที่ต้องทำ" @@ -49840,7 +49803,7 @@ msgid "Service Item {0} is disabled." msgstr "รายการบริการ {0} ถูกปิดใช้งาน" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "รายการบริการ {0} ต้องเป็นรายการที่ไม่มีในสต็อก" @@ -49949,12 +49912,12 @@ msgid "Service Stop Date" msgstr "วันที่หยุดให้บริการ" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "วันที่หยุดให้บริการไม่สามารถเป็นวันที่หลังวันที่สิ้นสุดการให้บริการได้" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "วันที่หยุดให้บริการไม่สามารถเป็นก่อนวันที่เริ่มให้บริการ" @@ -49978,7 +49941,7 @@ msgstr "ตั้งค่าล่วงหน้าและจัดสรร #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "ตั้งค่าอัตราพื้นฐานด้วยตนเอง" @@ -49993,7 +49956,7 @@ msgstr "ตั้งค่าผู้จัดจำหน่ายเริ่ msgid "Set Delivery Warehouse" msgstr "คลังสินค้าสำหรับการจัดส่ง" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50098,7 +50061,7 @@ msgstr "ตั้งค่าการตั้งชื่อชุดซีเ #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50116,7 +50079,7 @@ msgstr "ผู้จัดหาชุด" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50142,7 +50105,7 @@ msgstr "ตั้งค่าเป็นปิด" msgid "Set as Completed" msgstr "ตั้งค่าเป็นเสร็จสิ้น" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "ตั้งค่าเป็นสูญหาย" @@ -50240,15 +50203,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "ตั้งค่า {0} ในหมวดหมู่สินทรัพย์ {1} สำหรับบริษัท {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "ตั้งค่า {0} ในหมวดหมู่สินทรัพย์ {1} หรือบริษัท {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "ตั้งค่า {0} ในบริษัท {1}" @@ -50316,7 +50279,7 @@ msgid "Setting up company" msgstr "กำลังตั้งค่าบริษัท" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "การตั้งค่า {0} เป็นสิ่งจำเป็น" @@ -50744,6 +50707,7 @@ msgid "Show Completed" msgstr "แสดงที่เสร็จสมบูรณ์" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "แสดงเครดิต/เดบิตในสกุลเงินของบริษัท" @@ -50946,7 +50910,7 @@ msgstr "แสดงเฉพาะเงื่อนไขที่กำลั msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "แสดงรายการที่ค้างอยู่" @@ -51051,11 +51015,11 @@ msgstr "สูตร Python ง่าย ๆ ที่ใช้กับฟิ msgid "Simultaneous" msgstr "พร้อมกัน" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "เนื่องจากมีการสูญเสียกระบวนการ {0} หน่วยสำหรับสินค้าสำเร็จรูป {1} คุณควรลดปริมาณลง {0} หน่วยสำหรับสินค้าสำเร็จรูป {1} ในตารางรายการ" @@ -51116,7 +51080,7 @@ msgstr "ข้ามการโอนวัสดุไปยัง WIP" msgid "Skip Material Transfer to WIP Warehouse" msgstr "ข้ามการโอนวัสดุไปยังคลังสินค้า WIP" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "ข้าม {0} ประเภทเอกสาร:
                    {1}" @@ -51172,8 +51136,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "ข้อมูลบริษัทที่จำเป็นบางรายการขาดหายไป คุณไม่มีสิทธิ์ในการอัปเดตข้อมูลเหล่านี้ กรุณาติดต่อผู้ดูแลระบบของคุณ" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "เกิดข้อผิดพลาด กรุณาลองอีกครั้ง" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51240,7 +51204,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51277,8 +51241,8 @@ msgstr "ประเภทต้นทาง" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51408,7 +51372,7 @@ msgstr "แยกปัญหา" msgid "Split Qty" msgstr "แยกปริมาณ" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "ปริมาณที่แยกต้องน้อยกว่าปริมาณสินทรัพย์" @@ -51421,7 +51385,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "กำลังแยก {0} {1} เป็น {2} แถวตามเงื่อนไขการชำระเงิน" @@ -51474,7 +51443,7 @@ msgstr "ชื่อขั้นตอน" msgid "Stale Days" msgstr "วันที่หมดอายุ" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "วันที่หมดอายุควรเริ่มจาก 1" @@ -51539,10 +51508,26 @@ msgstr "แบบฟอร์มภาษีมาตรฐานที่สา msgid "Standing Name" msgstr "ชื่อที่ปรากฏ" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "เริ่มต้น / ดำเนินการต่อ" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "ไม่สามารถเริ่มก่อนวันที่ปัจจุบันได้" @@ -51572,7 +51557,7 @@ msgstr "เวลาเริ่มต้นไม่สามารถมาก msgid "Start Timer" msgstr "เริ่มจับเวลา" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51601,10 +51586,14 @@ msgstr "วันที่เริ่มต้นควรน้อยกว่ msgid "Start date should be less than end date for task {0}" msgstr "วันที่เริ่มต้นควรน้อยกว่าวันที่สิ้นสุดสำหรับงาน {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "เริ่มงานพื้นหลังเพื่อสร้าง {1} {0}. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51685,7 +51674,7 @@ msgstr "ภาพประกอบสถานะ" msgid "Status and Reference" msgstr "สถานะและอ้างอิง" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "สถานะต้องเป็น ยกเลิก หรือ เสร็จสมบูรณ์" @@ -51813,8 +51802,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "รายการปิดสต็อก {0} มีอยู่แล้วสำหรับช่วงวันที่ที่เลือก" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "รายการปิดสต็อก {0} ได้ถูกจัดคิวเพื่อดำเนินการแล้ว ระบบจะใช้เวลาสักครู่ในการดำเนินการให้เสร็จสมบูรณ์" +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51895,17 +51884,21 @@ msgstr "รายการสินค้าเข้า" msgid "Stock Entry Type" msgstr "ประเภทของรายการสต็อก" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "รายการสต็อกถูกสร้างขึ้นแล้วสำหรับรายการเลือกนี้" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "สร้างรายการสต็อก {0} แล้ว" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "รายการสต็อก {0} ถูกสร้างขึ้นแล้ว" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52071,7 +52064,7 @@ msgstr "ปริมาณสต็อกที่คาดการณ์" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52154,7 +52147,7 @@ msgstr "การตั้งค่าโพสต์สต็อกใหม่ #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52179,15 +52172,15 @@ msgstr "การจองสต็อก" msgid "Stock Reservation Entries Cancelled" msgstr "ยกเลิกรายการจองสต็อกแล้ว" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "สร้างรายการจองสต็อกแล้ว" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "รายการสำรองสินค้าที่สร้างขึ้น" @@ -52357,7 +52350,7 @@ msgstr "ธุรกรรมหุ้น" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52516,9 +52509,9 @@ msgstr "สต็อกถูกยกเลิกการจองสำหร msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "ไม่มีสต็อกสำหรับรายการ {0} ในคลังสินค้า {1}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "ปริมาณสต็อกไม่เพียงพอสำหรับรหัสรายการ: {0} ในคลังสินค้า {1} ปริมาณที่มีอยู่ {2} {3}" +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52536,7 +52529,7 @@ msgstr "ธุรกรรมสต็อกที่เก่ากว่าว msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "สต็อกจะถูกจองเมื่อส่ง ใบรับซื้อ ที่สร้างขึ้นสำหรับคำขอวัสดุสำหรับคำสั่งขาย" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "ไม่สามารถแช่แข็งสต็อก/บัญชีได้เนื่องจากกำลังดำเนินการประมวลผลรายการย้อนหลัง โปรดลองอีกครั้งในภายหลัง" @@ -52551,7 +52544,7 @@ msgstr "หิน" msgid "Stop Reason" msgstr "เหตุผลในการหยุด" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "ไม่สามารถยกเลิกคำสั่งหยุดงานได้ กรุณายกเลิกการหยุดก่อนจึงจะยกเลิกได้" @@ -52559,7 +52552,7 @@ msgstr "ไม่สามารถยกเลิกคำสั่งหยุ #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "ร้านค้า" @@ -52773,7 +52766,7 @@ msgstr "ปัจจัยการแปลงการจ้างช่วง msgid "Subcontracting Delivery" msgstr "การจ้างช่วงงาน" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52845,7 +52838,7 @@ msgstr "บริการรับเหมาช่วงคำสั่งซ #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52883,7 +52876,7 @@ msgstr "รายการบริการคำสั่งจ้างช่ msgid "Subcontracting Order Supplied Item" msgstr "รายการที่จัดหาสำหรับคำสั่งจ้างช่วง" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "คำสั่งจ้างช่วง {0} ถูกสร้างขึ้นแล้ว" @@ -52957,7 +52950,7 @@ msgstr "การส่งคืนการรับเหมาช่วง" msgid "Subcontracting Sales Order" msgstr "ใบสั่งขายที่รับช่วงต่อ" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52976,7 +52969,7 @@ msgstr "" msgid "Subdivision" msgstr "การแบ่งย่อย" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "การส่งล้มเหลว" @@ -53005,7 +52998,7 @@ msgstr "ส่งคำสั่งงานนี้เพื่อดำเน msgid "Submit your Quotation" msgstr "ส่งใบเสนอราคาของคุณ" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53147,7 +53140,7 @@ msgstr "การตั้งค่าความสำเร็จ" msgid "Successful" msgstr "สำเร็จ" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "กระทบยอดสำเร็จ" @@ -53325,7 +53318,7 @@ msgstr "จำนวนที่จัดหา" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53507,7 +53500,7 @@ msgstr "วันที่ใบแจ้งหนี้ผู้จัดจำ #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "หมายเลขใบแจ้งหนี้ผู้จัดจำหน่าย" @@ -53655,7 +53648,7 @@ msgstr "การเปรียบเทียบใบเสนอราคา msgid "Supplier Quotation Item" msgstr "รายการใบเสนอราคาผู้จัดจำหน่าย" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "สร้างใบเสนอราคาผู้จัดจำหน่าย {0} แล้ว" @@ -53840,10 +53833,6 @@ msgstr "ทีมสนับสนุน" msgid "Support Tickets" msgstr "ตั๋วการสนับสนุน" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "จำนวนเงินส่วนลดที่สงสัย" @@ -53930,7 +53919,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "สรุปการคำนวณ TDS" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "หัก ณ ที่จ่าย TDS" @@ -53991,8 +53980,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "สินทรัพย์เป้าหมาย {0} ไม่เป็นของบริษัท {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "สินทรัพย์เป้าหมาย {0} จำเป็นต้องเป็นสินทรัพย์แบบผสม" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54101,11 +54090,11 @@ msgstr "ลิงก์ที่อยู่ของ Target Warehouse" msgid "Target Warehouse Reservation Error" msgstr "ข้อผิดพลาดในการจอง Target Warehouse" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "คลังสินค้าสำหรับสินค้าสำเร็จรูปต้องเป็นคลังสินค้าเดียวกันกับคลังสินค้าสำเร็จรูป {1} ในใบสั่งงาน {2} ที่เชื่อมโยงกับใบสั่งซื้อภายนอกแบบรับจ้างผลิต" +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "คลังสินค้าสำหรับสินค้าสำเร็จรูปต้องเป็นคลังสินค้าเดียวกันกับคลังสินค้าสำเร็จรูป {0} ในใบสั่งงาน {1} ที่เชื่อมโยงกับใบสั่งซื้อภายนอกแบบรับจ้างผลิต" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "จำเป็นต้องมี Target Warehouse ก่อนส่ง" @@ -54581,7 +54570,7 @@ msgstr "หักภาษี ณ ที่จ่าย เฉพาะส่ว #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "จำนวนเงินที่ต้องเสียภาษี" @@ -54793,7 +54782,7 @@ msgstr "โทรทัศน์" msgid "Template Item" msgstr "เทมเพลต รายการ" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "เลือกเทมเพลตแล้ว" @@ -55100,23 +55089,27 @@ msgstr "เทสลา" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "ข้อความที่แสดงในงบการเงิน (เช่น 'รายได้รวม', 'เงินสดและรายการเทียบเท่าเงินสด')" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "ช่อง 'หมายเลขชุดที่' ต้องไม่ว่างเปล่าหรือมีค่าต่ำกว่า 1" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "การเข้าถึงเพื่อขอใบเสนอราคาจากพอร์ทัลถูกปิดใช้งาน หากต้องการให้เข้าถึงได้ กรุณาเปิดใช้งานในตั้งค่าพอร์ทัล" +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "BOM ที่จะถูกแทนที่" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "ชุดการผลิต {0} มีปริมาณชุดการผลิตติดลบ {1}เพื่อแก้ไขปัญหานี้ ให้ไปที่ชุดการผลิตและคลิกที่ คำนวณปริมาณชุดการผลิตใหม่ หากปัญหายังคงอยู่ ให้สร้างรายการขาเข้า" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "แคมเปญ '{0}' มีอยู่แล้วสำหรับ {1} '{2}'" @@ -55141,6 +55134,10 @@ msgstr "รายการ GL และยอดคงเหลือปิด msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "รายการ GL จะถูกยกเลิกในเบื้องหลัง อาจใช้เวลาสักครู่" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "โปรแกรมสะสมคะแนนไม่สามารถใช้ได้กับบริษัทที่เลือก" @@ -55158,9 +55155,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "รายการเลือกที่มีรายการจองสินค้าคงคลังไม่สามารถอัปเดตได้ หากคุณต้องการทำการเปลี่ยนแปลง เราขอแนะนำให้ยกเลิกการจองสินค้าคงคลังที่มีอยู่ก่อนทำการอัปเดตรายการเลือก" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "ปริมาณการสูญเสียกระบวนการได้ถูกตั้งค่าใหม่ตามปริมาณการสูญเสียกระบวนการในบัตรงาน" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55170,11 +55170,15 @@ msgstr "พนักงานขายเชื่อมโยงกับ {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "หมายเลขซีเรียลที่แถว #{0}: {1} ไม่มีในคลังสินค้า {2}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "หมายเลขซีเรียล {0} ถูกสงวนไว้สำหรับ {1} {2} และไม่สามารถใช้กับธุรกรรมอื่นใดได้" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "บันเดิลหมายเลขประจำเครื่องและชุดการผลิต {0} ไม่สามารถใช้ได้กับรายการนี้. 'ประเภทของรายการ' ควรเป็น 'ส่งออก' แทนที่จะเป็น 'นำเข้า' ในบันเดิลหมายเลขประจำเครื่องและชุดการผลิต {0}" @@ -55222,15 +55226,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "ปริมาณที่ดำเนินการเสร็จสิ้น {0} ของการดำเนินการ {1} ไม่สามารถมากกว่าปริมาณที่ดำเนินการเสร็จสิ้น {2} ของการดำเนินการก่อนหน้า {3}" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "สกุลเงินของใบแจ้งหนี้ {} ({}) แตกต่างจากสกุลเงินของการแจ้งเตือนนี้ ({})" +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "รายการเปิด POS ปัจจุบันล้าสมัยแล้ว กรุณาปิดรายการนี้และสร้างรายการใหม่" @@ -55279,6 +55283,10 @@ msgstr "ฟิลด์ถึงผู้ถือหุ้นต้องไม msgid "The field {0} in row {1} is not set" msgstr "ฟิลด์ {0} ในแถว {1} ไม่ได้ตั้งค่า" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "ฟิลด์จากผู้ถือหุ้นและถึงผู้ถือหุ้นต้องไม่ว่างเปล่า" @@ -55300,9 +55308,9 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "หมายเลขโฟลิโอไม่ตรงกัน" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "รายการต่อไปนี้ที่มีข้อกำหนดการจัดเก็บไม่สามารถรองรับได้:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55329,8 +55337,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "พนักงานต่อไปนี้ยังคงรายงานต่อ {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "กฎการกำหนดราคาที่ไม่ถูกต้องต่อไปนี้ถูกลบ:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55341,7 +55349,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "แถวต่อไปนี้ซ้ำกัน:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "{0} ต่อไปนี้ถูกสร้างขึ้น: {1}" @@ -55377,8 +55385,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "รายการ {items} ไม่ได้ถูกทำเครื่องหมายเป็นรายการ {type_of} คุณสามารถเปิดใช้งานเป็นรายการ {type_of} ได้จากมาสเตอร์รายการของพวกเขา" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "การ์ดงาน {0} อยู่ในสถานะ {1} และคุณไม่สามารถทำให้เสร็จได้" +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55415,12 +55423,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "การดำเนินการ {0} ไม่สามารถเพิ่มหลายครั้งได้" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "การดำเนินการ {0} ไม่สามารถเป็นการดำเนินการย่อยได้" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55468,6 +55476,10 @@ msgstr "เปอร์เซ็นต์ที่คุณได้รับอ msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "เปอร์เซ็นต์ที่คุณได้รับอนุญาตให้โอนเกินจำนวนที่สั่งซื้อ ตัวอย่างเช่น หากคุณสั่งซื้อ 100 หน่วย และสิทธิ์การโอนของคุณคือ 10% คุณจะได้รับอนุญาตให้โอน 110 หน่วย" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55477,7 +55489,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "สต็อกที่จองไว้จะถูกปล่อยเมื่อคุณอัปเดตรายการ คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?" @@ -55494,8 +55506,8 @@ msgid "The selected BOMs are not for the same item" msgstr "BOM ที่เลือกไม่ใช่สำหรับรายการเดียวกัน" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "บัญชีเปลี่ยนแปลงที่เลือก {} ไม่ได้เป็นของบริษัท {}" +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55511,8 +55523,8 @@ msgstr "ผู้ขายและผู้ซื้อไม่สามาร #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "ชุดซีเรียลและแบทช์ {0} ไม่ได้เชื่อมโยงกับ {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55530,11 +55542,11 @@ msgstr "หุ้นมีอยู่แล้ว" msgid "The shares don't exist with the {0}" msgstr "หุ้นไม่มีอยู่กับ {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "สต็อกสำหรับรายการ {0} ในคลังสินค้า {1} เป็นลบเมื่อวันที่ {2} คุณควรสร้างรายการบวก {3} ก่อนวันที่ {4} และเวลา {5} เพื่อโพสต์อัตราการประเมินมูลค่าที่ถูกต้อง สำหรับรายละเอียดเพิ่มเติม โปรดอ่าน เอกสาร." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "สต็อกสำหรับรายการ {0} ในคลังสินค้า {1} เป็นลบเมื่อวันที่ {2} คุณควรสร้างรายการบวก {3} ก่อนวันที่ {4} และเวลา {5} เพื่อโพสต์อัตราการประเมินมูลค่าที่ถูกต้อง สำหรับรายละเอียดเพิ่มเติม โปรดอ่าน เอกสาร." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "สต็อกถูกจองไว้สำหรับรายการและคลังสินค้าต่อไปนี้ ยกเลิกการจองเพื่อ {0} การกระทบยอดสต็อก:

                    {1}" @@ -55556,17 +55568,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "ระบบจะสร้างใบแจ้งหนี้การขายหรือใบแจ้งหนี้ POS จากอินเทอร์เฟซ POS ตามการตั้งค่านี้ สำหรับการทำธุรกรรมที่มีปริมาณมาก แนะนำให้ใช้ใบแจ้งหนี้ POS" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "งานถูกจัดคิวเป็นงานพื้นหลัง หากมีปัญหาในการประมวลผลในพื้นหลัง ระบบจะเพิ่มความคิดเห็นเกี่ยวกับข้อผิดพลาดในกระทบยอดสต็อกนี้และเปลี่ยนกลับไปยังสถานะร่าง" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "งานถูกจัดคิวเป็นงานพื้นหลัง หากมีปัญหาในการประมวลผลในพื้นหลัง ระบบจะเพิ่มความคิดเห็นเกี่ยวกับข้อผิดพลาดในกระทบยอดสต็อกนี้และเปลี่ยนกลับไปยังสถานะที่ส่งแล้ว" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "ปริมาณการออก / โอนทั้งหมด {0} ในคำขอวัสดุ {1} ไม่สามารถมากกว่าปริมาณที่ร้องขอที่อนุญาต {2} สำหรับรายการ {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55604,7 +55616,7 @@ msgstr "ผู้ใช้ที่มีบทบาทนี้ได้รั msgid "The value of {0} differs between Items {1} and {2}" msgstr "ค่าของ {0} แตกต่างกันระหว่างรายการ {1} และ {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "ค่า {0} ถูกกำหนดให้กับรายการที่มีอยู่แล้ว {1}" @@ -55628,7 +55640,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) ต้องเท่ากับ {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0} มีรายการราคาต่อหน่วย" @@ -55636,7 +55648,7 @@ msgstr "{0} มีรายการราคาต่อหน่วย" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "{1}คำนำหน้า ' {0} ' (' ') มีอยู่แล้ว กรุณาเปลี่ยนหมายเลขซีเรียลซีรีส์ มิฉะนั้นคุณจะได้รับข้อผิดพลาดการบันทึกซ้ำ" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "สร้าง {0} {1} สำเร็จแล้ว" @@ -55644,6 +55656,10 @@ msgstr "สร้าง {0} {1} สำเร็จแล้ว" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0} {1} ไม่ตรงกับ {0} {2} ใน {3} {4}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} ถูกใช้ในการคำนวณต้นทุนการประเมินมูลค่าสำหรับสินค้าสำเร็จรูป {2}" @@ -55652,7 +55668,7 @@ msgstr "{0} {1} ถูกใช้ในการคำนวณต้นทุ msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "จากนั้นกฎการกำหนดราคาจะถูกกรองออกตามลูกค้า, กลุ่มลูกค้า, พื้นที่, ผู้จัดจำหน่าย, ประเภทผู้จัดจำหน่าย, แคมเปญ, หุ้นส่วนการขาย ฯลฯ" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "มีการบำรุงรักษาหรือซ่อมแซมที่กำลังดำเนินการกับสินทรัพย์นี้อยู่ คุณต้องดำเนินการให้เสร็จสิ้นทั้งหมดก่อนที่จะยกเลิกสินทรัพย์นี้" @@ -55664,7 +55680,7 @@ msgstr "มีความไม่สอดคล้องกันระหว msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "มีรายการบัญชีในสมุดบัญชีสำหรับบัญชีนี้ การเปลี่ยน {0} เป็น non-{1} ในระบบจริงจะทำให้รายงาน 'บัญชี {2}' แสดงผลลัพธ์ไม่ถูกต้อง" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "ไม่มีรายการธุรกรรมที่ล้มเหลว" @@ -55681,6 +55697,10 @@ msgstr "ไม่มีปีงบประมาณที่ใช้งาน msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "ไม่มีช่องว่างให้บริการในวันที่นี้" @@ -55697,10 +55717,6 @@ msgstr "มีสองทางเลือกในการรักษาก msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "ไม่มีตัวเลือกสินค้าสำหรับสินค้าที่เลือก" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "อาจมีปัจจัยการเก็บเงินหลายระดับตามจำนวนเงินที่ใช้จ่ายทั้งหมด แต่ปัจจัยการแปลงสำหรับการแลกคะแนนจะเหมือนกันสำหรับทุกระดับ" @@ -55729,21 +55745,21 @@ msgstr "ไม่พบชุดข้อมูลที่ตรงกับ {0 msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "ต้องมีสินค้าสำเร็จรูปอย่างน้อย 1 รายการในรายการสต็อกนี้" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "เกิดข้อผิดพลาดในการสร้างบัญชีธนาคารขณะเชื่อมโยงกับ Plaid" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "เกิดข้อผิดพลาดในการซิงค์ธุรกรรม" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "เกิดข้อผิดพลาดในการอัปเดตบัญชีธนาคาร {} ขณะเชื่อมโยงกับ Plaid" +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55793,15 +55809,19 @@ msgstr "สรุปเดือนนี้" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "ใบสั่งซื้อใบนี้ได้ถูกมอบหมายให้ผู้รับเหมาช่วงดำเนินการทั้งหมดแล้ว" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "ใบสั่งขายนี้ได้รับการว่าจ้างช่วงเต็มจำนวนแล้ว" @@ -55823,7 +55843,7 @@ msgstr "การกระทำนี้จะยกเลิกการเช msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "หมวดหมู่สินทรัพย์นี้ถูกทำเครื่องหมายว่าไม่สามารถคิดค่าเสื่อมราคาได้ โปรดปิดใช้งานการคำนวณค่าเสื่อมราคาหรือเลือกหมวดหมู่อื่น" @@ -55841,7 +55861,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "ครอบคลุมการ์ดคะแนนทั้งหมดที่เชื่อมโยงกับการตั้งค่านี้" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "เอกสารนี้เกินขีดจำกัด {0} {1} สำหรับรายการ {4} คุณกำลังทำ {3} อื่นกับ {2} เดียวกันหรือไม่?" @@ -55983,7 +56003,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "ตัวกรองรายการนี้ถูกใช้แล้วสำหรับ {0}" @@ -56047,7 +56067,7 @@ msgstr "กำหนดการนี้ถูกสร้างขึ้นเ msgid "This schedule was created when Asset {0} was scrapped." msgstr "กำหนดการนี้ถูกสร้างขึ้นเมื่อสินทรัพย์ {0} ถูกทิ้ง" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "กำหนดการนี้ถูกสร้างขึ้นเมื่อสินทรัพย์ {0} ถูก {1} เป็นสินทรัพย์ใหม่ {2}" @@ -56074,10 +56094,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "ส่วนนี้อนุญาตให้ผู้ใช้ตั้งค่าข้อความเนื้อหาและข้อความปิดท้ายของจดหมายแจ้งเตือนสำหรับประเภทการแจ้งเตือนตามภาษา ซึ่งสามารถใช้ในการพิมพ์ได้" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56135,8 +56155,8 @@ msgid "This will restrict user access to other employee records" msgstr "สิ่งนี้จะจำกัดการเข้าถึงของผู้ใช้ไปยังระเบียนพนักงานอื่น" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "{} นี้จะถือว่าเป็นการโอนวัสดุ" +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56264,6 +56284,12 @@ msgstr "เวลา (เป็นนาที)" msgid "Timeline" msgstr "ไทม์ไลน์" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56550,8 +56576,8 @@ msgid "To Time" msgstr "ถึงเวลา" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "เวลาสิ้นสุดต้องไม่ก่อนวันที่เริ่มต้น" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56581,15 +56607,15 @@ msgstr "เพื่อเพิ่มการดำเนินการ ใ msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "เพื่อเพิ่มวัตถุดิบของรายการที่จ้างช่วง หากไม่ได้เปิดใช้งานการรวมรายการที่ขยายแล้ว" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "หากต้องการอนุญาตให้มีการเรียกเก็บเงินเกิน ให้อัปเดต \"วงเงินการเรียกเก็บเงินเกิน\" ในตั้งค่าบัญชีหรือสินค้า" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "หากต้องการอนุญาตให้มีการรับ/ส่งเกิน ให้อัปเดต \"การอนุญาตให้รับ/ส่งเกิน\" ใน การตั้งค่าสต็อก หรือในรายการสินค้า" @@ -56606,8 +56632,8 @@ msgid "To be Delivered to Customer" msgstr "เพื่อส่งมอบให้ลูกค้า" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "เพื่อยกเลิก {} คุณต้องยกเลิกการปิด POS {}" +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56618,8 +56644,8 @@ msgid "To create a Payment Request reference document is required" msgstr "เพื่อสร้างคำขอชำระเงิน จำเป็นต้องมีเอกสารอ้างอิง" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "เพื่อเปิดใช้งานการบัญชีงานระหว่างทำ" +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56631,8 +56657,8 @@ msgstr "เพื่อรวมรายการที่ไม่ใช่ส msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "เพื่อรวมภาษีในแถว {0} ในอัตรารายการ ต้องรวมภาษีในแถว {1} ด้วย" @@ -56652,7 +56678,7 @@ msgstr "เพื่อยกเลิกกฎนี้ ให้เปิด msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "เพื่อดำเนินการแก้ไขค่าคุณลักษณะนี้ต่อ ให้เปิดใช้งาน {0} ในการตั้งค่าตัวแปรรายการ" @@ -56669,10 +56695,12 @@ msgstr "เพื่อส่งใบแจ้งหนี้โดยไม่ msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "เพื่อใช้สมุดการเงินที่แตกต่าง โปรดยกเลิกการเลือก 'รวมสินทรัพย์ FB เริ่มต้น'" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "เพื่อใช้สมุดการเงินที่แตกต่าง โปรดยกเลิกการเลือก 'รวมรายการ FB เริ่มต้น'" @@ -56751,8 +56779,8 @@ msgstr "ทอร์" msgid "Total (Company Currency)" msgstr "รวม (สกุลเงินบริษัท)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "รวม (เครดิต)" @@ -56794,6 +56822,22 @@ msgstr "รวมค่าใช้จ่ายเพิ่มเติม" msgid "Total Advance" msgstr "รวมเงินล่วงหน้า" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56841,11 +56885,11 @@ msgstr "จำนวนเงินที่ต้องชำระทั้ง msgid "Total Amount in Words" msgstr "จำนวนเงินรวมเป็นคำ" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "ค่าธรรมเนียมที่ใช้ได้ทั้งหมดในตารางรายการใบรับซื้อสินค้าต้องเท่ากับภาษีและค่าธรรมเนียมรวม" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "รวมสินทรัพย์" @@ -57027,7 +57071,7 @@ msgstr "รวมจำนวนที่ส่งมอบ" msgid "Total Demand (Past Data)" msgstr "รวมความต้องการ (ข้อมูลที่ผ่านมา)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "รวมทุน" @@ -57036,11 +57080,11 @@ msgstr "รวมทุน" msgid "Total Estimated Distance" msgstr "รวมระยะทางที่ประมาณการ" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "รวมค่าใช้จ่าย" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "รวมค่าใช้จ่ายปีนี้" @@ -57078,11 +57122,11 @@ msgstr "รวมเวลาที่ถือ" msgid "Total Holidays" msgstr "รวมวันหยุด" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "รวมรายได้" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "รวมรายได้ปีนี้" @@ -57125,7 +57169,7 @@ msgstr "ต้นทุนรวมที่จ่ายจริง (สกุ msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "รวมหนี้สิน" @@ -57440,7 +57484,7 @@ msgstr "รวมภาษีและค่าธรรมเนียม" msgid "Total Taxes and Charges (Company Currency)" msgstr "รวมภาษีและค่าธรรมเนียม (สกุลเงินบริษัท)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "รวมเวลา (เป็นนาที)" @@ -57449,7 +57493,11 @@ msgstr "รวมเวลา (เป็นนาที)" msgid "Total Time in Mins" msgstr "รวมเวลาในนาที" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "รวมค้างชำระ: {0}" @@ -57528,7 +57576,7 @@ msgstr "เวลาทั้งหมดที่ใช้กับเวิร msgid "Total allocated percentage for sales team should be 100" msgstr "เปอร์เซ็นต์ที่จัดสรรสำหรับทีมขายควรเป็น 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "เปอร์เซ็นต์การสนับสนุนรวมควรเท่ากับ 100" @@ -57546,8 +57594,8 @@ msgstr "รวมชั่วโมง: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "จำนวนเงินชำระรวมต้องไม่เกิน {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57564,9 +57612,9 @@ msgstr "ปริมาณรวมในตารางการจัดส่ msgid "Total {0} ({1})" msgstr "รวม {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "รวม {0} สำหรับทุกรายการเป็นศูนย์ อาจเป็นไปได้ว่าคุณควรเปลี่ยน 'กระจายค่าธรรมเนียมตาม'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57654,27 +57702,11 @@ msgstr "ข้อมูลสถานะการติดตาม" msgid "Tracking URL" msgstr "URL การติดตาม" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "ธุรกรรม" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "สกุลเงินของธุรกรรม" @@ -57727,11 +57759,11 @@ msgstr "รายการบันทึกการลบธุรกรรม msgid "Transaction Deletion Record To Delete" msgstr "บันทึกการลบรายการธุรกรรม เพื่อลบ" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "{1}บันทึกการลบธุรกรรม {0} กำลังทำงานอยู่แล้ว" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "บันทึกการลบรายการธุรกรรม {0} กำลังลบ {1}ไม่สามารถบันทึกเอกสารได้จนกว่าการลบจะเสร็จสมบูรณ์" @@ -58121,6 +58153,10 @@ msgstr "งบทดลอง (แบบง่าย)" msgid "Trial Balance for Party" msgstr "งบทดลองสำหรับฝ่าย" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58305,7 +58341,7 @@ msgstr "การตั้งค่าภาษีมูลค่าเพิ่ #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58327,7 +58363,7 @@ msgstr "การตั้งค่าภาษีมูลค่าเพิ่ #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58357,7 +58393,7 @@ msgstr "การตั้งค่าภาษีมูลค่าเพิ่ #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58421,7 +58457,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "ปัจจัยการแปลงหน่วย" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "ไม่พบตัวคูณการแปลงหน่วย ({0} -> {1}) สำหรับรายการ: {2}" @@ -58495,7 +58531,7 @@ msgstr "ยกเลิกการกระทบยอด" msgid "UnReconcile Allocations" msgstr "ยกเลิกการกระทบยอดการจัดสรร" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "ไม่สามารถดึงรายละเอียด DocType ได้ กรุณาติดต่อผู้ดูแลระบบ" @@ -58508,10 +58544,6 @@ msgstr "ไม่สามารถหาอัตราแลกเปลี่ msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "ไม่สามารถหาอัตราแลกเปลี่ยนจาก {0} เป็น {1} สำหรับวันที่สำคัญ {2} ได้ โปรดสร้างบันทึกการแลกเปลี่ยนสกุลเงินด้วยตนเอง." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "ไม่สามารถหาคะแนนเริ่มต้นที่ {0} ได้ คุณต้องมีคะแนนที่ครอบคลุมตั้งแต่ 0 ถึง 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "ไม่สามารถหาช่วงเวลาภายใน {0} วันถัดไปสำหรับการดำเนินการ {1} ได้ โปรดเพิ่ม 'การวางแผนความจุสำหรับ (วัน)' ใน {2}" @@ -58536,7 +58568,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "จำนวนเงินที่ไม่ได้จัดสรร" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "ปริมาณที่ไม่ได้กำหนด" @@ -58548,8 +58580,10 @@ msgstr "คำสั่งซื้อที่ยังไม่เรียก msgid "Unblock Invoice" msgstr "ปลดบล็อกใบแจ้งหนี้" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58599,7 +58633,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "รูปแบบการตั้งชื่อที่ไม่คาดคิด" @@ -58622,7 +58656,7 @@ msgstr "" msgid "Unit Price" msgstr "ราคาต่อหน่วย" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "หน่วยวัด" @@ -58825,7 +58859,7 @@ msgstr "ยังไม่ได้กำหนดเวลา" msgid "Unsecured Loans" msgstr "สินเชื่อแบบไม่มีหลักประกัน" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "ยกเลิกการตั้งค่าคำขอชำระเงินที่ตรงกัน" @@ -58838,7 +58872,7 @@ msgstr "ไม่ได้ลงนาม" msgid "Unsubscribe from this Email Digest" msgstr "ยกเลิกการสมัครสมาชิกจากอีเมลสรุปนี้" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58982,7 +59016,7 @@ msgstr "อัปเดตสต็อกปัจจุบัน" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59046,7 +59080,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "อัปเดตราคาล่าสุดใน BOM ทั้งหมด" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "ต้องเปิดใช้งานการอัปเดตสต็อกสำหรับใบแจ้งหนี้ซื้อ {0}" @@ -59274,7 +59308,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "ใช้อัตราแลกเปลี่ยนตามวันที่ธุรกรรม" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "ใช้ชื่อที่แตกต่างจากชื่อโครงการก่อนหน้า" @@ -59363,6 +59397,10 @@ msgstr "เวลาการแก้ไขของผู้ใช้" msgid "User has not applied rule on the invoice {0}" msgstr "ผู้ใช้ไม่ได้ใช้กฎในใบแจ้งหนี้ {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "ผู้ใช้ {0} ไม่มีอยู่" @@ -59375,6 +59413,10 @@ msgstr "ผู้ใช้ {0} ไม่มีโปรไฟล์ POS เร msgid "User {0} is already assigned to Employee {1}" msgstr "ผู้ใช้ {0} ได้รับมอบหมายให้กับพนักงาน {1} แล้ว" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "ผู้ใช้ {0}: ลบบทบาทบริการตนเองของพนักงานเนื่องจากไม่มีพนักงานที่จับคู่" @@ -59383,10 +59425,6 @@ msgstr "ผู้ใช้ {0}: ลบบทบาทบริการตนเ msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "ผู้ใช้ {0}: ลบบทบาทพนักงานเนื่องจากไม่มีพนักงานที่จับคู่" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "ผู้ใช้ {} ถูกปิดใช้งาน โปรดเลือกผู้ใช้/แคชเชียร์ที่ถูกต้อง" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59679,15 +59717,15 @@ msgstr "อัตราการประเมินมูลค่า" msgid "Valuation Rate (In / Out)" msgstr "อัตราการประเมินมูลค่า (เข้า / ออก)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "ไม่มีอัตราการประเมินมูลค่า" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "อัตราการประเมินมูลค่าสำหรับรายการ {0} จำเป็นสำหรับการทำรายการบัญชีสำหรับ {1} {2}" @@ -59695,7 +59733,7 @@ msgstr "อัตราการประเมินมูลค่าสำห msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "อัตราการประเมินมูลค่าเป็นสิ่งจำเป็นหากป้อนสต็อกเริ่มต้น" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "ต้องการอัตราการประเมินมูลค่าสำหรับรายการ {0} ที่แถว {1}" @@ -59705,7 +59743,7 @@ msgstr "ต้องการอัตราการประเมินมู msgid "Valuation and Total" msgstr "การประเมินมูลค่าและรวม" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "อัตราการประเมินมูลค่าสำหรับรายการที่ลูกค้าให้ถูกตั้งค่าเป็นศูนย์" @@ -59718,14 +59756,14 @@ msgstr "อัตราการประเมินมูลค่าสำห msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "อัตราการประเมินมูลค่าสำหรับรายการตามใบแจ้งหนี้ขาย (เฉพาะสำหรับการโอนภายใน)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "ค่าธรรมเนียมประเภทการประเมินมูลค่าไม่สามารถทำเครื่องหมายว่าเป็นแบบรวมได้" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "ค่าธรรมเนียมประเภทการประเมินมูลค่าไม่สามารถทำเครื่องหมายว่าเป็นแบบรวมได้" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59775,12 +59813,12 @@ msgstr "ข้อเสนอค่า" msgid "Value Type" msgstr "ประเภทข้อมูล" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "ค่า ณ วันที่" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "ค่าของคุณลักษณะ {0} ต้องอยู่ในช่วง {1} ถึง {2} โดยเพิ่มขึ้นทีละ {3} สำหรับรายการ {4}" @@ -59789,19 +59827,19 @@ msgstr "ค่าของคุณลักษณะ {0} ต้องอยู msgid "Value of Goods" msgstr "มูลค่าสินค้า" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "มูลค่าของสินทรัพย์ที่เพิ่มทุนใหม่" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "มูลค่าของการซื้อใหม่" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "มูลค่าของสินทรัพย์ที่ถูกทิ้ง" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "มูลค่าของสินทรัพย์ที่ขายแล้ว" @@ -60277,7 +60315,7 @@ msgstr "ชื่อใบสำคัญ" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60305,7 +60343,7 @@ msgstr "ชื่อใบสำคัญ" msgid "Voucher No" msgstr "หมายเลขใบสำคัญ" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "หมายเลขใบสำคัญเป็นสิ่งจำเป็น" @@ -60317,7 +60355,7 @@ msgstr "ปริมาณใบสำคัญ" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "ประเภทใบสำคัญย่อย" @@ -60349,7 +60387,7 @@ msgstr "ประเภทใบสำคัญย่อย" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60556,7 +60594,7 @@ msgstr "คลังสินค้าเป็นสิ่งจำเป็น msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "ไม่พบคลังสินค้าสำหรับบัญชี {0}" @@ -60574,16 +60612,16 @@ msgstr "อายุและมูลค่ายอดคงเหลือร msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "ไม่สามารถลบคลังสินค้า {0} ได้เนื่องจากมีปริมาณสำหรับรายการ {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "คลังสินค้า {0} ไม่ได้เป็นของบริษัท {1}" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "คลังสินค้า {0} ไม่ได้เป็นของบริษัท {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "คลังสินค้า {0} ไม่มีอยู่" @@ -60704,7 +60742,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "คำเตือน - แถว {0}: ชั่วโมงการเรียกเก็บเงินมากกว่าชั่วโมงจริง" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "คำเตือนเกี่ยวกับสต็อกติดลบ" @@ -60724,7 +60762,7 @@ msgstr "คำเตือน: มี {0} # {1} อื่นที่มีอ msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "คำเตือน: ปริมาณที่ขอวัสดุน้อยกว่าปริมาณการสั่งซื้อขั้นต่ำ" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "คำเตือน: ปริมาณเกินปริมาณสูงสุดที่สามารถผลิตได้ ตามปริมาณวัตถุดิบที่ได้รับผ่านคำสั่งซื้อจากผู้รับเหมาช่วงขาเข้า {0}." @@ -60878,10 +60916,6 @@ msgstr "กลุ่มรายการเว็บไซต์" msgid "Website Specifications" msgstr "ข้อกำหนดเว็บไซต์" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61027,7 +61061,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "เมื่อมีสินค้าสำเร็จรูปหลายรายการ ({0}) ในรายการสต็อกการบรรจุใหม่ (Repack) อัตราพื้นฐานสำหรับสินค้าสำเร็จรูปทั้งหมดจะต้องถูกกำหนดด้วยตนเอง เพื่อกำหนดอัตราด้วยตนเอง ให้เปิดใช้งานช่องทำเครื่องหมาย 'กำหนดอัตราพื้นฐานด้วยตนเอง' ในแถวของสินค้าสำเร็จรูปที่เกี่ยวข้อง" @@ -61203,17 +61237,17 @@ msgstr "งานที่กำลังดำเนินการ" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61252,7 +61286,7 @@ msgstr "วัสดุที่ใช้ในคำสั่งงาน" msgid "Work Order Item" msgstr "รายการคำสั่งงาน" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61293,20 +61327,20 @@ msgstr "สรุปคำสั่งงาน" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "ไม่สามารถสร้างคำสั่งงานได้เนื่องจากเหตุผลต่อไปนี้:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "ไม่สามารถสร้างคำสั่งงานสำหรับแม่แบบรายการได้" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "คำสั่งงานได้ถูก {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61327,7 +61361,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "คำสั่งงาน" @@ -61352,7 +61386,7 @@ msgstr "งานที่กำลังดำเนินการ" msgid "Work-in-Progress Warehouse" msgstr "คลังสินค้างานที่กำลังดำเนินการ" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "ต้องการคลังสินค้างานที่กำลังดำเนินการก่อนการส่ง" @@ -61405,7 +61439,7 @@ msgstr "ชั่วโมงทำงาน" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61637,14 +61671,6 @@ msgstr "ชื่อปี" msgid "Year Start Date" msgstr "วันที่เริ่มปี" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61659,8 +61685,8 @@ msgid "You are importing data for the code list:" msgstr "คุณกำลังนำเข้าข้อมูลสำหรับรายการรหัส:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "คุณไม่ได้รับอนุญาตให้อัปเดตตามเงื่อนไขที่ตั้งไว้ในเวิร์กโฟลว์ {}" +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61679,8 +61705,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "คุณกำลังเลือกปริมาณมากกว่าที่ต้องการสำหรับรายการ {0} ตรวจสอบว่ามีรายการเลือกอื่นที่สร้างขึ้นสำหรับคำสั่งขาย {1} หรือไม่" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "คุณสามารถเพิ่มใบแจ้งหนี้ต้นฉบับ {} ด้วยตนเองเพื่อดำเนินการต่อ" +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61690,19 +61716,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "คุณยังสามารถคัดลอก-วางลิงก์นี้ในเบราว์เซอร์ของคุณ" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "คุณยังสามารถตั้งค่าบัญชี CWIP เริ่มต้นในบริษัท {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "คุณสามารถเปลี่ยนบัญชีหลักเป็นบัญชีงบดุลหรือเลือกบัญชีอื่น" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61724,8 +61746,8 @@ msgid "You can only select one mode of payment as default" msgstr "คุณสามารถเลือกวิธีการชำระเงินได้เพียงวิธีเดียวเป็นค่าเริ่มต้น" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "คุณสามารถแลกได้สูงสุด {0}" +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61743,14 +61765,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "คุณสามารถใช้ {0} เพื่อตรวจสอบความถูกต้องกับ {1} ในภายหลังได้" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "คุณไม่สามารถเปลี่ยนแปลงใด ๆ กับการ์ดงานได้เนื่องจากคำสั่งงานถูกปิด" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "คุณไม่สามารถประมวลผลหมายเลขซีเรียล {0} ได้เนื่องจากถูกใช้ใน SABB {1} แล้ว {2} หากคุณต้องการรับหมายเลขซีเรียลเดียวกันหลายครั้ง ให้เปิดใช้งาน 'อนุญาตให้หมายเลขซีเรียลที่มีอยู่ถูกผลิต/รับอีกครั้ง' ใน {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "คุณไม่สามารถแลกคะแนนสะสมที่มีมูลค่ามากกว่ายอดรวมได้" @@ -61759,17 +61773,17 @@ msgstr "คุณไม่สามารถแลกคะแนนสะสม msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "คุณไม่สามารถเปลี่ยนอัตราได้หากมีการกล่าวถึง BOM สำหรับรายการใด ๆ" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "คุณไม่สามารถสร้าง {0} ภายในช่วงเวลาบัญชีที่ปิด {1}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "คุณไม่สามารถสร้างหรือยกเลิกรายการบัญชีใด ๆ ภายในช่วงเวลาบัญชีที่ปิด {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "คุณไม่สามารถสร้าง/แก้ไขรายการบัญชีใด ๆ จนถึงวันนี้" +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61780,32 +61794,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "คุณไม่สามารถลบประเภทโครงการ 'ภายนอก' ได้" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "คุณไม่สามารถแก้ไขโหนดรากได้" +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "คุณไม่สามารถเปิดใช้งานการตั้งค่าทั้งสอง '{0}' และ '{1}' ได้พร้อมกัน" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "คุณไม่สามารถติดตามสินค้าภายนอกได้จาก {0} เนื่องจากสินค้าถูกจัดส่งแล้ว อยู่ในสถานะไม่ใช้งาน หรืออยู่ในคลังสินค้าที่ต่างกัน" +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "คุณไม่สามารถแลกได้มากกว่า {0}" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "คุณไม่สามารถโพสต์การประเมินมูลค่ารายการก่อน {} ได้" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "คุณไม่สามารถเริ่มการสมัครสมาชิกใหม่ที่ยังไม่ได้ยกเลิกได้" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "คุณไม่สามารถส่งคำสั่งซื้อที่ว่างเปล่าได้" +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61819,6 +61841,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "คุณไม่สามารถ {0} เอกสารนี้ได้เนื่องจากมีรายการปิดงวด {1} อื่นที่มีอยู่หลังจาก {2}" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61829,8 +61855,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "คุณไม่มีสิทธิ์ {} รายการใน {}" +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61856,11 +61882,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "คุณมีข้อผิดพลาด {} ขณะสร้างใบแจ้งหนี้เปิด ตรวจสอบ {} สำหรับรายละเอียดเพิ่มเติม" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "คุณได้เลือกรายการจาก {0} {1} แล้ว" @@ -61877,8 +61903,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "คุณได้เปิดใช้งาน {0} และ {1} ใน {2}แล้ว ซึ่งอาจทำให้ราคาจากรายการราคาเริ่มต้นถูกแทรกเข้าไปในรายการราคาของธุรกรรมได้" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "คุณได้ป้อนใบส่งของซ้ำในแถว" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61892,19 +61918,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "คุณต้องเปิดใช้งานการสั่งซื้ออัตโนมัติในการตั้งค่าสต็อกเพื่อรักษาระดับการสั่งซื้อใหม่" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึก คุณต้องการบันทึกใบแจ้งหนี้หรือไม่?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "คุณต้องเลือกลูกค้าก่อนเพิ่มรายการ" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "คุณต้องยกเลิกการปิด POS Entry {} เพื่อที่จะยกเลิกเอกสารนี้" +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "คุณเลือกกลุ่มบัญชี {1} เป็นบัญชี {2} ในแถว {0} โปรดเลือกบัญชีเดียว" @@ -61956,6 +61982,10 @@ msgstr "รหัสไปรษณีย์" msgid "Zero Balance" msgstr "ยอดคงเหลือศูนย์" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "อัตราศูนย์" @@ -61986,7 +62016,7 @@ msgstr "[สำคัญ] [ERPNext] ข้อผิดพลาดการส msgid "`Allow Negative rates for Items`" msgstr "`อนุญาตอัตราเชิงลบสำหรับรายการ`" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "หลังจาก" @@ -62006,7 +62036,7 @@ msgstr "เป็นชื่อเรื่อง" msgid "as a percentage of finished item quantity" msgstr "เป็นเปอร์เซ็นต์ของปริมาณรายการที่เสร็จสมบูรณ์" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -62022,10 +62052,6 @@ msgstr "อิงตาม" msgid "by {}" msgstr "โดย {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "ต้องไม่เกิน 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62080,8 +62106,8 @@ msgstr "อัตราแลกเปลี่ยน.โฮสต์" msgid "fieldname" msgstr "ชื่อฟิลด์" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62161,14 +62187,10 @@ msgstr "จาก 5" msgid "paid to" msgstr "จ่ายให้กับ" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "ไม่ได้ติดตั้งแอปการชำระเงิน โปรดติดตั้งจาก {0} หรือ {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "ไม่ได้ติดตั้งแอปการชำระเงิน โปรดติดตั้งจาก {} หรือ {}" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62182,7 +62204,7 @@ msgstr "ไม่ได้ติดตั้งแอปการชำระเ msgid "per hour" msgstr "ต่อชั่วโมง" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "ดำเนินการอย่างใดอย่างหนึ่งด้านล่าง:" @@ -62258,8 +62280,8 @@ msgstr "ขายแล้ว" msgid "subscription is already cancelled." msgstr "การสมัครสมาชิกถูกยกเลิกแล้ว" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "ฟิลด์อ้างอิงเป้าหมาย" @@ -62322,10 +62344,6 @@ msgstr "ผ่านการซ่อมแซมสินทรัพย์" msgid "via BOM Update Tool" msgstr "ผ่านเครื่องมืออัปเดต BOM" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "คุณต้องเลือกบัญชีงานทุนที่กำลังดำเนินการในตารางบัญชี" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' ถูกปิดใช้งาน" @@ -62338,7 +62356,7 @@ msgstr "{0} '{1}' ไม่อยู่ในปีงบประมาณ {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) ต้องไม่เกินปริมาณที่วางแผนไว้ ({2}) ในคำสั่งงาน {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} ได้ส่งสินทรัพย์แล้ว ลบรายการ {2} ออกจากตารางเพื่อดำเนินการต่อ" @@ -62358,7 +62376,7 @@ msgstr "{0} งบประมาณสำหรับบัญชี {1} เท msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "{0} งบประมาณสำหรับบัญชี {1} เทียบกับ {2} {3} คือ {4}. จะเกินกว่า {5}." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "คูปอง {0} ที่ใช้คือ {1} ปริมาณที่อนุญาตหมดแล้ว" @@ -62366,11 +62384,6 @@ msgstr "คูปอง {0} ที่ใช้คือ {1} ปริมาณ msgid "{0} Digest" msgstr "สรุป {0}" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "หมายเลข {0} {1} ถูกใช้แล้วใน {2} {3}" @@ -62452,10 +62465,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "{0} ไม่สามารถเป็นค่าลบได้" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} ไม่สามารถเปลี่ยนแปลงได้กับรายการเปิดที่เปิดอยู่" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} ไม่สามารถใช้เป็นศูนย์ต้นทุนหลักได้เนื่องจากถูกใช้เป็นลูกในการจัดสรรศูนย์ต้นทุน {1}" @@ -62471,7 +62492,7 @@ msgstr "{0} ไม่สามารถเป็นศูนย์ได้" msgid "{0} created" msgstr "{0} สร้างแล้ว" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "{0} การสร้างสำหรับบันทึกต่อไปนี้จะถูกข้ามไป" @@ -62513,7 +62534,7 @@ msgstr "{0} สำหรับ {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} เปิดใช้งานการจัดสรรตามเงื่อนไขการชำระเงินแล้ว โปรดเลือกเงื่อนไขการชำระเงินสำหรับแถว #{1} ในส่วนการอ้างอิงการชำระเงิน" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "{0} ได้รับการแก้ไขหลังจากที่คุณดึงมันออกมาแล้ว กรุณาดึงมันอีกครั้ง" @@ -62521,6 +62542,10 @@ msgstr "{0} ได้รับการแก้ไขหลังจากท msgid "{0} has been submitted successfully" msgstr "{0} ส่งสำเร็จแล้ว" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} ชั่วโมง" @@ -62529,7 +62554,11 @@ msgstr "{0} ชั่วโมง" msgid "{0} in row {1}" msgstr "{0} ในแถว {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} เป็นตารางลูกและจะถูกลบโดยอัตโนมัติพร้อมกับตารางแม่" @@ -62543,7 +62572,7 @@ msgstr "{0} เป็นมิติการบัญชีที่จำเ msgid "{0} is added multiple times on rows: {1}" msgstr "{0} ถูกเพิ่มหลายครั้งในแถว: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} กำลังทำงานอยู่สำหรับ {1}" @@ -62551,7 +62580,7 @@ msgstr "{0} กำลังทำงานอยู่สำหรับ {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} ถูกบล็อกดังนั้นธุรกรรมนี้ไม่สามารถดำเนินการต่อได้" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} อยู่ในร่าง กรุณาส่งก่อนที่จะสร้างสินทรัพย์" @@ -62564,11 +62593,11 @@ msgstr "{0} เป็นสิ่งจำเป็นสำหรับรา msgid "{0} is mandatory for account {1}" msgstr "{0} เป็นสิ่งจำเป็นสำหรับบัญชี {1}" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} เป็นสิ่งจำเป็น อาจไม่มีการสร้างระเบียนอัตราแลกเปลี่ยนสำหรับ {1} ถึง {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} เป็นสิ่งจำเป็น อาจไม่มีการสร้างระเบียนอัตราแลกเปลี่ยนสำหรับ {1} ถึง {2}" @@ -62576,7 +62605,7 @@ msgstr "{0} เป็นสิ่งจำเป็น อาจไม่มี msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} ไม่ใช่บัญชีธนาคารของบริษัท" @@ -62592,7 +62621,7 @@ msgstr "{0} ไม่ใช่รายการสต็อก" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} ไม่ใช่ค่าที่ถูกต้องสำหรับคุณลักษณะ {1} ของรายการ {2}" @@ -62608,17 +62637,17 @@ msgstr "{0} ไม่ได้ถูกเพิ่มในตาราง" msgid "{0} is not enabled in {1}" msgstr "{0} ไม่ได้เปิดใช้งานใน {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} ไม่ได้ทำงาน ไม่สามารถเรียกใช้งานสำหรับเอกสารนี้ได้" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} ไม่ใช่ผู้จัดจำหน่ายเริ่มต้นสำหรับรายการใด ๆ" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} ถูกระงับจนถึง {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62668,7 +62697,7 @@ msgstr "พารามิเตอร์ {0} ไม่ถูกต้อง" msgid "{0} payment entries can not be filtered by {1}" msgstr "ไม่สามารถกรองรายการชำระเงิน {0} ด้วย {1} ได้" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "ปริมาณ {0} ของรายการ {1} กำลังถูกรับเข้าสู่คลังสินค้า {2} ที่มีความจุ {3}" @@ -62681,7 +62710,7 @@ msgstr "{0} ถึง {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} หน่วยถูกจองไว้สำหรับรายการ {1} ในคลังสินค้า {2} โปรดยกเลิกการจองเพื่อ {3} การกระทบยอดสต็อก" @@ -62697,16 +62726,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} หน่วยของ {1} จำเป็นต้องใช้ใน {2} โดยมีมิติของสินค้าคงคลัง: {3} บน {4} {5} สำหรับ {6} เพื่อดำเนินการธุรกรรมให้เสร็จสมบูรณ์" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "ต้องการ {0} หน่วยของ {1} ใน {2} ใน {3} {4} สำหรับ {5} เพื่อทำธุรกรรมนี้ให้เสร็จสมบูรณ์" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "ต้องการ {0} หน่วยของ {1} ใน {2} ใน {3} {4} เพื่อทำธุรกรรมนี้ให้เสร็จสมบูรณ์" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "ต้องการ {0} หน่วยของ {1} ใน {2} เพื่อทำธุรกรรมนี้ให้เสร็จสมบูรณ์" @@ -62714,7 +62743,7 @@ msgstr "ต้องการ {0} หน่วยของ {1} ใน {2} เพ msgid "{0} until {1}" msgstr "{0} จนถึง {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "หมายเลขซีเรียลที่ถูกต้อง {0} สำหรับรายการ {1}" @@ -62722,7 +62751,7 @@ msgstr "หมายเลขซีเรียลที่ถูกต้อง msgid "{0} variants created." msgstr "สร้างตัวแปร {0} แล้ว" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "{0} มุมมองนี้ไม่รองรับในรายงานทางการเงินแบบกำหนดเองในขณะนี้" @@ -62756,7 +62785,7 @@ msgstr "สร้าง {0} {1} แล้ว" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} ไม่มีอยู่" @@ -62790,12 +62819,21 @@ msgstr "{0} {1} ถูกจัดสรรสองครั้งในธุ msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} ถูกเชื่อมโยงกับรหัสทั่วไป {2} แล้ว" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} เกี่ยวข้องกับ {2} แต่บัญชีคู่สัญญาคือ {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} ถูกยกเลิกหรือปิดแล้ว" @@ -62827,6 +62865,10 @@ msgstr "{0} {1} ถูกเรียกเก็บเงินเต็มจ msgid "{0} {1} is not active" msgstr "{0} {1} ไม่ได้ใช้งาน" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} ไม่ได้เชื่อมโยงกับ {2} {3}" @@ -62932,27 +62974,23 @@ msgstr "{0}% ของมูลค่ารวมในใบแจ้งหน msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{1} ของ {0} ไม่สามารถอยู่หลังวันที่สิ้นสุดที่คาดไว้ของ {2}" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, โปรดทำการดำเนินการ {1} ให้เสร็จก่อนการดำเนินการ {2}" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: ตารางลูก (ถูกลบโดยอัตโนมัติเมื่อถูกลบจากตารางแม่)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: ไม่พบ" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: ประเภทเอกสารที่ได้รับการคุ้มครอง" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: ประเภทเอกสารเสมือน (ไม่มีตารางฐานข้อมูล)" @@ -62968,7 +63006,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "{0}: {1} เป็นบัญชีกลุ่ม" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} ต้องน้อยกว่า {2}" @@ -62980,7 +63018,7 @@ msgstr "สร้างสินทรัพย์ {count} สำหรับ {i msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} ถูกยกเลิกหรือปิดแล้ว" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "ขนาดตัวอย่าง ({sample_size}) ของ {item_name} ต้องไม่เกินปริมาณที่ยอมรับได้ ({accepted_quantity})" @@ -62992,32 +63030,7 @@ msgstr "สถานะของ {ref_doctype} {ref_name} คือ {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} ไม่สามารถยกเลิกได้เนื่องจากคะแนนสะสมที่ได้รับถูกแลกไปแล้ว โปรดยกเลิก {} หมายเลข {} ก่อน" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} ได้ส่งสินทรัพย์ที่เชื่อมโยงกับมันแล้ว คุณต้องยกเลิกสินทรัพย์เพื่อสร้างการคืนสินค้า" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} เป็นบริษัทลูก." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} ถูกเชื่อมโยงกับ {} อื่นแล้ว" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} ถูกเชื่อมโยงกับ {} {} แล้ว" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} ไม่ส่งผลต่อบัญชีธนาคาร {}" - diff --git a/erpnext/locale/tr.po b/erpnext/locale/tr.po index a4ae0a0c672..67ac305899e 100644 --- a/erpnext/locale/tr.po +++ b/erpnext/locale/tr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: tr_TR\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "Varlık kaydı yapıldığından, 'Sabit Varlık' seçimi kaldırılamaz msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "“SN-01::10” için “SN-01” ile “SN-10”" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Stokta" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Gerekli Ürünler" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'Müşterinin Satın Alma Siparişine Karşı Çoklu Satış Siparişlerine İzin Ver'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Şuna Göre' ve 'Gruplandırma Ölçütü' aynı olamaz" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "Başlangıç Tarihi Bitiş Tarihinden önce olmalıdır" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "Stokta olmayan ürünün 'Seri No' değeri 'Evet' olamaz." +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "Teslimattan Önce Kalite Kontrol Gereklidir ayarı {0} ürünü için devre dışı bırakılmıştır, Kalite Kontrol Raporu oluşturmanıza gerek yok." +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "Satın Alma Öncesi Kalite Kontrol Gereklidir ayarı {0} ürünü için devre dışı bırakılmıştır, Kalite Kontrol Raporu oluşturmanıza gerek yok." +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Açılış'" @@ -326,13 +317,13 @@ msgstr "'Açılış'" msgid "'To Date' is required" msgstr "Bitiş tarihi gereklidir" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'Hedef Paket No' 'Kaynak Paket No' dan az olamaz." #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Stok Güncelle' seçilemez çünkü ürünler {0} ile teslim edilmemiş." +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90 Üstü" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -826,16 +817,16 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "" +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' @@ -1055,9 +1046,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Aynı isimde bir Müşteri Grubu mevcut. Lütfen Müşteri adını değiştirin veya Müşteri Grubunu yeniden adlandırın." +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1067,9 +1058,9 @@ msgstr "İş İstasyonu için bu günlerin sayılmasını hariç tutmak üzere b msgid "A Lead requires either a person's name or an organization's name" msgstr "Bir Müşteri Adayı için ya bir kişi adı ya da bir kuruluş adı gereklidir" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Bir Paketleme Fişi yalnızca Taslak İrsaliye için oluşturulabilir." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1085,7 +1076,7 @@ msgstr "Fiyat Listesi, Satılan, Alınan veya Her İkisi de Olan Ürün Fiyatlar msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Alınan, satılan veya stokta tutulan bir Ürün veya Hizmet." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Aynı filtreler için {0} numaralı bir Mutabakat İşi çalışıyor. Şu anda mutabakat yapılamaz" @@ -1118,7 +1109,7 @@ msgstr "Göndermek için bir sürücü ayarlanmalıdır." msgid "A logical Warehouse against which stock entries are made." msgstr "Stok girişlerinin yapıldığı mantıksal bir Depo." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1294,7 +1285,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Stok Biriminde Kabul Edilen Miktar" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Kabul Edilen Miktar" @@ -1325,12 +1316,16 @@ msgstr "Erişim Anahtarı" msgid "Access Key is required for Service Provider: {0}" msgstr "Servis Sağlayıcı için Erişim Anahtarı gereklidir: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "CEFACT/ICG/2010/IC013 veya CEFACT/ICG/2010/IC010 Standartına Göre" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "{0} Ürün Ağacı, ‘{1}’ ürünü stok girişinde eksik." @@ -1583,7 +1578,7 @@ msgstr "Ödeme kayıtlarını almak için hesap zorunludur" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Hesap bulunamadı" @@ -1713,11 +1708,11 @@ msgstr "Hesap: {0} sermaye olarak Devam Eden İşler’dir ve Muhasebe Ka msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Hesap: {0} yalnızca Stok İşlemleri aracılığıyla güncellenebilir" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Hesap: {0} Ödeme Girişi altında izin verilmiyor" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Hesap: {0} para ile: {1} seçilemez" @@ -1996,8 +1991,8 @@ msgstr "Muhasebe Boyutları Filtresi" msgid "Accounting Entries" msgstr "Muhasebe Girişleri" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Varlık İçin Muhasebe Girişi" @@ -2022,8 +2017,8 @@ msgstr "Hizmet için Muhasebe Girişi" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2071,7 +2066,11 @@ msgstr "" msgid "Accounting Period" msgstr "Hesap Dönemi" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Hesap Dönemi {0} ile çakışıyor" @@ -2269,8 +2268,8 @@ msgstr "Birikmiş Amortisman Hesabı" msgid "Accumulated Depreciation Amount" msgstr "Birikmiş Amortisman Tutarı" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Birikmiş Amortisman" @@ -2498,7 +2497,7 @@ msgstr "Gerçek Bakiye Miktarı" msgid "Actual Batch Quantity" msgstr "Gerçek Parti Miktarı" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Gerçek Maliyet" @@ -2508,7 +2507,7 @@ msgstr "Gerçek Maliyet" msgid "Actual Date" msgstr "Gerçekleşen Tarih" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2658,8 +2657,8 @@ msgstr "Toplam Saat (Zaman Çizgelgesi)" msgid "Actual qty in stock" msgstr "Güncel Stok Miktarı" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Gerçek tip vergi satırda Ürün fiyatına dahil edilemez {0}" @@ -2824,10 +2823,6 @@ msgstr "Seri / Parti No Ekle" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Seri / Parti No Ekle (Reddedilen Miktar)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Stok Ekle" @@ -2926,13 +2921,13 @@ msgstr "Ekleyen" msgid "Added On" msgstr "Eklenme Tarihi" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "{0} Kullanıcısına Tedarikçi Rolü eklendi." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "{1} Rolü {0} Kullanıcısına Eklendi." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3074,7 +3069,7 @@ msgstr "Ek İndirim Tutarı" msgid "Additional Discount Amount (Company Currency)" msgstr "Ek İndirim Tutarı" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3193,11 +3188,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3462,7 +3453,7 @@ msgstr "" msgid "Advance amount" msgstr "Avans Tutarı" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "{0} Avans miktarı {1} tutarından fazla olamaz." @@ -3531,7 +3522,7 @@ msgstr "Karşılığında" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Hesap" @@ -3651,7 +3642,7 @@ msgstr "Tedarikçi Faturasına Karşı {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Fatura" @@ -3675,7 +3666,7 @@ msgstr "İlgili Belge No" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Fatura Türü" @@ -3789,6 +3780,13 @@ msgstr "Havayolu" msgid "Algorithm" msgstr "Algoritma" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3965,7 +3963,7 @@ msgstr "" msgid "All items are already requested" msgstr "Tüm ürünler zaten talep edildi" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Tüm ürünler zaten Faturalandırıldı/İade Edildi" @@ -3977,7 +3975,7 @@ msgstr "Tüm ürünler zaten alındı" msgid "All items have already been transferred for this Work Order." msgstr "Bu İş Emri için tüm öğeler zaten aktarıldı." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Bu belgedeki tüm Ürünlerin zaten bağlantılı bir Kalite Kontrolü var." @@ -3996,16 +3994,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Tüm Yorumlar ve E-postalar, CRM belgeleri boyunca bir belgeden yeni oluşturulan başka bir belgeye (Aday Müşteri -> Fırsat -> Teklif) kopyalanacaktır." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Tüm gerekli malzemeler (hammadde) Ürün Ağacı'ndan alınarak bu tabloya eklenir. Burada herhangi bir ürün için Kaynak Depo'yu da değiştirebilirsiniz. Üretim sırasında, bu tablodan transfer edilen hammaddeleri takip edebilirsiniz." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Bu öğelerin tümü zaten Faturalandırılmış/İade edilmiştir" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4028,7 +4026,7 @@ msgstr "Avansları Otomatik Olarak Tahsis Et (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Ayrılan Ödeme Tutarı" @@ -4038,7 +4036,7 @@ msgstr "Ayrılan Ödeme Tutarı" msgid "Allocate Payment Based On Payment Terms" msgstr "Ödeme Koşullarına Göre Ödeme Tahsis Edin" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Ödeme Talebini Tahsis Et" @@ -4068,7 +4066,7 @@ msgstr "Ayrılan" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4151,8 +4149,8 @@ msgid "Allow Alternative Item" msgstr "Alternatif Ürüne İzin Ver" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "{} Ürünü için Alternatif Ürüne İzin Ver seçeneği işaretlenmelidir" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4259,7 +4257,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Öznitelik Değerini Yeniden Adlandırmaya İzin Ver" @@ -4540,14 +4538,16 @@ msgstr "İzin Verilen Ürünler" msgid "Allowed To Transact With" msgstr "İşlem Yapma Yetkileri" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "İzin verilen birincil roller 'Müşteri' ve 'Tedarikçi'dir. Lütfen yalnızca bu rollerden birini seçin." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4580,10 +4580,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4591,10 +4591,6 @@ msgstr "" msgid "Already Picked" msgstr "Zaten Seçilmiş" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Zaten {0} öğesi için kayıt var" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "{1} kullanıcısı için {0} pos profilinde varsayılan olarak varsayılan değer ayarladınız, varsayılan olarak lütfen devre dışı bırakıldı" @@ -4610,12 +4606,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Alternatif Ürün" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4820,7 +4816,7 @@ msgstr "Her Zaman Sor" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5046,12 +5042,12 @@ msgstr "Ürün Grubu, Ürünleri türlerine göre sınıflandırmanın bir yolud msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Ürün değerlemesi {0} üzerinden yeniden yayınlanırken bir hata oluştu" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Güncelleme sırasında bir hata oluştu" @@ -5265,7 +5261,7 @@ msgstr "Uygulanan Kupon Kodu" msgid "Applied on each reading." msgstr "Her okumaya uygulanır." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Yerleştirme kuralları uygulandı." @@ -5442,10 +5438,6 @@ msgstr "Randevu Rezervasyon Zaman Dilimleri" msgid "Appointment Confirmation" msgstr "Randevu Onayı" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Randevu Başarıyla Oluşturuldu" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5471,6 +5463,10 @@ msgstr "Bu site için Randevu Planlama devre dışı bırakıldı" msgid "Appointment With" msgstr "Randevu Bununla İlişkili" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Randevu oluşturuldu. Ancak müşteri adayı bulunamadı. Lütfen onaylamak için e-postayı kontrol edin" @@ -5512,6 +5508,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "Tüm Demo Verilerini temizlemek istediğinizden emin misiniz?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "Bu ürünü silmek istediğinizden emin misiniz?" @@ -5594,18 +5599,18 @@ msgstr "{0} alanı etkinleştirildiğinden, {1} alanının değeri 1'den fazla o msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "{0} Ürününe karşı mevcut gönderilmiş işlemler olduğundan, {1} değerini değiştiremezsiniz." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "Depolarda Rezerv stok olduğu için {0} ayarını devre dışı bırakamazsınız." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Yeterli Alt Montaj Ürünleri mevcut olduğundan, {0} Deposu için İş Emri gerekli değildir." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Yeterli hammadde olduğundan, {0} Deposu için Malzeme Talebi gerekli değildir." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5644,7 +5649,7 @@ msgstr "Montaj Ürünleri" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5716,7 +5721,7 @@ msgstr "Varlık Sermayesi Stok Kalemi" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5882,7 +5887,7 @@ msgstr "Varlık Hareketi Ürünü" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6014,7 +6019,7 @@ msgstr "Varlık Değeri Analitiği" msgid "Asset cancelled" msgstr "Varlık iptal edildi" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Varlık iptal edilemez, çünkü zaten {0} durumda" @@ -6030,7 +6035,7 @@ msgstr "Varlık Sermayelendirmesi {0} gönderildikten sonra varlık sermayelendi msgid "Asset created" msgstr "Varlık oluşturuldu" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Varlıktan ayrıldıktan sonra oluşturulan varlık {0}" @@ -6083,7 +6088,7 @@ msgstr "Varlık Kaydedildi" msgid "Asset transferred to Location {0}" msgstr "Varlık {0} konumuna aktarıldı" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Varlık, Varlığa bölündükten sonra güncellendi {0}" @@ -6161,7 +6166,7 @@ msgstr "Varlık Değer Düzeltmesinin sunulmasından sonra düzeltilen varlık d #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6182,7 +6187,7 @@ msgstr "{item_code} için varlıklar oluşturulamadı. Varlığı manuel olarak msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Yapılacak İşi Personele Ata" @@ -6192,6 +6197,11 @@ msgstr "Yapılacak İşi Personele Ata" msgid "Assign to Name" msgstr "İsme Ata" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6210,19 +6220,23 @@ msgstr "Satır #{0}: {2} ürünü için seçilen miktar {1}, {5} deposundaki {4} msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "Satır #{0}: Ürün {2} için seçilen miktar {1}, depo {4} içinde mevcut stok {3} değerinden fazladır." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "En az bir adet döviz kazancı veya kaybı hesabının bulunması zorunludur" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "En azından bir varlığın seçilmesi gerekiyor." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "En az bir faturanın seçilmesi gerekiyor." @@ -6243,6 +6257,10 @@ msgstr "Uygulanabilir Modüllerden en az biri seçilmelidir" msgid "At least one of the Selling or Buying must be selected" msgstr "Satış veya Satın Alma seçeneklerinden en az biri seçilmelidir" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6263,7 +6281,7 @@ msgstr "Satır #{0}: Sıra numarası {1}, önceki satırın sıra numarası {2} msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "Satır {0}: Parti No, {1} Ürünü için zorunludur" @@ -6271,26 +6289,22 @@ msgstr "Satır {0}: Parti No, {1} Ürünü için zorunludur" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "Satır {0}: Üst Satır No, {1} öğesi için ayarlanamıyor" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "Satır {0}: {1} partisi için miktar zorunludur" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "Satır {0}: Seri No, {1} Ürünü için zorunludur" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "Satır {0}: Seri ve Toplu Paket {1} zaten oluşturuldu. Lütfen seri no veya toplu no alanlarından değerleri kaldırın." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "Satır {0}: Ürün {1} için Üst Satır No'yu ayarlayın" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6502,7 +6516,7 @@ msgstr "Ödemelerin Otomatik Mutabakatı devre dışı bırakıldı. {0} adresin msgid "Auto Repeat Detail" msgstr "Otomatik Tekrarlama Detayı" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6563,7 +6577,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Otomatik tekrar dokümanı güncellendi" @@ -6688,7 +6702,7 @@ msgstr "Kullanıma Hazır Tarihi" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6784,7 +6798,7 @@ msgstr "Kullanıma Hazır Tarihi gereklidir" msgid "Available {0}" msgstr "{0} Kullanılabilir" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Kullanıma hazır tarihi satın alma tarihinden sonra olmalıdır" @@ -6902,7 +6916,7 @@ msgstr "Ürün Ağacı Miktarı" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6921,8 +6935,8 @@ msgid "BOM 1" msgstr "Ürün Ağacı 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "Ürün Ağacı 1 {0} ve Ürün Ağacı 2 {1} aynı olmamalıdır" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6936,7 +6950,7 @@ msgstr "Ürün Ağacı 2" msgid "BOM Comparison Tool" msgstr "Ürün Ağacı Karşılaştırma Aracı" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7067,7 +7081,7 @@ msgstr "Ürün Ağacı Operasyonu" msgid "BOM Operations Time" msgstr "Ürün Ağacı Operasyon Süresi" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7088,7 +7102,7 @@ msgstr "Ürün Ağacı Arama" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7140,10 +7154,6 @@ msgstr "İş durumunun korunduğu Ürün Ağacı Güncelleme Aracı Günlüğü" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Ürün Ağacı Güncellemesi zaten devam ediyor. Lütfen {0} tamamlanana kadar bekleyin." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "Ürün Ağacı Güncellemesi sıraya alındı ve birkaç dakika sürebilir. İlerleme için {0} adresini kontrol edin." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7182,15 +7192,19 @@ msgstr "Ürün Ağacı yinelemesi: {0}, {1} alt öğesi olamaz" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Ürün Ağacı yinelemesi: {1}, {0} girişinin üst öğesi veya alt öğesi olamaz" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "{0} Ürün Ağacı {1} Ürününe ait değil" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "{0} Ürün Ağacı aktif olmalıdır" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "{0} Ürün Ağacı kaydedilmelidir" @@ -7271,7 +7285,7 @@ msgstr "Bakiye" msgid "Balance (Dr - Cr)" msgstr "Bakiye (Borç - Alacak)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Bakiye ({0})" @@ -7341,6 +7355,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "Bilanço Özeti" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Bakiye Stok Miktarı" @@ -7401,7 +7419,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7501,7 +7519,7 @@ msgid "Bank Account Type" msgstr "Banka Hesap Türü" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7746,7 +7764,7 @@ msgstr "Banka İşlemi {0} güncellendi" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Banka hesabı {0} olarak adlandırılamaz" @@ -7758,7 +7776,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Banka hesabı {0} zaten mevcut ve tekrar oluşturulamadı" @@ -7770,7 +7788,7 @@ msgstr "Banka hesapları eklendi" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Banka işlemi oluşturma hatası" @@ -8046,8 +8064,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8078,15 +8096,15 @@ msgstr "" msgid "Batch No" msgstr "Parti No" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Parti Numarası Zorunlu" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Parti No {0} mevcut değil" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Parti No {0} , seri numarası olan {1} öğesi ile bağlantılıdır. Lütfen bunun yerine seri numarasını tarayın." @@ -8094,6 +8112,10 @@ msgstr "Parti No {0} , seri numarası olan {1} öğesi ile bağlantılıdır. L msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Parti No {0}, orijinalinde {1} {2} için mevcut değil, bu nedenle bunu {1} {2} adına iade edemezsiniz." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8159,9 +8181,9 @@ msgstr "Parti Ölçü Birimi" msgid "Batch and Serial No" msgstr "Parti ve Seri No" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "{} öğesi için parti oluşturulamadı çünkü parti serisi yok." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8273,7 +8295,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8748,8 +8770,8 @@ msgid "Booked Fixed Asset" msgstr "Ayrılmış Sabit Varlık" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "Defterler {0} adresinde sona eren döneme kadar kapatılmıştır." +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8976,8 +8998,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Grup Hesabı {0} için bütçe atanamaz" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Bütçe, {0} için atanamaz çünkü bu bir Gelir veya Gider hesabı değildir" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8994,7 +9016,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Tümünü Oluştur?" @@ -9002,7 +9024,7 @@ msgstr "Tümünü Oluştur?" msgid "Build Tree" msgstr "Ağaç Oluştur" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Üretilebilir Miktar" @@ -9329,6 +9351,10 @@ msgstr "Hesaplanan Banka Hesap Özeti bakiyesi" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9500,7 +9526,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "{0} tarafından onaylanabilir" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "{0} İş Kartı Devam Ediyor durumunda olduğu için İş Emri kapatılamıyor." @@ -9529,21 +9555,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Belgelerle gruplandırılmışsa, Belge No ile filtreleme yapılamaz." #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Sadece faturalandırılmamış ödemeler yapılabilir {0}" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Yalnızca ücret türü 'Önceki Satır Tutarında' veya 'Önceki Satır Toplamında' ise satıra referans verebilir" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "Kendi değerleme yöntemi olmayan bazı kalemlere karşı işlemler olduğu için değerleme yöntemi değiştirilemez" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Bu Garanti Talebini iptal etmeden önce Malzeme Ziyaretini {0} iptal edin" @@ -9572,7 +9601,7 @@ msgstr "" msgid "Cancelation Date" msgstr "İptal Tarihi" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9580,11 +9609,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Sürücü Adresi Eksik Olduğu İçin Varış Saati Hesaplanamıyor." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9599,10 +9623,6 @@ msgstr "İade Oluşturulamıyor" msgid "Cannot Merge" msgstr "Birleştirilemez" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Sürücü Adresi Eksik Olduğu İçin Rota Optimize Edilemiyor." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Çalışan İşten Ayrılamıyor" @@ -9627,6 +9647,11 @@ msgstr "Bir girişte birden fazla tarafa karşı Stopaj Vergisi uygulanamaz" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Stok Defterine girişi olan bir kalem Sabit Varlık olarak ayarlanamaz." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9636,14 +9661,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "İptal edilen belgelerin işlenmesi beklemede olduğundan iptal edilemiyor." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Gönderilen Stok Girişi {0} mevcut olduğundan iptal edilemiyor" @@ -9651,7 +9676,7 @@ msgstr "Gönderilen Stok Girişi {0} mevcut olduğundan iptal edilemiyor" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "İşlem iptal edilemiyor. Gönderim sırasında Ürün değerlemesinin yeniden yayınlanması henüz tamamlanmadı." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9663,7 +9688,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Tamamlanan İş Emri için işlem iptal edilemez." @@ -9688,8 +9713,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Şirketin varsayılan para birimi değiştirilemiyor çünkü mevcut işlemler var. Varsayılan para birimini değiştirmek için işlemlerin iptal edilmesi gerekiyor." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "{0} görevi tamamlanamıyor çünkü bağımlı görevi {1} tamamlanmadı/iptal edilmedi." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9715,7 +9740,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "İleri tarihli Alış İrsaliyeleri için Stok Rezervasyon Girişleri oluşturulamıyor." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Rezerve stok olduğundan {0} Satış Siparişi için bir Çekme Listesi oluşturulamıyor. Çekme Listesi oluşturmak için lütfen stok rezervini kaldırın." @@ -9724,6 +9749,10 @@ msgstr "Rezerve stok olduğundan {0} Satış Siparişi için bir Çekme Listesi msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Devre dışı bırakılan hesaplar için muhasebe girişleri oluşturulamıyor: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9741,7 +9770,7 @@ msgstr "Kayıp olarak belirtilemez, çünkü Fiyat Teklifi verilmiş." msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "'Değerleme' veya 'Değerleme ve Toplam' kategorisi için çıkarma işlemi yapılamaz." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Kur Farkı Satırı Silinemiyor" @@ -9754,7 +9783,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9786,7 +9815,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9811,19 +9840,23 @@ msgstr "Bu Barkoda Sahip Ürün Bulunamadı" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "{0} ürünü için varsayılan bir depo bulunamadı. Lütfen Ürün Ana Verisi'nde veya Stok Ayarları'nda bir tane ayarlayın." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "{0} için daha fazla ürün üretilemiyor" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "{1} için {0} Üründen fazlasını üretemezsiniz" @@ -9835,12 +9868,16 @@ msgstr "Negatif bakiye karşılığında müşteriden teslim alınamıyor" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Bu ücret türü için geçerli satır numarasından büyük veya bu satır numarasına eşit satır numarası verilemiyor" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "Güncelleme için bağlantı token'ı alınamıyor. Daha fazla bilgi için Hata Günlüğünü kontrol edin" @@ -9849,19 +9886,23 @@ msgstr "Güncelleme için bağlantı token'ı alınamıyor. Daha fazla bilgi iç msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Güncelleme için bağlantı token'ı alınamıyor. Daha fazla bilgi için Hata Günlüğünü kontrol edin" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "İlk satır için ücret türü 'Önceki Satır Tutarı Üzerinden' veya 'Önceki Satır Toplamı Üzerinden' olarak seçilemiyor" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Satış Siparişi verildiği için Kayıp olarak ayarlanamaz." @@ -10288,9 +10329,9 @@ msgstr "Hesap türünü Alacak olarak değiştirin veya farklı bir hesap seçin msgid "Change this date manually to setup the next synchronization start date" msgstr "Sonraki senkronizasyon başlangıç tarihini ayarlamak için bu tarihi manuel olarak değiştirin." -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "'{}' zaten mevcut olduğundan müşteri adı '{}' olarak değiştirildi." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10316,8 +10357,8 @@ msgstr "" msgid "Channel Partner" msgstr "Kanal Ortağı" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "{0} satırındaki 'Gerçekleşen' türündeki ücret Kalem Oranına veya Ödenen Tutara dahil edilemez" @@ -10511,7 +10552,7 @@ msgstr "Çek Genişliği" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "İşlem Tarihi" @@ -10569,7 +10610,7 @@ msgstr "Alt Dokuman Adı" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Alt Satır Referansı" @@ -10579,8 +10620,8 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Bu Görev için Alt Görev mevcut. Bu Görevi silemezsiniz." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10758,7 +10799,7 @@ msgstr "Borcu Kapat" msgid "Close Replied Opportunity After Days" msgstr "Yanıtlanan Fırsatı Kapat (gün sonra)" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "POS'u Kapat" @@ -10772,7 +10813,7 @@ msgstr "Kapalı Belge" msgid "Closed Documents" msgstr "Kapalı Belgeler" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Kapatılan İş Emri durdurulamaz veya Yeniden Açılamaz" @@ -11002,9 +11043,9 @@ msgstr "Komisyon" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11441,7 +11482,7 @@ msgstr "Şirketler" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11511,7 +11552,7 @@ msgstr "Şirketler" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11551,10 +11592,6 @@ msgstr "Şirket" msgid "Company Abbreviation" msgstr "Şirket Kısaltması" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Şirket Kısaltması 5 karakterden uzun olamaz" @@ -11719,7 +11756,7 @@ msgstr "Teslimat Adresi" msgid "Company Tax ID" msgstr "Şirket Vergi Numarası" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "Şirket ve Kaydetme Tarihi zorunludur" @@ -11763,12 +11800,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Şirket adı aynı değil" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "{0} varlık ve {1} satın alma belgesi eşleşmiyor." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11806,6 +11843,14 @@ msgstr "{0} şirketi birden fazla kez eklendi" msgid "Company {0} does not exist" msgstr "{0} Şirketi mevcut değil" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Şirket {0} birden fazla kez eklendi" @@ -11814,14 +11859,6 @@ msgstr "Şirket {0} birden fazla kez eklendi" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "{} şirketi henüz mevcut değil. Vergi kurulumu iptal edildi." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "{} Şirketi, {} Şirketi POS Profili ile eşleşmiyor" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11843,7 +11880,7 @@ msgstr "Rakip Adı" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Rakipler" @@ -12287,8 +12324,8 @@ msgid "Consumed Qty" msgstr "Tüketilen Miktar" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "Tüketilen Miktar, {0} öğesi için Ayrılmış Miktardan büyük olamaz" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12603,7 +12640,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12903,7 +12940,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12928,7 +12965,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12986,7 +13023,7 @@ msgstr "Maliyet Merkezi Kodu" msgid "Cost Center and Budgeting" msgstr "Maliyet Merkezi ve Bütçe" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12998,7 +13035,7 @@ msgstr "Maliyet Merkezi, Maliyet Merkezi Tahsisinin bir parçasıdır, dolayıs msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "{1} türü için Vergiler tablosundaki {0} satırında Maliyet Merkezi gereklidir" @@ -13020,12 +13057,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "Maliyet Merkezi {0} diğer tahsis kayıtlarında ana maliyet merkezi olarak kullanıldığından tahsis için kullanılamaz." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Maliyet Merkezi {}, {} Şirketine ait değil" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "Maliyet Merkezi {} bir grup maliyet merkezidir ve grup maliyet merkezleri işlemlerde kullanılamaz" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13149,14 +13186,14 @@ msgid "Costing and Billing" msgstr "Maliyetlendirme ve Faturalandırma" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Demo Verileri Silinemedi" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Aşağıdaki zorunlu alanlar eksik olduğundan Müşteri otomatik olarak oluşturulamadı:" @@ -13168,7 +13205,7 @@ msgstr "Alacak Dekontu otomatik olarak oluşturulamadı, lütfen 'Alacak Dekontu msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Banka Hesaplarını güncellemek için Şirket tespit edilemedi" @@ -13178,8 +13215,8 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "Yol bulunamadı " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13202,7 +13239,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "{0} için kriter puanı işlevi çözülemedi. Formülün geçerli olduğundan emin olun." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Ağırlıklı puan fonksiyonu çözülemedi. Formülün geçerli olduğundan emin olun." @@ -13432,10 +13469,6 @@ msgstr "Yeni Müşteri Oluştur" msgid "Create New Lead" msgstr "Yeni Müşteri Adayı Oluştur" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13454,7 +13487,7 @@ msgstr "" msgid "Create Opportunity" msgstr "Fırsat Oluştur" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "POS Açılış Girişi Oluştur" @@ -13469,7 +13502,7 @@ msgstr "Ödeme Girişi Oluştur" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13697,7 +13730,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "Şablon görselini kullanarak bir varyant oluşturun." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Ürün için yeni bir stok girişi oluşturun." @@ -13731,7 +13764,7 @@ msgstr "{0} {1} oluştur?" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "{1} için, şu tarih aralığında {0} adet puan kartı oluşturuldu:\n" @@ -13826,7 +13859,7 @@ msgstr "Kullanıcı Oluşturuluyor..." msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "{} / {} {} Oluşturuluyor" @@ -13836,17 +13869,17 @@ msgstr "{} / {} {} Oluşturuluyor" msgid "Creation" msgstr "Oluşturma" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "{1} oluşturma başarılı" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "{0} oluşturma başarısız oldu.\n" " Toplu İşlem Günlüğünü Kontrol Edin" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "{0} oluşturulması kısmen başarılı.\n" @@ -13881,11 +13914,11 @@ msgstr "{0} oluşturulması kısmen başarılı.\n" msgid "Credit" msgstr "Alacak" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Alacak (İşlem)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Alacak ({0})" @@ -13966,7 +13999,7 @@ msgstr "Vade Günü" msgid "Credit Limit" msgstr "Bakiye Limiti" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Borç Limiti Aşıldı" @@ -14046,16 +14079,16 @@ msgstr "Bakiye Eklenecek Hesap" msgid "Credit in Company Currency" msgstr "Şirket Para Biriminde Alacak" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Müşteri {0} için borçlanma limiti aşılmıştır ({1}/{2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Şirket {0} için borçlanma limiti zaten tanımlanmış." -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "{0} müşterisi için kredi limitine ulaşıldı" @@ -14114,12 +14147,12 @@ msgstr "Kriterler" msgid "Criteria Weight" msgstr "Ölçütler Ağırlık" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Kriter ağırlıklarının toplamı %100 olmalıdır" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Cron Aralığı 1 ile 59 Dakika arasında olmalıdır" @@ -14242,7 +14275,7 @@ msgstr "Fiyat Listesi" msgid "Currency can not be changed after making entries using some other currency" msgstr "Başka bir para birimi kullanılarak giriş yapıldıktan sonra para birimi değiştirilemez" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14307,8 +14340,8 @@ msgid "Current BOM" msgstr "Mevcut Ürün Ağacı" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "Mevcut Ürün Ağacı ve Yeni Ürün Ağacı aynı olamaz" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14370,10 +14403,6 @@ msgstr "Mevcut Seri / Parti Paketi" msgid "Current Serial No" msgstr "Güncel Seri No" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15204,7 +15233,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "{0} için Günlük Proje Özeti" @@ -15349,10 +15378,6 @@ msgstr "" msgid "Day Of Week" msgstr "Haftanın günü" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15459,11 +15484,11 @@ msgstr "Aracı" msgid "Debit" msgstr "Borç" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Borç (İşlem)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Borç ({0})" @@ -15625,7 +15650,7 @@ msgstr "Desilitre" msgid "Decimeter" msgstr "Desimetre" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Kayıp Beyanı" @@ -16306,8 +16331,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "{0} ve ilişkili tüm Ortak Kod belgeleri siliniyor..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Silme İşlemi Devam Ediyor!" @@ -16401,7 +16426,7 @@ msgstr "Teslim Edilmiş Faturalandırılacak Ürünler" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16459,7 +16484,7 @@ msgstr "Teslimat" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16789,7 +16814,7 @@ msgstr "Amortisman" msgid "Depreciation Amount" msgstr "Amortisman Tutarı" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Dönem içindeki Amortisman Tutarı" @@ -16805,7 +16830,7 @@ msgstr "Amortisman Tarihi" msgid "Depreciation Details" msgstr "Amortisman Detayları" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Amortisman Varlıklar elden çıkarılması nedeniyle elimine edilmiştir.\n" @@ -16875,7 +16900,7 @@ msgstr "Amortisman Kayıt Tarihi, Kullanıma Hazır Tarihten önce olamaz" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Amortisman Satırı {0}: Amortisman Kayıt Tarihi, Kullanıma Hazır Tarihinden önce olamaz" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Amortisman Satırı {0}: Faydalı ömürden sonra beklenen değer {1}'den büyük veya eşit olmalıdır." @@ -16904,11 +16929,11 @@ msgstr "Amortisman Planı" msgid "Depreciation Schedule View" msgstr "Amortisman Planı" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "Tam amortismana tabi varlıklar için amortisman hesaplanamaz" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16936,7 +16961,7 @@ msgstr "Tasarımcı" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Ayrıntılı Sebep" @@ -17039,12 +17064,12 @@ msgid "Difference Account in Items Table" msgstr "Kalemler Tablosundaki Fark Hesabı" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "Bu Stok Mutabakatı bir Hesap Açılış Kaydı olduğundan farklı hesabının aktif ya da pasif bir hesap tipi olması gerekmektedir" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Fark Hesabı, bu Stok Mutabakatı bir Açılış Girişi olduğundan Varlık/Yükümlülük türü bir hesap olmalıdır" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17106,7 +17131,7 @@ msgstr "Fark Değeri" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "Her satır için farklı 'Kaynak Depo' ve 'Hedef Depo' ayarlanabilir." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Ürünler için farklı Ölçü Birimi hatalı Toplam değerinin yanlış hesaplanmasına yol açacaktır. Her bir Ürün Net Ağırlığının aynı Ölçü Biriminde olduğundan emin olun." @@ -17279,7 +17304,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "{0} Deposu devre dışı bırakıldığından, bu işlem için kullanılamaz." @@ -17288,18 +17313,18 @@ msgstr "{0} Deposu devre dışı bırakıldığından, bu işlem için kullanıl msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "{} iç transfer olduğu için, fiyatlandırma kuralı devre dışı bırakıldı." +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "{0} bir dahili transfer olduğundan, vergiler dahil fiyatlar devre dışı bırakıldı" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17548,9 +17573,9 @@ msgstr "İndirim %100'den fazla olamaz." msgid "Discount must be less than 100" msgstr "İndirim 100'den az olmalı" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Ödeme Vadesine göre {} indirim uygulandı" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17914,11 +17939,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} mevcut değil" @@ -17956,22 +17981,6 @@ msgstr "Belgeleri Ara" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18277,7 +18286,7 @@ msgstr "Projeyi Görevlerle Çoğalt" msgid "Duplicate Sales Invoices found" msgstr "Yinelenen Satış Faturaları bulundu" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18431,7 +18440,7 @@ msgstr "Kapasiteyi Düzenle" msgid "Edit Cart" msgstr "Grafiği Düzenle" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Düzenlemeye İzin Verilmiyor" @@ -18655,8 +18664,8 @@ msgid "Email verification failed." msgstr "E-posta doğrulaması başarısız oldu." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "E-postalar Sıraya Alındı" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18843,7 +18852,7 @@ msgstr "Personeller" msgid "Empty" msgstr "Boş" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18852,7 +18861,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "Pica Em" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18931,6 +18940,12 @@ msgstr "" msgid "Enable European Access" msgstr "Avrupa Erişimini Etkinleştir" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19202,7 +19217,7 @@ msgstr "Bitiş Zamanı" msgid "End Transit" msgstr "Taşımayı Sonlandır" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19325,7 +19340,7 @@ msgstr "Müşterinin telefon numarasını girin" msgid "Enter date to scrap asset" msgstr "Varlığın hurdaya çıkarılacağı tarihi girin" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Amortisman bilgileri girin" @@ -19381,6 +19396,10 @@ msgstr "Üretilecek miktarı girin. Hammadde Kalemleri yalnızca bu ayarlandığ msgid "Enter {0} amount." msgstr "{0} tutarını girin." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Eğlence ve Keyif" @@ -19416,7 +19435,7 @@ msgstr "Giriş Türü" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Özsermaye" @@ -19440,7 +19459,7 @@ msgstr "Erg" msgid "Error Description" msgstr "Hata Açıklaması" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Hata Oluştu" @@ -19472,21 +19491,21 @@ msgstr "Amortisman girişleri kaydedilirken hata oluştu" msgid "Error while processing deferred accounting for {0}" msgstr "{0} için ertelenmiş muhasebe işlenirken hata oluştu" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Ürün değerlemesi yeniden gönderilirken hata oluştu" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Hata: Bu varlık için zaten {0} amortisman dönemi ayrılmıştır.\n" -"\t\t\t\t\tAmortisman başlangıç tarihi, `kullanıma hazır` tarihinden en az {1} dönem sonra olmalıdır.\n" -"\t\t\t\t\tLütfen tarihleri buna göre düzeltin." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Hata: {0} zorunlu bir alandır" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "Hata: {0}" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19500,7 +19519,7 @@ msgid "Estimated Arrival" msgstr "Tahmini Varış" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Tahmini Maliyet" @@ -19550,7 +19569,7 @@ msgstr "Örnek: ABCD.#####. Seri ayarlanmışsa ve işlemlerde Parti No belirtil msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Örnek: Seri No {0} {1} adresinde ayrılmıştır." @@ -19831,7 +19850,7 @@ msgstr "Beklenen Kapanış Tarihi" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19918,7 +19937,7 @@ msgstr "Kullanım Ömrü Sonrası Beklenen Değer" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Gider" @@ -20177,9 +20196,9 @@ msgstr "Fahrenayt" msgid "Failed Entries" msgstr "Başarısız Girişler" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "API anahtarının kimliği doğrulanamadı." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20376,7 +20395,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Döviz kurları alınıyor ..." @@ -20414,15 +20433,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "Alanlar yalnızca oluşturulma anında kopyalanır." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20431,7 +20450,7 @@ msgstr "" msgid "File to Rename" msgstr "Dosyayı Yeniden Adlandır" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20590,11 +20609,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20663,7 +20682,7 @@ msgstr "Nihai Ürünün Ürün Ağacı" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20676,7 +20695,7 @@ msgstr "Bitmiş Ürün" msgid "Finished Good Item Code" msgstr "Bitmiş Ürün Kodu" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Bitmiş Ürün Miktarı" @@ -20784,7 +20803,7 @@ msgstr "Ürün Kabul Deposu" msgid "Finished Goods based Operating Cost" msgstr "Bitmiş Ürün Operasyon Maliyeti" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Bitmiş Ürün {0} İş Emri {1} ile eşleşmiyor" @@ -20883,10 +20902,6 @@ msgstr "Vergi Sistemi zorunludur, lütfen {0} şirketinde vergi sistemini ayarla msgid "Fiscal Year" msgstr "Mali Yıl" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20900,11 +20915,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Mali Yıl Sonu Tarihi, Mali Yıl Başlama Tarihi'nden bir yıl sonra olmalıdır" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Mali Yıl {0} Mevcut Değil" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Mali yıl {0} mevcut değil" @@ -20937,7 +20949,7 @@ msgstr "Sabit Varlık" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21073,7 +21085,7 @@ msgstr "Ayak/Saniye" msgid "For" msgstr "için" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "'Ürün Paketi' kalemleri için Depo, Seri No ve Parti No 'Paketleme Listesi' tablosundan dikkate alınacaktır. Herhangi bir 'Ürün Paketi' kalemi için Depo ve Parti No tüm ambalaj kalemleri için aynıysa, bu değerler ana Kalem tablosuna girilebilir, değerler 'Paketleme Listesi' tablosuna kopyalanacaktır." @@ -21098,10 +21110,6 @@ msgstr "Şirket Seçimi" msgid "For Item" msgstr "Ürün için" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "{0} Ürünü için {2} {3} karşılığında {1} miktarından fazla alınamaz." - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21168,12 +21176,12 @@ msgid "For Work Order" msgstr "İş Emri İçin" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "{0} öğesinde, miktar negatif sayı olmalıdır" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Bir öğe için {0}, miktar pozitif sayı olmalıdır" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21205,13 +21213,13 @@ msgstr "Ne kadar kaldı = 1 Sadakat Noktası" msgid "For individual supplier" msgstr "Bireysel tedarikçi için" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "{0} Ürünü için oran pozitif bir sayı olmalıdır. Negatif oranlara izin vermek için {2} sayfasında {1} ayarını etkinleştirin" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21223,9 +21231,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "{0} Operasyonu için: Miktar ({1}) bekleyen ({2}) miktarıdan büyük olamaz" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21240,21 +21248,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "{0} Miktarı izin verilen {1} miktarından büyük olmamalıdır" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Referans İçin" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Satır {0} için {1} belgesi. Ürün fiyatına {2} masrafı dahil etmek için, satır {3} de dahil edilmelidir." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Satır {0}: Planlanan Miktarı Girin" @@ -21273,11 +21277,15 @@ msgstr "‘Başka Bir Kurala Uygula’ koşulu için {0} alanı zorunludur." msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Müşterilere kolaylık sağlamak için bu kodlar Fatura ve İrsaliye gibi basılı formatlarda kullanılabilir" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21365,6 +21373,21 @@ msgstr "Forum Mesajları" msgid "Forum URL" msgstr "Forum URL'si" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21908,7 +21931,7 @@ msgstr "Genel Muhasebe Bakiyesi" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Genel Muhasebe Girişi" @@ -22033,6 +22056,10 @@ msgstr "Genel Muhasebe" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22086,7 +22113,7 @@ msgstr "Stok Kapanış Girişi Oluştur" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22429,7 +22456,7 @@ msgstr "Taşıma Halindeki Ürünler" msgid "Goods Transferred" msgstr "Transfer Edilen Mallar" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "{0} numaralı çıkış kaydına karşılık mallar zaten alınmış" @@ -22612,7 +22639,7 @@ msgstr "" msgid "Grant Commission" msgstr "Komisyona İzin Ver" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Tutardan Büyük" @@ -22752,7 +22779,7 @@ msgstr "Satışlara Göre Gruplandır" msgid "Group by Voucher" msgstr "Faturaya Göre Gruplandır" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Deponun Ana Kategorisi işlemler için kullanılamaz" @@ -23055,7 +23082,7 @@ msgstr "İşletmenizde mevsimsel çalışma varsa Bütçeyi/Hedefi aylara dağı msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Yukarıda bahsedilen başarısız amortisman girişleri için hata kayıtları şunlardır: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "İşleme devam etmek için seçenekleriniz:" @@ -23083,7 +23110,7 @@ msgstr "Burada, haftalık izinleriniz önceki seçimlere göre önceden doldurul msgid "Hertz" msgstr "Hertz" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Merhaba," @@ -23119,7 +23146,7 @@ msgstr "" msgid "Hide Images" msgstr "Resimleri Gizle" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "Son Siparişleri Gizle" @@ -23704,15 +23731,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "Aksi takdirde, bu girişi İptal Edebilir veya Gönderebilirsiniz" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23750,7 +23777,7 @@ msgstr "Ürün Ağacının Hurda malzemeyle sonuçlanması durumunda Hurda Depos msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Eğer hesap dondurulursa, yeni girişleri belirli kullanıcılar yapabilir." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Eğer ürünün değerinin sıfır olmasını istiyorsanız, Ürünler tablosundan \"Sıfır Değerlemeye İzin Ver\" kutusunu işaretleyebilirsiniz." @@ -23851,7 +23878,7 @@ msgstr "Belirli işlemleri birbiriyle mutabık hale getirmeniz gerekiyorsa, lüt msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "Hala devam etmek istiyorsanız lütfen {0} ayarını etkinleştirin." @@ -24069,14 +24096,14 @@ msgstr "İthalat Faturaları" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "İçe Aktarma Başarılı" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24553,7 +24580,7 @@ msgstr "Alt montajlar için gereken ürünler dahil" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Gelir" @@ -24639,7 +24666,7 @@ msgstr "{0} adresinden gelen çağrı" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24648,7 +24675,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "İşlem Sonrası Yanlış Bakiye Miktarı" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Yanlış Parti Tüketildi" @@ -24656,11 +24683,11 @@ msgstr "Yanlış Parti Tüketildi" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Yeniden Sipariş İçin Depoda Yanlış Giriş (grup)" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Yanlış Bileşen Miktarı" @@ -24669,7 +24696,7 @@ msgstr "Yanlış Bileşen Miktarı" msgid "Incorrect Date" msgstr "Yanlış Tarih" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Yanlış Fatura" @@ -24686,7 +24713,7 @@ msgstr "Yanlış Referans Belgesi (Satın Alma İrsaliyesi Kalemi)" msgid "Incorrect Serial No Valuation" msgstr "Hatalı Seri No Değerleme" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Yanlış Seri Numarası Tüketildi" @@ -24769,7 +24796,7 @@ msgstr "Artış" msgid "Increment cannot be 0" msgstr "Artış 0 olamaz" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "{0} Özelliği için Artış 0 olamaz" @@ -24966,7 +24993,7 @@ msgid "Instruction" msgstr "Talimat" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Yetersiz Kapasite" @@ -24982,12 +25009,12 @@ msgstr "Yetersiz Yetki" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Yetersiz Stok" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Parti için Yetersiz Stok" @@ -25117,7 +25144,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Faiz ve/veya gecikme ücreti" @@ -25142,7 +25169,7 @@ msgstr "Dahili" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Şirket için İç Müşteri {0} zaten mevcut" @@ -25168,7 +25195,7 @@ msgstr "Dahili Satış Referansı Eksik" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "{0} şirketinin Dahili Tedarikçisi zaten mevcut" @@ -25189,7 +25216,7 @@ msgstr "{0} şirketinin Dahili Tedarikçisi zaten mevcut" msgid "Internal Transfer" msgstr "Hesaplar Arası Transfer" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Dahili Transfer Referansı Eksik" @@ -25231,8 +25258,8 @@ msgstr "Aralık 1 ila 59 Dakika arasında olmalıdır" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25251,7 +25278,7 @@ msgstr "Geçersiz Tahsis Edilen Tutar" msgid "Invalid Amount" msgstr "Geçersiz Miktar" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Geçersiz Özellik" @@ -25268,11 +25295,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Geçersiz Barkod. Bu barkoda bağlı bir Ürün yok." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Seçilen Müşteri ve Ürün için Geçersiz Genel Sipariş" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25292,13 +25319,13 @@ msgstr "Şirketler Arası İşlem için Geçersiz Şirket." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Geçersiz Maliyet Merkezi" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25319,11 +25346,11 @@ msgstr "" msgid "Invalid Discount" msgstr "Geçersiz İndirim" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Geçersiz Döküman" @@ -25353,7 +25380,7 @@ msgstr "Geçersiz Gruplama Ölçütü" msgid "Invalid Item" msgstr "Geçersiz Öğe" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Geçersiz Ürün Varsayılanları" @@ -25362,7 +25389,7 @@ msgstr "Geçersiz Ürün Varsayılanları" msgid "Invalid Ledger Entries" msgstr "Geçersiz Defter Girişleri" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25401,7 +25428,7 @@ msgstr "" msgid "Invalid Priority" msgstr "Geçersiz Öncelik" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Geçersiz Proses Kaybı Yapılandırması" @@ -25418,7 +25445,7 @@ msgstr "Geçersiz Miktar" msgid "Invalid Quantity" msgstr "Geçersiz Miktar" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25430,8 +25457,8 @@ msgstr "Geçersiz İade" msgid "Invalid Sales Invoices" msgstr "Geçersiz Satış Faturaları" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Geçersiz Program" @@ -25439,7 +25466,7 @@ msgstr "Geçersiz Program" msgid "Invalid Selling Price" msgstr "Geçersiz Satış Fiyatı" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Geçersiz Seri ve Parti" @@ -25456,7 +25483,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Geçersiz Değer" @@ -25466,14 +25493,14 @@ msgid "Invalid Warehouse" msgstr "Geçersiz Depo" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "Hesap {} için {} {} muhasebe girişlerinde geçersiz tutar: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Geçersiz koşul ifadesi" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25505,7 +25532,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "Geçersiz sonuç anahtarı. Yanıt:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26468,10 +26495,6 @@ msgstr "Veriliş Tarihi" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Ürünlerin birleştirilmesinden sonra doğru stok değerlerinin görünür hale gelmesi birkaç saat sürebilir." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Ürün Detaylarını almak için gereklidir." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26480,7 +26503,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "Toplam tutar sıfır olduğunda ücretleri eşit olarak dağıtmak mümkün değildir, lütfen 'Ücretleri Şuna Göre Dağıt' seçeneğini 'Miktar' olarak ayarlayın" @@ -26529,12 +26552,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26567,7 +26590,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26641,7 +26664,7 @@ msgstr "Ürün 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26802,7 +26825,7 @@ msgstr "Ürün Sepeti" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26834,7 +26857,7 @@ msgstr "Ürün Sepeti" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26843,12 +26866,12 @@ msgstr "Ürün Sepeti" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26944,7 +26967,7 @@ msgstr "Seri No için Ürün Kodu değiştirilemez." msgid "Item Code required at Row No {0}" msgstr "{0} Numaralı satırda Ürün Kodu gereklidir" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Ürün Kodu: {0} {1} deposunda mevcut değil." @@ -27140,7 +27163,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Ürün Grubu Ağacı" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Ürün {0} için Ürün grubu belirtilmemiş" @@ -27294,7 +27317,7 @@ msgstr "Üretici Firma" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27325,7 +27348,7 @@ msgstr "Üretici Firma" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27333,8 +27356,8 @@ msgstr "Üretici Firma" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27391,7 +27414,7 @@ msgstr "Üretici Firma" msgid "Item Name" msgstr "Ürün Adı" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27438,8 +27461,8 @@ msgstr "Ürün Fiyat Ayarları" msgid "Item Price Stock" msgstr "Ürün Stok Fiyatı" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27451,7 +27474,7 @@ msgstr "Ürün Fiyatı, Fiyat Listesi, Tedarikçi/Müşteri, Para Birimi, Ürün msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Ürün Fiyatı {0} için Fiyat Listesinde {1} güncellendi" @@ -27496,7 +27519,7 @@ msgstr "Ürün Yeniden Sipariş" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Ürün Satırı {0}: {1} {2} yukarıdaki '{1}' tablosunda mevcut değil" @@ -27612,7 +27635,7 @@ msgstr "Üretilecek Ürün" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Ürün Varyantı" @@ -27731,7 +27754,7 @@ msgstr "Ürün bazında Vergi Detayları" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27767,7 +27790,7 @@ msgstr "Hammaddeler tablosunda kalem seçimi zorunludur." msgid "Item is removed since no serial / batch no selected." msgstr "Seri/parti numarası seçilmediği için ürün kaldırıldı." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Ürün, 'Satın Alma İrsaliyelerinden Ürünleri Getir' butonu kullanılarak eklenmelidir" @@ -27781,7 +27804,7 @@ msgstr "Ürün Adı" msgid "Item operation" msgstr "Operasyon" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "Aşağıdaki kalemler için Sıfır Değerlemeye İzin Ver işaretlendiğinden, fiyat sıfır olarak güncellenmiştir: {0}" @@ -27796,7 +27819,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "Ürün değerleme oranı, indirilmiş maliyet kuponu tutarı dikkate alınarak yeniden hesaplanır" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Ürün değerlemesi yeniden yapılıyor. Rapor geçici olarak yanlış değerleme gösterebilir." @@ -27812,10 +27835,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "{0} Ürünü kendisine bir alt montaj olarak eklenemez" @@ -27824,6 +27843,10 @@ msgstr "{0} Ürünü kendisine bir alt montaj olarak eklenemez" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Ürün {0}, Toplu Sipariş {2} kapsamında {1} miktarından daha fazla sipariş edilemez." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27833,6 +27856,7 @@ msgstr "{0} ürünü mevcut değil" msgid "Item {0} does not exist in the system or has expired" msgstr "{0} Ürünü sistemde mevcut değil veya süresi dolmuş" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "{0} ürünü mevcut değil." @@ -27865,6 +27889,10 @@ msgstr "Ürün {0} {1} tarihinde kullanım süresinin sonuna gelmiştir." msgid "Item {0} ignored since it is not a stock item" msgstr "{0} Stok Kalemi olmadığından, ürün yok sayılır" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Ürün {0} zaten {1} Satış Siparişi karşılığında rezerve edilmiş/teslim edilmiştir." @@ -27897,7 +27925,7 @@ msgstr "{0} Ürünü Alt Yüklenici Kalemi olmalıdır" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "Ürün {0} aktif değil veya kullanım süresinin sonuna gelindi" @@ -27929,10 +27957,6 @@ msgstr "{0} ürünü {1} adetten daha az sipariş edilemez. Bu ayar ürün sayfa msgid "Item {0}: {1} qty produced. " msgstr "{0} Ürünü {1} adet üretildi. " -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "{0} Ürünü mevcut değil." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27983,6 +28007,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "{0} Ürünü sistemde mevcut değil" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27999,7 +28027,7 @@ msgstr "Ürün Kataloğu" msgid "Items Filter" msgstr "Ürünler Filtresi" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Ürünler Gereklidir" @@ -28039,7 +28067,7 @@ msgstr "Hammadde Talebi için Ürünler" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "Aşağıdaki kalemler için Sıfır Değerleme Oranına İzin Ver işaretlendiğinden kalem oranı sıfır olarak güncellenmiştir: {0}" @@ -28049,7 +28077,7 @@ msgstr "Aşağıdaki kalemler için Sıfır Değerleme Oranına İzin Ver işare msgid "Items to Be Repost" msgstr "Tekrar Gönderilecek Öğeler" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Üretilecek Ürünlerin, ilgili Hammaddeleri çekmesi gerekmektedir." @@ -28119,7 +28147,7 @@ msgstr "İş Kapasitesi" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28182,20 +28210,19 @@ msgstr "İş Kartı Zaman Kaydı" msgid "Job Card and Capacity Planning" msgstr "İş Kartı ve Kapasite Planlama" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "İş Kartı {0} tamamlandı" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "İş Kartları" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "İş Duraklatıldı" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "İş Başladı" @@ -28258,11 +28285,19 @@ msgstr "Yetkili Kişi Adı" msgid "Job Worker Warehouse" msgstr "Alt Yüklenici Deposu" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "İş Kartı {0} oluşturuldu" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "İş: {0} başarısız işlemlerin işlenmesi için tetiklendi" @@ -28608,7 +28643,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28729,7 +28764,7 @@ msgstr "Enlem" msgid "Lead" msgstr "Potansiyel Müşteri" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Müşteri Adayı > Potansiyel Müşteri" @@ -28823,7 +28858,7 @@ msgstr "Gün Bazında Teslim Süresi" msgid "Lead Type" msgstr "Aday Müşteri Türü" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "{0} isimli müşteri adayı {1} potansiyel müşteri listesine eklendi." @@ -28972,7 +29007,7 @@ msgstr "Defter" msgid "Length (cm)" msgstr "Uzunluk (cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Tutardan Az" @@ -29001,7 +29036,7 @@ msgstr "Ürün Ağacı Seviyesi" msgid "Lft" msgstr "Sol" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Yükümlülükler" @@ -29031,7 +29066,7 @@ msgstr "Ehliyet Numarası" msgid "License Plate" msgstr "Plaka" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Limit Aşıldı" @@ -29127,8 +29162,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Müşteriye Bağlantı Başarısız Oldu. Lütfen tekrar deneyin." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Tedarikçiye Bağlantı Başarısız Oldu. Lütfen tekrar deneyin." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29294,7 +29329,7 @@ msgstr "Kaybedilme Nedeni Detayı" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Kaybedilme Nedenleri" @@ -29380,7 +29415,7 @@ msgstr "Sadakat Puanı Kullanımı" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Sadakat Puanları, yapılan harcamalardan (Satış Faturası aracılığıyla), belirtilen tahsilat faktörüne göre hesaplanacaktır." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Sadakat Puanları: {0}" @@ -29618,7 +29653,7 @@ msgstr "Bakım Programı Detayı" msgid "Maintenance Schedule Item" msgstr "Bakım Programı Ürünü" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Bakım Programı tüm ürünler için oluşturulmadı. Lütfen 'Program Oluştur'a tıklayın" @@ -29715,7 +29750,7 @@ msgstr "Bakım Ziyareti" msgid "Maintenance Visit Purpose" msgstr "Bakım Ziyareti Amacı" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Bakım başlangıç tarihi Seri No {0} için teslimat tarihinden önce olamaz" @@ -29862,7 +29897,7 @@ msgstr "Bilanço için Zorunlu" msgid "Mandatory For Profit and Loss Account" msgstr "Kar ve Zarar Hesabı için Zorunlu" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Zorunlu Ayarı Eksik" @@ -29945,8 +29980,8 @@ msgstr "Manuel giriş oluşturulamaz! Hesap ayarlarında ertelenmiş muhasebe i #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30168,7 +30203,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "Alt Yüklenici Siparişi Eşleştiriliyor..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Eşleştiriliyor {0} ..." @@ -30346,10 +30381,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30376,7 +30407,7 @@ msgstr "Malzeme Tüketimi" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Üretim İçin Malzeme Tüketimi" @@ -30487,7 +30518,7 @@ msgstr "Malzeme Talebi" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Malzeme Talep Tarihi" @@ -30537,7 +30568,7 @@ msgstr "Malzeme Talep Ayrıntısı" msgid "Material Request Item" msgstr "Malzeme Talebi Ürünü" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Malzeme Talebi No" @@ -30559,7 +30590,7 @@ msgstr "Malzeme Talep Türü" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Hammaddeler için miktar zaten mevcut olduğundan Malzeme Talebi oluşturulmadı." @@ -30573,7 +30604,7 @@ msgstr "{2} Satış Siparişine karşı {1} Kalemi için maksimum {0} tutarında msgid "Material Request used to make this Stock Entry" msgstr "Bu stok hareketini yapmak için kullanılan Malzeme Talebi" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Malzeme Talebi {0} iptal edilmiş veya durdurulmuştur" @@ -30693,14 +30724,14 @@ msgstr "Tedarikçi için Malzeme" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Malzemeler zaten {0} {1} karşılığında alındı" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "{0} nolu İş Kartı için malzemelerin devam eden işler deposuna aktarılması gerekiyor" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30868,7 +30899,7 @@ msgstr "Megajoule" msgid "Megawatt" msgstr "Megawatt" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Ürün ana verisinde Değerleme Oranını belirtin." @@ -30903,7 +30934,7 @@ msgstr "Birleştirme İlerlemesi" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Birden fazla belgedeki vergileri birleştirme" @@ -31249,7 +31280,7 @@ msgstr "Çeşitli Giderler" msgid "Mismatch" msgstr "Uyuşmazlık" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Eksik" @@ -31258,11 +31289,11 @@ msgstr "Eksik" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Eksik Hesap" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31287,11 +31318,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Kayıp Finans Kitabı" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Eksik Bitmiş Ürün" @@ -31299,7 +31330,7 @@ msgstr "Eksik Bitmiş Ürün" msgid "Missing Formula" msgstr "Eksik Formül" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Eksik Ürünler" @@ -31311,7 +31342,7 @@ msgstr "" msgid "Missing Payments App" msgstr "Eksik Ödemeler Uygulaması" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31323,7 +31354,7 @@ msgstr "Eksik Seri No Paketi" msgid "Missing Warehouse" msgstr "Kayıp Depo" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31331,12 +31362,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Sevkiyat için e-posta şablonu eksik. Lütfen Teslimat Ayarlarında bir tane belirleyin." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Eksik Değer" @@ -31585,17 +31616,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Müşteri {} için birden fazla Sadakat Programı bulundu. Lütfen manuel olarak seçin." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Aynı kriterlere sahip birden fazla Fiyat Kuralı var, lütfen öncelik atayarak çakışmayı çözün. Fiyat Kuralları: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31615,7 +31646,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "{0} tarihi için birden fazla mali yıl var. Lütfen Mali Yıl'da şirketi ayarlayın" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "Birden fazla ürün bitmiş ürün olarak işaretlenemez" @@ -31624,10 +31655,10 @@ msgid "Music" msgstr "Müzik" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Tam Sayı" @@ -31712,11 +31743,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31760,7 +31787,7 @@ msgstr "İhtiyaç Analizi" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Negatif Miktara izin verilmez" @@ -31770,12 +31797,12 @@ msgstr "Negatif Miktara izin verilmez" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Negatif Değerleme Oranına izin verilmez" @@ -31853,8 +31880,8 @@ msgstr "Net Tutar" msgid "Net Amount (Company Currency)" msgstr "Net Tutar" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Tarihindeki Net Varlık Değeri" @@ -31904,7 +31931,7 @@ msgstr "Net Saat Ücreti" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Net Kazanç" @@ -31912,7 +31939,7 @@ msgstr "Net Kazanç" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Net Kâr/Zarar" @@ -31926,11 +31953,11 @@ msgstr "Net Kâr/Zarar" msgid "Net Purchase Amount" msgstr "Net Satın Alma Tutarı" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32174,7 +32201,7 @@ msgstr "" msgid "New Income" msgstr "Yeni Gelir" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "Yeni Fatura" @@ -32247,6 +32274,7 @@ msgid "New Task" msgstr "Yeni Görev" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Yeni Versiyon" @@ -32259,9 +32287,9 @@ msgstr "Yeni Depo İsmi" msgid "New Workplace" msgstr "Yeni Çalışma Bölümü" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Yeni kredi limiti, müşterinin mevcut ödenmemiş tutarından daha azdır. Kredi limiti en az {0} olmalıdır." +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32269,6 +32297,10 @@ msgstr "Yeni kredi limiti, müşterinin mevcut ödenmemiş tutarından daha azd msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Mevcut faturalar ödenmemiş veya vadesi geçmiş olsa bile, plana göre yeni faturalar oluşturulacaktır." +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Yeni çıkış tarihi gelecek tarihli olmalı" @@ -32281,7 +32313,7 @@ msgstr "" msgid "New task" msgstr "Yeni Görev" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "Yeni {0} fiyatlandırma kuralları oluşturuldu" @@ -32345,16 +32377,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Şirketi temsil eden Şirketler Arası İşlemler için Müşteri bulunamadı {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "Seçilen seçeneklere sahip Müşteri bulunamadı." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Müşteri {} için İrsaliye seçilmedi" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32362,15 +32393,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "{0} Barkodlu Ürün Bulunamadı" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "{0} Seri Numaralı Ürün Bulunamadı" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "Transfer için hiçbir Ürün seçilmedi." @@ -32413,11 +32444,6 @@ msgstr "İzin yok" msgid "No Purchase Orders were created" msgstr "Hiçbir Satın Alma Siparişi oluşturulmadı" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "Bu ayarlar için Kayıt Yok." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Seçim Yok" @@ -32520,6 +32546,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "E-posta kimliği olan kişi bulunamadı." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Bu döneme ait veri yok" @@ -32565,7 +32595,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "Transfer için uygun ürün bulunamadı." @@ -32602,10 +32632,6 @@ msgstr "Solda başka alt öğe yok" msgid "No more children on Right" msgstr "Sağda başka alt öğe yok" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32702,7 +32728,7 @@ msgstr "Ödenmemiş fatura bulunamadı" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Döviz kuru yeniden değerlemesi gerektiren ödenmemiş fatura yok" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "Belirttiğiniz filtreleri karşılayan {1} {2} için bekleyen {0} bulunamadı." @@ -32740,15 +32766,20 @@ msgstr "" msgid "No record found" msgstr "Kayıt Bulunamadı" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "Tahsis tablosunda kayıt bulunamadı" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "Fatura tablosunda kayıt bulunamadı" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "Ödemeler tablosunda kayıt bulunamadı" @@ -32777,7 +32808,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32814,7 +32845,7 @@ msgstr "Veri Yok" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32822,11 +32853,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "Şirketler Arası İşlemler için {0} bulunamadı." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "Sıra" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32878,7 +32904,7 @@ msgstr "Sıfır Olmayanlar" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Ürünlerin hiçbirinde miktar veya değer değişikliği yoktur." @@ -32889,8 +32915,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "Nos" @@ -32904,8 +32930,8 @@ msgstr "Nos" msgid "Not Applicable" msgstr "Kabul Edilmedi" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Mevcut Değil" @@ -32968,10 +32994,6 @@ msgstr "Başlamadı" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "{0} öğesi için alternatif öğeyi ayarlamaya izin verilmez" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "{0} için muhasebe boyutu oluşturulmasına izin verilmiyor" @@ -32988,10 +33010,6 @@ msgstr "{0} limitleri aştığı için yetkilendirilmedi" msgid "Not authorized to edit frozen Account {0}" msgstr "Dondurulmuş Hesabın düzenleme yetkisi yok {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "Stokta Yok" @@ -33004,7 +33022,7 @@ msgstr "Stokta Yok" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33249,8 +33267,8 @@ msgid "Numeric Values" msgstr "Sayısal Değer" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Numero XML kurulumunda ayarlanmadı" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33425,12 +33443,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Bir kez ayarlandığında, bu fatura belirlenen tarihe kadar bekletilecektir." #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "İş Emri Kapatıldıktan sonra, Devam ettirilemez." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Bir müşteri yalnızca tek bir Sadakat Programının parçası olabilir" +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33464,7 +33482,7 @@ msgstr "Sadece bu avans hesabına yapılan 'Ödeme Girişleri' desteklenmektedir msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Verileri içe aktarmak için yalnızca CSV ve Excel dosyaları kullanılabilir. Lütfen yüklemeye çalıştığınız dosya biçimini kontrol edin" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33529,7 +33547,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "İş Emri {1} için yalnızca bir {0} girişi oluşturulabilir" @@ -33596,7 +33614,7 @@ msgstr "Açık Etkinlik" msgid "Open Events" msgstr "Açık Etkinlikler" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Form Görünümünü Aç" @@ -33749,7 +33767,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Bakiye Ayrıntılarını Açma" @@ -33779,7 +33797,7 @@ msgstr "Açılış Tarihi" msgid "Opening Entry" msgstr "Açılış Fişi" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Açılış Faturası Oluşturma İşlemi Devam Ediyor" @@ -33807,7 +33825,7 @@ msgstr "Açılış Faturası Ürünü" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "Açılış Faturası {0} yuvarlama ayarına sahiptir.

                    '{1}' hesabının bu değerleri göndermesi gerekir. Lütfen Şirket'te bu hesabı ayarlayın: {2}.

                    Veya, herhangi bir yuvarlama ayarı göndermemek için '{3}' seçeneğini aktifleştirin." @@ -33816,7 +33834,7 @@ msgstr "Açılış Faturası {0} yuvarlama ayarına sahiptir.

                    '{1}' hesa msgid "Opening Invoices" msgstr "Açılış Faturaları" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Açılış Faturası Özeti" @@ -33846,20 +33864,20 @@ msgstr "Açılış Satış Faturaları oluşturuldu." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Açılış Stoku" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33868,7 +33886,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33911,7 +33929,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Operasyon Maliyeti" @@ -34002,7 +34020,7 @@ msgstr "Operasyon Satır Numarası" msgid "Operation Time" msgstr "Operasyon Süresi" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "{0} Operasyonu için İşlem Süresi 0'dan büyük olmalıdır" @@ -34026,8 +34044,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "{0} Operasyonu {1} İş Emrine ait değil" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "{0} Operasyonu, {1} iş istasyonundaki herhangi bir kullanılabilir çalışma saatinden daha uzun, Operasyonu birden fazla işleme bölün" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34212,6 +34230,10 @@ msgstr "Fırsat {0} oluşturuldu" msgid "Optimize Route" msgstr "Rotayı Optimize Et" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34228,10 +34250,6 @@ msgstr "İsteğe bağlı. Bu ayar, çeşitli işlemlerde filtreleme yapmak için msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Sipariş Tutarı" @@ -34517,7 +34535,7 @@ msgid "Out of stock" msgstr "Stokta yok" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34571,7 +34589,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34652,11 +34670,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Fazla Seçim İzni (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "Fazla Teslim Alma" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "{3} rolüne sahip olduğunuz için {2} ürünü için {0} {1} fazla alım/teslimat göz ardı edildi." @@ -34673,14 +34691,14 @@ msgstr "Fazla Transfer İzni (%)" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "{3} rolüne sahip olduğunuz için {2} ürünü için {0} {1} fazla faturalandırma göz ardı edildi." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "Rolünüz {} olduğu için {} fazla fatura türü göz ardı edildi." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34729,10 +34747,6 @@ msgstr "Gecikmiş Görevler" msgid "Overdue and Discounted" msgstr "Vadesi Geçmiş ve İndirimli" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "{0} ile {1} arasında puanlamada çakışma var" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Aşağıdakiler arasında örtüşen koşullar bulundu:" @@ -34798,6 +34812,11 @@ msgstr "PAN No" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34845,7 +34864,7 @@ msgstr "POS Satış Noktası" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34943,8 +34962,8 @@ msgid "POS Invoice is not submitted" msgstr "POS Faturası gönderilmedi" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "POS Faturası {} kullanıcısı tarafından oluşturulmadı" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35003,7 +35022,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -35024,7 +35043,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -35047,7 +35066,7 @@ msgstr "POS Ödeme Yöntemi" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "POS Profili" @@ -35067,8 +35086,8 @@ msgstr "POS Profil Kullanıcısı" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "POS Profili {} ile eşleşmiyor" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35079,19 +35098,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "POS Profili {} Ödeme Modu {} içerir. Bu modu devre dışı bırakmak için lütfen bunları kaldırın." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35121,11 +35140,11 @@ msgstr "POS Ayarları" msgid "POS Transactions" msgstr "POS İşlemleri" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "POS faturası {0} başarıyla oluşturuldu" @@ -35144,7 +35163,7 @@ msgstr "PSOA Projesi" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "Paket Numarası zaten kullanılıyor. Paket No {0} değerinden itibaren deneyin." @@ -35769,7 +35788,7 @@ msgstr "Milyonda Parça Sayısı" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35896,7 +35915,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35982,7 +36001,7 @@ msgstr "Partiye Özel Ürün" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36003,7 +36022,7 @@ msgstr "Cari Türü" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "Cari ve Cari Türü yalnızca Alacaklı / Borçlu hesaplar için ayarlanabilir

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "{0} hesabı için Cari Türü ve Cari zorunludur" @@ -36039,7 +36058,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36549,7 +36568,7 @@ msgstr "Ödeme Referansları" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36624,7 +36643,7 @@ msgstr "Ödeme Planı" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36646,7 +36665,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36746,8 +36765,8 @@ msgid "Payment Type" msgstr "Ödeme Türü" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Ödeme Türü, Alış, Ödeme veya Dahili Transfer olmalıdır" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36953,11 +36972,11 @@ msgstr "Bugün için bekleyen etkinlikler" msgid "Pending processing" msgstr "Bekleyen İşlemler" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37473,12 +37492,12 @@ msgstr "Plaid Client Kimliği" msgid "Plaid Environment" msgstr "Plaid Environment" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Plaid Bağlantısı Başarısız" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Plaid Bağlantısının Yenilenmesi Gerekiyor" @@ -37500,7 +37519,7 @@ msgstr "Plaid Secret" msgid "Plaid Settings" msgstr "Plaid Ayarları" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Ekose işlemleri senkronizasyon hatası" @@ -37651,15 +37670,6 @@ msgstr "Tesisler ve Makineler" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Lütfen Ürünleri Yeniden Stoklayın ve Devam Etmek İçin Toplama Listesini Güncelleyin. Devam etmemek için Toplama Listesini iptal edin." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Lütfen Firma Seçin" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Lütfen Firma Seçin." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37667,7 +37677,6 @@ msgstr "Lütfen Bir Müşteri Seçin" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Lütfen Bir Tedarikçi Seçin" @@ -37675,19 +37684,19 @@ msgstr "Lütfen Bir Tedarikçi Seçin" msgid "Please Set Priority" msgstr "Lütfen Önceliği Belirleyin" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Lütfen Satın Alma Ayarlarında Tedarikçi Grubunu Ayarlayın." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Lütfen Hesap Belirtin" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Lütfen {0} kullanıcısına 'Tedarikçi' Rolü ekleyin." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Lütfen ödeme şekli ve açılış bakiyesi bilgilerini ekleyin." @@ -37703,7 +37712,7 @@ msgstr "Lütfen Portal Ayarları kenar çubuğuna Teklif Talebi'ni ekleyin." msgid "Please add Root Account for - {0}" msgstr "Lütfen {0} için Kök Hesap ekleyin" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Lütfen Hesap Planına bir Geçici Açılış hesabı ekleyin" @@ -37711,35 +37720,32 @@ msgstr "Lütfen Hesap Planına bir Geçici Açılış hesabı ekleyin" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Lütfen en az bir Seri No / Parti No ekleyin" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Lütfen Banka Hesabı sütununu ekleyin" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Lütfen hesabı kök seviyesindeki Şirkete ekleyin - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Lütfen hesabın kök bölgesindeki Şirkete ekleyin - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Lütfen {0} kullanıcısına {1} rolünü ekleyin." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Lütfen miktarı ayarlayın veya devam etmek için {0} öğesini düzenleyin." @@ -37781,7 +37787,7 @@ msgstr "Lütfen operasyonları veya Bitmiş Ürün Bazlı İşletme Maliyetini k msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Lütfen hata mesajını kontrol edin ve hatayı düzeltmek için gerekli işlemleri yapın ve ardından yeniden göndermeyi yeniden başlatın." @@ -37794,11 +37800,11 @@ msgstr "Lütfen Plaid müşteri kimliğinizi ve gizli değerlerinizi kontrol edi msgid "Please check your email to confirm the appointment" msgstr "Randevuyu onaylamak için lütfen e-postanızı kontrol edin" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Lütfen 'Program Oluştur'a tıklayın" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "{0} Ürünü için eklenen Seri No'yu almak için lütfen 'Program Oluştur'a tıklayın." @@ -37814,15 +37820,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Kredi limitlerini uzatmak için lütfen aşağıdaki kullanıcılardan herhangi biriyle iletişime geçin: {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Bu işlemi {} yapmak için lütfen aşağıdaki kullanıcılardan herhangi biriyle iletişime geçin." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "{0} için kredi limitlerini uzatmak amacıyla lütfen yöneticinizle iletişime geçin." @@ -37830,11 +37836,11 @@ msgstr "{0} için kredi limitlerini uzatmak amacıyla lütfen yöneticinizle ile msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Lütfen ilgili alt şirketteki ana hesabı bir grup hesabına dönüştürün." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Lütfen {0} Müşteri Adayından oluşturun." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Lütfen ‘Stok Güncelle’ seçeneği etkin olan faturalar için İndirgenmiş Maliyet Fişleri oluşturun." @@ -37846,7 +37852,7 @@ msgstr "Gerekirse lütfen yeni bir Muhasebe Boyutu oluşturun." msgid "Please create purchase from internal sale or delivery document itself" msgstr "Lütfen satın alma işlemini dahili satış veya teslimat belgesinin kendisinden oluşturun" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Lütfen {0} ürünü için alış irsaliyesi veya alış faturası alın" @@ -37858,11 +37864,11 @@ msgstr "Lütfen {1} adresini {2} adresiyle birleştirmeden önce {0} Ürün Pake msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Lütfen birden fazla varlığın giderini tek bir Varlığa karşı muhasebeleştirmeyin." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Lütfen bir kerede 500'den fazla öğe oluşturmayın" @@ -37887,8 +37893,8 @@ msgid "Please enable {0} in the {1}." msgstr "Lütfen {1} içindeki {0} öğesini etkinleştirin." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Aynı öğeye birden fazla satırda izin vermek için lütfen {} içinde {} ayarını etkinleştirin" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37899,12 +37905,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Lütfen {0} hesabının {1} bir Borç hesabı olduğundan emin olun. Hesap türünü Ödenecek olarak değiştirebilir veya farklı bir hesap seçebilirsiniz." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Lütfen {} hesabının bir Bilanço Hesabı olduğundan emin olun." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Lütfen {} hesabının {} bir Alacak hesabı olduğundan emin olun." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37919,7 +37925,7 @@ msgstr "Değişim Miktarı Hesabı girin" msgid "Please enter Approving Role or Approving User" msgstr "Lütfen Onaylayan Rolü veya Onaylayan Kullanıcıyı girin" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37935,7 +37941,7 @@ msgstr "Lütfen Teslimat Tarihini giriniz" msgid "Please enter Employee Id of this sales person" msgstr "Lütfen bu satış elemanının Personel Kimliğini girin" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Lütfen Gider Hesabını girin" @@ -37944,7 +37950,7 @@ msgstr "Lütfen Gider Hesabını girin" msgid "Please enter Item Code to get Batch Number" msgstr "Parti Numarasını almak için lütfen Ürün Kodunu girin" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Parti numarasını almak için lütfen Ürün Kodunu girin" @@ -37980,7 +37986,7 @@ msgstr "Lütfen Referans tarihini giriniz" msgid "Please enter Root Type for account- {0}" msgstr "Lütfen hesap için Kök Türünü girin- {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38110,8 +38116,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Lütfen hesapları ana şirkete karşı içe aktarın veya şirket ana sayfasında {} öğesini etkinleştirin." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38146,11 +38152,7 @@ msgstr "Lütfen değiştirmek için Mevcut ve Yeni Ürün Ağacını belirtin." msgid "Please pull items from Delivery Note" msgstr "İrsaliyeden Ürünleri çekin" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Lütfen gözden geçirip tekrar deneyiniz." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Lütfen Banka {}'nın Plaid bağlantısını yenileyin veya sıfırlayın." @@ -38179,12 +38181,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "Şablonu indirmek için lütfen Şablon Türünü seçin" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Lütfen indirim uygula seçeneğini belirleyin" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Lütfen {0} Ürününe karşı Ürün Ağacını Seçin" @@ -38200,9 +38202,9 @@ msgstr "Lütfen Banka Hesabını Seçin" msgid "Please select Category first" msgstr "Lütfen önce Kategoriyi seçin" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Lütfen önce vergi türünü seçin" @@ -38212,8 +38214,8 @@ msgstr "Lütfen Şirket Seçin" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Girişleri almak için lütfen Şirket ve Gönderi Tarihini seçin" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38235,7 +38237,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Hesap Planı oluşturmak için Mevcut Şirketi seçiniz" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Lütfen Hizmet Kalemi için Bitmiş Ürünü seçin {0}" @@ -38244,6 +38246,10 @@ msgstr "Lütfen Hizmet Kalemi için Bitmiş Ürünü seçin {0}" msgid "Please select Item Code first" msgstr "Lütfen önce Ürün Kodunu seçin" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Lütfen Bakım Durumunu Tamamlandı olarak seçin veya Tamamlama Tarihini kaldırın" @@ -38268,11 +38274,11 @@ msgstr "Cariyi seçmeden önce Gönderme Tarihi seçiniz" msgid "Please select Posting Date first" msgstr "Lütfen önce Gönderi Tarihini seçin" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Lütfen Fiyat Listesini Seçin" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Lütfen {0} ürünü için miktar seçin" @@ -38301,6 +38307,7 @@ msgid "Please select a BOM" msgstr "Ürün Ağacı Seçin" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Bir Şirket Seçiniz" @@ -38308,11 +38315,12 @@ msgstr "Bir Şirket Seçiniz" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Lütfen önce bir Şirket seçin." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Lütfen bir müşteri seçin" @@ -38321,7 +38329,7 @@ msgstr "Lütfen bir müşteri seçin" msgid "Please select a Delivery Note" msgstr "Lütfen bir İrsaliye seçin" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Lütfen bir Alt Yüklenici Siparişi seçin." @@ -38333,7 +38341,7 @@ msgstr "Lütfen bir Tedarikçi Seçin" msgid "Please select a Warehouse" msgstr "Lütfen bir Depo seçin" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Lütfen önce bir İş Emri seçin." @@ -38349,6 +38357,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38382,22 +38391,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Yeniden Yayınlama Girişi oluşturmak için lütfen bir satır seçin" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Lütfen ödemeleri almak için bir tedarikçi seçin." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Lütfen Alt Sözleşme için yapılandırılmış geçerli bir Satın Alma Siparişi seçin." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Lütfen {1} Fiyat Teklifi {0} için bir değer seçin" @@ -38406,7 +38419,7 @@ msgstr "Lütfen {1} Fiyat Teklifi {0} için bir değer seçin" msgid "Please select an item code before setting the warehouse." msgstr "Depoyu ayarlamadan önce lütfen bir ürün kodu seçin." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38414,10 +38427,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38426,18 +38447,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Lütfen doğru hesabı seçin" @@ -38475,12 +38488,12 @@ msgstr "Lütfen rezerve edilecek ürünleri seçin." msgid "Please select items to unreserve." msgstr "Lütfen ayırmak istediğiniz ürünleri seçin." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Yeniden Yayınlama Girişi oluşturmak için lütfen yalnızca bir satır seçin" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Yeniden Yayınlama Girişi oluşturmak için lütfen bir satır seçin" @@ -38489,8 +38502,8 @@ msgid "Please select the Company" msgstr "Lütfen Şirketi seçiniz" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Birden fazla tahsilat kuralı için lütfen Çok Katmanlı Program türünü seçin." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38513,20 +38526,16 @@ msgstr "Lütfen önce belge türünü seçin." msgid "Please select the required filters" msgstr "Lütfen gerekli filtreleri seçin" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Lütfen geçerli belge türünü seçin." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Haftalık izin süresini seçin" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Lütfen Önce {0} Seçin" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Lütfen 'Ek İndirim Uygula' seçeneğini ayarlayın" @@ -38555,8 +38564,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Lütfen Depoda Hesap {0} veya Şirkette Varsayılan Envanter Hesabı {1} olarak ayarlayın" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Lütfen {} içinde Muhasebe Boyutunu {} ayarlayın" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38585,22 +38594,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Lütfen kişi için E-posta/Telefon ayarlayın" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Lütfen müşteri için Mali Kodu ayarlayın '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Lütfen müşteri için Mali Kodu ayarlayın '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Lütfen kamu idaresi için Mali Kodu belirleyin '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Lütfen kamu idaresi için Mali Kodu belirleyin '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Lütfen {} içindeki Sabit Kıymet Hesabını {} ile karşılaştırın." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38616,9 +38623,8 @@ msgid "Please set Root Type" msgstr "Lütfen Kök Türünü Ayarlayın" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Lütfen müşteri için Vergi Kimliğini ayarlayın '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Lütfen müşteri için Vergi Kimliğini ayarlayın '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38637,15 +38643,15 @@ msgid "Please set a Company" msgstr "Lütfen bir Şirket ayarlayın" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Lütfen Varlık için bir Maliyet Merkezi belirleyin veya Şirket için bir Varlık Amortisman Maliyet Merkezi belirleyin {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Lütfen {1} Şirketi için varsayılan bir Tatil Listesi ayarlayın" @@ -38662,9 +38668,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Lütfen Şirket için bir Adres belirleyin '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "Lütfen Şirket için bir Adres belirleyin '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38682,25 +38687,22 @@ msgstr "Lütfen Vergiler ve Ücretler Tablosunda en az bir satır ayarlayın" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "Lütfen {0} Şirketi için hem Vergi Kimlik Numarasını hem de Muhasebe Kodunu ayarlayın" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Lütfen Ödeme Şeklinde varsayılan Nakit veya Banka hesabını ayarlayın {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Lütfen Ödeme Şeklinde varsayılan Nakit veya Banka hesabını ayarlayın {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Lütfen Ödeme Şeklinde varsayılan Nakit veya Banka hesabını ayarlayın {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Lütfen Ödeme Şeklinde varsayılan Nakit veya Banka hesabını ayarlayın {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Lütfen {} Şirketi varsayılan Döviz Kazanç/Zarar Hesabını ayarlayın" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38731,11 +38733,11 @@ msgstr "Lütfen filtreyi Ürüne veya Depoya göre ayarlayın" msgid "Please set one of the following:" msgstr "Lütfen aşağıdakilerden birini ayarlayın:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Lütfen kaydettikten sonra yinelemeyi ayarlayın" @@ -38743,7 +38745,7 @@ msgstr "Lütfen kaydettikten sonra yinelemeyi ayarlayın" msgid "Please set the Customer Address" msgstr "Lütfen Müşteri Adresinizi ayarlayın" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Lütfen {0} şirketinde Varsayılan Maliyet Merkezini ayarlayın." @@ -38798,7 +38800,7 @@ msgstr "Lütfen {1} şirketinde Döviz Kur Farkı Kâr/Zarar hesabını ayarlama msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Lütfen {0} alanını {1} olarak ayarlayın, bu orijinal fatura {2} için kullanılan hesapla aynı olmalıdır." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Lütfen {1} şirketi için Hesap Türü {0} olan bir grup hesabı kurun ve etkinleştirin" @@ -38806,7 +38808,7 @@ msgstr "Lütfen {1} şirketi için Hesap Türü {0} olan bir grup hesabı kurun msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Sorunu bulup çözebilmeleri için lütfen bu e-postayı destek ekibinizle paylaşın." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Lütfen Şirketi belirtin" @@ -38816,8 +38818,8 @@ msgstr "Lütfen Şirketi belirtin" msgid "Please specify Company to proceed" msgstr "Lütfen devam etmek için Şirketi belirtin" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Lütfen {1} tablosundaki {0} satırında geçerli bir Satır Kimliği belirtin" @@ -38825,11 +38827,11 @@ msgstr "Lütfen {1} tablosundaki {0} satırında geçerli bir Satır Kimliği be msgid "Please specify a {0} first." msgstr "Lütfen önce bir {0} belirtin." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Lütfen Özellikler tablosunda en az bir özelliği belirtin" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Miktar veya Birim Fiyatı ya da her ikisini de belirtiniz" @@ -38837,6 +38839,14 @@ msgstr "Miktar veya Birim Fiyatı ya da her ikisini de belirtiniz" msgid "Please specify from/to range" msgstr "Lütfen başlangıç/bitiş aralığını belirtin" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Lütfen bir saat sonra tekrar deneyin." @@ -39000,7 +39010,7 @@ msgstr "Yayınlama Tarihi" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39025,7 +39035,7 @@ msgstr "Yayınlama Tarihi" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39068,8 +39078,8 @@ msgstr "Tarih" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Kaydetme Tarihi gelecekteki bir tarih olamaz" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39077,7 +39087,7 @@ msgstr "Kaydetme Tarihi gelecekteki bir tarih olamaz" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39270,6 +39280,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "Başkan" @@ -39359,7 +39373,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Önceki Mali Yıl Kapatılmadı" @@ -39501,7 +39515,7 @@ msgstr "Fiyat Listesi Ülkesi" msgid "Price List Currency" msgstr "Fiyat Listesi Para Birimi" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Fiyat Listesi Para Birimi seçilmedi" @@ -39622,7 +39636,7 @@ msgstr "Fiyat Ölçü Birimine Bağlı Değil" msgid "Price Per Unit ({0})" msgstr "Birim Fiyatı ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "Ürün için fiyat belirlenmedi." @@ -39733,7 +39747,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "{0} Fiyatlandırma Kuralı güncellendi" @@ -39941,8 +39955,8 @@ msgid "Priorities" msgstr "Öncelikler" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "Öncelik 1'den küçük olamaz." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40123,7 +40137,7 @@ msgstr "Aboneliği İşle" msgid "Process in Single Transaction" msgstr "Tek Bir İşlemde İşle" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40249,7 +40263,7 @@ msgstr "Ürün Paketi" msgid "Product Bundle Balance" msgstr "Ürün Paketi Bakiyesi" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40274,7 +40288,7 @@ msgstr "Ürün Paketi Yardımı" msgid "Product Bundle Item" msgstr "Ürün Paketi Kalemi" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40477,7 +40491,7 @@ msgstr "Ürünler" msgid "Profit & Loss" msgstr "Kar & Zarar" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Bu Yılın Kârı" @@ -40506,6 +40520,10 @@ msgstr "Kâr ve Zarar" msgid "Profit and Loss Statement" msgstr "Kâr ve Zarar Tablosu" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40514,8 +40532,8 @@ msgstr "Kâr ve Zarar Tablosu" msgid "Profit and Loss Summary" msgstr "Kâr ve Zarar Özeti" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Yıllık Kâr" @@ -40588,7 +40606,7 @@ msgstr "Proje Durumu" msgid "Project Summary" msgstr "Proje Özeti" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "{0} için Proje Özeti" @@ -40668,7 +40686,7 @@ msgstr "Proje Stok Takibi" msgid "Project wise Stock Tracking " msgstr "Proje Stok Takibi" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Teklif için proje bazında veri mevcut değil" @@ -40719,7 +40737,7 @@ msgstr "Öngörülen Miktar" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40865,7 +40883,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Etkileşimde Bulunulan Ancak Dönüşmeyen Adaylar" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40898,9 +40916,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "Geçici Gider Hesabı" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Geçici Kar/Zarar" @@ -41128,8 +41146,8 @@ msgstr "Alış Faturası Trend Grafikleri" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Satın Alma Faturası mevcut bir varlığa karşı yapılamaz {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Satınalma Faturası {0} zaten gönderildi" @@ -41170,7 +41188,7 @@ msgstr "Alış Faturaları" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41194,11 +41212,11 @@ msgstr "Alış Faturaları" msgid "Purchase Order" msgstr "Satın Alma Emri" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Satın Alma Siparişi Tutarı" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Satın Alma Siparişi Tutarı (Şirket Para Birimi)" @@ -41213,7 +41231,7 @@ msgstr "Satın Alma Siparişi Tutarı (Şirket Para Birimi)" msgid "Purchase Order Analysis" msgstr "Satın Alma Analizi" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Satın Alma Emri Tarihi" @@ -41262,8 +41280,8 @@ msgid "Purchase Order Required" msgstr "Satın Alma Emri Gerekli" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "{} için Satın Alma Emri Gerekli" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41322,8 +41340,8 @@ msgid "Purchase Orders to Receive" msgstr "Alınacak Satınalma Siparişleri" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Satın Alma Siparişleri {0} bağlantısı kaldırıldı" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41412,8 +41430,8 @@ msgid "Purchase Receipt Required" msgstr "Alış İrsaliyesi Gereklidir" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "{} kalemi için Alış İrsaliyesi Gereklidir" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41432,8 +41450,8 @@ msgid "Purchase Receipt Trends " msgstr "Alış İrsaliyesi Eğilimleri " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Satın Alma İrsaliyesinde Numune Sakla ayarı etkinleştirilmiş bir Ürün bulunmamaktadır." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41660,7 +41678,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41679,7 +41697,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41744,7 +41762,7 @@ msgstr "İşlem Sonrası Miktar" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41781,7 +41799,7 @@ msgstr "Birim Başına Miktar" msgid "Qty To Manufacture" msgstr "Üretilecek Miktar" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "Üretim Miktarı ({0}), {2} için kesirli olamaz. Bunu sağlamak için, {2} içindeki '{1}' seçeneğini devre dışı bırakın." @@ -41876,7 +41894,7 @@ msgstr "Tüketilecek Miktar" msgid "Qty to Bill" msgstr "Faturalandırılacak Miktar" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Üretilecek Miktar" @@ -42062,7 +42080,7 @@ msgstr "Kalite Kontrol" msgid "Quality Inspection Analysis" msgstr "Kalite Kontrol Analizi" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42139,7 +42157,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Kalite Kontrolleri" @@ -42222,7 +42240,7 @@ msgstr "İnceleme" msgid "Quality Review Objective" msgstr "Kalite Hedefi Amaçları" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42266,12 +42284,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42422,7 +42440,7 @@ msgstr "Miktar gereklidir" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42450,11 +42468,11 @@ msgstr "Miktar 0'dan büyük olmalıdır" msgid "Quantity to Manufacture" msgstr "Üretilecek Miktar" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "{0} işlemi için Üretim Miktarı sıfır olamaz" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Üretim Miktar 0'dan büyük olmalıdır." @@ -42462,6 +42480,10 @@ msgstr "Üretim Miktar 0'dan büyük olmalıdır." msgid "Quantity to Scan" msgstr "Taranacak Miktar" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42487,7 +42509,7 @@ msgstr "{0}. Çeyrek {1}" msgid "Query Route String" msgstr "Sorgu Rota Dizesi" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "Kuyruk Boyutu 5 ile 100 arasında olmalıdır" @@ -42727,7 +42749,7 @@ msgstr "Talep eden (Email)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42911,7 +42933,7 @@ msgid "Rate at which this tax is applied" msgstr "Bu verginin uygulandığı oran" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43230,7 +43252,7 @@ msgstr "Beklemeye Alma Nedeni" msgid "Reason for Failure" msgstr "Başarısızlığın Nedeni" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Bekletme Nedeni" @@ -43472,8 +43494,8 @@ msgstr "Alıcı listesi boş. Lütfen Alıcı listesi oluşturun." msgid "Receiving" msgstr "Alınıyor (mal kabul)" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Son Siparişler" @@ -43649,6 +43671,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43699,7 +43725,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Yineleme Miktarı 0'dan küçük olamaz." #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "Karışık koşullarla yapılan yinelemeli indirimler sistem tarafından desteklenmemektedir." @@ -43779,7 +43805,7 @@ msgstr "Referans #" msgid "Reference #{0} dated {1}" msgstr "Referans #{0} tarih {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Erken Ödeme İndirimi için Referans Tarihi" @@ -44071,8 +44097,8 @@ msgid "Rejected Warehouse" msgstr "Red Deposu" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Red Deposu ile Kabul Deposu aynı olamaz." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44178,7 +44204,7 @@ msgstr "Açıklama" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44217,7 +44243,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "Ürüne uygulanamayan masraflar varsa ürünü kaldırın." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Miktarında veya değerinde değişiklik olmayan ürünler kaldırıldı." @@ -44368,7 +44394,7 @@ msgstr "Hatayı Rapor Et" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44451,7 +44477,7 @@ msgstr "Hata Günlüğünü Yeniden Gönder" msgid "Repost Item Valuation" msgstr "Yeniden Değerleme" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44497,6 +44523,15 @@ msgstr "Yeniden gönderme arka planda başlatıldı" msgid "Reposting Data File" msgstr "Veri Dosyasını Yeniden Gönderme" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44581,7 +44616,7 @@ msgstr "İstenen Tarih" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Tarihe göre talep" @@ -44697,11 +44732,11 @@ msgstr "İstenen Miktar" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "Talep Edilen Miktar: Satın alma için talep edilen, ancak sipariş edilmemiş miktar." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Talep Edilen Site" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Talep Eden" @@ -44880,6 +44915,10 @@ msgstr "Stok Rezervi" msgid "Reserve Warehouse" msgstr "Rezerv Deposu" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44918,8 +44957,8 @@ msgid "Reserved Qty" msgstr "Ayrılan Miktar" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "Ayrılan Miktar ({0}) kesirli olamaz. Bunu sağlamak için, {3} Biriminde '{1}' özelliğini devre dışı bırakın." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Ayrılan Miktar ({0}) kesirli olamaz. Bunu sağlamak için, {2} Biriminde '{1}' özelliğini devre dışı bırakın." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44963,7 +45002,7 @@ msgstr "Ayrılan Miktar" msgid "Reserved Quantity for Production" msgstr "Üretim İçin Ayrılan Miktar" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Ayrılmış Seri No." @@ -44979,13 +45018,13 @@ msgstr "Ayrılmış Seri No." #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Ayrılmış Stok" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Parti için Ayrılmış Stok" @@ -45479,6 +45518,10 @@ msgstr "Geri dönen döviz kuru ne tam sayı ne de ondalıklı sayı." msgid "Returns" msgstr "İadeler" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45903,11 +45946,11 @@ msgstr "Rota İsmi" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Satır # {0}: Ürün {2} için {1} miktarından fazlası iade edilemez" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Satır # {0}: Lütfen {1} ürünü için Seri ve Parti Paketi ekleyin" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45991,23 +46034,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "Satır #{0}: Parti No {1} zaten seçili." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Satır #{0}: Ödeme süresi {2} için {1} değerinden daha fazla tahsis edilemez" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -46083,13 +46126,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Satır #{0}: Kümülatif eşik, Tek İşlem eşiğinden az olamaz" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46101,7 +46147,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46109,12 +46155,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46126,7 +46172,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Satır #{0}: Bitmiş Ürün için varsayılan {1} Ürün Ağacı bulunamadı" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Satır #{0}: Amortisman Başlangıç Tarihi gerekli" @@ -46134,6 +46180,10 @@ msgstr "Satır #{0}: Amortisman Başlangıç Tarihi gerekli" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Satır #{0}: Referanslarda yinelenen giriş {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Satır #{0}: Beklenen Teslimat Tarihi Satın Alma Siparişi Tarihinden önce olamaz" @@ -46146,11 +46196,18 @@ msgstr "Satır #{0}: Gider Hesabı {1} Öğesi için ayarlanmadı. {2}" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Satır #{0}: Bitmiş Ürün Miktarı sıfır olamaz." +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46173,8 +46230,8 @@ msgstr "Satır #{0}: Bitmiş Ürün {1} olmalıdır" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46186,7 +46243,7 @@ msgstr "Satır #{0}: {1} için, yalnızca hesap alacaklandırılırsa referans b msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Satır #{0}: {1} için, yalnızca hesap alacaklandırılırsa referans belgesini seçebilirsiniz" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46198,6 +46255,10 @@ msgstr "Satır #{0}: Başlangıç Tarihi Bitiş Tarihinden önce olamaz" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Satır # {0}: Ürün eklendi" @@ -46226,16 +46287,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Satır #{0}: Ürün {1}, Serili/Partili bir ürün değil. Seri No/Parti No’su atanamaz." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46251,12 +46312,16 @@ msgstr "Satır #{0}: {1} bir stok kalemi değildir" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46267,15 +46332,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Satır #{0}: Defter Girişi {1} için , {2} hesabı mevcut değil veya zaten başka bir giriş ile eşleştirilmiş." -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46287,24 +46352,48 @@ msgstr "Satır #{0}: Satın Alma Emri zaten mevcut olduğundan Tedarikçiyi değ msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Satır #{0}: Yalnızca {1} Öğesi {2} için rezerve edilebilir" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Satır #{0}: Lütfen Montaj Öğelerinde Ürün Kodunu seçin" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Satır #{0}: Lütfen Montaj Kalemleri için Ürün Ağacı No'yu seçin" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46320,6 +46409,10 @@ msgstr "Satır #{0}: Lütfen yeniden sipariş miktarını ayarlayın" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Satır #{0}: Lütfen kalem satırındaki ertelenmiş gelir/gider hesabını veya şirket ana sayfasındaki varsayılan hesabı güncelleyin" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46339,8 +46432,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Satır #{0}: Miktar pozitif bir sayı olmalıdır" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Satır #{0}: Miktar, {4} deposunda {3} Partisi için {2} ürününe karşı Rezerve Edilebilir Miktar'dan (Gerçek Miktar - Rezerve Edilen Miktar) {1} küçük veya eşit olmalıdır." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46362,7 +46455,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Satır #{0}: {1} kalemi için miktar sıfır olamaz." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46370,17 +46463,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Satır #{0}: {1} Kalemi için rezerve edilecek miktar 0'dan büyük olmalıdır." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Satır #{0}: {1} işlemindeki fiyat ile aynı olmalıdır: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Satır #{0}: Referans Belge Türü Satın Alma Emri, Satın Alma Faturası veya Defter Girişi'nden biri olmalıdır" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Satır #{0}: Referans Belge Türü, Satış Siparişi, Satış Faturası, Yevmiye Kaydı veya Takip Uyarısı’ndan biri olmalıdır" @@ -46400,11 +46493,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46414,7 +46507,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46423,6 +46516,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Satır #{0}: Seri No {1} , Parti {2}'ye ait değil" @@ -46435,7 +46532,7 @@ msgstr "Satır #{0}: {2} ürünü için Seri No {1}, {3} {4} için mevcut değil msgid "Row #{0}: Serial No {1} is already selected." msgstr "Satır #{0}: Seri No {1} zaten seçilidir." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46459,7 +46556,7 @@ msgstr "Satır #{0}: {1} kalemi için Tedarikçiyi Ayarla" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46528,7 +46625,7 @@ msgstr "Satır #{0}: {2} Deposundaki {1} Ürünü için rezerve edilecek stok me msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46536,19 +46633,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "Satır #{0}: {1} grubu zaten sona erdi." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Satır #{0}: {1} deposu, {2} grup deposunun alt deposu değildir." #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Satır #{0}: Zamanlamalar {1} satırı ile çakışıyor" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Satır #{0}: Toplam Amortisman Sayısı, Kayıtlı Amortismanların Açılış Sayısından az veya eşit olamaz" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46560,11 +46665,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Satır #{0}: Envanter boyutu ‘{1}’ Stok Sayımı miktarı veya değerleme oranını değiştirmek için kullanılamaz. Envanter boyutlarıyla yapılan stok doğrulaması yalnızca açılış kayıtları için kullanılmalıdır." @@ -46572,6 +46681,19 @@ msgstr "Satır #{0}: Envanter boyutu ‘{1}’ Stok Sayımı miktarı veya değe msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Satır #{0}: {1} Öğesi için bir Varlık seçmelisiniz." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Satır #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Satır #{0}: {1} kalemi {2} için negatif olamaz" @@ -46588,6 +46710,14 @@ msgstr "Açılış {2} Faturalarını oluşturmak için #{0}: {1} satırı gerek msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Satır #{0}: {1}/{2} değeri {3} olmalıdır. Lütfen {1} alanını güncelleyin veya farklı bir hesap seçin." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46628,71 +46758,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Satır #{}: {} - {} para birimi şirket para birimiyle eşleşmiyor." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Satır #{}: Birden fazla kullandığınız için Finans Defteri boş olmamalıdır." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Satır # {}: POS Faturası {} {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Satır #{}: POS Faturası {} müşteriye ait değil {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Satır #{}: POS Faturası {} henüz gönderilmedi" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Satır #{}: Lütfen bir üyeye görev atayın." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Satır #{}: Lütfen farklı bir Finans Defteri kullanın." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Satır #{}: Seri No {}, orijinal faturada işlem görmediği için iade edilemez {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Satır #{}: İade faturasının {} orijinal Faturası {} birleştirilmemiştir." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Satır #{}: Bir iade faturasına pozitif miktarlar ekleyemezsiniz. İadeyi tamamlamak için lütfen {} öğesini kaldırın." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Satır #{}: {} öğesi zaten seçildi." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Satır #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Satır #{}: {} {} mevcut değil." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Satır #{}: {} {}, {} Şirketine ait değil. Lütfen geçerli {} seçin." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Satır No {0}: Depo gereklidir. Lütfen {1} ürünü ve {2} Şirketi için Varsayılan Depoyu ayarlayın." @@ -46705,10 +46774,6 @@ msgstr "Satır {0} : Hammadde öğesine karşı işlem gerekiyor {1}" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "Satır {0}: Seçilen miktar gereken miktardan daha az, ek olarak {1} {2} gerekli." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Satır {0}#: Ürün {1}, {2} {3} içindeki ‘Tedarik Edilen Ham Maddeler’ tablosunda bulunamadı." - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Satır {0}: Kabul Edilen Miktar ve Reddedilen Miktar aynı anda sıfır olamaz." @@ -46729,19 +46794,19 @@ msgstr "Satır {0}: Müşteriye Verilen Avans, borç olmalıdır." msgid "Row {0}: Advance against Supplier must be debit" msgstr "Satır {0}: Tedarikçiye karşı avans borçlandırılmalıdır" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Satır {0}: Tahsis edilen tutar {1}, fatura kalan tutarı {2}’den az veya ona eşit olmalıdır" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Satır {0}: Tahsis edilen tutar {1}, kalan ödeme tutarı {2} değerinden az veya ona eşit olmalıdır." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Satır {0}: {1} etkin olduğu için, ham maddeler {2} girişine eklenemez. Ham maddeleri tüketmek için {3} girişini kullanın." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Satır {0}: {1} Ürünü için Ürün Ağacı bulunamadı" @@ -46757,11 +46822,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Satır {0}: Dönüşüm Faktörü zorunludur" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Satır {0}: Maliyet Merkezi {1} {2} şirketine ait değil" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Satır {0}: Bir Ürün için maliyet merkezi gereklidir {1}" @@ -46789,24 +46854,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Satır {0}: Ödeme Koşulları tablosundaki Son Tarih, Gönderim Tarihinden önce olamaz" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Satır {0}: Ya İrsaliye Kalemi ya da Paketlenmiş Kalem referansı zorunludur." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Satır {0}: Döviz Kuru zorunludur" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46827,6 +46892,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Satır {0}: Başlangıç Saati ve Bitiş Saati zorunludur." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Satır {0}: {1} için Başlangıç ve Bitiş Saatleri {2} ile çakışıyor" @@ -46848,8 +46916,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Satır {0}: Geçersiz referans {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Satır {0}: Ürün Vergi şablonu geçerliliğe ve uygulanan orana göre güncellendi" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46879,7 +46947,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Satır {0}: Paketlenen Miktar {1} Miktarına eşit olmalıdır." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Satır {0}: {1} Kalemi için Paketleme Fişi zaten oluşturulmuştur." @@ -46903,7 +46971,7 @@ msgstr "Satır {0}: Satış/Alış Siparişine karşı yapılan ödeme her zaman msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Satır {0}: Eğer bu bir avans kaydı ise, Hesap {1} için ‘Avans’ seçeneğini işaretleyin." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Satır {0}: Lütfen geçerli bir İrsaliye Kalemi veya Paketlenmiş Ürün referansı sağlayın." @@ -46911,14 +46979,14 @@ msgstr "Satır {0}: Lütfen geçerli bir İrsaliye Kalemi veya Paketlenmiş Ür msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Satır {0}: Lütfen {1} Ürünü için bir Ürün Ağacı seçin." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Satır {0}: Lütfen {1} Ürünü için bir Aktif Ürün Ağacı seçin." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Satır {0}: Lütfen {1} Ürünü için bir Aktif Ürün Ağacı seçin." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Satır {0}: Lütfen Satış Vergileri ve Ücretleri bölümündeki Vergi Muafiyet Sebebi kısmından ayarlayın" @@ -46935,11 +47003,11 @@ msgstr "Satır {0}: Lütfen Ödeme Şekli {1} adresinde doğru kodu ayarlayın" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Satır {0}: Proje, Zaman Çizelgesi'nde ayarlanan proje ile aynı olmalıdır: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Satır {0}: {1} Alış Faturasının stok etkisi yoktur." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Satır {0}: Miktar, {2} Kalemi için {1} değerinden büyük olamaz." @@ -46947,7 +47015,7 @@ msgstr "Satır {0}: Miktar, {2} Kalemi için {1} değerinden büyük olamaz." msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Satır {0}: Stoktaki Miktar Ölçü Birimi sıfır olamaz." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Satır {0}: Miktar Sıfırdan büyük olmalıdır." @@ -46959,7 +47027,7 @@ msgstr "Satır {0}: Miktar negatif olamaz." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46984,10 +47052,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Satır {0}: Ürün {1} için miktar pozitif sayı olmalıdır" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Satır {0}: {3} Hesabı {1} {2} şirketine ait değildir" @@ -47040,15 +47108,19 @@ msgstr "Satır {0}: {1} {2} , {3} (Cari Hesabı) {4} ile aynı olamaz" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Satır {0}: {1} {2} {3} ile eşleşmiyor" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Satır {0}: {2} Öğe {1} {2} {3} içinde mevcut değil" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Satır {1}: Miktar ({0}) kesirli olamaz. Bunu etkinleştirmek için, {3} Ölçü Biriminde ‘{2}’ seçeneğini devre dışı bırakın." @@ -47087,8 +47159,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Satırlar: {0} referans_türü olarak 'Ödeme Girişi'ne sahiptir. Bu manuel olarak ayarlanmamalıdır." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Satırlar: {0} {1} bölümünde Geçersiz. Referans Adı geçerli bir Ödeme Kaydına veya Yevmiye Kaydına işaret etmelidir." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47148,10 +47220,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47219,7 +47287,7 @@ msgstr "SLA Gerçekleştirildi Durumu" msgid "SLA Paused On" msgstr "SLA Duraklatıldığı Tarih" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "SLA {0} tarihinden beri beklemede" @@ -47518,8 +47586,8 @@ msgid "Sales Invoice is not submitted" msgstr "Satış Faturası gönderilmedi" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "Satış Faturası {} kullanıcısı tarafından oluşturulmadı" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47735,8 +47803,8 @@ msgstr "Satış Siparişi {0} Müşterinin Satın Alma Siparişi {1} ile zaten m msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48143,7 +48211,7 @@ msgstr "Aynı Ürün" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Aynı Ürün ve Depo kombinasyonu zaten girilmiş." @@ -48175,7 +48243,7 @@ msgstr "Numune Saklama Deposu" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Numune Boyutu" @@ -48285,7 +48353,7 @@ msgstr "Taranan Miktar" msgid "Schedule Date" msgstr "Planlama Tarihi" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48296,7 +48364,7 @@ msgstr "" msgid "Scheduled Date" msgstr "Planlanan Tarih" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48584,7 +48652,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "Muhasebe Boyutunu seçin." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Alternatif Ürün Seçin" @@ -48605,7 +48673,7 @@ msgid "Select BOM and Qty for Production" msgstr "Üretim için Ürün Ağacı ve Miktar Seçin" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Parti No Seçin" @@ -48670,7 +48738,7 @@ msgstr "Boyut Seçin" msgid "Select Dispatch Address " msgstr "Sevkiyat Adresini Seçin " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Personel Seçin" @@ -48695,7 +48763,7 @@ msgstr "Ürünleri Seçin" msgid "Select Items based on Delivery Date" msgstr "Ürünleri Teslimat Tarihine Göre Seçin" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "Kalite Kontrolü için Ürün Seçimi" @@ -48725,7 +48793,7 @@ msgstr "Alt Yüklenici Adresini Seçin" msgid "Select Loyalty Program" msgstr "Sadakat Programı Seç" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48739,13 +48807,13 @@ msgid "Select Quantity" msgstr "Miktarı Girin" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Seri No Seçin" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Seri ve Parti Seçin" @@ -48836,6 +48904,7 @@ msgid "Select an Item Group." msgstr "Bir Ürün Grubu seçin." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Hesap para biriminde yazdırmak için bir hesap seçin" @@ -48978,10 +49047,14 @@ msgstr "Seçilmiş Faturalar" msgid "Selected date is" msgstr "Seçilen Tarih" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "Seçilen belgenin gönderilmiş durumda olması gerekir" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49129,7 +49202,7 @@ msgid "Send Emails to Suppliers" msgstr "Tedarikçilere E-posta Gönder" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "SMS Gönder" @@ -49213,7 +49286,7 @@ msgstr "Seri / Toplu Paket Eksik" msgid "Serial / Batch No" msgstr "Seri / Parti No" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Seri ve Parti Numaraları" @@ -49270,10 +49343,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49315,6 +49389,10 @@ msgstr "Seri No / Parti" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Seri No Sayısı" @@ -49332,7 +49410,7 @@ msgstr "Seri No Kayıtları" msgid "Serial No Range" msgstr "Seri No Aralığı" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "Seri No Ayrılmış" @@ -49377,8 +49455,8 @@ msgid "Serial No and Batch" msgstr "Seri No ve Parti" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "Seri / Parti Alanlarını Kullan etkinleştirildiğinde Seri No ve Parti Seçici kullanılamaz." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49389,7 +49467,7 @@ msgstr "Seri / Parti Alanlarını Kullan etkinleştirildiğinde Seri No ve Parti msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "Seri No zorunludur" @@ -49409,21 +49487,18 @@ msgstr "Seri No {0} zaten tarandı" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Seri No {0} {1} İrsaliyesine ait değil" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Seri No {0} {1} Ürününe ait değildir" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Seri No {0} mevcut değil" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "Seri No {0} mevcut değil" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49438,25 +49513,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Seri No {0} {1} {2} içinde mevcut değildir, bu nedenle {1} {2} adına iade edemezsiniz" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Seri No {0} {1} tarihine kadar bakım sözleşmesi altındadır" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Seri No {0} {1} tarihine kadar garanti altındadır" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Seri No {0} bulunamadı" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Seri No: {0} başka bir POS Faturasına aktarılmış." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49476,7 +49552,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "Seri Numaraları başarıyla oluşturuldu" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Seri Numaraları Stok Rezervasyon Girişlerinde rezerve edilmiştir, devam etmeden önce rezervasyonlarını kaldırmanız gerekmektedir." @@ -49577,6 +49653,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49625,7 +49705,7 @@ msgstr "Seri No ve Parti Rezervasyonu" msgid "Serial and Batch Summary" msgstr "Seri ve Parti Özeti" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Seri numarası {0} birden fazla girildi" @@ -49633,122 +49713,12 @@ msgstr "Seri numarası {0} birden fazla girildi" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Seri" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Varlık Amortisman Serisi (Defter Girişi)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Seri zorunludur" @@ -49830,7 +49800,7 @@ msgid "Service Item {0} is disabled." msgstr "Hizmet Ürünü {0} devre dışı bırakıldı." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "Hizmet Kalemi {0} stok olarak işaretlenmemiş bir kalem olmalıdır." @@ -49939,12 +49909,12 @@ msgid "Service Stop Date" msgstr "Servis Durdurma Tarihi" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Hizmet Durdurma Tarihi, Hizmet Bitiş Tarihinden sonra olamaz" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "Hizmet Durdurma Tarihi, Hizmet Başlangıç Tarihinden önce olamaz" @@ -49968,7 +49938,7 @@ msgstr "Peşinatları Ayarla ve Tahsis Et (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Birim Fiyatı Elle Ayarla" @@ -49983,7 +49953,7 @@ msgstr "Varsayılan Tedarikçi" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50088,7 +50058,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50106,7 +50076,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50132,7 +50102,7 @@ msgstr "Kapalı olarak ayarla" msgid "Set as Completed" msgstr "Tamamlandı Olarak Ayarla" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Kayıp olarak ayarla" @@ -50230,15 +50200,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Şirket {2} için {1} varlık kategorisinde {0} değerini ayarlayın" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Varlık kategorisi {1} veya şirket {2} için {0} değerini ayarlayın" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "{1} şirketinde {0} Ayarlayın" @@ -50306,7 +50276,7 @@ msgid "Setting up company" msgstr "Şirket kuruluyor" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50734,6 +50704,7 @@ msgid "Show Completed" msgstr "Tamamlananları Göster" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50936,7 +50907,7 @@ msgstr "Yalnızca Hemen Yaklaşan Dönemi Göster" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Bekleyen girişleri göster" @@ -51041,11 +51012,11 @@ msgstr "Okuma alanlarına uygulanan basit Python formülü.
                    Sayısal örn. 1 msgid "Simultaneous" msgstr "Eşzamanlı" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Bitmiş ürün {1} için {0} birimlik bir proses kaybı olduğundan, Ürünler Tablosunda bitmiş ürün {1} miktarını {0} birim azaltmalısınız." @@ -51106,7 +51077,7 @@ msgstr "Devam Eden İşlere Malzeme Transferini Atla" msgid "Skip Material Transfer to WIP Warehouse" msgstr "Hammaddeyi Devam Eden İş Deposuna Aktarma" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51162,8 +51133,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Bir şeyler ters gitti lütfen tekrar deneyin" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51230,7 +51201,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51267,8 +51238,8 @@ msgstr "Kaynak Türü" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51398,7 +51369,7 @@ msgstr "Sorunu Böl" msgid "Split Qty" msgstr "Bölünmüş Miktar" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "Bölünmüş Miktar, Varlık Miktarından az olmalıdır" @@ -51411,7 +51382,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Ödeme Koşullarına göre {0} {1} satırlarını {2} satırlarına bölme" @@ -51464,7 +51440,7 @@ msgstr "Aşama Adı" msgid "Stale Days" msgstr "Eski Günler" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Eski Günler 1’den başlamalıdır." @@ -51529,10 +51505,26 @@ msgstr "Tüm Satış İşlemlerine uygulanabilen standart vergi şablonu. Bu şa msgid "Standing Name" msgstr "Durum Adı" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Başlat / Durdur" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Başlangıç Tarihi, geçerli karşılaştırma önce olamaz" @@ -51562,7 +51554,7 @@ msgstr "{0} için Başlangıç Saati Bitiş Saatinden büyük veya eşit olamaz. msgid "Start Timer" msgstr "Zamanlayıcıyı Başlat" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51591,10 +51583,14 @@ msgstr "Ürün {0} için başlangıç tarihi, bitiş tarihinden önce olmalıdı msgid "Start date should be less than end date for task {0}" msgstr "Görev için başlangıç tarihi bitiş tarihinden küçük olmalıdır {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51675,7 +51671,7 @@ msgstr "Durum Görseli" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Durum İptal Edilmeli veya Tamamlanmalı" @@ -51803,8 +51799,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "Stok Kapanış Girişi {0} seçilen tarih aralığı için zaten mevcut" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "Stok Kapanış Girişi {0} işlenmek üzere sıraya alınmıştır, sistemin bunu tamamlaması biraz zaman alacaktır." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51885,17 +51881,21 @@ msgstr "" msgid "Stock Entry Type" msgstr "Stok Hareket Türü" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Stok Girişi bu Seçim Listesine karşı zaten oluşturuldu" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Stok Girişi {0} oluşturuldu" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Stok Girişi {0} oluşturuldu" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52061,7 +52061,7 @@ msgstr "Öngörülen Stok Miktarı" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52144,7 +52144,7 @@ msgstr "Stok Yeniden Gönderim Ayarları" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52169,15 +52169,15 @@ msgstr "Stok Rezervasyonu" msgid "Stock Reservation Entries Cancelled" msgstr "Stok Rezervasyon Girişleri İptal Edildi" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Stok Rezervasyon Girişleri Oluşturuldu" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52347,7 +52347,7 @@ msgstr "Stok Hareketleri" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52506,9 +52506,9 @@ msgstr "İş Emri {0} için ayrılmış stok iptal edildi." msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "{1} Deposunda {0} Ürünü için stok mevcut değil." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "{0} koduna sahip Ürün için {1} Deposundaki stok miktarı yetersiz. Mevcut miktar {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52526,7 +52526,7 @@ msgstr "Belirtilen günlerden daha eski olan stok işlemleri değiştirilemez." msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "Satış Siparişi için oluşturulan Malzeme Talebine karşı oluşturulan Satın Alma İrsaliyesi onaylandığında stok rezerve edilecektir." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "Stok/Hesaplar dondurulamaz çünkü geriye dönük girişlerin işlenmesi devam ediyor. Lütfen daha sonra tekrar deneyin." @@ -52541,7 +52541,7 @@ msgstr "Stone" msgid "Stop Reason" msgstr "Duruş Nedeni" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Durdurulan İş Emri iptal edilemez, iptal etmek için önce durdurmayı kaldırın" @@ -52549,7 +52549,7 @@ msgstr "Durdurulan İş Emri iptal edilemez, iptal etmek için önce durdurmayı #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Mağazalar" @@ -52763,7 +52763,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52835,7 +52835,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52873,7 +52873,7 @@ msgstr "Alt Yüklenici Sipariş Kalemi" msgid "Subcontracting Order Supplied Item" msgstr "Alt Yüklenici Siparişi Tedarik Edilen Ürün" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Alt Sözleşme Siparişi {0} oluşturuldu." @@ -52947,7 +52947,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52966,7 +52966,7 @@ msgstr "" msgid "Subdivision" msgstr "Alt Bölüm" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Gönderim Eylemi Başarısız Oldu" @@ -52995,7 +52995,7 @@ msgstr "Daha fazla işlem için bu İş Emrini gönderin." msgid "Submit your Quotation" msgstr "Teklifinizi Gönderin" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53137,7 +53137,7 @@ msgstr "Başarı Ayarları" msgid "Successful" msgstr "Başarılı" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Başarıyla Uzlaştırıldı" @@ -53315,7 +53315,7 @@ msgstr "Tedarik Edilen Miktar" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53497,7 +53497,7 @@ msgstr "Tedarikçi Fatura Tarihi" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Tedarikçi Fatura No" @@ -53645,7 +53645,7 @@ msgstr "Tedarikçi Teklifi Karşılaştırması" msgid "Supplier Quotation Item" msgstr "Tedarikçi Teklif Ürünü" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Tedarikçi Teklifi {0} Oluşturuldu" @@ -53830,10 +53830,6 @@ msgstr "Destek Ekibi" msgid "Support Tickets" msgstr "Destek Talepleri" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53919,7 +53915,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "Stopaj Vergisi Hesaplama Özeti" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "Kesilen Stopaj Vergisi" @@ -53980,8 +53976,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "Hedef Varlık {0} {1} şirketine ait değil" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "Hedef Varlık {0} bileşik varlık olmalıdır" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54090,11 +54086,11 @@ msgstr "Hedef Depo Adres Bağlantısı" msgid "Target Warehouse Reservation Error" msgstr "Hedef Depo Stok Rezerve Edilemedi" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "Kaydetmeden önce Devam Eden İşler Deposu gereklidir" @@ -54570,7 +54566,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Vergilendirilebilir Tutar" @@ -54782,7 +54778,7 @@ msgstr "Televizyon" msgid "Template Item" msgstr "Şablon Ürünü" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Şablon Öğesi Seçildi" @@ -55089,23 +55085,27 @@ msgstr "Tesla" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "'Paket No'dan' alanı boş olmamalı veya değeri 1'den küçük olmamalıdır." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "Portaldan Teklif İsteğine Erişim Devre Dışı Bırakıldı. Erişime İzin Vermek için Portal Ayarlarında etkinleştirin." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "Değiştirilecek Ürün Ağacı" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "'{0}' Kampanyası {1} '{2}' için zaten mevcuttur." @@ -55130,6 +55130,10 @@ msgstr "Genel Muhasebe Girişleri ve kapanış bakiyeleri arka planda işlenecek msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Genel Muhasebe Girişleri arka planda iptal edilecektir, bu işlem birkaç dakika sürebilir." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Sadakat Programı seçilen şirket için geçerli değil" @@ -55147,9 +55151,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "Stok Rezervasyon Girişleri olan Seçim Listesi güncellenemez. Değişiklik yapmanız gerekiyorsa, Seçim Listesini güncellemeden önce mevcut Stok Rezervasyon Girişlerini iptal etmenizi öneririz." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "Proses Kaybı Miktarı, iş kartlarındaki Proses Kaybı Miktarına göre sıfırlandı." +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55159,11 +55166,15 @@ msgstr "Satış Personeli {0} ile bağlantılıdır" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Satır #{0}: {1} Seri Numarası, {2} deposunda mevcut değil." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Seri No {0} , {1} {2} için ayrılmıştır ve başka bir işlem için kullanılamaz." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Seri ve Parti Paketi {0}, bu işlem için geçerli değil. Seri ve Parti Paketi {0} içinde ‘İşlem Türü’ ‘Giriş’ yerine ‘Çıkış’ olmalıdır." @@ -55211,15 +55222,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "Faturanın para birimi {} ({}) bu ihtarnamenin para biriminden ({}) farklıdır." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55268,6 +55279,10 @@ msgstr "Hissedara alanı boş bırakılamaz" msgid "The field {0} in row {1} is not set" msgstr "{1} satırındaki {0} alanı ayarlanmamış" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Hissedardan ve Hissedara alanları boş bırakılamaz" @@ -55289,9 +55304,9 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "Folio numaraları eşleşmiyor" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "Aşağıdaki ürünler, Raf Yerleştirme Kurallarına (Putaway Rules) sahip olduğundan yerleştirilemedi:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55318,8 +55333,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Aşağıdaki personeller şu anda hala {0} adlı kişiye raporlama yapmaktadır:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "Aşağıdaki geçersiz Fiyatlandırma Kuralları silindi:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55330,7 +55345,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "Aşağıdaki {0} oluşturuldu: {1}" @@ -55366,8 +55381,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "{0} iş kartı {1} durumundadır ve tamamlayamazsınız." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55404,12 +55419,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "{0} işlemi birden fazla eklenemez" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "{0} işlemi alt işlem olamaz" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55457,6 +55472,10 @@ msgstr "Sipariş edilen miktara karşılık daha fazlasını transfer etmenize i msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "Sipariş edilen miktara karşılık daha fazlasını transfer etmenize izin verilen yüzde. Örneğin: 100 adet sipariş verdiyseniz, ve İzin Verilen Oran %10 ise 110 birim aktarmanıza izin verilir." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55466,7 +55485,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "Rezerv stok, öğeleri güncellediğinizde serbest bırakılacaktır. Devam etmek istediğinizden emin misiniz?" @@ -55483,8 +55502,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Seçilen Ürün Ağaçları aynı ürün için değil" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Seçilen değişim hesabı {} {} Şirketine ait değil." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55500,8 +55519,8 @@ msgstr "Satıcı ve alıcı aynı olamaz" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "Seri ve parti paketi {0}, {1} {2} ile bağlantılı değil" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55519,11 +55538,11 @@ msgstr "Hisseler zaten mevcut" msgid "The shares don't exist with the {0}" msgstr "{0} ile paylaşımlar mevcut değil" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "{1} deposundaki {0} ürünü için stok, {2} tarihinde negatife düştü. Bu durumu düzeltmek için {4} tarihi ve {5} saatinden önce {3} işlemiyle pozitif bir stok girişi oluşturmalısınız. Aksi takdirde, sistem doğru değerleme oranını hesaplayamaz." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "Stok aşağıdaki Ürünler ve Depolar için rezerve edilmiştir, Stok Sayımı {0} için rezerve edilmeyen hale getirin:

                    {1}" @@ -55545,17 +55564,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "Görev arka plan işi olarak sıraya alındı. Arka planda işlemede herhangi bir sorun olması durumunda, sistem bu Stok Sayımı hata hakkında bir yorum ekleyecek ve Taslak aşamasına geri dönecektir." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "Görev arka plan işi olarak kuyruğa alındı. Arka planda işlem yapılmasında herhangi bir sorun olması durumunda sistem bu Stok Sayımı hata hakkında yorum ekleyecek ve Gönderildi aşamasına geri dönecektir." #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "Malzeme Talebi {1} içindeki toplam Çıkış / Transfer miktarı {0}, {3} ürünü için izin verilen talep miktarı {2} değerinden fazla olamaz." +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55593,7 +55612,7 @@ msgstr "Bu Role sahip kullanıcıların, işlem dondurulmuş olsa bile bir stok msgid "The value of {0} differs between Items {1} and {2}" msgstr "{0} değeri {1} ve {2} Ürünleri arasında farklılık gösterir" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "{0} değeri zaten mevcut bir Öğeye {1} atandı." @@ -55617,7 +55636,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) ile {2} ({3}) eşit olmalıdır" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55625,7 +55644,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} başarıyla oluşturuldu" @@ -55633,6 +55652,10 @@ msgstr "{0} {1} başarıyla oluşturuldu" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} , bitmiş ürün {2} adına değerleme maliyetini hesaplamak için kullanılır." @@ -55641,7 +55664,7 @@ msgstr "{0} {1} , bitmiş ürün {2} adına değerleme maliyetini hesaplamak iç msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Varlık üzerinde aktif bakım veya onarımlar var. Varlığı iptal etmeden önce bunların hepsini tamamlamanız gerekir." @@ -55653,7 +55676,7 @@ msgstr "Hisse senedi sayısı ve hesaplanan tutar arasında tutarsızlıklar var msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "Bu hesaba karşı defter kayıtları vardır. Canlı sistemde {0} adresinin {1} olmayan bir adresle değiştirilmesi 'Hesaplar {2}' raporunda yanlış çıktıya neden olacaktır" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "Başarısız işlem yok" @@ -55670,6 +55693,10 @@ msgstr "Demo Verilerinin oluşturulabileceği aktif bir Mali Yıl bulunamadı." msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "Bu tarihte boş yer bulunmamaktadır" @@ -55686,10 +55713,6 @@ msgstr "Stok değerlemesini sürdürmek için iki seçenek vardır. FIFO (ilk gi msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "Seçili kalem için herhangi bir varyant yok" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Toplam harcamaya bağlı olarak birden fazla kademeli tahsilat faktörü olabilir. Ancak geri ödeme için dönüşüm faktörü tüm katmanlar için her zaman aynı olacaktır." @@ -55718,21 +55741,21 @@ msgstr "{0} için grup bulunamadı: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "Bu Stok Girişinde en az 1 Bitmiş Ürün bulunmalıdır" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Plaid ile bağlantı sırasında Banka Hesabı oluşturulurken bir hata oluştu." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "İşlemler senkronize edilirken bir hata oluştu." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Plaid ile bağlantı kurulurken Banka Hesabı {} güncellenirken bir hata oluştu." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55782,15 +55805,19 @@ msgstr "Bu Ayın Özeti" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55812,7 +55839,7 @@ msgstr "Bu eylem, bu hesabı ERPNext'i banka hesaplarınızla entegre eden herha msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55830,7 +55857,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "Kuruluma bağlı tüm puan kartlarını kapsar" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Bu belge, {4} ürünü için {0} {1} sınırını aşmış. Aynı {2} için başka bir {3} mi oluşturuyorsunuz?" @@ -55972,7 +55999,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "Bu ürün filtresi {0} için zaten uygulandı" @@ -56036,7 +56063,7 @@ msgstr "Bu çizelge, Varlık {0} 'ın Satış Faturası {1} aracılığıyla iad msgid "This schedule was created when Asset {0} was scrapped." msgstr "Bu program, Varlık {0} hurdaya çıkarıldığında oluşturuldu." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -56063,10 +56090,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "Bu bölüm, kullanıcının Yazdır'da kullanılabilecek dile bağlı olarak İhtar Mektubunun Gövde ve Kapanış metnini İhtar Türü için ayarlamasına olanak tanır." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56124,8 +56151,8 @@ msgid "This will restrict user access to other employee records" msgstr "Kullanıcının diğer personel kayıtlarına erişimini kısıtlayacaktır." #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "Bu {} hammadde transferi olarak değerlendirilecektir." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56253,6 +56280,12 @@ msgstr "Zaman (dakika) " msgid "Timeline" msgstr "Zaman cetveli" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56539,8 +56572,8 @@ msgid "To Time" msgstr "Bitiş Zamanı" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "Bitiş tarihi başlangıç tarihinden önce olamaz" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56570,15 +56603,15 @@ msgstr "Operasyonları Yönetmek için 'Operasyonlar' kutusunu işaretleyin." msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Alt yüklenici ürünü için ham maddeleri eklemek, “Patlatılmış Ürünleri Dahil Et” seçeneği devre dışı bırakıldığında mümkündür." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Fazla faturalandırmaya izin vermek için Hesap Ayarları'nda veya Öğe'de \"Fazla Faturalandırma İzni \"ni güncelleyin." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Fazla alım/teslimat yapılmasına izin vermek için Stok Ayarlarında veya Üründe \"Fazla Alım/Teslimat Ödeneği\"ni güncelleyin." @@ -56595,8 +56628,8 @@ msgid "To be Delivered to Customer" msgstr "Müşteriye Teslim Edilecek" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "{} iptal etmek için POS Kapanış Girişini {} iptal etmeniz gerekir." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56607,8 +56640,8 @@ msgid "To create a Payment Request reference document is required" msgstr "Ödeme Talebi oluşturmak için referans belgesi gereklidir" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Devam Eden Sermaye Çalışması Muhasebesini Etkinleştirmek için," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56620,8 +56653,8 @@ msgstr "Malzeme talebi planlamasına stokta olmayan kalemleri dahil etmek için. msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "{0} nolu satırdaki verginin ürün fiyatına dahil edilebilmesi için, {1} satırındaki vergiler de dahil edilmelidir" @@ -56641,7 +56674,7 @@ msgstr "Bunu geçersiz kılmak için {1} şirketinde '{0}' ayarını etkinleşti msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Bu Özellik Değerini düzenlemeye devam etmek için Ürün Varyant Ayarlarında {0} seçeneğini etkinleştirin." @@ -56658,10 +56691,12 @@ msgstr "Satın alma irsaliyesi olmadan faturayı göndermek için {0} değerini msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Farklı bir finans defteri kullanmak için lütfen 'Varsayılan FD Varlıklarını Dahil Et' seçeneğinin işaretini kaldırın" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Farklı bir finans defteri kullanmak için lütfen 'Varsayılan FD Girişlerini Dahil Et' seçeneğinin işaretini kaldırın" @@ -56740,8 +56775,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "Toplam (Şirket Para Birimi)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Toplam (Alacak)" @@ -56783,6 +56818,22 @@ msgstr "Toplam Ek Maliyetler" msgid "Total Advance" msgstr "Toplam Peşinat" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56830,11 +56881,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "Yazıyla Toplam Tutar" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Satın Alma Makbuzu Kalemleri tablosundaki Toplam Uygulanabilir Ücretler, Toplam Vergiler ve Ücretler tablosuyla aynı olmalıdır" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Toplam Varlık" @@ -57016,7 +57067,7 @@ msgstr "Toplam Teslimat Tutarı" msgid "Total Demand (Past Data)" msgstr "Toplam Talep (Geçmiş Veriler)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "Toplam Sermaye" @@ -57025,11 +57076,11 @@ msgstr "Toplam Sermaye" msgid "Total Estimated Distance" msgstr "Toplam Tahmini Mesafe" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Toplam Gider" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Bu Yılın Toplam Gideri" @@ -57067,11 +57118,11 @@ msgstr "Toplam Tutma Süresi" msgid "Total Holidays" msgstr "Toplam Tatil Günü" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Toplam Gelir" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Bu Yılın Toplam Geliri" @@ -57114,7 +57165,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "Toplam Yükümlülük" @@ -57429,7 +57480,7 @@ msgstr "Toplam Vergi" msgid "Total Taxes and Charges (Company Currency)" msgstr "Toplam Vergiler (DENEME)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Toplam Süre (Dakika)" @@ -57438,7 +57489,11 @@ msgstr "Toplam Süre (Dakika)" msgid "Total Time in Mins" msgstr "Toplam Süre (Dakika)" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Toplam Ödenmeyen: {0}" @@ -57517,7 +57572,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "Satış ekibine ayrılan toplam yüzde 100 olmalıdır" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Toplam katkı yüzdesi 100'e eşit olmalıdır" @@ -57535,8 +57590,8 @@ msgstr "Toplam saat: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Toplam ödeme tutarı {} miktarından büyük olamaz." +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57553,9 +57608,9 @@ msgstr "" msgid "Total {0} ({1})" msgstr "Toplam {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Tüm ürünler için toplam {0} sıfır olduğu için ‘Giderleri Dağıtma Yöntemi’ni değiştirmeniz gerekebilir." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57643,27 +57698,11 @@ msgstr "İzleme Durum Bilgisi" msgid "Tracking URL" msgstr "İzleme Bağlantısı" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "İşlem" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "İşlem Para Birimi" @@ -57716,11 +57755,11 @@ msgstr "İşlem Silme Kayıt Öğesi" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58110,6 +58149,10 @@ msgstr "Geçici Mizan (Basit)" msgid "Trial Balance for Party" msgstr "Cari Geçici Mizan" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58294,7 +58337,7 @@ msgstr "BAE KDV Ayarları" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58316,7 +58359,7 @@ msgstr "BAE KDV Ayarları" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58346,7 +58389,7 @@ msgstr "BAE KDV Ayarları" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58410,7 +58453,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Ölçü Birimi Dönüşüm Faktörü" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Ölçü Birimi Dönüşüm faktörü ({0} -> {1}) {2} Ürünü için bulunamadı" @@ -58484,7 +58527,7 @@ msgstr "Uzlaşmayı Kaldır" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58497,10 +58540,6 @@ msgstr "{0} ile {1} arasındaki anahtar tarih için döviz kuru bulunamadı {2}. msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "{0} ile {1} arasındaki anahtar tarih için döviz kuru bulunamadı {2}. Lütfen manuel olarak bir Döviz Kuru kaydı oluşturun." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "{0} ile başlayan puan bulunamadı. 0 ile 100 arasında değişen sabit puanlara sahip olmanız gerekiyor" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "Önümüzdeki {0} gün içinde {1} operasyonu için zaman aralığı bulunamıyor. Lütfen {2} sayfasındaki 'Kapasite Planlama' alanının değerini artırın." @@ -58525,7 +58564,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Dağıtılmamış Tutar" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Atanmamış Miktar" @@ -58537,8 +58576,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "Faturanın Engelini Kaldır" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58588,7 +58629,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58611,7 +58652,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Ölçü Birimi" @@ -58814,7 +58855,7 @@ msgstr "planlanmamış" msgid "Unsecured Loans" msgstr "Teminatsız Krediler" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "Eşleşen Ödeme Talebini Ayarla" @@ -58827,7 +58868,7 @@ msgstr "İmzalanmadı" msgid "Unsubscribe from this Email Digest" msgstr "Bu E-Posta Özeti Aboneliğinden Ayrılın" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58971,7 +59012,7 @@ msgstr "Mevcut Stoğu Güncelle" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59035,7 +59076,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "Tüm Ürün Ağaçlarındaki Fiyatları Güncelle" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "Satın Alma faturası için stok güncelleme etkinleştirilmelidir {0}" @@ -59263,7 +59304,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "İşlem Tarihi Döviz Kurunu Kullan" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Önceki proje isminden farklı bir isim kullanın" @@ -59352,6 +59393,10 @@ msgstr "Kullanıcı Çözüm Süresi" msgid "User has not applied rule on the invoice {0}" msgstr "Kullanıcı fatura üzerinde kural uygulamadı {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Kullanıcı {0} mevcut değil" @@ -59364,6 +59409,10 @@ msgstr "{0} Kullanıcısının herhangi bir varsayılan POS Profili yok. Bu Kull msgid "User {0} is already assigned to Employee {1}" msgstr "Kullanıcı {0} zaten {1} Personele atanmış" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Kullanıcı {0}: Eşlenen bir çalışan olmadığı için Çalışan Self Servis rolü kaldırıldı." @@ -59372,10 +59421,6 @@ msgstr "Kullanıcı {0}: Eşlenen bir çalışan olmadığı için Çalışan Se msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Kullanıcı {0}: Eşlenen bir çalışan olmadığı için Çalışan rolü kaldırıldı." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Kullanıcı {} devre dışı bırakıldı. Lütfen geçerli kullanıcı seçin" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59668,15 +59713,15 @@ msgstr "Değerleme Fiyatı / Oranı" msgid "Valuation Rate (In / Out)" msgstr "Değerleme Fiyatı (Giriş / Çıkış)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Değerleme Fiyatı Eksik" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Ürün {0} için Değerleme Oranı, {1} {2} muhasebe kayıtlarını yapmak için gereklidir." @@ -59684,7 +59729,7 @@ msgstr "Ürün {0} için Değerleme Oranı, {1} {2} muhasebe kayıtlarını yapm msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Açılış Stoku girilirse Değerleme Oranı zorunludur" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "{1} nolu satırdaki {0} Ürünü için Değerleme Oranı gereklidir" @@ -59694,7 +59739,7 @@ msgstr "{1} nolu satırdaki {0} Ürünü için Değerleme Oranı gereklidir" msgid "Valuation and Total" msgstr "Değerleme ve Toplam" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "Müşteri tarafından sağlanan ürünler için değerleme oranı sıfır olarak ayarlandı." @@ -59707,14 +59752,14 @@ msgstr "Müşteri tarafından sağlanan ürünler için değerleme oranı sıfı msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Satış Faturasına göre ürün için değerleme oranı (Sadece Dahili Transferler için)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Değerleme türü ücretleri Dahil olarak işaretlenemez" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Değerleme türü ücretleri Dahil olarak işaretlenemez" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59764,12 +59809,12 @@ msgstr "Değer Önerisi" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "Değer Tarihi Olarak" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Özellik {0} için değer, {4} ürünü için {1} ile {2} aralığında ve {3} artışlarıyla olmalıdır." @@ -59778,19 +59823,19 @@ msgstr "Özellik {0} için değer, {4} ürünü için {1} ile {2} aralığında msgid "Value of Goods" msgstr "Malların Değeri" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Yeni Sermayelendirilmiş Varlığın Maliyeti" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Yeni Satın Alma Değeri" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Hurdaya Çıkarılan Varlığın Değeri" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Satılan Varlığın Değeri" @@ -60266,7 +60311,7 @@ msgstr "Belge Adı" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60294,7 +60339,7 @@ msgstr "Belge Adı" msgid "Voucher No" msgstr "Belge Numarası" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Belge No Zorunludur" @@ -60306,7 +60351,7 @@ msgstr "Belge Miktarı" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Giriş Türü" @@ -60338,7 +60383,7 @@ msgstr "Giriş Türü" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60545,7 +60590,7 @@ msgstr "Depo Zorunludur" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Hesap {0} karşılığında depo bulunamadı." @@ -60563,16 +60608,16 @@ msgstr "Depoya Göre Ürün Bakiye Yaşı ve Değeri" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "{0} Deposunda {1} ürününe ait stok olduğundan silinemez." -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "{0} Deposu, {1} şirketine ait değil." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Depo {0} {1} şirketine ait değil" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60693,7 +60738,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Uyarı - Satır {0}: Faturalama Saatleri Gerçek Saatlerden Fazla" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "Eksi Stokta Uyar" @@ -60713,7 +60758,7 @@ msgstr "Uyarı: Stok girişi {2} için başka bir {0} # {1} mevcut." msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Uyarı: Talep Edilen Malzeme Miktarı Minimum Sipariş Miktarından Az" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60867,10 +60912,6 @@ msgstr "Web Sitesi Ürün Grubu" msgid "Website Specifications" msgstr "Web Sitesi Özellikleri" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61016,7 +61057,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61192,17 +61233,17 @@ msgstr "Devam Eden İşler" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61241,7 +61282,7 @@ msgstr "İş Emri Tüketilen Malzemeler" msgid "Work Order Item" msgstr "İş Emri Ürünü" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61282,20 +61323,20 @@ msgstr "İş Emri Özeti" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Aşağıdaki nedenden dolayı İş Emri oluşturulamıyor:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "İş Emri bir Ürün Şablonuna karşı oluşturulamaz" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "İş Emri {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61316,7 +61357,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "İş Emirleri" @@ -61341,7 +61382,7 @@ msgstr "Devam Eden" msgid "Work-in-Progress Warehouse" msgstr "Devam Eden İş Deposu" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Göndermeden önce Devam Eden İşler Deposu gereklidir" @@ -61394,7 +61435,7 @@ msgstr "Çalışma Saatleri" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61626,14 +61667,6 @@ msgstr "Yıl" msgid "Year Start Date" msgstr "Başlangıç" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61648,8 +61681,8 @@ msgid "You are importing data for the code list:" msgstr "Kod listesi için veri aktarıyorsunuz:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "{} İş Akışında belirlenen koşullara göre güncelleme yapmanıza izin verilmiyor." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61668,8 +61701,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "Ürün için gereken miktardan fazlasını topluyorsunuz {0}. Satış siparişi için başka bir toplama listesi oluşturulup oluşturulmadığını kontrol edin {1}." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "Devam etmek için asıl faturayı {} manuel olarak ekleyebilirsiniz." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61679,19 +61712,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "Bu bağlantıyı kopyalayıp tarayıcınıza da yapıştırabilirsiniz" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Ayrıca, Şirket içinde genel Sermaye Devam Eden İşler hesabını da ayarlayabilirsiniz {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Ana hesabı Bilanço hesabına dönüştürebilir veya farklı bir hesap seçebilirsiniz." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61713,8 +61742,8 @@ msgid "You can only select one mode of payment as default" msgstr "Varsayılan olarak yalnızca bir ödeme yöntemi seçebilirsiniz" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "En çok {0} kullanabilirsiniz." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61732,14 +61761,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "İş Emri kapalı olduğundan İş Kartında herhangi bir değişiklik yapamazsınız." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "Seri ve Parti Paketi {1} içinde zaten kullanılmış olduğu için seri numarası {0} işlenemez. {2} Eğer aynı seri numarasını birden fazla kez almak veya üretmek istiyorsanız, {3} içinde ‘Mevcut Seri Numarasının Yeniden Üretilmesine/Alınmasına İzin Ver’ seçeneğini etkinleştirin." - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61748,17 +61769,17 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "Herhangi bir Ürün için Ürün Ağacı belirtilmişse fiyatı değiştiremezsiniz." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "Kapatılan Hesap Dönemi {1} içinde bir {0} oluşturamazsınız" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Kapalı Hesap Döneminde herhangi bir muhasebe girişi oluşturamaz veya iptal edemezsiniz {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "Bu tarihe kadar herhangi bir muhasebe kaydı oluşturamaz/değiştiremezsiniz." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61769,15 +61790,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "'Harici' Proje Türünü silemezsiniz" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Kök kategorisini düzenleyemezsiniz." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61785,16 +61814,16 @@ msgid "You cannot redeem more than {0}." msgstr "{0} adetinden fazlasını kullanamazsınız." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "{} tarihinden önce ürün değerlemesini yeniden gönderemezsiniz" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "İptal edilmeyen bir Aboneliği yeniden başlatamazsınız." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Boş sipariş gönderemezsiniz." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61808,6 +61837,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "Bu belgeyi {0} yapamazsınız çünkü {2} tarihinden sonra sonra başka bir Dönem Kapanış Girişi {1} mevcuttur" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61818,8 +61851,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "{} içindeki {} öğelerine ilişkin izniniz yok." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61845,11 +61878,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Açılış faturaları oluştururken {} hatayla karşılaştınız. Daha fazla ayrıntı için {} adresini kontrol edin" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Zaten öğelerinizi seçtiniz {0} {1}" @@ -61866,8 +61899,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "Satırda tekrarlayan bir İrsaliye girdiniz" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61881,19 +61914,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Yeniden sipariş seviyelerini korumak için Stok Ayarlarında otomatik yeniden siparişi etkinleştirmeniz gerekir." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Bir Ürün eklemeden önce Müşteri seçmelisiniz." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "Bu belgeyi iptal edebilmek için POS Kapanış Girişini {} iptal etmeniz gerekmektedir." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "Satır {0} için {2} Hesap olarak {1} hesap grubunu seçtiniz. Lütfen tek bir hesap seçin." @@ -61945,6 +61978,10 @@ msgstr "Posta Kodu" msgid "Zero Balance" msgstr "Sıfır Bakiye" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "Sıfır Değerinde" @@ -61975,7 +62012,7 @@ msgstr "[Önemli] [ERPNext] Otomatik Yeniden Sıralama Hataları" msgid "`Allow Negative rates for Items`" msgstr "`Ürünler için Negatif değerlere izin ver`" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "sonra" @@ -61995,7 +62032,7 @@ msgstr "Başlık olarak" msgid "as a percentage of finished item quantity" msgstr "bitmiş ürün miktarının yüzdesi olarak" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -62011,10 +62048,6 @@ msgstr "göre" msgid "by {}" msgstr "{} ile" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "100'den büyük olamaz" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62069,8 +62102,8 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "alan" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62150,14 +62183,10 @@ msgstr "5 üzerinden" msgid "paid to" msgstr "ödenen" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "ödeme uygulaması yüklü değil. Lütfen {0} veya {1} adresinden yükleyin" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "ödeme uygulaması yüklü değil. Lütfen {} veya {} adresinden yükleyin" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62171,7 +62200,7 @@ msgstr "ödeme uygulaması yüklü değil. Lütfen {} veya {} adresinden yükley msgid "per hour" msgstr "Saat Başı" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "aşağıdakilerden birini gerçekleştirin:" @@ -62247,8 +62276,8 @@ msgstr "satıldı" msgid "subscription is already cancelled." msgstr "abonelik zaten iptal edildi." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "target_ref_field" @@ -62311,10 +62340,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "Ürün Ağacı Güncelleme Aracı ile" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "Hesaplar tablosunda Sermaye Çalışması Devam Eden Hesabı'nı seçmelisiniz" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' devre dışı bırakıldı." @@ -62327,7 +62352,7 @@ msgstr "{0} '{1}' {2} mali yılında değil." msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) İş Emrindeki üretilecek ({2}) miktar {3} değerinden fazla olamaz" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} Varlıklar gönderdi. Devam etmek için tablodan {2} Kalemini kaldırın." @@ -62347,7 +62372,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} Kupon kullanıldı {1}. İzin verilen miktar tükendi" @@ -62355,11 +62380,6 @@ msgstr "{0} Kupon kullanıldı {1}. İzin verilen miktar tükendi" msgid "{0} Digest" msgstr "{0} Özeti" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} {1} sayısı zaten {2} {3} içinde kullanılıyor" @@ -62441,10 +62461,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "{0} negatif değer olamaz" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} Maliyet Merkezi Tahsisinde alt maliyet merkezi olarak kullanıldığından Ana Maliyet Merkezi olarak kullanılamaz {1}" @@ -62460,7 +62488,7 @@ msgstr "{0} sıfır olamaz" msgid "{0} created" msgstr "{0} oluşturdu" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62502,7 +62530,7 @@ msgstr "{1} için {0}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} için ödeme vadesine dayalı tahsis etkinleştirilmiş. Ödeme Referansları bölümünde Satır #{1} için bir ödeme vadesi seçin" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62510,6 +62538,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "{0} Başarıyla Gönderildi" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} saat" @@ -62518,7 +62550,11 @@ msgstr "{0} saat" msgid "{0} in row {1}" msgstr "{0} {1} satırında" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62532,7 +62568,7 @@ msgstr "{0} zorunlu bir Muhasebe Boyutudur.
                    Lütfen Muhasebe Boyutları böl msgid "{0} is added multiple times on rows: {1}" msgstr "{0} satırlara birden çok kez eklendi: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} zaten {1} için çalışıyor" @@ -62540,7 +62576,7 @@ msgstr "{0} zaten {1} için çalışıyor" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} engellendi, bu işleme devam edilemiyor" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62553,11 +62589,11 @@ msgstr "{0} {1} Ürünü için zorunludur" msgid "{0} is mandatory for account {1}" msgstr "{0} {1} hesabı için zorunludur" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} zorunludur. Belki {1} ile {2} arasında Döviz Kuru kaydı oluşturulmamış olabilir" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} zorunludur. Belki {1} ile {2} arasında Döviz Kuru kaydı oluşturulmamış olabilir." @@ -62565,7 +62601,7 @@ msgstr "{0} zorunludur. Belki {1} ile {2} arasında Döviz Kuru kaydı oluşturu msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} bir şirket banka hesabı değildir" @@ -62581,7 +62617,7 @@ msgstr "{0} bir stok ürünü değildir" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0}, {2} Öğesinin {1} Özniteliği için geçerli bir Değer değil." @@ -62597,17 +62633,17 @@ msgstr "Tabloya {0} eklenmedi" msgid "{0} is not enabled in {1}" msgstr "{0}, {1} içinde etkinleştirilmedi" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} çalışmıyor. Bu Belge için olaylar tetiklenemiyor" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0}, hiçbir ürün için varsayılan tedarikçi değildir." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} {1} tarihine kadar beklemede" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62657,7 +62693,7 @@ msgstr "{0} parametresi geçersiz" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0} ödeme girişleri {1} ile filtrelenemez" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "{1} ürününden {0} miktarı, {3} kapasiteli {2} deposuna alınmaktadır." @@ -62670,7 +62706,7 @@ msgstr "{0} ile {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} birim {1} Ürünü için {2} Deposunda rezerve edilmiştir, lütfen Stok Doğrulamasını {3} yapabilmek için stok rezevini kaldırın." @@ -62686,16 +62722,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "Bu işlemi tamamlamak için {5} için {3} {4} üzerinde {2} içinde {0} birim {1} gereklidir." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "Bu işlemi tamamlamak için {3} {4} tarihinde {2} içinde {0} adet {1} gereklidir." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "Bu işlemi yapmak için {2} içinde {0} birim {1} gerekli." @@ -62703,7 +62739,7 @@ msgstr "Bu işlemi yapmak için {2} içinde {0} birim {1} gerekli." msgid "{0} until {1}" msgstr "{0} kadar {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0}, {1} Ürünü için geçerli bir seri numarası" @@ -62711,7 +62747,7 @@ msgstr "{0}, {1} Ürünü için geçerli bir seri numarası" msgid "{0} variants created." msgstr "{0} varyantları oluşturuldu." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62745,7 +62781,7 @@ msgstr "{0} {1} oluşturdu" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} mevcut değil" @@ -62779,12 +62815,21 @@ msgstr "{0} {1} bu Banka İşleminde iki kez tahsis edilmiştir" msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} zaten Ortak Kod {2} ile bağlantılıdır." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} {2} ile ilişkilidir, ancak Cari Hesabı {3} olarak tanımlanmıştır" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} iptal edildi veya kapatıldı" @@ -62816,6 +62861,10 @@ msgstr "{0} {1} tamamen faturalandırıldı" msgid "{0} {1} is not active" msgstr "{0} {1} etkin değil" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} {2} {3} ile ilişkili değildir" @@ -62921,27 +62970,23 @@ msgstr "Toplam fatura bedelinin %{0} oranında indirim yapılacaktır." msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{0} için {1} alanı {2} için Beklenen Bitiş Tarihinden sonra olamaz." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, {1} operasyonunu {2} operasyonundan önce tamamlayın." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62957,7 +63002,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} {2} değerinden küçük olmalıdır" @@ -62969,7 +63014,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} iptal edildi veya kapatıldı." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "{item_name} için Numune Boyutu ({sample_size}) Kabul Edilen Miktardan ({accepted_quantity}) büyük olamaz" @@ -62981,32 +63026,7 @@ msgstr "{ref_doctype} {ref_name} durumu {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "Kazanılan Sadakat Puanları kullanıldığından {} iptal edilemez. Önce {} No {}'yu iptal edin" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} kendisine bağlı varlıkları gönderdi. Satın alma iadesi oluşturmak için varlıkları iptal etmeniz gerekiyor." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} faturalar" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} bir alt şirkettir." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} zaten başka bir {} ile bağlantılı" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} zaten {} {} ile bağlantılı" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/uz.po b/erpnext/locale/uz.po index b47a233280a..a770ba71569 100644 --- a/erpnext/locale/uz.po +++ b/erpnext/locale/uz.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-27 20:02\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:02\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Uzbek\n" "MIME-Version: 1.0\n" @@ -18,20 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: uz_UZ\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "\n" -" {1} mahsulotining {0} partiyasi omborda salbiy zaxiraga ega {2}{3}.\n" -"\t\t\tUshbu yozuvni davom ettirish uchun iltimos, {4} miqdorida zaxira miqdorini qo'shing.\n" -"\t\t\tAgar sozlash yozuvini kiritishning iloji bo'lmasa, iltimos, {0} partiyasida yoki Stok sozlamalarida \"Partiya uchun salbiy zaxiraga ruxsat berish\" ni yoqing.\n" -"\t\t\tBiroq, ushbu sozlamani yoqish tizimda salbiy zaxiraga olib kelishi mumkin.\n" -"\t\t\tShuning uchun, to'g'ri baholash stavkasini saqlab qolish uchun aksiyalar darajasini iloji boricha tezroq sozlang." - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -116,11 +102,11 @@ msgstr "" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "" @@ -282,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "\"Mijozning xarid buyurtmasiga qarshi bir nechta savdo buyurtmalariga ruxsat berish\"" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "\"Asoslangan\" va \"Guruhlash\" bir xil bo'lishi mumkin emas" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -308,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "\"Sanagacha\" dan keyin \"Boshlang'ich sana\" bo'lishi kerak" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "\"Seriya raqami bor\" so'zi omborda bo'lmagan mahsulot uchun \"Ha\" bo'la olmaydi" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "{0}mahsuloti uchun \"Yetkazib berishdan oldin tekshirish talab qilinadi\" funksiyasi o'chirib qo'yilgan, QI yaratish shart emas" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "{0}mahsuloti uchun \"Sotib olishdan oldin tekshirish talab qilinadi\" funksiyasi o'chirib qo'yilgan, QI yaratish shart emas" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "\"Ochilish\"" @@ -331,13 +317,13 @@ msgstr "\"Ochilish\"" msgid "'To Date' is required" msgstr "\"Sanaga qadar\" talab qilinadi" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "“Paket raqamiga” “Paket raqamidan” dan kichik boʻlmasligi kerak." #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "\"Omborni yangilash\" katagiga belgi qo'yib bo'lmaydi, chunki mahsulotlar {0} orqali yetkazib berilmaydi." +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -622,7 +608,7 @@ msgstr "" msgid "<0" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -786,17 +772,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Qator(lar) uchun to'lov hujjati talab qilinadi: {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "" #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Quyidagi mahsulotlar uchun ortiqcha to'lov amalga oshirib bo'lmaydi:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    {0}ga amal qilayotganlar {1} kompaniyasiga tegishli emas:

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -996,9 +982,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Xuddi shu nomdagi mijozlar guruhi mavjud, iltimos, mijoz nomini o'zgartiring yoki mijozlar guruhining nomini o'zgartiring." +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1008,9 +994,9 @@ msgstr "Ish stantsiyasi uchun bu kunlarni sanashni istisno qilish uchun bayramla msgid "A Lead requires either a person's name or an organization's name" msgstr "Potensial mijozlar uchun shaxsning ismi yoki tashkilot nomi kerak bo'ladi" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Qadoqlash varag'i faqat qoralama yetkazib berish eslatmasi uchun tuzilishi mumkin." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1026,7 +1012,7 @@ msgstr "Narxlar ro'yxati - bu sotish, sotib olish yoki ikkalasi ham bo'lgan mahs msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Sotib olinadigan, sotiladigan yoki omborda saqlanadigan mahsulot yoki xizmat." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Xuddi shu filtrlar uchun {0} yarashtirish vazifasi ishlayapti. Hozir yarashtirib bo'lmaydi" @@ -1059,7 +1045,7 @@ msgstr "Drayverni yuborish uchun sozlash kerak." msgid "A logical Warehouse against which stock entries are made." msgstr "Ombor yozuvlari kiritiladigan mantiqiy ombor." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "Seriya raqamlarini yaratishda nomlash seriyasi bilan bog'liq ziddiyat yuzaga keldi. Iltimos, {0} elementining nomlash seriyasini o'zgartiring." @@ -1235,7 +1221,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Qabul qilingan miqdor UOM omborida" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Qabul qilingan miqdor" @@ -1266,12 +1252,16 @@ msgstr "Kirish kaliti" msgid "Access Key is required for Service Provider: {0}" msgstr "Xizmat ko'rsatuvchi provayder uchun kirish kaliti talab qilinadi: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "CEFACT/ICG/2010/IC013 yoki CEFACT/ICG/2010/IC010 ga muvofiq" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "BOM {0}ma'lumotlariga ko'ra, '{1}' bandi ombor yozuvida yo'q." @@ -1524,7 +1514,7 @@ msgstr "" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "" @@ -1654,11 +1644,11 @@ msgstr "" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "" @@ -1937,8 +1927,8 @@ msgstr "Buxgalteriya o'lchamlari filtri" msgid "Accounting Entries" msgstr "Buxgalteriya yozuvlari" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Aktivlar uchun buxgalteriya yozuvi" @@ -1963,8 +1953,8 @@ msgstr "Xizmat ko'rsatish uchun buxgalteriya yozuvi" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2012,7 +2002,11 @@ msgstr "Buxgalteriya hisobi bo'yicha onboarding" msgid "Accounting Period" msgstr "Hisobot davri" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Hisob-kitob davri {0} bilan mos keladi" @@ -2210,8 +2204,8 @@ msgstr "Yig'ilgan amortizatsiya hisobi" msgid "Accumulated Depreciation Amount" msgstr "Yig'ilgan amortizatsiya miqdori" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Yig'ilgan amortizatsiya" @@ -2439,7 +2433,7 @@ msgstr "" msgid "Actual Batch Quantity" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "" @@ -2449,7 +2443,7 @@ msgstr "" msgid "Actual Date" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2599,8 +2593,8 @@ msgstr "Haqiqiy vaqt soatlarda (vaqtinchalik jadval orqali)" msgid "Actual qty in stock" msgstr "Ombordagi haqiqiy miqdor" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Haqiqiy turdagi soliq {0} qatoridagi mahsulot stavkasiga kiritilishi mumkin emas" @@ -2765,10 +2759,6 @@ msgstr "Seriya/partiya raqamini qo'shish" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Seriya raqamini qo'shish / Partiya raqami (Rad etilgan miqdor)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "Seriya prefiksini qo'shish" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Aksiya qo'shish" @@ -2867,12 +2857,12 @@ msgstr "" msgid "Added On" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." +msgid "Added {1} role to user {0}." msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 @@ -3015,7 +3005,7 @@ msgstr "" msgid "Additional Discount Amount (Company Currency)" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3134,11 +3124,7 @@ msgid "Additional Transferred Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 @@ -3403,7 +3389,7 @@ msgstr "Avans vaucheri turi" msgid "Advance amount" msgstr "Avans miqdori" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Avans summasi {0} {1} dan oshmasligi kerak" @@ -3472,7 +3458,7 @@ msgstr "Qarshi" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Hisobga qarshi" @@ -3592,7 +3578,7 @@ msgstr "Yetkazib beruvchiga qarshi hisob-faktura {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Vaucherga qarshi" @@ -3616,7 +3602,7 @@ msgstr "Vaucher raqamiga qarshi" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Vaucher turiga qarshi" @@ -3730,6 +3716,13 @@ msgstr "" msgid "Algorithm" msgstr "" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3906,7 +3899,7 @@ msgstr "" msgid "All items are already requested" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "" @@ -3918,7 +3911,7 @@ msgstr "" msgid "All items have already been transferred for this Work Order." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "" @@ -3937,15 +3930,15 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." +msgid "All the items have already been returned." msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 @@ -3969,7 +3962,7 @@ msgstr "" msgid "Allocate Full Amount to Stock Items" msgstr "To'liq miqdorni ombordagi narsalarga ajrating" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "To'lov miqdorini ajratish" @@ -3979,7 +3972,7 @@ msgstr "To'lov miqdorini ajratish" msgid "Allocate Payment Based On Payment Terms" msgstr "To'lov shartlari asosida to'lovni taqsimlang" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "To'lov so'rovini ajratish" @@ -4009,7 +4002,7 @@ msgstr "Ajratilgan" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4092,8 +4085,8 @@ msgid "Allow Alternative Item" msgstr "Muqobil elementga ruxsat berish" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "{} elementida muqobil elementga ruxsat berish katagiga belgi qo'yilishi kerak" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4200,7 +4193,7 @@ msgstr "Nol miqdori bilan kotirovkaga ruxsat bering" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Atribut qiymatini qayta nomlashga ruxsat berish" @@ -4481,12 +4474,14 @@ msgstr "" msgid "Allowed To Transact With" msgstr "" -#: erpnext/accounts/doctype/party_link/party_link.py:27 -msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" msgstr "" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" +#: erpnext/accounts/doctype/party_link/party_link.py:27 +msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "" #. Label of the companies (Table) field in DocType 'Supplier' @@ -4521,10 +4516,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4532,10 +4527,6 @@ msgstr "" msgid "Already Picked" msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "" @@ -4551,12 +4542,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4761,7 +4752,7 @@ msgstr "Doim so'rang" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -4987,12 +4978,12 @@ msgstr "Elementlar guruhi - bu elementlarni turlarga qarab tasniflash usuli." msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "Avtomatik Materiallar So'rovi yaratilganda, \"Xarid menejeri\" roli bilan foydalanuvchiga xabar berish uchun elektron pochta xabari yuboriladi." -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "{0} orqali element bahosini qayta joylashtirishda xatolik yuz berdi" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Yangilash jarayonida xatolik yuz berdi" @@ -5206,7 +5197,7 @@ msgstr "" msgid "Applied on each reading." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "" @@ -5383,10 +5374,6 @@ msgstr "" msgid "Appointment Confirmation" msgstr "" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5412,6 +5399,10 @@ msgstr "" msgid "Appointment With" msgstr "" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "" @@ -5453,6 +5444,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "" @@ -5535,18 +5535,18 @@ msgstr "" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5585,7 +5585,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5657,7 +5657,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5823,7 +5823,7 @@ msgstr "" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5955,7 +5955,7 @@ msgstr "" msgid "Asset cancelled" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "" @@ -5971,7 +5971,7 @@ msgstr "" msgid "Asset created" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "" @@ -6024,7 +6024,7 @@ msgstr "" msgid "Asset transferred to Location {0}" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "" @@ -6102,7 +6102,7 @@ msgstr "" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6123,7 +6123,7 @@ msgstr "" msgid "Assets {assets_link} created for {item_code}" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "" @@ -6133,6 +6133,11 @@ msgstr "" msgid "Assign to Name" msgstr "" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6151,19 +6156,23 @@ msgstr "" msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "" @@ -6184,6 +6193,10 @@ msgstr "" msgid "At least one of the Selling or Buying must be selected" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6204,7 +6217,7 @@ msgstr "" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "" @@ -6212,26 +6225,22 @@ msgstr "" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6443,7 +6452,7 @@ msgstr "" msgid "Auto Repeat Detail" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "" @@ -6504,7 +6513,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "" @@ -6629,7 +6638,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6725,7 +6734,7 @@ msgstr "" msgid "Available {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "" @@ -6843,7 +6852,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6862,7 +6871,7 @@ msgid "BOM 1" msgstr "" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 @@ -6877,7 +6886,7 @@ msgstr "" msgid "BOM Comparison Tool" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7008,7 +7017,7 @@ msgstr "" msgid "BOM Operations Time" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7029,7 +7038,7 @@ msgstr "" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7081,10 +7090,6 @@ msgstr "" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7123,15 +7128,19 @@ msgstr "" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "" @@ -7212,7 +7221,7 @@ msgstr "" msgid "Balance (Dr - Cr)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "" @@ -7282,6 +7291,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "" @@ -7342,7 +7355,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7442,7 +7455,7 @@ msgid "Bank Account Type" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 @@ -7687,7 +7700,7 @@ msgstr "" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "" @@ -7699,7 +7712,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "" @@ -7711,7 +7724,7 @@ msgstr "" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "" @@ -7987,8 +8000,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8019,15 +8032,15 @@ msgstr "" msgid "Batch No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "" @@ -8035,6 +8048,10 @@ msgstr "" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8100,8 +8117,8 @@ msgstr "" msgid "Batch and Serial No" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType @@ -8214,7 +8231,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8689,7 +8706,7 @@ msgid "Booked Fixed Asset" msgstr "" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" +msgid "Books have been closed until the period ending on {0}" msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory @@ -8917,7 +8934,7 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 @@ -8935,7 +8952,7 @@ msgstr "" msgid "Buffered Cursor" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "" @@ -8943,7 +8960,7 @@ msgstr "" msgid "Build Tree" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "" @@ -9270,6 +9287,10 @@ msgstr "" msgid "Calculated Discount Mismatch" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9441,7 +9462,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "" @@ -9470,21 +9491,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "" @@ -9513,7 +9537,7 @@ msgstr "" msgid "Cancelation Date" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9521,11 +9545,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "" @@ -9540,10 +9559,6 @@ msgstr "" msgid "Cannot Merge" msgstr "" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "" @@ -9568,6 +9583,11 @@ msgstr "" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "" @@ -9577,14 +9597,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "" @@ -9592,7 +9612,7 @@ msgstr "" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "" @@ -9604,7 +9624,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "" @@ -9629,7 +9649,7 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 @@ -9656,7 +9676,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "" @@ -9665,6 +9685,10 @@ msgstr "" msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "" @@ -9682,7 +9706,7 @@ msgstr "" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "" @@ -9695,7 +9719,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9727,7 +9751,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9752,19 +9776,23 @@ msgstr "" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "" @@ -9776,12 +9804,16 @@ msgstr "" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "" @@ -9790,19 +9822,23 @@ msgstr "" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "" @@ -10229,8 +10265,8 @@ msgstr "" msgid "Change this date manually to setup the next synchronization start date" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 @@ -10257,8 +10293,8 @@ msgstr "" msgid "Channel Partner" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "" @@ -10452,7 +10488,7 @@ msgstr "" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "" @@ -10510,7 +10546,7 @@ msgstr "" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "" @@ -10520,7 +10556,7 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." +msgid "Child Task exists for this Task. You cannot delete this Task." msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 @@ -10699,7 +10735,7 @@ msgstr "" msgid "Close Replied Opportunity After Days" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "" @@ -10713,7 +10749,7 @@ msgstr "" msgid "Closed Documents" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "" @@ -10943,9 +10979,9 @@ msgstr "" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11382,7 +11418,7 @@ msgstr "" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11452,7 +11488,7 @@ msgstr "" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11492,10 +11528,6 @@ msgstr "" msgid "Company Abbreviation" msgstr "" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "" @@ -11660,7 +11692,7 @@ msgstr "" msgid "Company Tax ID" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "" @@ -11704,11 +11736,11 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" +msgid "Company name does not match" msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." +msgid "Company of asset {0} and purchase document {1} does not match." msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 @@ -11747,6 +11779,14 @@ msgstr "" msgid "Company {0} does not exist" msgstr "" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "" @@ -11755,14 +11795,6 @@ msgstr "" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11784,7 +11816,7 @@ msgstr "" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "" @@ -12228,7 +12260,7 @@ msgid "Consumed Qty" msgstr "" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair @@ -12544,7 +12576,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12844,7 +12876,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12869,7 +12901,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12927,7 +12959,7 @@ msgstr "" msgid "Cost Center and Budgeting" msgstr "" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "" @@ -12939,7 +12971,7 @@ msgstr "" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "" @@ -12961,11 +12993,11 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" +msgid "Cost Center {0} does not belong to Company {1}" msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" msgstr "" #: erpnext/accounts/report/financial_statements.py:685 @@ -13090,14 +13122,14 @@ msgid "Costing and Billing" msgstr "" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" +msgid "Costing and Billing fields have been updated" msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "" @@ -13109,7 +13141,7 @@ msgstr "" msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "" @@ -13119,7 +13151,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " +msgid "Could not find path for {0}" msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 @@ -13143,7 +13175,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "" @@ -13373,10 +13405,6 @@ msgstr "" msgid "Create New Lead" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13395,7 +13423,7 @@ msgstr "" msgid "Create Opportunity" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "" @@ -13410,7 +13438,7 @@ msgstr "" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13638,7 +13666,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "" @@ -13672,7 +13700,7 @@ msgstr "" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "" @@ -13767,7 +13795,7 @@ msgstr "" msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "" @@ -13777,16 +13805,16 @@ msgstr "" msgid "Creation" msgstr "" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "" @@ -13820,11 +13848,11 @@ msgstr "" msgid "Credit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "" @@ -13905,7 +13933,7 @@ msgstr "" msgid "Credit Limit" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "" @@ -13985,16 +14013,16 @@ msgstr "" msgid "Credit in Company Currency" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "" @@ -14053,12 +14081,12 @@ msgstr "" msgid "Criteria Weight" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "" @@ -14181,7 +14209,7 @@ msgstr "" msgid "Currency can not be changed after making entries using some other currency" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14246,7 +14274,7 @@ msgid "Current BOM" msgstr "" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" +msgid "Current BOM and New BOM cannot be the same" msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate @@ -14309,10 +14337,6 @@ msgstr "" msgid "Current Serial No" msgstr "" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15143,7 +15167,7 @@ msgstr "" msgid "DFS" msgstr "" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "" @@ -15288,10 +15312,6 @@ msgstr "" msgid "Day Of Week" msgstr "" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15398,11 +15418,11 @@ msgstr "" msgid "Debit" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "" @@ -15564,7 +15584,7 @@ msgstr "" msgid "Decimeter" msgstr "" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "" @@ -16245,8 +16265,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "" @@ -16340,7 +16360,7 @@ msgstr "" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16398,7 +16418,7 @@ msgstr "" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16728,7 +16748,7 @@ msgstr "" msgid "Depreciation Amount" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "" @@ -16744,7 +16764,7 @@ msgstr "" msgid "Depreciation Details" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "" @@ -16814,7 +16834,7 @@ msgstr "" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "" @@ -16843,11 +16863,11 @@ msgstr "" msgid "Depreciation Schedule View" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "" @@ -16875,7 +16895,7 @@ msgstr "" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "" @@ -16978,11 +16998,11 @@ msgid "Difference Account in Items Table" msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment @@ -17045,7 +17065,7 @@ msgstr "" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "" @@ -17218,7 +17238,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "" @@ -17227,8 +17247,8 @@ msgstr "" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' @@ -17236,8 +17256,8 @@ msgstr "" msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 @@ -17487,8 +17507,8 @@ msgstr "" msgid "Discount must be less than 100" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing @@ -17853,11 +17873,11 @@ msgstr "" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "" @@ -17895,22 +17915,6 @@ msgstr "" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18216,7 +18220,7 @@ msgstr "" msgid "Duplicate Sales Invoices found" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18370,7 +18374,7 @@ msgstr "" msgid "Edit Cart" msgstr "" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "" @@ -18594,7 +18598,7 @@ msgid "Email verification failed." msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" +msgid "Emails queued" msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType @@ -18782,7 +18786,7 @@ msgstr "" msgid "Empty" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18791,7 +18795,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18870,6 +18874,12 @@ msgstr "" msgid "Enable European Access" msgstr "" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19141,7 +19151,7 @@ msgstr "" msgid "End Transit" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19264,7 +19274,7 @@ msgstr "" msgid "Enter date to scrap asset" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "" @@ -19319,6 +19329,10 @@ msgstr "" msgid "Enter {0} amount." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "" @@ -19354,7 +19368,7 @@ msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "" @@ -19378,7 +19392,7 @@ msgstr "" msgid "Error Description" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "" @@ -19410,18 +19424,20 @@ msgstr "" msgid "Error while processing deferred accounting for {0}" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType @@ -19436,7 +19452,7 @@ msgid "Estimated Arrival" msgstr "" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "" @@ -19485,7 +19501,7 @@ msgstr "" msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "" @@ -19766,7 +19782,7 @@ msgstr "" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19853,7 +19869,7 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "" @@ -20112,8 +20128,8 @@ msgstr "" msgid "Failed Entries" msgstr "" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 @@ -20311,7 +20327,7 @@ msgid "Fetching Sales Orders..." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "" @@ -20349,15 +20365,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20366,7 +20382,7 @@ msgstr "" msgid "File to Rename" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20525,11 +20541,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20598,7 +20614,7 @@ msgstr "" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20611,7 +20627,7 @@ msgstr "" msgid "Finished Good Item Code" msgstr "" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "" @@ -20719,7 +20735,7 @@ msgstr "" msgid "Finished Goods based Operating Cost" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "" @@ -20818,10 +20834,6 @@ msgstr "" msgid "Fiscal Year" msgstr "" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20835,11 +20847,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "" @@ -20872,7 +20881,7 @@ msgstr "" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21008,7 +21017,7 @@ msgstr "" msgid "For" msgstr "" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "" @@ -21033,10 +21042,6 @@ msgstr "" msgid "For Item" msgstr "" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21103,11 +21108,11 @@ msgid "For Work Order" msgstr "" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" +msgid "For an item {0}, quantity must be a negative number" msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" +msgid "For an item {0}, quantity must be a positive number" msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' @@ -21140,12 +21145,12 @@ msgstr "" msgid "For individual supplier" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field @@ -21158,8 +21163,8 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" msgstr "" #: erpnext/projects/doctype/project/project.js:208 @@ -21175,21 +21180,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "" @@ -21208,11 +21209,15 @@ msgstr "" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "" @@ -21300,6 +21305,21 @@ msgstr "" msgid "Forum URL" msgstr "" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21843,7 +21863,7 @@ msgstr "" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "" @@ -21968,6 +21988,10 @@ msgstr "" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22021,7 +22045,7 @@ msgstr "" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22364,7 +22388,7 @@ msgstr "" msgid "Goods Transferred" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "" @@ -22547,7 +22571,7 @@ msgstr "" msgid "Grant Commission" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "" @@ -22687,7 +22711,7 @@ msgstr "" msgid "Group by Voucher" msgstr "" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "" @@ -22990,7 +23014,7 @@ msgstr "" msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "" @@ -23018,7 +23042,7 @@ msgstr "" msgid "Hertz" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "" @@ -23054,7 +23078,7 @@ msgstr "" msgid "Hide Images" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "" @@ -23637,15 +23661,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23683,7 +23707,7 @@ msgstr "" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "" @@ -23784,7 +23808,7 @@ msgstr "" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "" @@ -24002,14 +24026,14 @@ msgstr "" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" +msgid "Import MT940 Format" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24486,7 +24510,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "" @@ -24572,7 +24596,7 @@ msgstr "" msgid "Incompatible Setting Detected" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24581,7 +24605,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "" @@ -24589,11 +24613,11 @@ msgstr "" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "" @@ -24602,7 +24626,7 @@ msgstr "" msgid "Incorrect Date" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "" @@ -24619,7 +24643,7 @@ msgstr "" msgid "Incorrect Serial No Valuation" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "" @@ -24702,7 +24726,7 @@ msgstr "" msgid "Increment cannot be 0" msgstr "" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "" @@ -24899,7 +24923,7 @@ msgid "Instruction" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "" @@ -24915,12 +24939,12 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "" @@ -25050,7 +25074,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "" @@ -25075,7 +25099,7 @@ msgstr "" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "" @@ -25101,7 +25125,7 @@ msgstr "" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "" @@ -25122,7 +25146,7 @@ msgstr "" msgid "Internal Transfer" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "" @@ -25164,8 +25188,8 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25184,7 +25208,7 @@ msgstr "" msgid "Invalid Amount" msgstr "" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "" @@ -25201,11 +25225,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25225,13 +25249,13 @@ msgstr "" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25252,11 +25276,11 @@ msgstr "" msgid "Invalid Discount" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "" @@ -25286,7 +25310,7 @@ msgstr "" msgid "Invalid Item" msgstr "" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "" @@ -25295,7 +25319,7 @@ msgstr "" msgid "Invalid Ledger Entries" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "" @@ -25334,7 +25358,7 @@ msgstr "" msgid "Invalid Priority" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "" @@ -25351,7 +25375,7 @@ msgstr "" msgid "Invalid Quantity" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "" @@ -25363,8 +25387,8 @@ msgstr "" msgid "Invalid Sales Invoices" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "" @@ -25372,7 +25396,7 @@ msgstr "" msgid "Invalid Selling Price" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "" @@ -25389,7 +25413,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "" @@ -25399,14 +25423,14 @@ msgid "Invalid Warehouse" msgstr "" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25438,7 +25462,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "" @@ -26401,10 +26425,6 @@ msgstr "" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26413,7 +26433,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "" @@ -26462,12 +26482,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26500,7 +26520,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26574,7 +26594,7 @@ msgstr "" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26735,7 +26755,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26767,7 +26787,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26776,12 +26796,12 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26877,7 +26897,7 @@ msgstr "" msgid "Item Code required at Row No {0}" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "" @@ -27073,7 +27093,7 @@ msgstr "" msgid "Item Group Tree" msgstr "" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "" @@ -27227,7 +27247,7 @@ msgstr "" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27258,7 +27278,7 @@ msgstr "" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27266,8 +27286,8 @@ msgstr "" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27324,7 +27344,7 @@ msgstr "" msgid "Item Name" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27371,8 +27391,8 @@ msgstr "" msgid "Item Price Stock" msgstr "" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27384,7 +27404,7 @@ msgstr "" msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "" @@ -27429,7 +27449,7 @@ msgstr "" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "" @@ -27545,7 +27565,7 @@ msgstr "" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "" @@ -27664,7 +27684,7 @@ msgstr "" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27700,7 +27720,7 @@ msgstr "" msgid "Item is removed since no serial / batch no selected." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "" @@ -27714,7 +27734,7 @@ msgstr "" msgid "Item operation" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "" @@ -27729,7 +27749,7 @@ msgstr "" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "" @@ -27745,10 +27765,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "" @@ -27757,6 +27773,10 @@ msgstr "" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27766,6 +27786,7 @@ msgstr "" msgid "Item {0} does not exist in the system or has expired" msgstr "" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "" @@ -27798,6 +27819,10 @@ msgstr "" msgid "Item {0} ignored since it is not a stock item" msgstr "" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "" @@ -27830,7 +27855,7 @@ msgstr "" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "" @@ -27862,10 +27887,6 @@ msgstr "" msgid "Item {0}: {1} qty produced. " msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27916,6 +27937,10 @@ msgstr "" msgid "Item: {0} does not exist in the system" msgstr "" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27932,7 +27957,7 @@ msgstr "" msgid "Items Filter" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "" @@ -27972,7 +27997,7 @@ msgstr "" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "" @@ -27982,7 +28007,7 @@ msgstr "" msgid "Items to Be Repost" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "" @@ -28052,7 +28077,7 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28115,20 +28140,19 @@ msgstr "" msgid "Job Card and Capacity Planning" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "" @@ -28191,11 +28215,19 @@ msgstr "" msgid "Job Worker Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "" @@ -28541,7 +28573,7 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' @@ -28662,7 +28694,7 @@ msgstr "" msgid "Lead" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "" @@ -28756,7 +28788,7 @@ msgstr "" msgid "Lead Type" msgstr "" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "" @@ -28904,7 +28936,7 @@ msgstr "" msgid "Length (cm)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "" @@ -28933,7 +28965,7 @@ msgstr "" msgid "Lft" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "" @@ -28963,7 +28995,7 @@ msgstr "" msgid "License Plate" msgstr "" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "" @@ -29059,7 +29091,7 @@ msgid "Linking to Customer Failed. Please try again." msgstr "" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." +msgid "Linking to Supplier failed. Please try again." msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 @@ -29226,7 +29258,7 @@ msgstr "" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "" @@ -29312,7 +29344,7 @@ msgstr "" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "" @@ -29550,7 +29582,7 @@ msgstr "" msgid "Maintenance Schedule Item" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "" @@ -29647,7 +29679,7 @@ msgstr "" msgid "Maintenance Visit Purpose" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "" @@ -29794,7 +29826,7 @@ msgstr "" msgid "Mandatory For Profit and Loss Account" msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "" @@ -29877,8 +29909,8 @@ msgstr "" #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30100,7 +30132,7 @@ msgstr "" msgid "Mapping Subcontracting Order ..." msgstr "" -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "" @@ -30278,10 +30310,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30308,7 +30336,7 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "" @@ -30419,7 +30447,7 @@ msgstr "" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "" @@ -30469,7 +30497,7 @@ msgstr "" msgid "Material Request Item" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "" @@ -30491,7 +30519,7 @@ msgstr "" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "" @@ -30505,7 +30533,7 @@ msgstr "" msgid "Material Request used to make this Stock Entry" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "" @@ -30625,13 +30653,13 @@ msgstr "" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' @@ -30800,7 +30828,7 @@ msgstr "" msgid "Megawatt" msgstr "" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "" @@ -30835,7 +30863,7 @@ msgstr "" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "" @@ -31181,7 +31209,7 @@ msgstr "" msgid "Mismatch" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "" @@ -31190,11 +31218,11 @@ msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31219,11 +31247,11 @@ msgstr "" msgid "Missing Filters" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "" @@ -31231,7 +31259,7 @@ msgstr "" msgid "Missing Formula" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "" @@ -31243,7 +31271,7 @@ msgstr "" msgid "Missing Payments App" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31255,7 +31283,7 @@ msgstr "" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31263,12 +31291,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "" @@ -31517,8 +31545,8 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 @@ -31526,7 +31554,7 @@ msgid "Multiple POS Opening Entry" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty @@ -31547,7 +31575,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "" @@ -31556,10 +31584,10 @@ msgid "Music" msgstr "" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "" @@ -31644,11 +31672,7 @@ msgstr "" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31692,7 +31716,7 @@ msgstr "" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "" @@ -31702,12 +31726,12 @@ msgstr "" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "" @@ -31785,8 +31809,8 @@ msgstr "" msgid "Net Amount (Company Currency)" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "" @@ -31836,7 +31860,7 @@ msgstr "" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "" @@ -31844,7 +31868,7 @@ msgstr "" msgid "Net Profit Ratio" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "" @@ -31858,11 +31882,11 @@ msgstr "" msgid "Net Purchase Amount" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "" @@ -32106,7 +32130,7 @@ msgstr "" msgid "New Income" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "" @@ -32179,6 +32203,7 @@ msgid "New Task" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "" @@ -32191,8 +32216,8 @@ msgstr "" msgid "New Workplace" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in @@ -32201,6 +32226,10 @@ msgstr "" msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "" @@ -32213,7 +32242,7 @@ msgstr "" msgid "New task" msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "" @@ -32277,16 +32306,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" +msgid "No Delivery Note selected for Customer {0}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32294,15 +32322,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "" @@ -32345,11 +32373,6 @@ msgstr "" msgid "No Purchase Orders were created" msgstr "" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "" @@ -32452,6 +32475,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "" @@ -32497,7 +32524,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "" @@ -32534,10 +32561,6 @@ msgstr "" msgid "No more children on Right" msgstr "" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "" @@ -32634,7 +32657,7 @@ msgstr "" msgid "No outstanding invoices require exchange rate revaluation" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "" @@ -32672,15 +32695,20 @@ msgstr "" msgid "No record found" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "" @@ -32709,7 +32737,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "" @@ -32746,7 +32774,7 @@ msgstr "" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32754,11 +32782,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32810,7 +32833,7 @@ msgstr "" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "" @@ -32821,8 +32844,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "" @@ -32836,8 +32859,8 @@ msgstr "" msgid "Not Applicable" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "" @@ -32900,10 +32923,6 @@ msgstr "" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "" @@ -32920,10 +32939,6 @@ msgstr "" msgid "Not authorized to edit frozen Account {0}" msgstr "" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "" @@ -32936,7 +32951,7 @@ msgstr "" msgid "Not permitted to make Purchase Orders" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33181,7 +33196,7 @@ msgid "Numeric Values" msgstr "" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" +msgid "Numero has not been set in the XML file" msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' @@ -33357,11 +33372,11 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." +msgid "Once the Work Order is Closed, it cannot be resumed." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." +msgid "One customer can be part of only a single Loyalty Program." msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward @@ -33396,7 +33411,7 @@ msgstr "" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33461,7 +33476,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "" @@ -33527,7 +33542,7 @@ msgstr "" msgid "Open Events" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "" @@ -33680,7 +33695,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "" @@ -33710,7 +33725,7 @@ msgstr "" msgid "Opening Entry" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "" @@ -33738,7 +33753,7 @@ msgstr "" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "" @@ -33747,7 +33762,7 @@ msgstr "" msgid "Opening Invoices" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "" @@ -33777,20 +33792,20 @@ msgstr "" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33799,7 +33814,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33842,7 +33857,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "" @@ -33933,7 +33948,7 @@ msgstr "" msgid "Operation Time" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "" @@ -33957,7 +33972,7 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" msgstr "" #. Label of the operations (Table) field in DocType 'BOM' @@ -34143,6 +34158,10 @@ msgstr "" msgid "Optimize Route" msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34159,10 +34178,6 @@ msgstr "" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "" @@ -34448,7 +34463,7 @@ msgid "Out of stock" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "" @@ -34502,7 +34517,7 @@ msgstr "" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34583,11 +34598,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "" @@ -34604,12 +34619,12 @@ msgstr "" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 -msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." msgstr "" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." +#: erpnext/controllers/status_updater.py:519 +msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "" #. Option for the 'Status' (Select) field in DocType 'POS Invoice' @@ -34660,10 +34675,6 @@ msgstr "" msgid "Overdue and Discounted" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "" @@ -34729,6 +34740,11 @@ msgstr "" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34776,7 +34792,7 @@ msgstr "" msgid "POS Additional Fields" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "" @@ -34874,7 +34890,7 @@ msgid "POS Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" +msgid "POS Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 @@ -34934,7 +34950,7 @@ msgstr "" msgid "POS Opening Entry Cancellation Error" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "" @@ -34955,7 +34971,7 @@ msgstr "" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "" @@ -34978,7 +34994,7 @@ msgstr "" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "" @@ -34998,7 +35014,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" +msgid "POS Profile doesn't match {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 @@ -35010,19 +35026,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35052,11 +35068,11 @@ msgstr "" msgid "POS Transactions" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "" @@ -35075,7 +35091,7 @@ msgstr "" msgid "PZN" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "" @@ -35700,7 +35716,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35827,7 +35843,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35913,7 +35929,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35934,7 +35950,7 @@ msgstr "" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "" @@ -35970,7 +35986,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36480,7 +36496,7 @@ msgstr "" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36555,7 +36571,7 @@ msgstr "" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36577,7 +36593,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36677,7 +36693,7 @@ msgid "Payment Type" msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' @@ -36884,11 +36900,11 @@ msgstr "" msgid "Pending processing" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37404,12 +37420,12 @@ msgstr "" msgid "Plaid Environment" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "" @@ -37431,7 +37447,7 @@ msgstr "" msgid "Plaid Settings" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "" @@ -37582,15 +37598,6 @@ msgstr "" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37598,7 +37605,6 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "" @@ -37606,19 +37612,19 @@ msgstr "" msgid "Please Set Priority" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "" @@ -37634,7 +37640,7 @@ msgstr "" msgid "Please add Root Account for - {0}" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "" @@ -37642,35 +37648,32 @@ msgstr "" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "" -#: erpnext/accounts/doctype/account/account_tree.js:239 -msgid "Please add the account to root level Company - {0}" -msgstr "" - #: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" +#: erpnext/accounts/doctype/account/account_tree.js:240 +msgid "Please add the account to root level Company - {0}" msgstr "" #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "" @@ -37712,7 +37715,7 @@ msgstr "" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "" @@ -37725,11 +37728,11 @@ msgstr "" msgid "Please check your email to confirm the appointment" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "" @@ -37745,15 +37748,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "" @@ -37761,11 +37764,11 @@ msgstr "" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "" @@ -37777,7 +37780,7 @@ msgstr "" msgid "Please create purchase from internal sale or delivery document itself" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "" @@ -37789,11 +37792,11 @@ msgstr "" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "" @@ -37818,7 +37821,7 @@ msgid "Please enable {0} in the {1}." msgstr "" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" +msgid "Please enable {0} in {1} to allow same item in multiple rows" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 @@ -37830,11 +37833,11 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." +msgid "Please ensure {0} account is a Balance Sheet account." msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." +msgid "Please ensure {0} account {1} is a Receivable account." msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 @@ -37850,7 +37853,7 @@ msgstr "" msgid "Please enter Approving Role or Approving User" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37866,7 +37869,7 @@ msgstr "" msgid "Please enter Employee Id of this sales person" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "" @@ -37875,7 +37878,7 @@ msgstr "" msgid "Please enter Item Code to get Batch Number" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "" @@ -37911,7 +37914,7 @@ msgstr "" msgid "Please enter Root Type for account- {0}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38041,7 +38044,7 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." +msgid "Please import accounts against parent company or enable {0} in company master." msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 @@ -38077,11 +38080,7 @@ msgstr "" msgid "Please pull items from Delivery Note" msgstr "" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "" @@ -38110,12 +38109,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "" @@ -38131,9 +38130,9 @@ msgstr "" msgid "Please select Category first" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "" @@ -38143,7 +38142,7 @@ msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" +msgid "Please select Company and Posting Date to get entries" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 @@ -38166,7 +38165,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "" @@ -38175,6 +38174,10 @@ msgstr "" msgid "Please select Item Code first" msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "" @@ -38199,11 +38202,11 @@ msgstr "" msgid "Please select Posting Date first" msgstr "" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "" @@ -38232,6 +38235,7 @@ msgid "Please select a BOM" msgstr "" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "" @@ -38239,11 +38243,12 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "" @@ -38252,7 +38257,7 @@ msgstr "" msgid "Please select a Delivery Note" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "" @@ -38264,7 +38269,7 @@ msgstr "" msgid "Please select a Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "" @@ -38280,6 +38285,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38313,22 +38319,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "" @@ -38337,7 +38347,7 @@ msgstr "" msgid "Please select an item code before setting the warehouse." msgstr "" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38345,10 +38355,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "" @@ -38357,18 +38375,10 @@ msgstr "" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "" @@ -38406,12 +38416,12 @@ msgstr "" msgid "Please select items to unreserve." msgstr "" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "" @@ -38420,7 +38430,7 @@ msgid "Please select the Company" msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." +msgid "Please select the Multiple Tier Program type for more than one collection rule." msgstr "" #: erpnext/stock/doctype/item/item.js:433 @@ -38444,20 +38454,16 @@ msgstr "" msgid "Please select the required filters" msgstr "" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "" @@ -38486,7 +38492,7 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" +msgid "Please set Accounting Dimension {0} in {1}" msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 @@ -38516,13 +38522,11 @@ msgid "Please set Email/Phone for the contact" msgstr "" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" msgstr "" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 @@ -38530,7 +38534,7 @@ msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." +msgid "Please set Fixed Asset Account in {0} against {1}." msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 @@ -38547,8 +38551,7 @@ msgid "Please set Root Type" msgstr "" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" +msgid "Please set Tax ID for the customer '{0}'" msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 @@ -38568,15 +38571,15 @@ msgid "Please set a Company" msgstr "" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "" @@ -38593,8 +38596,7 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" +msgid "Please set an Address on the Company '{0}'" msgstr "" #: erpnext/stock/services/base_stock_gl_composer.py:194 @@ -38613,24 +38615,21 @@ msgstr "" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 @@ -38662,11 +38661,11 @@ msgstr "" msgid "Please set one of the following:" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "" @@ -38674,7 +38673,7 @@ msgstr "" msgid "Please set the Customer Address" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "" @@ -38729,7 +38728,7 @@ msgstr "" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "" @@ -38737,7 +38736,7 @@ msgstr "" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "" @@ -38747,8 +38746,8 @@ msgstr "" msgid "Please specify Company to proceed" msgstr "" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "" @@ -38756,11 +38755,11 @@ msgstr "" msgid "Please specify a {0} first." msgstr "" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "" @@ -38768,6 +38767,14 @@ msgstr "" msgid "Please specify from/to range" msgstr "" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "" @@ -38931,7 +38938,7 @@ msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38956,7 +38963,7 @@ msgstr "" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -38999,7 +39006,7 @@ msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" +msgid "Posting Date cannot be a future date" msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType @@ -39008,7 +39015,7 @@ msgstr "" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "" @@ -39201,6 +39208,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "" @@ -39290,7 +39301,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "" @@ -39432,7 +39443,7 @@ msgstr "" msgid "Price List Currency" msgstr "" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "" @@ -39553,7 +39564,7 @@ msgstr "" msgid "Price Per Unit ({0})" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "" @@ -39664,7 +39675,7 @@ msgstr "" msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "" @@ -39872,7 +39883,7 @@ msgid "Priorities" msgstr "" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." +msgid "Priority cannot be less than 1." msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 @@ -40054,7 +40065,7 @@ msgstr "" msgid "Process in Single Transaction" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40180,7 +40191,7 @@ msgstr "" msgid "Product Bundle Balance" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40205,7 +40216,7 @@ msgstr "" msgid "Product Bundle Item" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40408,7 +40419,7 @@ msgstr "" msgid "Profit & Loss" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "" @@ -40437,6 +40448,10 @@ msgstr "" msgid "Profit and Loss Statement" msgstr "" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40445,8 +40460,8 @@ msgstr "" msgid "Profit and Loss Summary" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "" @@ -40519,7 +40534,7 @@ msgstr "" msgid "Project Summary" msgstr "" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "" @@ -40599,7 +40614,7 @@ msgstr "" msgid "Project wise Stock Tracking " msgstr "" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "" @@ -40650,7 +40665,7 @@ msgstr "" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40796,7 +40811,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40829,9 +40844,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "" @@ -41059,8 +41074,8 @@ msgstr "" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "" @@ -41101,7 +41116,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41125,11 +41140,11 @@ msgstr "" msgid "Purchase Order" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "" @@ -41144,7 +41159,7 @@ msgstr "" msgid "Purchase Order Analysis" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "" @@ -41193,7 +41208,7 @@ msgid "Purchase Order Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" +msgid "Purchase Order Required for item {0}" msgstr "" #. Name of a report @@ -41253,7 +41268,7 @@ msgid "Purchase Orders to Receive" msgstr "" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" +msgid "Purchase Orders {0} are unlinked" msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 @@ -41343,7 +41358,7 @@ msgid "Purchase Receipt Required" msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" +msgid "Purchase Receipt Required for item {0}" msgstr "" #. Label of a Link in the Buying Workspace @@ -41363,7 +41378,7 @@ msgid "Purchase Receipt Trends " msgstr "" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 @@ -41591,7 +41606,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41610,7 +41625,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41675,7 +41690,7 @@ msgstr "" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41712,7 +41727,7 @@ msgstr "" msgid "Qty To Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "" @@ -41807,7 +41822,7 @@ msgstr "" msgid "Qty to Bill" msgstr "" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "" @@ -41993,7 +42008,7 @@ msgstr "" msgid "Quality Inspection Analysis" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42070,7 +42085,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "" @@ -42153,7 +42168,7 @@ msgstr "" msgid "Quality Review Objective" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42197,12 +42212,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42353,7 +42368,7 @@ msgstr "" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "" @@ -42381,11 +42396,11 @@ msgstr "" msgid "Quantity to Manufacture" msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "" @@ -42393,6 +42408,10 @@ msgstr "" msgid "Quantity to Scan" msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42418,7 +42437,7 @@ msgstr "" msgid "Query Route String" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "" @@ -42658,7 +42677,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42842,7 +42861,7 @@ msgid "Rate at which this tax is applied" msgstr "" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43161,7 +43180,7 @@ msgstr "" msgid "Reason for Failure" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "" @@ -43403,8 +43422,8 @@ msgstr "" msgid "Receiving" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "" @@ -43580,6 +43599,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43630,7 +43653,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "" @@ -43710,7 +43733,7 @@ msgstr "" msgid "Reference #{0} dated {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "" @@ -44002,7 +44025,7 @@ msgid "Rejected Warehouse" msgstr "" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 @@ -44109,7 +44132,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44148,7 +44171,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "" @@ -44299,7 +44322,7 @@ msgstr "" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44382,7 +44405,7 @@ msgstr "" msgid "Repost Item Valuation" msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44428,6 +44451,15 @@ msgstr "" msgid "Reposting Data File" msgstr "" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44512,7 +44544,7 @@ msgstr "" msgid "Reqd Qty (BOM)" msgstr "" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "" @@ -44628,11 +44660,11 @@ msgstr "" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "" @@ -44811,6 +44843,10 @@ msgstr "" msgid "Reserve Warehouse" msgstr "" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "" @@ -44849,7 +44885,7 @@ msgid "Reserved Qty" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." msgstr "" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material @@ -44894,7 +44930,7 @@ msgstr "" msgid "Reserved Quantity for Production" msgstr "" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "" @@ -44910,13 +44946,13 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "" @@ -45410,6 +45446,10 @@ msgstr "" msgid "Returns" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45834,11 +45874,11 @@ msgstr "" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "" @@ -45922,23 +45962,23 @@ msgstr "" msgid "Row #{0}: Batch No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "" @@ -46014,13 +46054,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "" @@ -46032,7 +46075,7 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "" @@ -46040,12 +46083,12 @@ msgstr "" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "" @@ -46057,7 +46100,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "" @@ -46065,6 +46108,10 @@ msgstr "" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "" @@ -46077,11 +46124,18 @@ msgstr "" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46104,8 +46158,8 @@ msgstr "" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "" @@ -46117,7 +46171,7 @@ msgstr "" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46129,6 +46183,10 @@ msgstr "" msgid "Row #{0}: From Time and To Time fields are required" msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "" @@ -46157,16 +46215,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "" @@ -46182,12 +46240,16 @@ msgstr "" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 @@ -46198,15 +46260,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "" @@ -46218,24 +46280,48 @@ msgstr "" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "" @@ -46251,6 +46337,10 @@ msgstr "" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46270,7 +46360,7 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 @@ -46293,7 +46383,7 @@ msgstr "" msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "" @@ -46301,17 +46391,17 @@ msgstr "" msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "" @@ -46331,11 +46421,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "" @@ -46345,7 +46435,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46354,6 +46444,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "" @@ -46366,7 +46460,7 @@ msgstr "" msgid "Row #{0}: Serial No {1} is already selected." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "" @@ -46390,7 +46484,7 @@ msgstr "" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46459,7 +46553,7 @@ msgstr "" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "" @@ -46467,19 +46561,27 @@ msgstr "" msgid "Row #{0}: The batch {1} has already expired." msgstr "" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" +msgid "Row #{0}: Timings conflict with row {1}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46491,11 +46593,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "" @@ -46503,6 +46609,19 @@ msgstr "" msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "" @@ -46519,6 +46638,14 @@ msgstr "" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46559,71 +46686,10 @@ msgstr "" msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "" @@ -46636,10 +46702,6 @@ msgstr "" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "" @@ -46660,19 +46722,19 @@ msgstr "" msgid "Row {0}: Advance against Supplier must be debit" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "" @@ -46688,11 +46750,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "" @@ -46720,24 +46782,24 @@ msgstr "" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46758,6 +46820,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "" @@ -46779,7 +46844,7 @@ msgid "Row {0}: Invalid reference {1}" msgstr "" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" msgstr "" #: erpnext/controllers/selling_controller.py:659 @@ -46810,7 +46875,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "" @@ -46834,7 +46899,7 @@ msgstr "" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "" @@ -46842,12 +46907,12 @@ msgstr "" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:208 -msgid "Row {0}: Please select an active BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." +#: erpnext/controllers/subcontracting_controller.py:208 +msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "" #: erpnext/regional/italy/utils.py:290 @@ -46866,11 +46931,11 @@ msgstr "" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "" @@ -46878,7 +46943,7 @@ msgstr "" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "" @@ -46890,7 +46955,7 @@ msgstr "" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46915,10 +46980,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" +msgid "Row {0}: The item {1}, quantity must be a positive number" msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "" @@ -46971,15 +47036,19 @@ msgstr "" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "" @@ -47018,7 +47087,7 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' @@ -47079,10 +47148,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47150,7 +47215,7 @@ msgstr "" msgid "SLA Paused On" msgstr "" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "" @@ -47449,7 +47514,7 @@ msgid "Sales Invoice is not submitted" msgstr "" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" +msgid "Sales Invoice isn't created by user {0}" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 @@ -47666,8 +47731,8 @@ msgstr "" msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48074,7 +48139,7 @@ msgstr "" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "" @@ -48106,7 +48171,7 @@ msgstr "" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "" @@ -48216,7 +48281,7 @@ msgstr "" msgid "Schedule Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48227,7 +48292,7 @@ msgstr "" msgid "Scheduled Date" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48513,7 +48578,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "" @@ -48534,7 +48599,7 @@ msgid "Select BOM and Qty for Production" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "" @@ -48599,7 +48664,7 @@ msgstr "" msgid "Select Dispatch Address " msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "" @@ -48624,7 +48689,7 @@ msgstr "" msgid "Select Items based on Delivery Date" msgstr "" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "" @@ -48654,7 +48719,7 @@ msgstr "" msgid "Select Loyalty Program" msgstr "" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48668,13 +48733,13 @@ msgid "Select Quantity" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "" @@ -48765,6 +48830,7 @@ msgid "Select an Item Group." msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "" @@ -48906,10 +48972,14 @@ msgstr "" msgid "Selected date is" msgstr "" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49057,7 +49127,7 @@ msgid "Send Emails to Suppliers" msgstr "" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "" @@ -49141,7 +49211,7 @@ msgstr "" msgid "Serial / Batch No" msgstr "" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "" @@ -49198,10 +49268,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49243,6 +49314,10 @@ msgstr "" msgid "Serial No Already Assigned" msgstr "" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "" @@ -49260,7 +49335,7 @@ msgstr "" msgid "Serial No Range" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "" @@ -49305,7 +49380,7 @@ msgid "Serial No and Batch" msgstr "" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." msgstr "" #. Name of a report @@ -49317,7 +49392,7 @@ msgstr "" msgid "Serial No and Batch Traceability" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "" @@ -49337,21 +49412,18 @@ msgstr "" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49366,25 +49438,26 @@ msgstr "" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49404,7 +49477,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "" @@ -49505,6 +49578,10 @@ msgstr "" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49553,7 +49630,7 @@ msgstr "" msgid "Serial and Batch Summary" msgstr "" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "" @@ -49561,122 +49638,12 @@ msgstr "" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "" @@ -49758,7 +49725,7 @@ msgid "Service Item {0} is disabled." msgstr "" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "" @@ -49867,12 +49834,12 @@ msgid "Service Stop Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "" @@ -49896,7 +49863,7 @@ msgstr "" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "" @@ -49911,7 +49878,7 @@ msgstr "" msgid "Set Delivery Warehouse" msgstr "" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50016,7 +49983,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50034,7 +50001,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50060,7 +50027,7 @@ msgstr "" msgid "Set as Completed" msgstr "" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "" @@ -50158,15 +50125,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "" @@ -50234,7 +50201,7 @@ msgid "Setting up company" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "" @@ -50662,6 +50629,7 @@ msgid "Show Completed" msgstr "" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "" @@ -50864,7 +50832,7 @@ msgstr "" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "" @@ -50967,11 +50935,11 @@ msgstr "" msgid "Simultaneous" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "" @@ -51032,7 +51000,7 @@ msgstr "" msgid "Skip Material Transfer to WIP Warehouse" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51088,7 +51056,7 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" +msgid "Something went wrong, please try again" msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 @@ -51156,7 +51124,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51193,8 +51161,8 @@ msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51324,7 +51292,7 @@ msgstr "" msgid "Split Qty" msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "" @@ -51337,7 +51305,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "" @@ -51390,7 +51363,7 @@ msgstr "" msgid "Stale Days" msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "" @@ -51455,10 +51428,26 @@ msgstr "" msgid "Standing Name" msgstr "" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "" @@ -51488,7 +51477,7 @@ msgstr "" msgid "Start Timer" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51517,10 +51506,14 @@ msgstr "" msgid "Start date should be less than end date for task {0}" msgstr "" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51601,7 +51594,7 @@ msgstr "" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "" @@ -51729,7 +51722,7 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 @@ -51811,16 +51804,20 @@ msgstr "" msgid "Stock Entry Type" msgstr "" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 @@ -51987,7 +51984,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52070,7 +52067,7 @@ msgstr "" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52095,15 +52092,15 @@ msgstr "" msgid "Stock Reservation Entries Cancelled" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52273,7 +52270,7 @@ msgstr "" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52432,8 +52429,8 @@ msgstr "" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 @@ -52452,7 +52449,7 @@ msgstr "" msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "" @@ -52467,7 +52464,7 @@ msgstr "" msgid "Stop Reason" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "" @@ -52475,7 +52472,7 @@ msgstr "" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "" @@ -52689,7 +52686,7 @@ msgstr "" msgid "Subcontracting Delivery" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52761,7 +52758,7 @@ msgstr "" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52799,7 +52796,7 @@ msgstr "" msgid "Subcontracting Order Supplied Item" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "" @@ -52873,7 +52870,7 @@ msgstr "" msgid "Subcontracting Sales Order" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52892,7 +52889,7 @@ msgstr "" msgid "Subdivision" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "" @@ -52921,7 +52918,7 @@ msgstr "" msgid "Submit your Quotation" msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53063,7 +53060,7 @@ msgstr "" msgid "Successful" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "" @@ -53241,7 +53238,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53423,7 +53420,7 @@ msgstr "" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "" @@ -53571,7 +53568,7 @@ msgstr "" msgid "Supplier Quotation Item" msgstr "" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "" @@ -53756,10 +53753,6 @@ msgstr "" msgid "Support Tickets" msgstr "" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "" @@ -53845,7 +53838,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "" @@ -53906,7 +53899,7 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" +msgid "Target Asset {0} needs to be a composite asset" msgstr "" #. Name of a DocType @@ -54016,11 +54009,11 @@ msgstr "" msgid "Target Warehouse Reservation Error" msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "" @@ -54495,7 +54488,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "" @@ -54707,7 +54700,7 @@ msgstr "" msgid "Template Item" msgstr "" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "" @@ -55014,12 +55007,8 @@ msgstr "" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' @@ -55027,10 +55016,18 @@ msgstr "" msgid "The BOM which will be replaced" msgstr "" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "" @@ -55055,6 +55052,10 @@ msgstr "" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "" @@ -55072,8 +55073,11 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 @@ -55084,11 +55088,15 @@ msgstr "" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "" @@ -55136,15 +55144,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "" @@ -55193,6 +55201,10 @@ msgstr "" msgid "The field {0} in row {1} is not set" msgstr "" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "" @@ -55214,8 +55226,8 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 @@ -55243,7 +55255,7 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" +msgid "The following invalid Pricing Rules are deleted:{0}" msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 @@ -55255,7 +55267,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "" @@ -55291,7 +55303,7 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." +msgid "The job card {0} is in {1} state and you cannot complete it." msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 @@ -55329,11 +55341,11 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" +msgid "The operation {0} cannot be added multiple times" msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" +msgid "The operation {0} cannot be its own sub-operation" msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 @@ -55382,6 +55394,10 @@ msgstr "" msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55391,7 +55407,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "" @@ -55408,7 +55424,7 @@ msgid "The selected BOMs are not for the same item" msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." +msgid "The selected change account {0} does not belong to Company {1}." msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 @@ -55425,7 +55441,7 @@ msgstr "" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 @@ -55444,11 +55460,11 @@ msgstr "" msgid "The shares don't exist with the {0}" msgstr "" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "" @@ -55470,16 +55486,16 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 @@ -55518,7 +55534,7 @@ msgstr "" msgid "The value of {0} differs between Items {1} and {2}" msgstr "" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "" @@ -55542,7 +55558,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "" @@ -55550,7 +55566,7 @@ msgstr "" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "" @@ -55558,6 +55574,10 @@ msgstr "" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "" @@ -55566,7 +55586,7 @@ msgstr "" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "" @@ -55578,7 +55598,7 @@ msgstr "" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "" @@ -55595,6 +55615,10 @@ msgstr "" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "" @@ -55611,10 +55635,6 @@ msgstr "" msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "" @@ -55643,20 +55663,20 @@ msgstr "" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 @@ -55707,15 +55727,19 @@ msgstr "" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "" @@ -55737,7 +55761,7 @@ msgstr "" msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "" @@ -55755,7 +55779,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "" @@ -55897,7 +55921,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "" @@ -55961,7 +55985,7 @@ msgstr "" msgid "This schedule was created when Asset {0} was scrapped." msgstr "" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "" @@ -55988,10 +56012,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56049,7 +56073,7 @@ msgid "This will restrict user access to other employee records" msgstr "" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." +msgid "This {0} will be treated as material transfer." msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax @@ -56178,6 +56202,12 @@ msgstr "" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56464,7 +56494,7 @@ msgid "To Time" msgstr "" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" +msgid "To Time cannot be before From Time" msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' @@ -56495,15 +56525,15 @@ msgstr "" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "" @@ -56520,7 +56550,7 @@ msgid "To be Delivered to Customer" msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 @@ -56532,7 +56562,7 @@ msgid "To create a Payment Request reference document is required" msgstr "" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 @@ -56545,8 +56575,8 @@ msgstr "" msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "" @@ -56566,7 +56596,7 @@ msgstr "" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "" @@ -56583,10 +56613,12 @@ msgstr "" msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "" @@ -56665,8 +56697,8 @@ msgstr "" msgid "Total (Company Currency)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "" @@ -56708,6 +56740,22 @@ msgstr "" msgid "Total Advance" msgstr "" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56755,11 +56803,11 @@ msgstr "" msgid "Total Amount in Words" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "" @@ -56941,7 +56989,7 @@ msgstr "" msgid "Total Demand (Past Data)" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "" @@ -56950,11 +56998,11 @@ msgstr "" msgid "Total Estimated Distance" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "" @@ -56992,11 +57040,11 @@ msgstr "" msgid "Total Holidays" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "" @@ -57039,7 +57087,7 @@ msgstr "" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "" @@ -57354,7 +57402,7 @@ msgstr "" msgid "Total Taxes and Charges (Company Currency)" msgstr "" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "" @@ -57363,7 +57411,11 @@ msgstr "" msgid "Total Time in Mins" msgstr "" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "" @@ -57442,7 +57494,7 @@ msgstr "" msgid "Total allocated percentage for sales team should be 100" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "" @@ -57460,7 +57512,7 @@ msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" +msgid "Total payments amount can't be greater than {0}" msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 @@ -57478,8 +57530,8 @@ msgstr "" msgid "Total {0} ({1})" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 @@ -57568,27 +57620,11 @@ msgstr "" msgid "Tracking URL" msgstr "" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "" @@ -57641,11 +57677,11 @@ msgstr "" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58035,6 +58071,10 @@ msgstr "" msgid "Trial Balance for Party" msgstr "" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58219,7 +58259,7 @@ msgstr "" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58241,7 +58281,7 @@ msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58271,7 +58311,7 @@ msgstr "" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58335,7 +58375,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "" @@ -58409,7 +58449,7 @@ msgstr "" msgid "UnReconcile Allocations" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58422,10 +58462,6 @@ msgstr "" msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "" @@ -58450,7 +58486,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "" @@ -58462,8 +58498,10 @@ msgstr "" msgid "Unblock Invoice" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58513,7 +58551,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58536,7 +58574,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "" @@ -58739,7 +58777,7 @@ msgstr "" msgid "Unsecured Loans" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "" @@ -58752,7 +58790,7 @@ msgstr "" msgid "Unsubscribe from this Email Digest" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58896,7 +58934,7 @@ msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58960,7 +58998,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "" @@ -59188,7 +59226,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "" @@ -59277,6 +59315,10 @@ msgstr "" msgid "User has not applied rule on the invoice {0}" msgstr "" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "" @@ -59289,6 +59331,10 @@ msgstr "" msgid "User {0} is already assigned to Employee {1}" msgstr "" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "" @@ -59297,10 +59343,6 @@ msgstr "" msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59593,15 +59635,15 @@ msgstr "" msgid "Valuation Rate (In / Out)" msgstr "" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "" @@ -59609,7 +59651,7 @@ msgstr "" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "" @@ -59619,7 +59661,7 @@ msgstr "" msgid "Valuation and Total" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "" @@ -59632,13 +59674,13 @@ msgstr "" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 @@ -59689,12 +59731,12 @@ msgstr "" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "" @@ -59703,19 +59745,19 @@ msgstr "" msgid "Value of Goods" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "" @@ -60191,7 +60233,7 @@ msgstr "" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60219,7 +60261,7 @@ msgstr "" msgid "Voucher No" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "" @@ -60231,7 +60273,7 @@ msgstr "" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "" @@ -60263,7 +60305,7 @@ msgstr "" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60470,7 +60512,7 @@ msgstr "" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "" @@ -60488,16 +60530,16 @@ msgstr "" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60618,7 +60660,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "" @@ -60638,7 +60680,7 @@ msgstr "" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "" @@ -60792,10 +60834,6 @@ msgstr "" msgid "Website Specifications" msgstr "" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60941,7 +60979,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61117,17 +61155,17 @@ msgstr "" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61166,7 +61204,7 @@ msgstr "" msgid "Work Order Item" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61207,20 +61245,20 @@ msgstr "" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61241,7 +61279,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "" @@ -61266,7 +61304,7 @@ msgstr "" msgid "Work-in-Progress Warehouse" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "" @@ -61319,7 +61357,7 @@ msgstr "" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61551,14 +61589,6 @@ msgstr "" msgid "Year Start Date" msgstr "" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61573,7 +61603,7 @@ msgid "You are importing data for the code list:" msgstr "" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." msgstr "" #: erpnext/accounts/services/gl_validator.py:114 @@ -61593,7 +61623,7 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." +msgid "You can add the original invoice {0} manually to proceed." msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 @@ -61604,19 +61634,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61638,7 +61664,7 @@ msgid "You can only select one mode of payment as default" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." +msgid "You can redeem up to {0}." msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 @@ -61657,14 +61683,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "" @@ -61673,16 +61691,16 @@ msgstr "" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." +msgid "You cannot create/amend any accounting entries until this date." msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 @@ -61694,15 +61712,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." +msgid "You cannot edit the root node." msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61710,7 +61736,7 @@ msgid "You cannot redeem more than {0}." msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" +msgid "You cannot repost item valuation before {0}" msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 @@ -61718,7 +61744,7 @@ msgid "You cannot restart a Subscription that is not cancelled." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." +msgid "You cannot submit an empty order." msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 @@ -61733,6 +61759,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61743,7 +61773,7 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." +msgid "You do not have permissions to {0} items in a {1}." msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 @@ -61770,11 +61800,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "" @@ -61791,7 +61821,7 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 @@ -61806,19 +61836,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "" @@ -61870,6 +61900,10 @@ msgstr "" msgid "Zero Balance" msgstr "" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "" @@ -61900,7 +61934,7 @@ msgstr "" msgid "`Allow Negative rates for Items`" msgstr "" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "" @@ -61920,7 +61954,7 @@ msgstr "" msgid "as a percentage of finished item quantity" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -61936,10 +61970,6 @@ msgstr "" msgid "by {}" msgstr "" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -61994,8 +62024,8 @@ msgstr "" msgid "fieldname" msgstr "" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62075,14 +62105,10 @@ msgstr "" msgid "paid to" msgstr "" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62096,7 +62122,7 @@ msgstr "" msgid "per hour" msgstr "" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "" @@ -62172,8 +62198,8 @@ msgstr "" msgid "subscription is already cancelled." msgstr "" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "" @@ -62236,10 +62262,6 @@ msgstr "" msgid "via BOM Update Tool" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "" @@ -62252,7 +62274,7 @@ msgstr "" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "" @@ -62272,7 +62294,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "" @@ -62280,11 +62302,6 @@ msgstr "" msgid "{0} Digest" msgstr "" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "" @@ -62366,10 +62383,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "" @@ -62385,7 +62410,7 @@ msgstr "" msgid "{0} created" msgstr "" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62427,7 +62452,7 @@ msgstr "" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62435,6 +62460,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "" @@ -62443,7 +62472,11 @@ msgstr "" msgid "{0} in row {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62457,7 +62490,7 @@ msgstr "" msgid "{0} is added multiple times on rows: {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "" @@ -62465,7 +62498,7 @@ msgstr "" msgid "{0} is blocked so this transaction cannot proceed" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62478,11 +62511,11 @@ msgstr "" msgid "{0} is mandatory for account {1}" msgstr "" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "" @@ -62490,7 +62523,7 @@ msgstr "" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "" @@ -62506,7 +62539,7 @@ msgstr "" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "" @@ -62522,16 +62555,16 @@ msgstr "" msgid "{0} is not enabled in {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 @@ -62582,7 +62615,7 @@ msgstr "" msgid "{0} payment entries can not be filtered by {1}" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "" @@ -62595,7 +62628,7 @@ msgstr "" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "" @@ -62611,16 +62644,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "" @@ -62628,7 +62661,7 @@ msgstr "" msgid "{0} until {1}" msgstr "" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "" @@ -62636,7 +62669,7 @@ msgstr "" msgid "{0} variants created." msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62670,7 +62703,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "" @@ -62704,12 +62737,21 @@ msgstr "" msgid "{0} {1} is already linked to Common Code {2}." msgstr "" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "" @@ -62741,6 +62783,10 @@ msgstr "" msgid "{0} {1} is not active" msgstr "" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "" @@ -62846,27 +62892,23 @@ msgstr "" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62882,7 +62924,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "" @@ -62894,7 +62936,7 @@ msgstr "" msgid "{doctype} {name} is cancelled or closed." msgstr "" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "" @@ -62906,32 +62948,7 @@ msgstr "" msgid "{}" msgstr "" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "" - diff --git a/erpnext/locale/vi.po b/erpnext/locale/vi.po index f14e8242fba..8282c5460bc 100644 --- a/erpnext/locale/vi.po +++ b/erpnext/locale/vi.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: vi_VN\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "\"Là Tài sản cố định\" không thể bỏ chọn, vì tồn tạ msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" cho \"SN-01\" đến \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "# Trong kho" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "# Mặt hàng yêu cầu" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "'Cho phép nhiều Đơn hàng bán đối với Đơn mua hàng của Khách hàng'" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "'Dựa trên' và 'Nhóm theo' không thể giống nhau" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "'Từ ngày' phải sau 'Đến ngày'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "'Có Serial No' không thể là 'Có' đối với mặt hàng không tồn kho" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "'Yêu cầu kiểm tra trước khi giao' đã bị vô hiệu hóa cho mặt hàng {0}, không cần tạo QI" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "'Yêu cầu kiểm tra trước khi mua' đã bị vô hiệu hóa cho mặt hàng {0}, không cần tạo QI" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'Mở đầu'" @@ -326,13 +317,13 @@ msgstr "'Mở đầu'" msgid "'To Date' is required" msgstr "'Đến ngày' là bắt buộc" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'Đến số kiện' không thể nhỏ hơn 'Từ số kiện'" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "'Cập nhật kho' không thể được chọn vì các mặt hàng không được giao qua {0}" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "Trên 90" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "Không thể tạo tài sản.

                    Bạn đang cố tạo {0} tài sản từ {2} {3}.
                    Tuy nhiên, chỉ có {1} mặt hàng đã được mua và {4} tài sản đã tồn tại đối với {5}." @@ -826,17 +817,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • Yêu cầu chứng từ thanh toán cho dòng: {0}
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    Không thể thanh toán quá cho các mặt hàng sau:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    Các {0} sau không thuộc Công ty {1}:

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1006,9 +997,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "Một Nhóm khách hàng đã tồn tại với cùng tên, vui lòng thay đổi tên Khách hàng hoặc đổi tên Nhóm khách hàng" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1018,9 +1009,9 @@ msgstr "Có thể thêm Danh sách ngày nghỉ để loại trừ việc tính msgid "A Lead requires either a person's name or an organization's name" msgstr "Một Cơ hội yêu cầu tên của một người hoặc tên của một tổ chức" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "Phiếu đóng gói chỉ có thể được tạo cho Phiếu giao hàng ở trạng thái Nháp." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1036,7 +1027,7 @@ msgstr "Danh sách giá là tập hợp Giá mặt hàng cho Bán, Mua, hoặc c msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "Một Sản phẩm hoặc Dịch vụ được mua, bán hoặc tồn kho." -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "Một Công việc Đối soát {0} đang chạy cho cùng bộ lọc. Không thể đối soát ngay" @@ -1069,7 +1060,7 @@ msgstr "Phải đặt tài xế để trình." msgid "A logical Warehouse against which stock entries are made." msgstr "Một Kho logic mà các phiếu kho được tạo against." -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "Đã xảy ra xung đột chuỗi đặt tên khi tạo số serial. Vui lòng thay đổi chuỗi đặt tên cho mặt hàng {0}." @@ -1245,7 +1236,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "Số lượng được chấp nhận trong Đơn vị Kho" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "Số lượng được chấp nhận" @@ -1276,12 +1267,16 @@ msgstr "Khóa Truy cập" msgid "Access Key is required for Service Provider: {0}" msgstr "Khóa Truy cập là bắt buộc cho Nhà cung cấp Dịch vụ: {0}" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "Theo CEFACT/ICG/2010/IC013 hoặc CEFACT/ICG/2010/IC010" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "Theo BOM {0}, Mặt hàng '{1}' thiếu trong phiếu kho." @@ -1534,7 +1529,7 @@ msgstr "Tài khoản là bắt buộc để lấy các phiếu thanh toán" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "Không tìm thấy Tài khoản" @@ -1664,11 +1659,11 @@ msgstr "Tài khoản: {0} là công việc đang thực hiện vốn và msgid "Account: {0} can only be updated via Stock Transactions" msgstr "Tài khoản: {0} chỉ có thể được cập nhật qua Giao dịch Kho" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "Tài khoản: {0} không được phép theo Phiếu thanh toán" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "Tài khoản: {0} với tiền tệ: {1} không thể được chọn" @@ -1947,8 +1942,8 @@ msgstr "Bộ lọc Chiều Kế toán" msgid "Accounting Entries" msgstr "Bút toán Kế toán" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "Bút toán Kế toán cho Tài sản" @@ -1973,8 +1968,8 @@ msgstr "Bút toán Kế toán cho Dịch vụ" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2022,7 +2017,11 @@ msgstr "Đào tạo Kế toán" msgid "Accounting Period" msgstr "Kỳ Kế toán" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "Kỳ Kế toán trùng lặp với {0}" @@ -2220,8 +2219,8 @@ msgstr "Tài khoản khấu hao lũy kế" msgid "Accumulated Depreciation Amount" msgstr "Số tiền khấu hao lũy kế" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "Khấu hao lũy kế tính đến" @@ -2449,7 +2448,7 @@ msgstr "Số lượng tồn kho thực tế" msgid "Actual Batch Quantity" msgstr "Số lượng theo lô thực tế" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "Chi phí thực tế" @@ -2459,7 +2458,7 @@ msgstr "Chi phí thực tế" msgid "Actual Date" msgstr "Ngày thực tế" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2609,8 +2608,8 @@ msgstr "Thời gian thực tế theo giờ (qua Bảng chấm công)" msgid "Actual qty in stock" msgstr "Số lượng thực tế trong kho" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "Thuế loại thực tế không thể bao gồm trong đơn giá mặt hàng ở dòng {0}" @@ -2775,10 +2774,6 @@ msgstr "Thêm Serial / Batch No" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "Thêm Serial / Batch No (Số lượng bị từ chối)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "Thêm Kho" @@ -2877,13 +2872,13 @@ msgstr "Thêm bởi" msgid "Added On" msgstr "Thêm vào" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "Đã thêm Vai trò Nhà cung cấp cho Người dùng {0}." #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "Đã thêm Vai trò {1} cho Người dùng {0}." +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3025,7 +3020,7 @@ msgstr "Số tiền chiết khấu bổ sung" msgid "Additional Discount Amount (Company Currency)" msgstr "Số tiền chiết khấu bổ sung (Tiền tệ Công ty)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "Số tiền chiết khấu bổ sung ({discount_amount}) không thể vượt quá tổng trước chiết khấu đó ({total_before_discount})" @@ -3144,16 +3139,8 @@ msgid "Additional Transferred Qty" msgstr "Số lượng chuyển thêm" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "Số lượng chuyển thêm {0}\n" -"\t\t\t\t\tkhông thể lớn hơn {1}.\n" -"\t\t\t\t\tĐể sửa lỗi này, tăng giá trị phần trăm\n" -"\t\t\t\t\tcủa trường 'Chuyển Nguyên liệu thô Thêm vào WIP'\n" -"\t\t\t\t\ttrong Cài đặt Sản xuất." +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3417,7 +3404,7 @@ msgstr "Loại Chứng từ Tạm ứng" msgid "Advance amount" msgstr "Số tiền ứng trước" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "Số tiền tạm ứng không thể lớn hơn {0} {1}" @@ -3486,7 +3473,7 @@ msgstr "Chống lại" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "Đối với tài khoản" @@ -3606,7 +3593,7 @@ msgstr "Đối với Hóa đơn Nhà cung cấp {0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "Chống lại Voucher" @@ -3630,7 +3617,7 @@ msgstr "Số Chứng từ Đối tác" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "Loại Chứng từ Đối tác" @@ -3744,6 +3731,13 @@ msgstr "Hãng hàng không" msgid "Algorithm" msgstr "Thuật toán" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3920,7 +3914,7 @@ msgstr "" msgid "All items are already requested" msgstr "Tất cả các mặt hàng đã được yêu cầu" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "Tất cả các mặt hàng đã được lập Hóa đơn/Trả lại" @@ -3932,7 +3926,7 @@ msgstr "Tất cả các mặt hàng đã được nhận" msgid "All items have already been transferred for this Work Order." msgstr "Tất cả các mặt hàng đã được chuyển cho Lệnh sản xuất này." -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "Tất cả các mặt hàng trong tài liệu này đã có Kiểm tra Chất lượng được liên kết." @@ -3951,16 +3945,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "Tất cả Bình luận và Email sẽ được sao chép từ một tài liệu sang tài liệu mới được tạo khác (Cơ hội -> Cơ hội -> Báo giá) xuyên suốt các tài liệu CRM." #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "Tất cả các mặt hàng đã được trả lại." +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "Tất cả các mặt hàng yêu cầu (nguyên liệu thô) sẽ được lấy từ BOM và điền vào bảng này. Ở đây bạn cũng có thể thay đổi Kho nguồn cho bất kỳ mặt hàng nào. Và trong quá trình sản xuất, bạn có thể theo dõi nguyên liệu thô đã chuyển từ bảng này." -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "Tất cả các mặt hàng này đã được lập Hóa đơn/Trả lại" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -3983,7 +3977,7 @@ msgstr "Phân bổ Tạm ứng Tự động (FIFO)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "Phân bổ số tiền thanh toán" @@ -3993,7 +3987,7 @@ msgstr "Phân bổ số tiền thanh toán" msgid "Allocate Payment Based On Payment Terms" msgstr "Phân bổ Thanh toán Dựa trên Điều khoản Thanh toán" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "Phân bổ Yêu cầu Thanh toán" @@ -4023,7 +4017,7 @@ msgstr "Đã phân bổ" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4106,8 +4100,8 @@ msgid "Allow Alternative Item" msgstr "Cho phép Mặt hàng Thay thế" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "Cho phép Mặt hàng Thay thế phải được chọn trên Mặt hàng {}" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4214,7 +4208,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "Cho phép đổi tên giá trị thuộc tính" @@ -4495,14 +4489,16 @@ msgstr "Các mặt hàng được phép" msgid "Allowed To Transact With" msgstr "Được phép giao dịch với" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "Các vai trò chính được phép là 'Khách hàng' và 'Nhà cung cấp'. Vui lòng chỉ chọn một trong các vai trò này." -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4535,10 +4531,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "Cho phép người dùng gửi Báo giá từ nhà cung cấp với số lượng bằng không. Hữu ích khi giá cố định nhưng số lượng thì không. Ví dụ. Hợp đồng giá." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4546,10 +4542,6 @@ msgstr "" msgid "Already Picked" msgstr "Đã chọn rồi" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "Bản ghi đã tồn tại cho mặt hàng {0}" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "Đã đặt mặc định trong hồ sơ POS {0} cho người dùng {1}, vui lòng hủy mặc định" @@ -4565,12 +4557,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "Mục thay thế" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4775,7 +4767,7 @@ msgstr "Luôn hỏi" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5001,12 +4993,12 @@ msgstr "Nhóm mặt hàng là cách để phân loại mặt hàng theo loại." msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "Đã xảy ra lỗi khi định giá lại mặt hàng qua {0}" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "Đã xảy ra lỗi trong quá trình cập nhật" @@ -5220,7 +5212,7 @@ msgstr "Mã phiếu giảm giá đã áp dụng" msgid "Applied on each reading." msgstr "Được áp dụng trên mỗi lần đọc." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "Đã áp dụng quy tắc đặt hàng." @@ -5397,10 +5389,6 @@ msgstr "Các khung giờ đặt lịch hẹn" msgid "Appointment Confirmation" msgstr "Xác nhận cuộc hẹn" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "Cuộc hẹn đã được tạo thành công" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5426,6 +5414,10 @@ msgstr "Đặt lịch hẹn đã bị vô hiệu hóa cho trang này" msgid "Appointment With" msgstr "Hẹn với" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "Cuộc hẹn đã được tạo. Nhưng không tìm thấy khách hàng tiềm năng. Vui lòng kiểm tra email để xác nhận" @@ -5467,6 +5459,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "Bạn có chắc chắn muốn xóa tất cả dữ liệu demo không?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "Bạn có chắc chắn muốn xóa mặt hàng này không?" @@ -5549,18 +5550,18 @@ msgstr "Khi trường {0} được bật, giá trị của trường {1} phải msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "Khi có các giao dịch đã gửi đối với mặt hàng {0}, bạn không thể thay đổi giá trị của {1}." -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "Khi có hàng tồn kho đã đặt, bạn không thể tắt {0}." - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "Khi có đủ các mặt hàng bán thành phẩm, Lệnh sản xuất không bắt buộc cho Kho {0}." -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "Khi có đủ nguyên liệu thô, Yêu cầu vật tư không bắt buộc cho Kho {0}." +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5599,7 +5600,7 @@ msgstr "Các mặt hàng lắp ráp" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5671,7 +5672,7 @@ msgstr "Mặt hàng Tồn kho Vốn hóa Tài sản" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5837,7 +5838,7 @@ msgstr "Mặt hàng Di chuyển Tài sản" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5969,7 +5970,7 @@ msgstr "Phân tích giá trị tài sản" msgid "Asset cancelled" msgstr "Tài sản đã bị hủy" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "Tài sản không thể bị hủy, vì nó đã là {0}" @@ -5985,7 +5986,7 @@ msgstr "Tài sản đã được vốn hóa sau khi Vốn hóa Tài sản {0} đ msgid "Asset created" msgstr "Tài sản đã được tạo" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "Tài sản đã được tạo sau khi tách từ Tài sản {0}" @@ -6038,7 +6039,7 @@ msgstr "Tài sản đã được trình" msgid "Asset transferred to Location {0}" msgstr "Tài sản đã chuyển đến Vị trí {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "Tài sản đã được cập nhật sau khi tách thành Tài sản {0}" @@ -6116,7 +6117,7 @@ msgstr "Giá trị tài sản đã được điều chỉnh sau khi trình Đi #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6137,7 +6138,7 @@ msgstr "Tài sản không được tạo cho {item_code}. Bạn sẽ phải tạ msgid "Assets {assets_link} created for {item_code}" msgstr "Tài sản {assets_link} đã được tạo cho {item_code}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "Gán Công việc cho Nhân viên" @@ -6147,6 +6148,11 @@ msgstr "Gán Công việc cho Nhân viên" msgid "Assign to Name" msgstr "Gán cho Tên" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6165,19 +6171,23 @@ msgstr "Tại Dòng #{0}: Số lượng đã chọn {1} cho mặt hàng {2} lớ msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "Tại Dòng #{0}: Số lượng đã chọn {1} cho mặt hàng {2} lớn hơn tồn kho có sẵn {3} trong kho {4}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "Tại Dòng {0}: Trong Bundle Serial và Batch {1} phải có docstatus là 1 và không phải 0" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "Cần ít nhất một tài khoản có lãi hoặc lỗ tỷ giá" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "Phải chọn ít nhất một tài sản." -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "Phải chọn ít nhất một hóa đơn." @@ -6198,6 +6208,10 @@ msgstr "Nên chọn ít nhất một trong các Mô-đun có thể áp dụng" msgid "At least one of the Selling or Buying must be selected" msgstr "Phải chọn ít nhất một trong Bán hàng hoặc Mua hàng" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "Phải có ít nhất một mặt hàng nguyên liệu thô trong mục nhập kho cho loại {0}" @@ -6218,7 +6232,7 @@ msgstr "Tại dòng #{0}: id trình tự {1} không thể nhỏ hơn id trình t msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "Tại dòng {0}: Số Lô là bắt buộc cho Mặt hàng {1}" @@ -6226,26 +6240,22 @@ msgstr "Tại dòng {0}: Số Lô là bắt buộc cho Mặt hàng {1}" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "Tại dòng {0}: Số Dòng Dự liệu không thể được đặt cho mặt hàng {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "Tại dòng {0}: Số lượng là bắt buộc cho lô {1}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "Tại dòng {0}: Số Serial là bắt buộc cho Mặt hàng {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "Tại dòng {0}: Bundle Serial và Batch {1} đã được tạo. Vui lòng xóa các giá trị từ các trường số serial hoặc số lô." +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "Tại dòng {0}: đặt Số Dòng Dự liệu cho mặt hàng {1}" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "Ít nhất một nguyên liệu thô cho Mặt hàng Thành phẩm {0} nên được khách hàng cung cấp." - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6457,7 +6467,7 @@ msgstr "Đối soát Tự động của Thanh toán đã bị vô hiệu hóa. K msgid "Auto Repeat Detail" msgstr "Tự động lặp lại chi tiết" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "Lỗi Cài đặt Thuế Tự động" @@ -6518,7 +6528,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "Tài liệu tự động lặp lại đã được cập nhật" @@ -6643,7 +6653,7 @@ msgstr "Ngày có sẵn để Sử dụng" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6739,7 +6749,7 @@ msgstr "Ngày có sẵn để sử dụng là bắt buộc" msgid "Available {0}" msgstr "Có sẵn {0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "Ngày có sẵn để sử dụng phải sau ngày mua" @@ -6857,7 +6867,7 @@ msgstr "Số lượng BIN" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6876,8 +6886,8 @@ msgid "BOM 1" msgstr "BOM 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "BOM 1 {0} và BOM 2 {1} không được giống nhau" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6891,7 +6901,7 @@ msgstr "BOM 2" msgid "BOM Comparison Tool" msgstr "Công cụ so sánh BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7022,7 +7032,7 @@ msgstr "Hoạt động BOM" msgid "BOM Operations Time" msgstr "Thời gian hoạt động của BOM" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7043,7 +7053,7 @@ msgstr "Tìm kiếm BOM" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "Mục BOM Phụ" @@ -7095,10 +7105,6 @@ msgstr "Nhật ký Công cụ cập nhật BOM với trạng thái công việc msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "Cập nhật BOM đang được tiến hành. Vui lòng đợi cho đến khi {0} hoàn thành." -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "Cập nhật BOM đang được xếp hàng đợi và có thể mất vài phút. Kiểm tra {0} để biết tiến độ." - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7137,15 +7143,19 @@ msgstr "Đệ quy BOM: {0} không thể là con của {1}" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "Đệ quy BOM: {1} không thể là cha hoặc con của {0}" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "BOM {0} không thuộc về Mặt hàng {1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "BOM {0} phải hoạt động" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "BOM {0} phải được gửi" @@ -7226,7 +7236,7 @@ msgstr "Số dư" msgid "Balance (Dr - Cr)" msgstr "Số dư (Dr - Cr)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "Số dư ({0})" @@ -7296,6 +7306,10 @@ msgstr "Số dư Đóng Bảng Cân đối" msgid "Balance Sheet Summary" msgstr "Tóm tắt Bảng Cân đối" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "Số lượng Tồn kho cân đối" @@ -7356,7 +7370,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7456,8 +7470,8 @@ msgid "Bank Account Type" msgstr "Loại tài khoản ngân hàng" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "Tài khoản Ngân hàng {} trong Giao dịch Ngân hàng {} không khớp với Tài khoản Ngân hàng {}" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7701,7 +7715,7 @@ msgstr "Giao dịch Ngân hàng {0} đã được cập nhật" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "Tài khoản ngân hàng không thể được đặt tên là {0}" @@ -7713,7 +7727,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "Tài khoản ngân hàng {0} đã tồn tại và không thể tạo lại" @@ -7725,7 +7739,7 @@ msgstr "Đã thêm tài khoản ngân hàng" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "Lỗi tạo giao dịch ngân hàng" @@ -8001,8 +8015,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8033,15 +8047,15 @@ msgstr "" msgid "Batch No" msgstr "Số Lô" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "Số Lô là bắt buộc" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "Số Lô {0} không tồn tại" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "Số Lô {0} được liên kết với Mặt hàng {1} có serial no. Vui lòng quét serial no thay thế." @@ -8049,6 +8063,10 @@ msgstr "Số Lô {0} được liên kết với Mặt hàng {1} có serial no. V msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "Số Lô {0} không có trong {1} {2} gốc, do đó bạn không thể trả lại đối với {1} {2}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8114,9 +8132,9 @@ msgstr "UOM hàng loạt" msgid "Batch and Serial No" msgstr "Lô và Số Serial" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "Lô không được tạo cho mặt hàng {} vì nó không có chuỗi lô." +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8228,7 +8246,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8703,8 +8721,8 @@ msgid "Booked Fixed Asset" msgstr "Tài sản cố định đã đặt" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "Sổ sách đã được đóng cho đến kỳ kết thúc vào {0}" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8931,8 +8949,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "Ngân sách không thể được gán cho Tài khoản nhóm {0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "Ngân sách không thể được gán cho {0}, vì đây không phải là tài khoản Thu nhập hoặc Chi phí" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8949,7 +8967,7 @@ msgstr "Thời gian đệm" msgid "Buffered Cursor" msgstr "Con trỏ được đệm" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "Xây dựng tất cả?" @@ -8957,7 +8975,7 @@ msgstr "Xây dựng tất cả?" msgid "Build Tree" msgstr "Xây dựng cây" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "Số lượng có thể xây dựng" @@ -9284,6 +9302,10 @@ msgstr "Số dư Báo cáo ngân hàng đã tính" msgid "Calculated Discount Mismatch" msgstr "Chiết khấu đã tính không khớp" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9455,7 +9477,7 @@ msgstr "Chiến dịch {0} không tìm thấy" msgid "Can be approved by {0}" msgstr "Có thể được phê duyệt bởi {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "Không thể đóng Lệnh sản xuất. Vì {0} Thẻ công việc đang ở trạng thái Đang thực hiện." @@ -9484,21 +9506,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "Không thể lọc theo Số chứng từ, nếu nhóm theo Chứng từ" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "Chỉ có thể thanh toán đối với {0} chưa xuất hóa đơn" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "Chỉ có thể tham chiếu dòng nếu loại phí là 'Theo Số tiền Dòng trước' hoặc 'Tổng Dòng trước'" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "Không thể thay đổi phưadowccai định giá, vì có các giao dịch đối với một số mặt hàng không có phương pháp định giá riêng" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "Hủy Lượt Visit Vật liệu {0} trước khi hủy Yêu cầu Bảo hành này" @@ -9527,7 +9552,7 @@ msgstr "" msgid "Cancelation Date" msgstr "Ngày hủy" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9535,11 +9560,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "Không thể chỉ định Thu ngân" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "Không thể tính Thời gian đến vì Địa chỉ Tài xế đang thiếu." - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "Không thể thay đổi Cài đặt Tài khoản Tồn kho" @@ -9554,10 +9574,6 @@ msgstr "Không thể tạo Trả lại" msgid "Cannot Merge" msgstr "Không thể Hợp nhất" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "Không thể Tối ưu hóa Lộ trình vì Địa chỉ Tài xế đang thiếu." - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "Không thể Giải phóng Nhân viên" @@ -9582,6 +9598,11 @@ msgstr "Không thể áp dụng TDS đối với nhiều bên trong một bút t msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "Không thể là mặt hàng tài sản cố định vì Sổ cái Tồn kho đã được tạo." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "Không thể hủy Lịch trình Khấu hao Tài sản {0} vì có bút toán nháp {1}." @@ -9591,14 +9612,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "Không thể hủy Bút toán Đóng POS" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" -msgstr "Không thể hủy Bút toán Dự trữ Tồn kho {0} vì đã được sử dụng trong Lệnh sản xuất {1}. Vui lòng hủy Lệnh sản xuất trước hoặc hủy dự trữ tồn kho" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" +msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "Không thể hủy vì đang xử lý các tài liệu đã hủy." -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "Không thể hủy vì tồn tại Bút toán Kho {0} đã gửi" @@ -9606,7 +9627,7 @@ msgstr "Không thể hủy vì tồn tại Bút toán Kho {0} đã gửi" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "Không thể hủy giao dịch. Việc đăng lại định giá mặt hàng khi gửi chưa hoàn thành." -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "Không thể hủy Bút toán Kho Sản xuất này vì số lượng Thành phẩm được sản xuất không thể ít hơn số lượng đã giao trong Đơn hàng Giao việc ngoài Đến liên kết." @@ -9618,7 +9639,7 @@ msgstr "Không thể hủy tài liệu này vì nó được liên kết với msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "Không thể hủy tài liệu này vì nó được liên kết với tài sản đã gửi {asset_link}. Vui lòng hủy tài sản để tiếp tục." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "Không thể hủy giao dịch cho Lệnh sản xuất Hoàn thành." @@ -9643,8 +9664,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "Không thể thay đổi đơn vị tiền tệ mặc định của công ty vì có các giao dịch tồn tại. Các giao dịch phải bị hủy để thay đổi đơn vị tiền tệ mặc định." #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "Không thể hoàn thành công việc {0} vì công việc phụ thuộc {1} chưa hoàn thành / bị hủy." +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9670,7 +9691,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "Không thể tạo Bút toán Dự trữ Tồn kho cho Biên nhận Mua hàng có ngày tương lai." -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "Không thể tạo Danh sách chọn cho Đơn hàng bán {0} vì có tồn kho đã dự trữ. Vui lòng hủy dự trữ tồn kho để tạo danh sách chọn." @@ -9679,6 +9700,10 @@ msgstr "Không thể tạo Danh sách chọn cho Đơn hàng bán {0} vì có t msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "Không thể tạo bút toán kế toán đối với tài khoản bị vô hiệu hóa: {0}" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "Không thể tạo trả lại cho hóa đơn hợp nhất {0}." @@ -9696,7 +9721,7 @@ msgstr "Không thể tuyên bố là thất bại vì Đã tạo Báo giá." msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "Không thể khấu trừ khi loại là 'Định giá' hoặc 'Định giá và Tổng'" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "Không thể xóa dòng Lãi/Lỗ Chênh lệch Tỷ giá" @@ -9709,7 +9734,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "Không thể xóa mặt hàng đã được đặt" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "Không thể xóa DocType cốt lõi được bảo vệ: {0}" @@ -9741,7 +9766,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "Không thể bật Tài khoản Tồn kho theo Mặt hàng vì có các Bút toán Sổ cái Tồn kho cho công ty {0} với Tài khoản Tồn kho theo Kho. Vui lòng hủy các giao dịch tồn kho trước và thử lại." -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9766,19 +9791,23 @@ msgstr "Không tìm thấy Mặt hàng với Barcode này" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "Không tìm thấy kho mặc định cho mặt hàng {0}. Vui lòng đặt một kho trong Mặt hàng chủ hoặc trong Cài đặt Kho." -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "Không thể hợp nhất {0} '{1}' thành '{2}' vì cả hai đều có bút toán kế toán bằng các đơn vị tiền tệ khác nhau cho công ty '{3}'." +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "Không thể sản xuất nhiều Mặt hàng {0} hơn số lượng Đơn hàng bán {1} {2}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "Không thể sản xuất nhiều mặt hàng cho {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "Không thể sản xuất nhiều hơn {0} mặt hàng cho {1}" @@ -9790,12 +9819,16 @@ msgstr "Không thể nhận từ khách hàng đối với số dư âm" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "Không thể giảm số lượng nhỏ hơn số lượng đã đặt hoặc đã mua" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "Không thể tham chiếu số dòng lớn hơn hoặc bằng số dòng hiện tại cho loại Phí này" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "Không thể truy xuất mã liên kết để cập nhật. Kiểm tra Nhật ký Lỗi để biết thêm thông tin" @@ -9804,19 +9837,23 @@ msgstr "Không thể truy xuất mã liên kết để cập nhật. Kiểm tra msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "Không thể truy xuất mã liên kết. Kiểm tra Nhật ký Lỗi để biết thêm thông tin" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "Không thể chọn loại phí là 'Trên Số tiền Dòng Trước' hoặc 'Trên Tổng Dòng Trước' cho dòng đầu tiên" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "Không thể đặt là Thất bại vì Đơn hàng bán đã được tạo." @@ -10243,9 +10280,9 @@ msgstr "Thay đổi loại tài khoản thành Phải thu hoặc chọn tài kho msgid "Change this date manually to setup the next synchronization start date" msgstr "Thay đổi ngày này thủ công để thiết lập ngày bắt đầu đồng bộ tiếp theo" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "Đã thay đổi tên khách hàng thành '{}' vì '{}' đã tồn tại." +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10271,8 +10308,8 @@ msgstr "Thay đổi phương pháp định giá thành Bình quân Di chuyển s msgid "Channel Partner" msgstr "Đối tác Kênh" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "Phí loại 'Thực tế' ở dòng {0} không thể bao gồm trong Đơn giá Mặt hàng hoặc Số tiền Đã thanh toán" @@ -10466,7 +10503,7 @@ msgstr "Chiều rộng Séc" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "Ngày Séc/Ttham chiếu" @@ -10524,7 +10561,7 @@ msgstr "Tên Doc Con" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "Tham chiếu Dòng Con" @@ -10534,8 +10571,8 @@ msgid "Child Table Not Allowed" msgstr "Bảng Con Không được phép" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "Tồn tại Công việc Con cho Công việc này. Bạn không thể xóa Công việc này." +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10713,7 +10750,7 @@ msgstr "Đóng khoản vay" msgid "Close Replied Opportunity After Days" msgstr "Đóng Cơ hội Đã trả lời sau Ngày" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "Đóng POS" @@ -10727,7 +10764,7 @@ msgstr "Tài liệu đã đóng" msgid "Closed Documents" msgstr "Tài liệu đã đóng" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "Lệnh Sản xuất Đã đóng không thể dừng hoặc Mở lại" @@ -10957,9 +10994,9 @@ msgstr "Hoa hồng" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11396,7 +11433,7 @@ msgstr "Công ty" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11466,7 +11503,7 @@ msgstr "Công ty" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11506,10 +11543,6 @@ msgstr "Công ty" msgid "Company Abbreviation" msgstr "Tên viết tắt Công ty" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "Tên viết tắt Công ty không thể có nhiều hơn 5 ký tự" @@ -11674,7 +11707,7 @@ msgstr "Địa chỉ Giao hàng Công ty" msgid "Company Tax ID" msgstr "Mã số Thuế Công ty" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "Công ty và Ngày đăng là bắt buộc" @@ -11718,12 +11751,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "Tên trường liên kết công ty được sử dụng để lọc (tùy chọn - để trống để xóa tất cả bản ghi)" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "Tên công ty không giống nhau" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "Công ty của tài sản {0} và tài liệu mua {1} không khớp." +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11761,6 +11794,14 @@ msgstr "Công ty {0} được thêm nhiều lần" msgid "Company {0} does not exist" msgstr "Công ty {0} không tồn tại" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "Công ty {0} được thêm nhiều hơn một lần" @@ -11769,14 +11810,6 @@ msgstr "Công ty {0} được thêm nhiều hơn một lần" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "Công ty {} chưa tồn tại. Thiết lập thuế đã bị hủy." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "Công ty {} không khớp với Công ty Hồ sơ POS {}" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11798,7 +11831,7 @@ msgstr "Tên Đối thủ" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "Đối thủ" @@ -12242,8 +12275,8 @@ msgid "Consumed Qty" msgstr "Số lượng tiêu thụ" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "Số lượng đã tiêu thụ không thể lớn hơn Số lượng Đã đặt cho mặt hàng {0}" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12558,7 +12591,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12858,7 +12891,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12883,7 +12916,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12941,7 +12974,7 @@ msgstr "Số Trung tâm Chi phí" msgid "Cost Center and Budgeting" msgstr "Trung tâm Chi phí và Ngân sách" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "Trung tâm Chi phí cho các hàng Mặt hàng đã được cập nhật thành {0}" @@ -12953,7 +12986,7 @@ msgstr "Trung tâm Chi phí là một phần của Phân bổ Trung tâm Chi ph msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "Trung tâm Chi phí là bắt buộc ở hàng {0} trong bảng Thuế cho loại {1}" @@ -12975,12 +13008,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "Trung tâm Chi phí {0} không thể được sử dụng để phân bổ vì nó được sử dụng làm trung tâm chi phí chính trong bản ghi phân bổ khác." #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "Trung tâm Chi phí {} không thuộc về Công ty {}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "Trung tâm Chi phí {} là trung tâm chi phí nhóm và các trung tâm chi phí nhóm không thể được sử dụng trong giao dịch" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13104,14 +13137,14 @@ msgid "Costing and Billing" msgstr "Tính chi phí và Thanh toán" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "Các trường Tính chi phí và Thanh toán đã được cập nhật" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "Không thể Xóa Dữ liệu Demo" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "Không thể tự động tạo Khách hàng do thiếu (các) trường bắt buộc sau:" @@ -13123,7 +13156,7 @@ msgstr "Không thể tạo Thông báo Tín dụng tự động, vui lòng bỏ msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "Không thể phát hiện Công ty để cập nhật Tài khoản Ngân hàng" @@ -13133,8 +13166,8 @@ msgstr "Không thể tìm thấy ca phù hợp để khớp với chênh lệch: #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "Không thể tìm thấy đường dẫn cho " +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13157,7 +13190,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "Không thể giải quyết hàm điểm tiêu chí cho {0}. Hãy đảm bảo công thức là hợp lệ." -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "Không thể giải quyết hàm điểm trọng số. Hãy đảm bảo công thức là hợp lệ." @@ -13387,10 +13420,6 @@ msgstr "Tạo Khách hàng Mới" msgid "Create New Lead" msgstr "Tạo khách hàng tiềm năng mới" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13409,7 +13438,7 @@ msgstr "Tạo Hoạt động" msgid "Create Opportunity" msgstr "Tạo Cơ hội" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "Tạo Mục Mở POS" @@ -13424,7 +13453,7 @@ msgstr "Tạo mục thanh toán" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "Tạo Mục Thanh toán cho Hóa đơn POS Hợp nhất." -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "Tạo Yêu cầu Thanh toán" @@ -13652,7 +13681,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "Tạo biến thể với hình ảnh khuôn mẫu." -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "Tạo một giao dịch chứng khoán đến cho Mặt hàng." @@ -13686,7 +13715,7 @@ msgstr "Tạo {0} {1}?" msgid "Created By Migration" msgstr "Được tạo bởi Di chuyển" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "Đã tạo {0} thẻ điểm cho {1} giữa:" @@ -13781,7 +13810,7 @@ msgstr "Đang tạo Người dùng..." msgid "Creating demo data" msgstr "Đang tạo dữ liệu demo" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "Đang tạo {} trong số {} {}" @@ -13791,17 +13820,17 @@ msgstr "Đang tạo {} trong số {} {}" msgid "Creation" msgstr "Tạo lập" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "Tạo {1}(s) thành công" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Tạo {0} thất bại.\n" "\t\t\t\tKiểm tra Nhật ký Giao dịch Hàng loạt" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "Tạo {0} một phần thành công.\n" @@ -13836,11 +13865,11 @@ msgstr "Tạo {0} một phần thành công.\n" msgid "Credit" msgstr "Có" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "Ghi nợ (Giao dịch)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "Ghi nợ ({0})" @@ -13921,7 +13950,7 @@ msgstr "Số ngày Tín dụng" msgid "Credit Limit" msgstr "Hạn mức tín dụng" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "Hạn mức Tín dụng đã bị vượt" @@ -14001,16 +14030,16 @@ msgstr "Ghi nợ vào" msgid "Credit in Company Currency" msgstr "Ghi nợ theo Tiền tệ Công ty" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "Hạn mức tín dụng đã bị vượt cho khách hàng {0} ({1}/{2})" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "Hạn mức tín dụng đã được xác định cho Công ty {0}" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "Đã đạt hạn mức tín dụng cho khách hàng {0}" @@ -14069,12 +14098,12 @@ msgstr "Thiết lập tiêu chí" msgid "Criteria Weight" msgstr "Tiêu chí Trọng lượng" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "Trọng số tiêu chí phải cộng lại bằng 100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "Khoảng Cron phải từ 1 đến 59 Phút" @@ -14197,7 +14226,7 @@ msgstr "Tiền tệ và Danh sách giá" msgid "Currency can not be changed after making entries using some other currency" msgstr "Tiền tệ không thể thay đổi sau khi đã tạo các bút toán sử dụng một tiền tệ khác" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "Bộ lọc tiền tệ hiện không được hỗ trợ trong Báo cáo Tài chính Tùy chỉnh." @@ -14262,8 +14291,8 @@ msgid "Current BOM" msgstr "BOM hiện tại" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "BOM Hiện tại và BOM Mới không thể giống nhau" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14325,10 +14354,6 @@ msgstr "Lô/Serial Hiện tại" msgid "Current Serial No" msgstr "Số Serial Hiện tại" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15159,7 +15184,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "Tóm tắt dự án hàng ngày cho {0}" @@ -15304,10 +15329,6 @@ msgstr "Ngày để Xử lý" msgid "Day Of Week" msgstr "Ngày trong Tuần" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15414,11 +15435,11 @@ msgstr "Đại lý" msgid "Debit" msgstr "Ghi nợ" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "Ghi nợ (Giao dịch)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "Ghi nợ ({0})" @@ -15580,7 +15601,7 @@ msgstr "Decilitre" msgid "Decimeter" msgstr "Decimeter" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "Khai báo Mất" @@ -16261,8 +16282,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "Đang xóa {0} và tất cả tài liệu mã chung liên quan..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "Đang trong quá trình xóa!" @@ -16356,7 +16377,7 @@ msgstr "Các mặt hàng đã giao cần thanh toán" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16414,7 +16435,7 @@ msgstr "Giao hàng" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16744,7 +16765,7 @@ msgstr "Khấu hao" msgid "Depreciation Amount" msgstr "Số tiền Khấu hao" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "Số tiền Khấu hao trong kỳ" @@ -16760,7 +16781,7 @@ msgstr "Ngày Khấu hao" msgid "Depreciation Details" msgstr "Chi tiết Khấu hao" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "Khấu hao đã loại bỏ do thanh lý tài sản" @@ -16830,7 +16851,7 @@ msgstr "Ngày Đăng Khấu hao không thể trước Ngày Sẵn sàng Sử d msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "Dòng Khấu hao {0}: Ngày Đăng Khấu hao không thể trước Ngày Sẵn sàng Sử dụng" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "Dòng Khấu hao {0}: Giá trị dự kiến sau thời gian sử dụng phải lớn hơn hoặc bằng {1}" @@ -16859,11 +16880,11 @@ msgstr "Lịch trình Khấu hao" msgid "Depreciation Schedule View" msgstr "Xem Lịch trình Khấu hao" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "Khấu hao không thể được tính cho tài sản đã khấu hao hoàn toàn" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "Khấu hao đã loại bỏ qua đảo" @@ -16891,7 +16912,7 @@ msgstr "Nhà thiết kế" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "Lý do chi tiết" @@ -16994,12 +17015,12 @@ msgid "Difference Account in Items Table" msgstr "Tài khoản Chênh lệch trong Bảng Mặt hàng" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "Tài khoản Chênh lệch phải là tài khoản Tài sản/Nợ phải trả (Tạm mở), vì Phiếu kho này là Phiếu mở đầu" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "Tài khoản Chênh lệch phải là tài khoản Tài sản/Nợ phải trả, vì Đối soát Kho này là Đối soát Mở đầu" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17061,7 +17082,7 @@ msgstr "Giá trị chênh lệch" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "Có thể đặt 'Kho nguồn' và 'Kho đích' khác nhau cho mỗi dòng." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "Đơn vị đo khác nhau cho mặt hàng sẽ dẫn đến giá trị Tổng Trọng lượng Net không chính xác. Đảm bảo rằng Trọng lượng Net của mỗi mặt hàng có cùng đơn vị đo." @@ -17234,7 +17255,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "Kho bị Vô hiệu {0} không thể được sử dụng cho giao dịch này." @@ -17243,18 +17264,18 @@ msgstr "Kho bị Vô hiệu {0} không thể được sử dụng cho giao dịc msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "Đã vô hiệu quy tắc định giá vì {} này là chuyển nội bộ" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "Đã vô hiệu giá đã bao gồm thuế vì {} này là chuyển nội bộ" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17503,9 +17524,9 @@ msgstr "Giảm giá không thể lớn hơn 100%." msgid "Discount must be less than 100" msgstr "Giảm giá phải nhỏ hơn 100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "Giảm giá {} đã được áp dụng theo Điều khoản Thanh toán" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17869,11 +17890,11 @@ msgstr "Bạn có muốn trình phiếu kho không?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "DocType {0} không tồn tại" @@ -17911,22 +17932,6 @@ msgstr "Tìm kiếm tài liệu" msgid "Document Count" msgstr "Số lượng Tài liệu" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "Số Tài liệu" @@ -18232,7 +18237,7 @@ msgstr "Dự án trùng lặp với nhiệm vụ" msgid "Duplicate Sales Invoices found" msgstr "Tìm thấy Hóa đơn Bán hàng trùng lặp" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "Lỗi Số Serial Trùng lặp" @@ -18386,7 +18391,7 @@ msgstr "Sửa Công suất" msgid "Edit Cart" msgstr "Sửa Giỏ hàng" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "Không được phép Sửa" @@ -18610,8 +18615,8 @@ msgid "Email verification failed." msgstr "Xác minh Email thất bại." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "Email đã xếp hàng" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18798,7 +18803,7 @@ msgstr "Nhân viên" msgid "Empty" msgstr "Trống" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "Danh sách Xóa Trống" @@ -18807,7 +18812,7 @@ msgstr "Danh sách Xóa Trống" msgid "Ems(Pica)" msgstr "Ems(Pica)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18886,6 +18891,12 @@ msgstr "Bật Giảm giá và Biên" msgid "Enable European Access" msgstr "Bật Truy cập Châu Âu" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19157,7 +19168,7 @@ msgstr "Giờ kết thúc" msgid "End Transit" msgstr "Kết thúc Quá cảnh" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19280,7 +19291,7 @@ msgstr "Nhập số điện thoại của khách hàng" msgid "Enter date to scrap asset" msgstr "Nhập ngày thanh lý tài sản" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "Nhập chi tiết khấu hao" @@ -19336,6 +19347,10 @@ msgstr "Nhập số lượng để sản xuất. Các Mặt hàng Nguyên liệu msgid "Enter {0} amount." msgstr "Nhập số tiền {0}." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "Giải trí và Giải trí" @@ -19371,7 +19386,7 @@ msgstr "Loại Bút toán" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "Vốn chủ sở hữu" @@ -19395,7 +19410,7 @@ msgstr "Erg" msgid "Error Description" msgstr "Mô tả lỗi" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "Đã xảy ra Lỗi" @@ -19427,21 +19442,21 @@ msgstr "Lỗi khi đăng các bút toán khấu hao" msgid "Error while processing deferred accounting for {0}" msgstr "Lỗi khi xử lý kế toán deferred cho {0}" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "Lỗi khi đăng lại định giá mặt hàng" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "Lỗi: Tài sản này đã có {0} kỳ khấu hao được đặt.\n" -"\t\t\t\t\tNgày `bắt đầu khấu hao` phải ít nhất {1} kỳ sau ngày `sẵn sàng sử dụng`.\n" -"\t\t\t\t\tVui lòng sửa các ngày cho phù hợp." +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "Lỗi: {0} là trường bắt buộc" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19455,7 +19470,7 @@ msgid "Estimated Arrival" msgstr "Dự kiến Đến" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "Chi phí ước tính" @@ -19505,7 +19520,7 @@ msgstr "Ví dụ: ABCD.#####. Nếu series được đặt và Batch No không msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "Ví dụ: Serial No {0} đã được đặt trước trong {1}." @@ -19786,7 +19801,7 @@ msgstr "Ngày Đóng dự kiến" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19873,7 +19888,7 @@ msgstr "Giá trị Sau Thời gian Sử dụng" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "Chi phí" @@ -20132,9 +20147,9 @@ msgstr "Fahrenheit" msgid "Failed Entries" msgstr "Các mục thất bại" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "Không thể xác thực khóa API." +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20331,7 +20346,7 @@ msgid "Fetching Sales Orders..." msgstr "Đang tìm nạp đơn đặt hàng..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "Đang tìm nạp tỷ giá hối đoái..." @@ -20369,15 +20384,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "Các trường sẽ chỉ được sao chép khi tạo." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "Tệp không thuộc về Bản ghi xóa giao dịch này" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "Không tìm thấy tệp" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "Không tìm thấy tệp trên máy chủ" @@ -20386,7 +20401,7 @@ msgstr "Không tìm thấy tệp trên máy chủ" msgid "File to Rename" msgstr "Tệp cần đổi tên" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20545,11 +20560,11 @@ msgstr "Dòng báo cáo tài chính" msgid "Financial Report Template" msgstr "Mẫu báo cáo tài chính" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "Mẫu báo cáo tài chính {0} bị vô hiệu hóa" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "Không tìm thấy mẫu báo cáo tài chính {0}" @@ -20618,7 +20633,7 @@ msgstr "BOM thành phẩm" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20631,7 +20646,7 @@ msgstr "Mặt hàng thành phẩm" msgid "Finished Good Item Code" msgstr "Mã mặt hàng thành phẩm" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "Số lượng mặt hàng thành phẩm" @@ -20739,7 +20754,7 @@ msgstr "Kho thành phẩm" msgid "Finished Goods based Operating Cost" msgstr "Chi phí vận hành dựa trên thành phẩm" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "Mặt hàng thành phẩm {0} không khớp với Lệnh sản xuất {1}" @@ -20838,10 +20853,6 @@ msgstr "Chế độ tài khóa là bắt buộc, vui lòng đặt chế độ t msgid "Fiscal Year" msgstr "Năm tài chính" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20855,11 +20866,8 @@ msgstr "Chi tiết năm tài chính" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "Ngày kết thúc năm tài chính phải là một năm sau ngày bắt đầu năm tài chính" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "Năm tài chính {0} không tồn tại" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "Năm tài chính {0} không tồn tại" @@ -20892,7 +20900,7 @@ msgstr "Tài sản cố định" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21028,7 +21036,7 @@ msgstr "Foot/Giây" msgid "For" msgstr "Đối với" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "Đối với các mặt hàng 'Product Bundle', Kho, Số Serial và Số Lô sẽ được xem xét từ bảng 'Danh sách đóng gói'. Nếu Kho và Số Lô giống nhau cho tất cả các mặt hàng đóng gói của bất kỳ mặt hàng 'Product Bundle' nào, các giá trị đó có thể được nhập trong bảng Mặt hàng chính, các giá trị sẽ được sao chép vào bảng 'Danh sách đóng gói'." @@ -21053,10 +21061,6 @@ msgstr "Cho công ty" msgid "For Item" msgstr "Cho mặt hàng" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "Đối với mặt hàng {0}, không thể nhận nhiều hơn {1} số lượng cho {2} {3}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21123,12 +21127,12 @@ msgid "For Work Order" msgstr "Cho lệnh sản xuất" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "Đối với mặt hàng {0}, số lượng phải là số âm" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "Đối với mặt hàng {0}, số lượng phải là số dương" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21160,13 +21164,13 @@ msgstr "Chi tiêu bao nhiêu = 1 Điểm tích lũy" msgid "For individual supplier" msgstr "Cho nhà cung cấp cá nhân" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "Đối với mặt hàng {0}, chỉ có {1} tài sản đã được tạo hoặc liên kết với {2}. Vui lòng tạo hoặc liên kết thêm {3} tài sản với tài liệu tương ứng." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "Đối với mặt hàng {0}, tỷ lệ phải là số dương. Để cho phép tỷ lệ âm, hãy bật {1} trong {2}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21178,9 +21182,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "Đối với hoạt động {0} tại dòng {1}, vui lòng thêm nguyên vật liệu hoặc đặt BOM cho nó." -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "Đối với hoạt động {0}: Số lượng ({1}) không thể lớn hơn số lượng chờ xử lý ({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21195,21 +21199,17 @@ msgstr "Cho dự án - {0}, cập nhật trạng thái của bạn" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "Đối với số lượng dự kiến và dự báo, hệ thống sẽ xem xét tất cả các kho con theo kho mẹ đã chọn." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "Số lượng {0} không được lớn hơn số lượng cho phép {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "Để tham khảo" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "Cho dòng {0} trong {1}. Để bao gồm {2} trong tỷ lệ mặt hàng, các dòng {3} cũng phải được bao gồm" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "Cho dòng {0}: Nhập số lượng kế hoạch" @@ -21228,11 +21228,15 @@ msgstr "Đối với điều kiện 'Áp dụng quy tắc cho người khác', t msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "Để thuận tiện cho khách hàng, các mã này có thể được sử dụng trong các mẫu in như hóa đơn và phiếu giao hàng" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "Đối với mặt hàng {0}, số lượng tiêu thụ phải là {1} theo BOM {2}." -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "Để {0} mới có hiệu lực, bạn có muốn xóa {1} hiện tại không?" @@ -21320,6 +21324,21 @@ msgstr "Bài đăng diễn đàn" msgid "Forum URL" msgstr "URL diễn đàn" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "Trường Frappe" @@ -21863,7 +21882,7 @@ msgstr "Số dư GL" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "Bút toán GL" @@ -21988,6 +22007,10 @@ msgstr "Sổ cái tổng hợp" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22041,7 +22064,7 @@ msgstr "Tạo bút toán đóng kho" msgid "Generate To Delete List" msgstr "Tạo danh sách xóa" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "Tạo danh sách xóa trước" @@ -22384,7 +22407,7 @@ msgstr "Hàng hóa đang vận chuyển" msgid "Goods Transferred" msgstr "Hàng hóa đã chuyển" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "Hàng hóa đã được nhận đối với bút toán xuất {0}" @@ -22567,7 +22590,7 @@ msgstr "Tổng cộng phải khớp với tổng các tham chiếu thanh toán" msgid "Grant Commission" msgstr "Hoa hồng tạm ứng" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "Số tiền lớn hơn" @@ -22707,7 +22730,7 @@ msgstr "Nhóm theo đơn hàng bán" msgid "Group by Voucher" msgstr "Nhóm theo Phiếu" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "Kho nút nhóm không được phép chọn cho giao dịch" @@ -23010,7 +23033,7 @@ msgstr "Giúp bạn phân bổ Ngân sách/Mục tiêu qua các tháng nếu b msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "Đây là nhật ký lỗi cho các bút toán khấu hao thất bại đã đề cập: {0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "Dưới đây là các tùy chọn để tiếp tục:" @@ -23038,7 +23061,7 @@ msgstr "Ở đây, các ngày nghỉ hàng tuần của bạn được điền s msgid "Hertz" msgstr "Hertz" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "Xin chào," @@ -23074,7 +23097,7 @@ msgstr "Ẩn nếu bằng không" msgid "Hide Images" msgstr "Ẩn hình ảnh" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "Ẩn đơn hàng gần đây" @@ -23660,15 +23683,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "Nếu không có thuế nào được đặt và Mẫu thuế và phí được chọn, hệ thống sẽ tự động áp dụng thuế từ mẫu đã chọn." -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "Nếu không, bạn có thể Hủy / Gửi mục này" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23706,7 +23729,7 @@ msgstr "Nếu BOM tạo ra nguyên vật liệu phế liệu, Kho phế liệu c msgid "If the account is frozen, entries are allowed to restricted users." msgstr "Nếu tài khoản bị đóng băng, các mục được phép cho người dùng hạn chế." -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "Nếu mặt hàng đang giao dịch như một mặt hàng có tỷ lệ định giá bằng không trong mục này, vui lòng bật 'Cho phép tỷ lệ định giá bằng không' trong bảng mặt hàng {0}." @@ -23807,7 +23830,7 @@ msgstr "Nếu bạn cần đối chiếu các giao dịch cụ thể với nhau, msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "Nếu bạn vẫn muốn tiếp tục, vui lòng bật {0}." @@ -24025,14 +24048,14 @@ msgstr "Nhập hóa đơn" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "Nhập định dạng MT940" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "Nhập thành công" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "Tóm tắt nhập" @@ -24509,7 +24532,7 @@ msgstr "Bao gồm các mục cho phân hợp" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "Thu nhập" @@ -24595,7 +24618,7 @@ msgstr "Cuộc gọi đến từ {0}" msgid "Incompatible Setting Detected" msgstr "Phát hiện cài đặt không tương thích" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "Tài khoản không đúng" @@ -24604,7 +24627,7 @@ msgstr "Tài khoản không đúng" msgid "Incorrect Balance Qty After Transaction" msgstr "Số lượng số dư không đúng sau giao dịch" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "Lô tiêu thụ không đúng" @@ -24612,11 +24635,11 @@ msgstr "Lô tiêu thụ không đúng" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "Kiểm tra không đúng trong kho (nhóm) để đặt lại" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "Công ty không đúng" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "Số lượng thành phần không đúng" @@ -24625,7 +24648,7 @@ msgstr "Số lượng thành phần không đúng" msgid "Incorrect Date" msgstr "Ngày không đúng" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "Hóa đơn không đúng" @@ -24642,7 +24665,7 @@ msgstr "Tài liệu tham chiếu không đúng (Mục phiếu nhận hàng mua)" msgid "Incorrect Serial No Valuation" msgstr "Định giá số serial không đúng" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "Số serial tiêu thụ không đúng" @@ -24725,7 +24748,7 @@ msgstr "Tăng" msgid "Increment cannot be 0" msgstr "Bước tăng không thể bằng 0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "Bước tăng cho thuộc tính {0} không thể bằng 0" @@ -24922,7 +24945,7 @@ msgid "Instruction" msgstr "Hướng dẫn" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "Dung lượng không đủ" @@ -24938,12 +24961,12 @@ msgstr "Không đủ quyền" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "Tồn kho không đủ" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "Tồn kho không đủ cho lô" @@ -25073,7 +25096,7 @@ msgstr "Chi phí lãi" msgid "Interest Income" msgstr "Thu nhập lãi" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "Lãi và/hoặc phí đòi nợ" @@ -25098,7 +25121,7 @@ msgstr "Nội bộ" msgid "Internal Customer Accounting" msgstr "Kế toán khách hàng nội bộ" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "Khách hàng nội bộ cho công ty {0} đã tồn tại" @@ -25124,7 +25147,7 @@ msgstr "Tham chiếu bán hàng nội bộ bị thiếu" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "Nhà cung cấp nội bộ cho công ty {0} đã tồn tại" @@ -25145,7 +25168,7 @@ msgstr "Nhà cung cấp nội bộ cho công ty {0} đã tồn tại" msgid "Internal Transfer" msgstr "Chuyển kho nội bộ" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "Tham chiếu chuyển kho nội bộ bị thiếu" @@ -25187,8 +25210,8 @@ msgstr "Khoảng thời gian phải từ 1 đến 59 phút" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25207,7 +25230,7 @@ msgstr "Số tiền phân bổ không hợp lệ" msgid "Invalid Amount" msgstr "Số tiền không hợp lệ" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "Thuộc tính không hợp lệ" @@ -25224,11 +25247,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "Mã vạch không hợp lệ. Không có mục nào được đính kèm với mã vạch này." -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "Đơn hàng trọn gói không hợp lệ cho Khách hàng và Mặt hàng đã chọn" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "Định dạng CSV không hợp lệ. Cột mong đợi: doctype_name" @@ -25248,13 +25271,13 @@ msgstr "Công ty không hợp lệ cho Giao dịch giữa các công ty." msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "Trung tâm chi phí không hợp lệ" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25275,11 +25298,11 @@ msgstr "" msgid "Invalid Discount" msgstr "Chiết khấu không hợp lệ" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "Số tiền chiết khấu không hợp lệ" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "Tài liệu không hợp lệ" @@ -25309,7 +25332,7 @@ msgstr "Nhóm theo không hợp lệ" msgid "Invalid Item" msgstr "Mặt hàng không hợp lệ" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "Mặc định Mặt hàng không hợp lệ" @@ -25318,7 +25341,7 @@ msgstr "Mặc định Mặt hàng không hợp lệ" msgid "Invalid Ledger Entries" msgstr "Các mục Sổ cái không hợp lệ" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "Số tiền mua ròng không hợp lệ" @@ -25357,7 +25380,7 @@ msgstr "Định dạng in không hợp lệ" msgid "Invalid Priority" msgstr "Ưu tiên không hợp lệ" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "Cấu hình Tổn thất quy trình không hợp lệ" @@ -25374,7 +25397,7 @@ msgstr "Số lượng không hợp lệ" msgid "Invalid Quantity" msgstr "Số lượng không hợp lệ" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "Truy vấn không hợp lệ" @@ -25386,8 +25409,8 @@ msgstr "Trả lại không hợp lệ" msgid "Invalid Sales Invoices" msgstr "Hóa đơn bán hàng không hợp lệ" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "Lịch trình không hợp lệ" @@ -25395,7 +25418,7 @@ msgstr "Lịch trình không hợp lệ" msgid "Invalid Selling Price" msgstr "Giá bán không hợp lệ" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "Gói Serial và Batch không hợp lệ" @@ -25412,7 +25435,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "Giá trị không hợp lệ" @@ -25422,14 +25445,14 @@ msgid "Invalid Warehouse" msgstr "Kho không hợp lệ" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "Số tiền không hợp lệ trong các mục kế toán của {} {} cho Tài khoản {}: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "Biểu thức điều kiện không hợp lệ" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "URL tệp không hợp lệ" @@ -25461,7 +25484,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "Khóa kết quả không hợp lệ. Phản hồi:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "Truy vấn tìm kiếm không hợp lệ" @@ -26424,10 +26447,6 @@ msgstr "Ngày phát hành" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "Có thể mất vài giờ để giá trị tồn kho chính xác được hiển thị sau khi hợp nhất các mặt hàng." -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "Cần thiết để lấy Chi tiết Mặt hàng." - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26436,7 +26455,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "Không thể phân bổ phí đồng đều khi tổng số tiền bằng không, vui lòng đặt 'Phân bổ Phí Dựa trên' thành 'Số lượng'" @@ -26485,12 +26504,12 @@ msgstr "Văn bản nghiêng cho tổng phụ hoặc ghi chú" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26523,7 +26542,7 @@ msgstr "Văn bản nghiêng cho tổng phụ hoặc ghi chú" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26597,7 +26616,7 @@ msgstr "Mặt hàng 5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26758,7 +26777,7 @@ msgstr "Giỏ Mặt hàng" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26790,7 +26809,7 @@ msgstr "Giỏ Mặt hàng" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26799,12 +26818,12 @@ msgstr "Giỏ Mặt hàng" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26900,7 +26919,7 @@ msgstr "Mã Mặt hàng không thể thay đổi cho Serial No." msgid "Item Code required at Row No {0}" msgstr "Mã Mặt hàng bắt buộc tại Dòng số {0}" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "Mã Mặt hàng: {0} không có sẵn trong kho {1}." @@ -27096,7 +27115,7 @@ msgstr "" msgid "Item Group Tree" msgstr "Cây Nhóm Mặt hàng" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "Nhóm Mặt hàng không được đề cập trong master mặt hàng cho mặt hàng {0}" @@ -27250,7 +27269,7 @@ msgstr "Nhà sản xuất Mặt hàng" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27281,7 +27300,7 @@ msgstr "Nhà sản xuất Mặt hàng" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27289,8 +27308,8 @@ msgstr "Nhà sản xuất Mặt hàng" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27347,7 +27366,7 @@ msgstr "Nhà sản xuất Mặt hàng" msgid "Item Name" msgstr "Tên Mặt hàng" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "Tên Mặt hàng là bắt buộc." @@ -27394,8 +27413,8 @@ msgstr "Cài đặt Giá Mặt hàng" msgid "Item Price Stock" msgstr "Giá và Tồn kho Mặt hàng" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27407,7 +27426,7 @@ msgstr "Giá Mặt hàng xuất hiện nhiều lần dựa trên Danh sách giá msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "Giá Mặt hàng đã được cập nhật cho {0} trong Danh sách giá {1}" @@ -27452,7 +27471,7 @@ msgstr "Đặt lại Mặt hàng" msgid "Item Row" msgstr "Dòng Mặt hàng" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "Dòng Mặt hàng {0}: {1} {2} không tồn tại trong bảng '{1}' ở trên" @@ -27568,7 +27587,7 @@ msgstr "Mặt hàng cần Sản xuất" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "Biến thể Mặt hàng" @@ -27687,7 +27706,7 @@ msgstr "Chi tiết Thuế theo Mặt hàng" msgid "Item Wise Tax Details" msgstr "Chi tiết Thuế theo Mặt hàng" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "Chi tiết Thuế theo Mặt hàng không khớp với Thuế và Phí ở các dòng sau:" @@ -27723,7 +27742,7 @@ msgstr "Mặt hàng là bắt buộc trong bảng Nguyên liệu thô." msgid "Item is removed since no serial / batch no selected." msgstr "Mặt hàng đã bị xóa vì không chọn serial / batch no." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "Mặt hàng phải được thêm bằng nút 'Lấy Mặt hàng từ Phiếu nhận hàng'" @@ -27737,7 +27756,7 @@ msgstr "Tên mặt hàng" msgid "Item operation" msgstr "Hoạt động mặt hàng" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "Đơn giá mặt hàng đã được cập nhật thành không vì Cho phép Tỷ giá Định giá Bằng không được chọn cho mặt hàng {0}" @@ -27752,7 +27771,7 @@ msgstr "Mặt hàng để Sản xuất" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "Tỷ giá định giá mặt hàng được tính lại dựa trên số tiền chứng từ chi phí landed" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "Đang đăng lại định giá mặt hàng. Báo cáo có thể hiển thị định giá mặt hàng không chính xác." @@ -27768,10 +27787,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "Mặt hàng {0} được thêm nhiều lần dưới cùng một mặt hàng cha {1} tại các dòng {2} và {3}" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "Mặt hàng {0} không thể được thêm như một phân lắp phụ của chính nó" @@ -27780,6 +27795,10 @@ msgstr "Mặt hàng {0} không thể được thêm như một phân lắp phụ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "Mặt hàng {0} không thể được đặt nhiều hơn {1} đối với Đơn hàng mở {2}." +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27789,6 +27808,7 @@ msgstr "Mục {0} không tồn tại" msgid "Item {0} does not exist in the system or has expired" msgstr "Mục {0} không tồn tại trong hệ thống hoặc đã hết hạn" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "Mục {0} không tồn tại." @@ -27821,6 +27841,10 @@ msgstr "Mặt hàng {0} đã đến cuối vòng đời vào ngày {1}" msgid "Item {0} ignored since it is not a stock item" msgstr "Mặt hàng {0} bị bỏ qua vì không phải mặt hàng tồn kho" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "Mặt hàng {0} đã được giữ chỗ/giao đối với Đơn hàng bán {1}." @@ -27853,7 +27877,7 @@ msgstr "Mặt hàng {0} không phải là mặt hàng ký hợp đồng phụ" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "Mặt hàng {0} không hoạt động hoặc đã đạt đến cuối vòng đời" @@ -27885,10 +27909,6 @@ msgstr "Mặt hàng {0}: Số lượng đặt {1} không thể nhỏ hơn số l msgid "Item {0}: {1} qty produced. " msgstr "Mặt hàng {0}: {1} số lượng đã sản xuất. " -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "Mặt hàng {} không tồn tại." - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27939,6 +27959,10 @@ msgstr "Mặt hàng/Mã Mặt hàng bắt buộc để lấy Mẫu Thuế Mặt msgid "Item: {0} does not exist in the system" msgstr "Mặt hàng: {0} không tồn tại trong hệ thống" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27955,7 +27979,7 @@ msgstr "Danh mục Mặt hàng" msgid "Items Filter" msgstr "Bộ lọc mục" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "Mặt hàng yêu cầu" @@ -27995,7 +28019,7 @@ msgstr "Mặt hàng cho Yêu cầu Nguyên liệu thô" msgid "Items not found." msgstr "Không tìm thấy mặt hàng." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "Đơn giá mặt hàng đã được cập nhật về không vì 'Cho phép Đơn giá Định giá bằng không' được chọn cho các mặt hàng sau: {0}" @@ -28005,7 +28029,7 @@ msgstr "Đơn giá mặt hàng đã được cập nhật về không vì 'Cho p msgid "Items to Be Repost" msgstr "Mặt hàng cần cập nhật lại" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "Mặt hàng cần sản xuất bắt buộc để kéo Nguyên liệu thô liên quan đến nó." @@ -28075,7 +28099,7 @@ msgstr "Công suất công việc" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28138,20 +28162,19 @@ msgstr "Nhật ký thời gian thẻ công việc" msgid "Job Card and Capacity Planning" msgstr "Thẻ công việc và Quy hoạch công suất" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "Thẻ công việc {0} đã hoàn thành" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "Các thẻ công việc" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "Công việc tạm dừng" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "Công việc bắt đầu" @@ -28214,11 +28237,19 @@ msgstr "Tên công nhân ký gửi" msgid "Job Worker Warehouse" msgstr "Kho công nhân ký gửi" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "Thẻ công việc {0} đã được tạo" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "Công việc: {0} đã được kích hoạt để xử lý các giao dịch thất bại" @@ -28564,8 +28595,8 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "Cập nhật mục GL cuối đã được thực hiện {}. Thao tác này không được phép khi hệ thống đang được sử dụng tích cực. Vui lòng đợi 5 phút trước khi thử lại." +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28685,7 +28716,7 @@ msgstr "Vĩ độ" msgid "Lead" msgstr "Chì" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "Khách hàng tiềm năng -> Khách hàng tiềm năng" @@ -28779,7 +28810,7 @@ msgstr "Thời gian chờ tính bằng ngày" msgid "Lead Type" msgstr "Loại khách hàng tiềm năng" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "Khách hàng tiềm năng {0} đã được thêm vào khách hàng tiềm năng {1}." @@ -28928,7 +28959,7 @@ msgstr "Chú thích" msgid "Length (cm)" msgstr "Chiều dài (cm)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "Ít hơn số tiền" @@ -28957,7 +28988,7 @@ msgstr "Cấp (BOM)" msgid "Lft" msgstr "Trái" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "Nợ phải trả" @@ -28987,7 +29018,7 @@ msgstr "Số giấy phép" msgid "License Plate" msgstr "Biển số xe" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "Đã vượt giới hạn" @@ -29083,8 +29114,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "Liên kết với Khách hàng thất bại. Vui lòng thử lại." #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "Liên kết với Nhà cung cấp thất bại. Vui lòng thử lại." +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29250,7 +29281,7 @@ msgstr "Chi tiết lý do mất" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "Lý do bị mất" @@ -29336,7 +29367,7 @@ msgstr "Đổi điểm trung thành" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "Điểm trung thành sẽ được tính từ số tiền đã chi tiêu (qua Hóa đơn Bán), dựa trên hệ số tích lũy được đề cập." -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "Điểm trung thành: {0}" @@ -29574,7 +29605,7 @@ msgstr "Chi tiết lịch bảo trì" msgid "Maintenance Schedule Item" msgstr "Mục lịch bảo trì" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "Lịch bảo trì chưa được tạo cho tất cả các mặt hàng. Vui lòng nhấp vào 'Tạo lịch trình'" @@ -29671,7 +29702,7 @@ msgstr "Lượt bảo trì" msgid "Maintenance Visit Purpose" msgstr "Mục đích lượt bảo trì" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "Ngày bắt đầu bảo trì không thể trước ngày giao hàng cho Số serial {0}" @@ -29818,7 +29849,7 @@ msgstr "Bắt buộc cho Bảng cân đối kế toán" msgid "Mandatory For Profit and Loss Account" msgstr "Bắt buộc cho Tài khoản Lãi và Lỗ" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "Bắt buộc bị thiếu" @@ -29901,8 +29932,8 @@ msgstr "Không thể tạo mục thủ công! Vô hiệu hóa mục tự động #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30124,7 +30155,7 @@ msgstr "Đang ánh xạ Đơn nhập ký gửi ..." msgid "Mapping Subcontracting Order ..." msgstr "Đang ánh xạ Đơn ký gửi phụ ..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "Đang ánh xạ {0} ..." @@ -30302,10 +30333,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30332,7 +30359,7 @@ msgstr "Tiêu thụ vật tư" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "Tiêu thụ vật tư cho sản xuất" @@ -30443,7 +30470,7 @@ msgstr "Yêu cầu vật tư" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "Ngày yêu cầu vật tư" @@ -30493,7 +30520,7 @@ msgstr "Chi tiết yêu cầu vật tư" msgid "Material Request Item" msgstr "Mục yêu cầu vật tư" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "Số yêu cầu vật tư" @@ -30515,7 +30542,7 @@ msgstr "Loại yêu cầu vật tư" msgid "Material Request already created for the ordered quantity" msgstr "Yêu cầu vật tư đã được tạo cho số lượng đã đặt" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "Yêu cầu vật tư không được tạo, vì số lượng Nguyên liệu thô đã có sẵn." @@ -30529,7 +30556,7 @@ msgstr "Yêu cầu vật tư tối đa {0} có thể được tạo cho Mặt h msgid "Material Request used to make this Stock Entry" msgstr "Yêu cầu vật tư được sử dụng để tạo Nhập kho này" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "Yêu cầu vật tư {0} đã bị hủy hoặc dừng" @@ -30649,14 +30676,14 @@ msgstr "Vật tư cho Nhà cung cấp" msgid "Materials To Be Transferred" msgstr "Vật tư cần chuyển" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "Vật tư đã được nhận đối với {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "Vật tư cần được chuyển đến kho công việc đang thực hiện cho thẻ công việc {0}" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30824,7 +30851,7 @@ msgstr "Megajoule" msgid "Megawatt" msgstr "Megawatt" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "Đề cập Tỷ giá định giá trong danh mục Mặt hàng." @@ -30859,7 +30886,7 @@ msgstr "Tiến trình hợp nhất" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "Hợp nhất thuế từ nhiều tài liệu" @@ -31205,7 +31232,7 @@ msgstr "Chi phí khác" msgid "Mismatch" msgstr "Không khớp" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "Thiếu" @@ -31214,11 +31241,11 @@ msgstr "Thiếu" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "Thiếu tài khoản" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "Thiếu tài khoản" @@ -31243,11 +31270,11 @@ msgstr "" msgid "Missing Filters" msgstr "Thiếu bộ lọc" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "Thiếu Sổ Tài chính" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "Thiếu thành phẩm" @@ -31255,7 +31282,7 @@ msgstr "Thiếu thành phẩm" msgid "Missing Formula" msgstr "Thiếu công thức" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "Thiếu mặt hàng" @@ -31267,7 +31294,7 @@ msgstr "Thiếu tham số" msgid "Missing Payments App" msgstr "Thiếu ứng dụng thanh toán" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31279,7 +31306,7 @@ msgstr "Thiếu gói Số serial" msgid "Missing Warehouse" msgstr "Thiếu kho" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "Thiếu cấu hình tài khoản cho công ty {0}." @@ -31287,12 +31314,12 @@ msgstr "Thiếu cấu hình tài khoản cho công ty {0}." msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "Thiếu mẫu email để gửi hàng. Vui lòng đặt một mẫu trong Cài đặt Giao hàng." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "Thiếu bộ lọc bắt buộc: {0}" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "Giá trị bị thiếu" @@ -31541,17 +31568,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "Tìm thấy nhiều Chương trình tích điểm cho Khách hàng {}. Vui lòng chọn thủ công." +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "Nhiều Mục Mở POS" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "Nhiều Quy tắc Giá tồn tại với cùng tiêu chí, vui lòng giải quyết xung đột bằng cách gán mức ưu tiên. Quy tắc Giá: {0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31571,7 +31598,7 @@ msgstr "Nhiều trường công ty khả dụng: {0}. Vui lòng chọn thủ cô msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "Nhiều năm tài chính tồn tại cho ngày {0}. Vui lòng đặt công ty trong Năm Tài chính" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "Không thể đánh dấu nhiều mặt hàng là thành phẩm" @@ -31580,10 +31607,10 @@ msgid "Music" msgstr "Âm nhạc" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "Phải là Số nguyên" @@ -31668,11 +31695,7 @@ msgstr "Chuỗi đặt tên là bắt buộc" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "Chuỗi đặt tên '{0}' cho DocType '{1}' không chứa dấu tách tiêu chuẩn '.' hoặc '{{'. Sử dụng trích xuất dự phòng." @@ -31716,7 +31739,7 @@ msgstr "Phân tích nhu cầu" msgid "Negative Batch Report" msgstr "Báo cáo Lô Âm" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "Số lượng âm không được phép" @@ -31726,12 +31749,12 @@ msgstr "Số lượng âm không được phép" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "Lỗi Tồn kho Âm" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "Tỷ giá định giá âm không được phép" @@ -31809,8 +31832,8 @@ msgstr "Số tiền ròng" msgid "Net Amount (Company Currency)" msgstr "Số tiền ròng (Tiền tệ công ty)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "Giá trị tài sản ròng tính đến" @@ -31860,7 +31883,7 @@ msgstr "Đơn giá theo giờ ròng" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "Lợi nhuận ròng" @@ -31868,7 +31891,7 @@ msgstr "Lợi nhuận ròng" msgid "Net Profit Ratio" msgstr "Tỷ lệ lợi nhuận ròng" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "Lợi nhuận ròng/Lỗ" @@ -31882,11 +31905,11 @@ msgstr "Lợi nhuận ròng/Lỗ" msgid "Net Purchase Amount" msgstr "Số tiền mua ròng" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "Số tiền mua ròng bắt buộc" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "Số tiền mua ròng phải bằng số tiền mua của một Tài sản duy nhất." @@ -32130,7 +32153,7 @@ msgstr "Năm tài chính mới - {0}" msgid "New Income" msgstr "Thu nhập mới" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "Hóa đơn mới" @@ -32203,6 +32226,7 @@ msgid "New Task" msgstr "Nhiệm vụ mới" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "Phiên bản mới" @@ -32215,9 +32239,9 @@ msgstr "Tên kho mới" msgid "New Workplace" msgstr "Nơi làm việc mới" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "Hạn mức tín dụng mới thấp hơn số tiền chưa thanh toán hiện tại cho khách hàng. Hạn mức tín dụng phải ít nhất {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32225,6 +32249,10 @@ msgstr "Hạn mức tín dụng mới thấp hơn số tiền chưa thanh toán msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "Hóa đơn mới sẽ được tạo theo lịch trình ngay cả khi hóa đơn hiện tại chưa thanh toán hoặc quá hạn" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "Ngày phát hành mới phải trong tương lai" @@ -32237,7 +32265,7 @@ msgstr "Ngân sách sửa đổi mới đã được tạo thành công" msgid "New task" msgstr "Nhiệm vụ mới" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "{0} quy tắc giá mới đã được tạo" @@ -32301,16 +32329,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "Không tìm thấy Khách hàng cho Giao dịch Nội bộ đại diện cho công ty {0}" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "Không tìm thấy Khách hàng với các tùy chọn đã chọn." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "Không có Phiếu giao hàng nào được chọn cho Khách hàng {}" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "Không có DocType nào trong danh sách Xóa. Vui lòng tạo hoặc nhập danh sách trước khi trình." @@ -32318,15 +32345,15 @@ msgstr "Không có DocType nào trong danh sách Xóa. Vui lòng tạo hoặc nh msgid "No Impact on Accounting Ledger" msgstr "Không ảnh hưởng đến Sổ Kế toán" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "Không có Mặt hàng với Mã vạch {0}" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "Không có Mặt hàng với Số serial {0}" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "Không có Mặt hàng nào được chọn để chuyển." @@ -32369,11 +32396,6 @@ msgstr "Không có quyền" msgid "No Purchase Orders were created" msgstr "Không có Đơn mua nào được tạo" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "Không có bản ghi nào cho cài đặt này." - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "Không có lựa chọn" @@ -32476,6 +32498,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "Không tìm thấy liên hệ nào có ID email." +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "Không có dữ liệu cho giai đoạn này" @@ -32521,7 +32547,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "Không có mặt hàng khả dụng để chuyển." @@ -32558,10 +32584,6 @@ msgstr "Không có con bên trái" msgid "No more children on Right" msgstr "Không có con bên phải" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "Số lần giao hàng" @@ -32658,7 +32680,7 @@ msgstr "Không tìm thấy hóa đơn chưa thanh toán" msgid "No outstanding invoices require exchange rate revaluation" msgstr "Không có hóa đơn chưa thanh toán yêu cầu đánh giá lại tỷ giá" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "Không tìm thấy {0} chưa thanh toán cho {1} {2} phù hợp với bộ lọc bạn đã chỉ định." @@ -32696,15 +32718,20 @@ msgstr "" msgid "No record found" msgstr "Không tìm thấy bản ghi" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "Không tìm thấy bản ghi nào trong bảng Phân bổ" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "Không tìm thấy bản ghi nào trong bảng Hóa đơn" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "Không tìm thấy bản ghi nào trong bảng Thanh toán" @@ -32733,7 +32760,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "Không có bút toán sổ tồn kho được tạo. Vui lòng đặt số lượng hoặc tỷ giá định giá cho các mặt hàng đúng cách và thử lại." @@ -32770,7 +32797,7 @@ msgstr "Không có giá trị" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32778,11 +32805,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "Không tìm thấy {0} cho Giao dịch Nội bộ." -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "Không." - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32834,7 +32856,7 @@ msgstr "Không bằng không" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "Không có mặt hàng nào có thay đổi về số lượng hoặc giá trị." @@ -32845,8 +32867,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "Cái" @@ -32860,8 +32882,8 @@ msgstr "Cái" msgid "Not Applicable" msgstr "Không áp dụng" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "Không khả dụng" @@ -32924,10 +32946,6 @@ msgstr "Chưa bắt đầu" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "Không thể tìm thấy Năm tài chính sớm nhất cho công ty đã cho." -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "Không cho phép đặt mặt hàng thay thế cho mặt hàng {0}" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "Không được phép tạo thứ nguyên kế toán cho {0}" @@ -32944,10 +32962,6 @@ msgstr "Không được ủy quyền vì {0} vượt quá giới hạn" msgid "Not authorized to edit frozen Account {0}" msgstr "Không được phép sửa Tài khoản bị đóng băng {0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "Không có trong kho" @@ -32960,7 +32974,7 @@ msgstr "Hết hàng" msgid "Not permitted to make Purchase Orders" msgstr "Không được phép tạo Đơn mua" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33205,8 +33219,8 @@ msgid "Numeric Values" msgstr "Giá trị số" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "Số không được đặt trong tệp XML" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33381,12 +33395,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "Khi đặt, hóa đơn này sẽ bị tạm giữ cho đến ngày đã đặt" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "Khi Lệnh sản xuất đã đóng. Nó không thể được tiếp tục." +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "Một khách hàng chỉ có thể thuộc một Chương trình khách hàng thân thiết duy nhất." +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33420,7 +33434,7 @@ msgstr "Chỉ 'Các mục thanh toán' được thực hiện đối với tài msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "Chỉ các tệp CSV và Excel có thể được sử dụng để nhập dữ liệu. Vui lòng kiểm tra định dạng tệp bạn đang tải lên" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "Chỉ cho phép tệp CSV" @@ -33485,7 +33499,7 @@ msgstr "Chỉ một hoạt động có thể có 'Là Thành phẩm Cuối' đư msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "Chỉ một mục {0} có thể được tạo đối với Lệnh sản xuất {1}" @@ -33552,7 +33566,7 @@ msgstr "Mở Sự kiện" msgid "Open Events" msgstr "Các Sự kiện Mở" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "Mở Dạng xem Biểu mẫu" @@ -33705,7 +33719,7 @@ msgstr "Số dư đầu kỳ = Đầu kỳ, Số dư cuối kỳ = Cuối kỳ, #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "Chi tiết số dư đầu kỳ" @@ -33735,7 +33749,7 @@ msgstr "Ngày mở" msgid "Opening Entry" msgstr "Mục mở" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "Đang tạo Hóa đơn Mở" @@ -33763,7 +33777,7 @@ msgstr "Mục Hóa đơn Mở" msgid "Opening Invoice Tool" msgstr "Công cụ Hóa đơn Mở" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "Hóa đơn Mở có điều chỉnh làm tròn {0}.

                    Tài khoản '{1}' được yêu cầu để đăng các giá trị này. Vui lòng đặt nó trong Công ty: {2}.

                    Hoặc, '{3}' có thể được bật để không đăng bất kỳ điều chỉnh làm tròn nào." @@ -33772,7 +33786,7 @@ msgstr "Hóa đơn Mở có điều chỉnh làm tròn {0}.

                    Tài khoản msgid "Opening Invoices" msgstr "Hóa đơn Mở" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "Tóm tắt Hóa đơn Mở" @@ -33802,20 +33816,20 @@ msgstr "Hóa đơn bán mở đã được tạo." #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "Tồn kho đầu kỳ" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33824,7 +33838,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33867,7 +33881,7 @@ msgstr "Chi phí Thành phần Vận hành" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "Chi phí vận hành" @@ -33958,7 +33972,7 @@ msgstr "Số hàng hoạt động" msgid "Operation Time" msgstr "Thời gian hoạt động" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "Thời gian hoạt động phải lớn hơn 0 cho Hoạt động {0}" @@ -33982,8 +33996,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "Hoạt động {0} không thuộc về lệnh sản xuất {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "Hoạt động {0} dài hơn bất kỳ giờ làm việc khả dụng nào trong trạm làm việc {1}, chia nhỏ hoạt động thành nhiều hoạt động" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34168,6 +34182,10 @@ msgstr "Cơ hội {0} đã được tạo" msgid "Optimize Route" msgstr "Tối ưu hóa Lộ trình" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34184,10 +34202,6 @@ msgstr "Tùy chọn. Cài đặt này sẽ được sử dụng để lọc tron msgid "Optional. Used with Financial Report Template" msgstr "Tùy chọn. Được sử dụng với Mẫu Báo cáo Tài chính" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "Số tiền đặt hàng" @@ -34473,7 +34487,7 @@ msgid "Out of stock" msgstr "Hết hàng" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "Mục Mở POS đã lỗi thời" @@ -34527,7 +34541,7 @@ msgstr "Chưa thanh toán (Tiền tệ công ty)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34608,11 +34622,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "Cho phép vượt chọn (%)" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "Vượt nhận" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "Vượt nhận/giao của {0} {1} bị bỏ qua cho mặt hàng {2} vì bạn có vai trò {3}." @@ -34629,14 +34643,14 @@ msgstr "Cho phép vượt chuyển (%)" msgid "Over Withheld" msgstr "Vượt khấu lưu" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "Vượt hóa đơn của {0} {1} bị bỏ qua cho mặt hàng {2} vì bạn có vai trò {3}." -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "Vượt hóa đơn của {} bị bỏ qua vì bạn có vai trò {}." - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34685,10 +34699,6 @@ msgstr "Nhiệm vụ quá hạn" msgid "Overdue and Discounted" msgstr "Quá hạn và chiết khấu" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "Chồng lấn trong chấm điểm giữa {0} và {1}" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "Tìm thấy điều kiện chồng lấn giữa:" @@ -34754,6 +34764,11 @@ msgstr "PAN Không" msgid "PCV" msgstr "PCV" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "PCV đã tạm dừng" @@ -34801,7 +34816,7 @@ msgstr "POS" msgid "POS Additional Fields" msgstr "Trường bổ sung POS" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "POS đã đóng" @@ -34899,8 +34914,8 @@ msgid "POS Invoice is not submitted" msgstr "Hóa đơn POS chưa được gửi" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "Hóa đơn POS không được tạo bởi người dùng {}" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -34959,7 +34974,7 @@ msgstr "Mục Mở POS - {0} đã lỗi thời. Vui lòng đóng POS và tạo M msgid "POS Opening Entry Cancellation Error" msgstr "Lỗi hủy Mục Mở POS" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "Mục Mở POS đã hủy" @@ -34980,7 +34995,7 @@ msgstr "Thiếu Mục Mở POS" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "Mục Mở POS không thể hủy vì còn hóa đơn chưa hợp nhất." -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "Mục Mở POS đã bị hủy. Vui lòng làm mới trang." @@ -35003,7 +35018,7 @@ msgstr "Phương thức thanh toán POS" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "Hồ sơ POS" @@ -35023,8 +35038,8 @@ msgstr "Người dùng Hồ sơ POS" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "Hồ sơ POS không khớp {}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35035,20 +35050,20 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "Hồ sơ POS {0} không thể bị vô hiệu hóa vì còn phiên POS đang hoạt động." #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "Hồ sơ POS {} chứa Phương thức thanh toán {}. Vui lòng xóa chúng để vô hiệu hóa chế độ này." +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" -msgstr "Hồ sơ POS {} không thuộc công ty {}" +msgid "POS Profile {0} does not belong to company {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." -msgstr "Hồ sơ POS {} không tồn tại." +msgid "POS Profile {0} does not exist." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." -msgstr "Hồ sơ POS {} đã bị vô hiệu hóa." +msgid "POS Profile {0} is disabled." +msgstr "" #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -35077,11 +35092,11 @@ msgstr "Cài đặt POS" msgid "POS Transactions" msgstr "Giao dịch POS" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "POS đã được đóng lúc {0}. Vui lòng làm mới trang." -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "Hóa đơn POS {0} đã được tạo thành công" @@ -35100,7 +35115,7 @@ msgstr "Dự án PSOA" msgid "PZN" msgstr "PZN" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "Số gói đã được sử dụng. Thử từ Số gói {0}" @@ -35725,7 +35740,7 @@ msgstr "Phần triệu" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35852,7 +35867,7 @@ msgstr "Đối tác không khớp" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35938,7 +35953,7 @@ msgstr "Mặt hàng theo đối tác" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -35959,7 +35974,7 @@ msgstr "Loại đối tác" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "Loại đối tác và Đối tác chỉ có thể được đặt cho tài khoản Phải thu / Phải trả

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "Loại đối tác và Đối tác là bắt buộc cho tài khoản {0}" @@ -35995,7 +36010,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36505,7 +36520,7 @@ msgstr "Tài liệu tham khảo thanh toán" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36580,7 +36595,7 @@ msgstr "Lịch thanh toán" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "Không thể tạo yêu cầu thanh toán dựa trên lịch thanh toán vì một mục thanh toán đã tồn tại cho tài liệu này." -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "Lịch thanh toán" @@ -36602,7 +36617,7 @@ msgstr "Lịch thanh toán" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36702,8 +36717,8 @@ msgid "Payment Type" msgstr "Loại thanh toán" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "Loại thanh toán phải là một trong: Thu, Chi và Chuyển nội bộ" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36909,11 +36924,11 @@ msgstr "Các hoạt động đang chờ hôm nay" msgid "Pending processing" msgstr "Đang chờ xử lý" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37430,12 +37445,12 @@ msgstr "ID khách hàng kẻ sọc" msgid "Plaid Environment" msgstr "Môi trường kẻ sọc" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Liên kết Plaid thất bại" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "Yêu cầu làm mới liên kết Plaid" @@ -37457,7 +37472,7 @@ msgstr "Bí mật kẻ sọc" msgid "Plaid Settings" msgstr "Cài đặt kẻ sọc" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "Lỗi đồng bộ hóa giao dịch kẻ sọc" @@ -37608,15 +37623,6 @@ msgstr "Nhà máy và máy móc" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "Vui lòng bổ sung hàng vào kho và cập nhật Danh sách chọn để tiếp tục. Để ngừng, hãy hủy Danh sách chọn." -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "Vui lòng chọn một công ty" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "Vui lòng chọn một công ty." - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37624,7 +37630,6 @@ msgstr "Vui lòng chọn một khách hàng" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "Vui lòng chọn nhà cung cấp" @@ -37632,19 +37637,19 @@ msgstr "Vui lòng chọn nhà cung cấp" msgid "Please Set Priority" msgstr "Vui lòng đặt mức ưu tiên" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "Vui lòng đặt Nhóm nhà cung cấp trong Cài đặt Mua hàng." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "Vui lòng chỉ định tài khoản" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "Vui lòng thêm vai trò 'Nhà cung cấp' cho người dùng {0}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "Vui lòng thêm Phương thức thanh toán và chi tiết số dư mở đầu." @@ -37660,7 +37665,7 @@ msgstr "Vui lòng thêm Yêu cầu báo giá vào thanh bên trong Cài đặt C msgid "Please add Root Account for - {0}" msgstr "Vui lòng thêm Tài khoản gốc cho - {0}" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "Vui lòng thêm Tài khoản mở đầu tạm thời trong Biểu đồ tài khoản" @@ -37668,35 +37673,32 @@ msgstr "Vui lòng thêm Tài khoản mở đầu tạm thời trong Biểu đồ msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "Vui lòng thêm ít nhất một Số serial / Số lô" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "Vui lòng thêm cột Tài khoản ngân hàng" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "Vui lòng thêm tài khoản vào cấp gốc của Công ty - {0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "Vui lòng thêm tài khoản vào cấp gốc của Công ty - {}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "Vui lòng thêm vai trò {1} cho người dùng {0}." -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "Vui lòng điều chỉnh số lượng hoặc chỉnh sửa {0} để tiếp tục." @@ -37738,7 +37740,7 @@ msgstr "Vui lòng kiểm tra hoặc với các hoạt động hoặc Chi phí v msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "Vui lòng kiểm tra thông báo lỗi và thực hiện hành động cần thiết để khắc phục lỗi, sau đó khởi động lại việc đăng lại." @@ -37751,11 +37753,11 @@ msgstr "Vui lòng kiểm tra Plaid client ID và secret values của bạn" msgid "Please check your email to confirm the appointment" msgstr "Vui lòng kiểm tra email của bạn để xác nhận cuộc hẹn" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "Vui lòng nhấp vào 'Tạo lịch trình'" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "Vui lòng nhấp vào 'Tạo lịch trình' để lấy Số serial đã thêm cho Mặt hàng {0}" @@ -37771,15 +37773,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "Vui lòng liên hệ với bất kỳ người dùng nào sau đây để gia hạn hạn mức tín dụng cho {0}: {1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "Vui lòng liên hệ với bất kỳ người dùng nào sau đây để {} giao dịch này." - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "Vui lòng liên hệ với quản trị viên của bạn để gia hạn hạn mức tín dụng cho {0}." @@ -37787,11 +37789,11 @@ msgstr "Vui lòng liên hệ với quản trị viên của bạn để gia hạ msgid "Please convert the parent account in corresponding child company to a group account." msgstr "Vui lòng chuyển đổi tài khoản mẹ trong công ty con tương ứng thành tài khoản nhóm." -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "Vui lòng tạo Khách hàng từ Khách hàng tiềm năng {0}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "Vui lòng tạo Phiếu chi phí hạ tầng đối với các hóa đơn có 'Cập nhật kho' được bật." @@ -37803,7 +37805,7 @@ msgstr "Vui lòng tạo một Chiều kế toán mới nếu cần." msgid "Please create purchase from internal sale or delivery document itself" msgstr "Vui lòng tạo mua hàng từ chính tài liệu bán hàng nội bộ hoặc giao hàng" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "Vui lòng tạo biên nhận mua hàng hoặc hóa đơn mua hàng cho mặt hàng {0}" @@ -37815,11 +37817,11 @@ msgstr "Vui lòng xóa Bundle sản phẩm {0}, trước khi hợp nhất {1} v msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "Vui lòng tạm thời vô hiệu hóa quy trình làm việc cho Bút toán nhật ký {0}" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "Vui lòng không hạch toán chi phí của nhiều tài sản vào một Tài sản duy nhất." -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "Vui lòng không tạo hơn 500 mục cùng một lúc" @@ -37844,8 +37846,8 @@ msgid "Please enable {0} in the {1}." msgstr "Vui lòng bật {0} trong {1}." #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "Vui lòng bật {} trong {} để cho phép cùng một mặt hàng trong nhiều dòng" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37856,12 +37858,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "Vui lòng đảm bảo rằng tài khoản {0} {1} là tài khoản Phải trả. Bạn có thể thay đổi loại tài khoản thành Phải trả hoặc chọn một tài khoản khác." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "Vui lòng đảm bảo tài khoản {} là tài khoản Bảng cân đối kế toán." +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "Vui lòng đảm bảo tài khoản {} {} là tài khoản Phải thu." +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37876,7 +37878,7 @@ msgstr "Vui lòng nhập Tài khoản để thay đổi số tiền" msgid "Please enter Approving Role or Approving User" msgstr "Vui lòng nhập Vai trò phê duyệt hoặc Người phê duyệt" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "Vui lòng nhập Số lô" @@ -37892,7 +37894,7 @@ msgstr "Vui lòng nhập Ngày giao hàng" msgid "Please enter Employee Id of this sales person" msgstr "Vui lòng nhập Mã nhân viên của nhân viên bán hàng này" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "Vui lòng nhập tài khoản chi phí" @@ -37901,7 +37903,7 @@ msgstr "Vui lòng nhập tài khoản chi phí" msgid "Please enter Item Code to get Batch Number" msgstr "Vui lòng nhập Mã mặt hàng để lấy Số lô" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "Vui lòng nhập Mã mặt hàng để lấy số lô" @@ -37937,7 +37939,7 @@ msgstr "Vui lòng nhập Ngày tham chiếu" msgid "Please enter Root Type for account- {0}" msgstr "Vui lòng nhập Loại gốc cho tài khoản- {0}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "Vui lòng nhập Số serial" @@ -38067,8 +38069,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "Vui lòng tạo Danh sách cần xóa trước khi gửi" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "Vui lòng nhập tài khoản đối với công ty mẹ hoặc bật {} trong công ty chính." +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38103,11 +38105,7 @@ msgstr "Vui lòng đề cập BOM hiện tại và BOM mới để thay thế." msgid "Please pull items from Delivery Note" msgstr "Vui lòng kéo các mặt hàng từ Phiếu giao hàng" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "Vui lòng khắc phục và thử lại." - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "Vui lòng làm mới hoặc đặt lại liên kết Plaid của Ngân hàng {}." @@ -38136,12 +38134,12 @@ msgstr "Vui lòng lưu Đơn hàng bán trước khi thêm lịch giao hàng." msgid "Please select Template Type to download template" msgstr "Vui lòng chọn Loại mẫu để tải mẫu" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "Vui lòng chọn Áp dụng Chiết khấu Trên" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "Vui lòng chọn BOM cho mặt hàng {0}" @@ -38157,9 +38155,9 @@ msgstr "Vui lòng chọn Tài khoản Ngân hàng" msgid "Please select Category first" msgstr "Vui lòng chọn Danh mục trước" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "Vui lòng chọn Loại phí trước" @@ -38169,8 +38167,8 @@ msgstr "Vui lòng chọn Công ty" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "Vui lòng chọn Công ty và Ngày đăng để lấy các mục nhập" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38192,7 +38190,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "Vui lòng chọn Công ty hiện có để tạo Biểu đồ Tài khoản" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "Vui lòng chọn Mặt hàng thành phẩm cho Mặt hàng dịch vụ {0}" @@ -38201,6 +38199,10 @@ msgstr "Vui lòng chọn Mặt hàng thành phẩm cho Mặt hàng dịch vụ { msgid "Please select Item Code first" msgstr "Vui lòng chọn Mã Mặt hàng trước" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "Vui lòng chọn Trạng thái Bảo trì là Đã hoàn thành hoặc xóa Ngày hoàn thành" @@ -38225,11 +38227,11 @@ msgstr "Vui lòng chọn Ngày đăng trước khi chọn Đối tác" msgid "Please select Posting Date first" msgstr "Vui lòng chọn Ngày đăng trước" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "Vui lòng chọn Bảng giá" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "Vui lòng chọn Số lượng đối với mặt hàng {0}" @@ -38258,6 +38260,7 @@ msgid "Please select a BOM" msgstr "Vui lòng chọn một BOM" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "Vui lòng chọn một công ty" @@ -38265,11 +38268,12 @@ msgstr "Vui lòng chọn một công ty" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "Vui lòng chọn một công ty trước." +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "Vui lòng chọn một khách hàng" @@ -38278,7 +38282,7 @@ msgstr "Vui lòng chọn một khách hàng" msgid "Please select a Delivery Note" msgstr "Vui lòng chọn một Phiếu giao hàng" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "Vui lòng chọn một Đơn mua hàng ký gửi." @@ -38290,7 +38294,7 @@ msgstr "Vui lòng chọn một nhà cung cấp" msgid "Please select a Warehouse" msgstr "Vui lòng chọn một kho" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "Vui lòng chọn một Lệnh sản xuất trước." @@ -38306,6 +38310,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38339,22 +38344,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "Vui lòng chọn tần suất cho lịch giao hàng" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "Vui lòng chọn một dòng để tạo Mục đăng lại" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "Vui lòng chọn một nhà cung cấp để tìm nạp thanh toán." -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "Vui lòng chọn một Đơn mua hàng hợp lệ được cấu hình cho Ký gửi." +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "Vui lòng chọn một giá trị cho {0} báo giá_thành {1}" @@ -38363,7 +38372,7 @@ msgstr "Vui lòng chọn một giá trị cho {0} báo giá_thành {1}" msgid "Please select an item code before setting the warehouse." msgstr "Vui lòng chọn mã mặt hàng trước khi đặt kho." -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38371,10 +38380,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "Vui lòng chọn ít nhất một bộ lọc: Mã mặt hàng, Lô hoặc Số serial." +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "Vui lòng chọn ít nhất một dòng để sửa" @@ -38383,18 +38400,10 @@ msgstr "Vui lòng chọn ít nhất một dòng để sửa" msgid "Please select at least one row with difference value" msgstr "Vui lòng chọn ít nhất một dòng có giá trị chênh lệch" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "Vui lòng chọn ít nhất một lịch trình." -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "Vui lòng chọn ít nhất một mặt hàng để tiếp tục" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "Vui lòng chọn ít nhất một hoạt động để tạo Thẻ công việc" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "Vui lòng chọn đúng tài khoản" @@ -38432,12 +38441,12 @@ msgstr "Vui lòng chọn các mặt hàng để đặt trước." msgid "Please select items to unreserve." msgstr "Vui lòng chọn các mặt hàng để hủy đặt trước." -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "Vui lòng chọn chỉ một dòng để tạo Mục đăng lại" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "Vui lòng chọn các dòng để tạo các Mục đăng lại" @@ -38446,8 +38455,8 @@ msgid "Please select the Company" msgstr "Vui lòng chọn Công ty" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "Vui lòng chọn loại Chương trình Nhiều cấp cho nhiều hơn một quy tắc thu." +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38470,20 +38479,16 @@ msgstr "Vui lòng chọn loại tài liệu trước." msgid "Please select the required filters" msgstr "Vui lòng chọn các bộ lọc bắt buộc" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "Vui lòng chọn loại tài liệu hợp lệ." - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "Vui lòng chọn ngày nghỉ hàng tuần" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "Vui lòng chọn {0} trước" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "Vui lòng đặt 'Áp dụng chiết khấu bổ sung trên'" @@ -38512,8 +38517,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "Vui lòng đặt Tài khoản trong Kho {0} hoặc Tài khoản hàng tồn kho mặc định trong Công ty {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "Vui lòng đặt Chiều kế toán {} trong {}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38542,22 +38547,20 @@ msgid "Please set Email/Phone for the contact" msgstr "Vui lòng đặt Email/Điện thoại cho liên hệ" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "Vui lòng đặt Mã số thuế cho khách hàng '%s'" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "Vui lòng đặt Mã số thuế cho khách hàng '{0}'" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "Vui lòng đặt Mã số thuế cho hành chính công '%s'" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "Vui lòng đặt Mã số thuế cho hành chính công '{0}'" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "Vui lòng đặt Tài khoản tài sản cố định trong Loại tài sản {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "Vui lòng đặt Tài khoản tài sản cố định trong {} đối với {}." +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38573,9 +38576,8 @@ msgid "Please set Root Type" msgstr "Vui lòng đặt Loại gốc" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "Vui lòng đặt Mã số thuế cho khách hàng '%s'" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "Vui lòng đặt Mã số thuế cho khách hàng '{0}'" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38594,15 +38596,15 @@ msgid "Please set a Company" msgstr "Vui lòng đặt một Công ty" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "Vui lòng đặt Trung tâm chi phí cho Tài sản hoặc đặt Trung tâm chi phí khấu hao tài sản cho Công ty {}" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "Vui lòng đặt Danh sách ngày lễ mặc định cho Công ty {0}" @@ -38619,9 +38621,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "Vui lòng đặt nhu cầu thực tế hoặc dự báo bán hàng để tạo Báo cáo lập kế hoạch yêu cầu vật liệu." #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "Vui lòng đặt một Địa chỉ trên Công ty '%s'" +msgid "Please set an Address on the Company '{0}'" +msgstr "Vui lòng đặt một Địa chỉ trên Công ty '{0}'" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38639,25 +38640,22 @@ msgstr "Vui lòng đặt ít nhất một hàng trong Bảng Thuế và Phí" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "Vui lòng đặt cả Mã số thuế và Mã số thuế tài chính trên Công ty {0}" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "Vui lòng đặt Tài khoản tiền mặt hoặc ngân hàng trong Phương thức thanh toán {0}" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "Vui lòng đặt Tài khoản tiền mặt hoặc ngân hàng trong Phương thức thanh toán {}" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "Vui lòng đặt Tài khoản tiền mặt hoặc ngân hàng trong Phương thức thanh toán {0}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "Vui lòng đặt Tài khoản tiền mặt hoặc ngân hàng trong Phương thức thanh toán {}" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "Vui lòng đặt Tài khoản Lãi/Lỗ chênh lệch tỷ giá mặc định trong Công ty {}" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38688,11 +38686,11 @@ msgstr "Vui lòng đặt bộ lọc dựa trên Mặt hàng hoặc Kho" msgid "Please set one of the following:" msgstr "Vui lòng đặt một trong những thứ sau:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "Vui lòng đặt số khấu hao đã hạch toán mở đầu" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "Vui lòng đặt định kỳ sau khi lưu" @@ -38700,7 +38698,7 @@ msgstr "Vui lòng đặt định kỳ sau khi lưu" msgid "Please set the Customer Address" msgstr "Vui lòng đặt Địa chỉ khách hàng" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "Vui lòng đặt Trung tâm chi phí mặc định trong công ty {0}." @@ -38755,7 +38753,7 @@ msgstr "Vui lòng đặt {0} trong Công ty {1} để hạch toán Lãi/Lỗ ch msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "Vui lòng đặt {0} thành {1}, cùng tài khoản được sử dụng trong hóa đơn gốc {2}." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "Vui lòng thiết lập và bật tài khoản nhóm với Loại tài khoản - {0} cho công ty {1}" @@ -38763,7 +38761,7 @@ msgstr "Vui lòng thiết lập và bật tài khoản nhóm với Loại tài k msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "Vui lòng chia sẻ email này với nhóm hỗ trợ của bạn để họ có thể tìm và khắc phục sự cố." -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "Vui lòng chỉ định Công ty" @@ -38773,8 +38771,8 @@ msgstr "Vui lòng chỉ định Công ty" msgid "Please specify Company to proceed" msgstr "Vui lòng chỉ định Công ty để tiếp tục" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "Vui lòng chỉ định một Row ID hợp lệ cho dòng {0} trong bảng {1}" @@ -38782,11 +38780,11 @@ msgstr "Vui lòng chỉ định một Row ID hợp lệ cho dòng {0} trong bả msgid "Please specify a {0} first." msgstr "Vui lòng chỉ định {0} trước." -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "Vui lòng chỉ định ít nhất một thuộc tính trong Bảng thuộc tính" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "Vui lòng chỉ định Số lượng hoặc Tỷ giá định giá hoặc cả hai" @@ -38794,6 +38792,14 @@ msgstr "Vui lòng chỉ định Số lượng hoặc Tỷ giá định giá ho msgid "Please specify from/to range" msgstr "Vui lòng chỉ định phạm vi từ/đến" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "Vui lòng thử lại trong một giờ." @@ -38957,7 +38963,7 @@ msgstr "Đăng Ngày" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -38982,7 +38988,7 @@ msgstr "Đăng Ngày" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39025,8 +39031,8 @@ msgstr "Ngày đăng" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "Ngày đăng không thể là ngày tương lai" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39034,7 +39040,7 @@ msgstr "Ngày đăng không thể là ngày tương lai" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "Ngày đăng sẽ thay đổi thành ngày hôm nay vì Chỉnh sửa ngày và giờ đăng không được chọn. Bạn có chắc muốn tiếp tục không?" @@ -39227,6 +39233,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "Chi phí trả trước" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "Chủ tịch" @@ -39316,7 +39326,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "Năm tài chính trước chưa được đóng" @@ -39458,7 +39468,7 @@ msgstr "Quốc gia bảng giá" msgid "Price List Currency" msgstr "Tiền tệ bảng giá" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "Tiền tệ bảng giá chưa được chọn" @@ -39579,7 +39589,7 @@ msgstr "Giá không phụ thuộc Đơn vị Đo lường" msgid "Price Per Unit ({0})" msgstr "Giá mỗi Đơn vị ({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "Giá chưa được đặt cho mặt hàng này." @@ -39690,7 +39700,7 @@ msgstr "Quy tắc Định giá được chọn trước tiên dựa trên trư msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "Quy tắc Định giá được tạo để ghi đè Danh sách Giá / xác định tỷ lệ chiết khấu, dựa trên một số tiêu chí." -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "Quy tắc định giá {0} được cập nhật" @@ -39898,8 +39908,8 @@ msgid "Priorities" msgstr "Ưu tiên" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "Độ ưu tiên không thể nhỏ hơn 1." +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40080,7 +40090,7 @@ msgstr "Xử lý đăng ký" msgid "Process in Single Transaction" msgstr "Xử lý trong một giao dịch" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40206,7 +40216,7 @@ msgstr "Gói sản phẩm" msgid "Product Bundle Balance" msgstr "Số dư gói sản phẩm" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40231,7 +40241,7 @@ msgstr "Trợ giúp gói sản phẩm" msgid "Product Bundle Item" msgstr "Mặt hàng gói sản phẩm" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40434,7 +40444,7 @@ msgstr "Sản phẩm" msgid "Profit & Loss" msgstr "Lãi & Lỗ" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "Lợi nhuận năm nay" @@ -40463,6 +40473,10 @@ msgstr "Lợi nhuận và lỗ" msgid "Profit and Loss Statement" msgstr "Báo cáo lãi lỗ" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40471,8 +40485,8 @@ msgstr "Báo cáo lãi lỗ" msgid "Profit and Loss Summary" msgstr "Tóm tắt lãi lỗ" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "Lợi nhuận trong năm" @@ -40545,7 +40559,7 @@ msgstr "Tình trạng dự án" msgid "Project Summary" msgstr "Tóm tắt dự án" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "Tóm tắt dự án cho {0}" @@ -40625,7 +40639,7 @@ msgstr "Theo dõi tồn kho theo dự án" msgid "Project wise Stock Tracking " msgstr "Theo dõi tồn kho theo dự án " -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "Dữ liệu theo Dự án không có sẵn cho Báo giá" @@ -40676,7 +40690,7 @@ msgstr "Số lượng dự kiến" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40822,7 +40836,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "Khách hàng tiềm năng đã tiếp cận nhưng chưa chuyển đổi" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "DocType được bảo vệ" @@ -40855,9 +40869,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "Tài khoản Chi phí Tạm thời" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "Lãi / Lỗ Tạm thời (Tín dụng)" @@ -41085,8 +41099,8 @@ msgstr "Xu hướng Hóa đơn Mua hàng" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "Không thể tạo Hóa đơn Mua hàng cho tài sản hiện có {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "Hóa đơn Mua hàng {0} đã được trình" @@ -41127,7 +41141,7 @@ msgstr "Các Hóa đơn Mua hàng" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41151,11 +41165,11 @@ msgstr "Các Hóa đơn Mua hàng" msgid "Purchase Order" msgstr "Đơn mua hàng" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "Số tiền Đơn Mua hàng" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "Số tiền Đơn Mua hàng(Tiền tệ Công ty)" @@ -41170,7 +41184,7 @@ msgstr "Số tiền Đơn Mua hàng(Tiền tệ Công ty)" msgid "Purchase Order Analysis" msgstr "Phân tích Đơn Mua hàng" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "Ngày Đơn Mua hàng" @@ -41219,8 +41233,8 @@ msgid "Purchase Order Required" msgstr "Yêu cầu đơn mua hàng" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "Đơn Mua hàng yêu cầu cho mặt hàng {}" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41279,8 +41293,8 @@ msgid "Purchase Orders to Receive" msgstr "Đơn Mua hàng Cần Nhận" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "Đơn Mua hàng {0} đã bị hủy liên kết" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41369,8 +41383,8 @@ msgid "Purchase Receipt Required" msgstr "Yêu cầu biên nhận mua hàng" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "Biên nhận Mua hàng yêu cầu cho mặt hàng {}" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41389,8 +41403,8 @@ msgid "Purchase Receipt Trends " msgstr "Xu hướng Biên nhận Mua hàng " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "Biên nhận Mua hàng không có Mặt hàng nào được kích hoạt Giữ Mẫu." +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41617,7 +41631,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41636,7 +41650,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41701,7 +41715,7 @@ msgstr "Số lượng Sau Giao dịch" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41738,7 +41752,7 @@ msgstr "Số lượng Mỗi Đơn vị" msgid "Qty To Manufacture" msgstr "Số lượng Để Sản xuất" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "Số lượng cần sản xuất ({0}) không thể là phân số cho Đơn vị đo {2}. Để cho phép điều này, hãy tắt '{1}' trong Đơn vị đo {2}." @@ -41833,7 +41847,7 @@ msgstr "Số lượng cần tiêu thụ" msgid "Qty to Bill" msgstr "Số lượng để xuất hóa đơn" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "Số lượng để xây dựng" @@ -42019,7 +42033,7 @@ msgstr "Kiểm tra chất lượng" msgid "Quality Inspection Analysis" msgstr "Phân tích kiểm tra chất lượng" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42096,7 +42110,7 @@ msgstr "Kiểm tra chất lượng {0} chưa được gửi cho mặt hàng: {1} msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "Kiểm tra chất lượng {0} bị từ chối cho mặt hàng: {1}" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "Kiểm tra chất lượng" @@ -42179,7 +42193,7 @@ msgstr "Đánh giá chất lượng" msgid "Quality Review Objective" msgstr "Mục tiêu đánh giá chất lượng" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42223,12 +42237,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42379,7 +42393,7 @@ msgstr "Số lượng là bắt buộc" msgid "Quantity must be greater than zero" msgstr "Số lượng phải lớn hơn không" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "Số lượng phải lớn hơn không." @@ -42407,11 +42421,11 @@ msgstr "Số lượng phải lớn hơn 0" msgid "Quantity to Manufacture" msgstr "Số lượng sản xuất" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "Số lượng để sản xuất không thể bằng không cho thao tác {0}" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "Số lượng để sản xuất phải lớn hơn 0." @@ -42419,6 +42433,10 @@ msgstr "Số lượng để sản xuất phải lớn hơn 0." msgid "Quantity to Scan" msgstr "Số lượng để quét" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42444,7 +42462,7 @@ msgstr "Quý {0} {1}" msgid "Query Route String" msgstr "Chuỗi tuyến đường truy vấn" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "Kích thước hàng đợi phải từ 5 đến 100" @@ -42684,7 +42702,7 @@ msgstr "Được tạo bởi (Email)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42868,8 +42886,8 @@ msgid "Rate at which this tax is applied" msgstr "Tỷ giá mà thuế này được áp dụng" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" -msgstr "Đơn giá của các mặt hàng '{}' không thể thay đổi" +msgid "Rate of '{0}' items cannot be changed" +msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43187,7 +43205,7 @@ msgstr "Lý do tạm giữ" msgid "Reason for Failure" msgstr "Lý do thất bại" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "Lý do giữ" @@ -43429,8 +43447,8 @@ msgstr "Danh sách người nhận trống. Vui lòng tạo Danh sách người msgid "Receiving" msgstr "Đang nhận" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "Đơn hàng gần đây" @@ -43606,6 +43624,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43656,7 +43678,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "Đệ quy qua Số lượng không thể nhỏ hơn 0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "Chiết khấu đệ quy với điều kiện hỗn hợp không được hệ thống hỗ trợ" @@ -43736,7 +43758,7 @@ msgstr "Tham khảo #" msgid "Reference #{0} dated {1}" msgstr "Tham chiếu #{0} ngày {1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "Ngày tham chiếu cho Chiết khấu thanh toán sớm" @@ -44028,8 +44050,8 @@ msgid "Rejected Warehouse" msgstr "Kho bị từ chối" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "Kho bị từ chối và Kho được chấp nhận không thể giống nhau." +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44135,7 +44157,7 @@ msgstr "Nhận xét" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44174,7 +44196,7 @@ msgstr "Xóa các số đếm bằng không" msgid "Remove item if charges is not applicable to that item" msgstr "Xóa mặt hàng nếu phí không áp dụng cho mặt hàng đó" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "Đã xóa các mặt hàng không có thay đổi về số lượng hoặc giá trị." @@ -44326,7 +44348,7 @@ msgstr "Báo cáo lỗi" msgid "Report Line Items" msgstr "Các mục dòng báo cáo" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44409,7 +44431,7 @@ msgstr "Nhật ký lỗi tái đăng" msgid "Repost Item Valuation" msgstr "Tái định giá mặt hàng" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "Tái định giá mặt hàng đã được khởi động lại cho các bản ghi lỗi đã chọn." @@ -44455,6 +44477,15 @@ msgstr "Tái đăng đã bắt đầu trong nền" msgid "Reposting Data File" msgstr "Tệp dữ liệu tái đăng" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44539,7 +44570,7 @@ msgstr "Yêu cầu trước ngày" msgid "Reqd Qty (BOM)" msgstr "SL yêu cầu (BOM)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "Yêu cầu trước ngày" @@ -44655,11 +44686,11 @@ msgstr "Số lượng yêu cầu" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "SL yêu cầu: Số lượng đã yêu cầu mua, nhưng chưa đặt." -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "Trang web yêu cầu" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "Người yêu cầu" @@ -44838,6 +44869,10 @@ msgstr "Đặt trước tồn kho" msgid "Reserve Warehouse" msgstr "Kho dự trữ" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "Dự trữ cho nguyên liệu thô" @@ -44876,8 +44911,8 @@ msgid "Reserved Qty" msgstr "Số lượng dự trữ" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "Số lượng dự trữ ({0}) không thể là phân số. Để cho phép điều này, hãy tắt '{1}' trong Đơn vị đo {3}." +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "Số lượng dự trữ ({0}) không thể là phân số. Để cho phép điều này, hãy tắt '{1}' trong Đơn vị đo {2}." #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44921,7 +44956,7 @@ msgstr "Số lượng dự trữ" msgid "Reserved Quantity for Production" msgstr "Số lượng dự trữ cho sản xuất" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "Số serial đã đặt trước" @@ -44937,13 +44972,13 @@ msgstr "Số serial đã đặt trước" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "Tồn kho đã đặt trước" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "Tồn kho đã đặt trước cho lô" @@ -45437,6 +45472,10 @@ msgstr "Tỷ giá trả lại không phải là số nguyên cũng không phải msgid "Returns" msgstr "Trả lại" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45861,11 +45900,11 @@ msgstr "Tên định tuyến" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "Hàng # {0}: Không thể trả lại nhiều hơn {1} cho Mặt hàng {2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "Hàng # {0}: Vui lòng thêm Gói Serial và Batch cho Mặt hàng {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "Hàng # {0}: Vui lòng nhập số lượng cho Mặt hàng {1} vì nó không phải là không." @@ -45949,23 +45988,23 @@ msgstr "Hàng #{0}: Không tìm thấy BOM cho Mặt hàng Thành phẩm {1}" msgid "Row #{0}: Batch No {1} is already selected." msgstr "Hàng #{0}: Số Batch {1} đã được chọn." -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "Hàng #{0}: Số Batch {1} không phải là một phần của Đơn đặt hàng nội bộ Gia công phụ được liên kết. Vui lòng chọn Số Batch hợp lệ." +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "Hàng #{0}: Không thể phân bổ nhiều hơn {1} cho kỳ thanh toán {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "Hàng #{0}: Không thể hủy Mục Hàng tồn kho Sản xuất này vì số lượng đã lập hóa đơn của Mặt hàng {1} không thể lớn hơn số lượng đã tiêu thụ." -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "Hàng #{0}: Không thể hủy Mục Hàng tồn kho Sản xuất này vì số lượng Mặt hàng Phụ {1} được sản xuất không thể ít hơn số lượng đã giao." -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "Hàng #{0}: Không thể hủy Mục Hàng tồn kho này vì số lượng trả lại không thể lớn hơn số lượng đã giao cho Mặt hàng {1} trong Đơn nhập Gia công phụ được liên kết" @@ -46041,13 +46080,16 @@ msgstr "Hàng #{0}: Không thể tìm đủ {1} mục để khớp. Số tiền msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "Hàng #{0}: Ngưỡng tích lũy không thể nhỏ hơn ngưỡng Giao dịch Đơn lẻ" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} đối với Mục đơn hàng phụ thuộc {2} ({3}) không thể thêm nhiều lần." -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} không thể thêm nhiều lần trong quá trình nhận hàng phụ thuộc." @@ -46059,7 +46101,7 @@ msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} không thể thê msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} không tồn tại trong bảng Mặt hàng yêu cầu được liên kết với Đơn hàng phụ thuộc vào." -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} vượt quá số lượng có sẵn thông qua Đơn hàng phụ thuộc vào" @@ -46067,12 +46109,12 @@ msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} vượt quá số msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} có số lượng không đủ trong Đơn hàng phụ thuộc vào. Số lượng có sẵn là {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} không phải là một phần của Đơn hàng phụ thuộc vào {2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} không phải là một phần của Lệnh sản xuất {2}" @@ -46084,7 +46126,7 @@ msgstr "Hàng #{0}: Ngày gối đè lên hàng khác trong nhóm {1}" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "Hàng #{0}: BOM mặc định không tìm thấy cho Mặt hàng thành phẩm {1}" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "Hàng #{0}: Ngày bắt đầu khấu hao là bắt buộc" @@ -46092,6 +46134,10 @@ msgstr "Hàng #{0}: Ngày bắt đầu khấu hao là bắt buộc" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "Hàng #{0}: Mục trùng lặp trong Tham chiếu {1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "Hàng #{0}: Ngày giao hàng dự kiến không thể trước Ngày đơn mua hàng" @@ -46104,11 +46150,18 @@ msgstr "Hàng #{0}: Tài khoản chi phí chưa được đặt cho Mặt hàng msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "Hàng #{0}: Tài khoản chi phí {1} không hợp lệ cho Hóa đơn mua hàng {2}. Chỉ tài khoản chi phí từ mặt hàng không tồn kho mới được phép." -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "Hàng #{0}: Số lượng mặt hàng thành phẩm không thể bằng không" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46131,8 +46184,8 @@ msgstr "Hàng #{0}: Thành phẩm phải là {1}" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "Hàng #{0}: Tham chiếu thành phẩm là bắt buộc cho Mặt hàng phụ {1}." -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "Hàng #{0}: Đối với Mặt hàng do Khách hàng cung cấp {1}, Kho nguồn phải là {2}" @@ -46144,7 +46197,7 @@ msgstr "Hàng #{0}: Đối với {1}, bạn chỉ có thể chọn tài liệu t msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "Hàng #{0}: Đối với {1}, bạn chỉ có thể chọn tài liệu tham chiếu nếu tài khoản được ghi nợ" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "Hàng #{0}: Tần suất khấu hao phải lớn hơn không" @@ -46156,6 +46209,10 @@ msgstr "Hàng #{0}: Từ ngày không thể trước Đến ngày" msgid "Row #{0}: From Time and To Time fields are required" msgstr "Hàng #{0}: Các trường Từ giờ và Đến giờ là bắt buộc" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "Hàng #{0}: Mặt hàng đã thêm" @@ -46184,16 +46241,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "Hàng #{0}: Mặt hàng {1} trong kho {2}: Có sẵn {3}, Cần {4}." -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "Hàng #{0}: Mặt hàng {1} không phải là Mặt hàng do Khách hàng cung cấp." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "Hàng #{0}: Mặt hàng {1} không phải là Mặt hàng có Serial/Lô. Nó không thể có Số serial/Số lô đối với nó." -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "Hàng #{0}: Mặt hàng {1} không phải là một phần của Đơn hàng phụ thuộc vào {2}" @@ -46209,13 +46266,17 @@ msgstr "Hàng #{0}: Mặt hàng {1} không phải là mặt hàng tồn kho" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "Hàng #{0}: Mặt hàng {1} không khớp. Không được phép thay đổi mã mặt hàng, hãy thêm một hàng khác thay thế." +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "Hàng #{0}: Mặt hàng {1} không khớp. Không được phép thay đổi mã mặt hàng." +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46225,15 +46286,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "Hàng #{0}: Bút toán nhật ký {1} không có tài khoản {2} hoặc đã được đối trừ với chứng từ khác" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "Hàng #{0}: Thiếu {1} cho công ty {2}." -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "Hàng #{0}: Ngày khấu hao tiếp theo không thể trước Ngày sẵn sàng sử dụng" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "Hàng #{0}: Ngày khấu hao tiếp theo không thể trước Ngày mua" @@ -46245,24 +46306,48 @@ msgstr "Hàng #{0}: Không được phép thay đổi Nhà cung cấp vì Đơn msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "Hàng #{0}: Chỉ {1} có sẵn để dự trữ cho Mặt hàng {2}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "Hàng #{0}: Khấu hao lũy kế đầu kỳ phải nhỏ hơn hoặc bằng {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "Hàng #{0}: Tiêu thụ quá mức Mặt hàng do Khách hàng cung cấp {1} đối với Lệnh sản xuất {2} không được phép trong quá trình Nhận hàng phụ thuộc." +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "Hàng #{0}: Vui lòng chọn Mã mặt hàng trong Các mục lắp ráp" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "Hàng #{0}: Vui lòng chọn Số BOM trong Các mục lắp ráp" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "Hàng #{0}: Vui lòng chọn Mặt hàng thành phẩm mà Mặt hàng do Khách hàng cung cấp này sẽ được sử dụng." @@ -46278,6 +46363,10 @@ msgstr "Hàng #{0}: Vui lòng đặt số lượng đặt lại" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "Hàng #{0}: Vui lòng cập nhật tài khoản doanh thu/chi phí deferred trong hàng mặt hàng hoặc tài khoản mặc định trong công ty mẹ" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46297,8 +46386,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "Hàng #{0}: Số lượng phải là số dương" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "Hàng #{0}: Số lượng phải nhỏ hơn hoặc bằng Số lượng có sẵn để Dự trữ (Số lượng thực tế - Số lượng dự trữ) {1} cho Mặt hàng {2} đối với Lô {3} trong Kho {4}." +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46320,7 +46409,7 @@ msgstr "Hàng #{0}: Số lượng không thể là số không dương. Vui lòn msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "Hàng #{0}: Số lượng cho Mặt hàng {1} không thể bằng không." -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "Hàng #{0}: Số lượng của Mặt hàng {1} không thể nhiều hơn {2} {3} đối với Đơn hàng phụ thuộc vào {4}" @@ -46328,17 +46417,17 @@ msgstr "Hàng #{0}: Số lượng của Mặt hàng {1} không thể nhiều hơ msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "Hàng #{0}: Số lượng dự trữ cho Mặt hàng {1} phải lớn hơn 0." -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "Hàng #{0}: Tỷ giá phải giống như {1}: {2} ({3} / {4})" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "Hàng #{0}: Loại tài liệu tham chiếu phải là một trong Đơn mua hàng, Hóa đơn mua hàng hoặc Bút toán nhật ký" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "Hàng #{0}: Loại tài liệu tham chiếu phải là một trong Đơn bán hàng, Hóa đơn bán hàng, Bút toán nhật ký hoặc Đòi nợ" @@ -46358,11 +46447,11 @@ msgstr "Hàng #{0}: Chi phí sửa chữa {1} vượt quá số tiền có sẵn msgid "Row #{0}: Return Against is required for returning asset" msgstr "Hàng #{0}: Đối trừ là bắt buộc để trả lại tài sản" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "Hàng #{0}: Số lượng trả lại không thể lớn hơn số lượng có sẵn cho Mặt hàng {1}" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "Hàng #{0}: Số lượng trả lại không thể lớn hơn số lượng có sẵn để trả lại cho Mặt hàng {1}" @@ -46372,18 +46461,19 @@ msgstr "Hàng #{0}: Số lượng mặt hàng phụ không thể bằng không" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "Hàng #{0}: Tỷ giá bán cho mặt hàng {1} thấp hơn {2}.\n" -"\t\t\t\t\tBán {3} phải ít nhất là {4}.

                    Ngoài ra,\n" -"\t\t\t\t\tbạn có thể tắt '{5}' trong {6} để bỏ qua\n" -"\t\t\t\t\txác thực này." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "Hàng #{0}: ID thứ tự phải là {1} hoặc {2} cho Công việc {3}." +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "Hàng #{0}: Số serial {1} không thuộc về Lô {2}" @@ -46396,7 +46486,7 @@ msgstr "Hàng #{0}: Số serial {1} cho Mặt hàng {2} không có sẵn trong { msgid "Row #{0}: Serial No {1} is already selected." msgstr "Hàng #{0}: Số serial {1} đã được chọn." -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "Hàng #{0}: Số serial {1} không phải là một phần của Đơn hàng phụ thuộc vào được liên kết. Vui lòng chọn Số serial hợp lệ." @@ -46420,7 +46510,7 @@ msgstr "Hàng #{0}: Đặt Nhà cung cấp cho mặt hàng {1}" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "Hàng #{0}: Vì 'Theo dõi hàng bán thành phẩm' được bật, BOM {1} không thể được sử dụng cho các Mục lắp ráp phụ" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Hàng #{0}: Kho nguồn phải giống như Kho khách hàng {1} từ Đơn hàng phụ thuộc vào được liên kết" @@ -46489,7 +46579,7 @@ msgstr "Hàng #{0}: Hàng tồn kho không có sẵn để dự trữ cho Mặt msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "Hàng #{0}: Số lượng tồn kho {1} ({2}) cho mặt hàng {3} không thể vượt quá {4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "Hàng #{0}: Kho đích phải giống như Kho khách hàng {1} từ Đơn hàng phụ thuộc vào được liên kết" @@ -46497,19 +46587,27 @@ msgstr "Hàng #{0}: Kho đích phải giống như Kho khách hàng {1} từ Đ msgid "Row #{0}: The batch {1} has already expired." msgstr "Hàng #{0}: Lô {1} đã hết hạn." +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "Hàng #{0}: Kho {1} không phải là kho con của kho nhóm {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "Hàng #{0}: Thời gian xung đột với hàng {1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "Hàng #{0}: Tổng Số Lần Khấu hao không thể nhỏ hơn hoặc bằng Số Khấu hao Đã đặt trước Ban đầu" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "Hàng #{0}: Tổng Số Lần Khấu hao phải lớn hơn không" @@ -46521,11 +46619,15 @@ msgstr "Hàng #{0}: Kho {1} không khớp với kho {2} trong Gói Serial và Ba msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "Hàng #{0}: Số tiền Khấu giữ {1} không khớp với số tiền đã tính {2}." -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "Hàng #{0}: Lệnh Sản xuất đã tồn tại cho toàn bộ hoặc một phần số lượng của Mặt hàng {1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "Hàng #{0}: Bạn không thể sử dụng chiều hàng tồn kho '{1}' trong Đối soát Hàng tồn kho để sửa số lượng hoặc tỷ giá định giá. Đối soát hàng tồn kho với chiều hàng tồn kho chỉ nhằm mục đích thực hiện các mục số dư đầu kỳ." @@ -46533,6 +46635,19 @@ msgstr "Hàng #{0}: Bạn không thể sử dụng chiều hàng tồn kho '{1}' msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "Hàng #{0}: Bạn phải chọn một Tài sản cho Mặt hàng {1}." +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "Dòng #{0}: {1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "Hàng #{0}: {1} không thể âm cho mặt hàng {2}" @@ -46549,6 +46664,14 @@ msgstr "Hàng #{0}: {1} là bắt buộc để tạo Hóa đơn {2} Mở đầu" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "Hàng #{0}: {1} của {2} phải là {3}. Vui lòng cập nhật {1} hoặc chọn một tài khoản khác." +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "Hàng #{0}:Số lượng cho Mặt hàng {1} không thể là không." @@ -46589,71 +46712,10 @@ msgstr "Hàng #{idx}: {from_warehouse_field} và {to_warehouse_field} không th msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "Hàng #{idx}: {schedule_date} không thể trước {transaction_date}." -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "Hàng #{}: Tiền tệ của {} - {} không khớp với tiền tệ công ty." - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "Hàng #{}: Yêu cầu ID Đối tác hoặc Tên Đối tác" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "Hàng #{}: Sổ Tài chính không nên trống vì bạn đang sử dụng nhiều." - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "Hàng #{}: Hóa đơn POS {} đã được {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "Hàng #{}: Hóa đơn POS {} không phải là đối với khách hàng {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "Hàng #{}: Hóa đơn POS {} chưa được trình" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "Hàng #{}: Yêu cầu ID Đối tác" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "Hàng #{}: Vui lòng giao việc cho một thành viên." -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "Hàng #{}: Vui lòng sử dụng một Sổ Tài chính khác." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "Hàng #{}: Serial No {} không thể trả lại vì nó không được giao dịch trong hóa đơn gốc {}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "Hàng #{}: Hóa đơn gốc {} của hóa đơn trả lại {} không được hợp nhất." - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "Hàng #{}: Bạn không thể thêm số lượng dương trong hóa đơn trả lại. Vui lòng xóa mặt hàng {} để hoàn thành việc trả lại." - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "Hàng #{}: mặt hàng {} đã được chọn rồi." - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "Hàng #{}: {}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "Hàng #{}: {} {} không tồn tại." - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "Hàng #{}: {} {} không thuộc về Công ty {}. Vui lòng chọn {} hợp lệ." - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "Hàng số {0}: Yêu cầu Kho. Vui lòng đặt Kho Mặc định cho Mặt hàng {1} và Công ty {2}" @@ -46666,10 +46728,6 @@ msgstr "Hàng {0}: Yêu cầu Thao tác cho mặt hàng nguyên vật liệu {1} msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "Hàng {0} số lượng đã chọn ít hơn số lượng yêu cầu, cần thêm {1} {2}." -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "Hàng {0}# Mặt hàng {1} không tìm thấy trong bảng 'Nguyên vật liệu Đã cung cấp' trong {2} {3}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "Hàng {0}: Số lượng Đã chấp nhận và Số lượng Đã từ chối không thể cùng bằng không." @@ -46690,19 +46748,19 @@ msgstr "Hàng {0}: Tạm ứng cho Khách hàng phải là ghi có" msgid "Row {0}: Advance against Supplier must be debit" msgstr "Hàng {0}: Tạm ứng cho Nhà cung cấp phải là ghi nợ" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "Hàng {0}: Số tiền được phân bổ {1} phải nhỏ hơn hoặc bằng số tiền chưa thanh toán của hóa đơn {2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "Hàng {0}: Số tiền được phân bổ {1} phải nhỏ hơn hoặc bằng số tiền thanh toán còn lại {2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "Hàng {0}: Vì {1} được bật, nguyên vật liệu không thể được thêm vào mục {2}. Sử dụng mục {3} để tiêu thụ nguyên vật liệu." -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "Hàng {0}: Định mức Nguyên vật liệu không tìm thấy cho Mặt hàng {1}" @@ -46718,11 +46776,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "Hàng {0}: Hệ số chuyển đổi là bắt buộc" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "Hàng {0}: Trung tâm chi phí {1} không thuộc về Công ty {2}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "Hàng {0}: Trung tâm chi phí là bắt buộc cho mặt hàng {1}" @@ -46750,24 +46808,24 @@ msgstr "Hàng {0}: Kho giao hàng không thể giống như Kho khách hàng cho msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "Hàng {0}: Ngày đến hạn trong bảng Điều khoản thanh toán không thể trước Ngày đăng" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "Hàng {0}: Mục ghi chú giao hàng hoặc Mục hàng đóng gói là bắt buộc." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "Hàng {0}: Tỷ giá là bắt buộc" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "Hàng {0}: Giá trị dự kiến sau thời gian sử dụng không thể âm" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "Hàng {0}: Giá trị dự kiến sau thời gian sử dụng phải nhỏ hơn Số tiền mua ròng" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "Hàng {0}: Tài khoản chi phí {1} được liên kết với công ty {2}. Vui lòng chọn tài khoản thuộc về công ty {3}." @@ -46788,6 +46846,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "Hàng {0}: Từ giờ và Đến giờ là bắt buộc." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "Hàng {0}: Từ giờ và Đến giờ của {1} đang chồng chéo với {2}" @@ -46809,8 +46870,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "Hàng {0}: Tham chiếu không hợp lệ {1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "Hàng {0}: Mẫu thuế mặt hàng đã được cập nhật theo hiệu lực và tỷ lệ áp dụng" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46840,7 +46901,7 @@ msgstr "Hàng {0}: Thời gian vận hành phải lớn hơn 0 cho công việc msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "Hàng {0}: Số lượng đóng gói phải bằng Số lượng {1}." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "Hàng {0}: Phiếu đóng gói đã được tạo cho Mặt hàng {1}." @@ -46864,7 +46925,7 @@ msgstr "Hàng {0}: Thanh toán đối với Đơn bán hàng/Đơn mua hàng ph msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "Hàng {0}: Vui lòng kiểm tra 'Là tạm ứng' đối với Tài khoản {1} nếu đây là một mục tạm ứng." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "Hàng {0}: Vui lòng cung cấp một Mục ghi chú giao hàng hoặc Mục hàng đóng gói hợp lệ." @@ -46872,14 +46933,14 @@ msgstr "Hàng {0}: Vui lòng cung cấp một Mục ghi chú giao hàng hoặc M msgid "Row {0}: Please select a BOM for Item {1}." msgstr "Hàng {0}: Vui lòng chọn một BOM cho Mặt hàng {1}." +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "Hàng {0}: Vui lòng chọn một BOM hoạt động cho Mặt hàng {1}." -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "Hàng {0}: Vui lòng chọn một BOM hợp lệ cho Mặt hàng {1}." - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "Hàng {0}: Vui lòng đặt tại Lý do miễn thuế trong Thuế và phí bán hàng" @@ -46896,11 +46957,11 @@ msgstr "Hàng {0}: Vui lòng đặt mã chính xác trên Phương thức thanh msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "Hàng {0}: Project phải giống với Project đã đặt trong Timesheet: {1}." -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "Hàng {0}: Hóa đơn Mua hàng {1} không có tác động hàng tồn kho." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "Hàng {0}: Số lượng không thể lớn hơn {1} cho Mặt hàng {2}." @@ -46908,7 +46969,7 @@ msgstr "Hàng {0}: Số lượng không thể lớn hơn {1} cho Mặt hàng {2} msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "Hàng {0}: Số lượng theo Đơn vị Hàng tồn kho không thể bằng không." -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "Hàng {0}: Số lượng phải lớn hơn 0." @@ -46920,7 +46981,7 @@ msgstr "Hàng {0}: Số lượng không thể âm." msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "Hàng {0}: Hóa đơn Bán hàng {1} đã được tạo cho {2}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46945,10 +47006,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "Hàng {0}: Toàn bộ số tiền chi phí cho tài khoản {1} trong {2} đã được phân bổ." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "Hàng {0}: Mặt hàng {1}, số lượng phải là số dương" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "Hàng {0}: Tài khoản {3} {1} không thuộc về công ty {2}" @@ -47001,15 +47062,19 @@ msgstr "Hàng {0}: {1} {2} không thể giống như {3} (Tài khoản Đối t msgid "Row {0}: {1} {2} does not match with {3}" msgstr "Hàng {0}: {1} {2} không khớp với {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "Hàng {0}: {1} {2} được liên kết với công ty {3}. Vui lòng chọn một tài liệu thuộc về công ty {4}." +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "Hàng {0}: Mặt hàng {2} {1} không tồn tại trong {2} {3}" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "Hàng {1}: Số lượng ({0}) không thể là phân số. Để cho phép điều này, tắt '{2}' trong Đơn vị {3}." @@ -47048,8 +47113,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "Các hàng: {0} có 'Payment Entry' là reference_type. Điều này không nên được đặt thủ công." #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "Các hàng: {0} trong phần {1} không hợp lệ. Tên Tham chiếu phải trỏ đến một Payment Entry hoặc Journal Entry hợp lệ." +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47109,10 +47174,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47180,7 +47241,7 @@ msgstr "Trạng thái SLA Đã đáp ứng" msgid "SLA Paused On" msgstr "SLA Bị tạm dừng vào" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "SLA bị tạm dừng kể từ {0}" @@ -47479,8 +47540,8 @@ msgid "Sales Invoice is not submitted" msgstr "Hóa đơn Bán hàng chưa được gửi" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "Hóa đơn Bán hàng không được tạo bởi người dùng {}" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47696,8 +47757,8 @@ msgstr "Đơn hàng Bán {0} đã tồn tại cho Đơn đặt hàng Mua của K msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48104,7 +48165,7 @@ msgstr "Cùng Mặt hàng" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "Cùng mặt hàng và tổ hợp kho đã được nhập." @@ -48136,7 +48197,7 @@ msgstr "Kho Giữ Mẫu" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "Kích thước mẫu" @@ -48246,7 +48307,7 @@ msgstr "Số lượng đã quét" msgid "Schedule Date" msgstr "Ngày lên lịch" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "Tên Lịch trình" @@ -48257,7 +48318,7 @@ msgstr "Tên Lịch trình" msgid "Scheduled Date" msgstr "Ngày đã lên lịch" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "Ngày đã lên lịch là bắt buộc." @@ -48545,7 +48606,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "Chọn Chiều Kế toán." -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "Chọn mục thay thế" @@ -48566,7 +48627,7 @@ msgid "Select BOM and Qty for Production" msgstr "Chọn BOM và Số lượng cho Sản xuất" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "Chọn Số Batch" @@ -48631,7 +48692,7 @@ msgstr "Chọn Chiều" msgid "Select Dispatch Address " msgstr "Chọn Địa chỉ Gửi hàng " -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "Chọn nhân viên" @@ -48656,7 +48717,7 @@ msgstr "Chọn Mặt hàng" msgid "Select Items based on Delivery Date" msgstr "Chọn Mặt hàng dựa trên Ngày Giao hàng" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "Chọn Mặt hàng để Kiểm tra Chất lượng" @@ -48686,7 +48747,7 @@ msgstr "Chọn Địa chỉ Công nhân Việc" msgid "Select Loyalty Program" msgstr "Chọn Chương trình Khách hàng Thân thiết" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "Chọn Lịch thanh toán" @@ -48700,13 +48761,13 @@ msgid "Select Quantity" msgstr "Chọn Số lượng" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "Chọn Số Serial" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "Chọn Serial và Batch" @@ -48797,6 +48858,7 @@ msgid "Select an Item Group." msgstr "Chọn một Nhóm Mặt hàng." #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "Chọn một tài khoản để in theo tiền tệ tài khoản" @@ -48939,10 +49001,14 @@ msgstr "Các Chứng từ Đã chọn" msgid "Selected date is" msgstr "Ngày đã chọn là" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "Tài liệu đã chọn phải ở trạng thái đã gửi" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49090,7 +49156,7 @@ msgid "Send Emails to Suppliers" msgstr "Gửi Email cho Nhà cung cấp" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "Gửi tin nhắn SMS" @@ -49174,7 +49240,7 @@ msgstr "Thiếu Gói Serial / Batch" msgid "Serial / Batch No" msgstr "Số Serial / Batch" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "Các Số Serial / Batch" @@ -49231,10 +49297,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49276,6 +49343,10 @@ msgstr "Serial No / Batch" msgid "Serial No Already Assigned" msgstr "Serial No đã được gán" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "Số Serial No" @@ -49293,7 +49364,7 @@ msgstr "Sổ Serial No" msgid "Serial No Range" msgstr "Phạm vi Serial No" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "Serial No đã dự trữ" @@ -49338,8 +49409,8 @@ msgid "Serial No and Batch" msgstr "Serial No và Batch" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "Bộ chọn Serial No và Batch không thể sử dụng khi Sử dụng Trường Serial / Batch được bật." +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49350,7 +49421,7 @@ msgstr "Bộ chọn Serial No và Batch không thể sử dụng khi Sử dụng msgid "Serial No and Batch Traceability" msgstr "Truy xuất Serial No và Batch" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "Serial No là bắt buộc" @@ -49370,22 +49441,19 @@ msgstr "Serial No {0} đã được quét" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "Serial No {0} không thuộc về Phiếu giao hàng {1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "Serial No {0} không thuộc về Mặt hàng {1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "Serial No {0} không tồn tại" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "Serial No {0} không tồn tại" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." -msgstr "Serial No {0} đã được Giao. Bạn không thể sử dụng lại trong mục Sản xuất / Đóng gói lại." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." +msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49399,25 +49467,26 @@ msgstr "Serial No {0} đã được gán cho khách hàng {1}. Chỉ có thể t msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "Serial No {0} không có trong {1} {2}, vì vậy bạn không thể trả lại nó cho {1} {2}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "Serial No {0} đang trong hợp đồng bảo trì đến {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "Serial No {0} đang trong bảo hành đến {1}" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "Serial No {0} không tìm thấy" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "Serial No: {0} đã được giao dịch vào một Hóa đơn POS khác." #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49437,7 +49506,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "Các Serial No đã được tạo thành công" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "Các Serial No được dự trữ trong các Mục Dự trữ Hàng tồn kho, bạn cần hủy dự trữ chúng trước khi tiếp tục." @@ -49538,6 +49607,10 @@ msgstr "Gói Serial và Batch {0} chưa được gửi" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49586,7 +49659,7 @@ msgstr "Dự trữ Serial và Batch" msgid "Serial and Batch Summary" msgstr "Tóm tắt Serial và Batch" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "Số serial {0} đã được nhập nhiều hơn một lần" @@ -49594,122 +49667,12 @@ msgstr "Số serial {0} đã được nhập nhiều hơn một lần" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "Các số serial không có sẵn cho Mặt hàng {0} trong kho {1}. Vui lòng thử thay đổi kho." -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "Dãy" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "Dãy cho Mục Khấu hao Tài sản (Nhật ký Kế toán)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "Dãy là bắt buộc" @@ -49791,7 +49754,7 @@ msgid "Service Item {0} is disabled." msgstr "Mặt hàng dịch vụ {0} bị vô hiệu hóa." #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "Mặt hàng dịch vụ {0} phải là mặt hàng không tồn kho." @@ -49900,12 +49863,12 @@ msgid "Service Stop Date" msgstr "Ngày ngừng dịch vụ" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "Ngày Ngừng Dịch vụ không thể sau Ngày Kết thúc Dịch vụ" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "Ngày Ngừng Dịch vụ không thể trước Ngày Bắt đầu Dịch vụ" @@ -49929,7 +49892,7 @@ msgstr "Đặt Tạm ứng và Phân bổ (FIFO)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "Đặt tỷ lệ cơ bản theo cách thủ công" @@ -49944,7 +49907,7 @@ msgstr "Đặt Nhà cung cấp Mặc định" msgid "Set Delivery Warehouse" msgstr "Đặt Kho Giao hàng" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50049,7 +50012,7 @@ msgstr "Đặt Đặt tên Gói Serial và Batch Dựa trên Dãy Đặt tên" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50067,7 +50030,7 @@ msgstr "Đặt Nhà cung cấp" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50093,7 +50056,7 @@ msgstr "Đặt là Đã đóng" msgid "Set as Completed" msgstr "Đặt là Đã hoàn thành" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "Đặt là Đã mất" @@ -50191,15 +50154,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "Đặt {0} trong danh mục tài sản {1} cho công ty {2}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "Đặt {0} trong danh mục tài sản {1} hoặc công ty {2}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "Đặt {0} trong công ty {1}" @@ -50267,7 +50230,7 @@ msgid "Setting up company" msgstr "Thành lập công ty" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "Yêu cầu đặt {0}" @@ -50695,6 +50658,7 @@ msgid "Show Completed" msgstr "Hiển thị đã hoàn thành" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "Hiển thị Có / Nợ theo đơn vị tiền tệ của công ty" @@ -50897,7 +50861,7 @@ msgstr "Chỉ hiển thị kỳ hạn sắp tới ngay lập tức" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "Hiển thị các bút toán đang chờ" @@ -51002,11 +50966,11 @@ msgstr "Công thức Python đơn giản được áp dụng trên các trườn msgid "Simultaneous" msgstr "Đồng thời" -#: erpnext/assets/doctype/asset_category/asset_category.py:183 +#: erpnext/assets/doctype/asset_category/asset_category.py:184 msgid "Since there are active depreciable assets under this category, the following accounts are required.

                    " msgstr "Since there are active depreciable assets under this category, the following accounts are required.

                    " -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." @@ -51067,7 +51031,7 @@ msgstr "Bỏ qua chuyển nguyên vật liệu sang WIP" msgid "Skip Material Transfer to WIP Warehouse" msgstr "Bỏ qua chuyển nguyên vật liệu sang Kho WIP" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "Đã bỏ qua {0} DocType(s):
                    {1}" @@ -51123,8 +51087,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "Một số thông tin Công ty bắt buộc đang bị thiếu. Bạn không có quyền cập nhật chúng. Vui lòng liên hệ Quản trị viên hệ thống của bạn." #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "Đã xảy ra lỗi, vui lòng thử lại" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51191,7 +51155,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51228,8 +51192,8 @@ msgstr "Loại nguồn" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51359,7 +51323,7 @@ msgstr "Tách vấn đề" msgid "Split Qty" msgstr "Số lượng tách" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "Số lượng tách phải nhỏ hơn số lượng tài sản" @@ -51372,7 +51336,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "Đang tách {0} {1} thành {2} hàng theo Điều khoản thanh toán" @@ -51425,7 +51394,7 @@ msgstr "Tên giai đoạn" msgid "Stale Days" msgstr "Số ngày cũ" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "Số ngày cũ phải bắt đầu từ 1." @@ -51490,10 +51459,26 @@ msgstr "Mẫu thuế tiêu chuẩn có thể được áp dụng cho tất cả msgid "Standing Name" msgstr "Tên thường trực" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "Bắt đầu / Tiếp tục" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "Ngày bắt đầu không thể trước ngày hiện tại" @@ -51523,7 +51508,7 @@ msgstr "Thời gian bắt đầu không thể lớn hơn hoặc bằng Thời gi msgid "Start Timer" msgstr "Bắt đầu đồng hồ" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51552,10 +51537,14 @@ msgstr "Ngày bắt đầu phải trước ngày kết thúc cho mặt hàng {0} msgid "Start date should be less than end date for task {0}" msgstr "Ngày bắt đầu phải trước ngày kết thúc cho nhiệm vụ {0}" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "Đã bắt đầu một công việc nền để tạo {1} {0}. {2}" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51636,7 +51625,7 @@ msgstr "Minh họa trạng thái" msgid "Status and Reference" msgstr "Trạng thái và Tham chiếu" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "Trạng thái phải là Đã hủy hoặc Đã hoàn thành" @@ -51764,8 +51753,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "Bút toán đóng kỳ tồn kho {0} đã tồn tại cho phạm vi ngày đã chọn" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "Bút toán đóng kỳ tồn kho {0} đã được đưa vào hàng đợi để xử lý, hệ thống sẽ mất thời gian để hoàn thành." +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51846,17 +51835,21 @@ msgstr "Mục bút toán tồn kho" msgid "Stock Entry Type" msgstr "Loại bút toán tồn kho" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "Bút toán tồn kho đã được tạo cho Danh sách chọn này" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "Bút toán tồn kho {0} đã được tạo" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "Bút toán tồn kho {0} đã được tạo" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52022,7 +52015,7 @@ msgstr "Số lượng tồn kho dự kiến" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52105,7 +52098,7 @@ msgstr "Cài đặt đăng lại tồn kho" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52130,15 +52123,15 @@ msgstr "Dự trữ tồn kho" msgid "Stock Reservation Entries Cancelled" msgstr "Các mục dự trữ tồn kho đã bị hủy" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "Các mục dự trữ tồn kho đã được tạo" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "Các mục dự trữ tồn kho đã được tạo" @@ -52308,7 +52301,7 @@ msgstr "Giao dịch tồn kho" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52467,9 +52460,9 @@ msgstr "Tồn kho đã được bỏ đặt cho work order {0}." msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "Tồn kho không có sẵn cho mặt hàng {0} trong Kho {1}." -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "Số lượng tồn kho không đủ cho Mã mặt hàng: {0} tại kho {1}. Số lượng có sẵn {2} {3}." +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52487,7 +52480,7 @@ msgstr "Các giao dịch tồn kho cũ hơn số ngày đã đề cập không t msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "Tồn kho sẽ được đặt khi gửi Phiếu nhận hàng được tạo đối với Yêu cầu vật liệu cho Đơn hàng bán." -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "Tồn kho/Tài khoản không thể bị đông lạnh vì đang xử lý các bút toán ngày trước. Vui lòng thử lại sau." @@ -52502,7 +52495,7 @@ msgstr "Stone" msgid "Stop Reason" msgstr "Lý do dừng" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "Work Order đã dừng không thể bị hủy, hãy bỏ dừng trước để hủy" @@ -52510,7 +52503,7 @@ msgstr "Work Order đã dừng không thể bị hủy, hãy bỏ dừng trướ #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "Cửa hàng" @@ -52724,7 +52717,7 @@ msgstr "Hệ số chuyển đổi ký gửi" msgid "Subcontracting Delivery" msgstr "Giao hàng ký gửi" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52796,7 +52789,7 @@ msgstr "Mục dịch vụ đơn nhận hàng ký gửi" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52834,7 +52827,7 @@ msgstr "Mục dịch vụ đơn hàng ký gửi" msgid "Subcontracting Order Supplied Item" msgstr "Mục cung cấp đơn hàng ký gửi" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "Đơn hàng ký gửi {0} đã được tạo." @@ -52908,7 +52901,7 @@ msgstr "Trả lại ký gửi" msgid "Subcontracting Sales Order" msgstr "Sales Order ký gửi" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52927,7 +52920,7 @@ msgstr "Thiết lập ký gửi" msgid "Subdivision" msgstr "Tiểu huyện" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "Gửi hành động thất bại" @@ -52956,7 +52949,7 @@ msgstr "Gửi Work Order này để xử lý thêm." msgid "Submit your Quotation" msgstr "Gửi báo giá của bạn" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53098,7 +53091,7 @@ msgstr "Cài đặt thành công" msgid "Successful" msgstr "Thành công" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "Đã đối soát thành công" @@ -53276,7 +53269,7 @@ msgstr "Số lượng được cung cấp" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53458,7 +53451,7 @@ msgstr "Ngày hóa đơn nhà cung cấp" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "Số hóa đơn nhà cung cấp" @@ -53606,7 +53599,7 @@ msgstr "So sánh báo giá từ nhà cung cấp" msgid "Supplier Quotation Item" msgstr "Mục báo giá từ nhà cung cấp" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "Báo giá từ nhà cung cấp {0} đã được tạo" @@ -53791,10 +53784,6 @@ msgstr "Đội ngũ hỗ trợ" msgid "Support Tickets" msgstr "Vé hỗ trợ" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "Số tiền chiết khấu nghi ngờ" @@ -53881,7 +53870,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "Tóm tắt tính toán TDS" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "TDS đã khấu trừ" @@ -53942,8 +53931,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "Tài sản đích {0} không thuộc về công ty {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "Tài sản đích {0} cần phải là tài sản tổng hợp" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54052,11 +54041,11 @@ msgstr "Liên kết địa chỉ kho đích" msgid "Target Warehouse Reservation Error" msgstr "Lỗi đặt kho đích" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "Kho đích cho Thành phẩm phải giống Kho thành phẩm {1} trong Work Order {2} được liên kết với Đơn nhận hàng ký gửi." +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "Kho đích cho Thành phẩm phải giống Kho thành phẩm {0} trong Work Order {1} được liên kết với Đơn nhận hàng ký gửi." -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "Kho đích là bắt buộc trước khi gửi" @@ -54532,7 +54521,7 @@ msgstr "Thuế được khấu giữ chỉ cho số tiền vượt quá ngưỡn #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "Số tiền chịu thuế" @@ -54744,7 +54733,7 @@ msgstr "Ti vi" msgid "Template Item" msgstr "Mục mẫu" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "Mặt hàng mẫu đã chọn" @@ -55051,23 +55040,27 @@ msgstr "Tesla" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "Văn bản hiển thị trên báo cáo tài chính (ví dụ: 'Tổng doanh thu', 'Tiền và các khoản tương đương tiền')" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "Trường 'Từ số gói.' không được để trống và giá trị của nó không được nhỏ hơn 1." - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "Quyền truy cập vào Yêu cầu Báo giá từ Cổng thông tin bị vô hiệu hóa. Để cho phép truy cập, hãy bật nó trong Cài đặt Cổng thông tin." +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "BOM sẽ được thay thế" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "Lô {0} có số lượng lô âm {1}. Để khắc phục điều này, hãy đi đến lô và nhấp vào Tính lại số lượng lô. Nếu sự cố vẫn tiếp diễn, hãy tạo một mục nhập vào." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "Chiến dịch '{0}' đã tồn tại cho {1} '{2}'" @@ -55092,6 +55085,10 @@ msgstr "Các mục GL và số dư đóng sẽ được xử lý trong nền, c msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "Các mục GL sẽ bị hủy trong nền, có thể mất vài phút." +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "Chương trình khách hàng thân thiết không hợp lệ cho công ty đã chọn" @@ -55109,9 +55106,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "Danh sách chọn có các mục dự trữ tồn kho không thể được cập nhật. Nếu bạn cần thực hiện thay đổi, chúng tôi khuyên bạn hủy các mục dự trữ tồn kho hiện có trước khi cập nhật Danh sách chọn." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "Số lượng hao hụt quy trình đã được đặt lại theo Số lượng hao hụt quy trình của thẻ công việc" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55121,11 +55121,15 @@ msgstr "Nhân viên bán hàng được liên kết với {0}" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "Số serial ở Hàng #{0}: {1} không có sẵn trong kho {2}." -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "Số serial {0} được dự trữ đối với {1} {2} và không thể được sử dụng cho bất kỳ giao dịch nào khác." -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "Gói Serial và Batch {0} không hợp lệ cho giao dịch này. 'Loại giao dịch' phải là 'Xuất' thay vì 'Nhập' trong Gói Serial và Batch {0}" @@ -55173,15 +55177,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "Số lượng hoàn thành {0} của thao tác {1} không thể lớn hơn số lượng hoàn thành {2} của thao tác trước {3}." #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "Tiền tệ của hóa đơn {} ({}) khác với tiền tệ của đòi nợ này ({})." +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "Mục mở POS hiện tại đã lỗi thời. Vui lòng đóng nó và tạo một mục mới." @@ -55230,6 +55234,10 @@ msgstr "Trường Đến cổ đông không được để trống" msgid "The field {0} in row {1} is not set" msgstr "Trường {0} ở hàng {1} chưa được đặt" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "Các trường Từ cổ đông và Đến cổ đông không được để trống" @@ -55251,9 +55259,9 @@ msgstr "Năm tài chính đã được tự động tạo ở trạng thái bị msgid "The folio numbers are not matching" msgstr "Các số folio không khớp" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "Các mặt hàng sau, có Quy tắc đặt hàng, không thể được điều chỉnh:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55280,8 +55288,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "Các nhân viên sau hiện vẫn đang báo cáo cho {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "Các Quy tắc giá không hợp lệ sau đã bị xóa:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55293,7 +55301,7 @@ msgstr "Các lịch thanh toán sau đã tồn tại:\n" msgid "The following rows are duplicates:" msgstr "Các hàng sau là trùng lặp:" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "{0} sau đây đã được tạo: {1}" @@ -55329,8 +55337,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "Các mặt hàng {items} không được đánh dấu là mặt hàng {type_of}. Bạn có thể bật chúng là mặt hàng {type_of} từ master mặt hàng của chúng." #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "Thẻ công việc {0} đang ở trạng thái {1} và bạn không thể hoàn thành." +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55367,12 +55375,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "Thao tác {0} không thể thêm nhiều lần" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "Thao tác {0} không thể là thao tác phụ" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55420,6 +55428,10 @@ msgstr "Phần trăm bạn được phép nhận hoặc giao nhiều hơn so v msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "Phần trăm bạn được phép chuyển nhiều hơn so với số lượng đã đặt. Ví dụ, nếu bạn đã đặt 100 đơn vị và Dung sai của bạn là 10%, thì bạn được phép chuyển 110 đơn vị." +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55429,7 +55441,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "Hàng tồn kho dự trữ sẽ được giải phóng khi bạn cập nhật mặt hàng. Bạn có chắc chắn muốn tiến hành không?" @@ -55446,8 +55458,8 @@ msgid "The selected BOMs are not for the same item" msgstr "Các BOM đã chọn không dành cho cùng một mặt hàng" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "Tài khoản thay đổi đã chọn {} không thuộc về Công ty {}." +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55463,8 +55475,8 @@ msgstr "Người bán và người mua không thể giống nhau" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "Gói serial và batch {0} không được liên kết với {1} {2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55482,11 +55494,11 @@ msgstr "Cổ phiếu đã tồn tại" msgid "The shares don't exist with the {0}" msgstr "Cổ phiếu không tồn tại với {0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "Hàng tồn kho cho mặt hàng {0} trong kho {1} âm vào ngày {2}. Bạn nên tạo một mục dương {3} trước ngày {4} và thời gian {5} để đăng tỷ giá định giá chính xác. Để biết thêm chi tiết, vui lòng đọc tài liệu." +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "Hàng tồn kho cho mặt hàng {0} trong kho {1} âm vào ngày {2}. Bạn nên tạo một mục dương {3} trước ngày {4} và thời gian {5} để đăng tỷ giá định giá chính xác. Để biết thêm chi tiết, vui lòng đọc tài liệu." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "Hàng tồn kho đã được dự trữ cho các Mặt hàng và Kho sau, bỏ dự trữ cùng để {0} Đối soát Tồn kho:

                    {1}" @@ -55508,17 +55520,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "Hệ thống sẽ tạo Hóa đơn bán hàng hoặc Hóa đơn POS từ giao diện POS dựa trên cài đặt này. Đối với các giao dịch khối lượng lớn, nên sử dụng Hóa đơn POS." -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "Tác vụ đã được đưa vào hàng đợi như một công việc nền. Trong trường hợp có bất kỳ vấn đề nào khi xử lý nền, hệ thống sẽ thêm một bình luận về lỗi trên Đối soát Tồn kho này và quay lại giai đoạn Nháp" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "Tác vụ đã được đưa vào hàng đợi như một công việc nền. Trong trường hợp có bất kỳ vấn đề nào khi xử lý nền, hệ thống sẽ thêm một bình luận về lỗi trên Đối soát Tồn kho này và quay lại giai đoạn Đã gửi" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "Tổng số lượng Xuất / Chuyển {0} trong Yêu cầu Vật liệu {1} không thể lớn hơn số lượng yêu cầu được phép {2} cho Mặt hàng {3}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55556,7 +55568,7 @@ msgstr "Người dùng có vai trò này được phép tạo/sửa giao dịch msgid "The value of {0} differs between Items {1} and {2}" msgstr "Giá trị của {0} khác nhau giữa các mặt hàng {1} và {2}" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "Giá trị {0} đã được gán cho một mặt hàng hiện có {1}." @@ -55580,7 +55592,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0} ({1}) phải bằng {2} ({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0} chứa các mặt hàng theo đơn giá." @@ -55588,7 +55600,7 @@ msgstr "{0} chứa các mặt hàng theo đơn giá." msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "Tiền tố {0} '{1}' đã tồn tại. Vui lòng thay đổi Dãy số Serial No, nếu không bạn sẽ gặp lỗi Mục trùng lặp." -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "{0} {1} đã được tạo thành công" @@ -55596,6 +55608,10 @@ msgstr "{0} {1} đã được tạo thành công" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0} {1} không khớp với {0} {2} trong {3} {4}" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} được sử dụng để tính chi phí định giá cho thành phẩm {2}." @@ -55604,7 +55620,7 @@ msgstr "{0} {1} được sử dụng để tính chi phí định giá cho thàn msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "Sau đó, các Quy tắc giá được lọc 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, Chiến dịch, Đối tác bán hàng, v.v." -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "Có các bảo trì hoặc sửa chữa đang hoạt động đối với tài sản này. Bạn phải hoàn thành tất cả trước khi hủy tài sản." @@ -55616,7 +55632,7 @@ msgstr "Có sự không nhất quán giữa tỷ giá, số cổ phần và số msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "Có các bút toán trên tài khoản này. Thay đổi {0} thành không-{1} trong hệ thống đang chạy sẽ gây ra kết quả không chính xác trong báo cáo 'Tài khoản {2}'" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "Không có giao dịch thất bại" @@ -55633,6 +55649,10 @@ msgstr "Không có Năm tài chính hoạt động nào để tạo Dữ liệu msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "Không có chỗ trống vào ngày này" @@ -55649,10 +55669,6 @@ msgstr "Có hai tùy chọn để duy trì định giá hàng tồn kho. FIFO (n msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "Không có biến thể mặt hàng nào cho mặt hàng đã chọn" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "Có thể có nhiều hệ số thu thập theo cấp dựa trên tổng chi tiêu. Nhưng hệ số chuyển đổi để đổi thưởng sẽ luôn giống nhau cho tất cả các cấp." @@ -55681,21 +55697,21 @@ msgstr "Không tìm thấy lô nào cho {0}: {1}" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "Phải có ít nhất 1 Thành phẩm trong Phiếu kho này" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "Đã xảy ra lỗi khi tạo Tài khoản ngân hàng trong khi liên kết với Plaid." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "Đã xảy ra lỗi khi đồng bộ giao dịch." -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "Đã xảy ra lỗi khi cập nhật Tài khoản ngân hàng {} trong khi liên kết với Plaid." +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55745,15 +55761,19 @@ msgstr "Tóm tắt Tháng này" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "Đơn mua hàng này đã được giao hoàn toàn cho bên thứ ba." -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "�ơn đặt hàng này đã được giao hoàn toàn cho bên thứ ba." @@ -55775,7 +55795,7 @@ msgstr "Hành động này sẽ hủy liên kết tài khoản này khỏi bất msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "Danh mục tài sản này được đánh dấu là không khấu hao. Vui lòng tắt tính toán khấu hao hoặc chọn một danh mục khác." @@ -55793,7 +55813,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "Điều này bao gồm tất cả các thẻ điểm gắn với Cài đặt này" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "Tài liệu này vượt quá giới hạn {0} {1} cho mặt hàng {4}. Bạn đang tạo một {3} khác đối với cùng một {2}?" @@ -55935,7 +55955,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "Bộ lọc mặt hàng này đã được áp dụng cho {0}" @@ -55999,7 +56019,7 @@ msgstr "Lịch trình này được tạo khi Tài sản {0} được trả lạ msgid "This schedule was created when Asset {0} was scrapped." msgstr "Lịch trình này được tạo khi Tài sản {0} bị thanh lý." -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "Lịch trình này được tạo khi Tài sản {0} được {1} thành Tài sản mới {2}." @@ -56026,10 +56046,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "Phần này cho phép người dùng đặt văn bản Nội dung và Kết thúc của Thư đòi nợ cho Loại đòi nợ dựa trên ngôn ngữ, có thể được sử dụng trong In." #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56087,8 +56107,8 @@ msgid "This will restrict user access to other employee records" msgstr "Điều này sẽ hạn chế quyền truy cập của người dùng vào hồ sơ nhân viên khác" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "{} này sẽ được coi là chuyển vật liệu." +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56216,6 +56236,12 @@ msgstr "Thời gian(tính bằng phút)" msgid "Timeline" msgstr "" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56502,8 +56528,8 @@ msgid "To Time" msgstr "Đến giờ" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "Đến giờ không thể trước ngày bắt đầu" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56533,15 +56559,15 @@ msgstr "Để thêm Các hoạt động, hãy đánh dấu hộp kiểm 'Có ho msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "Để thêm nguyên vật liệu thô của mặt hàng gia công nếu bao gồm các mục khai thác bị tắt." -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "Để cho phép thanh toán vượt quá, hãy cập nhật \"Cho phép thanh toán vượt\" trong Cài đặt tài khoản hoặc mặt hàng." -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "Để cho phép nhận/giao vượt quá, hãy cập nhật \"Cho phép nhận/giao vượt\" trong Cài đặt kho hoặc mặt hàng." @@ -56558,8 +56584,8 @@ msgid "To be Delivered to Customer" msgstr "Cần giao cho khách hàng" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "Để hủy {} bạn cần hủy Mục đóng POS {}." +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56570,8 +56596,8 @@ msgid "To create a Payment Request reference document is required" msgstr "Để tạo Yêu cầu thanh toán, cần có tài liệu tham chiếu" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "Để kích hoạt Công việc Vốn trong Kế toán Tiến độ," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56583,8 +56609,8 @@ msgstr "Để bao gồm các mặt hàng không tồn kho trong kế hoạch yê msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "Để bao gồm chi phí cụm con và các mặt hàng phụ trong Thành phẩm trên lệnh sản xuất mà không cần sử dụng thẻ công việc, khi tùy chọn 'Sử dụng Định mức đa cấp' được bật." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "Để bao gồm thuế trong hàng {0} trong đơn giá mặt hàng, thuế trong các hàng {1} cũng phải được bao gồm" @@ -56604,7 +56630,7 @@ msgstr "Để ghi đè điều này, hãy bật '{0}' trong công ty {1}" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "Để tiếp tục chỉnh sửa Giá trị thuộc tính này, hãy bật {0} trong Cài đặt Biến thể mặt hàng." @@ -56621,10 +56647,12 @@ msgstr "Để gửi hóa đơn mà không có phiếu nhận hàng mua, vui lòn msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "Để sử dụng sổ tài chính khác, vui lòng bỏ đánh dấu 'Bao gồm tài sản FB mặc định'" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "Để sử dụng sổ tài chính khác, vui lòng bỏ đánh dấu 'Bao gồm các mục FB mặc định'" @@ -56703,8 +56731,8 @@ msgstr "Torr" msgid "Total (Company Currency)" msgstr "Tổng (Tiền tệ công ty)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "Tổng (Có)" @@ -56746,6 +56774,22 @@ msgstr "Tổng chi phí bổ sung" msgid "Total Advance" msgstr "Tổng tạm ứng" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56793,11 +56837,11 @@ msgstr "Tổng số tiền phải trả" msgid "Total Amount in Words" msgstr "Tổng số tiền bằng chữ" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "Tổng các khoản phí áp dụng trong bảng các mục Phiếu nhận hàng mua phải giống với Tổng thuế và phí" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "Tổng tài sản" @@ -56979,7 +57023,7 @@ msgstr "Tổng số tiền đã giao" msgid "Total Demand (Past Data)" msgstr "Tổng nhu cầu (Dữ liệu quá khứ)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "Tổng vốn chủ sở hữu" @@ -56988,11 +57032,11 @@ msgstr "Tổng vốn chủ sở hữu" msgid "Total Estimated Distance" msgstr "Tổng khoảng cách ước tính" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "Tổng chi phí" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "Tổng chi phí năm nay" @@ -57030,11 +57074,11 @@ msgstr "Tổng thời gian giữ" msgid "Total Holidays" msgstr "Tổng ngày lễ" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "Tổng thu nhập" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "Tổng thu nhập năm nay" @@ -57077,7 +57121,7 @@ msgstr "Tổng chi phí đã đáp tàu (Tiền tệ công ty)" msgid "Total Ledgers" msgstr "Tổng sổ cái" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "Tổng nợ phải trả" @@ -57392,7 +57436,7 @@ msgstr "Tổng số thuế và phí" msgid "Total Taxes and Charges (Company Currency)" msgstr "Tổng số thuế và phí (Tiền tệ công ty)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "Tổng thời gian (tính bằng phút)" @@ -57401,7 +57445,11 @@ msgstr "Tổng thời gian (tính bằng phút)" msgid "Total Time in Mins" msgstr "Tổng thời gian tính bằng phút" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "Tổng chưa thanh toán: {0}" @@ -57480,7 +57528,7 @@ msgstr "Tổng thời gian máy trạm (Tính bằng giờ)" msgid "Total allocated percentage for sales team should be 100" msgstr "Tổng phần trăm phân bổ cho nhóm bán hàng phải bằng 100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "Tổng phần trăm đóng góp phải bằng 100" @@ -57498,8 +57546,8 @@ msgstr "Tổng số giờ: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "Tổng số tiền thanh toán không thể lớn hơn {}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57516,9 +57564,9 @@ msgstr "Tổng số lượng trong lịch giao hàng không thể lớn hơn s msgid "Total {0} ({1})" msgstr "Tổng {0} ({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "Tổng {0} cho tất cả các mặt hàng là zero, có thể bạn nên thay đổi 'Phân bổ phí dựa trên'" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57606,27 +57654,11 @@ msgstr "Thông tin trạng thái theo dõi" msgid "Tracking URL" msgstr "URL theo dõi" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "Giao dịch" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "Tiền tệ giao dịch" @@ -57679,11 +57711,11 @@ msgstr "Mục hồ sơ xóa giao dịch" msgid "Transaction Deletion Record To Delete" msgstr "Xóa hồ sơ giao dịch" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "Hồ sơ xóa giao dịch {0} đang chạy. {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "Hồ sơ xóa giao dịch {0} hiện đang xóa {1}. Không thể lưu tài liệu cho đến khi xóa xong." @@ -58073,6 +58105,10 @@ msgstr "Số dư dùng thử (Đơn giản)" msgid "Trial Balance for Party" msgstr "Số dư dùng thử cho đối tác" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58257,7 +58293,7 @@ msgstr "Cài đặt UAE VAT" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58279,7 +58315,7 @@ msgstr "Cài đặt UAE VAT" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58309,7 +58345,7 @@ msgstr "Cài đặt UAE VAT" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58373,7 +58409,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "Hệ số chuyển đổi Đơn vị đo" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "Hệ số chuyển đổi Đơn vị đo ({0} -> {1}) không tìm thấy cho mặt hàng: {2}" @@ -58447,7 +58483,7 @@ msgstr "Hủy đối soát" msgid "UnReconcile Allocations" msgstr "Hủy đối soát phân bổ" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "Không thể lấy chi tiết DocType. Vui lòng liên hệ quản trị hệ thống." @@ -58460,10 +58496,6 @@ msgstr "Không thể tìm thấy tỷ giá cho {0} đến {1} cho ngày chính { msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "Không thể tìm thấy tỷ giá cho {0} đến {1} cho ngày chính {2}. Vui lòng tạo một bản ghi tiền tệ bằng tay." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "Không thể tìm thấy điểm bắt đầu tại {0}. Bạn cần có điểm số đứng bao phủ từ 0 đến 100" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "Không thể tìm thấy khung thời gian trong {0} ngày tới cho hoạt động {1}. Vui lòng tăng 'Lập kế hoạch công suất cho (Ngày)' trong {2}." @@ -58488,7 +58520,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "Số tiền chưa phân bổ" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "Số lượng chưa gán" @@ -58500,8 +58532,10 @@ msgstr "Đơn hàng chưa xuất hóa đơn" msgid "Unblock Invoice" msgstr "Bỏ chặn hóa đơn" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58551,7 +58585,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "Mẫu dãy đặt tên không mong đợi" @@ -58574,7 +58608,7 @@ msgstr "" msgid "Unit Price" msgstr "Đơn giá" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "Đơn vị đo" @@ -58777,7 +58811,7 @@ msgstr "Đột xuất" msgid "Unsecured Loans" msgstr "Vay không có bảo đảm" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "Bỏ đặt Yêu cầu thanh toán đã khớp" @@ -58790,7 +58824,7 @@ msgstr "Chưa ký" msgid "Unsubscribe from this Email Digest" msgstr "Hủy đăng ký khỏi Email Digest này" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58934,7 +58968,7 @@ msgstr "Cập nhật tồn kho hiện tại" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -58998,7 +59032,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "Cập nhật giá mới nhất trong tất cả Định mức" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "Cập nhật kho phải được bật cho hóa đơn mua hàng {0}" @@ -59226,7 +59260,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "Sử dụng tỷ giá ngày giao dịch" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "Sử dụng tên khác với tên dự án trước đó" @@ -59315,6 +59349,10 @@ msgstr "Thời gian giải quyết của người dùng" msgid "User has not applied rule on the invoice {0}" msgstr "Người dùng đã không áp dụng quy tắc trên hóa đơn {0}" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "Người dùng {0} không tồn tại" @@ -59327,6 +59365,10 @@ msgstr "Người dùng {0} không có Hồ sơ POS mặc định. Kiểm tra M msgid "User {0} is already assigned to Employee {1}" msgstr "Người dùng {0} đã được gán cho Nhân viên {1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "Người dùng {0}: Đã xóa vai trò Tự phục vụ Nhân viên vì không có nhân viên được ánh xạ." @@ -59335,10 +59377,6 @@ msgstr "Người dùng {0}: Đã xóa vai trò Tự phục vụ Nhân viên vì msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "Người dùng {0}: Đã xóa vai trò Nhân viên vì không có nhân viên được ánh xạ." -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "Người dùng {} bị vô hiệu hóa. Vui lòng chọn người dùng/thu ngân hợp lệ" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59631,15 +59669,15 @@ msgstr "Tỷ giá định giá" msgid "Valuation Rate (In / Out)" msgstr "Tỷ giá định giá (Nhập / Xuất)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "Thiếu tỷ giá định giá" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "Tỷ giá định giá cho Mặt hàng {0}, là bắt buộc để thực hiện các bút toán kế toán cho {1} {2}." @@ -59647,7 +59685,7 @@ msgstr "Tỷ giá định giá cho Mặt hàng {0}, là bắt buộc để thự msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "Tỷ giá định giá là bắt buộc nếu nhập tồn kho đầu kỳ" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "Tỷ giá định giá là bắt buộc cho Mặt hàng {0} tại hàng {1}" @@ -59657,7 +59695,7 @@ msgstr "Tỷ giá định giá là bắt buộc cho Mặt hàng {0} tại hàng msgid "Valuation and Total" msgstr "Định giá và Tổng" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "Tỷ giá định giá cho các mặt hàng do khách hàng cung cấp đã được đặt thành không." @@ -59670,14 +59708,14 @@ msgstr "Tỷ giá định giá cho các mặt hàng do khách hàng cung cấp msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "Tỷ giá định giá cho mặt hàng theo Hóa đơn bán hàng (Chỉ cho các chuyển giao nội bộ)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "Các khoản phí loại định giá không thể được đánh dấu là Bao gồm" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "Các khoản phí loại định giá không thể được đánh dấu là Bao gồm" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59727,12 +59765,12 @@ msgstr "Đề xuất giá trị" msgid "Value Type" msgstr "Loại giá trị" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "Giá trị vào ngày" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "Giá trị cho Thuộc tính {0} phải nằm trong phạm vi từ {1} đến {2} theo gia số của {3} cho Mặt hàng {4}" @@ -59741,19 +59779,19 @@ msgstr "Giá trị cho Thuộc tính {0} phải nằm trong phạm vi từ {1} msgid "Value of Goods" msgstr "Giá trị hàng hóa" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "Giá trị tài sản vốn hóa mới" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "Giá trị mua mới" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "Giá trị tài sản thanh lý" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "Giá trị tài sản đã bán" @@ -60229,7 +60267,7 @@ msgstr "Tên phiếu thanh toán" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60257,7 +60295,7 @@ msgstr "Tên phiếu thanh toán" msgid "Voucher No" msgstr "Số chứng từ" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "Số chứng từ là bắt buộc" @@ -60269,7 +60307,7 @@ msgstr "Số lượng chứng từ" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "Loại phụ chứng từ" @@ -60301,7 +60339,7 @@ msgstr "Loại phụ chứng từ" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60508,7 +60546,7 @@ msgstr "Kho là bắt buộc" msgid "Warehouse is required to get producible FG Items" msgstr "Kho là bắt buộc để lấy các mặt hàng FG có thể sản xuất" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "Không tìm thấy kho đối với tài khoản {0}" @@ -60526,16 +60564,16 @@ msgstr "Độ tuổi và giá trị số dư mặt hàng theo kho" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "Kho {0} không thể bị xóa vì có số lượng cho mặt hàng {1}" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "Kho {0} không thuộc về Công ty {1}." -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "Kho {0} không thuộc về công ty {1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "Kho {0} không tồn tại" @@ -60656,7 +60694,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "Cảnh báo - Hàng {0}: Số giờ thanh toán nhiều hơn Số giờ thực tế" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "Cảnh báo về tồn kho âm" @@ -60676,7 +60714,7 @@ msgstr "Cảnh báo: {0} # {1} khác tồn tại đối với mục kho {2}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "Cảnh báo: Số lượng yêu cầu vật liệu ít hơn Số lượng đặt hàng tối thiểu" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "Cảnh báo: Số lượng vượt quá số lượng có thể sản xuất tối đa dựa trên số lượng nguyên vật liệu thô đã nhận thông qua Đơn hàng nội bộ gia công {0}." @@ -60830,10 +60868,6 @@ msgstr "Nhóm mặt hàng trang web" msgid "Website Specifications" msgstr "Thông số trang web" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -60979,7 +61013,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "Khi có nhiều thành phẩm ({0}) trong một mục kho Đóng gói lại, đơn giá cho tất cả thành phẩm phải được đặt thủ công. Để đặt giá thủ công, hãy bật hộp kiểm 'Đặt đơn giá thủ công' trong hàng thành phẩm tương ứng." @@ -61155,17 +61189,17 @@ msgstr "Đang thực hiện" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61204,7 +61238,7 @@ msgstr "Nguyên liệu tiêu hao đơn hàng công việc" msgid "Work Order Item" msgstr "Mục đơn hàng công việc" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61245,20 +61279,20 @@ msgstr "Tóm tắt đơn hàng công việc" msgid "Work Order Summary Report" msgstr "Báo cáo tóm tắt đơn hàng công việc" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "Không thể tạo đơn hàng công việc vì lý do sau:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "Không thể tạo đơn hàng công việc đối với mẫu vật tư" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "Đơn hàng công việc đã được {0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61279,7 +61313,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "Các đơn hàng công việc" @@ -61304,7 +61338,7 @@ msgstr "Đang thực hiện" msgid "Work-in-Progress Warehouse" msgstr "Kho dở dang" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "Kho dở dang là bắt buộc trước khi gửi" @@ -61357,7 +61391,7 @@ msgstr "Giờ làm việc" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61589,14 +61623,6 @@ msgstr "Tên năm" msgid "Year Start Date" msgstr "Ngày bắt đầu năm" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61611,8 +61637,8 @@ msgid "You are importing data for the code list:" msgstr "Bạn đang nhập dữ liệu cho danh sách mã:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "Bạn không được phép cập nhật theo các điều kiện đặt trong Quy trình {}." +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61631,8 +61657,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "Bạn đang chọn số lượng nhiều hơn mức yêu cầu cho vật tư {0}. Hãy kiểm tra xem có danh sách chọn nào khác được tạo cho đơn hàng bán {1} không." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "Bạn có thể thêm hóa đơn gốc {} theo cách thủ công để tiếp tục." +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61642,19 +61668,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "Bạn cũng có thể sao chép-dán liên kết này vào trình duyệt của bạn" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "Bạn cũng có thể đặt tài khoản CWIP mặc định trong Công ty {}" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "Bạn có thể thay đổi tài khoản gốc thành tài khoản Bảng cân đối kế toán hoặc chọn một tài khoản khác." -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "Bạn có thể định cấu hình các tài khoản khấu hao mặc định trong Công ty hoặc đặt các tài khoản yêu cầu trong các hàng sau:

                    " @@ -61676,8 +61698,8 @@ msgid "You can only select one mode of payment as default" msgstr "Bạn chỉ có thể chọn một phương thức thanh toán làm mặc định" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "Bạn có thể đổi tối đa {0}." +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61695,14 +61717,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "Bạn có thể sử dụng {0} để đối trừ với {1} sau." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "Bạn không thể thay đổi Thẻ công việc vì Đơn hàng công việc đã đóng." - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "Bạn không thể xử lý số serial {0} vì nó đã được sử dụng trong SABB {1}. {2} nếu bạn muốn nhập cùng một số serial nhiều lần thì hãy bật 'Cho phép Số Serial hiện có được Sản xuất/Nhận lại' trong {3}" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "Bạn không thể đổi Điểm Thưởng có giá trị lớn hơn Tổng số tiền." @@ -61711,17 +61725,17 @@ msgstr "Bạn không thể đổi Điểm Thưởng có giá trị lớn hơn T msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "Bạn không thể thay đổi tỷ giá nếu BOM được đề cập đối với bất kỳ vật tư nào." -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "Bạn không thể tạo {0} trong Kỳ kế toán đã đóng {1}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "Bạn không thể tạo hoặc hủy bất kỳ bút toán nào trong Kỳ kế toán đã đóng {0}" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "Bạn không thể tạo/sửa bất kỳ bút toán nào cho đến ngày này." +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61732,32 +61746,40 @@ msgid "You cannot delete Project Type 'External'" msgstr "Bạn không thể xóa Loại dự án 'Bên ngoài'" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "Bạn không thể chỉnh sửa nút gốc." +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "Bạn không thể bật cả hai cài đặt '{0}' và '{1}'." +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." -msgstr "Bạn không thể xuất ra các {0} sau vì chúng đã được giao, không hoạt động hoặc nằm ở kho khác." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." msgstr "Bạn không thể đổi nhiều hơn {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "Bạn không thể tính lại giá trị vật tư trước {}" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "Bạn không thể khởi động lại Đăng ký chưa bị hủy." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "Bạn không thể gửi đơn đặt hàng trống." +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61771,6 +61793,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "Bạn không thể {0} tài liệu này vì một Mục đóng kỳ khác {1} tồn tại sau {2}" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61781,8 +61807,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "Bạn không có quyền {} các mục trong {}." +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61808,11 +61834,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "Bạn có {} lỗi khi tạo hóa đơn mở đầu. Xem {} để biết thêm chi tiết" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "Bạn đã chọn các mục từ {0} {1}" @@ -61829,8 +61855,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "Bạn đã bật {0} và {1} trong {2}. Điều này có thể dẫn đến giá từ danh sách giá mặc định được chèn vào danh sách giá giao dịch." #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "Bạn đã nhập một Phiếu giao hàng trùng lặp ở hàng" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61844,19 +61870,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "Bạn phải bật tự động đặt hàng lại trong Cài đặt kho để duy trì mức đặt hàng lại." -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "Bạn có thay đổi chưa lưu. Bạn có muốn lưu hóa đơn không?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "Bạn phải chọn một khách hàng trước khi thêm một mặt hàng." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "Bạn cần hủy Mục đóng POS {} để có thể hủy tài liệu này." +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "Bạn đã chọn nhóm tài khoản {1} làm Tài khoản {2} ở hàng {0}. Vui lòng chọn một tài khoản duy nhất." @@ -61908,6 +61934,10 @@ msgstr "Mã bưu điện" msgid "Zero Balance" msgstr "Số dư bằng không" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "Không chịu thuế" @@ -61938,7 +61968,7 @@ msgstr "[Quan trọng] [ERPNext] Lỗi tự động sắp xếp lại" msgid "`Allow Negative rates for Items`" msgstr "`Cho phép tỷ giá âm cho vật tư`" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "sau" @@ -61958,7 +61988,7 @@ msgstr "là Tiêu đề" msgid "as a percentage of finished item quantity" msgstr "tính theo phần trăm số lượng vật tư hoàn thành" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "tính đến {0}" @@ -61974,10 +62004,6 @@ msgstr "dựa_trên" msgid "by {}" msgstr "bởi {}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "không thể lớn hơn 100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62032,8 +62058,8 @@ msgstr "exchangerate.host" msgid "fieldname" msgstr "tên_trường" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62113,14 +62139,10 @@ msgstr "trên 5" msgid "paid to" msgstr "đã thanh toán cho" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "Ứng dụng thanh toán chưa được cài đặt. Vui lòng cài đặt từ {0} hoặc {1}" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "Ứng dụng thanh toán chưa được cài đặt. Vui lòng cài đặt từ {} hoặc {}" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62134,7 +62156,7 @@ msgstr "Ứng dụng thanh toán chưa được cài đặt. Vui lòng cài đ msgid "per hour" msgstr "mỗi giờ" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "thực hiện một trong các mục sau:" @@ -62210,8 +62232,8 @@ msgstr "đã bán" msgid "subscription is already cancelled." msgstr "đăng ký đã bị hủy." -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "trường_tài_liệu_mục_tiêu" @@ -62274,10 +62296,6 @@ msgstr "thông qua Sửa chữa tài sản" msgid "via BOM Update Tool" msgstr "thông qua Công cụ cập nhật BOM" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "bạn phải chọn Tài khoản Công việc Dở dang Vốn trong bảng tài khoản" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0} '{1}' bị vô hiệu hóa" @@ -62290,7 +62308,7 @@ msgstr "{0} '{1}' không trong Năm tài chính {2}" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0} ({1}) không thể lớn hơn số lượng theo kế hoạch ({2}) trong Đơn hàng công việc {3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0} {1} đã gửi Tài sản. Hãy xóa Mục {2} khỏi bảng để tiếp tục." @@ -62310,7 +62328,7 @@ msgstr "{0} Ngân sách cho Tài khoản {1} đối với {2} {3} là {4}. Nó msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "{0} Ngân sách cho Tài khoản {1} đối với {2} {3} là {4}. Nó sẽ bị vượt quá bởi {5}." -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0} Mã giảm giá đã sử dụng là {1}. Số lượng cho phép đã hết" @@ -62318,11 +62336,6 @@ msgstr "{0} Mã giảm giá đã sử dụng là {1}. Số lượng cho phép đ msgid "{0} Digest" msgstr "{0} Tóm tắt" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} Số {1} đã được sử dụng trong {2} {3}" @@ -62404,10 +62417,18 @@ msgstr "{0} có thể là {1} hoặc {2}." msgid "{0} can not be negative" msgstr "{0} không thể âm" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "{0} không thể thay đổi khi có Mục mở đầu đang mở." +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0} không thể được sử dụng làm Trung tâm chi phí chính vì nó đã được sử dụng làm con trong Phân bổ trung tâm chi phí {1}" @@ -62423,7 +62444,7 @@ msgstr "{0} không thể bằng không" msgid "{0} created" msgstr "{0} đã được tạo" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "Việc tạo {0} cho các bản ghi sau sẽ bị bỏ qua." @@ -62465,7 +62486,7 @@ msgstr "{0} cho {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0} có phân bổ dựa trên Điều khoản thanh toán được bật. Hãy chọn Điều khoản thanh toán cho Hàng #{1} trong phần Tham chiếu thanh toán" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "{0} đã được sửa đổi sau khi bạn kéo nó. Vui lòng kéo lại." @@ -62473,6 +62494,10 @@ msgstr "{0} đã được sửa đổi sau khi bạn kéo nó. Vui lòng kéo l msgid "{0} has been submitted successfully" msgstr "{0} đã được gửi thành công" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0} giờ" @@ -62481,7 +62506,11 @@ msgstr "{0} giờ" msgid "{0} in row {1}" msgstr "{0} trong hàng {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "{0} là một bảng con và sẽ bị xóa tự động cùng với bảng gốc của nó" @@ -62495,7 +62524,7 @@ msgstr "{0} là Kích thước kế toán bắt buộc.
                    Vui lòng đặt gi msgid "{0} is added multiple times on rows: {1}" msgstr "{0} được thêm nhiều lần trên các hàng: {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0} đã chạy cho {1}" @@ -62503,7 +62532,7 @@ msgstr "{0} đã chạy cho {1}" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0} bị chặn nên giao dịch này không thể tiếp tục" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "{0} đang ở trạng thái Bản nháp. Hãy gửi trước khi tạo Tài sản." @@ -62516,11 +62545,11 @@ msgstr "{0} là bắt buộc đối với Mục {1}" msgid "{0} is mandatory for account {1}" msgstr "{0} là bắt buộc cho tài khoản {1}" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0} là bắt buộc. Có thể bản ghi Tỷ giá tiền tệ chưa được tạo cho {1} thành {2}" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0} là bắt buộc. Có thể bản ghi Tỷ giá tiền tệ chưa được tạo cho {1} thành {2}." @@ -62528,7 +62557,7 @@ msgstr "{0} là bắt buộc. Có thể bản ghi Tỷ giá tiền tệ chưa đ msgid "{0} is not a CSV file." msgstr "{0} không phải là tệp CSV." -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0} không phải là tài khoản ngân hàng của công ty" @@ -62544,7 +62573,7 @@ msgstr "{0} không phải là vật tư tồn kho" msgid "{0} is not a valid Accounting Dimension." msgstr "{0} không phải là Kích thước kế toán hợp lệ." -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0} không phải là Giá trị hợp lệ cho Thuộc tính {1} của Mục {2}." @@ -62560,17 +62589,17 @@ msgstr "{0} không được thêm vào bảng" msgid "{0} is not enabled in {1}" msgstr "{0} không được bật trong {1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} không chạy. Không thể kích hoạt sự kiện cho Tài liệu này" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0} không phải là nhà cung cấp mặc định cho bất kỳ vật tư nào." -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0} bị tạm ngưng cho đến {1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62620,7 +62649,7 @@ msgstr "Tham số {0} không hợp lệ" msgid "{0} payment entries can not be filtered by {1}" msgstr "Không thể lọc {0} mục thanh toán theo {1}" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "{0} số lượng của Mục {1} đang được nhận vào Kho {2} với công suất {3}." @@ -62633,7 +62662,7 @@ msgstr "{0} đến {1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "{0} đơn vị được giữ cho Mục {1} trong Kho {2}, vui lòng hủy giữ chúng để {3} Đối soát tồn kho." @@ -62649,16 +62678,16 @@ msgstr "{0} đơn vị của Mục {1} không có sẵn trong bất kỳ kho nà msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "{0} đơn vị của {1} được yêu cầu trong {2} với kích thước tồn kho: {3} vào {4} {5} để {6} hoàn thành giao dịch." -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "{0} đơn vị của {1} cần trong {2} vào {3} {4} để {5} hoàn thành giao dịch này." -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "{0} đơn vị của {1} cần trong {2} vào {3} {4} để hoàn thành giao dịch này." -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "{0} đơn vị của {1} cần trong {2} để hoàn thành giao dịch này." @@ -62666,7 +62695,7 @@ msgstr "{0} đơn vị của {1} cần trong {2} để hoàn thành giao dịch msgid "{0} until {1}" msgstr "{0} cho đến {1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "{0} số serial hợp lệ cho Mục {1}" @@ -62674,7 +62703,7 @@ msgstr "{0} số serial hợp lệ cho Mục {1}" msgid "{0} variants created." msgstr "{0} biến thể đã được tạo." -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "Chế độ xem {0} hiện không được hỗ trợ trong Báo cáo tài chính tùy chỉnh." @@ -62708,7 +62737,7 @@ msgstr "{0} {1} đã được tạo" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1} không tồn tại" @@ -62742,12 +62771,21 @@ msgstr "{0} {1} được phân bổ hai lần trong Giao dịch ngân hàng này msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0} {1} đã được liên kết với Mã chung {2}." +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "{0} {1} được liên kết với {2}, nhưng Tài khoản bên liên quan là {3}" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1} bị hủy hoặc đóng" @@ -62779,6 +62817,10 @@ msgstr "{0} {1} đã được lập hóa đơn đầy đủ" msgid "{0} {1} is not active" msgstr "{0} {1} không hoạt động" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1} không được liên kết với {2} {3}" @@ -62884,27 +62926,23 @@ msgstr "{0}% của tổng giá trị hóa đơn sẽ được giảm giá." msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{0} của {1} không thể sau Ngày kết thúc dự kiến của {2}." -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0}, hãy hoàn thành thao tác {1} trước thao tác {2}." - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "{0}: Bảng con (tự động xóa với bảng gốc)" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "{0}: Không tìm thấy" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "{0}: DocType được bảo vệ" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "{0}: DocType ảo (không có bảng cơ sở dữ liệu)" @@ -62920,7 +62958,7 @@ msgstr "{0}: {1} không tồn tại" msgid "{0}: {1} is a group account." msgstr "{0}: {1} là một tài khoản nhóm." -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}: {1} phải nhỏ hơn {2}" @@ -62932,7 +62970,7 @@ msgstr "{count} Tài sản đã được tạo cho {item_code}" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype} {name} bị hủy hoặc đóng." -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "Cỡ mẫu ({sample_size}) của {item_name} không thể lớn hơn Số lượng chấp nhận ({accepted_quantity})" @@ -62944,32 +62982,7 @@ msgstr "{ref_doctype} {ref_name} trạng thái là {status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "{} không thể hủy vì Điểm Thưởng đã được đổi. Hãy hủy {} số {} trước" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{} đã gửi các tài sản liên kết. Bạn cần hủy các tài sản để tạo trả hàng mua." - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} hóa đơn" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{} là một công ty con." - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} đã được liên kết với {} khác" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} đã được liên kết với {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {} không ảnh hưởng đến tài khoản ngân hàng {}" - diff --git a/erpnext/locale/zh.po b/erpnext/locale/zh.po index 63892dc786e..304bd58d987 100644 --- a/erpnext/locale/zh.po +++ b/erpnext/locale/zh.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" -"POT-Creation-Date: 2026-06-21 10:42+0000\n" -"PO-Revision-Date: 2026-06-21 19:03\n" +"POT-Creation-Date: 2026-06-28 10:20+0000\n" +"PO-Revision-Date: 2026-06-28 20:03\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -18,15 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 46\n" "Language: zh_CN\n" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591 -msgid "\n" -"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n" -"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n" -"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed.\n" -"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n" -"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" - #. Label of the column_break_32 (Column Break) field in DocType 'Email Digest' #: erpnext/setup/doctype/email_digest/email_digest.json msgid " " @@ -111,11 +102,11 @@ msgstr "已有关联的固定资产记录,不能取消勾选允许资产" msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\"" msgstr "\"SN-01::10\" 表示从 \"SN-01\" 到 \"SN-10\"" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:151 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:157 msgid "# In Stock" msgstr "有库存物料个数" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:144 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:150 msgid "# Req'd Items" msgstr "物料个数" @@ -277,8 +268,8 @@ msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'" msgstr "允许针对客户采购订单创建多张销售订单" #: erpnext/controllers/trends.py:62 -msgid "'Based On' and 'Group By' can not be same" -msgstr "“根据”和“分组依据”不能相同" +msgid "'Based On' and 'Group By' can not be the same" +msgstr "" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -303,20 +294,20 @@ msgid "'From Date' must be after 'To Date'" msgstr "“开始日期”必须早于'终止日期'" #: erpnext/stock/doctype/item/item.py:466 -msgid "'Has Serial No' can not be 'Yes' for non-stock item" -msgstr "不能为非库存物料勾选'启用序列号管理'" +msgid "'Has Serial No' cannot be 'Yes' for non-stock item" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 -msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI" -msgstr "物料{0}已禁用'发货前需质检',无需创建质量检验单" +msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 -msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI" -msgstr "物料{0}已禁用'采购前需质检',无需创建质量检验单" +msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" +msgstr "" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 -#: erpnext/stock/report/stock_ledger/stock_ledger.py:830 +#: erpnext/stock/report/stock_ledger/stock_ledger.py:832 msgid "'Opening'" msgstr "'期初'" @@ -326,13 +317,13 @@ msgstr "'期初'" msgid "'To Date' is required" msgstr "“结束日期”必需设置" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:95 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:93 msgid "'To Package No.' cannot be less than 'From Package No.'" msgstr "'至包装号'不能小于'自包装号'" #: erpnext/controllers/sales_and_purchase_return.py:80 -msgid "'Update Stock' can not be checked because items are not delivered via {0}" -msgstr "因为退货源单{0}未勾选“更新库存“,退货/退款单也不能勾选“更新库存“" +msgid "'Update Stock' cannot be checked because items are not delivered via {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -617,7 +608,7 @@ msgstr "90天以上" msgid "<0" msgstr "<0" -#: erpnext/assets/doctype/asset/asset.py:544 +#: erpnext/assets/doctype/asset/asset.py:546 msgid "Cannot create asset.

                    You're trying to create {0} asset(s) from {2} {3}.
                    However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}." msgstr "" @@ -822,17 +813,17 @@ msgid "
                  • Payment document required for row(s): {0}
                  • " msgstr "
                  • 以下行{0}需要付款凭证:
                  • " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:165 -#: erpnext/utilities/bulk_transaction.py:37 -msgid "
                  • {}
                  • " -msgstr "
                  • {}
                  • " +#: erpnext/utilities/bulk_transaction.py:33 +msgid "
                  • {0}
                  • " +msgstr "
                  • {0}
                  • " #: erpnext/accounts/services/billing_validation.py:136 msgid "

                    Cannot overbill for the following Items:

                    " msgstr "

                    以下物料不允许超额开票:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 -msgid "

                    Following {0}s doesn't belong to Company {1} :

                    " -msgstr "

                    以下{0}不属于公司{1}:

                    " +msgid "

                    Following {0}s do not belong to Company {1}:

                    " +msgstr "" #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1051,9 +1042,9 @@ msgstr "A - B" msgid "A - C" msgstr "A - C" -#: erpnext/selling/doctype/customer/customer.py:355 -msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group" -msgstr "同名的客户组已经存在,请更改客户姓名或重命名该客户组" +#: erpnext/selling/doctype/customer/customer.py:358 +msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1063,9 +1054,9 @@ msgstr "可添加假日清单以排除工作站的特定日期计算" msgid "A Lead requires either a person's name or an organization's name" msgstr "个人姓名或机构名称是线索的必填信息" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:84 -msgid "A Packing Slip can only be created for Draft Delivery Note." -msgstr "装箱单仅可为草稿状态的交货单创建" +#: erpnext/stock/doctype/packing_slip/packing_slip.py:83 +msgid "A Packing Slip can only be created for a Draft Delivery Note." +msgstr "" #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1081,7 +1072,7 @@ msgstr "代表一组物料的销售价,采购价" msgid "A Product or a Service that is bought, sold or kept in stock." msgstr "可采购,销售或作为存货的产品或服务。" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:600 msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now" msgstr "对账任务{0}正在使用相同筛选条件运行,当前无法对账" @@ -1114,7 +1105,7 @@ msgstr "必须设置驾驶员才能提交" msgid "A logical Warehouse against which stock entries are made." msgstr "创建物料移动所依赖的逻辑仓库。" -#: erpnext/stock/serial_batch_bundle.py:1489 +#: erpnext/stock/serial_batch_bundle.py:1491 msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}." msgstr "" @@ -1290,7 +1281,7 @@ msgid "Accepted Qty in Stock UOM" msgstr "收货数量(库存单位)" #. Label of the qty (Float) field in DocType 'Purchase Receipt Item' -#: erpnext/public/js/controllers/transaction.js:2873 +#: erpnext/public/js/controllers/transaction.js:2941 #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json msgid "Accepted Quantity" msgstr "收货数量" @@ -1321,12 +1312,16 @@ msgstr "访问密钥" msgid "Access Key is required for Service Provider: {0}" msgstr "服务商{0}必须提供访问密钥" +#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 +msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." +msgstr "" + #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010" msgstr "依据CEFACT/ICG/2010/IC013或IC010标准" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:903 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:904 msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry." msgstr "根据物料清单{0},库存交易缺少物料'{1}'" @@ -1579,7 +1574,7 @@ msgstr "请输入科目以获取收付款凭证" msgid "Account is required" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:913 +#: erpnext/assets/doctype/asset/asset.py:915 msgid "Account not Found" msgstr "未找到科目" @@ -1709,11 +1704,11 @@ msgstr "{0}是在建工程科目,不能通过日记账凭证更新" msgid "Account: {0} can only be updated via Stock Transactions" msgstr "科目{0}只能通过库存相关业务更新" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2455 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2453 msgid "Account: {0} is not permitted under Payment Entry" msgstr "收付款凭证中不能使用科目{0}" -#: erpnext/accounts/services/taxes.py:333 +#: erpnext/accounts/services/taxes.py:334 msgid "Account: {0} with currency: {1} can not be selected" msgstr "科目:{0}货币:{1}不能选择" @@ -1992,8 +1987,8 @@ msgstr "辅助核算过滤条件" msgid "Accounting Entries" msgstr "会计分录" -#: erpnext/assets/doctype/asset/asset.py:947 -#: erpnext/assets/doctype/asset/asset.py:962 +#: erpnext/assets/doctype/asset/asset.py:949 +#: erpnext/assets/doctype/asset/asset.py:964 #: erpnext/assets/doctype/asset_capitalization/services/gl_composer.py:154 msgid "Accounting Entry for Asset" msgstr "资产会计分录" @@ -2018,8 +2013,8 @@ msgstr "服务会计凭证" #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:283 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:310 #: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:425 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:655 -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:676 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:658 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:679 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:407 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:88 #: erpnext/stock/doctype/stock_entry/services/gl_composer.py:102 @@ -2067,7 +2062,11 @@ msgstr "" msgid "Accounting Period" msgstr "会计期间" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:64 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 +msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." +msgstr "" + +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" msgstr "会计期间与{0}重叠" @@ -2265,8 +2264,8 @@ msgstr "累计折旧科目" msgid "Accumulated Depreciation Amount" msgstr "累计折旧额" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 msgid "Accumulated Depreciation as on" msgstr "累计折旧" @@ -2494,7 +2493,7 @@ msgstr "实际结存数量" msgid "Actual Batch Quantity" msgstr "实际批号数量" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:102 msgid "Actual Cost" msgstr "实际成本" @@ -2504,7 +2503,7 @@ msgstr "实际成本" msgid "Actual Date" msgstr "实际日期" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:122 #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66 msgid "Actual Delivery Date" @@ -2654,8 +2653,8 @@ msgstr "实际工时(通过工时表)" msgid "Actual qty in stock" msgstr "实际库存数量" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529 -#: erpnext/public/js/controllers/accounts.js:197 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1538 +#: erpnext/public/js/controllers/accounts.js:194 msgid "Actual type tax cannot be included in Item rate in row {0}" msgstr "实际税额不能包含在第{0}行的物料单价中" @@ -2820,10 +2819,6 @@ msgstr "添加序列号/批号" msgid "Add Serial / Batch No (Rejected Qty)" msgstr "添加序列号/批号(拒收数量)" -#: erpnext/public/js/utils/naming_series.js:26 -msgid "Add Series Prefix" -msgstr "" - #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200 msgid "Add Stock" msgstr "添加库存" @@ -2922,13 +2917,13 @@ msgstr "添加人" msgid "Added On" msgstr "反馈日期" -#: erpnext/buying/doctype/supplier/supplier.py:134 +#: erpnext/buying/doctype/supplier/supplier.py:135 msgid "Added Supplier Role to User {0}." msgstr "已为用户{0}添加供应商角色" #: erpnext/controllers/website_list_for_contact.py:311 -msgid "Added {1} Role to User {0}." -msgstr "已为用户{0}添加{1}角色" +msgid "Added {1} role to user {0}." +msgstr "" #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3070,7 +3065,7 @@ msgstr "额外折扣金额" msgid "Additional Discount Amount (Company Currency)" msgstr "额外折扣金额(本币)" -#: erpnext/controllers/taxes_and_totals.py:846 +#: erpnext/controllers/taxes_and_totals.py:848 msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})" msgstr "" @@ -3189,12 +3184,8 @@ msgid "Additional Transferred Qty" msgstr "额外调拨数量" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 -msgid "Additional Transferred Qty {0}\n" -"\t\t\t\t\tcannot be greater than {1}.\n" -"\t\t\t\t\tTo fix this, increase the percentage value\n" -"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n" -"\t\t\t\t\tin Manufacturing Settings." -msgstr "额外调拨数量{0}不得超过{1}。要修复此问题,请提高制造设置中“调拨额外原材料至在制品”字段的百分比值。" +msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3458,7 +3449,7 @@ msgstr "预付款凭证类型" msgid "Advance amount" msgstr "预付金额" -#: erpnext/controllers/taxes_and_totals.py:983 +#: erpnext/controllers/taxes_and_totals.py:985 msgid "Advance amount cannot be greater than {0} {1}" msgstr "预付金额不能大于{0} {1}" @@ -3527,7 +3518,7 @@ msgstr "对方科目" #: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json #: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42 #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95 -#: erpnext/accounts/report/general_ledger/general_ledger.py:773 +#: erpnext/accounts/report/general_ledger/general_ledger.py:774 msgid "Against Account" msgstr "对方科目" @@ -3647,7 +3638,7 @@ msgstr "对应供应商发票{0}" #. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:806 +#: erpnext/accounts/report/general_ledger/general_ledger.py:807 msgid "Against Voucher" msgstr "对销凭证" @@ -3671,7 +3662,7 @@ msgstr "对销凭证号" #: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:804 +#: erpnext/accounts/report/general_ledger/general_ledger.py:805 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:183 msgid "Against Voucher Type" msgstr "对销凭证类型" @@ -3785,6 +3776,13 @@ msgstr "航空公司" msgid "Algorithm" msgstr "算法" +#. Label of the alias (Data) field in DocType 'Supplier' +#. Label of the alias (Data) field in DocType 'Customer' +#: erpnext/buying/doctype/supplier/supplier.json +#: erpnext/selling/doctype/customer/customer.json +msgid "Alias" +msgstr "" + #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:171 @@ -3961,7 +3959,7 @@ msgstr "" msgid "All items are already requested" msgstr "所有物料已申请" -#: erpnext/stock/doctype/purchase_receipt/mapper.py:74 +#: erpnext/stock/doctype/purchase_receipt/mapper.py:73 msgid "All items have already been Invoiced/Returned" msgstr "所有物料已开具发票/退回" @@ -3973,7 +3971,7 @@ msgstr "所有物料已收货" msgid "All items have already been transferred for this Work Order." msgstr "所有物料已发料到该生产工单。" -#: erpnext/public/js/controllers/transaction.js:3002 +#: erpnext/public/js/controllers/transaction.js:3070 msgid "All items in this document already have a linked Quality Inspection." msgstr "本单据所有物料均已关联质检单" @@ -3992,16 +3990,16 @@ msgid "All the Comments and Emails will be copied from one document to another n msgstr "在CRM文档流转(线索->商机->报价)过程中,所有评论和邮件将被复制到新创建文档" #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 -msgid "All the items have been already returned." -msgstr "所有物料已退回" +msgid "All the items have already been returned." +msgstr "" #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." msgstr "所需物料(原材料)将从BOM提取并填充本表,可修改物料的源仓库,生产过程中可在此追踪原材料转移" -#: erpnext/stock/doctype/delivery_note/mapper.py:83 -msgid "All these items have already been Invoiced/Returned" -msgstr "所有物料已经开票/被退货" +#: erpnext/stock/doctype/delivery_note/mapper.py:82 +msgid "All these items have already been invoiced/returned" +msgstr "" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4024,7 +4022,7 @@ msgstr "自动分配预付(先进先出)" msgid "Allocate Full Amount to Stock Items" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:928 msgid "Allocate Payment Amount" msgstr "分配付款金额" @@ -4034,7 +4032,7 @@ msgstr "分配付款金额" msgid "Allocate Payment Based On Payment Terms" msgstr "基于付款条款分配付款金额" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1728 msgid "Allocate Payment Request" msgstr "分配付款请求" @@ -4064,7 +4062,7 @@ msgstr "已分配" #. Payment Entries' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json #: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json #: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json #: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json @@ -4147,8 +4145,8 @@ msgid "Allow Alternative Item" msgstr "允许替代物料" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 -msgid "Allow Alternative Item must be checked on Item {}" -msgstr "必须在物料{}上勾选'允许替代物料'" +msgid "Allow Alternative Item must be checked on Item {0}" +msgstr "" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4255,7 +4253,7 @@ msgstr "" #. Label of the allow_rename_attribute_value (Check) field in DocType 'Item #. Variant Settings' -#: erpnext/controllers/item_variant.py:211 +#: erpnext/controllers/item_variant.py:210 #: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json msgid "Allow Rename Attribute Value" msgstr "允许重命名属性值" @@ -4536,14 +4534,16 @@ msgstr "可交易物料" msgid "Allowed To Transact With" msgstr "允许交易" +#. Label of the allowed_users (Table MultiSelect) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Allowed Users" +msgstr "" + #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." msgstr "主角色仅限'客户'与'供应商',请选择其中一种" -#: erpnext/public/js/utils/naming_series.js:81 -msgid "Allowed special characters are '/' and '-'" -msgstr "" - #. Label of the companies (Table) field in DocType 'Supplier' #. Label of the companies (Table) field in DocType 'Customer' #: erpnext/buying/doctype/supplier/supplier.json @@ -4576,10 +4576,10 @@ msgid "Allows users to submit Supplier Quotations with zero quantity. Useful whe msgstr "允许用户提交零数量供应商报价,适用于费率固定但数量未定的场景(如:费率合同)。" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "Already Imported" msgstr "" @@ -4587,10 +4587,6 @@ msgstr "" msgid "Already Picked" msgstr "已经拣货" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 -msgid "Already record exists for the item {0}" -msgstr "物料{0}已存在" - #: erpnext/accounts/doctype/pos_profile/pos_profile.py:140 msgid "Already set default in pos profile {0} for user {1}, kindly disabled default" msgstr "已经在用户{1}的pos配置文件{0}中设置了默认值,请禁用默认值" @@ -4606,12 +4602,12 @@ msgstr "" #: erpnext/manufacturing/doctype/bom/bom.js:291 #: erpnext/manufacturing/doctype/work_order/work_order.js:158 #: erpnext/manufacturing/doctype/work_order/work_order.js:173 -#: erpnext/public/js/utils.js:587 +#: erpnext/public/js/utils.js:604 #: erpnext/stock/doctype/stock_entry/stock_entry.js:339 msgid "Alternate Item" msgstr "替代物料" -#: erpnext/stock/report/item_where_used/item_where_used.py:427 +#: erpnext/stock/report/item_where_used/item_where_used.py:425 msgid "Alternative For Item" msgstr "" @@ -4816,7 +4812,7 @@ msgstr "始终询问" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/controllers/transaction.js:532 +#: erpnext/public/js/controllers/transaction.js:551 #: erpnext/selling/doctype/quotation/quotation.js:315 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -5042,12 +5038,12 @@ msgstr "物料组用于对物料进行分类" msgid "An email will be sent to notify the User with the role 'Purchase Manager' when an automatic Material Request is created." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:613 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:616 msgid "An error has been appeared while reposting item valuation via {0}" msgstr "通过 {0} 进行的物料成本价追溯调整出错了" #: erpnext/public/js/controllers/buying.js:378 -#: erpnext/public/js/utils/sales_common.js:489 +#: erpnext/public/js/utils/sales_common.js:495 msgid "An error occurred during the update process" msgstr "更新过程中发生错误" @@ -5261,7 +5257,7 @@ msgstr "已应用优惠码" msgid "Applied on each reading." msgstr "适用于每个读数" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:197 msgid "Applied putaway rules." msgstr "已应用上架规则" @@ -5438,10 +5434,6 @@ msgstr "预约时段" msgid "Appointment Confirmation" msgstr "预约确认" -#: erpnext/www/book_appointment/index.js:237 -msgid "Appointment Created Successfully" -msgstr "预约创建成功" - #. Label of the appointment_details_section (Section Break) field in DocType #. 'Appointment Booking Settings' #: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json @@ -5467,6 +5459,10 @@ msgstr "本站点已禁用预约排程" msgid "Appointment With" msgstr "预约人" +#: erpnext/www/book_appointment/index.js:237 +msgid "Appointment created successfully" +msgstr "" + #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" msgstr "已创建预约但未发现线索,请检查邮件确认" @@ -5508,6 +5504,15 @@ msgstr "" msgid "Are you sure you want to clear all demo data?" msgstr "确认清除所有演示数据?" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 +msgid "Are you sure you want to create Reposting Entries?" +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 +msgid "Are you sure you want to create a Reposting Entry?" +msgstr "" + #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" msgstr "确认删除此物料?" @@ -5590,18 +5595,18 @@ msgstr "由于字段{0}已启用,字段{1}值必须大于1" msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}." msgstr "由于存在针对物料{0}的已提交交易,不可修改{1}的值" -#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 -msgid "As there are reserved stock, you cannot disable {0}." -msgstr "存在预留库存时不可禁用{0}" - #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:87 msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}." msgstr "由于子装配件充足,仓库{0}无需工单" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:415 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:414 msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}." msgstr "因仓库 {0} 有足够库存,未生成物料需求。" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:250 +msgid "As there is reserved stock, you cannot disable {0}." +msgstr "" + #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 msgid "As {0} is enabled, you can not enable {1}." @@ -5640,7 +5645,7 @@ msgstr "装配件" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:136 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:810 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_activity/asset_activity.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -5712,7 +5717,7 @@ msgstr "资产资本化库存物料" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36 #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:192 #: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:800 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_category/asset_category.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json @@ -5878,7 +5883,7 @@ msgstr "资产移动明细项" #. Label of the asset_name (Data) field in DocType 'Asset Movement Item' #. Label of the asset_name (Read Only) field in DocType 'Asset Repair' #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:143 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:819 #: erpnext/assets/doctype/asset/asset.json #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json @@ -6010,7 +6015,7 @@ msgstr "固定资产价值分析" msgid "Asset cancelled" msgstr "资产已取消" -#: erpnext/assets/doctype/asset/asset.py:735 +#: erpnext/assets/doctype/asset/asset.py:737 msgid "Asset cannot be cancelled, as it is already {0}" msgstr "资产不能被取消,因为它已经是{0}" @@ -6026,7 +6031,7 @@ msgstr "资产资本化{0} 增加了资产价值" msgid "Asset created" msgstr "资产已创建" -#: erpnext/assets/doctype/asset/mapper.py:259 +#: erpnext/assets/doctype/asset/mapper.py:258 msgid "Asset created after being split from Asset {0}" msgstr "资产通过拆分自资产{0}创建" @@ -6079,7 +6084,7 @@ msgstr "资产已提交" msgid "Asset transferred to Location {0}" msgstr "资产已转到 {0}" -#: erpnext/assets/doctype/asset/mapper.py:268 +#: erpnext/assets/doctype/asset/mapper.py:267 msgid "Asset updated after being split into Asset {0}" msgstr "资产拆分更新为资产{0}" @@ -6157,7 +6162,7 @@ msgstr "提交资产价值调整{0}后更新资产价值" #. Title of a Workspace Sidebar #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json #: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:260 #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json #: erpnext/assets/doctype/asset_movement/asset_movement.json #: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json @@ -6178,7 +6183,7 @@ msgstr "未为{item_code}创建资产,请手动创建" msgid "Assets {assets_link} created for {item_code}" msgstr "已为{item_code}创建资产{assets_link}" -#: erpnext/manufacturing/doctype/job_card/job_card.js:711 +#: erpnext/manufacturing/doctype/job_card/job_card.js:712 msgid "Assign Job to Employee" msgstr "派工" @@ -6188,6 +6193,11 @@ msgstr "派工" msgid "Assign to Name" msgstr "执行人姓名" +#: erpnext/buying/doctype/purchase_order/purchase_order.js:593 +#: erpnext/public/js/controllers/buying.js:555 +msgid "Assigning {0} to {1} (row {2})" +msgstr "" + #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' #: erpnext/support/doctype/service_level_agreement/service_level_agreement.json @@ -6206,19 +6216,23 @@ msgstr "行{0}:物料{2}的拣货数量{1}超过仓库{5}批次{4}的可用库 msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}." msgstr "行{0}:物料{2}的拣货数量{1}超过仓库{4}的可用库存{3}" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1435 msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0" msgstr "" +#: erpnext/accounts/services/internal_transfer.py:98 +msgid "At Row {0}: The field {1} is mandatory for internal transfer" +msgstr "" + #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" msgstr "必须设置至少一个汇兑损益科目" -#: erpnext/assets/doctype/asset/mapper.py:169 +#: erpnext/assets/doctype/asset/mapper.py:168 msgid "At least one asset has to be selected." msgstr "必须选择至少一项资产" -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1043 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1042 msgid "At least one invoice has to be selected." msgstr "必须选择至少一张发票" @@ -6239,6 +6253,10 @@ msgstr "应选择至少一个适用模块" msgid "At least one of the Selling or Buying must be selected" msgstr "必须选择销售或采购至少一项" +#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 +msgid "At least one raw material for Finished Good Item {0} should be customer provided." +msgstr "" + #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" msgstr "" @@ -6259,7 +6277,7 @@ msgstr "行{0}:序列ID{1}不能小于前一行的序列ID{2}" msgid "At row #{0}: you have selected the Difference Account {1}..." msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1183 msgid "At row {0}: Batch No is mandatory for Item {1}" msgstr "行{0}:物料{1}必须填写批次号" @@ -6267,26 +6285,22 @@ msgstr "行{0}:物料{1}必须填写批次号" msgid "At row {0}: Parent Row No cannot be set for item {1}" msgstr "行{0}:物料{1}不能设置父行号" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1168 msgid "At row {0}: Qty is mandatory for the batch {1}" msgstr "行{0}:批次{1}的数量为必填项" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1175 msgid "At row {0}: Serial No is mandatory for Item {1}" msgstr "行{0}:物料{1}必须填写序列号" #: erpnext/stock/services/serial_batch_bundle_service.py:498 -msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields." -msgstr "第 {0} 行,序列号/批号已创建,请清空序列号或批号字段" +msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" msgstr "行{0}:请为物料{1}设置父行号" -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 -msgid "Atleast one raw material for Finished Good Item {0} should be customer provided." -msgstr "产成品物料{0}至少应有一种原材料由客户提供。" - #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Atmosphere" @@ -6498,7 +6512,7 @@ msgstr "请在{0}中勾选启用自动核销收付款" msgid "Auto Repeat Detail" msgstr "自动重复明细" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:202 msgid "Auto Tax Settings Error" msgstr "自动税务设置错误" @@ -6559,7 +6573,7 @@ msgid "Auto reconcile Payments" msgstr "" #: erpnext/public/js/controllers/buying.js:373 -#: erpnext/public/js/utils/sales_common.js:484 +#: erpnext/public/js/utils/sales_common.js:490 msgid "Auto repeat document updated" msgstr "自动重复单据已更新" @@ -6684,7 +6698,7 @@ msgstr "可用日期" #: erpnext/manufacturing/doctype/workstation/workstation.js:505 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175 -#: erpnext/public/js/utils.js:647 +#: erpnext/public/js/utils.js:664 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/report/stock_ageing/stock_ageing.py:216 @@ -6780,7 +6794,7 @@ msgstr "请输入启用日期" msgid "Available {0}" msgstr "可用{0}" -#: erpnext/assets/doctype/asset/asset.py:491 +#: erpnext/assets/doctype/asset/asset.py:493 msgid "Available-for-use Date should be after purchase date" msgstr "启用日应晚于采购日" @@ -6898,7 +6912,7 @@ msgstr "库位数量" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67 #: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:112 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:118 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1496 #: erpnext/stock/doctype/material_request/material_request.js:351 @@ -6917,8 +6931,8 @@ msgid "BOM 1" msgstr "物料清单1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 -msgid "BOM 1 {0} and BOM 2 {1} should not be same" -msgstr "物料清单1 {0} 与物料清单2 {0} 不能相同" +msgid "BOM 1 {0} and BOM 2 {1} should not be the same" +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -6932,7 +6946,7 @@ msgstr "物料清单2" msgid "BOM Comparison Tool" msgstr "物料清单比对工具" -#: erpnext/stock/report/item_where_used/item_where_used.py:178 +#: erpnext/stock/report/item_where_used/item_where_used.py:174 msgid "BOM Component" msgstr "" @@ -7063,7 +7077,7 @@ msgstr "BOM工序" msgid "BOM Operations Time" msgstr "工艺时间" -#: erpnext/stock/report/item_where_used/item_where_used.py:248 +#: erpnext/stock/report/item_where_used/item_where_used.py:244 msgid "BOM Output" msgstr "" @@ -7084,7 +7098,7 @@ msgstr "物料用途查询(用在哪个物料清单中)" #. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail' #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json -#: erpnext/stock/report/item_where_used/item_where_used.py:213 +#: erpnext/stock/report/item_where_used/item_where_used.py:209 msgid "BOM Secondary Item" msgstr "" @@ -7136,10 +7150,6 @@ msgstr "带任务状态的物料清单更新工具日志" msgid "BOM Updation already in progress. Please wait until {0} is complete." msgstr "物料清单更新正在进行中,请等待{0}完成" -#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 -msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress." -msgstr "物料清单更新已排队,可能需要几分钟,查看{0}了解进度" - #. Name of a report #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json msgid "BOM Variance Report" @@ -7178,15 +7188,19 @@ msgstr "物料清单嵌套: {0} 不能是 {1} 的下层" msgid "BOM recursion: {1} cannot be parent or child of {0}" msgstr "物料清单递归错误:{1}不能作为{0}的父项或子项" -#: erpnext/manufacturing/doctype/bom/bom.py:1401 +#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 +msgid "BOM update is queued and may take a few minutes. Check {0} for progress." +msgstr "" + +#: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" msgstr "BOM{0}不属于物料{1}" -#: erpnext/manufacturing/doctype/bom/bom.py:1396 +#: erpnext/manufacturing/doctype/bom/bom.py:1399 msgid "BOM {0} must be active" msgstr "BOM{0}必须处于生效状态" -#: erpnext/manufacturing/doctype/bom/bom.py:1399 +#: erpnext/manufacturing/doctype/bom/bom.py:1402 msgid "BOM {0} must be submitted" msgstr "BOM{0}未提交" @@ -7267,7 +7281,7 @@ msgstr "余额" msgid "Balance (Dr - Cr)" msgstr "结余(Dr - Cr)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:725 +#: erpnext/accounts/report/general_ledger/general_ledger.py:726 msgid "Balance ({0})" msgstr "余额({0})" @@ -7337,6 +7351,10 @@ msgstr "" msgid "Balance Sheet Summary" msgstr "资产负债表汇总" +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 +msgid "Balance Sheet requires {0} to be synced to DuckDB" +msgstr "" + #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" msgstr "库存结存数量" @@ -7397,7 +7415,7 @@ msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/account_balance/account_balance.js:39 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:94 #: erpnext/setup/doctype/employee/employee.json #: erpnext/workspace_sidebar/banking.json msgid "Bank" @@ -7497,8 +7515,8 @@ msgid "Bank Account Type" msgstr "银行户头类型" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 -msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}" -msgstr "银行交易{}中的银行账户{}与银行账户{}不匹配" +msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" +msgstr "" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -7742,7 +7760,7 @@ msgstr "银行交易{0}已更新" msgid "Bank Transactions" msgstr "" -#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584 +#: erpnext/setup/setup_wizard/operations/install_fixtures.py:585 msgid "Bank account cannot be named as {0}" msgstr "银行账户不能命名为{0}" @@ -7754,7 +7772,7 @@ msgstr "" msgid "Bank account debit for deposit" msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:144 msgid "Bank account {0} already exists and could not be created again" msgstr "银行账户{0}已存在,无法再次创建" @@ -7766,7 +7784,7 @@ msgstr "银行账户补充说" msgid "Bank statement imported." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:310 msgid "Bank transaction creation error" msgstr "银行交易创建错误" @@ -8042,8 +8060,8 @@ msgstr "" #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:120 -#: erpnext/public/js/controllers/transaction.js:2899 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115 +#: erpnext/public/js/controllers/transaction.js:2967 #: erpnext/public/js/utils/barcode_scanner.js:281 #: erpnext/public/js/utils/serial_no_batch_selector.js:450 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -8074,15 +8092,15 @@ msgstr "" msgid "Batch No" msgstr "批号" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1186 msgid "Batch No is mandatory" msgstr "批次号为必填项" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3493 -msgid "Batch No {0} does not exists" -msgstr "批次号{0}不存在" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 +msgid "Batch No {0} does not exist" +msgstr "" -#: erpnext/stock/utils.py:626 +#: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." msgstr "批号 {0} 关联的物料 {1} 启用了序列号,请扫序列号。" @@ -8090,6 +8108,10 @@ msgstr "批号 {0} 关联的物料 {1} 启用了序列号,请扫序列号。" msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}" msgstr "批次号{0}在原{1}{2}中不存在,因此不能针对{1}{2}退回" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 +msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" +msgstr "" + #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json msgid "Batch No." @@ -8155,9 +8177,9 @@ msgstr "计量单位" msgid "Batch and Serial No" msgstr "批次和序列号" -#: erpnext/manufacturing/doctype/work_order/work_order.py:746 -msgid "Batch not created for item {} since it does not have a batch series." -msgstr "未为物料{}创建批次,因其无批次编号规则" +#: erpnext/manufacturing/doctype/work_order/work_order.py:742 +msgid "Batch not created for item {0} since it does not have a batch series." +msgstr "" #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8269,7 +8291,7 @@ msgstr "" #. Label of a Link in the Manufacturing Workspace #. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry' #. Label of a Workspace Sidebar Item -#: erpnext/manufacturing/doctype/bom/bom.py:1156 +#: erpnext/manufacturing/doctype/bom/bom.py:1159 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.js:139 #: erpnext/stock/doctype/stock_entry/stock_entry.js:791 @@ -8744,8 +8766,8 @@ msgid "Booked Fixed Asset" msgstr "已入账固定资产" #: erpnext/accounts/services/gl_validator.py:143 -msgid "Books have been closed till the period ending on {0}" -msgstr "截止到 {0} 的会计记账已关闭" +msgid "Books have been closed until the period ending on {0}" +msgstr "" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -8972,8 +8994,8 @@ msgid "Budget cannot be assigned against Group Account {0}" msgstr "预算不能分派给组类科目{0}" #: erpnext/accounts/doctype/budget/budget.py:165 -msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account" -msgstr "预算案不能分配给科目{0},因为其不是收入或费用科目" +msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" +msgstr "" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -8990,7 +9012,7 @@ msgstr "缓冲时间" msgid "Buffered Cursor" msgstr "缓存游标" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:165 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:171 msgid "Build All?" msgstr "物料齐套?" @@ -8998,7 +9020,7 @@ msgstr "物料齐套?" msgid "Build Tree" msgstr "构建树形结构" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:158 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:164 msgid "Buildable Qty" msgstr "可生产数量" @@ -9325,6 +9347,10 @@ msgstr "银行对账单余额" msgid "Calculated Discount Mismatch" msgstr "计算折扣不匹配" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 +msgid "Calculating arrival times" +msgstr "" + #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json @@ -9496,7 +9522,7 @@ msgstr "" msgid "Can be approved by {0}" msgstr "可以被 {0} 批准" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1167 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1163 msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state." msgstr "无法关闭工单,因{0}张作业卡处于进行中状态" @@ -9525,21 +9551,24 @@ msgid "Can not filter based on Voucher No, if grouped by Voucher" msgstr "按凭证分类后不能根据凭证号过滤" #: erpnext/accounts/doctype/journal_entry/mapper.py:32 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2614 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2612 msgid "Can only make payment against unbilled {0}" msgstr "只能为未开票{0}付款" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 -#: erpnext/accounts/services/taxes.py:242 -#: erpnext/public/js/controllers/accounts.js:103 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1510 +#: erpnext/accounts/services/taxes.py:243 +#: erpnext/public/js/controllers/accounts.js:100 msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'" msgstr "仅在收费模式为“基于上一行金额”或“前一行的总计”才能参考(这一)行" #: erpnext/setup/doctype/company/company.py:217 -#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method" msgstr "有些物料未在物料主数据中维护成本计算方法且已关联物料凭证与会计凭证,考虑资料一致性此处成本计算方法不能被修改" +#: erpnext/stock/doctype/stock_settings/stock_settings.py:191 +msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" +msgstr "" + #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" msgstr "取消此保修申请之前请先取消维护巡修{0}" @@ -9568,7 +9597,7 @@ msgstr "" msgid "Cancelation Date" msgstr "取消日期" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1585 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1586 msgid "Cancelled Job Card cannot be processed." msgstr "" @@ -9576,11 +9605,6 @@ msgstr "" msgid "Cannot Assign Cashier" msgstr "无法指定出纳员" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 -#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 -msgid "Cannot Calculate Arrival Time as Driver Address is Missing." -msgstr "无司机地址,无法计算预估到达时间" - #: erpnext/setup/doctype/company/company.py:236 msgid "Cannot Change Inventory Account Setting" msgstr "无法更改库存科目设置" @@ -9595,10 +9619,6 @@ msgstr "无法创建退货" msgid "Cannot Merge" msgstr "无法合并" -#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 -msgid "Cannot Optimize Route as Driver Address is Missing." -msgstr "无司机地址,无法优化配送路线" - #: erpnext/setup/doctype/employee/employee.py:292 msgid "Cannot Relieve Employee" msgstr "无法解除员工" @@ -9623,6 +9643,11 @@ msgstr "单笔凭证不能为多方应用源头减税" msgid "Cannot be a fixed asset item as Stock Ledger is created." msgstr "物料已有物料凭证后不能再将其设置为固定资产。" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 +#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 +msgid "Cannot calculate arrival time as the driver address is missing." +msgstr "" + #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." msgstr "无法取消资产折旧计划{0},因其存在草稿状态的日记账凭证{1}。" @@ -9632,14 +9657,14 @@ msgid "Cannot cancel POS Closing Entry" msgstr "无法取消POS结账凭证。" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 -msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock" +msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" msgstr "" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." msgstr "因相关已取消单据后台提交尚未完成,不能进行取消操作" -#: erpnext/manufacturing/doctype/work_order/work_order.py:854 +#: erpnext/manufacturing/doctype/work_order/work_order.py:850 msgid "Cannot cancel because submitted Stock Entry {0} exists" msgstr "不能取消,因为提交的仓储记录{0}已经存在" @@ -9647,7 +9672,7 @@ msgstr "不能取消,因为提交的仓储记录{0}已经存在" msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet." msgstr "物料价值重估未完成,无法取消交易" -#: erpnext/controllers/subcontracting_inward_controller.py:593 +#: erpnext/controllers/subcontracting_inward_controller.py:599 msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order." msgstr "无法取消本生产库存凭证,因产成品数量不得少于关联外包收货订单中的已交付数量。" @@ -9659,7 +9684,7 @@ msgstr "" msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue." msgstr "该单据关联已提交资产{asset_link},需先取消资产" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:417 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:416 msgid "Cannot cancel transaction for Completed Work Order." msgstr "无法取消已完成工单的交易。" @@ -9684,8 +9709,8 @@ msgid "Cannot change company's default currency, because there are existing tran msgstr "因为已有交易不能改变公司的默认货币,请先取消交易。" #: erpnext/projects/doctype/task/task.py:146 -msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled." -msgstr "依赖任务{1}未完成/取消,无法完成任务{0}" +msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." +msgstr "" #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9711,7 +9736,7 @@ msgstr "" msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts." msgstr "无法为未来日期的采购收据创建库存预留" -#: erpnext/selling/doctype/sales_order/mapper.py:977 +#: erpnext/selling/doctype/sales_order/mapper.py:981 #: erpnext/stock/doctype/pick_list/pick_list.py:256 msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list." msgstr "为销售订单 {0} 创建了库存预留,请取消预留后再创建拣货单" @@ -9720,6 +9745,10 @@ msgstr "为销售订单 {0} 创建了库存预留,请取消预留后再创建 msgid "Cannot create accounting entries against disabled accounts: {0}" msgstr "无法为已禁用科目{0}创建会计凭证" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 +msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." +msgstr "" + #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." msgstr "无法为合并发票{0}创建退货。" @@ -9737,7 +9766,7 @@ msgstr "已报价,不能更改状态为未成交。" msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'" msgstr "分类是“估值”或“估值和总计”的时候不能扣税。" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1845 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1854 msgid "Cannot delete Exchange Gain/Loss row" msgstr "无法删除汇兑损益行" @@ -9750,7 +9779,7 @@ msgid "Cannot delete an item which has been ordered" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:796 msgid "Cannot delete protected core DocType: {0}" msgstr "" @@ -9782,7 +9811,7 @@ msgstr "" msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again." msgstr "无法启用按物料核算库存科目,因公司{0}已存在按仓库核算的库存分类账记录。请先取消库存交易再重试。" -#: erpnext/crm/doctype/crm_settings/crm_settings.py:37 +#: erpnext/crm/doctype/crm_settings/crm_settings.py:43 msgid "Cannot enable Opportunity creation from Contact Us because the Contact Us form is disabled." msgstr "" @@ -9807,19 +9836,23 @@ msgstr "找不到该条码对应的物料" msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings." msgstr "找不到物料{0}的默认仓库,请在物料主数据或库存设置中设置" -#: erpnext/accounts/party.py:1091 +#: erpnext/accounts/party.py:1100 msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'." msgstr "" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 +msgid "Cannot optimize route as the driver address is missing." +msgstr "" + #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:907 +#: erpnext/manufacturing/doctype/work_order/work_order.py:903 msgid "Cannot produce more item for {0}" msgstr "无法为{0}生产更多物料" -#: erpnext/manufacturing/doctype/work_order/work_order.py:911 +#: erpnext/manufacturing/doctype/work_order/work_order.py:907 msgid "Cannot produce more than {0} items for {1}" msgstr "无法为{1}生产超过{0}件物料" @@ -9831,12 +9864,16 @@ msgstr "存在负未清金额时不可从客户收货" msgid "Cannot reduce quantity than ordered or purchased quantity" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514 -#: erpnext/accounts/services/taxes.py:257 -#: erpnext/public/js/controllers/accounts.js:120 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1523 +#: erpnext/accounts/services/taxes.py:258 +#: erpnext/public/js/controllers/accounts.js:117 msgid "Cannot refer row number greater than or equal to current row number for this Charge type" msgstr "此收取类型不能引用大于或等于本行的数据。" +#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 +msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " +msgstr "" + #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" msgstr "无法获取更新链接令牌,查看错误日志" @@ -9845,19 +9882,23 @@ msgstr "无法获取更新链接令牌,查看错误日志" msgid "Cannot retrieve link token. Check Error Log for more information" msgstr "无法获取链接令牌,查看错误日志" -#: erpnext/selling/doctype/customer/customer.py:368 +#: erpnext/selling/doctype/customer/customer.py:371 msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507 -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1516 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1694 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:1563 -#: erpnext/accounts/services/taxes.py:247 -#: erpnext/public/js/controllers/accounts.js:112 -#: erpnext/public/js/controllers/taxes_and_totals.js:554 +#: erpnext/accounts/services/taxes.py:248 +#: erpnext/public/js/controllers/accounts.js:109 +#: erpnext/public/js/controllers/taxes_and_totals.js:555 msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row" msgstr "第一行的“收取类型”不能是“基于上一行的金额”或者“前一行的总计”" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 +msgid "Cannot set alternative item for the item {0}" +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." msgstr "已有销售订单时不能更改其状态为未成交。" @@ -10284,9 +10325,9 @@ msgstr "请将科目类型改为应收或选择其他科目" msgid "Change this date manually to setup the next synchronization start date" msgstr "手工修改后下次同步由此日期开始" -#: erpnext/selling/doctype/customer/customer.py:158 -msgid "Changed customer name to '{}' as '{}' already exists." -msgstr "客户名称已存在,已更改为'{}'" +#: erpnext/selling/doctype/customer/customer.py:161 +msgid "Changed customer name to '{0}' as '{1}' already exists." +msgstr "" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10312,8 +10353,8 @@ msgstr "切换至移动平均计价法将影响新交易。若添加回溯凭证 msgid "Channel Partner" msgstr "渠道服务商" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1994 -#: erpnext/accounts/services/taxes.py:309 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1993 +#: erpnext/accounts/services/taxes.py:310 msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount" msgstr "行{0}的'实际'类型费用不可包含在物料单价或实付金额中" @@ -10507,7 +10548,7 @@ msgstr "支票宽度" #. Label of the reference_date (Date) field in DocType 'Payment Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/public/js/controllers/transaction.js:2810 +#: erpnext/public/js/controllers/transaction.js:2878 msgid "Cheque/Reference Date" msgstr "业务日期" @@ -10565,7 +10606,7 @@ msgstr "子单据名称/编号" #. Label of the child_row_reference (Data) field in DocType 'Quality #. Inspection' -#: erpnext/public/js/controllers/transaction.js:2905 +#: erpnext/public/js/controllers/transaction.js:2973 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Child Row Reference" msgstr "子行引用" @@ -10575,8 +10616,8 @@ msgid "Child Table Not Allowed" msgstr "" #: erpnext/projects/doctype/task/task.py:319 -msgid "Child Task exists for this Task. You can not delete this Task." -msgstr "子任务存在这个任务。你不能删除这个任务。" +msgid "Child Task exists for this Task. You cannot delete this Task." +msgstr "" #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -10754,7 +10795,7 @@ msgstr "偿还借款" msgid "Close Replied Opportunity After Days" msgstr "自动关闭已回复商机天数" -#: erpnext/selling/page/point_of_sale/pos_controller.js:253 +#: erpnext/selling/page/point_of_sale/pos_controller.js:244 msgid "Close the POS" msgstr "关闭POS" @@ -10768,7 +10809,7 @@ msgstr "封闭文件" msgid "Closed Documents" msgstr "已关闭单据类型" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1119 msgid "Closed Work Order can not be stopped or Re-opened" msgstr "已关闭工单不可停止或重新打开" @@ -10998,9 +11039,9 @@ msgstr "佣金" #. Label of the default_commission_rate (Float) field in DocType 'Customer' #. Label of the commission_rate (Float) field in DocType 'Sales Order' -#. Label of the commission_rate (Data) field in DocType 'Sales Team' +#. Label of the commission_rate (Percent) field in DocType 'Sales Team' #. Label of the commission_rate (Float) field in DocType 'Sales Partner' -#. Label of the commission_rate (Data) field in DocType 'Sales Person' +#. Label of the commission_rate (Percent) field in DocType 'Sales Person' #: erpnext/selling/doctype/customer/customer.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_team/sales_team.json @@ -11437,7 +11478,7 @@ msgstr "公司" #: erpnext/selling/doctype/quotation/quotation.json #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:72 +#: erpnext/selling/page/point_of_sale/pos_controller.js:63 #: erpnext/selling/page/sales_funnel/sales_funnel.js:36 #: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16 #: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8 @@ -11507,7 +11548,7 @@ msgstr "公司" #: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8 #: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137 #: erpnext/stock/report/item_where_used/item_where_used.js:15 -#: erpnext/stock/report/item_where_used/item_where_used.py:95 +#: erpnext/stock/report/item_where_used/item_where_used.py:89 #: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8 #: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8 @@ -11547,10 +11588,6 @@ msgstr "公司" msgid "Company Abbreviation" msgstr "公司简称" -#: erpnext/public/js/utils/naming_series.js:101 -msgid "Company Abbreviation (requires ERPNext to be installed)" -msgstr "" - #: erpnext/public/js/setup_wizard.js:174 msgid "Company Abbreviation cannot have more than 5 characters" msgstr "公司简称不能超过5个字符" @@ -11715,7 +11752,7 @@ msgstr "公司收货地址" msgid "Company Tax ID" msgstr "公司纳税登记号" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:632 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:637 msgid "Company and Posting Date is mandatory" msgstr "必须填写公司和过账日期" @@ -11759,12 +11796,12 @@ msgid "Company link field name used for filtering (optional - leave empty to del msgstr "" #: erpnext/setup/doctype/company/company.js:239 -msgid "Company name not same" -msgstr "公司名不一样" +msgid "Company name does not match" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:330 -msgid "Company of asset {0} and purchase document {1} doesn't matches." -msgstr "资产{0}与采购单据{1}的公司不匹配" +msgid "Company of asset {0} and purchase document {1} does not match." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11802,6 +11839,14 @@ msgstr "公司{0}被重复添加" msgid "Company {0} does not exist" msgstr "公司{0}不存在" +#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 +msgid "Company {0} does not exist yet. Taxes setup aborted." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 +msgid "Company {0} does not match with POS Profile Company {1}" +msgstr "" + #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" msgstr "公司{0}被多次添加" @@ -11810,14 +11855,6 @@ msgstr "公司{0}被多次添加" msgid "Company {0} is not in South Africa." msgstr "" -#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 -msgid "Company {} does not exist yet. Taxes setup aborted." -msgstr "公司{}尚未存在,税务设置已中止" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 -msgid "Company {} does not match with POS Profile Company {}" -msgstr "公司{}与POS配置公司{}不匹配" - #. Name of a DocType #. Label of the competitor (Link) field in DocType 'Competitor Detail' #: erpnext/crm/doctype/competitor/competitor.json @@ -11839,7 +11876,7 @@ msgstr "竞争对手名称" #. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity' #. Label of the competitors (Table MultiSelect) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:606 +#: erpnext/public/js/utils/sales_common.js:612 #: erpnext/selling/doctype/quotation/quotation.json msgid "Competitors" msgstr "竞争对手" @@ -12283,8 +12320,8 @@ msgid "Consumed Qty" msgstr "已耗用数量" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 -msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}" -msgstr "物料{0}的消耗数量不可超过预留数量" +msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" +msgstr "" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -12599,7 +12636,7 @@ msgstr "" #: erpnext/manufacturing/doctype/bom_item/bom_item.json #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json -#: erpnext/public/js/utils.js:898 +#: erpnext/public/js/utils.js:915 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json @@ -12899,7 +12936,7 @@ msgstr "" #: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:199 #: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98 #: erpnext/accounts/report/general_ledger/general_ledger.js:154 -#: erpnext/accounts/report/general_ledger/general_ledger.py:799 +#: erpnext/accounts/report/general_ledger/general_ledger.py:800 #: erpnext/accounts/report/gross_profit/gross_profit.js:68 #: erpnext/accounts/report/gross_profit/gross_profit.py:395 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305 @@ -12924,7 +12961,7 @@ msgstr "" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:33 #: erpnext/public/js/financial_statements.js:475 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -12982,7 +13019,7 @@ msgstr "成本中心号" msgid "Cost Center and Budgeting" msgstr "成本中心与预算" -#: erpnext/public/js/utils/sales_common.js:540 +#: erpnext/public/js/utils/sales_common.js:546 msgid "Cost Center for Item rows has been updated to {0}" msgstr "物料行的成本中心已更新为{0}" @@ -12994,7 +13031,7 @@ msgstr "成本中心参与分配,不可转换为组" msgid "Cost Center is required" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:623 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:627 #: erpnext/stock/doctype/purchase_receipt/services/gl_composer.py:378 msgid "Cost Center is required in row {0} in Taxes table for type {1}" msgstr "类型{1}税费表的行{0}必须有成本中心" @@ -13016,12 +13053,12 @@ msgid "Cost Center {0} cannot be used for allocation as it is used as main cost msgstr "成本中心{0}已在其他分配中作为主成本中心使用,不可分配" #: erpnext/assets/doctype/asset/asset.py:358 -msgid "Cost Center {} doesn't belong to Company {}" -msgstr "成本中心{}不属于公司{}" +msgid "Cost Center {0} does not belong to Company {1}" +msgstr "" #: erpnext/assets/doctype/asset/asset.py:365 -msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions" -msgstr "成本中心{}为组成本中心,不可用于交易" +msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" +msgstr "" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13145,14 +13182,14 @@ msgid "Costing and Billing" msgstr "成本核算和结算" #: erpnext/projects/doctype/project/project.js:140 -msgid "Costing and Billing fields has been updated" -msgstr "成本核算与计费字段已更新" +msgid "Costing and Billing fields have been updated" +msgstr "" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" msgstr "无法删除演示数据" -#: erpnext/selling/doctype/quotation/mapper.py:265 +#: erpnext/selling/doctype/quotation/mapper.py:263 msgid "Could not auto create Customer due to the following missing mandatory field(s):" msgstr "无法自动创建客户,缺失必填字段:" @@ -13164,7 +13201,7 @@ msgstr "无法自动创建退款单,请取消选中'退款'并再次 msgid "Could not detect any tables in this PDF. It may be a scanned or image-based statement, which is not supported (no OCR)." msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:352 msgid "Could not detect the Company for updating Bank Accounts" msgstr "无法识别更新银行账户的公司" @@ -13174,8 +13211,8 @@ msgstr "未找到合适班次匹配差异:{0}。" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 -msgid "Could not find path for " -msgstr "无法找到路径:" +msgid "Could not find path for {0}" +msgstr "" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -13198,7 +13235,7 @@ msgstr "" msgid "Could not solve criteria score function for {0}. Make sure the formula is valid." msgstr "无法解决{0}的标准分数函数。确保公式有效。" -#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100 +#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:99 msgid "Could not solve weighted score function. Make sure the formula is valid." msgstr "无法解决加权分数函数。确保公式有效。" @@ -13428,10 +13465,6 @@ msgstr "新建客户" msgid "Create New Lead" msgstr "创建新线索" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:16 -msgid "Create New Version" -msgstr "" - #: banking/src/components/common/LinkFieldCombobox.tsx:284 msgid "Create New {0}" msgstr "" @@ -13450,7 +13483,7 @@ msgstr "" msgid "Create Opportunity" msgstr "新增商机" -#: erpnext/selling/page/point_of_sale/pos_controller.js:67 +#: erpnext/selling/page/point_of_sale/pos_controller.js:58 msgid "Create POS Opening Entry" msgstr "创建POS接班记录" @@ -13465,7 +13498,7 @@ msgstr "创建收付款凭证" msgid "Create Payment Entry for Consolidated POS Invoices." msgstr "为合并POS发票创建付款凭证。" -#: erpnext/public/js/controllers/transaction.js:539 +#: erpnext/public/js/controllers/transaction.js:558 msgid "Create Payment Request" msgstr "" @@ -13693,7 +13726,7 @@ msgstr "" msgid "Create a variant with the template image." msgstr "使用模板图像创建变型" -#: erpnext/stock/stock_ledger.py:2055 +#: erpnext/stock/stock_ledger.py:2044 msgid "Create an incoming stock transaction for the Item." msgstr "为物料创建一笔收货记录" @@ -13727,7 +13760,7 @@ msgstr "是否创建{0}{1}?" msgid "Created By Migration" msgstr "" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:221 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:223 msgid "Created {0} scorecards for {1} between:" msgstr "已为{1}创建{0}张计分卡,时间范围:" @@ -13822,7 +13855,7 @@ msgstr "正在创建用户..." msgid "Creating demo data" msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:312 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:324 msgid "Creating {} out of {} {}" msgstr "正在创建{}/{}个{}" @@ -13832,17 +13865,17 @@ msgstr "正在创建{}/{}个{}" msgid "Creation" msgstr "创建日期" -#: erpnext/utilities/bulk_transaction.py:212 +#: erpnext/utilities/bulk_transaction.py:208 msgid "Creation of {1}(s) successful" msgstr "成功创建{1}" -#: erpnext/utilities/bulk_transaction.py:229 +#: erpnext/utilities/bulk_transaction.py:225 msgid "Creation of {0} failed.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "创建 {0} 失败。\n" "\t\t\t\t检查 批量事务日志" -#: erpnext/utilities/bulk_transaction.py:220 +#: erpnext/utilities/bulk_transaction.py:216 msgid "Creation of {0} partially successful.\n" "\t\t\t\tCheck Bulk Transaction Log" msgstr "创建 {0} 部分成功。\n" @@ -13877,11 +13910,11 @@ msgstr "创建 {0} 部分成功。\n" msgid "Credit" msgstr "贷方" -#: erpnext/accounts/report/general_ledger/general_ledger.py:743 +#: erpnext/accounts/report/general_ledger/general_ledger.py:744 msgid "Credit (Transaction)" msgstr "贷方(交易货币)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:718 +#: erpnext/accounts/report/general_ledger/general_ledger.py:719 msgid "Credit ({0})" msgstr "贷方({0})" @@ -13962,7 +13995,7 @@ msgstr "授信天数" msgid "Credit Limit" msgstr "信用额度" -#: erpnext/selling/doctype/customer/customer.py:539 +#: erpnext/selling/doctype/customer/customer.py:542 msgid "Credit Limit Crossed" msgstr "超信用额度" @@ -14042,16 +14075,16 @@ msgstr "贷记" msgid "Credit in Company Currency" msgstr "贷方(本币)" -#: erpnext/selling/doctype/customer/customer.py:505 -#: erpnext/selling/doctype/customer/customer.py:562 +#: erpnext/selling/doctype/customer/customer.py:508 +#: erpnext/selling/doctype/customer/customer.py:564 msgid "Credit limit has been crossed for customer {0} ({1}/{2})" msgstr "客户{0}({1} / {2})的信用额度已超过" -#: erpnext/selling/doctype/customer/customer.py:395 +#: erpnext/selling/doctype/customer/customer.py:398 msgid "Credit limit is already defined for the Company {0}" msgstr "公司{0}已定义信用额度" -#: erpnext/selling/doctype/customer/customer.py:561 +#: erpnext/selling/doctype/customer/customer.py:563 msgid "Credit limit reached for customer {0}" msgstr "客户{0}已达到信用额度" @@ -14110,12 +14143,12 @@ msgstr "条件设置" msgid "Criteria Weight" msgstr "权重" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89 +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:84 #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55 msgid "Criteria weights must add up to 100%" msgstr "标准权重合计必须为100%" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:189 msgid "Cron Interval should be between 1 and 59 Min" msgstr "定时任务间隔应设置为1至59分钟" @@ -14238,7 +14271,7 @@ msgstr "货币和价格表" msgid "Currency can not be changed after making entries using some other currency" msgstr "货币不能使用其他货币进行输入后更改" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:259 msgid "Currency filters are currently unsupported in Custom Financial Report." msgstr "" @@ -14303,8 +14336,8 @@ msgid "Current BOM" msgstr "当前物料清单" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 -msgid "Current BOM and New BOM can not be same" -msgstr "当前和新物料清单不能相同" +msgid "Current BOM and New BOM cannot be the same" +msgstr "" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -14366,10 +14399,6 @@ msgstr "当前序列号/批号" msgid "Current Serial No" msgstr "当前序列号" -#: erpnext/public/js/utils/naming_series.js:223 -msgid "Current Series" -msgstr "" - #. Label of the current_state (Select) field in DocType 'Share Balance' #: erpnext/accounts/doctype/share_balance/share_balance.json msgid "Current State" @@ -15200,7 +15229,7 @@ msgstr "D - E" msgid "DFS" msgstr "DFS" -#: erpnext/projects/doctype/project/project.py:750 +#: erpnext/projects/doctype/project/project.py:751 msgid "Daily Project Summary for {0}" msgstr "{0}的每日项目摘要" @@ -15345,10 +15374,6 @@ msgstr "" msgid "Day Of Week" msgstr "星期几" -#: erpnext/public/js/utils/naming_series.js:94 -msgid "Day of month" -msgstr "" - #. Label of the day_to_send (Select) field in DocType 'Project' #: erpnext/projects/doctype/project/project.json msgid "Day to Send" @@ -15455,11 +15480,11 @@ msgstr "贸易商" msgid "Debit" msgstr "借方" -#: erpnext/accounts/report/general_ledger/general_ledger.py:736 +#: erpnext/accounts/report/general_ledger/general_ledger.py:737 msgid "Debit (Transaction)" msgstr "借方(交易货币)" -#: erpnext/accounts/report/general_ledger/general_ledger.py:711 +#: erpnext/accounts/report/general_ledger/general_ledger.py:712 msgid "Debit ({0})" msgstr "借方({0})" @@ -15621,7 +15646,7 @@ msgstr "分升" msgid "Decimeter" msgstr "分米" -#: erpnext/public/js/utils/sales_common.js:633 +#: erpnext/public/js/utils/sales_common.js:639 msgid "Declare Lost" msgstr "确认未成交" @@ -16302,8 +16327,8 @@ msgstr "" msgid "Deleting {0} and all associated Common Code documents..." msgstr "正在删除{0}及其所有关联通用代码单据..." -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1113 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1132 msgid "Deletion in Progress!" msgstr "删除进行中!" @@ -16397,7 +16422,7 @@ msgstr "待开票销售出库明细" #. Order Secondary Item' #: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:766 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:764 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:273 #: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json @@ -16455,7 +16480,7 @@ msgstr "出货" #: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json #: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068 -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:662 #: erpnext/selling/doctype/sales_order/sales_order.js:1571 @@ -16785,7 +16810,7 @@ msgstr "折旧" msgid "Depreciation Amount" msgstr "折旧额" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 msgid "Depreciation Amount during the period" msgstr "期间折旧额" @@ -16801,7 +16826,7 @@ msgstr "折旧日期" msgid "Depreciation Details" msgstr "折旧详情" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876 msgid "Depreciation Eliminated due to disposal of assets" msgstr "资产处置折旧" @@ -16871,7 +16896,7 @@ msgstr "折旧过账日期不可早于可用日期" msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date" msgstr "折旧行{0}:折旧过账日期不可早于可用日期" -#: erpnext/assets/doctype/asset/asset.py:720 +#: erpnext/assets/doctype/asset/asset.py:722 msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}" msgstr "折旧行{0}:资产使用年限结束残值必须大于或等于{1}" @@ -16900,11 +16925,11 @@ msgstr "折旧计划" msgid "Depreciation Schedule View" msgstr "折旧计划表视图" -#: erpnext/assets/doctype/asset/asset.py:485 +#: erpnext/assets/doctype/asset/asset.py:487 msgid "Depreciation cannot be calculated for fully depreciated assets" msgstr "不能为已勾选已完全折旧的固定资产勾选计算折旧" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888 msgid "Depreciation eliminated via reversal" msgstr "通过冲销消除折旧" @@ -16932,7 +16957,7 @@ msgstr "设计师" #. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity' #. Label of the order_lost_reason (Small Text) field in DocType 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/public/js/utils/sales_common.js:612 +#: erpnext/public/js/utils/sales_common.js:618 #: erpnext/selling/doctype/quotation/quotation.json msgid "Detailed Reason" msgstr "详细原因说明" @@ -17035,12 +17060,12 @@ msgid "Difference Account in Items Table" msgstr "物料表中的差异科目" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 -msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "因本库存凭证为期初凭证,差异科目必须为资产/负债类科目(临时期初)。" +msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:984 -msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "因为此库存调账是开账凭证,差异科目必须是资产/负债类科目," +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 +msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" +msgstr "" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17102,7 +17127,7 @@ msgstr "差异金额" msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row." msgstr "每行可设置不同的'来源仓库'与'目标仓库'" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:194 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:192 msgid "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." msgstr "不同单位的物料会导致不正确的(总)净重值。请确保每个物料的净重使用同一个单位。" @@ -17275,7 +17300,7 @@ msgstr "" msgid "Disabled Product Bundle" msgstr "" -#: erpnext/stock/utils.py:424 +#: erpnext/stock/utils.py:423 msgid "Disabled Warehouse {0} cannot be used for this transaction." msgstr "已禁用仓库{0}不可用于此交易" @@ -17284,18 +17309,18 @@ msgstr "已禁用仓库{0}不可用于此交易" msgid "Disabled items cannot be selected in any transaction." msgstr "" -#: erpnext/accounts/services/internal_transfer.py:118 -msgid "Disabled pricing rules since this {} is an internal transfer" -msgstr "因{}为内部调拨,已禁用定价规则" +#: erpnext/accounts/services/internal_transfer.py:120 +msgid "Disabled pricing rules since this {0} is an internal transfer" +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Disabled suppliers are hidden from selection in new transactions but remain in historical records" msgstr "" -#: erpnext/accounts/services/internal_transfer.py:134 -msgid "Disabled tax included prices since this {} is an internal transfer" -msgstr "因{}为内部调拨,已禁用含税价格" +#: erpnext/accounts/services/internal_transfer.py:136 +msgid "Disabled tax included prices since this {0} is an internal transfer" +msgstr "" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17544,9 +17569,9 @@ msgstr "折扣率不可超过100%" msgid "Discount must be less than 100" msgstr "折扣必须小于100" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3092 -msgid "Discount of {} applied as per Payment Term" -msgstr "根据付款条款应用{}折扣" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 +msgid "Discount of {0} applied as per Payment Term" +msgstr "" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17910,11 +17935,11 @@ msgstr "是否确认提交库存凭证?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 -msgid "DocType can be one of them {0}" +msgid "DocType can be one of {0}" msgstr "" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 msgid "DocType {0} does not exist" msgstr "" @@ -17952,22 +17977,6 @@ msgstr "单据搜索" msgid "Document Count" msgstr "" -#. Label of the document_naming_tab (Tab Break) field in DocType 'Accounts -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying -#. Settings' -#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling -#. Settings' -#. Label of the document_naming_tab (Tab Break) field in DocType 'Stock -#. Settings' -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/buying/doctype/buying_settings/buying_settings.json -#: erpnext/public/js/utils/naming_series.js:7 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/stock/doctype/stock_settings/stock_settings.json -msgid "Document Naming" -msgstr "" - #: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78 msgid "Document No" msgstr "" @@ -18273,7 +18282,7 @@ msgstr "带任务复制项目" msgid "Duplicate Sales Invoices found" msgstr "发现重复销售发票" -#: erpnext/stock/serial_batch_bundle.py:1492 +#: erpnext/stock/serial_batch_bundle.py:1494 msgid "Duplicate Serial Number Error" msgstr "" @@ -18427,7 +18436,7 @@ msgstr "编辑产能" msgid "Edit Cart" msgstr "返回购物车" -#: erpnext/controllers/item_variant.py:213 +#: erpnext/controllers/item_variant.py:212 msgid "Edit Not Allowed" msgstr "禁止编辑" @@ -18651,8 +18660,8 @@ msgid "Email verification failed." msgstr "邮件验证失败" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 -msgid "Emails Queued" -msgstr "邮件已排队" +msgid "Emails queued" +msgstr "" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18839,7 +18848,7 @@ msgstr "员工" msgid "Empty" msgstr "空" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:768 msgid "Empty To Delete List" msgstr "" @@ -18848,7 +18857,7 @@ msgstr "" msgid "Ems(Pica)" msgstr "Ems(派卡)" -#: erpnext/public/js/controllers/transaction.js:2974 +#: erpnext/public/js/controllers/transaction.js:3042 msgid "Enable {0} on the Item master to proceed with {1} inspection." msgstr "" @@ -18927,6 +18936,12 @@ msgstr "" msgid "Enable European Access" msgstr "启用欧洲访问" +#. Label of the enable_frappe_crm_data_synchronization (Check) field in DocType +#. 'CRM Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Enable Frappe CRM Data Synchronization" +msgstr "" + #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json @@ -19198,7 +19213,7 @@ msgstr "结束时间" msgid "End Transit" msgstr "在途入库" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:236 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:147 #: erpnext/accounts/report/cash_flow/cash_flow.html:147 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80 @@ -19321,7 +19336,7 @@ msgstr "输入客户电话号码" msgid "Enter date to scrap asset" msgstr "输入资产报废日期" -#: erpnext/assets/doctype/asset/asset.py:483 +#: erpnext/assets/doctype/asset/asset.py:485 msgid "Enter depreciation details" msgstr "输入折旧信息" @@ -19377,6 +19392,10 @@ msgstr "输入生产数量。仅当设置此值时才会获取原材料" msgid "Enter {0} amount." msgstr "输入{0}金额" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 +msgid "Enter {0} name." +msgstr "" + #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" msgstr "娱乐休闲" @@ -19412,7 +19431,7 @@ msgstr "凭证类型" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.json #: erpnext/accounts/report/account_balance/account_balance.js:29 #: erpnext/accounts/report/account_balance/account_balance.js:45 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:264 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:306 msgid "Equity" msgstr "权益" @@ -19436,7 +19455,7 @@ msgstr "尔格" msgid "Error Description" msgstr "错误说明" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:302 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:314 msgid "Error Occurred" msgstr "发生错误" @@ -19468,21 +19487,21 @@ msgstr "过账折旧分录时出错" msgid "Error while processing deferred accounting for {0}" msgstr "处理{0}的延迟记账时出错" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:609 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:612 msgid "Error while reposting item valuation" msgstr "物料成本价追溯调整出错" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 -msgid "Error: This asset already has {0} depreciation periods booked.\n" -"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n" -"\t\t\t\t\tPlease correct the dates accordingly." -msgstr "错误:此资产已登记 {0} 个折旧期。\n" -"\t\t\t\t\t`折旧开始`日期必须至少在 `可供使用`日期之后 {1} 个期。\n" -"\t\t\t\t\t请相应地更正日期。" +msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." +msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971 -msgid "Error: {0} is mandatory field" -msgstr "错误:{0}是必填字段" +#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 +msgid "Error: {0}" +msgstr "错误:{0}" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 +msgid "Error: {0} is a mandatory field" +msgstr "" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -19496,7 +19515,7 @@ msgid "Estimated Arrival" msgstr "预计抵达时间" #. Label of the estimated_costing (Currency) field in DocType 'Project' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:97 #: erpnext/projects/doctype/project/project.json msgid "Estimated Cost" msgstr "预估成本" @@ -19545,7 +19564,7 @@ msgstr "例如:ABCD.##### 如果已设置批号模板且单据中未手工输 msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}" msgstr "" -#: erpnext/stock/stock_ledger.py:2321 +#: erpnext/stock/stock_ledger.py:2310 msgid "Example: Serial No {0} reserved in {1}." msgstr "示例:序列号{0}在{1}中预留" @@ -19826,7 +19845,7 @@ msgstr "预计结束日期" #. Order Item' #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:116 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135 #: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60 @@ -19913,7 +19932,7 @@ msgstr "残值" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:162 #: erpnext/accounts/report/account_balance/account_balance.js:28 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:192 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199 msgid "Expense" msgstr "费用" @@ -20172,9 +20191,9 @@ msgstr "华氏度" msgid "Failed Entries" msgstr "失败条目" -#: erpnext/utilities/doctype/video_settings/video_settings.py:33 -msgid "Failed to Authenticate the API key." -msgstr "API密钥认证失败" +#: erpnext/utilities/doctype/video_settings/video_settings.py:35 +msgid "Failed to authenticate the API key. Please check the error logs." +msgstr "" #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -20371,7 +20390,7 @@ msgid "Fetching Sales Orders..." msgstr "正在获取销售订单..." #: erpnext/accounts/doctype/dunning/dunning.js:135 -#: erpnext/public/js/controllers/transaction.js:1625 +#: erpnext/public/js/controllers/transaction.js:1639 msgid "Fetching exchange rates ..." msgstr "正在获取汇率..." @@ -20409,15 +20428,15 @@ msgstr "" msgid "Fields will be copied over only at time of creation." msgstr "字段将仅在创建时复制。" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1080 msgid "File does not belong to this Transaction Deletion Record" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1074 msgid "File not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1088 msgid "File not found on server" msgstr "" @@ -20426,7 +20445,7 @@ msgstr "" msgid "File to Rename" msgstr "文件重命名" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:232 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16 #: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16 #: erpnext/public/js/financial_statements.js:395 @@ -20585,11 +20604,11 @@ msgstr "" msgid "Financial Report Template" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:277 msgid "Financial Report Template {0} is disabled" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:274 msgid "Financial Report Template {0} not found" msgstr "" @@ -20658,7 +20677,7 @@ msgstr "成品物料清单" #. Service Item' #. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service #. Item' -#: erpnext/public/js/utils.js:913 +#: erpnext/public/js/utils.js:930 #: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json #: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json msgid "Finished Good Item" @@ -20671,7 +20690,7 @@ msgstr "成品物料号" msgid "Finished Good Item Code" msgstr "产成品物料代码" -#: erpnext/public/js/utils.js:931 +#: erpnext/public/js/utils.js:948 msgid "Finished Good Item Qty" msgstr "成品物料数量" @@ -20779,7 +20798,7 @@ msgstr "成品仓" msgid "Finished Goods based Operating Cost" msgstr "启用计件成本" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:879 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:878 msgid "Finished Item {0} does not match with Work Order {1}" msgstr "产成品{0}与工单{1}不匹配" @@ -20878,10 +20897,6 @@ msgstr "财政制度是强制性的,请在公司{0}设定财政制度" msgid "Fiscal Year" msgstr "财年" -#: erpnext/public/js/utils/naming_series.js:100 -msgid "Fiscal Year (requires ERPNext to be installed)" -msgstr "" - #. Name of a DocType #: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json msgid "Fiscal Year Company" @@ -20895,11 +20910,8 @@ msgstr "" msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date" msgstr "财年结束日期应为财年开始日期后一年" -#: erpnext/controllers/trends.py:59 -msgid "Fiscal Year {0} Does Not Exist" -msgstr "财年{0}不存在" - #: erpnext/accounts/report/trial_balance/trial_balance.py:49 +#: erpnext/controllers/trends.py:59 msgid "Fiscal Year {0} does not exist" msgstr "财年{0}不存在" @@ -20932,7 +20944,7 @@ msgstr "固定资产" #. Capitalization Asset Item' #. Label of the fixed_asset_account (Link) field in DocType 'Asset Category #. Account' -#: erpnext/assets/doctype/asset/asset.py:909 +#: erpnext/assets/doctype/asset/asset.py:911 #: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json #: erpnext/assets/doctype/asset_category_account/asset_category_account.json msgid "Fixed Asset Account" @@ -21068,7 +21080,7 @@ msgstr "英尺/秒" msgid "For" msgstr "目标" -#: erpnext/public/js/utils/sales_common.js:389 +#: erpnext/public/js/utils/sales_common.js:395 msgid "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." msgstr "对于“套件”物料,仓库,序列号和批号信息维护在“装箱单”中。如果仓库和批号是“套件”中所含物料共用的,可以在订单物料清单表中输入这些值,系统会自动将其复制到“装箱单”。" @@ -21093,10 +21105,6 @@ msgstr "公司" msgid "For Item" msgstr "物料" -#: erpnext/stock/services/internal_transfer.py:104 -msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}" -msgstr "基于 {2} {3} 物料 {0} 收货数量不能超过 {1}" - #. Label of the for_job_card (Link) field in DocType 'Job Card' #: erpnext/manufacturing/doctype/job_card/job_card.json msgid "For Job Card" @@ -21163,12 +21171,12 @@ msgid "For Work Order" msgstr "工单" #: erpnext/controllers/status_updater.py:292 -msgid "For an item {0}, quantity must be negative number" -msgstr "物料{0}的数量必须是负数" +msgid "For an item {0}, quantity must be a negative number" +msgstr "" #: erpnext/controllers/status_updater.py:289 -msgid "For an item {0}, quantity must be positive number" -msgstr "物料 {0} 其数量必须为正数" +msgid "For an item {0}, quantity must be a positive number" +msgstr "" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21200,13 +21208,13 @@ msgstr "多少钱积1分" msgid "For individual supplier" msgstr "单个供应商" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:377 -msgid "For item {0}, only {1} asset have been created or linked to {2}. Please create or link {3} more asset with the respective document." -msgstr "物料{0}仅创建/关联了{1}项资产至{2},请创建或关联剩余{3}项资产。" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 +msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." +msgstr "" #: erpnext/controllers/status_updater.py:302 -msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}" -msgstr "物料{0}的税率必须为正数。允许负数需在{2}启用{1}" +msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" +msgstr "" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21218,9 +21226,9 @@ msgstr "" msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it." msgstr "" -#: erpnext/manufacturing/doctype/work_order/mapper.py:381 -msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})" -msgstr "工序{0}:数量({1})不得超过待处理数量({2})" +#: erpnext/manufacturing/doctype/work_order/mapper.py:379 +msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" +msgstr "" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21235,21 +21243,17 @@ msgstr "" msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse." msgstr "对于预计和预测数量,系统将考量所选父仓库下的所有子仓库。" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:911 -msgid "For quantity {0} should not be greater than allowed quantity {1}" -msgstr "成品数量 {0} 不能大于剩余可入库数量 {1}" - #. Description of the 'Territory Manager' (Link) field in DocType 'Territory' #: erpnext/setup/doctype/territory/territory.json msgid "For reference" msgstr "供参考" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536 -#: erpnext/public/js/controllers/accounts.js:204 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1545 +#: erpnext/public/js/controllers/accounts.js:201 msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included" msgstr "对于{1}的第{0}行。要在物料单价中包括{2},也必须包括第{3}行" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:252 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:251 msgid "For row {0}: Enter Planned Qty" msgstr "请在第{0}行输入计划数量" @@ -21268,11 +21272,15 @@ msgstr "对于'应用于其他'条件,字段{0}为必填项" msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes" msgstr "为方便客户,这些代码可以在打印格式(如发票和销售出库)中使用" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:892 +#: erpnext/stock/serial_batch_bundle.py:1234 +msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." msgstr "" -#: erpnext/public/js/controllers/transaction.js:1425 +#: erpnext/public/js/controllers/transaction.js:1439 msgctxt "Clear payment terms template and/or payment schedule when due date is changed" msgid "For the new {0} to take effect, would you like to clear the current {1}?" msgstr "为使新{0}生效,是否清除当前{1}?" @@ -21360,6 +21368,21 @@ msgstr "论坛帖子" msgid "Forum URL" msgstr "论坛URL" +#. Label of the frappe_crm_section (Section Break) field in DocType 'CRM +#. Settings' +#: erpnext/crm/doctype/crm_settings/crm_settings.json +msgid "Frappe CRM" +msgstr "Frappe CRM" + +#. Name of a DocType +#: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json +msgid "Frappe CRM Allowed User" +msgstr "" + +#: erpnext/crm/frappe_crm_api.py:168 +msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/install.py:232 msgid "Frappe School" msgstr "" @@ -21903,7 +21926,7 @@ msgstr "总账余额" #. Name of a DocType #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:689 +#: erpnext/accounts/report/general_ledger/general_ledger.py:690 msgid "GL Entry" msgstr "总账分录" @@ -22028,6 +22051,10 @@ msgstr "总账" msgid "General Ledger remarks length" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:829 +msgid "General Ledger requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json msgid "General Settings" @@ -22081,7 +22108,7 @@ msgstr "生成库存结算分录" msgid "Generate To Delete List" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:485 msgid "Generate To Delete list first" msgstr "" @@ -22424,7 +22451,7 @@ msgstr "在途物料" msgid "Goods Transferred" msgstr "已调拨" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1327 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1326 msgid "Goods are already received against the outward entry {0}" msgstr "出库移动物料{0}已收货" @@ -22607,7 +22634,7 @@ msgstr "" msgid "Grant Commission" msgstr "付佣金" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:899 msgid "Greater Than Amount" msgstr "大于金额" @@ -22747,7 +22774,7 @@ msgstr "按销售订单分组" msgid "Group by Voucher" msgstr "按凭证分组" -#: erpnext/stock/utils.py:418 +#: erpnext/stock/utils.py:417 msgid "Group node warehouse is not allowed to select for transactions" msgstr "实际业务单据中不可使用组节点仓库" @@ -23050,7 +23077,7 @@ msgstr "若业务存在季节性波动,可帮助您将预算/目标分摊至 msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}" msgstr "上述失败折旧分录的错误日志如下:{0}" -#: erpnext/stock/stock_ledger.py:2040 +#: erpnext/stock/stock_ledger.py:2029 msgid "Here are the options to proceed:" msgstr "选择以下方式继续" @@ -23078,7 +23105,7 @@ msgstr "此处每周休息日已根据先前选择预填充,您可新增行单 msgid "Hertz" msgstr "赫兹" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:611 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:614 msgid "Hi," msgstr "您好:" @@ -23114,7 +23141,7 @@ msgstr "" msgid "Hide Images" msgstr "隐藏图片" -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 msgid "Hide Recent Orders" msgstr "隐藏近期订单" @@ -23701,15 +23728,15 @@ msgstr "" msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template." msgstr "如果尚无税费明细且选择了税费模板,系统自动从选择的税费模板添加税明细" -#: erpnext/stock/stock_ledger.py:2050 +#: erpnext/stock/stock_ledger.py:2039 msgid "If not, you can Cancel / Submit this entry" msgstr "请选择以下方式中的一种之后" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:194 msgid "If party does not exist, create it using the Customer Name field." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:195 msgid "If party does not exist, create it using the Supplier Name field." msgstr "" @@ -23747,7 +23774,7 @@ msgstr "若物料清单产生废料,需选择废品仓库" msgid "If the account is frozen, entries are allowed to restricted users." msgstr "如果科目被冻结,只允许有编辑冻结凭证角色的用户过账" -#: erpnext/stock/stock_ledger.py:2043 +#: erpnext/stock/stock_ledger.py:2032 msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table." msgstr "如在交易中允许物料成本价为0,请在明细行中勾选允许成本价为0" @@ -23848,7 +23875,7 @@ msgstr "可以手工勾选匹配,否则按时间先后自动匹配" msgid "If you still want to proceed, please disable {0} checkbox." msgstr "" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:420 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:419 msgid "If you still want to proceed, please enable {0}." msgstr "请勾选{0}后继续" @@ -24066,14 +24093,14 @@ msgstr "导入发票" #. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json -msgid "Import MT940 Fromat" -msgstr "导入MT940格式" +msgid "Import MT940 Format" +msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" msgstr "导入成功" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:577 msgid "Import Summary" msgstr "" @@ -24550,7 +24577,7 @@ msgstr "包括下层组件物料" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:412 #: erpnext/accounts/report/account_balance/account_balance.js:27 #: erpnext/accounts/report/financial_statements.py:803 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:190 #: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192 msgid "Income" msgstr "收入" @@ -24636,7 +24663,7 @@ msgstr "{0}的来电" msgid "Incompatible Setting Detected" msgstr "检测到不兼容设置" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:198 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:200 msgid "Incorrect Account" msgstr "" @@ -24645,7 +24672,7 @@ msgstr "" msgid "Incorrect Balance Qty After Transaction" msgstr "交易记账后结余数量不正确" -#: erpnext/controllers/subcontracting_controller.py:1057 +#: erpnext/controllers/subcontracting_controller.py:1059 msgid "Incorrect Batch Consumed" msgstr "消耗批次错误" @@ -24653,11 +24680,11 @@ msgstr "消耗批次错误" msgid "Incorrect Check in (group) Warehouse for Reorder" msgstr "再订购(组)仓库检查错误" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:146 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:148 msgid "Incorrect Company" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:899 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:900 msgid "Incorrect Component Quantity" msgstr "组件数量错误" @@ -24666,7 +24693,7 @@ msgstr "组件数量错误" msgid "Incorrect Date" msgstr "日期错误" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:161 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:163 msgid "Incorrect Invoice" msgstr "发票错误" @@ -24683,7 +24710,7 @@ msgstr "参考单据错误(采购收货单物料)" msgid "Incorrect Serial No Valuation" msgstr "异常序列号成本价" -#: erpnext/controllers/subcontracting_controller.py:1070 +#: erpnext/controllers/subcontracting_controller.py:1074 msgid "Incorrect Serial Number Consumed" msgstr "消耗序列号错误" @@ -24766,7 +24793,7 @@ msgstr "增量" msgid "Increment cannot be 0" msgstr "增量不能为0" -#: erpnext/controllers/item_variant.py:120 +#: erpnext/controllers/item_variant.py:119 msgid "Increment for Attribute {0} cannot be 0" msgstr "增量属性{0}不能为0" @@ -24963,7 +24990,7 @@ msgid "Instruction" msgstr "说明" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82 -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:326 msgid "Insufficient Capacity" msgstr "产能不足" @@ -24979,12 +25006,12 @@ msgstr "权限不足" #: erpnext/stock/doctype/pick_list/pick_list.py:146 #: erpnext/stock/doctype/pick_list/pick_list.py:164 #: erpnext/stock/doctype/pick_list/pick_list.py:1088 -#: erpnext/stock/serial_batch_bundle.py:1235 erpnext/stock/stock_ledger.py:1725 -#: erpnext/stock/stock_ledger.py:2209 +#: erpnext/stock/serial_batch_bundle.py:1237 erpnext/stock/stock_ledger.py:1714 +#: erpnext/stock/stock_ledger.py:2198 msgid "Insufficient Stock" msgstr "库存不足" -#: erpnext/stock/stock_ledger.py:2224 +#: erpnext/stock/stock_ledger.py:2213 msgid "Insufficient Stock for Batch" msgstr "批次库存不足" @@ -25114,7 +25141,7 @@ msgstr "" msgid "Interest Income" msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2726 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2724 msgid "Interest and/or dunning fee" msgstr "利息及/或催收费" @@ -25139,7 +25166,7 @@ msgstr "内部" msgid "Internal Customer Accounting" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:256 +#: erpnext/selling/doctype/customer/customer.py:259 msgid "Internal Customer for company {0} already exists" msgstr "公司{0}的内部客户已存在" @@ -25165,7 +25192,7 @@ msgstr "关联方内部销售订单号必填" msgid "Internal Supplier Details" msgstr "" -#: erpnext/buying/doctype/supplier/supplier.py:180 +#: erpnext/buying/doctype/supplier/supplier.py:181 msgid "Internal Supplier for company {0} already exists" msgstr "公司{0}的内部供应商已存在" @@ -25186,7 +25213,7 @@ msgstr "公司{0}的内部供应商已存在" msgid "Internal Transfer" msgstr "内部转账" -#: erpnext/accounts/services/internal_transfer.py:99 +#: erpnext/accounts/services/internal_transfer.py:101 msgid "Internal Transfer Reference Missing" msgstr "缺少内部调拨参考" @@ -25228,8 +25255,8 @@ msgstr "间隔在1到59分钟之间" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:389 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:764 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:774 -#: erpnext/accounts/services/taxes.py:271 -#: erpnext/accounts/services/taxes.py:279 +#: erpnext/accounts/services/taxes.py:272 +#: erpnext/accounts/services/taxes.py:280 #: erpnext/assets/doctype/asset_category/asset_category.py:69 #: erpnext/assets/doctype/asset_category/asset_category.py:97 msgid "Invalid Account" @@ -25248,7 +25275,7 @@ msgstr "无效分配金额" msgid "Invalid Amount" msgstr "无效金额" -#: erpnext/controllers/item_variant.py:135 +#: erpnext/controllers/item_variant.py:134 msgid "Invalid Attribute" msgstr "无效属性" @@ -25265,11 +25292,11 @@ msgstr "" msgid "Invalid Barcode. There is no Item attached to this barcode." msgstr "无效条码,未关联任何物料" -#: erpnext/public/js/controllers/transaction.js:3184 +#: erpnext/public/js/controllers/transaction.js:3252 msgid "Invalid Blanket Order for the selected Customer and Item" msgstr "无效框架订单对所选客户和物料无效" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:511 msgid "Invalid CSV format. Expected column: doctype_name" msgstr "" @@ -25289,13 +25316,13 @@ msgstr "公司间交易的公司无效。" msgid "Invalid Configuration" msgstr "" -#: erpnext/accounts/services/taxes.py:294 +#: erpnext/accounts/services/taxes.py:295 #: erpnext/assets/doctype/asset/asset.py:361 #: erpnext/assets/doctype/asset/asset.py:368 msgid "Invalid Cost Center" msgstr "无效成本中心" -#: erpnext/selling/doctype/customer/customer.py:369 +#: erpnext/selling/doctype/customer/customer.py:372 msgid "Invalid Customer Group" msgstr "" @@ -25316,11 +25343,11 @@ msgstr "" msgid "Invalid Discount" msgstr "无效折扣" -#: erpnext/controllers/taxes_and_totals.py:853 +#: erpnext/controllers/taxes_and_totals.py:855 msgid "Invalid Discount Amount" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:133 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:135 msgid "Invalid Document" msgstr "无效单据" @@ -25350,7 +25377,7 @@ msgstr "无效分组依据" msgid "Invalid Item" msgstr "无效物料" -#: erpnext/stock/doctype/item/item.py:1518 +#: erpnext/stock/doctype/item/item.py:1520 msgid "Invalid Item Defaults" msgstr "无效物料默认值" @@ -25359,7 +25386,7 @@ msgstr "无效物料默认值" msgid "Invalid Ledger Entries" msgstr "异常总账凭证" -#: erpnext/assets/doctype/asset/asset.py:568 +#: erpnext/assets/doctype/asset/asset.py:570 msgid "Invalid Net Purchase Amount" msgstr "净采购金额无效" @@ -25398,7 +25425,7 @@ msgstr "打印格式无效" msgid "Invalid Priority" msgstr "无效的优先级" -#: erpnext/manufacturing/doctype/bom/bom.py:971 +#: erpnext/manufacturing/doctype/bom/bom.py:973 msgid "Invalid Process Loss Configuration" msgstr "无效的工艺损耗配置" @@ -25415,7 +25442,7 @@ msgstr "无效的数量" msgid "Invalid Quantity" msgstr "无效的物料数量" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid Query" msgstr "查询语句无效" @@ -25427,8 +25454,8 @@ msgstr "无效的退货" msgid "Invalid Sales Invoices" msgstr "无效销售发票" -#: erpnext/assets/doctype/asset/asset.py:657 -#: erpnext/assets/doctype/asset/asset.py:685 +#: erpnext/assets/doctype/asset/asset.py:659 +#: erpnext/assets/doctype/asset/asset.py:687 msgid "Invalid Schedule" msgstr "无效的排程计划" @@ -25436,7 +25463,7 @@ msgstr "无效的排程计划" msgid "Invalid Selling Price" msgstr "无效的销售单价" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:954 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:953 msgid "Invalid Serial and Batch Bundle" msgstr "无效的序列号和批次组合" @@ -25453,7 +25480,7 @@ msgstr "" msgid "Invalid Upload" msgstr "" -#: erpnext/controllers/item_variant.py:203 +#: erpnext/controllers/item_variant.py:202 msgid "Invalid Value" msgstr "无效的数值" @@ -25463,14 +25490,14 @@ msgid "Invalid Warehouse" msgstr "无效的仓库" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 -msgid "Invalid amount in accounting entries of {} {} for Account {}: {}" -msgstr "科目{}的{} {}会计凭证中存在无效金额: {}" +msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" msgstr "无效的条件表达式" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069 msgid "Invalid file URL" msgstr "" @@ -25502,7 +25529,7 @@ msgstr "" msgid "Invalid result key. Response:" msgstr "无效的结果键值。响应:" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:484 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:486 msgid "Invalid search query" msgstr "搜索查询无效" @@ -26465,10 +26492,6 @@ msgstr "发货日期" msgid "It can take upto few hours for accurate stock values to be visible after merging items." msgstr "合并后的物料库存数量更新可能需几个小时" -#: erpnext/public/js/controllers/transaction.js:2567 -msgid "It is needed to fetch Item Details." -msgstr "以获取物料详细信息。" - #: banking/src/components/features/BankReconciliation/BankBalance.tsx:79 msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet." msgstr "" @@ -26477,7 +26500,7 @@ msgstr "" msgid "It's all good!" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:218 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:220 msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'" msgstr "总金额为零时无法按金额分摊费用,请将'费用分摊基准'设为'数量'" @@ -26526,12 +26549,12 @@ msgstr "" #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59 #: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:61 #: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202 #: erpnext/buying/workspace/buying/buying.json -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 #: erpnext/manufacturing/doctype/blanket_order/blanket_order.json #: erpnext/manufacturing/doctype/bom/bom.js:1088 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109 @@ -26564,7 +26587,7 @@ msgstr "" #: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json #: erpnext/stock/doctype/putaway_rule/putaway_rule.json -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 #: erpnext/stock/doctype/stock_settings/stock_settings.js:149 #: erpnext/stock/page/stock_balance/stock_balance.js:23 #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36 @@ -26638,7 +26661,7 @@ msgstr "物料5" #. Label of a Link in the Stock Workspace #. Label of a Workspace Sidebar Item #: erpnext/stock/doctype/item_alternative/item_alternative.json -#: erpnext/stock/report/item_where_used/item_where_used.py:410 +#: erpnext/stock/report/item_where_used/item_where_used.py:408 #: erpnext/stock/workspace/stock/stock.json #: erpnext/workspace_sidebar/stock.json msgid "Item Alternative" @@ -26799,7 +26822,7 @@ msgstr "购物车" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:738 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:736 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -26831,7 +26854,7 @@ msgstr "购物车" #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:105 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75 #: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30 @@ -26840,12 +26863,12 @@ msgstr "购物车" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:367 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:27 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:122 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:128 #: erpnext/projects/doctype/timesheet/timesheet.js:214 -#: erpnext/public/js/controllers/transaction.js:2861 +#: erpnext/public/js/controllers/transaction.js:2929 #: erpnext/public/js/stock_reservation.js:112 -#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579 -#: erpnext/public/js/utils.js:736 +#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:596 +#: erpnext/public/js/utils.js:753 #: erpnext/public/js/utils/serial_no_batch_selector.js:96 #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -26941,7 +26964,7 @@ msgstr "物料号不能因序列号改变" msgid "Item Code required at Row No {0}" msgstr "请在第{0}行输入物料号" -#: erpnext/selling/page/point_of_sale/pos_controller.js:825 +#: erpnext/selling/page/point_of_sale/pos_controller.js:816 #: erpnext/selling/page/point_of_sale/pos_item_details.js:278 msgid "Item Code: {0} is not available under warehouse {1}." msgstr "仓库 {1} 中无此物料 {0}。" @@ -27137,7 +27160,7 @@ msgstr "" msgid "Item Group Tree" msgstr "物料组树" -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525 +#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:523 msgid "Item Group not mentioned in item master for item {0}" msgstr "物料{0}的物料组没有设置" @@ -27291,7 +27314,7 @@ msgstr "物料制造商" #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:745 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:743 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json @@ -27322,7 +27345,7 @@ msgstr "物料制造商" #: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:111 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959 #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995 @@ -27330,8 +27353,8 @@ msgstr "物料制造商" #: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:374 #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:92 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:138 -#: erpnext/public/js/controllers/transaction.js:2867 -#: erpnext/public/js/utils.js:827 +#: erpnext/public/js/controllers/transaction.js:2935 +#: erpnext/public/js/utils.js:844 #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:1324 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -27388,7 +27411,7 @@ msgstr "物料制造商" msgid "Item Name" msgstr "物料名称" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:416 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:417 msgid "Item Name is required." msgstr "" @@ -27435,8 +27458,8 @@ msgstr "物料价格设置" msgid "Item Price Stock" msgstr "物料价格与库存" -#: erpnext/stock/get_item_details.py:1181 -#: erpnext/stock/get_item_details.py:1205 +#: erpnext/stock/get_item_details.py:1184 +#: erpnext/stock/get_item_details.py:1208 msgid "Item Price added for {0} in Price List - {1}" msgstr "" @@ -27448,7 +27471,7 @@ msgstr "物料价格在价格表,供应商/客户,货币,物料,批号 msgid "Item Price created at rate {0}" msgstr "" -#: erpnext/stock/get_item_details.py:1164 +#: erpnext/stock/get_item_details.py:1167 msgid "Item Price updated for {0} in Price List {1}" msgstr "物料价格{0}更新到价格表{1}中了,之后的订单会使用新价格" @@ -27493,7 +27516,7 @@ msgstr "物料重订货" msgid "Item Row" msgstr "" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:171 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:173 msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table" msgstr "行{0}:{1} {2}在上面的“{1}”表格中不存在" @@ -27609,7 +27632,7 @@ msgstr "成品" #. Name of a DocType #: erpnext/stock/doctype/item_variant/item_variant.json -#: erpnext/stock/report/item_where_used/item_where_used.py:387 +#: erpnext/stock/report/item_where_used/item_where_used.py:385 msgid "Item Variant" msgstr "多规格物料" @@ -27728,7 +27751,7 @@ msgstr "物料税费信息" msgid "Item Wise Tax Details" msgstr "" -#: erpnext/controllers/taxes_and_totals.py:560 +#: erpnext/controllers/taxes_and_totals.py:562 msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:" msgstr "" @@ -27764,7 +27787,7 @@ msgstr "原材料表中必须填写物料。" msgid "Item is removed since no serial / batch no selected." msgstr "因未选择序列/批次号,物料已被移除" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:167 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:169 msgid "Item must be added using 'Get Items from Purchase Receipts' button" msgstr "物料必须要由“从采购入库选物料”添加" @@ -27778,7 +27801,7 @@ msgstr "物料名称" msgid "Item operation" msgstr "工序" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:614 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:613 msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}" msgstr "因勾选了成本价为0,物料 {0} 的单价已设置为0" @@ -27793,7 +27816,7 @@ msgstr "待生产物料" msgid "Item valuation rate is recalculated considering landed cost voucher amount" msgstr "物料成本价将基于到岸成本凭证金额重新计算" -#: erpnext/stock/utils.py:539 +#: erpnext/stock/utils.py:538 msgid "Item valuation reposting in progress. Report might show incorrect item valuation." msgstr "物料成本价追溯调整后台处理中,报表中显示的物料成本价可能不是最新的" @@ -27809,10 +27832,6 @@ msgstr "" msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}" msgstr "" -#: erpnext/selling/doctype/product_bundle/product_bundle.js:54 -msgid "Item {0} already has an active Product Bundle ({1}). Submitting this will create a new version and deactivate {1}." -msgstr "" - #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119 msgid "Item {0} cannot be added as a sub-assembly of itself" msgstr "物料{0}不能作为自身的子装配件添加" @@ -27821,6 +27840,10 @@ msgstr "物料{0}不能作为自身的子装配件添加" msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}." msgstr "物料{0}在总括订单{2}下不可订购超过{1}" +#: erpnext/stock/services/internal_transfer.py:104 +msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" +msgstr "" + #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 msgid "Item {0} does not exist" @@ -27830,6 +27853,7 @@ msgstr "物料{0}不存在" msgid "Item {0} does not exist in the system or has expired" msgstr "物料{0}不存在于系统中或已过期" +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1363 #: erpnext/stock/services/serial_batch_bundle_service.py:384 msgid "Item {0} does not exist." msgstr "物料{0}不存在" @@ -27862,6 +27886,10 @@ msgstr "物料{0}已经到达寿命终止日期{1}" msgid "Item {0} ignored since it is not a stock item" msgstr "{0}不是库存产品,已被忽略" +#: erpnext/stock/get_item_details.py:359 +msgid "Item {0} is a template, please select one of its variants" +msgstr "" + #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." msgstr "物料{0}已被销售订单{1}预留" @@ -27894,7 +27922,7 @@ msgstr "物料{0}非外协物料" msgid "Item {0} is not a template item." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1250 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1249 msgid "Item {0} is not active or end of life has been reached" msgstr "物料{0}处于失效或寿命终止状态" @@ -27926,10 +27954,6 @@ msgstr "物料{0}的订单数量{1}不能小于最低订货量{2}(物料主数 msgid "Item {0}: {1} qty produced. " msgstr "物料{0}:已生产数量{1}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1250 -msgid "Item {} does not exist." -msgstr "物料{}不存在" - #. Name of a report #: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json msgid "Item-wise Price List Rate" @@ -27980,6 +28004,10 @@ msgstr "获取物料税模板需要物料/物料编码。" msgid "Item: {0} does not exist in the system" msgstr "物料{0}不存在" +#: erpnext/manufacturing/doctype/bom/bom.py:970 +msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." +msgstr "" + #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item #: erpnext/buying/workspace/buying/buying.json @@ -27996,7 +28024,7 @@ msgstr "物料" msgid "Items Filter" msgstr "物料过滤" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:200 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 #: erpnext/selling/doctype/sales_order/sales_order.js:1757 msgid "Items Required" msgstr "所需物料" @@ -28036,7 +28064,7 @@ msgstr "用于物料需求的物料号" msgid "Items not found." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:610 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:609 msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}" msgstr "因勾选了成本价为0,这些物料 {0} 的单价已设置为0" @@ -28046,7 +28074,7 @@ msgstr "因勾选了成本价为0,这些物料 {0} 的单价已设置为0" msgid "Items to Be Repost" msgstr "待重过账物料" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:199 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:198 msgid "Items to Manufacture are required to pull the Raw Materials associated with it." msgstr "需有装配件或子装配件明细后才可计算采购原材料需求。" @@ -28116,7 +28144,7 @@ msgstr "生产任务单产能" #: erpnext/manufacturing/doctype/work_order/work_order.js:408 #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:91 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/stock/doctype/quality_inspection/quality_inspection.json @@ -28179,20 +28207,19 @@ msgstr "生产任务单工时记录" msgid "Job Card and Capacity Planning" msgstr "生产任务单与产能计划" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1622 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1623 msgid "Job Card {0} has been completed" msgstr "作业卡{0}已完成" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1416 +msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." +msgstr "" + #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json msgid "Job Cards" msgstr "生产任务单" -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 -msgid "Job Paused" -msgstr "作业已暂停" - -#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17 msgid "Job Started" msgstr "已开始" @@ -28255,11 +28282,19 @@ msgstr "委外供应商名" msgid "Job Worker Warehouse" msgstr "委外仓库" -#: erpnext/manufacturing/doctype/work_order/mapper.py:462 +#: erpnext/manufacturing/doctype/work_order/mapper.py:460 msgid "Job card {0} created" msgstr "已创建生产任务单{0}" -#: erpnext/utilities/bulk_transaction.py:76 +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 +msgid "Job paused" +msgstr "" + +#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 +msgid "Job started" +msgstr "" + +#: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" msgstr "作业:{0}已触发处理失败事务" @@ -28605,8 +28640,8 @@ msgid "Last Fiscal Year" msgstr "" #: erpnext/accounts/doctype/account/account.py:673 -msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "总账分录最后更新于{}。系统使用期间不允许此操作,请5分钟后重试" +msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." +msgstr "" #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -28726,7 +28761,7 @@ msgstr "纬度" msgid "Lead" msgstr "线索" -#: erpnext/crm/doctype/lead/lead.py:399 +#: erpnext/crm/doctype/lead/lead.py:400 msgid "Lead -> Prospect" msgstr "线索->潜在客户" @@ -28820,7 +28855,7 @@ msgstr "交期(天)" msgid "Lead Type" msgstr "线索类型" -#: erpnext/crm/doctype/lead/lead.py:398 +#: erpnext/crm/doctype/lead/lead.py:399 msgid "Lead {0} has been added to prospect {1}." msgstr "线索{0}已添加至潜在客户{1}" @@ -28969,7 +29004,7 @@ msgstr "图例" msgid "Length (cm)" msgstr "长(公分)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:904 msgid "Less Than Amount" msgstr "小于金额" @@ -28998,7 +29033,7 @@ msgstr "物料清单层级" msgid "Lft" msgstr "Lft" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:262 msgid "Liabilities" msgstr "负债" @@ -29028,7 +29063,7 @@ msgstr "许可证号" msgid "License Plate" msgstr "车牌" -#: erpnext/controllers/status_updater.py:501 +#: erpnext/controllers/status_updater.py:512 msgid "Limit Crossed" msgstr "超出最大数量" @@ -29124,8 +29159,8 @@ msgid "Linking to Customer Failed. Please try again." msgstr "客户关联失败,请重试" #: erpnext/selling/doctype/customer/customer.js:282 -msgid "Linking to Supplier Failed. Please try again." -msgstr "供应商关联失败,请重试" +msgid "Linking to Supplier failed. Please try again." +msgstr "" #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -29291,7 +29326,7 @@ msgstr "未成交原因说明" #. 'Quotation' #: erpnext/crm/doctype/opportunity/opportunity.json #: erpnext/crm/report/lost_opportunity/lost_opportunity.py:54 -#: erpnext/public/js/utils/sales_common.js:596 +#: erpnext/public/js/utils/sales_common.js:602 #: erpnext/selling/doctype/quotation/quotation.json msgid "Lost Reasons" msgstr "未成交原因" @@ -29377,7 +29412,7 @@ msgstr "积分兑换" msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned." msgstr "系统将根据消费金额(销售发票),乘以兑换系数为客户自动积分。" -#: erpnext/public/js/utils.js:200 +#: erpnext/public/js/utils.js:208 msgid "Loyalty Points: {0}" msgstr "积分:{0}" @@ -29615,7 +29650,7 @@ msgstr "保养计划详情" msgid "Maintenance Schedule Item" msgstr "维护计划物料" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:371 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:372 msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'" msgstr "维护计划没有为所有物料生成,请点击“生成计划”" @@ -29712,7 +29747,7 @@ msgstr "维护巡修" msgid "Maintenance Visit Purpose" msgstr "维护巡修目的" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:353 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:354 msgid "Maintenance start date can not be before delivery date for Serial No {0}" msgstr "序列号为{0}的开始日期不能早于出货日期" @@ -29859,7 +29894,7 @@ msgstr "针对资产负债科目必填" msgid "Mandatory For Profit and Loss Account" msgstr "针对损益科目必填" -#: erpnext/selling/doctype/quotation/mapper.py:269 +#: erpnext/selling/doctype/quotation/mapper.py:267 msgid "Mandatory Missing" msgstr "缺少必填项" @@ -29942,8 +29977,8 @@ msgstr "请到会计设置-递延记账设置中取消勾选自动生成递延 #: erpnext/stock/doctype/material_request_item/material_request_item.json #: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:730 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:712 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json #: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -30165,7 +30200,7 @@ msgstr "正在映射外包收货订单..." msgid "Mapping Subcontracting Order ..." msgstr "正在映射外协订单..." -#: erpnext/public/js/utils.js:1058 +#: erpnext/public/js/utils.js:1075 msgid "Mapping {0} ..." msgstr "正在映射{0}..." @@ -30343,10 +30378,6 @@ msgstr "" msgid "Matched" msgstr "" -#: erpnext/stock/report/item_where_used/item_where_used.py:57 -msgid "Matched Field" -msgstr "" - #. Label of the matched_transaction_rule (Link) field in DocType 'Bank #. Transaction' #: erpnext/accounts/doctype/bank_transaction/bank_transaction.json @@ -30373,7 +30404,7 @@ msgstr "工单耗用" #. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type' #: erpnext/setup/setup_wizard/operations/install_fixtures.py:114 #: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_entry/stock_entry.py:714 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:713 #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json msgid "Material Consumption for Manufacture" msgstr "工单耗用" @@ -30484,7 +30515,7 @@ msgstr "物料需求" #. Label of the material_request_date (Date) field in DocType 'Production Plan #. Material Request' -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:20 #: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json msgid "Material Request Date" msgstr "物料需求日期" @@ -30534,7 +30565,7 @@ msgstr "物料需求信息" msgid "Material Request Item" msgstr "物料需求明细" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:26 msgid "Material Request No" msgstr "物料需求单号" @@ -30556,7 +30587,7 @@ msgstr "物料需求类型" msgid "Material Request already created for the ordered quantity" msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:925 +#: erpnext/selling/doctype/sales_order/mapper.py:929 msgid "Material Request not created, as quantity for Raw Materials already available." msgstr "因原材料可用数量足够,物料需求未创建,。" @@ -30570,7 +30601,7 @@ msgstr "销售订单{2}中物料{1}的最大物流申请量为{0}" msgid "Material Request used to make this Stock Entry" msgstr "创建此物料移动的物料需求" -#: erpnext/controllers/subcontracting_controller.py:1306 +#: erpnext/controllers/subcontracting_controller.py:1310 msgid "Material Request {0} is cancelled or stopped" msgstr "物料需求{0}已取消或已停止" @@ -30690,14 +30721,14 @@ msgstr "委外原材料" msgid "Materials To Be Transferred" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1550 +#: erpnext/controllers/subcontracting_controller.py:1554 msgid "Materials are already received against the {0} {1}" msgstr "已根据{0}{1}接收物料" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 -msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}" -msgstr "请先为生产任务单 {0} 发料(直接调拨)" +msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" +msgstr "" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -30865,7 +30896,7 @@ msgstr "兆焦耳" msgid "Megawatt" msgstr "兆瓦" -#: erpnext/stock/stock_ledger.py:2056 +#: erpnext/stock/stock_ledger.py:2045 msgid "Mention Valuation Rate in the Item master." msgstr "请在物料主数据中维护成本价" @@ -30900,7 +30931,7 @@ msgstr "合并进度" msgid "Merge similar Account Heads" msgstr "" -#: erpnext/public/js/utils.js:1090 +#: erpnext/public/js/utils.js:1107 msgid "Merge taxes from multiple documents" msgstr "合并多单据的税款" @@ -31246,7 +31277,7 @@ msgstr "杂项费用" msgid "Mismatch" msgstr "不匹配" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1251 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1364 msgid "Missing" msgstr "缺失" @@ -31255,11 +31286,11 @@ msgstr "缺失" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:154 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:334 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:368 -#: erpnext/assets/doctype/asset_category/asset_category.py:126 +#: erpnext/assets/doctype/asset_category/asset_category.py:127 msgid "Missing Account" msgstr "缺少账户" -#: erpnext/assets/doctype/asset_category/asset_category.py:191 +#: erpnext/assets/doctype/asset_category/asset_category.py:192 msgid "Missing Accounts" msgstr "" @@ -31284,11 +31315,11 @@ msgstr "" msgid "Missing Filters" msgstr "缺少筛选条件" -#: erpnext/assets/doctype/asset/asset.py:422 +#: erpnext/assets/doctype/asset/asset.py:424 msgid "Missing Finance Book" msgstr "缺少财务账簿" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:889 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 msgid "Missing Finished Good" msgstr "无成品明细行" @@ -31296,7 +31327,7 @@ msgstr "无成品明细行" msgid "Missing Formula" msgstr "未维护公式" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:906 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:907 msgid "Missing Item" msgstr "缺少物料" @@ -31308,7 +31339,7 @@ msgstr "" msgid "Missing Payments App" msgstr "缺少支付应用" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 msgid "Missing Required Filter" msgstr "" @@ -31320,7 +31351,7 @@ msgstr "缺少序列号包" msgid "Missing Warehouse" msgstr "" -#: erpnext/assets/doctype/asset_category/asset_category.py:156 +#: erpnext/assets/doctype/asset_category/asset_category.py:157 msgid "Missing account configuration for company {0}." msgstr "" @@ -31328,12 +31359,12 @@ msgstr "" msgid "Missing email template for dispatch. Please set one in Delivery Settings." msgstr "未配置外发电子邮件模板。请在“出货设置”中设置。" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:251 msgid "Missing required filter: {0}" msgstr "" #: erpnext/manufacturing/doctype/bom/bom.py:911 -#: erpnext/manufacturing/doctype/work_order/work_order.py:933 +#: erpnext/manufacturing/doctype/work_order/work_order.py:929 msgid "Missing value" msgstr "缺失值" @@ -31582,17 +31613,17 @@ msgstr "" msgid "Multiple Accounts (Journal Template)" msgstr "" -#: erpnext/selling/doctype/customer/customer.py:440 -msgid "Multiple Loyalty Programs found for Customer {}. Please select manually." -msgstr "发现客户{}存在多个忠诚度计划,请手动选择" +#: erpnext/selling/doctype/customer/customer.py:443 +msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" msgstr "多个POS期初凭证" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 -msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "如果相同条件有多条规则存在,请分配优先级解决冲突。动态定价规则:{0}" +msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" +msgstr "" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -31612,7 +31643,7 @@ msgstr "" msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year" msgstr "多个财年的日期{0}存在。请设置公司财年" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:896 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:895 msgid "Multiple items cannot be marked as finished item" msgstr "只允许一个明细行勾选了是成品" @@ -31621,10 +31652,10 @@ msgid "Music" msgstr "音乐" #. Label of the must_be_whole_number (Check) field in DocType 'UOM' -#: erpnext/manufacturing/doctype/work_order/work_order.py:880 +#: erpnext/manufacturing/doctype/work_order/work_order.py:876 #: erpnext/setup/doctype/uom/uom.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267 -#: erpnext/utilities/transaction_base.py:630 +#: erpnext/utilities/transaction_base.py:627 msgid "Must be Whole Number" msgstr "必须是整数" @@ -31709,11 +31740,7 @@ msgstr "命名规则为必填项" msgid "Naming Series options" msgstr "" -#: erpnext/public/js/utils/naming_series.js:196 -msgid "Naming Series updated" -msgstr "" - -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:950 msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction." msgstr "" @@ -31757,7 +31784,7 @@ msgstr "需求分析" msgid "Negative Batch Report" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:637 msgid "Negative Quantity is not allowed" msgstr "不能是负数" @@ -31767,12 +31794,12 @@ msgstr "不能是负数" msgid "Negative Stock" msgstr "" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608 -#: erpnext/stock/serial_batch_bundle.py:1558 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1606 +#: erpnext/stock/serial_batch_bundle.py:1560 msgid "Negative Stock Error" msgstr "负库存错误" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:641 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:642 msgid "Negative Valuation Rate is not allowed" msgstr "成本价不可以为负数" @@ -31850,8 +31877,8 @@ msgstr "净额" msgid "Net Amount (Company Currency)" msgstr "净额(本币)" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900 msgid "Net Asset value as on" msgstr "资产净值" @@ -31901,7 +31928,7 @@ msgstr "净工费率" #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214 #: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:129 msgid "Net Profit" msgstr "净利" @@ -31909,7 +31936,7 @@ msgstr "净利" msgid "Net Profit Ratio" msgstr "净利率" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:194 msgid "Net Profit/Loss" msgstr "净损益" @@ -31923,11 +31950,11 @@ msgstr "净损益" msgid "Net Purchase Amount" msgstr "采购金额(未税)" -#: erpnext/assets/doctype/asset/asset.py:453 +#: erpnext/assets/doctype/asset/asset.py:455 msgid "Net Purchase Amount is mandatory" msgstr "净采购金额为必填项" -#: erpnext/assets/doctype/asset/asset.py:563 +#: erpnext/assets/doctype/asset/asset.py:565 msgid "Net Purchase Amount should be equal to purchase amount of one single Asset." msgstr "净采购金额应等于单项资产的采购金额。" @@ -32171,7 +32198,7 @@ msgstr "" msgid "New Income" msgstr "新的收入" -#: erpnext/selling/page/point_of_sale/pos_controller.js:259 +#: erpnext/selling/page/point_of_sale/pos_controller.js:250 msgid "New Invoice" msgstr "新发票" @@ -32244,6 +32271,7 @@ msgid "New Task" msgstr "新任务" #: erpnext/manufacturing/doctype/bom/bom.js:247 +#: erpnext/selling/doctype/product_bundle/product_bundle.js:17 msgid "New Version" msgstr "新版本" @@ -32256,9 +32284,9 @@ msgstr "新仓库名称" msgid "New Workplace" msgstr "新工作地点" -#: erpnext/selling/doctype/customer/customer.py:405 -msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}" -msgstr "新的信用额度小于该客户未付总额。信用额度至少应该是 {0}" +#: erpnext/selling/doctype/customer/customer.py:408 +msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" +msgstr "" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32266,6 +32294,10 @@ msgstr "新的信用额度小于该客户未付总额。信用额度至少应该 msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date" msgstr "即使当前发票未付或过期,仍将按计划生成新发票" +#: erpnext/support/doctype/issue/issue.js:126 +msgid "New issue created: {0}" +msgstr "" + #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" msgstr "新的解除临时冻结日期必须晚于今天" @@ -32278,7 +32310,7 @@ msgstr "" msgid "New task" msgstr "新任务" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:253 msgid "New {0} pricing rules are created" msgstr "创建新{0}动态规则" @@ -32342,16 +32374,15 @@ msgstr "" msgid "No Customer found for Inter Company Transactions which represents company {0}" msgstr "未找到代表公司{0}的关联公司交易客户" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:436 msgid "No Customers found with selected options." msgstr "无满足筛选条件的客户" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 -msgid "No Delivery Note selected for Customer {}" -msgstr "没有为客户{}选择销售出库" +msgid "No Delivery Note selected for Customer {0}" +msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." msgstr "" @@ -32359,15 +32390,15 @@ msgstr "" msgid "No Impact on Accounting Ledger" msgstr "不影响会计分类账" -#: erpnext/stock/get_item_details.py:341 +#: erpnext/stock/get_item_details.py:340 msgid "No Item with Barcode {0}" msgstr "没有条码为{0}的物料" -#: erpnext/stock/get_item_details.py:345 +#: erpnext/stock/get_item_details.py:344 msgid "No Item with Serial No {0}" msgstr "没启用序列号管理为{0}的物料" -#: erpnext/controllers/subcontracting_controller.py:1462 +#: erpnext/controllers/subcontracting_controller.py:1466 msgid "No Items selected for transfer." msgstr "未选择待转移物料" @@ -32410,11 +32441,6 @@ msgstr "无此权限" msgid "No Purchase Orders were created" msgstr "未创建采购订单" -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 -#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 -msgid "No Records for these settings." -msgstr "无满足筛选条件的数据" - #: erpnext/public/js/utils/unreconcile.js:147 msgid "No Selection" msgstr "无选择项" @@ -32517,6 +32543,10 @@ msgstr "" msgid "No contacts with email IDs found." msgstr "找不到与电子邮件ID的联系人。" +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 +msgid "No customers found with selected options." +msgstr "" + #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" msgstr "本时间段无数据" @@ -32562,7 +32592,7 @@ msgstr "" msgid "No invoice linked" msgstr "" -#: erpnext/controllers/subcontracting_controller.py:1351 +#: erpnext/controllers/subcontracting_controller.py:1355 msgid "No item available for transfer." msgstr "无可用转移物料" @@ -32599,10 +32629,6 @@ msgstr "左侧无更多子节点" msgid "No more children on Right" msgstr "右侧无更多子节点" -#: erpnext/public/js/utils/naming_series.js:385 -msgid "No naming series defined" -msgstr "" - #: erpnext/selling/doctype/sales_order/sales_order.js:638 msgid "No of Deliveries" msgstr "交货次数" @@ -32699,7 +32725,7 @@ msgstr "没有找到未完成的发票" msgid "No outstanding invoices require exchange rate revaluation" msgstr "无需汇率重估的未付发票" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2171 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2169 msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified." msgstr "没有找到针对{1} {2} 及相关过滤条件的未付发票或订单" @@ -32737,15 +32763,20 @@ msgstr "" msgid "No record found" msgstr "未找到记录" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 +#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 +msgid "No records for these settings." +msgstr "" + +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" msgstr "分配表中无记录" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:650 msgid "No records found in the Invoices table" msgstr "发票表中无记录" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:653 msgid "No records found in the Payments table" msgstr "付款表中无记录" @@ -32774,7 +32805,7 @@ msgstr "" msgid "No stock available for this batch." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:818 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:819 msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again." msgstr "未生成库存分类账条目。请正确设置物料数量或计价率后重试。" @@ -32811,7 +32842,7 @@ msgstr "无金额" msgid "No vouchers found for this transaction" msgstr "" -#: erpnext/stock/doctype/item/item.py:1734 +#: erpnext/stock/doctype/item/item.py:1736 msgid "No warehouse found for company {0}. Please set a Default Warehouse in Item Defaults or Stock Settings." msgstr "" @@ -32819,11 +32850,6 @@ msgstr "" msgid "No {0} found for Inter Company Transactions." msgstr "关联公司交易没有找到{0}。" -#: erpnext/assets/doctype/asset/asset.js:377 -#: erpnext/stock/doctype/item/item_prices.html:80 -msgid "No." -msgstr "编号" - #. Label of the no_of_employees (Select) field in DocType 'Prospect' #: erpnext/crm/doctype/prospect/prospect.json msgid "No. of Employees" @@ -32875,7 +32901,7 @@ msgstr "非零值" msgid "Non-phantom BOM cannot be created for non-stock item {0}." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:567 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:568 msgid "None of the items have any change in quantity or value." msgstr "物料数量或金额无任何变化。" @@ -32886,8 +32912,8 @@ msgid "Normal Balances" msgstr "" #. Name of a UOM -#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:691 -#: erpnext/stock/utils.py:693 +#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:690 +#: erpnext/stock/utils.py:692 msgid "Nos" msgstr "个" @@ -32901,8 +32927,8 @@ msgstr "个" msgid "Not Applicable" msgstr "不适用" -#: erpnext/selling/page/point_of_sale/pos_controller.js:824 -#: erpnext/selling/page/point_of_sale/pos_controller.js:853 +#: erpnext/selling/page/point_of_sale/pos_controller.js:815 +#: erpnext/selling/page/point_of_sale/pos_controller.js:844 msgid "Not Available" msgstr "不可用" @@ -32965,10 +32991,6 @@ msgstr "未开始" msgid "Not able to find the earliest Fiscal Year for the given company." msgstr "无法找到指定公司的最早会计年度。" -#: erpnext/stock/doctype/item_alternative/item_alternative.py:36 -msgid "Not allow to set alternative item for the item {0}" -msgstr "不允许为物料{0}设置替代物料" - #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60 msgid "Not allowed to create accounting dimension for {0}" msgstr "不允许为{0}创建会计维度" @@ -32985,10 +33007,6 @@ msgstr "由于{0}超出限额,未获授权" msgid "Not authorized to edit frozen Account {0}" msgstr "无权修改冻结科目{0}" -#: erpnext/public/js/utils/naming_series.js:326 -msgid "Not configured" -msgstr "" - #: erpnext/templates/form_grid/stock_entry_grid.html:26 msgid "Not in Stock" msgstr "断货" @@ -33001,7 +33019,7 @@ msgstr "缺货" msgid "Not permitted to make Purchase Orders" msgstr "无权创建采购订单" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1814 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1815 msgid "Not permitted to read Job Card" msgstr "" @@ -33246,8 +33264,8 @@ msgid "Numeric Values" msgstr "数字值" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 -msgid "Numero has not set in the XML file" -msgstr "XML文件中未设置编号" +msgid "Numero has not been set in the XML file" +msgstr "" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33422,12 +33440,12 @@ msgid "Once set, this invoice will be on hold till the set date" msgstr "一旦设置,该发票将被临时冻结至设定的日期" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 -msgid "Once the Work Order is Closed. It can't be resumed." -msgstr "不能恢复已关闭工单" +msgid "Once the Work Order is Closed, it cannot be resumed." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 -msgid "One customer can be part of only single Loyalty Program." -msgstr "一个客户只能参与一个积分方案。" +msgid "One customer can be part of only a single Loyalty Program." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -33461,7 +33479,7 @@ msgstr "仅支持收付款凭证中使用此科目" msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload" msgstr "仅支持CSV和Excel文件格式导入数据,请检查上传文件格式" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1083 msgid "Only CSV files are allowed" msgstr "" @@ -33526,7 +33544,7 @@ msgstr "" msgid "Only one version of a Product Bundle can be active at a time for a given Parent Item. Activating a version deactivates the previously active one." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:729 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:728 msgid "Only one {0} entry can be created against the Work Order {1}" msgstr "每个工单{1}仅能创建一个{0}条目" @@ -33593,7 +33611,7 @@ msgstr "打开事件" msgid "Open Events" msgstr "未关闭事件" -#: erpnext/selling/page/point_of_sale/pos_controller.js:252 +#: erpnext/selling/page/point_of_sale/pos_controller.js:243 msgid "Open Form View" msgstr "打开表单视图" @@ -33746,7 +33764,7 @@ msgstr "" #. Label of the balance_details (Table) field in DocType 'POS Opening Entry' #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json -#: erpnext/selling/page/point_of_sale/pos_controller.js:90 +#: erpnext/selling/page/point_of_sale/pos_controller.js:81 msgid "Opening Balance Details" msgstr "起始余额明细" @@ -33776,7 +33794,7 @@ msgstr "问题提交日期" msgid "Opening Entry" msgstr "开账凭证" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:311 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:323 msgid "Opening Invoice Creation In Progress" msgstr "期初发票创建中" @@ -33804,7 +33822,7 @@ msgstr "待处理发票明细" msgid "Opening Invoice Tool" msgstr "" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:829 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:832 #: erpnext/accounts/doctype/sales_invoice/services/gl_composer.py:642 msgid "Opening Invoice has rounding adjustment of {0}.

                    '{1}' account is required to post these values. Please set it in Company: {2}.

                    Or, '{3}' can be enabled to not post any rounding adjustment." msgstr "期初发票存在{0}的舍入调整。

                    需设置'{1}'科目以过账这些值,请在公司{2}中设置。

                    或启用'{3}'以不过账任何舍入调整" @@ -33813,7 +33831,7 @@ msgstr "期初发票存在{0}的舍入调整。

                    需设置'{1}'科目以 msgid "Opening Invoices" msgstr "待创建发票" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:139 msgid "Opening Invoices Summary" msgstr "待创建发票汇总" @@ -33843,20 +33861,20 @@ msgstr "已创建期初销售发票" #. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation' #: erpnext/stock/doctype/item/item.js:958 erpnext/stock/doctype/item/item.json #: erpnext/stock/doctype/item/item.py:351 -#: erpnext/stock/doctype/item/item.py:1634 +#: erpnext/stock/doctype/item/item.py:1636 #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json msgid "Opening Stock" msgstr "期初库存" -#: erpnext/stock/doctype/item/item.py:1588 +#: erpnext/stock/doctype/item/item.py:1590 msgid "Opening Stock can only be set for stock items." msgstr "" -#: erpnext/stock/doctype/item/item.py:1595 +#: erpnext/stock/doctype/item/item.py:1597 msgid "Opening Stock cannot be created as stock transactions already exist for item {0}." msgstr "" -#: erpnext/stock/doctype/item/item.py:1591 +#: erpnext/stock/doctype/item/item.py:1593 msgid "Opening Stock for serialised or batch items must be set via the Stock Reconciliation form." msgstr "" @@ -33865,7 +33883,7 @@ msgid "Opening Stock reconciliation created with zero valuation rate: {0}" msgstr "" #: erpnext/stock/doctype/item/item.py:364 -#: erpnext/stock/doctype/item/item.py:1637 +#: erpnext/stock/doctype/item/item.py:1639 msgid "Opening Stock reconciliation created: {0}" msgstr "" @@ -33908,7 +33926,7 @@ msgstr "运营组件成本" #: erpnext/manufacturing/doctype/bom/bom.json #: erpnext/manufacturing/doctype/bom_operation/bom_operation.json #: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:129 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124 msgid "Operating Cost" msgstr "工费成本" @@ -33999,7 +34017,7 @@ msgstr "工序行号" msgid "Operation Time" msgstr "工序时间" -#: erpnext/manufacturing/doctype/work_order/work_order.py:942 +#: erpnext/manufacturing/doctype/work_order/work_order.py:938 msgid "Operation Time must be greater than 0 for Operation {0}" msgstr "工序{0}的时间必须大于0" @@ -34023,8 +34041,8 @@ msgid "Operation {0} does not belong to the work order {1}" msgstr "工序{0}不属于工单{1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 -msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "工序{0}时间超过任何工站开工时间{1},请分解成多个工序" +msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" +msgstr "" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34209,6 +34227,10 @@ msgstr "商机 {0} 已创建" msgid "Optimize Route" msgstr "优化路线" +#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 +msgid "Optimizing route" +msgstr "" + #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." msgstr "" @@ -34225,10 +34247,6 @@ msgstr "可选。此设置将被应用于各种交易进行过滤。" msgid "Optional. Used with Financial Report Template" msgstr "" -#: erpnext/public/js/utils/naming_series.js:83 -msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits." -msgstr "" - #: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43 msgid "Order Amount" msgstr "订单金额" @@ -34514,7 +34532,7 @@ msgid "Out of stock" msgstr "缺货" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:208 +#: erpnext/selling/page/point_of_sale/pos_controller.js:199 msgid "Outdated POS Opening Entry" msgstr "过期的POS期初凭证" @@ -34568,7 +34586,7 @@ msgstr "未清金额(公司货币)" #: erpnext/accounts/doctype/cashier_closing/cashier_closing.json #: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:896 #: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300 @@ -34649,11 +34667,11 @@ msgstr "" msgid "Over Picking Allowance (%)" msgstr "" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:391 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:390 msgid "Over Receipt" msgstr "超收" -#: erpnext/controllers/status_updater.py:506 +#: erpnext/controllers/status_updater.py:517 msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role." msgstr "因您具有{3}角色,物料{2}的{0} {1}超收/交付已被忽略" @@ -34670,14 +34688,14 @@ msgstr "允许超量发料(%)" msgid "Over Withheld" msgstr "" -#: erpnext/controllers/status_updater.py:508 +#: erpnext/accounts/services/billing_validation.py:56 +msgid "Overbilling of {0} ignored because you have {1} role." +msgstr "" + +#: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." msgstr "因您具有{3}角色,物料{2}的{0} {1}超计费已被忽略" -#: erpnext/accounts/services/billing_validation.py:56 -msgid "Overbilling of {} ignored because you have {} role." -msgstr "因您具有{}角色,{}超计费已被忽略" - #. Option for the 'Status' (Select) field in DocType 'POS Invoice' #. Option for the 'Status' (Select) field in DocType 'Purchase Invoice' #. Option for the 'Status' (Select) field in DocType 'Sales Invoice' @@ -34726,10 +34744,6 @@ msgstr "逾期任务" msgid "Overdue and Discounted" msgstr "已贴现逾期" -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70 -msgid "Overlap in scoring between {0} and {1}" -msgstr "{0}和{1}之间的得分重叠" - #: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206 msgid "Overlapping conditions found between:" msgstr "之间存在重叠的条件:" @@ -34795,6 +34809,11 @@ msgstr "永久账户号码" msgid "PCV" msgstr "" +#. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "PCV Job Timeout (seconds)" +msgstr "" + #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" msgstr "" @@ -34842,7 +34861,7 @@ msgstr "POS" msgid "POS Additional Fields" msgstr "POS附加字段" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Closed" msgstr "POS已关闭" @@ -34940,8 +34959,8 @@ msgid "POS Invoice is not submitted" msgstr "销售点发票未提交" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 -msgid "POS Invoice isn't created by user {}" -msgstr "销售点发票非用户{}创建" +msgid "POS Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35000,7 +35019,7 @@ msgstr "POS期初凭证 - {0}已过期。请关闭POS并创建新的POS期初凭 msgid "POS Opening Entry Cancellation Error" msgstr "POS期初凭证取消错误" -#: erpnext/selling/page/point_of_sale/pos_controller.js:183 +#: erpnext/selling/page/point_of_sale/pos_controller.js:174 msgid "POS Opening Entry Cancelled" msgstr "POS期初凭证已取消" @@ -35021,7 +35040,7 @@ msgstr "POS期初凭证缺失" msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists." msgstr "因存在未合并发票,无法取消POS期初凭证" -#: erpnext/selling/page/point_of_sale/pos_controller.js:189 +#: erpnext/selling/page/point_of_sale/pos_controller.js:180 msgid "POS Opening Entry has been cancelled. Please refresh the page." msgstr "POS期初凭证已取消,请刷新页面" @@ -35044,7 +35063,7 @@ msgstr "销售点付款方式" #: erpnext/accounts/report/pos_register/pos_register.js:32 #: erpnext/accounts/report/pos_register/pos_register.py:126 #: erpnext/accounts/report/pos_register/pos_register.py:204 -#: erpnext/selling/page/point_of_sale/pos_controller.js:80 +#: erpnext/selling/page/point_of_sale/pos_controller.js:71 #: erpnext/workspace_sidebar/selling.json msgid "POS Profile" msgstr "POS设置" @@ -35064,8 +35083,8 @@ msgstr "POS配置文件用户" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 -msgid "POS Profile doesn't match {}" -msgstr "销售点配置不匹配{}" +msgid "POS Profile doesn't match {0}" +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35076,19 +35095,19 @@ msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions." msgstr "" #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 -msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode." -msgstr "销售点配置{}包含付款方式{}。请移除以禁用该方式" +msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 -msgid "POS Profile {} does not belong to company {}" +msgid "POS Profile {0} does not belong to company {1}" msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 -msgid "POS Profile {} does not exist." +msgid "POS Profile {0} does not exist." msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 -msgid "POS Profile {} is disabled." +msgid "POS Profile {0} is disabled." msgstr "" #. Name of a report @@ -35118,11 +35137,11 @@ msgstr "POS设置" msgid "POS Transactions" msgstr "销售点交易" -#: erpnext/selling/page/point_of_sale/pos_controller.js:187 +#: erpnext/selling/page/point_of_sale/pos_controller.js:178 msgid "POS has been closed at {0}. Please refresh the page." msgstr "POS已于{0}关闭,请刷新页面。" -#: erpnext/selling/page/point_of_sale/pos_controller.js:464 +#: erpnext/selling/page/point_of_sale/pos_controller.js:455 msgid "POS invoice {0} created successfully" msgstr "销售点发票{0}创建成功" @@ -35141,7 +35160,7 @@ msgstr "PSOA项目" msgid "PZN" msgstr "药品中央编号" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:116 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:114 msgid "Package No(s) already in use. Try from Package No {0}" msgstr "包裹号已被使用。请从包裹号{0}开始尝试" @@ -35766,7 +35785,7 @@ msgstr "百万分率" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240 #: erpnext/accounts/report/general_ledger/general_ledger.js:74 -#: erpnext/accounts/report/general_ledger/general_ledger.py:775 +#: erpnext/accounts/report/general_ledger/general_ledger.py:776 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:51 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:161 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46 @@ -35893,7 +35912,7 @@ msgstr "交易方不匹配" #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json #: erpnext/accounts/report/general_ledger/general_ledger.js:111 -#: erpnext/accounts/report/general_ledger/general_ledger.py:784 +#: erpnext/accounts/report/general_ledger/general_ledger.py:785 #: erpnext/crm/doctype/contract/contract.json #: erpnext/selling/doctype/party_specific_item/party_specific_item.json #: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22 @@ -35979,7 +35998,7 @@ msgstr "客户/供应商可交易物料" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231 #: erpnext/accounts/report/general_ledger/general_ledger.js:65 -#: erpnext/accounts/report/general_ledger/general_ledger.py:774 +#: erpnext/accounts/report/general_ledger/general_ledger.py:775 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:41 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:157 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35 @@ -36000,7 +36019,7 @@ msgstr "往来类型" msgid "Party Type and Party can only be set for Receivable / Payable account

                    {0}" msgstr "交易方类型和交易方仅可设置应收/应付账户

                    {0}" -#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:639 +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:644 msgid "Party Type and Party is mandatory for {0} account" msgstr "科目{0}业务伙伴类型及业务伙伴信息必填" @@ -36036,7 +36055,7 @@ msgid "Party is required" msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 -msgid "Party is required create a payment entry." +msgid "Party is required to create a payment entry." msgstr "" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 @@ -36546,7 +36565,7 @@ msgstr "付款参考" #. Name of a DocType #. Label of a Workspace Sidebar Item #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719 #: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json #: erpnext/accounts/doctype/payment_order/payment_order.js:19 #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -36621,7 +36640,7 @@ msgstr "付款计划" msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document." msgstr "" -#: erpnext/public/js/controllers/transaction.js:503 +#: erpnext/public/js/controllers/transaction.js:522 msgid "Payment Schedules" msgstr "" @@ -36643,7 +36662,7 @@ msgstr "" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211 #: erpnext/accounts/report/gross_profit/gross_profit.py:449 #: erpnext/accounts/workspace/invoicing/invoicing.json -#: erpnext/public/js/controllers/transaction.js:518 +#: erpnext/public/js/controllers/transaction.js:537 #: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:32 #: erpnext/workspace_sidebar/accounts_setup.json msgid "Payment Term" @@ -36743,8 +36762,8 @@ msgid "Payment Type" msgstr "付款类型" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 -msgid "Payment Type must be one of Receive, Pay and Internal Transfer" -msgstr "付款方式必须是收、付或转" +msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" +msgstr "" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -36950,11 +36969,11 @@ msgstr "今天待定活动" msgid "Pending processing" msgstr "等待后台处理" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1598 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1599 msgid "Pending quantity cannot be greater than the for quantity." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1592 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1593 msgid "Pending quantity cannot be negative." msgstr "" @@ -37470,12 +37489,12 @@ msgstr "Plaid客户端ID" msgid "Plaid Environment" msgstr "Plaid环境" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154 -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:177 msgid "Plaid Link Failed" msgstr "Plaid链接失败" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 msgid "Plaid Link Refresh Required" msgstr "需刷新Plaid链接" @@ -37497,7 +37516,7 @@ msgstr "Plaid密钥" msgid "Plaid Settings" msgstr "格子设置" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:226 msgid "Plaid transactions sync error" msgstr "格子交易同步错误" @@ -37648,15 +37667,6 @@ msgstr "植物和机械设备" msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List." msgstr "请补货并更新领料单以继续。若要终止,请取消领料单。" -#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 -msgid "Please Select a Company" -msgstr "请先选择公司" - -#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 -msgid "Please Select a Company." -msgstr "请先选择公司" - -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/stock/doctype/delivery_note/delivery_note.js:162 #: erpnext/stock/doctype/delivery_note/delivery_note.js:204 msgid "Please Select a Customer" @@ -37664,7 +37674,6 @@ msgstr "请选择客户" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123 #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222 -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please Select a Supplier" msgstr "请选择供应商" @@ -37672,19 +37681,19 @@ msgstr "请选择供应商" msgid "Please Set Priority" msgstr "请设置优先级" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:182 msgid "Please Set Supplier Group in Buying Settings." msgstr "请设置供应商组采购设置。" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1910 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1919 msgid "Please Specify Account" msgstr "请指定账户" -#: erpnext/buying/doctype/supplier/supplier.py:128 +#: erpnext/buying/doctype/supplier/supplier.py:129 msgid "Please add 'Supplier' role to user {0}." msgstr "请为用户{0}添加'供应商'角色" -#: erpnext/selling/page/point_of_sale/pos_controller.js:101 +#: erpnext/selling/page/point_of_sale/pos_controller.js:92 msgid "Please add Mode of payments and opening balance details." msgstr "请添加付款方式和期初余额明细" @@ -37700,7 +37709,7 @@ msgstr "请在门户设置中将报价请求添加到侧边栏" msgid "Please add Root Account for - {0}" msgstr "请为-{0}添加根账户" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:327 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:339 msgid "Please add a Temporary Opening account in Chart of Accounts" msgstr "请在会计科目表中添加一个临时开账科目" @@ -37708,35 +37717,32 @@ msgstr "请在会计科目表中添加一个临时开账科目" msgid "Please add an account for the Bank Entry rule." msgstr "" -#: erpnext/public/js/utils/naming_series.js:170 -msgid "Please add at least one naming series." +#: erpnext/public/js/utils/serial_no_batch_selector.js:663 +msgid "Please add at least one Serial No / Batch No" msgstr "" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." msgstr "" -#: erpnext/public/js/utils/serial_no_batch_selector.js:663 -msgid "Please add atleast one Serial No / Batch No" -msgstr "请至少添加一个序列号/批次号" +#: erpnext/crm/doctype/crm_settings/crm_settings.py:51 +msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." +msgstr "" #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" msgstr "请包括银行户头Bank Account字段" -#: erpnext/accounts/doctype/account/account_tree.js:239 +#: erpnext/accounts/doctype/account/account.py:237 +#: erpnext/accounts/doctype/account/account_tree.js:240 msgid "Please add the account to root level Company - {0}" msgstr "请将账户添加至根级公司-{0}" -#: erpnext/accounts/doctype/account/account.py:237 -msgid "Please add the account to root level Company - {}" -msgstr "请将账户添加至根级公司-{}" - #: erpnext/controllers/website_list_for_contact.py:305 msgid "Please add {1} role to user {0}." msgstr "请为用户{0}添加{1}角色" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:403 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:402 msgid "Please adjust the qty or edit {0} to proceed." msgstr "请调整数量或修改 {0} 后继续" @@ -37778,7 +37784,7 @@ msgstr "有工艺路线与启用计件成本两个勾选字段必须二选一" msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item." msgstr "" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:617 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:620 msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again." msgstr "请详细检查相关错误消息,修正相关主数据或业务数据后重新执行" @@ -37791,11 +37797,11 @@ msgstr "请检查您的Plaid客户端ID和密钥值" msgid "Please check your email to confirm the appointment" msgstr "请检查您的电子邮件以确认预约" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:378 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:379 msgid "Please click on 'Generate Schedule'" msgstr "请点击“生成表”" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:390 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:391 msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}" msgstr "请点击“生成表”来获取序列号增加了对项目{0}" @@ -37811,15 +37817,15 @@ msgstr "" msgid "Please configure accounts for the Bank Entry rule." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:531 +#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 +msgid "Please contact any of the following users for this transaction." +msgstr "" + +#: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" msgstr "请联系以下人员为客户 {0} 增加信用额度:{1}" -#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 -msgid "Please contact any of the following users to {} this transaction." -msgstr "请联系以下用户以{}此交易" - -#: erpnext/selling/doctype/customer/customer.py:524 +#: erpnext/selling/doctype/customer/customer.py:527 msgid "Please contact your administrator to extend the credit limits for {0}." msgstr "请联系管理员延长{0}的信用额度" @@ -37827,11 +37833,11 @@ msgstr "请联系管理员延长{0}的信用额度" msgid "Please convert the parent account in corresponding child company to a group account." msgstr "请将对应子公司的上级账户转换为组账户" -#: erpnext/selling/doctype/quotation/mapper.py:267 +#: erpnext/selling/doctype/quotation/mapper.py:265 msgid "Please create Customer from Lead {0}." msgstr "请从线索{0}创建客户" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:158 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160 msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled." msgstr "请对启用'更新库存'的发票创建到岸成本凭证" @@ -37843,7 +37849,7 @@ msgstr "如需,请新建会计维度" msgid "Please create purchase from internal sale or delivery document itself" msgstr "请自关联方内部销售或出货单创建采购订单" -#: erpnext/assets/doctype/asset/asset.py:463 +#: erpnext/assets/doctype/asset/asset.py:465 msgid "Please create purchase receipt or purchase invoice for the item {0}" msgstr "请为物料{0}创建采购入库或采购发票" @@ -37855,11 +37861,11 @@ msgstr "在合并{1}到{2}前,请先删除产品套装{0}" msgid "Please disable workflow temporarily for Journal Entry {0}" msgstr "请暂时停用日记账凭证{0}的工作流。" -#: erpnext/assets/doctype/asset/asset.py:567 +#: erpnext/assets/doctype/asset/asset.py:569 msgid "Please do not book expense of multiple assets against one single Asset." msgstr "请勿将多个资产的费用记入单一资产" -#: erpnext/controllers/item_variant.py:301 +#: erpnext/controllers/item_variant.py:296 msgid "Please do not create more than 500 items at a time" msgstr "请不要一次创建超过500个物料" @@ -37884,8 +37890,8 @@ msgid "Please enable {0} in the {1}." msgstr "请在 {0} 启用 {1}" #: erpnext/controllers/selling_controller.py:872 -msgid "Please enable {} in {} to allow same item in multiple rows" -msgstr "请在{}中启用{}以允许同一物料多行显示" +msgid "Please enable {0} in {1} to allow same item in multiple rows" +msgstr "" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37896,12 +37902,12 @@ msgid "Please ensure that the {0} account {1} is a Payable account. You can chan msgstr "请确保{0}账户{1}为应付账户。您可更改账户类型为应付或选择其他账户" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 -msgid "Please ensure {} account is a Balance Sheet account." -msgstr "请确保{}账户为资产负债表账户" +msgid "Please ensure {0} account is a Balance Sheet account." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 -msgid "Please ensure {} account {} is a Receivable account." -msgstr "请确保{}账户{}为应收账户" +msgid "Please ensure {0} account {1} is a Receivable account." +msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -37916,7 +37922,7 @@ msgstr "请输入零钱科目" msgid "Please enter Approving Role or Approving User" msgstr "请输入角色核准或审批用户" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:691 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:692 msgid "Please enter Batch No" msgstr "" @@ -37932,7 +37938,7 @@ msgstr "请输入出货日期" msgid "Please enter Employee Id of this sales person" msgstr "请输入业务员员工号" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:980 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:981 msgid "Please enter Expense Account" msgstr "请输入您的费用科目" @@ -37941,7 +37947,7 @@ msgstr "请输入您的费用科目" msgid "Please enter Item Code to get Batch Number" msgstr "请输入产品代码来获得批号" -#: erpnext/public/js/controllers/transaction.js:3041 +#: erpnext/public/js/controllers/transaction.js:3109 msgid "Please enter Item Code to get batch no" msgstr "请输入物料号,以获得批号" @@ -37977,7 +37983,7 @@ msgstr "参考日期请输入" msgid "Please enter Root Type for account- {0}" msgstr "请输入账户-{0}的根类型" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:693 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:694 msgid "Please enter Serial No" msgstr "" @@ -38107,8 +38113,8 @@ msgid "Please generate the To Delete list before submitting" msgstr "" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 -msgid "Please import accounts against parent company or enable {} in company master." -msgstr "请根据母公司导入账户或在主公司中启用{}" +msgid "Please import accounts against parent company or enable {0} in company master." +msgstr "" #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38143,11 +38149,7 @@ msgstr "请注明要替换的当前和新的物料清单" msgid "Please pull items from Delivery Note" msgstr "请从销售出库获选物料" -#: erpnext/stock/doctype/shipment/shipment.js:444 -msgid "Please rectify and try again." -msgstr "请更正后重试" - -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 msgid "Please refresh or reset the Plaid linking of the Bank {}." msgstr "请刷新或重置银行{}的Plaid链接" @@ -38176,12 +38178,12 @@ msgstr "" msgid "Please select Template Type to download template" msgstr "请选择模板类型以下载模板" -#: erpnext/controllers/taxes_and_totals.py:859 -#: erpnext/public/js/controllers/taxes_and_totals.js:824 +#: erpnext/controllers/taxes_and_totals.py:861 +#: erpnext/public/js/controllers/taxes_and_totals.js:825 msgid "Please select Apply Discount On" msgstr "请选择适用的折扣" -#: erpnext/selling/doctype/sales_order/mapper.py:846 +#: erpnext/selling/doctype/sales_order/mapper.py:851 msgid "Please select BOM against item {0}" msgstr "请选择物料{0}的物料清单" @@ -38197,9 +38199,9 @@ msgstr "请选择银行账户" msgid "Please select Category first" msgstr "请先选择类型。" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492 -#: erpnext/public/js/controllers/accounts.js:94 -#: erpnext/public/js/controllers/accounts.js:145 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501 +#: erpnext/public/js/controllers/accounts.js:91 +#: erpnext/public/js/controllers/accounts.js:142 msgid "Please select Charge Type first" msgstr "请先选择费用类型" @@ -38209,8 +38211,8 @@ msgstr "请选择公司" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 -msgid "Please select Company and Posting Date to getting entries" -msgstr "请选择公司和记账日期以获取凭证" +msgid "Please select Company and Posting Date to get entries" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38232,7 +38234,7 @@ msgid "Please select Existing Company for creating Chart of Accounts" msgstr "请选择现有的公司创建会计科目表" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:277 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:289 msgid "Please select Finished Good Item for Service Item {0}" msgstr "请为服务项{0}选择产成品" @@ -38241,6 +38243,10 @@ msgstr "请为服务项{0}选择产成品" msgid "Please select Item Code first" msgstr "请先选择物料号" +#: erpnext/selling/doctype/sales_order/sales_order.js:1756 +msgid "Please select Items from the Table" +msgstr "" + #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" msgstr "请选择保养状态为已完成或删除完成日期" @@ -38265,11 +38271,11 @@ msgstr "在选择往来单位之前请先选择记账日期" msgid "Please select Posting Date first" msgstr "请先选择记账日期" -#: erpnext/manufacturing/doctype/bom/bom.py:1071 +#: erpnext/manufacturing/doctype/bom/bom.py:1073 msgid "Please select Price List" msgstr "请选择价格表" -#: erpnext/selling/doctype/sales_order/mapper.py:848 +#: erpnext/selling/doctype/sales_order/mapper.py:853 msgid "Please select Qty against item {0}" msgstr "请选择为物料{0}指定数量" @@ -38298,6 +38304,7 @@ msgid "Please select a BOM" msgstr "请选择一个物料清单" #: erpnext/accounts/party.py:436 +#: erpnext/selling/page/sales_funnel/sales_funnel.py:19 #: erpnext/stock/doctype/pick_list/pick_list.py:1358 msgid "Please select a Company" msgstr "请选择一个公司" @@ -38305,11 +38312,12 @@ msgstr "请选择一个公司" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:268 #: erpnext/manufacturing/doctype/bom/bom.js:730 #: erpnext/manufacturing/doctype/bom/bom.py:302 -#: erpnext/public/js/controllers/accounts.js:277 -#: erpnext/public/js/controllers/transaction.js:3340 +#: erpnext/public/js/controllers/accounts.js:274 +#: erpnext/public/js/controllers/transaction.js:3408 msgid "Please select a Company first." msgstr "请先选择公司" +#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:439 #: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18 msgid "Please select a Customer" msgstr "请先选择客户" @@ -38318,7 +38326,7 @@ msgstr "请先选择客户" msgid "Please select a Delivery Note" msgstr "请先选择销售出库" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:152 msgid "Please select a Subcontracting Purchase Order." msgstr "请选择委外采购订单" @@ -38330,7 +38338,7 @@ msgstr "请选择供应商" msgid "Please select a Warehouse" msgstr "请选择仓库" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1716 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1718 msgid "Please select a Work Order first." msgstr "请先选择生产工单" @@ -38346,6 +38354,7 @@ msgstr "" msgid "Please select a bank and set the date range" msgstr "" +#: erpnext/selling/page/sales_funnel/sales_funnel.js:114 #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53 msgid "Please select a company." msgstr "" @@ -38379,22 +38388,26 @@ msgid "Please select a frequency for delivery schedule" msgstr "请选择交货计划频率" #: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135 -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:72 msgid "Please select a row to create a Reposting Entry" msgstr "请选择行以创建重新过账分录" +#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 +msgid "Please select a supplier" +msgstr "" + #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." msgstr "请选择一个供应商以获取付款台账信息" -#: erpnext/public/js/utils/naming_series.js:165 -msgid "Please select a transaction." -msgstr "" - #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139 msgid "Please select a valid Purchase Order that is configured for Subcontracting." msgstr "请选择配置为委外的有效采购订单" +#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 +msgid "Please select a valid document type." +msgstr "" + #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" msgstr "请选择一个值{0} quotation_to {1}" @@ -38403,7 +38416,7 @@ msgstr "请选择一个值{0} quotation_to {1}" msgid "Please select an item code before setting the warehouse." msgstr "请先设置物料编码再设置仓库" -#: erpnext/controllers/item_variant.py:295 +#: erpnext/controllers/item_variant.py:290 msgid "Please select at least one attribute value" msgstr "" @@ -38411,10 +38424,18 @@ msgstr "" msgid "Please select at least one filter: Item Code, Batch, or Serial No." msgstr "请至少选择一个筛选条件:物料编码、批次或序列号" +#: erpnext/selling/doctype/sales_order/sales_order.js:1368 +msgid "Please select at least one item to continue" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." msgstr "" +#: erpnext/manufacturing/doctype/work_order/work_order.js:392 +msgid "Please select at least one operation to create Job Card" +msgstr "" + #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" msgstr "请至少选择一行进行修复" @@ -38423,18 +38444,10 @@ msgstr "请至少选择一行进行修复" msgid "Please select at least one row with difference value" msgstr "" -#: erpnext/public/js/controllers/transaction.js:546 +#: erpnext/public/js/controllers/transaction.js:565 msgid "Please select at least one schedule." msgstr "" -#: erpnext/selling/doctype/sales_order/sales_order.js:1368 -msgid "Please select atleast one item to continue" -msgstr "请至少选择一个物料以继续操作" - -#: erpnext/manufacturing/doctype/work_order/work_order.js:392 -msgid "Please select atleast one operation to create Job Card" -msgstr "请至少选择一个工序以创建工卡" - #: erpnext/accounts/doctype/journal_entry/journal_entry.py:1287 msgid "Please select correct account" msgstr "请选择正确的科目" @@ -38472,12 +38485,12 @@ msgstr "请选择要保留的物料" msgid "Please select items to unreserve." msgstr "请勾选待取消的库存预留" -#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75 +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:74 msgid "Please select only one row to create a Reposting Entry" msgstr "请选择单行创建重新过账分录" -#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59 -#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107 +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:58 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:106 msgid "Please select rows to create Reposting Entries" msgstr "请选择行以创建重新过账分录" @@ -38486,8 +38499,8 @@ msgid "Please select the Company" msgstr "请选择公司" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 -msgid "Please select the Multiple Tier Program type for more than one collection rules." -msgstr "请为积分规则选择多等级积分方案。" +msgid "Please select the Multiple Tier Program type for more than one collection rule." +msgstr "" #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38510,20 +38523,16 @@ msgstr "请先选择单据类型." msgid "Please select the required filters" msgstr "请选择必要筛选条件" -#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 -msgid "Please select valid document type." -msgstr "请选择有效单据类型" - #: erpnext/setup/doctype/holiday_list/holiday_list.py:52 msgid "Please select weekly off day" msgstr "请选择每周休息日" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210 -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1219 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:646 msgid "Please select {0} first" msgstr "请先选择{0}" -#: erpnext/public/js/controllers/transaction.js:103 +#: erpnext/public/js/controllers/transaction.js:122 msgid "Please set 'Apply Additional Discount On'" msgstr "请设置“额外折扣基于”" @@ -38552,8 +38561,8 @@ msgid "Please set Account in Warehouse {0} or Default Inventory Account in Compa msgstr "请在仓库{0}中设置科目或在公司{1}中设置默认库存科目" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 -msgid "Please set Accounting Dimension {} in {}" -msgstr "请在{}设置会计维度{}" +msgid "Please set Accounting Dimension {0} in {1}" +msgstr "" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38582,22 +38591,20 @@ msgid "Please set Email/Phone for the contact" msgstr "请为联系人设置电子邮件/电话" #: erpnext/regional/italy/utils.py:257 -#, python-format -msgid "Please set Fiscal Code for the customer '%s'" -msgstr "请为客户'%s'设置财务代码" +msgid "Please set Fiscal Code for the customer '{0}'" +msgstr "" #: erpnext/regional/italy/utils.py:265 -#, python-format -msgid "Please set Fiscal Code for the public administration '%s'" -msgstr "请为公共管理'%s'设置财政代码" +msgid "Please set Fiscal Code for the public administration '{0}'" +msgstr "" #: erpnext/assets/doctype/asset/depreciation.py:739 msgid "Please set Fixed Asset Account in Asset Category {0}" msgstr "请在资产类别{0}中设置固定资产科目。" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 -msgid "Please set Fixed Asset Account in {} against {}." -msgstr "请在{}主数据中为公司{}设置固定资产科目" +msgid "Please set Fixed Asset Account in {0} against {1}." +msgstr "" #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38613,9 +38620,8 @@ msgid "Please set Root Type" msgstr "请设置根类型" #: erpnext/regional/italy/utils.py:272 -#, python-format -msgid "Please set Tax ID for the customer '%s'" -msgstr "请为客户'%s'设置税号" +msgid "Please set Tax ID for the customer '{0}'" +msgstr "" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:344 msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}" @@ -38634,15 +38640,15 @@ msgid "Please set a Company" msgstr "请设置公司" #: erpnext/assets/doctype/asset/asset.py:374 -msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}" -msgstr "请为资产设置成本中心或为公司{}设置资产折旧成本中心" +msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" +msgstr "" #: erpnext/stock/doctype/item/item.py:339 -#: erpnext/stock/doctype/item/item.py:1621 +#: erpnext/stock/doctype/item/item.py:1623 msgid "Please set a Temporary Opening account for company {0} to create an Opening Stock reconciliation." msgstr "" -#: erpnext/projects/doctype/project/project.py:806 +#: erpnext/projects/doctype/project/project.py:807 msgid "Please set a default Holiday List for Company {0}" msgstr "请为公司{0}设置默认假期列表" @@ -38659,9 +38665,8 @@ msgid "Please set actual demand or sales forecast to generate Material Requireme msgstr "" #: erpnext/regional/italy/utils.py:227 -#, python-format -msgid "Please set an Address on the Company '%s'" -msgstr "请在公司'%s'上设置地址" +msgid "Please set an Address on the Company '{0}'" +msgstr "请在公司的{0} 上设置一个地址" #: erpnext/stock/services/base_stock_gl_composer.py:194 msgid "Please set an Expense Account in the Items table" @@ -38679,25 +38684,22 @@ msgstr "请在“税费和收费表”中至少设置一行" msgid "Please set both the Tax ID and Fiscal Code on Company {0}" msgstr "请为公司{0}同时设置税号和财政代码" -#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 -msgid "Please set default Cash or Bank account in Mode of Payment {0}" -msgstr "请为付款方式{0}设置默认的现金或银行科目" - #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:205 +#: erpnext/accounts/doctype/sales_invoice/services/pos.py:331 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:365 -msgid "Please set default Cash or Bank account in Mode of Payment {}" -msgstr "请在付款方式{}设置默认现金或银行账户" +msgid "Please set default Cash or Bank account in Mode of Payment {0}" +msgstr "请为付款方式{0}设置默认的现金或银行科目" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96 #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 -msgid "Please set default Cash or Bank account in Mode of Payments {}" -msgstr "请在付款方式{}设置默认现金或银行账户" +msgid "Please set default Cash or Bank account in Mode of Payments {0}" +msgstr "" #: erpnext/accounts/utils.py:2568 -msgid "Please set default Exchange Gain/Loss Account in Company {}" -msgstr "请在公司{}设置默认汇兑损益账户" +msgid "Please set default Exchange Gain/Loss Account in Company {0}" +msgstr "" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38728,11 +38730,11 @@ msgstr "根据物料或仓库请设置过滤条件" msgid "Please set one of the following:" msgstr "请设置以下其中一项:" -#: erpnext/assets/doctype/asset/asset.py:648 +#: erpnext/assets/doctype/asset/asset.py:650 msgid "Please set opening number of booked depreciations" msgstr "请设置已登记折旧的期初数量。" -#: erpnext/public/js/controllers/transaction.js:2710 +#: erpnext/public/js/controllers/transaction.js:2778 msgid "Please set recurring after saving" msgstr "请保存后设置自动重复参数" @@ -38740,7 +38742,7 @@ msgstr "请保存后设置自动重复参数" msgid "Please set the Customer Address" msgstr "请设置客户地址" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187 +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:198 msgid "Please set the Default Cost Center in {0} company." msgstr "请在{0}公司中设置默认成本中心。" @@ -38795,7 +38797,7 @@ msgstr "请在公司{1}设置{0}以核算汇兑损益" msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}." msgstr "请将{0}设为{1},与原发票{2}使用的账户相同" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:92 msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}" msgstr "请为公司{1}设置并启用账户类型为{0}的组账户" @@ -38803,7 +38805,7 @@ msgstr "请为公司{1}设置并启用账户类型为{0}的组账户" msgid "Please share this email with your support team so that they can find and fix the issue." msgstr "请将此邮件转发给支持团队以便排查和解决问题" -#: erpnext/stock/get_item_details.py:352 +#: erpnext/stock/get_item_details.py:351 msgid "Please specify Company" msgstr "请选择公司" @@ -38813,8 +38815,8 @@ msgstr "请选择公司" msgid "Please specify Company to proceed" msgstr "请输入公司后继续" -#: erpnext/accounts/services/taxes.py:253 -#: erpnext/public/js/controllers/accounts.js:117 +#: erpnext/accounts/services/taxes.py:254 +#: erpnext/public/js/controllers/accounts.js:114 msgid "Please specify a valid Row ID for row {0} in table {1}" msgstr "请指定行{0}在表中的有效行ID {1}" @@ -38822,11 +38824,11 @@ msgstr "请指定行{0}在表中的有效行ID {1}" msgid "Please specify a {0} first." msgstr "请先指定{0}" -#: erpnext/controllers/item_variant.py:53 +#: erpnext/controllers/item_variant.py:52 msgid "Please specify at least one attribute in the Attributes table" msgstr "请指定属性表中的至少一个属性" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:632 msgid "Please specify either Quantity or Valuation Rate or both" msgstr "请输入数量或(和)成本价" @@ -38834,6 +38836,14 @@ msgstr "请输入数量或(和)成本价" msgid "Please specify from/to range" msgstr "请指定 从/至 范围" +#: erpnext/public/js/controllers/transaction.js:2634 +msgid "Please specify {0}. It is needed to fetch Item Details." +msgstr "" + +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 +msgid "Please submit Purchase Order {0} before proceeding." +msgstr "" + #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." msgstr "请一小时后重试" @@ -38997,7 +39007,7 @@ msgstr "过账日期" #: erpnext/accounts/doctype/journal_entry/journal_entry.json #: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json #: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:883 #: erpnext/accounts/doctype/payment_entry/payment_entry.json #: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json #: erpnext/accounts/doctype/payment_order/payment_order.json @@ -39022,7 +39032,7 @@ msgstr "过账日期" #: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65 #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66 #: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:153 -#: erpnext/accounts/report/general_ledger/general_ledger.py:696 +#: erpnext/accounts/report/general_ledger/general_ledger.py:697 #: erpnext/accounts/report/gross_profit/gross_profit.py:300 #: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181 #: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200 @@ -39065,8 +39075,8 @@ msgstr "记账日期" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 -msgid "Posting Date cannot be future date" -msgstr "记账日期不能是未来的日期" +msgid "Posting Date cannot be a future date" +msgstr "" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39074,7 +39084,7 @@ msgstr "记账日期不能是未来的日期" msgid "Posting Date inheritance for exchange gain / loss" msgstr "" -#: erpnext/public/js/controllers/transaction.js:1130 +#: erpnext/public/js/controllers/transaction.js:1149 msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?" msgstr "因未勾选'编辑过账日期和时间',过账日期将更改为今日日期。是否确认继续操作?" @@ -39267,6 +39277,10 @@ msgstr "" msgid "Prepaid Expenses" msgstr "" +#: erpnext/accounts/report/general_ledger/general_ledger.py:682 +msgid "Presentation Currency cannot be {0}, when {1} is enabled." +msgstr "" + #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" msgstr "总裁" @@ -39356,7 +39370,7 @@ msgstr "" msgid "Preview mode" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:191 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142 msgid "Previous Financial Year is not closed" msgstr "上一财年未关闭" @@ -39498,7 +39512,7 @@ msgstr "价格表国家" msgid "Price List Currency" msgstr "价格表货币" -#: erpnext/stock/get_item_details.py:1383 +#: erpnext/stock/get_item_details.py:1387 msgid "Price List Currency not selected" msgstr "价格表货币没有选择" @@ -39619,7 +39633,7 @@ msgstr "此价格适用所有单位" msgid "Price Per Unit ({0})" msgstr "单价({0})" -#: erpnext/selling/page/point_of_sale/pos_controller.js:696 +#: erpnext/selling/page/point_of_sale/pos_controller.js:687 msgid "Price is not set for the item." msgstr "未设置物料价格" @@ -39730,7 +39744,7 @@ msgstr "定价规则首先基于'应用于'字段进行选择,该字段可为 msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria." msgstr "定价规则用于基于特定条件覆盖价格表/定义折扣百分比" -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:250 msgid "Pricing Rule {0} is updated" msgstr "动态定价规则{0}已更新" @@ -39938,8 +39952,8 @@ msgid "Priorities" msgstr "优先级" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 -msgid "Priority cannot be lesser than 1." -msgstr "优先级不能小于1" +msgid "Priority cannot be less than 1." +msgstr "" #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40120,7 +40134,7 @@ msgstr "处理订阅" msgid "Process in Single Transaction" msgstr "在单事务中处理" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1595 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1596 msgid "Process loss quantity cannot be negative." msgstr "" @@ -40246,7 +40260,7 @@ msgstr "套件" msgid "Product Bundle Balance" msgstr "套件余额" -#: erpnext/stock/report/item_where_used/item_where_used.py:278 +#: erpnext/stock/report/item_where_used/item_where_used.py:274 msgid "Product Bundle Component" msgstr "" @@ -40271,7 +40285,7 @@ msgstr "套件帮助" msgid "Product Bundle Item" msgstr "套件物料" -#: erpnext/stock/report/item_where_used/item_where_used.py:305 +#: erpnext/stock/report/item_where_used/item_where_used.py:303 msgid "Product Bundle Parent" msgstr "" @@ -40474,7 +40488,7 @@ msgstr "产品" msgid "Profit & Loss" msgstr "损益表" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:125 msgid "Profit This Year" msgstr "本年利润" @@ -40503,6 +40517,10 @@ msgstr "损益表" msgid "Profit and Loss Statement" msgstr "损益表" +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 +msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' #. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes' @@ -40511,8 +40529,8 @@ msgstr "损益表" msgid "Profit and Loss Summary" msgstr "损益汇总" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141 -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:149 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:150 msgid "Profit for the year" msgstr "年度利润" @@ -40585,7 +40603,7 @@ msgstr "项目状态" msgid "Project Summary" msgstr "项目汇总" -#: erpnext/projects/doctype/project/project.py:744 +#: erpnext/projects/doctype/project/project.py:745 msgid "Project Summary for {0}" msgstr "{0}的项目摘要" @@ -40665,7 +40683,7 @@ msgstr "项目库存消耗报表" msgid "Project wise Stock Tracking " msgstr "项目维度库存跟踪" -#: erpnext/controllers/trends.py:446 +#: erpnext/controllers/trends.py:457 msgid "Project-wise data is not available for Quotation" msgstr "无项目数据,无法报价" @@ -40716,7 +40734,7 @@ msgstr "可用数量" #. Label of a Card Break in the Projects Workspace #. Title of a Workspace Sidebar #: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json -#: erpnext/projects/doctype/project/project.py:511 +#: erpnext/projects/doctype/project/project.py:512 #: erpnext/projects/workspace/projects/projects.json #: erpnext/selling/doctype/customer/customer_dashboard.py:26 #: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28 @@ -40862,7 +40880,7 @@ msgid "Prospects Engaged But Not Converted" msgstr "有跟进未转化线索" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198 -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:797 msgid "Protected DocType" msgstr "" @@ -40895,9 +40913,9 @@ msgstr "" msgid "Provisional Expense Account" msgstr "暂估费用科目" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:168 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:169 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:236 msgid "Provisional Profit / Loss (Credit)" msgstr "利润/(亏损)(贷方)" @@ -41125,8 +41143,8 @@ msgstr "采购发票趋势" msgid "Purchase Invoice cannot be made against an existing asset {0}" msgstr "采购发票不能基于现存固定资产 {0}" -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:429 -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:444 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:435 +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:450 msgid "Purchase Invoice {0} is already submitted" msgstr "采购发票{0}已经提交了" @@ -41167,7 +41185,7 @@ msgstr "采购发票" #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:83 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:205 #: erpnext/buying/workspace/buying/buying.json @@ -41191,11 +41209,11 @@ msgstr "采购发票" msgid "Purchase Order" msgstr "采购订单" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:104 msgid "Purchase Order Amount" msgstr "采购订单金额" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:110 msgid "Purchase Order Amount(Company Currency)" msgstr "采购订单金额(本币)" @@ -41210,7 +41228,7 @@ msgstr "采购订单金额(本币)" msgid "Purchase Order Analysis" msgstr "采购订单执行追踪表" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:77 msgid "Purchase Order Date" msgstr "采购订单日期" @@ -41259,8 +41277,8 @@ msgid "Purchase Order Required" msgstr "需要采购订单" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 -msgid "Purchase Order Required for item {}" -msgstr "物料{}需要采购订单" +msgid "Purchase Order Required for item {0}" +msgstr "" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41319,8 +41337,8 @@ msgid "Purchase Orders to Receive" msgstr "待入库采购订单" #: erpnext/controllers/accounts_controller.py:1236 -msgid "Purchase Orders {0} are un-linked" -msgstr "采购订单{0}已取消关联" +msgid "Purchase Orders {0} are unlinked" +msgstr "" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41409,8 +41427,8 @@ msgid "Purchase Receipt Required" msgstr "需要采购入库" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 -msgid "Purchase Receipt Required for item {}" -msgstr "物料{}需要采购收货单" +msgid "Purchase Receipt Required for item {0}" +msgstr "" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41429,8 +41447,8 @@ msgid "Purchase Receipt Trends " msgstr "采购入库趋势 " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 -msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled." -msgstr "采购入库未包括启用了保留样品的物料" +msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." +msgstr "" #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -41657,7 +41675,7 @@ msgstr "" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398 #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499 #: erpnext/public/js/stock_reservation.js:134 -#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:865 +#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:882 #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/sales_order/sales_order.js:395 @@ -41676,7 +41694,7 @@ msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195 -#: erpnext/stock/report/item_where_used/item_where_used.py:69 +#: erpnext/stock/report/item_where_used/item_where_used.py:63 #: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369 @@ -41741,7 +41759,7 @@ msgstr "变更后数量" #. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance' #. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry' -#: erpnext/buying/doctype/purchase_order/purchase_order.js:773 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:771 #: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json #: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169 @@ -41778,7 +41796,7 @@ msgstr "每单位数量" msgid "Qty To Manufacture" msgstr "工单数量" -#: erpnext/manufacturing/doctype/work_order/work_order.py:876 +#: erpnext/manufacturing/doctype/work_order/work_order.py:872 msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}." msgstr "待生产数量({0})不能是计量单位{2}的分数。若要允许,请在计量单位{2}中禁用'{1}'" @@ -41873,7 +41891,7 @@ msgstr "待耗用数量" msgid "Qty to Bill" msgstr "未开票数量" -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:136 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:142 msgid "Qty to Build" msgstr "待生产数量" @@ -42059,7 +42077,7 @@ msgstr "质检单" msgid "Quality Inspection Analysis" msgstr "质检单分析" -#: erpnext/public/js/controllers/transaction.js:2973 +#: erpnext/public/js/controllers/transaction.js:3041 msgid "Quality Inspection Not Configured" msgstr "" @@ -42136,7 +42154,7 @@ msgstr "" msgid "Quality Inspection {0} is rejected for the item: {1}" msgstr "" -#: erpnext/public/js/controllers/transaction.js:399 +#: erpnext/public/js/controllers/transaction.js:418 #: erpnext/stock/doctype/stock_entry/stock_entry.js:208 msgid "Quality Inspection(s)" msgstr "质检单" @@ -42219,7 +42237,7 @@ msgstr "质量审核" msgid "Quality Review Objective" msgstr "质量审核目标" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:797 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:795 msgid "Quantities updated successfully." msgstr "" @@ -42263,12 +42281,12 @@ msgstr "" #: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json #: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:48 #: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:752 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:750 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:67 #: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28 #: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211 #: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json @@ -42419,7 +42437,7 @@ msgstr "数量为必填项" msgid "Quantity must be greater than zero" msgstr "" -#: erpnext/stock/doctype/item/item.py:1601 +#: erpnext/stock/doctype/item/item.py:1603 msgid "Quantity must be greater than zero." msgstr "数量必须大于零." @@ -42447,11 +42465,11 @@ msgstr "量应大于0" msgid "Quantity to Manufacture" msgstr "生产数量" -#: erpnext/manufacturing/doctype/work_order/mapper.py:374 +#: erpnext/manufacturing/doctype/work_order/mapper.py:372 msgid "Quantity to Manufacture can not be zero for the operation {0}" msgstr "工序 {0} 生产数量不能为0" -#: erpnext/manufacturing/doctype/work_order/work_order.py:868 +#: erpnext/manufacturing/doctype/work_order/work_order.py:864 msgid "Quantity to Manufacture must be greater than 0." msgstr "生产数量应大于0。" @@ -42459,6 +42477,10 @@ msgstr "生产数量应大于0。" msgid "Quantity to Scan" msgstr "待扫描数量" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:910 +msgid "Quantity {0} should not be greater than allowed quantity {1}" +msgstr "" + #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json msgid "Quart (UK)" @@ -42484,7 +42506,7 @@ msgstr "{1} {0}季度" msgid "Query Route String" msgstr "查询路径字符串" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:193 msgid "Queue Size should be between 5 and 100" msgstr "队列大小应介于5至100之间" @@ -42724,7 +42746,7 @@ msgstr "提单人(电子邮件)" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/manufacturing/doctype/work_order_additional_item/work_order_additional_item.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json -#: erpnext/public/js/utils.js:875 +#: erpnext/public/js/utils.js:892 #: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json #: erpnext/selling/doctype/quotation_item/quotation_item.json #: erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -42908,7 +42930,7 @@ msgid "Rate at which this tax is applied" msgstr "此科目的默认税率" #: erpnext/accounts/services/child_item_update.py:515 -msgid "Rate of '{}' items cannot be changed" +msgid "Rate of '{0}' items cannot be changed" msgstr "" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset @@ -43227,7 +43249,7 @@ msgstr "临时冻结原因" msgid "Reason for Failure" msgstr "失败原因" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:661 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:659 #: erpnext/selling/doctype/sales_order/sales_order.js:1841 msgid "Reason for Hold" msgstr "临时冻结原因" @@ -43469,8 +43491,8 @@ msgstr "接收人列表为空。请创建接收人列表" msgid "Receiving" msgstr "接收" -#: erpnext/selling/page/point_of_sale/pos_controller.js:260 -#: erpnext/selling/page/point_of_sale/pos_controller.js:270 +#: erpnext/selling/page/point_of_sale/pos_controller.js:251 +#: erpnext/selling/page/point_of_sale/pos_controller.js:261 #: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19 msgid "Recent Orders" msgstr "最近订单" @@ -43646,6 +43668,10 @@ msgstr "" msgid "Record a transfer between two bank accounts" msgstr "" +#: erpnext/stock/doctype/item_alternative/item_alternative.py:84 +msgid "Record already exists for the item {0}" +msgstr "" + #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:587 @@ -43696,7 +43722,7 @@ msgid "Recurse Over Qty cannot be less than 0" msgstr "递归数量不能小于0" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316 -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231 +#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:230 msgid "Recursive Discounts with Mixed condition is not supported by the system" msgstr "系统不支持混合条件的递归折扣" @@ -43776,7 +43802,7 @@ msgstr "参考 #" msgid "Reference #{0} dated {1}" msgstr "参考# {0}记载日期为{1}" -#: erpnext/public/js/controllers/transaction.js:2823 +#: erpnext/public/js/controllers/transaction.js:2891 msgid "Reference Date for Early Payment Discount" msgstr "提前付款折扣的参考日期" @@ -44068,8 +44094,8 @@ msgid "Rejected Warehouse" msgstr "拒收仓" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 -msgid "Rejected Warehouse and Accepted Warehouse cannot be same." -msgstr "拒收仓库与验收仓库不能相同" +msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." +msgstr "" #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44175,7 +44201,7 @@ msgstr "备注" #: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1265 #: erpnext/accounts/report/general_ledger/general_ledger.html:163 -#: erpnext/accounts/report/general_ledger/general_ledger.py:817 +#: erpnext/accounts/report/general_ledger/general_ledger.py:818 #: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:112 #: erpnext/accounts/report/purchase_register/purchase_register.py:298 #: erpnext/accounts/report/sales_register/sales_register.py:335 @@ -44214,7 +44240,7 @@ msgstr "" msgid "Remove item if charges is not applicable to that item" msgstr "如果费用不适用某物料,请删除它" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:574 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:575 msgid "Removed items with no change in quantity or value." msgstr "已移除数量或金额没有任何变化的物料行" @@ -44366,7 +44392,7 @@ msgstr "出错提示" msgid "Report Line Items" msgstr "" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231 #: erpnext/accounts/report/balance_sheet/balance_sheet.js:13 #: erpnext/accounts/report/cash_flow/cash_flow.js:22 #: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13 @@ -44449,7 +44475,7 @@ msgstr "重过账错误日志" msgid "Repost Item Valuation" msgstr "物料成本价追溯调整" -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:373 +#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:376 msgid "Repost Item Valuation restarted for selected failed records." msgstr "" @@ -44495,6 +44521,15 @@ msgstr "重过账已在后台任务中运行" msgid "Reposting Data File" msgstr "追溯调整数据文件" +#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 +#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 +msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + +#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 +msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." +msgstr "" + #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json @@ -44579,7 +44614,7 @@ msgstr "需求日期" msgid "Reqd Qty (BOM)" msgstr "需求数量(物料清单)" -#: erpnext/public/js/utils.js:891 +#: erpnext/public/js/utils.js:908 msgid "Reqd by date" msgstr "需求日期" @@ -44695,11 +44730,11 @@ msgstr "物料需求数量" msgid "Requested Qty: Quantity requested for purchase, but not ordered." msgstr "申请数量:已申请采购,但未发出采购订单的数量。" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:47 msgid "Requesting Site" msgstr "仓库" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:54 msgid "Requestor" msgstr "申请人" @@ -44878,6 +44913,10 @@ msgstr "预留库存" msgid "Reserve Warehouse" msgstr "预留仓库" +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 +msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" msgstr "原材料预留" @@ -44916,8 +44955,8 @@ msgid "Reserved Qty" msgstr "销售预留数量" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263 -msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}." -msgstr "预留数量 {0} 不允许有小数,要允许小数请在单位 {3} 主数据中取消勾选 {1}" +msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {2}." +msgstr "预留数量 {0} 不允许有小数,要允许小数请在单位 {2} 主数据中取消勾选 {1}" #. Label of the reserved_qty_for_production (Float) field in DocType 'Material #. Request Plan Item' @@ -44961,7 +45000,7 @@ msgstr "预留数量" msgid "Reserved Quantity for Production" msgstr "生产预留数量" -#: erpnext/stock/stock_ledger.py:2327 +#: erpnext/stock/stock_ledger.py:2316 msgid "Reserved Serial No." msgstr "预留序列号" @@ -44977,13 +45016,13 @@ msgstr "预留序列号" #: erpnext/stock/doctype/pick_list/pick_list.js:178 #: erpnext/stock/report/reserved_stock/reserved_stock.json #: erpnext/stock/report/stock_balance/stock_balance.py:573 -#: erpnext/stock/stock_ledger.py:2311 +#: erpnext/stock/stock_ledger.py:2300 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204 #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332 msgid "Reserved Stock" msgstr "已预留库存" -#: erpnext/stock/stock_ledger.py:2356 +#: erpnext/stock/stock_ledger.py:2345 msgid "Reserved Stock for Batch" msgstr "批次预留库存" @@ -45477,6 +45516,10 @@ msgstr "退货汇率既非整型也非浮点型" msgid "Returns" msgstr "退货" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 +msgid "Revaluation Journal: {0}" +msgstr "" + #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 #: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183 @@ -45901,11 +45944,11 @@ msgstr "工艺路线名称" msgid "Row # {0}: Cannot return more than {1} for Item {2}" msgstr "行#{0}:无法退回超过{1}的物料{2}" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:196 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:197 msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}" msgstr "行号{0}:请为物料{1}添加序列号和批次包" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:215 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:216 msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero." msgstr "第{0}行:物料{1}数量非零,请正确输入。" @@ -45989,23 +46032,23 @@ msgstr "第{0}行:未找到产成品物料{1}的物料清单" msgid "Row #{0}: Batch No {1} is already selected." msgstr "第 {0} 行:批号 {1} 已被选择" -#: erpnext/controllers/subcontracting_inward_controller.py:435 -msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "第{0}行:批次号{1}不属于关联的外包收货订单。请选择有效的批次号。" +#: erpnext/controllers/subcontracting_inward_controller.py:443 +msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." +msgstr "" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" msgstr "行号#{0}:支付条款{2}的分配金额不能超过{1}" -#: erpnext/controllers/subcontracting_inward_controller.py:638 +#: erpnext/controllers/subcontracting_inward_controller.py:644 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity." msgstr "第{0}行:无法取消本生产库存凭证,因物料{1}的开票数量不得大于消耗数量。" -#: erpnext/controllers/subcontracting_inward_controller.py:617 +#: erpnext/controllers/subcontracting_inward_controller.py:623 msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:483 +#: erpnext/controllers/subcontracting_inward_controller.py:491 msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order" msgstr "第{0}行:无法取消本库存凭证,因关联外包收货订单中物料{1}的退货数量不得大于交付数量" @@ -46081,13 +46124,16 @@ msgstr "" msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold" msgstr "行号#{0}:累计阈值不能小于单笔交易阈值" -#: erpnext/controllers/subcontracting_inward_controller.py:90 +#: erpnext/assets/doctype/asset_category/asset_category.py:66 +msgid "Row #{0}: Currency of {1} - {2} does not match company currency." +msgstr "" + +#: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." msgstr "第{0}行:针对外包收货订单物料{2}({3})的客户提供物料{1}不可重复添加。" -#: erpnext/controllers/subcontracting_inward_controller.py:178 -#: erpnext/controllers/subcontracting_inward_controller.py:304 -#: erpnext/controllers/subcontracting_inward_controller.py:352 +#: erpnext/controllers/subcontracting_inward_controller.py:196 +#: erpnext/controllers/subcontracting_inward_controller.py:372 msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process." msgstr "第{0}行:客户提供物料{1}在外包收货流程中不可重复添加。" @@ -46099,7 +46145,7 @@ msgstr "第{0}行:客户提供物料{1}不可重复添加。" msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order." msgstr "第{0}行:客户提供物料{1}不存在于关联外包收货订单的所需物料表中。" -#: erpnext/controllers/subcontracting_inward_controller.py:288 +#: erpnext/controllers/subcontracting_inward_controller.py:297 msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order" msgstr "第{0}行:客户提供物料{1}超出外包收货订单可用数量" @@ -46107,12 +46153,12 @@ msgstr "第{0}行:客户提供物料{1}超出外包收货订单可用数量" msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}." msgstr "第{0}行:外包收货订单中客户提供物料{1}数量不足。可用数量为{2}。" -#: erpnext/controllers/subcontracting_inward_controller.py:315 +#: erpnext/controllers/subcontracting_inward_controller.py:286 msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "第{0}行:客户提供物料{1}不属于外包收货订单{2}" -#: erpnext/controllers/subcontracting_inward_controller.py:220 -#: erpnext/controllers/subcontracting_inward_controller.py:363 +#: erpnext/controllers/subcontracting_inward_controller.py:221 +#: erpnext/controllers/subcontracting_inward_controller.py:331 msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}" msgstr "第{0}行:客户提供物料{1}不属于工作订单{2}" @@ -46124,7 +46170,7 @@ msgstr "" msgid "Row #{0}: Default BOM not found for FG Item {1}" msgstr "行号#{0}:产成品{1}未找到默认物料清单(BOM)" -#: erpnext/assets/doctype/asset/asset.py:684 +#: erpnext/assets/doctype/asset/asset.py:686 msgid "Row #{0}: Depreciation Start Date is required" msgstr "行号#{0}:必须填写折旧起始日期" @@ -46132,6 +46178,10 @@ msgstr "行号#{0}:必须填写折旧起始日期" msgid "Row #{0}: Duplicate entry in References {1} {2}" msgstr "行#{0}:有重复参考凭证{1} {2}" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 +msgid "Row #{0}: Either Party ID or Party Name is required" +msgstr "" + #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" msgstr "行#{0}:预计交货日不能早于采购订单日" @@ -46144,11 +46194,18 @@ msgstr "第 {0} 行:物料 {1}. {2} 差异科目必填" msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed." msgstr "" -#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +#: erpnext/assets/doctype/asset/asset.py:421 +msgid "Row #{0}: Finance Book should not be empty since you're using multiple." +msgstr "" + #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" msgstr "行号#{0}:产成品数量不能为零" +#: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 +msgid "Row #{0}: Finished Good Item Qty cannot be zero" +msgstr "" + #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 msgid "Row #{0}: Finished Good Item is not specified for service item {1}" @@ -46171,8 +46228,8 @@ msgstr "行号#{0}:产成品必须为{1}" msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:170 -#: erpnext/controllers/subcontracting_inward_controller.py:294 +#: erpnext/controllers/subcontracting_inward_controller.py:188 +#: erpnext/controllers/subcontracting_inward_controller.py:305 msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}" msgstr "第{0}行:对于客户提供物料{1},源仓库必须为{2}" @@ -46184,7 +46241,7 @@ msgstr "第 {0} 行:{1} 仅限货方金额时填写源单据字段" msgid "Row #{0}: For {1}, you can select reference document only if account gets debited" msgstr "第 {0} 行:{1} 仅限借方金额时填写源单据字段" -#: erpnext/assets/doctype/asset/asset.py:667 +#: erpnext/assets/doctype/asset/asset.py:669 msgid "Row #{0}: Frequency of Depreciation must be greater than zero" msgstr "" @@ -46196,6 +46253,10 @@ msgstr "行号#{0}:起始日期不能早于截止日期" msgid "Row #{0}: From Time and To Time fields are required" msgstr "第{0}行:必须填写起止时间。" +#: erpnext/stock/doctype/pick_list/pick_list.py:650 +msgid "Row #{0}: Item Code is Mandatory" +msgstr "" + #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" msgstr "行#{0}:已添加" @@ -46224,16 +46285,16 @@ msgstr "" msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:65 +#: erpnext/controllers/subcontracting_inward_controller.py:66 msgid "Row #{0}: Item {1} is not a Customer Provided Item." msgstr "第{0}行:物料{1}不是客户提供物料。" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:774 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:775 msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it." msgstr "第{0}行: 物料未启用序列号/批号,不能为其设置序列号/批号" -#: erpnext/controllers/subcontracting_inward_controller.py:115 -#: erpnext/controllers/subcontracting_inward_controller.py:496 +#: erpnext/controllers/subcontracting_inward_controller.py:116 +#: erpnext/controllers/subcontracting_inward_controller.py:504 msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}" msgstr "第{0}行:物料{1}不属于外包收货订单{2}" @@ -46249,13 +46310,17 @@ msgstr "行号#{0}:物料{1}非库存物料" msgid "Row #{0}: Item {1} is not part of the source manufacture entry and cannot be added to this disassembly." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:79 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead." -msgstr "第{0}行:物料{1}不匹配。不允许修改物料编码,请改为新增行。" +#: erpnext/controllers/subcontracting_inward_controller.py:80 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." +msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:128 -msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted." -msgstr "第{0}行:物料{1}不匹配。不允许修改物料编码。" +#: erpnext/controllers/subcontracting_inward_controller.py:129 +msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." +msgstr "" + +#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 +msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" +msgstr "" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46265,15 +46330,15 @@ msgstr "" msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher" msgstr "行#{0}:日记账凭证{1}没有科目{2}或已被另一凭证核销" -#: erpnext/assets/doctype/asset_category/asset_category.py:149 +#: erpnext/assets/doctype/asset_category/asset_category.py:150 msgid "Row #{0}: Missing {1} for company {2}." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:678 +#: erpnext/assets/doctype/asset/asset.py:680 msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date" msgstr "第{0}行:下次折旧日期不得早于启用日期。" -#: erpnext/assets/doctype/asset/asset.py:673 +#: erpnext/assets/doctype/asset/asset.py:675 msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date" msgstr "第{0}行:下次折旧日期不得早于采购日期。" @@ -46285,24 +46350,48 @@ msgstr "行#{0}:因采购订单已经存在不能再更改供应商" msgid "Row #{0}: Only {1} available to reserve for the Item {2}" msgstr "第 {0} 行:物料 {2} 可预留库存数量仅有 {1}" -#: erpnext/assets/doctype/asset/asset.py:641 +#: erpnext/assets/doctype/asset/asset.py:643 msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}" msgstr "第{0}行:期初累计折旧不得超过{1}。" -#: erpnext/controllers/subcontracting_inward_controller.py:208 -#: erpnext/controllers/subcontracting_inward_controller.py:342 +#: erpnext/controllers/subcontracting_inward_controller.py:209 +#: erpnext/controllers/subcontracting_inward_controller.py:340 msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process." msgstr "第{0}行:外包收货流程中不允许超额消耗工作订单{2}对应的客户提供物料{1}。" +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 +msgid "Row #{0}: POS Invoice {1} has been {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 +msgid "Row #{0}: POS Invoice {1} is not against customer {2}" +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 +msgid "Row #{0}: POS Invoice {1} is not submitted yet" +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 +msgid "Row #{0}: Party ID is required" +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" msgstr "装配件明细第 {0} 行,请输入物料号(请先点获取待生产成品物料按钮)" +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 +msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." +msgstr "" + +#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 +msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." +msgstr "" + #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" msgstr "行号#{0}:请在组装物料中选择物料清单编号" -#: erpnext/controllers/subcontracting_inward_controller.py:106 +#: erpnext/controllers/subcontracting_inward_controller.py:107 msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used." msgstr "第{0}行:请选择将使用此客户提供物料的产成品物料。" @@ -46318,6 +46407,10 @@ msgstr "行#{0}:请设置重订货点数量" msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master" msgstr "行号#{0}:请更新物料行的递延收入/费用科目或公司主数据的默认科目" +#: erpnext/assets/doctype/asset/asset.py:413 +msgid "Row #{0}: Please use a different Finance Book." +msgstr "" + #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}" @@ -46337,8 +46430,8 @@ msgid "Row #{0}: Qty must be a positive number" msgstr "行号#{0}:数量必须为正数" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 -msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}." -msgstr "第 {0} 行:物料 {2} 批号 {3} 在仓库 {4} 中预留数量须 <= 可预留数量(实际数量 - 已预留数量) {1}" +msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." +msgstr "" #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46360,7 +46453,7 @@ msgstr "第{0}行:数量不能为非正数。请增加数量或移除物料{1} msgid "Row #{0}: Quantity for Item {1} cannot be zero." msgstr "行号#{0}:物料{1}数量不能为零" -#: erpnext/controllers/subcontracting_inward_controller.py:538 +#: erpnext/controllers/subcontracting_inward_controller.py:544 msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}" msgstr "第{0}行:针对外包收货订单{4},物料{1}的数量不得超过{2}{3}" @@ -46368,17 +46461,17 @@ msgstr "第{0}行:针对外包收货订单{4},物料{1}的数量不得超过 msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0." msgstr "第 {0} 行:物料 {1} 预留数量须大于 0" -#: erpnext/accounts/services/internal_transfer.py:182 +#: erpnext/accounts/services/internal_transfer.py:184 #: erpnext/utilities/transaction_base.py:172 #: erpnext/utilities/transaction_base.py:178 msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})" msgstr "行#{0}:单价必须与{1}:{2}({3} / {4})相同" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1251 msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry" msgstr "行#{0}:源单据类型必须是采购订单、采购发票或日记账凭证" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1237 msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning" msgstr "行号#{0}:参考单据类型必须为销售订单、销售发票、日记账或催款单" @@ -46398,11 +46491,11 @@ msgstr "" msgid "Row #{0}: Return Against is required for returning asset" msgstr "第{0}行:资产退货必须填写退货依据。" -#: erpnext/controllers/subcontracting_inward_controller.py:142 +#: erpnext/controllers/subcontracting_inward_controller.py:143 msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}" msgstr "第{0}行:物料{1}的退货数量不得大于可用数量" -#: erpnext/controllers/subcontracting_inward_controller.py:155 +#: erpnext/controllers/subcontracting_inward_controller.py:156 msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}" msgstr "第{0}行:物料{1}的退货数量不得大于可退数量" @@ -46412,7 +46505,7 @@ msgstr "" #: erpnext/controllers/selling_controller.py:298 msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" -"\t\t\t\t\tSelling {3} should be atleast {4}.

                    Alternatively,\n" +"\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." msgstr "" @@ -46421,6 +46514,10 @@ msgstr "" msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." msgstr "第{0}行:工序{3}的序列ID必须为{1}或{2}。" +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 +msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" +msgstr "" + #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" msgstr "第{0}行: 序列号 {1} 不属于批号 {2}" @@ -46433,7 +46530,7 @@ msgstr "第 {0} 行:在 {3} {4} 无可预留的物料{2} 序列号 {1} 或者 msgid "Row #{0}: Serial No {1} is already selected." msgstr "第 {0} 行:序列号 {1} 已被选择" -#: erpnext/controllers/subcontracting_inward_controller.py:424 +#: erpnext/controllers/subcontracting_inward_controller.py:432 msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)." msgstr "第{0}行:序列号{1}不属于关联的外包收货订单。请选择有效的序列号。" @@ -46457,7 +46554,7 @@ msgstr "行#{0}:请为物料{1}分派供应商" msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items" msgstr "第{0}行:因已启用“追踪半成品”,物料清单{1}不可用于子装配件物料" -#: erpnext/controllers/subcontracting_inward_controller.py:403 +#: erpnext/controllers/subcontracting_inward_controller.py:411 msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "第{0}行:源仓库必须与关联外包收货订单中的客户仓库{1}相同" @@ -46526,7 +46623,7 @@ msgstr "第 {0} 行:仓库 {2} 中物料 {1}无可预留库存" msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}" msgstr "第{0}行:物料{3}的库存数量{1}({2})不得超过{4}" -#: erpnext/controllers/subcontracting_inward_controller.py:397 +#: erpnext/controllers/subcontracting_inward_controller.py:405 msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order" msgstr "第{0}行:目标仓库必须与关联外包收货订单中的客户仓库{1}相同" @@ -46534,19 +46631,27 @@ msgstr "第{0}行:目标仓库必须与关联外包收货订单中的客户仓 msgid "Row #{0}: The batch {1} has already expired." msgstr "第{0}行:批号 {1} 已过期" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:408 +msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." +msgstr "" + +#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 +msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." +msgstr "" + #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" msgstr "行号#{0}:仓库{1}不是组仓库{2}的子仓库" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 -msgid "Row #{0}: Timings conflicts with row {1}" -msgstr "行#{0}:与排时序冲突{1}" +msgid "Row #{0}: Timings conflict with row {1}" +msgstr "" -#: erpnext/assets/doctype/asset/asset.py:654 +#: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" msgstr "行号#{0}:总折旧次数不可小于等于已记账折旧的期初次数" -#: erpnext/assets/doctype/asset/asset.py:663 +#: erpnext/assets/doctype/asset/asset.py:665 msgid "Row #{0}: Total Number of Depreciations must be greater than zero" msgstr "" @@ -46558,11 +46663,15 @@ msgstr "" msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}." msgstr "" -#: erpnext/controllers/subcontracting_inward_controller.py:578 +#: erpnext/controllers/subcontracting_inward_controller.py:584 msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}" msgstr "第{0}行:存在针对物料{1}全部或部分数量的工作订单" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:109 +#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 +msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." +msgstr "" + +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." msgstr "行号#{0}:库存对账中不可使用库存维度'{1}'修改数量或估价率,带维度的库存对账仅用于期初录入" @@ -46570,6 +46679,19 @@ msgstr "行号#{0}:库存对账中不可使用库存维度'{1}'修改数量或 msgid "Row #{0}: You must select an Asset for Item {1}." msgstr "行号#{0}:必须为物料{1}选择资产" +#: erpnext/stock/doctype/pick_list/pick_list.py:235 +msgid "Row #{0}: item {1} has been picked already." +msgstr "" + +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 +#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 +msgid "Row #{0}: {1}" +msgstr "行号#{0}:{1}" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 +msgid "Row #{0}: {1} account is not of type {2}" +msgstr "" + #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" msgstr "行#{0}:{1}不能为负值对项{2}" @@ -46586,6 +46708,14 @@ msgstr "行号#{0}:创建期初{2}发票需提供{1}" msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account." msgstr "行号#{0}:{2}的{1}应为{3},请更新{1}或选择其他科目" +#: erpnext/stock/doctype/item/item.py:1511 +msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." +msgstr "" + +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 +msgid "Row #{0}: {1} {2} does not exist." +msgstr "" + #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." msgstr "" @@ -46626,71 +46756,10 @@ msgstr "行号#{idx}:{from_warehouse_field}和{to_warehouse_field}不能相同 msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}." msgstr "行号#{idx}:{schedule_date}不能早于{transaction_date}" -#: erpnext/assets/doctype/asset_category/asset_category.py:66 -msgid "Row #{}: Currency of {} - {} doesn't matches company currency." -msgstr "第{0}行: 货币 {} 与公司本币不匹配" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 -msgid "Row #{}: Either Party ID or Party Name is required" -msgstr "" - -#: erpnext/assets/doctype/asset/asset.py:421 -msgid "Row #{}: Finance Book should not be empty since you're using multiple." -msgstr "行号#{}:使用多财务账簿时不可为空" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 -msgid "Row #{}: POS Invoice {} has been {}" -msgstr "行号#{}:POS发票{}已被{}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 -msgid "Row #{}: POS Invoice {} is not against customer {}" -msgstr "行号#{}:POS发票{}不针对客户{}" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 -msgid "Row #{}: POS Invoice {} is not submitted yet" -msgstr "行号#{}:POS发票{}尚未提交" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 -msgid "Row #{}: Party ID is required" -msgstr "" - #: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43 msgid "Row #{}: Please assign task to a member." msgstr "行号#{}:请将任务分配给成员" -#: erpnext/assets/doctype/asset/asset.py:413 -msgid "Row #{}: Please use a different Finance Book." -msgstr "行号#{}:请使用其他财务账簿" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 -msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}" -msgstr "行号#{}:原始发票{}未交易序列号{},不可退回" - -#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 -msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated." -msgstr "行号#{}:退货发票{}的原始发票{}未合并" - -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 -msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return." -msgstr "行号#{}:退货发票中不可添加正数数量,请移除物料{}以完成退货" - -#: erpnext/stock/doctype/pick_list/pick_list.py:235 -msgid "Row #{}: item {} has been picked already." -msgstr "第 {} 行:物料 {} 已经拣货了" - -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 -#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 -msgid "Row #{}: {}" -msgstr "行号#{}:{}" - -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 -msgid "Row #{}: {} {} does not exist." -msgstr "行号#{}:{} {}不存在" - -#: erpnext/stock/doctype/item/item.py:1511 -msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}." -msgstr "行号#{}:{} {}不属于公司{},请选择有效的{}" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:437 msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}" msgstr "行号{0}:必须指定仓库,请为物料{1}和公司{2}设置默认仓库" @@ -46703,10 +46772,6 @@ msgstr "第{0}行,原材料 {1} 工序信息必填" msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required." msgstr "第 {0} 行拣货数量少于需求数量,短缺 {1} {2}" -#: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 -msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "行号{0}# 在{2} {3}的'供应原材料'表中未找到物料{1}" - #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:275 msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time." msgstr "行号{0}:接受数量和拒收数量不能同时为零" @@ -46727,19 +46792,19 @@ msgstr "第{0}行:预收客户款须记在贷方" msgid "Row {0}: Advance against Supplier must be debit" msgstr "行{0}:对供应商预付应为借方" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:767 msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}" msgstr "行号{0}:分配金额{1}不能超过发票未结金额{2}" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:759 msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}" msgstr "行号{0}:分配金额{1}不能超过剩余付款金额{2}" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:708 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:707 msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials." msgstr "第 {0} 行:生产设置中已勾选 入库成品原材料成本取自工单耗用,工单入库中不允许倒扣原材料,请创建工单耗用物料移动消耗原材料" -#: erpnext/stock/doctype/material_request/material_request.py:557 +#: erpnext/stock/doctype/material_request/material_request.py:556 msgid "Row {0}: Bill of Materials not found for the Item {1}" msgstr "没有为第{0}行的物料{1}定义物料清单" @@ -46755,11 +46820,11 @@ msgstr "" msgid "Row {0}: Conversion Factor is mandatory" msgstr "行{0}:转换系数必填" -#: erpnext/accounts/services/taxes.py:291 +#: erpnext/accounts/services/taxes.py:292 msgid "Row {0}: Cost Center {1} does not belong to Company {2}" msgstr "第 {0} 行 :成本中心 {1} 不是公司 {3} 的有效成本中心" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:178 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:180 msgid "Row {0}: Cost center is required for an item {1}" msgstr "请为第{0}行的物料{1}输入成本中心" @@ -46787,24 +46852,24 @@ msgstr "第{0}行:物料{1}的交货仓库不能与客户仓库相同。" msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date" msgstr "第{0}行: 付款计划中的到期日不能早于记账日" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:128 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:126 msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory." msgstr "行号{0}:必须关联交货单物料或包装物料" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:724 -#: erpnext/controllers/taxes_and_totals.py:1388 +#: erpnext/controllers/taxes_and_totals.py:1371 msgid "Row {0}: Exchange Rate is mandatory" msgstr "请为第{0}行输入汇率" -#: erpnext/assets/doctype/asset/asset.py:612 +#: erpnext/assets/doctype/asset/asset.py:614 msgid "Row {0}: Expected Value After Useful Life cannot be negative" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:615 +#: erpnext/assets/doctype/asset/asset.py:617 msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount" msgstr "第{0}行:使用寿命结束后期望价值必须小于净采购金额" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:190 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:192 msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}." msgstr "" @@ -46825,6 +46890,9 @@ msgid "Row {0}: From Time and To Time is mandatory." msgstr "行{0}:开始和结束时间必填。" #: erpnext/manufacturing/doctype/job_card/job_card.py:355 +msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" +msgstr "" + #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" msgstr "行{0}:{1} 与 {2} 的开始与结束时间有重叠" @@ -46846,8 +46914,8 @@ msgid "Row {0}: Invalid reference {1}" msgstr "第{0}行:无效参考{1}" #: erpnext/controllers/taxes_and_totals.py:134 -msgid "Row {0}: Item Tax template updated as per validity and rate applied" -msgstr "行号{0}:物料税模板已按有效税率更新" +msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" +msgstr "" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46877,7 +46945,7 @@ msgstr "" msgid "Row {0}: Packed Qty must be equal to {1} Qty." msgstr "第 {0} 行:装箱数量必须与 {1} 数量相等" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:147 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:145 msgid "Row {0}: Packing Slip is already created for Item {1}." msgstr "行号{0}:已为物料{1}创建装箱单" @@ -46901,7 +46969,7 @@ msgstr "行{0}:针对销售/采购订单收付款均须标记为预收/付" msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry." msgstr "行{0}:如果预付凭证,请为科目{1}勾选'预付?'。" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:141 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:139 msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference." msgstr "行号{0}:请提供有效的交货单物料或包装物料引用" @@ -46909,14 +46977,14 @@ msgstr "行号{0}:请提供有效的交货单物料或包装物料引用" msgid "Row {0}: Please select a BOM for Item {1}." msgstr "行号{0}:请为物料{1}选择物料清单(BOM)" +#: erpnext/controllers/subcontracting_controller.py:214 +msgid "Row {0}: Please select a valid BOM for Item {1}." +msgstr "" + #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." msgstr "行号{0}:请为物料{1}选择有效的物料清单(BOM)" -#: erpnext/controllers/subcontracting_controller.py:214 -msgid "Row {0}: Please select an valid BOM for Item {1}." -msgstr "行号{0}:请为物料{1}选择有效的物料清单(BOM)" - #: erpnext/regional/italy/utils.py:290 msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges" msgstr "请为销售税和费明细第{0}行输入免税原因" @@ -46933,11 +47001,11 @@ msgstr "第{0}行:请在付款方式{1}上设置正确的代码" msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}." msgstr "行号{0}:项目必须与工时表{1}中设置的一致" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:155 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157 msgid "Row {0}: Purchase Invoice {1} has no stock impact." msgstr "行号{0}:采购发票{1}无库存影响" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:153 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:151 msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}." msgstr "行号{0}:物料{2}数量不可超过{1}" @@ -46945,7 +47013,7 @@ msgstr "行号{0}:物料{2}数量不可超过{1}" msgid "Row {0}: Qty in Stock UOM can not be zero." msgstr "行号{0}:库存单位的数量不可为零" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:124 +#: erpnext/stock/doctype/packing_slip/packing_slip.py:122 msgid "Row {0}: Qty must be greater than 0." msgstr "行号{0}:数量必须大于0" @@ -46957,7 +47025,7 @@ msgstr "行号{0}:数量不能为负数" msgid "Row {0}: Sales Invoice {1} is already created for {2}" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:299 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:300 msgid "Row {0}: Serial/Batch has been reset to values linked with Work Order {1} because the previously selected serial/batch does not belong to this Work Order." msgstr "" @@ -46982,10 +47050,10 @@ msgid "Row {0}: The entire expense amount for account {1} in {2} has already bee msgstr "" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 -msgid "Row {0}: The item {1}, quantity must be positive number" -msgstr "第 {0} 行: 物料 {1} 数量必须为正数" +msgid "Row {0}: The item {1}, quantity must be a positive number" +msgstr "" -#: erpnext/accounts/services/taxes.py:268 +#: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" msgstr "行号{0}:{3}科目{1}不属于公司{2}" @@ -47038,15 +47106,19 @@ msgstr "行 {0}: {1} {2} 不能与 {3} (组队帐户) {4}" msgid "Row {0}: {1} {2} does not match with {3}" msgstr "行{0}:{1} {2}不相匹配{3}" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:137 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:139 msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}." msgstr "" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 +msgid "Row {0}: {1} {2} must be submitted" +msgstr "" + #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" msgstr "行 {0}: {2} 项目 {1} 在 {2} {3} 中不存在" -#: erpnext/utilities/transaction_base.py:625 +#: erpnext/utilities/transaction_base.py:622 msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}." msgstr "第{1}行:数量 ({0}不可以是小数, 要允许小数,请在计量单位{3}主数据中取消勾选'{2}'" @@ -47085,8 +47157,8 @@ msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set msgstr "第 {0} 行,源单据类型不能为收付款凭证" #: erpnext/controllers/accounts_controller.py:276 -msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "行数: {0} {1} 部分无效。参考名称应指向有效的付款条目或日记条目。" +msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." +msgstr "" #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47146,10 +47218,6 @@ msgstr "" msgid "Rules evaluation started" msgstr "" -#: erpnext/public/js/utils/naming_series.js:54 -msgid "Rules for configuring series" -msgstr "" - #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189 msgid "Rules to match against the transaction description" msgstr "" @@ -47217,7 +47285,7 @@ msgstr "SLA按期达成" msgid "SLA Paused On" msgstr "服务水平协议计时暂停" -#: erpnext/public/js/utils.js:1251 +#: erpnext/public/js/utils.js:1268 msgid "SLA is on hold since {0}" msgstr "自{0}起,SLA处于保留状态" @@ -47516,8 +47584,8 @@ msgid "Sales Invoice is not submitted" msgstr "销售发票未提交" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 -msgid "Sales Invoice isn't created by user {}" -msgstr "销售发票非由用户{}创建" +msgid "Sales Invoice isn't created by user {0}" +msgstr "" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -47733,8 +47801,8 @@ msgstr "销售订单 {0} 已存在于客户的采购订单 {1}。若要允许多 msgid "Sales Order {0} is already linked to Project {1}, skipping the link." msgstr "" -#: erpnext/selling/doctype/sales_order/mapper.py:883 -#: erpnext/selling/doctype/sales_order/mapper.py:896 +#: erpnext/selling/doctype/sales_order/mapper.py:888 +#: erpnext/selling/doctype/sales_order/mapper.py:901 msgid "Sales Order {0} is not available for production" msgstr "" @@ -48141,7 +48209,7 @@ msgstr "相同物料" msgid "Same day" msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:613 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:614 msgid "Same item and warehouse combination already entered." msgstr "已输入相同的商品和仓库组合。" @@ -48173,7 +48241,7 @@ msgstr "样品仓" #. Label of the sample_size (Float) field in DocType 'Quality Inspection' #: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93 -#: erpnext/public/js/controllers/transaction.js:2880 +#: erpnext/public/js/controllers/transaction.js:2948 #: erpnext/stock/doctype/quality_inspection/quality_inspection.json msgid "Sample Size" msgstr "样本大小" @@ -48283,7 +48351,7 @@ msgstr "已扫描数量" msgid "Schedule Date" msgstr "计划日期" -#: erpnext/public/js/controllers/transaction.js:512 +#: erpnext/public/js/controllers/transaction.js:531 msgid "Schedule Name" msgstr "" @@ -48294,7 +48362,7 @@ msgstr "" msgid "Scheduled Date" msgstr "计划日期" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:431 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:432 msgid "Scheduled Date is required." msgstr "" @@ -48582,7 +48650,7 @@ msgstr "" msgid "Select Accounting Dimension." msgstr "选择会计维度。" -#: erpnext/public/js/utils.js:555 +#: erpnext/public/js/utils.js:572 msgid "Select Alternate Item" msgstr "选替代物料" @@ -48603,7 +48671,7 @@ msgid "Select BOM and Qty for Production" msgstr "选择物料清单和生产数量" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Batch No" msgstr "选择批号" @@ -48668,7 +48736,7 @@ msgstr "选择维度" msgid "Select Dispatch Address " msgstr "选择发货地址" -#: erpnext/manufacturing/doctype/job_card/job_card.js:704 +#: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" msgstr "选择员工" @@ -48693,7 +48761,7 @@ msgstr "选择物料" msgid "Select Items based on Delivery Date" msgstr "根据出货日期选择物料" -#: erpnext/public/js/controllers/transaction.js:2921 +#: erpnext/public/js/controllers/transaction.js:2989 msgid "Select Items for Quality Inspection" msgstr "选择待检验物料" @@ -48723,7 +48791,7 @@ msgstr "选择委外地址" msgid "Select Loyalty Program" msgstr "选择积分方案" -#: erpnext/public/js/controllers/transaction.js:498 +#: erpnext/public/js/controllers/transaction.js:517 msgid "Select Payment Schedule" msgstr "" @@ -48737,13 +48805,13 @@ msgid "Select Quantity" msgstr "选择数量" #: erpnext/assets/doctype/asset_repair/asset_repair.js:234 -#: erpnext/public/js/utils/sales_common.js:443 +#: erpnext/public/js/utils/sales_common.js:449 #: erpnext/stock/doctype/pick_list/pick_list.js:398 msgid "Select Serial No" msgstr "选择序列号" #: erpnext/assets/doctype/asset_repair/asset_repair.js:237 -#: erpnext/public/js/utils/sales_common.js:446 +#: erpnext/public/js/utils/sales_common.js:452 #: erpnext/stock/doctype/pick_list/pick_list.js:401 msgid "Select Serial and Batch" msgstr "选择序列号与批次" @@ -48834,6 +48902,7 @@ msgid "Select an Item Group." msgstr "选择物料组。" #: erpnext/accounts/report/general_ledger/general_ledger.py:36 +#: erpnext/accounts/report/general_ledger/general_ledger.py:839 msgid "Select an account to print in account currency" msgstr "选择一个科目以科目货币进行打印" @@ -48976,10 +49045,14 @@ msgstr "已选凭证" msgid "Selected date is" msgstr "选定日期为" -#: erpnext/public/js/bulk_transaction_processing.js:34 +#: erpnext/public/js/bulk_transaction_processing.js:33 msgid "Selected document must be in submitted state" msgstr "所选单据必须处于已提交状态" +#: erpnext/assets/doctype/asset/asset.py:1195 +msgid "Selected {0} does not contain the Item Code {1}" +msgstr "" + #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json msgid "Self delivery" @@ -49127,7 +49200,7 @@ msgid "Send Emails to Suppliers" msgstr "向供应商发送邮件" #. Label of the send_sms (Button) field in DocType 'SMS Center' -#: erpnext/public/js/controllers/transaction.js:721 +#: erpnext/public/js/controllers/transaction.js:740 #: erpnext/selling/doctype/sms_center/sms_center.json msgid "Send SMS" msgstr "发送短信" @@ -49211,7 +49284,7 @@ msgstr "缺少序列号/批次组合" msgid "Serial / Batch No" msgstr "序列号/批号" -#: erpnext/public/js/utils.js:217 +#: erpnext/public/js/utils.js:225 msgid "Serial / Batch Nos" msgstr "序列号/批号" @@ -49268,10 +49341,11 @@ msgstr "" #: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json #: erpnext/manufacturing/doctype/job_card/job_card.json #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:119 -#: erpnext/public/js/controllers/transaction.js:2893 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114 +#: erpnext/public/js/controllers/transaction.js:2961 #: erpnext/public/js/utils/serial_no_batch_selector.js:433 #: erpnext/selling/doctype/installation_note_item/installation_note_item.json +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json #: erpnext/stock/doctype/packed_item/packed_item.json #: erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -49313,6 +49387,10 @@ msgstr "序列号/批号" msgid "Serial No Already Assigned" msgstr "序列号已分配" +#: erpnext/assets/doctype/asset_repair/asset_repair.py:296 +msgid "Serial No Bundle is mandatory for Item {0}" +msgstr "" + #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" msgstr "序列号计数" @@ -49330,7 +49408,7 @@ msgstr "序列号台帐" msgid "Serial No Range" msgstr "序列号范围" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2689 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2691 msgid "Serial No Reserved" msgstr "已预留序列号" @@ -49375,8 +49453,8 @@ msgid "Serial No and Batch" msgstr "序列号和批号" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 -msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled." -msgstr "启用序列号/批次字段时不可使用序列号批次选择器" +msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." +msgstr "" #. Name of a report #. Label of a Link in the Stock Workspace @@ -49387,7 +49465,7 @@ msgstr "启用序列号/批次字段时不可使用序列号批次选择器" msgid "Serial No and Batch Traceability" msgstr "序列号与批次可追溯性" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1178 msgid "Serial No is mandatory" msgstr "序列号为必填项" @@ -49407,21 +49485,18 @@ msgstr "序列号{0}已扫描" msgid "Serial No {0} does not belong to Delivery Note {1}" msgstr "序列号{0}不属于销售出库{1}" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:325 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:326 msgid "Serial No {0} does not belong to Item {1}" msgstr "序列号{0}不属于物料{1}" #: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52 #: erpnext/selling/doctype/installation_note/installation_note.py:84 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3489 msgid "Serial No {0} does not exist" msgstr "序列号{0}不存在" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3487 -msgid "Serial No {0} does not exists" -msgstr "序列号{0}不存在" - #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 -msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry." +msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." msgstr "" #: erpnext/public/js/utils/barcode_scanner.js:435 @@ -49436,25 +49511,26 @@ msgstr "序列号{0}已分配给客户{1},仅可针对客户{1}进行退货" msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}" msgstr "序列号{0}未存在于{1}{2}中,因此不能针对该{1}{2}进行退回" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:342 -msgid "Serial No {0} is under maintenance contract upto {1}" -msgstr "序列号{0}截至至{1}之前在年度保养合同内。" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 +msgid "Serial No {0} is under maintenance contract until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:335 -msgid "Serial No {0} is under warranty upto {1}" -msgstr "序列号{0}截至至{1}之前在保修内。" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 +msgid "Serial No {0} is under warranty until {1}" +msgstr "" -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321 +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" msgstr "序列号{0}未找到" -#: erpnext/selling/page/point_of_sale/pos_controller.js:855 +#: erpnext/selling/page/point_of_sale/pos_controller.js:846 msgid "Serial No: {0} has already been transacted into another POS Invoice." msgstr "序列号:{0}已存在于其他POS发票中。" #: erpnext/public/js/utils/barcode_scanner.js:292 #: erpnext/public/js/utils/serial_no_batch_selector.js:16 #: erpnext/public/js/utils/serial_no_batch_selector.js:201 +#: erpnext/stock/doctype/batch/batch.py:393 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169 msgid "Serial Nos" @@ -49474,7 +49550,7 @@ msgstr "" msgid "Serial Nos are created successfully" msgstr "序列号创建成功" -#: erpnext/stock/stock_ledger.py:2317 +#: erpnext/stock/stock_ledger.py:2306 msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding." msgstr "序列号已在库存预留条目中预留,继续操作前需取消预留。" @@ -49575,6 +49651,10 @@ msgstr "序列号和批次捆绑{0}未提交" msgid "Serial and Batch Bundle {0} is submitted and its entries cannot be modified." msgstr "" +#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 +msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" +msgstr "" + #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' #: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json @@ -49623,7 +49703,7 @@ msgstr "序列号与批号预留" msgid "Serial and Batch Summary" msgstr "序列号与批号报表" -#: erpnext/stock/utils.py:397 +#: erpnext/stock/utils.py:396 msgid "Serial number {0} entered more than once" msgstr "序列号{0}已多次输入" @@ -49631,122 +49711,12 @@ msgstr "序列号{0}已多次输入" msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse." msgstr "仓库{1}下物料{0}的序列号不可用,请尝试更换仓库。" -#. Label of the naming_series (Select) field in DocType 'Bank Transaction' -#. Label of the naming_series (Select) field in DocType 'Budget' -#. Label of the naming_series (Select) field in DocType 'Cashier Closing' -#. Label of the naming_series (Select) field in DocType 'Dunning' -#. Label of the naming_series (Select) field in DocType 'Journal Entry' -#. Label of the naming_series (Select) field in DocType 'Journal Entry -#. Template' -#. Label of the naming_series (Select) field in DocType 'Payment Entry' -#. Label of the naming_series (Select) field in DocType 'Payment Order' -#. Label of the naming_series (Select) field in DocType 'Payment Request' -#. Label of the naming_series (Select) field in DocType 'POS Invoice' -#. Label of the naming_series (Select) field in DocType 'Purchase Invoice' -#. Label of the naming_series (Select) field in DocType 'Sales Invoice' -#. Label of the naming_series (Select) field in DocType 'Asset' -#. Label of the naming_series (Select) field in DocType 'Asset Capitalization' -#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log' -#. Label of the naming_series (Select) field in DocType 'Asset Repair' -#. Label of the naming_series (Select) field in DocType 'Purchase Order' -#. Label of the naming_series (Select) field in DocType 'Request for Quotation' -#. Label of the naming_series (Select) field in DocType 'Supplier' -#. Label of the naming_series (Select) field in DocType 'Supplier Quotation' -#. Label of the naming_series (Select) field in DocType 'Lead' -#. Label of the naming_series (Select) field in DocType 'Opportunity' -#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule' -#. Label of the naming_series (Select) field in DocType 'Maintenance Visit' -#. Label of the naming_series (Select) field in DocType 'Blanket Order' -#. Label of the naming_series (Select) field in DocType 'Work Order' -#. Label of the naming_series (Select) field in DocType 'Project' -#. Label of the naming_series (Data) field in DocType 'Project Update' -#. Label of the naming_series (Select) field in DocType 'Timesheet' -#. Label of the naming_series (Select) field in DocType 'Customer' -#. Label of the naming_series (Select) field in DocType 'Installation Note' -#. Label of the naming_series (Select) field in DocType 'Quotation' -#. Label of the naming_series (Select) field in DocType 'Sales Order' -#. Label of the naming_series (Select) field in DocType 'Driver' -#. Label of the naming_series (Select) field in DocType 'Employee' -#. Label of the naming_series (Select) field in DocType 'Delivery Note' -#. Label of the naming_series (Select) field in DocType 'Delivery Trip' -#. Label of the naming_series (Select) field in DocType 'Item' -#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher' -#. Label of the naming_series (Select) field in DocType 'Material Request' -#. Label of the naming_series (Select) field in DocType 'Packing Slip' -#. Label of the naming_series (Select) field in DocType 'Pick List' -#. Label of the naming_series (Select) field in DocType 'Purchase Receipt' -#. Label of the naming_series (Select) field in DocType 'Quality Inspection' -#. Label of the naming_series (Select) field in DocType 'Stock Entry' -#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward -#. Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting Order' -#. Label of the naming_series (Select) field in DocType 'Subcontracting -#. Receipt' -#. Label of the naming_series (Select) field in DocType 'Issue' -#. Label of the naming_series (Select) field in DocType 'Warranty Claim' -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json -#: erpnext/accounts/doctype/budget/budget.json -#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json -#: erpnext/accounts/doctype/dunning/dunning.json -#: erpnext/accounts/doctype/journal_entry/journal_entry.js:362 -#: erpnext/accounts/doctype/journal_entry/journal_entry.json -#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json -#: erpnext/accounts/doctype/payment_entry/payment_entry.json -#: erpnext/accounts/doctype/payment_order/payment_order.json -#: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json -#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json -#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json -#: erpnext/assets/doctype/asset/asset.json -#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json -#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json -#: erpnext/assets/doctype/asset_repair/asset_repair.json -#: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json -#: erpnext/buying/doctype/supplier/supplier.json -#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json -#: erpnext/crm/doctype/lead/lead.json -#: erpnext/crm/doctype/opportunity/opportunity.json -#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json -#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json -#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json -#: erpnext/manufacturing/doctype/work_order/work_order.json -#: erpnext/projects/doctype/project/project.json -#: erpnext/projects/doctype/project_update/project_update.json -#: erpnext/projects/doctype/timesheet/timesheet.json -#: erpnext/public/js/utils/naming_series.js:34 -#: erpnext/selling/doctype/customer/customer.json -#: erpnext/selling/doctype/installation_note/installation_note.json -#: erpnext/selling/doctype/quotation/quotation.json -#: erpnext/selling/doctype/sales_order/sales_order.json -#: erpnext/setup/doctype/driver/driver.json -#: erpnext/setup/doctype/employee/employee.json -#: erpnext/stock/doctype/delivery_note/delivery_note.json -#: erpnext/stock/doctype/delivery_trip/delivery_trip.json -#: erpnext/stock/doctype/item/item.json -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json -#: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/packing_slip/packing_slip.json -#: erpnext/stock/doctype/pick_list/pick_list.json -#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json -#: erpnext/stock/doctype/quality_inspection/quality_inspection.json -#: erpnext/stock/doctype/stock_entry/stock_entry.json -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json -#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json -#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json -#: erpnext/support/doctype/issue/issue.json -#: erpnext/support/doctype/warranty_claim/warranty_claim.json -msgid "Series" -msgstr "单据编号模板" - #. Label of the series_for_depreciation_entry (Data) field in DocType 'Company' #: erpnext/setup/doctype/company/company.json msgid "Series for Asset Depreciation Entry (Journal Entry)" msgstr "固定资产折旧凭证号模板(日记账凭证)" -#: erpnext/buying/doctype/supplier/supplier.py:142 +#: erpnext/buying/doctype/supplier/supplier.py:143 msgid "Series is mandatory" msgstr "单据编号模板是必填字段" @@ -49828,7 +49798,7 @@ msgid "Service Item {0} is disabled." msgstr "服务物料{0}已停用" #: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67 -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:164 msgid "Service Item {0} must be a non-stock item." msgstr "服务物料{0}必须为非库存物料" @@ -49937,12 +49907,12 @@ msgid "Service Stop Date" msgstr "服务停止日期" #: erpnext/accounts/deferred_revenue.py:45 -#: erpnext/public/js/controllers/transaction.js:1807 +#: erpnext/public/js/controllers/transaction.js:1821 msgid "Service Stop Date cannot be after Service End Date" msgstr "服务停止日不能晚于服务结束日" #: erpnext/accounts/deferred_revenue.py:42 -#: erpnext/public/js/controllers/transaction.js:1804 +#: erpnext/public/js/controllers/transaction.js:1818 msgid "Service Stop Date cannot be before Service Start Date" msgstr "服务停止日期不能早于服务开始日期" @@ -49966,7 +49936,7 @@ msgstr "设置预付和分配(先进先出)" #. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry #. Detail' -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:825 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:826 #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json msgid "Set Basic Rate Manually" msgstr "手动设置成本" @@ -49981,7 +49951,7 @@ msgstr "设置默认供应商" msgid "Set Delivery Warehouse" msgstr "设置交货仓库" -#: erpnext/buying/doctype/purchase_order/purchase_order.js:718 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:716 msgid "Set Dropship Items Delivered Quantity" msgstr "" @@ -50086,7 +50056,7 @@ msgstr "启用序列号/批号编号模板" #. Label of the set_warehouse (Link) field in DocType 'Sales Order' #. Label of the set_warehouse (Link) field in DocType 'Delivery Note' #. Label of the set_from_warehouse (Link) field in DocType 'Material Request' -#: erpnext/public/js/utils/sales_common.js:568 +#: erpnext/public/js/utils/sales_common.js:574 #: erpnext/selling/doctype/sales_order/sales_order.json #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json @@ -50104,7 +50074,7 @@ msgstr "" #. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order' #: erpnext/accounts/doctype/sales_invoice/sales_invoice.json #: erpnext/buying/doctype/purchase_order/purchase_order.json -#: erpnext/public/js/utils/sales_common.js:565 +#: erpnext/public/js/utils/sales_common.js:571 #: erpnext/stock/doctype/delivery_note/delivery_note.json #: erpnext/stock/doctype/material_request/material_request.json #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json @@ -50130,7 +50100,7 @@ msgstr "设置为关闭" msgid "Set as Completed" msgstr "设为已完成" -#: erpnext/public/js/utils/sales_common.js:592 +#: erpnext/public/js/utils/sales_common.js:598 #: erpnext/selling/doctype/quotation/quotation.js:146 msgid "Set as Lost" msgstr "设置为未成交" @@ -50228,15 +50198,15 @@ msgstr "" msgid "Set valuation rate for rejected Materials" msgstr "" -#: erpnext/assets/doctype/asset/asset.py:908 +#: erpnext/assets/doctype/asset/asset.py:910 msgid "Set {0} in asset category {1} for company {2}" msgstr "为{2}公司设置资产类别{1}的{0}" -#: erpnext/assets/doctype/asset/asset.py:1152 +#: erpnext/assets/doctype/asset/asset.py:1153 msgid "Set {0} in asset category {1} or company {2}" msgstr "在资产类别{1}或公司{2}中设置{0}" -#: erpnext/assets/doctype/asset/asset.py:1149 +#: erpnext/assets/doctype/asset/asset.py:1150 msgid "Set {0} in company {1}" msgstr "在{1}公司设置{0}" @@ -50304,7 +50274,7 @@ msgid "Setting up company" msgstr "创建公司" #: erpnext/manufacturing/doctype/bom/bom.py:910 -#: erpnext/manufacturing/doctype/work_order/work_order.py:932 +#: erpnext/manufacturing/doctype/work_order/work_order.py:928 msgid "Setting {0} is required" msgstr "必须设置{0}" @@ -50732,6 +50702,7 @@ msgid "Show Completed" msgstr "显示已完成" #: erpnext/accounts/report/general_ledger/general_ledger.js:209 +#: erpnext/accounts/report/general_ledger/general_ledger.py:684 msgid "Show Credit / Debit in Company Currency" msgstr "显示公司货币的贷方/借方金额" @@ -50934,7 +50905,7 @@ msgstr "仅显示即将到期的条款" msgid "Show pay button in Purchase Order portal" msgstr "" -#: erpnext/stock/utils.py:565 +#: erpnext/stock/utils.py:564 msgid "Show pending entries" msgstr "显示待处理条目" @@ -51039,11 +51010,11 @@ msgstr "简单的 Python 公式应用于阅读字段。
                    数字例如 1:
                    " msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:503 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:502 msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table." msgstr "由于产成品{1}存在{0}单位的加工损耗,应在物料表中将该产成品的数量减少{0}单位。" @@ -51104,7 +51075,7 @@ msgstr "跳过来料加工转移" msgid "Skip Material Transfer to WIP Warehouse" msgstr "不进行工单发料" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:576 msgid "Skipped {0} DocType(s):
                    {1}" msgstr "" @@ -51160,8 +51131,8 @@ msgid "Some required Company details are missing. You don't have permission to u msgstr "部分必需的公司信息缺失。您无权限更新这些信息,请联系系统管理员。" #: erpnext/www/book_appointment/index.js:248 -msgid "Something went wrong please try again" -msgstr "发生错误,请重试" +msgid "Something went wrong, please try again" +msgstr "" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51228,7 +51199,7 @@ msgstr "" msgid "Source Stock Entry (Manufacture)" msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:523 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:522 msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order." msgstr "" @@ -51265,8 +51236,8 @@ msgstr "来源类型" #: erpnext/manufacturing/doctype/work_order/work_order.json #: erpnext/manufacturing/doctype/work_order_item/work_order_item.json #: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:129 -#: erpnext/public/js/utils/sales_common.js:564 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:135 +#: erpnext/public/js/utils/sales_common.js:570 #: erpnext/selling/doctype/sales_order_item/sales_order_item.json #: erpnext/stock/dashboard/item_dashboard.js:227 #: erpnext/stock/doctype/material_request_item/material_request_item.json @@ -51396,7 +51367,7 @@ msgstr "拆分问题" msgid "Split Qty" msgstr "分割数量" -#: erpnext/assets/doctype/asset/mapper.py:206 +#: erpnext/assets/doctype/asset/mapper.py:205 msgid "Split Quantity must be less than Asset Quantity" msgstr "拆分数量必须小于资产数量。" @@ -51409,7 +51380,12 @@ msgstr "" msgid "Split commission credit across multiple sales persons." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2197 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:600 +#: erpnext/public/js/controllers/buying.js:558 +msgid "Splitting {0} units of {1}" +msgstr "" + +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" msgstr "根据付款条款将{0}{1}拆分为{2}行" @@ -51462,7 +51438,7 @@ msgstr "阶段名" msgid "Stale Days" msgstr "信用证有效期天数" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:163 msgid "Stale Days should start from 1." msgstr "陈旧天数应从1开始" @@ -51527,10 +51503,26 @@ msgstr "用于销售业务的标准税费模板,模板可包括税与费用科 msgid "Standing Name" msgstr "排名" +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 +msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 +msgid "Standing scores must cover the full range from 0 to 100" +msgstr "" + +#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 +msgid "Standing {0} must have a minimum grade lower than its maximum grade" +msgstr "" + #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" msgstr "开始 / 恢复" +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 +msgid "Start Date cannot be after End Date" +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" msgstr "开始日期不能早于当前日期" @@ -51560,7 +51552,7 @@ msgstr "{0}的开始时间不能大于或等于结束时间" msgid "Start Timer" msgstr "开始计时" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235 #: erpnext/accounts/report/balance_sheet/balance_sheet.html:144 #: erpnext/accounts/report/cash_flow/cash_flow.html:144 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56 @@ -51589,10 +51581,14 @@ msgstr "物料{0}的开始日期必须小于结束日期" msgid "Start date should be less than end date for task {0}" msgstr "开始日期应该小于任务{0}的结束日期" -#: erpnext/utilities/bulk_transaction.py:46 +#: erpnext/utilities/bulk_transaction.py:42 msgid "Started a background job to create {1} {0}. {2}" msgstr "" +#: erpnext/public/js/bulk_transaction_processing.js:29 +msgid "Starting a background job to create {0} {1}" +msgstr "" + #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' #. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque @@ -51673,7 +51669,7 @@ msgstr "状态图样" msgid "Status and Reference" msgstr "" -#: erpnext/projects/doctype/project/project.py:787 +#: erpnext/projects/doctype/project/project.py:788 msgid "Status must be Cancelled or Completed" msgstr "状态必须是已取消或已完成" @@ -51801,8 +51797,8 @@ msgid "Stock Closing Entry {0} already exists for the selected date range" msgstr "所选日期范围已存在库存结转分录{0}" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 -msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it." -msgstr "库存结转分录{0}已加入处理队列,系统需要时间完成处理" +msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." +msgstr "" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51883,17 +51879,21 @@ msgstr "库存凭证物料" msgid "Stock Entry Type" msgstr "移动类型" -#: erpnext/stock/doctype/pick_list/mapper.py:290 -msgid "Stock Entry has been already created against this Pick List" -msgstr "该拣货单的物料移动单已生成" +#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 +msgid "Stock Entry Type {0} cannot be set as standard" +msgstr "" + +#: erpnext/stock/doctype/pick_list/mapper.py:289 +msgid "Stock Entry has already been created against this Pick List" +msgstr "" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" msgstr "物料移动{0}已创建" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1638 -msgid "Stock Entry {0} has created" -msgstr "库存分录{0}已创建" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1639 +msgid "Stock Entry {0} has been created" +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52059,7 +52059,7 @@ msgstr "可用数量" #: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json #: erpnext/stock/doctype/material_request_item/material_request_item.json -#: erpnext/stock/report/item_where_used/item_where_used.py:82 +#: erpnext/stock/report/item_where_used/item_where_used.py:76 #: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34 #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34 msgid "Stock Qty" @@ -52142,7 +52142,7 @@ msgstr "物料成本价追溯调整设置" #: erpnext/stock/doctype/pick_list/pick_list.js:175 #: erpnext/stock/doctype/pick_list/pick_list.js:180 #: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12 -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:751 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:752 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1257 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666 @@ -52167,15 +52167,15 @@ msgstr "库存预留" msgid "Stock Reservation Entries Cancelled" msgstr "库存预留单已取消" -#: erpnext/controllers/subcontracting_inward_controller.py:1043 +#: erpnext/controllers/subcontracting_inward_controller.py:1062 #: erpnext/manufacturing/doctype/production_plan/services/reservation.py:152 #: erpnext/manufacturing/doctype/work_order/services/reservation.py:597 -#: erpnext/selling/doctype/sales_order/services/reservation.py:122 +#: erpnext/selling/doctype/sales_order/services/reservation.py:133 #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1799 msgid "Stock Reservation Entries Created" msgstr "库存预留单已创建" -#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:408 +#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:420 msgid "Stock Reservation Entries created" msgstr "" @@ -52345,7 +52345,7 @@ msgstr "库存交易" #: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json #: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35 -#: erpnext/stock/report/item_where_used/item_where_used.py:88 +#: erpnext/stock/report/item_where_used/item_where_used.py:82 #: erpnext/stock/report/reserved_stock/reserved_stock.py:110 #: erpnext/stock/report/stock_balance/stock_balance.py:510 #: erpnext/stock/report/stock_ledger/stock_ledger.py:295 @@ -52504,9 +52504,9 @@ msgstr "已取消工单{0}的库存预留" msgid "Stock not available for Item {0} in Warehouse {1}." msgstr "物料 {0} 在仓库 {2} 中无可预留数量" -#: erpnext/selling/page/point_of_sale/pos_controller.js:835 -msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "物料编码{0}在仓库{1}中库存不足。可用数量为{2}{3}" +#: erpnext/selling/page/point_of_sale/pos_controller.js:826 +msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." +msgstr "" #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -52524,7 +52524,7 @@ msgstr "补录单据过账日期不得早于今天-锁帐天数,如今天9月2 msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order." msgstr "关联销售订单的采购入库提交时自动创建销售订单库存预留单" -#: erpnext/stock/utils.py:556 +#: erpnext/stock/utils.py:555 msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later." msgstr "因成本价追溯调整后台处理中,不允许冻结库存科目。请稍后再试" @@ -52539,7 +52539,7 @@ msgstr "石材" msgid "Stop Reason" msgstr "停机原因" -#: erpnext/manufacturing/doctype/work_order/work_order.py:843 +#: erpnext/manufacturing/doctype/work_order/work_order.py:839 msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel" msgstr "停止的工单不能取消,先取消停止" @@ -52547,7 +52547,7 @@ msgstr "停止的工单不能取消,先取消停止" #: erpnext/setup/setup_wizard/operations/defaults_setup.py:33 #: erpnext/setup/setup_wizard/operations/install_fixtures.py:537 #: erpnext/stock/doctype/item/item.py:327 -#: erpnext/stock/doctype/item/item.py:1728 erpnext/tests/utils.py:248 +#: erpnext/stock/doctype/item/item.py:1730 erpnext/tests/utils.py:248 msgid "Stores" msgstr "仓库" @@ -52761,7 +52761,7 @@ msgstr "外协转换系数" msgid "Subcontracting Delivery" msgstr "外包交货" -#: erpnext/stock/report/item_where_used/item_where_used.py:362 +#: erpnext/stock/report/item_where_used/item_where_used.py:360 msgid "Subcontracting Finished Good" msgstr "" @@ -52833,7 +52833,7 @@ msgstr "外包收货订单服务物料" #. Receipt Supplied Item' #. Label of a Workspace Sidebar Item #: erpnext/buying/doctype/purchase_order/purchase_order.js:370 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/stock/doctype/stock_entry/stock_entry.json #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json @@ -52871,7 +52871,7 @@ msgstr "委外订单加工费明细" msgid "Subcontracting Order Supplied Item" msgstr "委外订单原材料明细" -#: erpnext/buying/doctype/purchase_order/mapper.py:244 +#: erpnext/buying/doctype/purchase_order/mapper.py:242 msgid "Subcontracting Order {0} created." msgstr "外协订单{0}已创建" @@ -52945,7 +52945,7 @@ msgstr "外包退货" msgid "Subcontracting Sales Order" msgstr "外包销售订单" -#: erpnext/stock/report/item_where_used/item_where_used.py:336 +#: erpnext/stock/report/item_where_used/item_where_used.py:334 msgid "Subcontracting Service Item" msgstr "" @@ -52964,7 +52964,7 @@ msgstr "" msgid "Subdivision" msgstr "细分" -#: erpnext/buying/doctype/purchase_order/mapper.py:240 +#: erpnext/buying/doctype/purchase_order/mapper.py:238 #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:131 msgid "Submit Action Failed" msgstr "提交操作失败" @@ -52993,7 +52993,7 @@ msgstr "提交此生产工单以进行后续操作。" msgid "Submit your Quotation" msgstr "提交您的报价单" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1588 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1589 msgid "Submitted Job Card cannot be processed." msgstr "" @@ -53135,7 +53135,7 @@ msgstr "成功设置" msgid "Successful" msgstr "成功" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:608 msgid "Successfully Reconciled" msgstr "核销/对账成功" @@ -53313,7 +53313,7 @@ msgstr "已发料数量" #: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47 #: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94 -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:90 #: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:213 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8 #: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29 @@ -53495,7 +53495,7 @@ msgstr "供应商发票日期" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58 #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json #: erpnext/accounts/report/general_ledger/general_ledger.html:202 -#: erpnext/accounts/report/general_ledger/general_ledger.py:812 +#: erpnext/accounts/report/general_ledger/general_ledger.py:813 #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226 msgid "Supplier Invoice No" msgstr "供应商发票号" @@ -53643,7 +53643,7 @@ msgstr "供应商比价" msgid "Supplier Quotation Item" msgstr "供应商报价明细" -#: erpnext/buying/doctype/request_for_quotation/mapper.py:85 +#: erpnext/buying/doctype/request_for_quotation/mapper.py:84 msgid "Supplier Quotation {0} Created" msgstr "供应商报价{0}已创建" @@ -53828,10 +53828,6 @@ msgstr "售后支持团队" msgid "Support Tickets" msgstr "客服工单" -#: erpnext/public/js/utils/naming_series.js:89 -msgid "Supported Variables:" -msgstr "" - #: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64 msgid "Suspected Discount Amount" msgstr "疑似折扣金额" @@ -53918,7 +53914,7 @@ msgstr "" msgid "TDS Computation Summary" msgstr "代扣所得税摘要" -#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:720 +#: erpnext/accounts/doctype/purchase_invoice/services/gl_composer.py:723 msgid "TDS Deducted" msgstr "已扣除TDS" @@ -53979,8 +53975,8 @@ msgid "Target Asset {0} does not belong to company {1}" msgstr "目标资产{0}不属于公司{1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 -msgid "Target Asset {0} needs to be composite asset" -msgstr "目标资产{0}需为组合资产" +msgid "Target Asset {0} needs to be a composite asset" +msgstr "" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -54089,11 +54085,11 @@ msgstr "收料仓地址(链接)" msgid "Target Warehouse Reservation Error" msgstr "目标仓库预留错误" -#: erpnext/controllers/subcontracting_inward_controller.py:232 -msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order." -msgstr "产成品的目标仓库必须与关联外包收货订单的工作订单{2}中的产成品仓库{1}相同。" +#: erpnext/controllers/subcontracting_inward_controller.py:233 +msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {0} in Work Order {1} linked to the Subcontracting Inward Order." +msgstr "产成品的目标仓库必须与关联外包收货订单的工作订单{1}中的产成品仓库{0}相同。" -#: erpnext/manufacturing/doctype/work_order/work_order.py:607 +#: erpnext/manufacturing/doctype/work_order/work_order.py:603 msgid "Target Warehouse is required before Submit" msgstr "提交前需填写目标仓库" @@ -54569,7 +54565,7 @@ msgstr "" #. Detail' #: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json #: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239 -#: erpnext/controllers/taxes_and_totals.py:1264 +#: erpnext/controllers/taxes_and_totals.py:1247 msgid "Taxable Amount" msgstr "应税金额" @@ -54781,7 +54777,7 @@ msgstr "电视" msgid "Template Item" msgstr "模板物料" -#: erpnext/stock/get_item_details.py:361 +#: erpnext/stock/get_item_details.py:360 msgid "Template Item Selected" msgstr "已选模板物料" @@ -55088,23 +55084,27 @@ msgstr "特斯拉" msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')" msgstr "" -#: erpnext/stock/doctype/packing_slip/packing_slip.py:91 -msgid "The 'From Package No.' field must neither be empty nor it's value less than 1." -msgstr "“From Package No.”字段不能为空,也不能小于1。" - -#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 -msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings." -msgstr "门户询价申请功能已禁用。如需启用,请在门户设置中开启" +#: erpnext/stock/doctype/packing_slip/packing_slip.py:89 +msgid "The 'From Package No.' field must not be empty or have a value less than 1." +msgstr "" #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json msgid "The BOM which will be replaced" msgstr "此物料清单将被替换" -#: erpnext/stock/serial_batch_bundle.py:1555 +#: erpnext/controllers/subcontracting_controller.py:1056 +msgid "The Batch No {0} has not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." msgstr "批次{0}存在负批次数量{1}。要修复此问题,请前往该批次并点击“重新计算批次数量”。若问题仍存在,请创建入库凭证。" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 +msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." +msgstr "" + #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" msgstr "活动'{0}'已存在于{1}'{2}'中" @@ -55129,6 +55129,10 @@ msgstr "总账分录和期末余额将在后台处理,可能需要几分钟" msgid "The GL Entries will be cancelled in the background, it can take a few minutes." msgstr "总账分录将在后台取消,可能需要几分钟" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 +msgid "The Item {0} does not have Serial No or Batch No" +msgstr "" + #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" msgstr "积分方案对所选公司无效" @@ -55146,9 +55150,12 @@ msgid "The Pick List having Stock Reservation Entries cannot be updated. If you msgstr "存在库存预留记录的拣货清单无法更新。如需修改,建议在更新前取消现有库存预留" #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 -#: erpnext/stock/doctype/stock_entry/stock_entry.py:1376 -msgid "The Process Loss Qty has reset as per job cards Process Loss Qty" -msgstr "已基于工单生产任务单最大制程损耗重置了制程损耗数量" +msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 +msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" +msgstr "" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55158,11 +55165,15 @@ msgstr "该销售员与{0}相关联" msgid "The Serial No at Row #{0}: {1} is not available in warehouse {2}." msgstr "第{0}行的序列号{1}在仓库{2}中不可用" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2688 msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction." msgstr "序列号{0}已为{1}{2}预留,不能用于其他交易" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:951 +#: erpnext/controllers/subcontracting_controller.py:1071 +msgid "The Serial Nos {0} have not been supplied against the {1} {2}" +msgstr "" + +#: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" msgstr "序列号批次组合{0}对此交易无效。在序列号批次组合{0}中,'交易类型'应为'出库'而非'入库'" @@ -55210,15 +55221,15 @@ msgstr "" msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1428 +#: erpnext/manufacturing/doctype/job_card/job_card.py:1429 msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}." msgstr "" #: erpnext/accounts/doctype/dunning/dunning.py:87 -msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})." -msgstr "发票{}({})的币种与本催款单({})币种不一致" +msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." +msgstr "" -#: erpnext/selling/page/point_of_sale/pos_controller.js:209 +#: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." msgstr "当前POS期初凭证已过期。请关闭该凭证并创建新凭证。" @@ -55267,6 +55278,10 @@ msgstr "“转入股东”字段不能为空" msgid "The field {0} in row {1} is not set" msgstr "第{1}行的字段{0}未设置" +#: erpnext/stock/stock_ledger.py:369 +msgid "The field {0} is required for reposting" +msgstr "" + #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" msgstr "转出股东和转入股东字段不能为空" @@ -55288,9 +55303,9 @@ msgstr "" msgid "The folio numbers are not matching" msgstr "作品集编号不匹配" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307 -msgid "The following Items, having Putaway Rules, could not be accomodated:" -msgstr "以下存在上架规则的物料无法安置:" +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 +msgid "The following Items, having Putaway Rules, could not be accommodated:" +msgstr "" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55317,8 +55332,8 @@ msgid "The following employees are currently still reporting to {0}:" msgstr "以下员工当前仍汇报给{0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 -msgid "The following invalid Pricing Rules are deleted:" -msgstr "以下无效定价规则已被删除:" +msgid "The following invalid Pricing Rules are deleted:{0}" +msgstr "" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55329,7 +55344,7 @@ msgstr "" msgid "The following rows are duplicates:" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:567 +#: erpnext/stock/doctype/material_request/material_request.py:566 msgid "The following {0} were created: {1}" msgstr "已创建以下{0}:{1}" @@ -55365,8 +55380,8 @@ msgid "The items {items} are not marked as {type_of} item. You can enable them a msgstr "物料{items}未标记为{type_of}物料。可在各自主数据中启用" #: erpnext/manufacturing/doctype/workstation/workstation.py:595 -msgid "The job card {0} is in {1} state and you cannot complete." -msgstr "工序卡{0}处于{1}状态,无法完成" +msgid "The job card {0} is in {1} state and you cannot complete it." +msgstr "" #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55403,12 +55418,12 @@ msgid "The opening balance might not match your bank statement. Would you like t msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:43 -msgid "The operation {0} can not add multiple times" -msgstr "操作{0}不能重复添加" +msgid "The operation {0} cannot be added multiple times" +msgstr "" #: erpnext/manufacturing/doctype/operation/operation.py:48 -msgid "The operation {0} can not be the sub operation" -msgstr "操作{0}不能作为子工序" +msgid "The operation {0} cannot be its own sub-operation" +msgstr "" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55456,6 +55471,10 @@ msgstr "允许超订单量出入库百分比。如,订单数量100个,容差 msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units." msgstr "允许超订单需求量发料百分比。例如需求100个,最多允许超10%,则最多可发料110个" +#: erpnext/stock/doctype/item_price/item_price.py:71 +msgid "The price list {0} does not exist or is disabled" +msgstr "" + #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system." @@ -55465,7 +55484,7 @@ msgstr "" msgid "The reference number of the transaction" msgstr "" -#: erpnext/public/js/utils.js:959 +#: erpnext/public/js/utils.js:976 msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?" msgstr "更新物料时将释放预留库存。确定继续?" @@ -55482,8 +55501,8 @@ msgid "The selected BOMs are not for the same item" msgstr "所选物料清单不能用于同一个物料" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 -msgid "The selected change account {} doesn't belongs to Company {}." -msgstr "所选找零账户{}不属于公司{}" +msgid "The selected change account {0} does not belong to Company {1}." +msgstr "" #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55499,8 +55518,8 @@ msgstr "卖方和买方不能相同" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 -msgid "The serial and batch bundle {0} not linked to {1} {2}" -msgstr "序列号批次组合{0}未链接到{1}{2}" +msgid "The serial and batch bundle {0} is not linked to {1} {2}" +msgstr "" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55518,11 +55537,11 @@ msgstr "股份已经存在" msgid "The shares don't exist with the {0}" msgstr "股份不存在{0}" -#: erpnext/stock/stock_ledger.py:833 -msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." -msgstr "物料{0}在仓库{1}的库存于{2}出现负数。应在{4} {5}前创建正数分录{3}以记录正确计价。详情参阅文档" +#: erpnext/stock/stock_ledger.py:832 +msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation." +msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:745 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746 msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation:

                    {1}" msgstr "以下物料和仓库的库存已被预留,请取消预留以{0}库存对账:

                    {1}" @@ -55544,17 +55563,17 @@ msgstr "" msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice." msgstr "系统将基于此设置从POS界面创建销售发票或POS发票。对于高流量交易,建议使用POS发票。" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1020 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1117 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage" msgstr "该任务已被列入后台工作。如果在后台处理有任何问题,系统将在此库存对账中添加有关错误的注释,并恢复到草稿阶段" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1031 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1128 msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage" msgstr "任务已加入后台队列。若后台处理出错,系统将在库存对账添加错误注释并恢复为已提交状态" #: erpnext/stock/doctype/material_request/material_request.py:352 -msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "物料申请{1}中物料{3}的发放/转移数量{0}不能超过允许申请量{2}" +msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55592,7 +55611,7 @@ msgstr "有此角色的用户不受锁账天数限制" msgid "The value of {0} differs between Items {1} and {2}" msgstr "{0}的值在物料{1}和{2}之间不一致" -#: erpnext/controllers/item_variant.py:206 +#: erpnext/controllers/item_variant.py:205 msgid "The value {0} is already assigned to an existing Item {1}." msgstr "现有物料{1}已使用此属性值{0}。" @@ -55616,7 +55635,7 @@ msgstr "" msgid "The {0} ({1}) must be equal to {2} ({3})" msgstr "{0}({1})必须等于{2}({3})" -#: erpnext/public/js/controllers/transaction.js:3380 +#: erpnext/public/js/controllers/transaction.js:3448 msgid "The {0} contains Unit Price Items." msgstr "{0}包含单价物料。" @@ -55624,7 +55643,7 @@ msgstr "{0}包含单价物料。" msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error." msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:573 +#: erpnext/stock/doctype/material_request/material_request.py:572 msgid "The {0} {1} created successfully" msgstr "成功创建{0}{1}" @@ -55632,6 +55651,10 @@ msgstr "成功创建{0}{1}" msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}" msgstr "{0}{1}与{3}{4}中的{0}{2}不匹配" +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 +msgid "The {0} {1} is in submitted state, please cancel it first" +msgstr "" + #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." msgstr "{0} {1} 用于计算入库成品成本" @@ -55640,7 +55663,7 @@ msgstr "{0} {1} 用于计算入库成品成本" msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc." msgstr "随后定价规则将基于客户、客户组、区域、供应商、供应商类型、营销活动、销售伙伴等进行筛选。" -#: erpnext/assets/doctype/asset/asset.py:730 +#: erpnext/assets/doctype/asset/asset.py:732 msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset." msgstr "资产存在有效维护或维修记录。取消前需完成所有相关操作" @@ -55652,7 +55675,7 @@ msgstr "单价,股份数量和计算的金额之间不一致" msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report" msgstr "存在关联总账分录。在生产系统将{0}改为非{1}将导致'{2}'报表错误" -#: erpnext/utilities/bulk_transaction.py:69 +#: erpnext/utilities/bulk_transaction.py:65 msgid "There are no Failed transactions" msgstr "无失败交易" @@ -55669,6 +55692,10 @@ msgstr "没有可生成演示数据的有效会计年度" msgid "There are no entries in the system where the clearance date is before the posting date." msgstr "" +#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 +msgid "There are no item variants for the selected item" +msgstr "" + #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" msgstr "该日期无可用时段" @@ -55685,10 +55712,6 @@ msgstr "库存计价有两种方法:先进先出(FIFO)和移动平均。 msgid "There are {0} unreconciled transactions before {1}." msgstr "" -#: erpnext/stock/report/item_variant_details/item_variant_details.py:25 -msgid "There aren't any item variants for the selected item" -msgstr "所选物料无变体" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21 msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier." msgstr "根据总消费金额可以有多个分等级积分规则。但所有等级的兑换系数相同。" @@ -55717,21 +55740,21 @@ msgstr "未找到{0}:{1}对应的批次" msgid "There is one unreconciled transaction before {0}." msgstr "" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:888 -msgid "There must be atleast 1 Finished Good in this Stock Entry" -msgstr "至少须有一行勾选了是成品的明细行" +#: erpnext/stock/doctype/stock_entry/stock_entry.py:887 +msgid "There must be at least 1 Finished Good in this Stock Entry" +msgstr "" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." msgstr "链接Plaid时创建银行账户出错" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250 +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:249 msgid "There was an error syncing transactions." msgstr "同步交易时出错" -#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175 -msgid "There was an error updating Bank Account {} while linking with Plaid." -msgstr "链接Plaid时更新银行账户{}出错" +#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 +msgid "There was an error updating Bank Account {0} while linking with Plaid." +msgstr "" #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55781,15 +55804,19 @@ msgstr "本月摘要" msgid "This PDF is password protected. Please set the correct statement password on the Bank Account and try again." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1745 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1754 msgid "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?" msgstr "" -#: erpnext/buying/doctype/purchase_order/mapper.py:253 +#: erpnext/selling/doctype/product_bundle/product_bundle.py:121 +msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" +msgstr "" + +#: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." msgstr "本采购订单已完全外包。" -#: erpnext/selling/doctype/sales_order/mapper.py:1054 +#: erpnext/selling/doctype/sales_order/mapper.py:1058 msgid "This Sales Order has been fully subcontracted." msgstr "本销售订单已完全外包。" @@ -55811,7 +55838,7 @@ msgstr "此操作将取消此账户与将ERPNext与您的银行账户集成的 msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes." msgstr "" -#: erpnext/assets/doctype/asset/asset.py:432 +#: erpnext/assets/doctype/asset/asset.py:434 msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category." msgstr "本资产类别标记为不可折旧。请停用折旧计算或选择其他类别。" @@ -55829,7 +55856,7 @@ msgstr "" msgid "This covers all scorecards tied to this Setup" msgstr "包含已设置的所有评分卡" -#: erpnext/controllers/status_updater.py:490 +#: erpnext/controllers/status_updater.py:501 msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?" msgstr "物料{4}{0} 超出订单允许量 {1}。你在对同一个{2}做另一个{3}?" @@ -55971,7 +55998,7 @@ msgstr "" msgid "This is what the system expects the closing balance to be in your bank statement." msgstr "" -#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35 +#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:36 msgid "This item filter has already been applied for the {0}" msgstr "该物料筛选器已应用于{0}" @@ -56035,7 +56062,7 @@ msgstr "因经由销售发票 {1} 退回,已创建固定资产{0} 折旧计划 msgid "This schedule was created when Asset {0} was scrapped." msgstr "针对固定资产 {0} 报废的折旧计划已创建" -#: erpnext/assets/doctype/asset/mapper.py:338 +#: erpnext/assets/doctype/asset/mapper.py:337 msgid "This schedule was created when Asset {0} was {1} into new Asset {2}." msgstr "本计划因资产{0}{1}至新资产{2}时创建。" @@ -56062,10 +56089,10 @@ msgid "This section allows the user to set the Body and Closing text of the Dunn msgstr "可设置催款函正文和结尾文本(按语言),用于打印" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1184 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1205 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1257 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1291 -#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1310 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1204 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1255 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1289 +#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:1307 msgid "This statement has already been imported." msgstr "" @@ -56123,8 +56150,8 @@ msgid "This will restrict user access to other employee records" msgstr "这将限制用户访问其他员工记录" #: erpnext/controllers/selling_controller.py:901 -msgid "This {} will be treated as material transfer." -msgstr "此{}将被视为物料转移" +msgid "This {0} will be treated as material transfer." +msgstr "" #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56252,6 +56279,12 @@ msgstr "时间(分钟)" msgid "Timeline" msgstr "时间线" +#. Description of the 'PCV Job Timeout (seconds)' (Int) field in DocType +#. 'Accounts Settings' +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json +msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" +msgstr "" + #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 msgid "Timer" @@ -56538,8 +56571,8 @@ msgid "To Time" msgstr "结束时间" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 -msgid "To Time cannot be before from date" -msgstr "到时间不能早于日期" +msgid "To Time cannot be before From Time" +msgstr "" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56569,15 +56602,15 @@ msgstr "要添加操作,请勾选“包含操作”复选框。" msgid "To add subcontracted Item's raw materials if include exploded items is disabled." msgstr "如果禁用包含爆炸项,则添加分包项的原材料。" -#: erpnext/controllers/status_updater.py:483 +#: erpnext/controllers/status_updater.py:494 msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item." msgstr "要允许超订单金额开票,请在“会计设置”或“物料主数据”中更新“发票超金额控制(%)”。" -#: erpnext/controllers/status_updater.py:477 +#: erpnext/controllers/status_updater.py:488 msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings." msgstr "" -#: erpnext/controllers/status_updater.py:479 +#: erpnext/controllers/status_updater.py:490 msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item." msgstr "要允许超量收货/出货,请在库存设置或物料主数据中更新“出入库超量控制”。" @@ -56594,8 +56627,8 @@ msgid "To be Delivered to Customer" msgstr "由供应商直运给客户" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 -msgid "To cancel a {} you need to cancel the POS Closing Entry {}." -msgstr "要取消 {},您需要先取消 POS 结账条目 {}。" +msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." +msgstr "" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56606,8 +56639,8 @@ msgid "To create a Payment Request reference document is required" msgstr "要创建收付款申请源单据是必需的" #: erpnext/assets/doctype/asset_category/asset_category.py:120 -msgid "To enable Capital Work in Progress Accounting," -msgstr "要启用在建工程会计功能," +msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" +msgstr "" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56619,8 +56652,8 @@ msgstr "将非库存物料纳入物料需求计划(即取消勾选'维护库 msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled." msgstr "" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1985 -#: erpnext/accounts/services/taxes.py:301 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1984 +#: erpnext/accounts/services/taxes.py:302 msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included" msgstr "第{0}行的物料单价要含税,第{1}行的税也必须包括在内" @@ -56640,7 +56673,7 @@ msgstr "要否决此问题,请在公司{1}中启用“ {0}”" msgid "To select more than one transaction at a time, press and hold the shift key." msgstr "" -#: erpnext/controllers/item_variant.py:209 +#: erpnext/controllers/item_variant.py:208 msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings." msgstr "如需修改属性值,请在库存模块的“物料多规格设置”中勾选 允许重命名属性值。" @@ -56657,10 +56690,12 @@ msgstr "若要提交没有购买收据的发票,请在 {2}中将 {0} 设置为 msgid "To use a different finance book, please uncheck 'Include Default FB Assets'" msgstr "要使用不同的财务账簿,请取消选中“包括默认 FB 资产”" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:750 #: erpnext/accounts/report/financial_statements.py:648 #: erpnext/accounts/report/general_ledger/general_ledger.py:319 +#: erpnext/accounts/report/general_ledger/general_ledger.py:1071 #: erpnext/accounts/report/trial_balance/trial_balance.py:320 +#: erpnext/accounts/report/trial_balance/trial_balance.py:660 msgid "To use a different finance book, please uncheck 'Include Default FB Entries'" msgstr "要使用不同的财务账簿,请取消选中“包括默认 FB 条目”" @@ -56739,8 +56774,8 @@ msgstr "拖拉" msgid "Total (Company Currency)" msgstr "总金额(本币)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:136 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:137 msgid "Total (Credit)" msgstr "总计(贷方)" @@ -56782,6 +56817,22 @@ msgstr "总额外费用" msgid "Total Advance" msgstr "总预收/付" +#: erpnext/public/js/utils.js:250 +msgid "Total Advance Paid" +msgstr "" + +#: erpnext/public/js/utils.js:195 +msgid "Total Advance Paid: {0}" +msgstr "" + +#: erpnext/public/js/utils.js:252 +msgid "Total Advance Received" +msgstr "" + +#: erpnext/public/js/utils.js:198 +msgid "Total Advance Received: {0}" +msgstr "" + #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' #: erpnext/accounts/doctype/payment_entry/payment_entry.json @@ -56829,11 +56880,11 @@ msgstr "应付总额" msgid "Total Amount in Words" msgstr "总金额(大写)" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:265 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:267 msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges" msgstr "基于采购入库信息计算的总税费必须与采购单(单头)的总税费一致" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:226 msgid "Total Asset" msgstr "总资产" @@ -57015,7 +57066,7 @@ msgstr "总出货金额" msgid "Total Demand (Past Data)" msgstr "总需求(历史数据)" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:233 msgid "Total Equity" msgstr "总所有者权益" @@ -57024,11 +57075,11 @@ msgstr "总所有者权益" msgid "Total Estimated Distance" msgstr "总预估距离" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:131 msgid "Total Expense" msgstr "总费用" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:127 msgid "Total Expense This Year" msgstr "本年费用" @@ -57066,11 +57117,11 @@ msgstr "总保持时间" msgid "Total Holidays" msgstr "总假期" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:130 msgid "Total Income" msgstr "总收入" -#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118 +#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:126 msgid "Total Income This Year" msgstr "本年收入" @@ -57113,7 +57164,7 @@ msgstr "总到岸成本(公司货币)" msgid "Total Ledgers" msgstr "" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:229 msgid "Total Liability" msgstr "总负债" @@ -57428,7 +57479,7 @@ msgstr "总税费" msgid "Total Taxes and Charges (Company Currency)" msgstr "总税费(本币)" -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:135 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130 msgid "Total Time (in Mins)" msgstr "总时间(分钟)" @@ -57437,7 +57488,11 @@ msgstr "总时间(分钟)" msgid "Total Time in Mins" msgstr "总时间(分)" -#: erpnext/public/js/utils.js:193 +#: erpnext/public/js/utils.js:253 +msgid "Total Unpaid" +msgstr "" + +#: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" msgstr "总未付:{0}" @@ -57516,7 +57571,7 @@ msgstr "工作站总时间(小时)" msgid "Total allocated percentage for sales team should be 100" msgstr "销售团队总分配比例应为100" -#: erpnext/selling/doctype/customer/customer.py:194 +#: erpnext/selling/doctype/customer/customer.py:197 msgid "Total contribution percentage should be equal to 100" msgstr "总贡献百分比应等于100" @@ -57534,8 +57589,8 @@ msgstr "总时间:{0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 -msgid "Total payments amount can't be greater than {}" -msgstr "付款总额不可超过{}" +msgid "Total payments amount can't be greater than {0}" +msgstr "" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57552,9 +57607,9 @@ msgstr "交货计划中的总数量不得超过物料数量" msgid "Total {0} ({1})" msgstr "总{0}({1})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:246 -msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'" -msgstr "全部分摊基准{0}合计为零,可能你需要修改“费用分摊基准”" +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 +msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" +msgstr "" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -57642,27 +57697,11 @@ msgstr "跟踪状态信息" msgid "Tracking URL" msgstr "跟踪链接" -#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule' -#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme' -#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings' -#. Label of the transaction (Select) field in DocType 'Authorization Rule' -#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation' -#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054 -#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json -#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json -#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10 -#: erpnext/public/js/utils/naming_series.js:219 -#: erpnext/selling/doctype/selling_settings/selling_settings.json -#: erpnext/setup/doctype/authorization_rule/authorization_rule.json -#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json -msgid "Transaction" -msgstr "交易" - #. Label of the transaction_currency (Link) field in DocType 'GL Entry' #. Label of the currency (Link) field in DocType 'Payment Request' #: erpnext/accounts/doctype/gl_entry/gl_entry.json #: erpnext/accounts/doctype/payment_request/payment_request.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:750 +#: erpnext/accounts/report/general_ledger/general_ledger.py:751 msgid "Transaction Currency" msgstr "交易货币" @@ -57715,11 +57754,11 @@ msgstr "业务交易删除记录明细" msgid "Transaction Deletion Record To Delete" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1114 msgid "Transaction Deletion Record {0} is already running. {1}" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1133 msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes." msgstr "" @@ -58109,6 +58148,10 @@ msgstr "试算平衡简表" msgid "Trial Balance for Party" msgstr "往来单位试算平衡表" +#: erpnext/accounts/report/trial_balance/trial_balance.py:595 +msgid "Trial Balance requires {0} to be synced to DuckDB" +msgstr "" + #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json msgid "Trial Period End Date" @@ -58293,7 +58336,7 @@ msgstr "阿联酋增值税设置" #: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json #: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75 #: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json -#: erpnext/buying/doctype/purchase_order/purchase_order.js:759 +#: erpnext/buying/doctype/purchase_order/purchase_order.js:757 #: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json #: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json #: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json @@ -58315,7 +58358,7 @@ msgstr "阿联酋增值税设置" #: erpnext/manufacturing/doctype/workstation/workstation.js:480 #: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110 -#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:836 +#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:853 #: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json #: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json #: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json @@ -58345,7 +58388,7 @@ msgstr "阿联酋增值税设置" #: erpnext/stock/report/available_serial_no/available_serial_no.py:101 #: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87 #: erpnext/stock/report/item_prices/item_prices.py:55 -#: erpnext/stock/report/item_where_used/item_where_used.py:75 +#: erpnext/stock/report/item_where_used/item_where_used.py:69 #: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60 #: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93 #: erpnext/stock/report/stock_ageing/stock_ageing.py:225 @@ -58409,7 +58452,7 @@ msgstr "" msgid "UOM Conversion Factor" msgstr "单位换算系数" -#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:470 +#: erpnext/manufacturing/doctype/production_plan/services/material_request.py:469 msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}" msgstr "物料{2}的计量单位换算系数({0}→{1})未找到" @@ -58483,7 +58526,7 @@ msgstr "取消核销" msgid "UnReconcile Allocations" msgstr "取消核销分派" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:479 msgid "Unable to fetch DocType details. Please contact system administrator." msgstr "" @@ -58496,10 +58539,6 @@ msgstr "无法为关键日期{2}查找{0}到{1}的汇率。请手动创建汇率 msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually." msgstr "无法为关键日期{2}查找{0}到{1}的汇率。请手动创建汇率记录." -#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78 -msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100" -msgstr "无法从{0}开始获得分数。你需要有0到100的常规分数" - #: erpnext/manufacturing/doctype/work_order/services/operations.py:125 msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}." msgstr "未来{0}天内未找到工序{1}的可用时段,请在{2}中增加'产能计划周期(天)'" @@ -58524,7 +58563,7 @@ msgstr "" msgid "Unallocated Amount" msgstr "未分配金额" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:324 msgid "Unassigned Qty" msgstr "未分配数量" @@ -58536,8 +58575,10 @@ msgstr "未开票订单" msgid "Unblock Invoice" msgstr "取消发票冻结" -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84 -#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:93 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:94 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:316 +#: erpnext/accounts/report/balance_sheet/balance_sheet.py:317 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90 #: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91 msgid "Unclosed Fiscal Years Profit / Loss (Credit)" @@ -58587,7 +58628,7 @@ msgstr "" msgid "Undo {}?" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:949 msgid "Unexpected Naming Series Pattern" msgstr "" @@ -58610,7 +58651,7 @@ msgstr "" msgid "Unit Price" msgstr "" -#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68 +#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:69 msgid "Unit of Measure" msgstr "单位" @@ -58813,7 +58854,7 @@ msgstr "计划外" msgid "Unsecured Loans" msgstr "无担保借款" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1723 msgid "Unset Matched Payment Request" msgstr "取消匹配付款申请" @@ -58826,7 +58867,7 @@ msgstr "未签" msgid "Unsubscribe from this Email Digest" msgstr "退订该电子邮件" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258 msgid "Unsupported Feature" msgstr "" @@ -58970,7 +59011,7 @@ msgstr "更新当前库存" #: erpnext/buying/doctype/purchase_order/purchase_order.js:300 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43 -#: erpnext/public/js/utils.js:938 +#: erpnext/public/js/utils.js:955 #: erpnext/selling/doctype/quotation/quotation.js:136 #: erpnext/selling/doctype/sales_order/sales_order.js:90 #: erpnext/selling/doctype/sales_order/sales_order.js:984 @@ -59034,7 +59075,7 @@ msgstr "" msgid "Update latest price in all BOMs" msgstr "更新所有BOM的最新价格" -#: erpnext/assets/doctype/asset/asset.py:474 +#: erpnext/assets/doctype/asset/asset.py:476 msgid "Update stock must be enabled for the purchase invoice {0}" msgstr "采购发票{0}必须启用库存更新" @@ -59262,7 +59303,7 @@ msgstr "" msgid "Use Transaction Date Exchange Rate" msgstr "使用交易日汇率" -#: erpnext/projects/doctype/project/project.py:638 +#: erpnext/projects/doctype/project/project.py:639 msgid "Use a name that is different from previous project name" msgstr "使用与之前项目名称不同的名称" @@ -59351,6 +59392,10 @@ msgstr "用户解决时间" msgid "User has not applied rule on the invoice {0}" msgstr "用户未在发票{0}上应用规则" +#: erpnext/crm/frappe_crm_api.py:175 +msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" msgstr "用户{0}不存在" @@ -59363,6 +59408,10 @@ msgstr "用户{0}没有任何默认的POS配置文件。检查此用户的行{1} msgid "User {0} is already assigned to Employee {1}" msgstr "用户{0}已经被分配给员工{1}" +#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 +msgid "User {0} is disabled. Please select valid user/cashier" +msgstr "" + #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." msgstr "因用户 {0} 没有关联的员工主数据,已移除了员工自助服务角色" @@ -59371,10 +59420,6 @@ msgstr "因用户 {0} 没有关联的员工主数据,已移除了员工自助 msgid "User {0}: Removed Employee role as there is no mapped employee." msgstr "因用户 {0} 没有关联的员工主数据,已移除了员工角色" -#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 -msgid "User {} is disabled. Please select valid user/cashier" -msgstr "用户{}已禁用,请选择有效用户/收银员" - #. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check) #. field in DocType 'Buying Settings' #: erpnext/buying/doctype/buying_settings/buying_settings.json @@ -59667,15 +59712,15 @@ msgstr "成本价" msgid "Valuation Rate (In / Out)" msgstr "成本价(入 / 出)" -#: erpnext/stock/stock_ledger.py:2059 +#: erpnext/stock/stock_ledger.py:2048 msgid "Valuation Rate Missing" msgstr "无成本价" -#: erpnext/stock/doctype/item/item.py:1604 +#: erpnext/stock/doctype/item/item.py:1606 msgid "Valuation Rate cannot be negative." msgstr "" -#: erpnext/stock/stock_ledger.py:2037 +#: erpnext/stock/stock_ledger.py:2026 msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}." msgstr "要为{1} {2}生成会计凭证,物料{0}须有成本价" @@ -59683,7 +59728,7 @@ msgstr "要为{1} {2}生成会计凭证,物料{0}须有成本价" msgid "Valuation Rate is mandatory if Opening Stock entered" msgstr "库存开账凭证中成本价字段必填" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:797 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:798 msgid "Valuation Rate required for Item {0} at row {1}" msgstr "第{1}的物料{0}需有成本价" @@ -59693,7 +59738,7 @@ msgstr "第{1}的物料{0}需有成本价" msgid "Valuation and Total" msgstr "成本价与总计" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1002 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1003 msgid "Valuation rate for customer provided items has been set to zero." msgstr "客户提供物料的计价单价已设为零" @@ -59706,14 +59751,14 @@ msgstr "客户提供物料的计价单价已设为零" msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)" msgstr "按销售发票的物料计价单价(仅限内部调拨)" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2009 -#: erpnext/accounts/services/taxes.py:322 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2008 +#: erpnext/accounts/services/taxes.py:323 msgid "Valuation type charges can not be marked as Inclusive" msgstr "计价类型费用不可标记为含税" -#: erpnext/public/js/controllers/accounts.js:231 -msgid "Valuation type charges can not marked as Inclusive" -msgstr "估值类型罪名不能标记为包容性" +#: erpnext/public/js/controllers/accounts.js:228 +msgid "Valuation type charges cannot be marked as Inclusive" +msgstr "" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -59763,12 +59808,12 @@ msgstr "确定价值主张" msgid "Value Type" msgstr "" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:828 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 msgid "Value as on" msgstr "截至价值" -#: erpnext/controllers/item_variant.py:131 +#: erpnext/controllers/item_variant.py:130 msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}" msgstr "物料{4}的属性{0}其属性值必须{1}到{2}范围内,且增量{3}" @@ -59777,19 +59822,19 @@ msgstr "物料{4}的属性{0}其属性值必须{1}到{2}范围内,且增量{3} msgid "Value of Goods" msgstr "货值" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 msgid "Value of New Capitalized Asset" msgstr "新增资本化资产价值" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:834 msgid "Value of New Purchase" msgstr "新购价值" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846 msgid "Value of Scrapped Asset" msgstr "报废资产价值" -#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852 +#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840 msgid "Value of Sold Asset" msgstr "已售资产价值" @@ -60265,7 +60310,7 @@ msgstr "凭证号" #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221 #: erpnext/accounts/report/general_ledger/general_ledger.js:49 -#: erpnext/accounts/report/general_ledger/general_ledger.py:767 +#: erpnext/accounts/report/general_ledger/general_ledger.py:768 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33 #: erpnext/accounts/report/payment_ledger/payment_ledger.js:65 @@ -60293,7 +60338,7 @@ msgstr "凭证号" msgid "Voucher No" msgstr "凭证号" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1418 msgid "Voucher No is mandatory" msgstr "凭证编号必填" @@ -60305,7 +60350,7 @@ msgstr "单据数量" #. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry' #: erpnext/accounts/doctype/gl_entry/gl_entry.json -#: erpnext/accounts/report/general_ledger/general_ledger.py:761 +#: erpnext/accounts/report/general_ledger/general_ledger.py:762 msgid "Voucher Subtype" msgstr "源凭证业务类型" @@ -60337,7 +60382,7 @@ msgstr "源凭证业务类型" #: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json #: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1195 #: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:212 -#: erpnext/accounts/report/general_ledger/general_ledger.py:759 +#: erpnext/accounts/report/general_ledger/general_ledger.py:760 #: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:31 #: erpnext/accounts/report/payment_ledger/payment_ledger.py:165 #: erpnext/accounts/report/purchase_register/purchase_register.py:160 @@ -60544,7 +60589,7 @@ msgstr "仓库信息必填" msgid "Warehouse is required to get producible FG Items" msgstr "" -#: erpnext/stock/doctype/warehouse/warehouse.py:240 +#: erpnext/stock/doctype/warehouse/warehouse.py:239 msgid "Warehouse not found against the account {0}" msgstr "账户{0}未关联仓库" @@ -60562,16 +60607,16 @@ msgstr "仓库级物料库龄和金额报表" msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}" msgstr "仓库{0}无法删除,因为产品{1}还有库存" -#: erpnext/stock/doctype/item/item.py:1609 +#: erpnext/stock/doctype/item/item.py:1611 #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67 msgid "Warehouse {0} does not belong to Company {1}." msgstr "仓库{0}不属于公司{1}" -#: erpnext/stock/utils.py:411 +#: erpnext/stock/utils.py:410 msgid "Warehouse {0} does not belong to company {1}" msgstr "仓库{0}不属于公司{1}" -#: erpnext/stock/doctype/warehouse/warehouse.py:289 +#: erpnext/stock/doctype/warehouse/warehouse.py:288 msgid "Warehouse {0} does not exist" msgstr "" @@ -60692,7 +60737,7 @@ msgstr "" msgid "Warning - Row {0}: Billing Hours are more than Actual Hours" msgstr "警告 - 第{0}行:计费工时超过实际工时" -#: erpnext/stock/stock_ledger.py:843 +#: erpnext/stock/stock_ledger.py:842 msgid "Warning on Negative Stock" msgstr "负库存预警" @@ -60712,7 +60757,7 @@ msgstr "警告:库存凭证{2}中已存在另一个{0}#{1}" msgid "Warning: Material Requested Qty is less than Minimum Order Qty" msgstr "警告:物料需求数量低于最小起订量" -#: erpnext/manufacturing/doctype/work_order/work_order.py:917 +#: erpnext/manufacturing/doctype/work_order/work_order.py:913 msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}." msgstr "警告:数量超过基于外包收货订单{0}接收的原材料数量的最大可生产数量。" @@ -60866,10 +60911,6 @@ msgstr "网站物料组" msgid "Website Specifications" msgstr "网站规格" -#: erpnext/public/js/utils/naming_series.js:95 -msgid "Week of the year" -msgstr "" - #: erpnext/selling/report/sales_analytics/sales_analytics.py:457 #: erpnext/stock/report/stock_analytics/stock_analytics.py:121 msgid "Week {0} {1}" @@ -61015,7 +61056,7 @@ msgstr "" msgid "When enabled, transactions with this supplier will be blocked based on the Hold Type below" msgstr "" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:822 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:823 msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row." msgstr "" @@ -61191,17 +61232,17 @@ msgstr "进行中" #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14 #: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:98 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22 #: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:69 #: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:29 -#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:107 +#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:113 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json #: erpnext/selling/doctype/sales_order/sales_order.js:1094 #: erpnext/stock/doctype/material_request/material_request.js:216 #: erpnext/stock/doctype/material_request/material_request.json -#: erpnext/stock/doctype/material_request/material_request.py:574 +#: erpnext/stock/doctype/material_request/material_request.py:573 #: erpnext/stock/doctype/pick_list/pick_list.json #: erpnext/stock/doctype/serial_no/serial_no.json #: erpnext/stock/doctype/stock_entry/stock_entry.json @@ -61240,7 +61281,7 @@ msgstr "工单已耗用物料" msgid "Work Order Item" msgstr "工单明细" -#: erpnext/stock/doctype/stock_entry/stock_entry.py:526 +#: erpnext/stock/doctype/stock_entry/stock_entry.py:525 msgid "Work Order Mismatch" msgstr "" @@ -61281,20 +61322,20 @@ msgstr "工单进度追踪表" msgid "Work Order Summary Report" msgstr "" -#: erpnext/stock/doctype/material_request/material_request.py:580 -msgid "Work Order cannot be created for following reason:
                    {0}" -msgstr "无法创建生产工单,原因:
                    {0}" +#: erpnext/stock/doctype/material_request/material_request.py:579 +msgid "Work Order cannot be created for the following reason:
                    {0}" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:861 -msgid "Work Order cannot be raised against a Item Template" -msgstr "不能为模板物料创建新生产工单" +#: erpnext/manufacturing/doctype/work_order/work_order.py:857 +msgid "Work Order cannot be raised against an Item Template" +msgstr "" -#: erpnext/manufacturing/doctype/work_order/work_order.py:1127 -#: erpnext/manufacturing/doctype/work_order/work_order.py:1174 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1123 +#: erpnext/manufacturing/doctype/work_order/work_order.py:1170 msgid "Work Order has been {0}" msgstr "生产工单已{0}" -#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:380 +#: erpnext/stock/doctype/stock_entry/services/manufacturing.py:381 msgid "Work Order is mandatory" msgstr "" @@ -61315,7 +61356,7 @@ msgid "Work Order {0} must be submitted" msgstr "" #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56 -#: erpnext/stock/doctype/material_request/material_request.py:568 +#: erpnext/stock/doctype/material_request/material_request.py:567 msgid "Work Orders" msgstr "工单" @@ -61340,7 +61381,7 @@ msgstr "进行中" msgid "Work-in-Progress Warehouse" msgstr "车间仓" -#: erpnext/manufacturing/doctype/work_order/work_order.py:605 +#: erpnext/manufacturing/doctype/work_order/work_order.py:601 msgid "Work-in-Progress Warehouse is required before Submit" msgstr "请指定车间仓后再提交" @@ -61393,7 +61434,7 @@ msgstr "工作时间" #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35 #: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119 #: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62 -#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:122 +#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74 #: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160 #: erpnext/manufacturing/workspace/manufacturing/manufacturing.json @@ -61625,14 +61666,6 @@ msgstr "年度名称" msgid "Year Start Date" msgstr "年度开始日期" -#: erpnext/public/js/utils/naming_series.js:92 -msgid "Year in 2 digits" -msgstr "" - -#: erpnext/public/js/utils/naming_series.js:91 -msgid "Year in 4 digits" -msgstr "" - #. Label of the year_of_passing (Int) field in DocType 'Employee Education' #: erpnext/setup/doctype/employee_education/employee_education.json msgid "Year of Passing" @@ -61647,8 +61680,8 @@ msgid "You are importing data for the code list:" msgstr "您正在导入代码列表的数据:" #: erpnext/accounts/services/child_item_update.py:232 -msgid "You are not allowed to update as per the conditions set in {} Workflow." -msgstr "根据{}工作流设置的条件,您无权更新" +msgid "You are not allowed to update as per the conditions set in {0} Workflow." +msgstr "" #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61667,8 +61700,8 @@ msgid "You are picking more than required quantity for the item {0}. Check if th msgstr "您正在为物料{0}提货超过所需数量,请检查销售订单{1}是否已创建其他拣货单" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 -msgid "You can add the original invoice {} manually to proceed." -msgstr "您可以手动添加原始发票{}以继续" +msgid "You can add the original invoice {0} manually to proceed." +msgstr "" #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61678,19 +61711,15 @@ msgstr "" msgid "You can also copy-paste this link in your browser" msgstr "您也可以复制粘贴此链接到您的浏览器地址栏中" -#: erpnext/assets/doctype/asset_category/asset_category.py:123 -msgid "You can also set default CWIP account in Company {}" -msgstr "您还可以在公司{}主数据中设置默认在建工程科目" - -#: erpnext/public/js/utils/naming_series.js:87 -msgid "You can also use variables in the series name by putting them between (.) dots" +#: erpnext/assets/doctype/asset_category/asset_category.py:124 +msgid "You can also set default CWIP account in Company {0}" msgstr "" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." msgstr "您可以将上级科目更改为资产负债表科目或选择其他科目" -#: erpnext/assets/doctype/asset_category/asset_category.py:186 +#: erpnext/assets/doctype/asset_category/asset_category.py:187 msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows:

                    " msgstr "" @@ -61712,8 +61741,8 @@ msgid "You can only select one mode of payment as default" msgstr "只能选择一个支付方式作为默认" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 -msgid "You can redeem upto {0}." -msgstr "您最多可兑换{0}" +msgid "You can redeem up to {0}." +msgstr "" #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61731,14 +61760,6 @@ msgstr "" msgid "You can use {0} to reconcile against {1} later." msgstr "" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1440 -msgid "You can't make any changes to Job Card since Work Order is closed." -msgstr "因生产工单已关闭,生产任务单不能再变更" - -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 -msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "无法处理序列号{0},因其已在序列和批次凭证{1}中使用。如需多次入库相同序列号,请在{3}启用'允许重复生产/接收现有序列号'" - #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193 msgid "You can't redeem Loyalty Points having more value than the Total Amount." msgstr "不可兑换价值超过总金额的忠诚度积分。" @@ -61747,17 +61768,17 @@ msgstr "不可兑换价值超过总金额的忠诚度积分。" msgid "You cannot change the rate if BOM is mentioned against any Item." msgstr "有物料清单的物料价格不可手工设置" -#: erpnext/accounts/doctype/accounting_period/accounting_period.py:132 +#: erpnext/accounts/doctype/accounting_period/accounting_period.py:145 msgid "You cannot create a {0} within the closed Accounting Period {1}" msgstr "不能在已关闭会计期间 {1} 创建 {0}" #: erpnext/accounts/services/gl_validator.py:64 -msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}" -msgstr "在已关闭的会计期间{0}内无法创建或取消会计分录" +msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" +msgstr "" #: erpnext/accounts/services/gl_validator.py:145 -msgid "You cannot create/amend any accounting entries till this date." -msgstr "不允许创建/修改早于此日期的会计凭证" +msgid "You cannot create/amend any accounting entries until this date." +msgstr "" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61768,15 +61789,23 @@ msgid "You cannot delete Project Type 'External'" msgstr "您不能删除“外部”类型项目" #: erpnext/setup/doctype/department/department.js:19 -msgid "You cannot edit root node." -msgstr "您不能编辑根节点。" +msgid "You cannot edit the root node." +msgstr "" -#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197 +#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." msgstr "您无法同时启用“{0}”和“{1}”设置。" +#: erpnext/manufacturing/doctype/job_card/job_card.py:1441 +msgid "You cannot make any changes to Job Card since Work Order is closed." +msgstr "" + #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 -msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse." +msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." +msgstr "" + +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 +msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 @@ -61784,16 +61813,16 @@ msgid "You cannot redeem more than {0}." msgstr "您不能兑换超过{0}" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 -msgid "You cannot repost item valuation before {}" -msgstr "物料成本价追溯调整不允许早于 {}" +msgid "You cannot repost item valuation before {0}" +msgstr "" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." msgstr "您无法重新启动未取消的订阅。" #: erpnext/selling/page/point_of_sale/pos_payment.js:281 -msgid "You cannot submit empty order." -msgstr "不能提交空订单" +msgid "You cannot submit an empty order." +msgstr "" #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61807,6 +61836,10 @@ msgstr "" msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}" msgstr "无法{0}此单据,因为存在后续的期间结账分录{1}在{2}之后" +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 +msgid "You do not have enough permission to access {0}: {1}" +msgstr "" + #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" msgstr "" @@ -61817,8 +61850,8 @@ msgid "You do not have permission to import bank transactions" msgstr "" #: erpnext/accounts/services/child_item_update.py:210 -msgid "You do not have permissions to {} items in a {}." -msgstr "您无权{} {}。" +msgid "You do not have permissions to {0} items in a {1}." +msgstr "" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61844,11 +61877,11 @@ msgstr "" msgid "You don't have permission to update this document. Please contact your System Manager." msgstr "" -#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:298 -msgid "You had {} errors while creating opening invoices. Check {} for more details" -msgstr "创建期初发票时出现{}个错误,请检查{}获取详情" +#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 +msgid "You had {0} errors while creating opening invoices. Check {1} for more details" +msgstr "" -#: erpnext/public/js/utils.js:1038 +#: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" msgstr "您已经从{0} {1}选择了物料" @@ -61865,8 +61898,8 @@ msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the def msgstr "您已在{2}中启用{0}和{1}。这可能导致默认价格表中的价格被插入交易价格表。" #: erpnext/stock/doctype/shipment/shipment.js:442 -msgid "You have entered a duplicate Delivery Note on Row" -msgstr "您在第行输入了重复的送货单" +msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." +msgstr "" #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61880,19 +61913,19 @@ msgstr "" msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels." msgstr "您必须在库存设置中启用自动重订货才能维护重订货点。" -#: erpnext/selling/page/point_of_sale/pos_controller.js:281 +#: erpnext/selling/page/point_of_sale/pos_controller.js:272 msgid "You have unsaved changes. Do you want to save the invoice?" msgstr "您有未保存的更改。是否要保存发票?" -#: erpnext/selling/page/point_of_sale/pos_controller.js:743 +#: erpnext/selling/page/point_of_sale/pos_controller.js:734 msgid "You must select a customer before adding an item." msgstr "添加物料前需先选择客户" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 -msgid "You need to cancel POS Closing Entry {} to be able to cancel this document." -msgstr "需先取消POS结算单{}才能取消此单据" +msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." +msgstr "" -#: erpnext/accounts/services/taxes.py:276 +#: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." msgstr "第{0}行选择账户组{1}作为{2}科目,请选择单个科目" @@ -61944,6 +61977,10 @@ msgstr "邮编" msgid "Zero Balance" msgstr "余额为0" +#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 +msgid "Zero Balance Journal: {0}" +msgstr "" + #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" msgstr "零税率" @@ -61974,7 +62011,7 @@ msgstr "[重要][ERPNext]自动补货错误" msgid "`Allow Negative rates for Items`" msgstr "`允许物料负单价`" -#: erpnext/stock/stock_ledger.py:2051 +#: erpnext/stock/stock_ledger.py:2040 msgid "after" msgstr "之后" @@ -61994,7 +62031,7 @@ msgstr "作为标题" msgid "as a percentage of finished item quantity" msgstr "按完工数量百分比" -#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589 +#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1588 msgid "as of {0}" msgstr "" @@ -62010,10 +62047,6 @@ msgstr "基于" msgid "by {}" msgstr "由{}" -#: erpnext/public/js/utils/sales_common.js:336 -msgid "cannot be greater than 100" -msgstr "不能大于100" - #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:338 #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:840 msgid "dated {0}" @@ -62068,8 +62101,8 @@ msgstr "汇率服务商" msgid "fieldname" msgstr "字段名称" -#: erpnext/public/js/utils/naming_series.js:97 -msgid "fieldname on the document e.g." +#: erpnext/setup/doctype/item_group/item_group.py:49 +msgid "for tax category {0}" msgstr "" #. Option for the 'Service Provider' (Select) field in DocType 'Currency @@ -62149,14 +62182,10 @@ msgstr "满分5分" msgid "paid to" msgstr "付款至" -#: erpnext/public/js/utils.js:463 +#: erpnext/public/js/utils.js:480 erpnext/utilities/__init__.py:51 msgid "payments app is not installed. Please install it from {0} or {1}" msgstr "未安装支付应用,请从{0}或{1}安装" -#: erpnext/utilities/__init__.py:51 -msgid "payments app is not installed. Please install it from {} or {}" -msgstr "未安装支付应用,请从{}或{}安装" - #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation' #. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation #. Type' @@ -62170,7 +62199,7 @@ msgstr "未安装支付应用,请从{}或{}安装" msgid "per hour" msgstr "每小时" -#: erpnext/stock/stock_ledger.py:2052 +#: erpnext/stock/stock_ledger.py:2041 msgid "performing either one below:" msgstr "再提交或取消此单据" @@ -62246,8 +62275,8 @@ msgstr "已售" msgid "subscription is already cancelled." msgstr "订阅已取消" -#: erpnext/controllers/status_updater.py:493 -#: erpnext/controllers/status_updater.py:512 +#: erpnext/controllers/status_updater.py:504 +#: erpnext/controllers/status_updater.py:523 msgid "target_ref_field" msgstr "目标参考字段" @@ -62310,10 +62339,6 @@ msgstr "通过资产维修" msgid "via BOM Update Tool" msgstr "通过物料清单更新工具" -#: erpnext/assets/doctype/asset_category/asset_category.py:121 -msgid "you must select Capital Work in Progress Account in accounts table" -msgstr "请在明细表设置在建工程科目" - #: erpnext/accounts/services/taxes.py:116 msgid "{0} '{1}' is disabled" msgstr "{0}“{1}”已禁用" @@ -62326,7 +62351,7 @@ msgstr "{0}“ {1}”不属于{2}财年" msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}" msgstr "{0}({1})不能大于生产工单{3}中的计划数量({2})" -#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:388 +#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:390 msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue." msgstr "{0}{1}已提交资产,请从表中移除物料{2}以继续" @@ -62346,7 +62371,7 @@ msgstr "" msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}." msgstr "" -#: erpnext/accounts/doctype/pricing_rule/utils.py:769 +#: erpnext/accounts/doctype/pricing_rule/utils.py:762 msgid "{0} Coupon used are {1}. Allowed quantity is exhausted" msgstr "{0}优惠券已使用{1}次,可用次数已耗尽" @@ -62354,11 +62379,6 @@ msgstr "{0}优惠券已使用{1}次,可用次数已耗尽" msgid "{0} Digest" msgstr "{0}统计信息" -#: erpnext/public/js/utils/naming_series.js:263 -#: erpnext/public/js/utils/naming_series.js:403 -msgid "{0} Naming Series" -msgstr "" - #: erpnext/accounts/utils.py:1590 msgid "{0} Number {1} is already used in {2} {3}" msgstr "{0} 代码 {1} 已被 {2} {3} 占用" @@ -62440,10 +62460,18 @@ msgstr "" msgid "{0} can not be negative" msgstr "{0}不能为负" +#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 +msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" +msgstr "" + #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." msgstr "存在未结期初凭证时无法更改{0}。" +#: erpnext/public/js/utils/sales_common.js:336 +msgid "{0} cannot be greater than 100" +msgstr "" + #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" msgstr "{0}不能作为主成本中心,因其已被用作成本中心分配{1}的子项" @@ -62459,7 +62487,7 @@ msgstr "{0}不能为零" msgid "{0} created" msgstr "{0}已创建" -#: erpnext/utilities/bulk_transaction.py:33 +#: erpnext/utilities/bulk_transaction.py:29 msgid "{0} creation for the following records will be skipped." msgstr "" @@ -62501,7 +62529,7 @@ msgstr "{0} {1}" msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section" msgstr "{0}已启用基于付款条件的分配,请在付款参考部分为第#{1}行选择付款条件" -#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807 +#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:842 msgid "{0} has been modified after you pulled it. Please pull it again." msgstr "" @@ -62509,6 +62537,10 @@ msgstr "" msgid "{0} has been submitted successfully" msgstr "已成功提交{0}" +#: erpnext/controllers/buying_controller.py:289 +msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." +msgstr "" + #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" msgstr "{0}小时" @@ -62517,7 +62549,11 @@ msgstr "{0}小时" msgid "{0} in row {1}" msgstr "{1}行中的{0}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454 +#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 +msgid "{0} is a child company." +msgstr "" + +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" msgstr "" @@ -62531,7 +62567,7 @@ msgstr "{0}是必填会计维度,请在会计维度部分设置{0}的值" msgid "{0} is added multiple times on rows: {1}" msgstr "{0}在以下行被多次添加:{1}" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:641 msgid "{0} is already running for {1}" msgstr "{0}已在{1}运行" @@ -62539,7 +62575,7 @@ msgstr "{0}已在{1}运行" msgid "{0} is blocked so this transaction cannot proceed" msgstr "{0}被临时冻结,所以此交易无法继续" -#: erpnext/assets/doctype/asset/asset.py:508 +#: erpnext/assets/doctype/asset/asset.py:510 msgid "{0} is in Draft. Submit it before creating the Asset." msgstr "" @@ -62552,11 +62588,11 @@ msgstr "{0}是{1}的必填项" msgid "{0} is mandatory for account {1}" msgstr "对于科目 {1} {0} 必填" -#: erpnext/public/js/controllers/taxes_and_totals.js:131 +#: erpnext/public/js/controllers/taxes_and_totals.js:132 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}" msgstr "{0}是强制性的。可能没有为{1}到{2}创建货币兑换记录" -#: erpnext/accounts/services/taxes.py:233 +#: erpnext/accounts/services/taxes.py:234 msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}." msgstr "{0}是必填项。{1}和{2}的货币转换记录可能还未生成。" @@ -62564,7 +62600,7 @@ msgstr "{0}是必填项。{1}和{2}的货币转换记录可能还未生成。" msgid "{0} is not a CSV file." msgstr "" -#: erpnext/selling/doctype/customer/customer.py:236 +#: erpnext/selling/doctype/customer/customer.py:239 msgid "{0} is not a company bank account" msgstr "{0}不是公司银行账户" @@ -62580,7 +62616,7 @@ msgstr "{0}不是库存物料" msgid "{0} is not a valid Accounting Dimension." msgstr "" -#: erpnext/controllers/item_variant.py:199 +#: erpnext/controllers/item_variant.py:198 msgid "{0} is not a valid Value for Attribute {1} of Item {2}." msgstr "{0}不是物料{2}的属性{1}的有效值" @@ -62596,17 +62632,17 @@ msgstr "表中未添加{0}" msgid "{0} is not enabled in {1}" msgstr "{0}未在{1}中启用" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638 -msgid "{0} is not running. Cannot trigger events for this Document" -msgstr "{0} 未运行。无法触发该文档的事件" +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 +msgid "{0} is not running. Cannot trigger events for this document" +msgstr "" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." msgstr "{0}未被设置为任一物料的的默认供应商。" -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2688 -msgid "{0} is on hold till {1}" -msgstr "{0}被临时冻结至{1}" +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 +msgid "{0} is on hold until {1}" +msgstr "" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62656,7 +62692,7 @@ msgstr "{0}参数无效" msgid "{0} payment entries can not be filtered by {1}" msgstr "{0}收付款凭证不能由{1}过滤" -#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:395 +#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:394 msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}." msgstr "已收到物料 {1} 数量 {0} 到仓库 {2},占用库容 {3}" @@ -62669,7 +62705,7 @@ msgstr "{0}到{1}" msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed." msgstr "" -#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:735 +#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:736 msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation." msgstr "仓库 {2} 中物料 {1} 已被预留了{0} ,请取消预留后再 {3} 库存调账" @@ -62685,16 +62721,16 @@ msgstr "" msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction." msgstr "" -#: erpnext/stock/stock_ledger.py:1698 erpnext/stock/stock_ledger.py:2200 -#: erpnext/stock/stock_ledger.py:2214 +#: erpnext/stock/stock_ledger.py:1687 erpnext/stock/stock_ledger.py:2189 +#: erpnext/stock/stock_ledger.py:2203 msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction." msgstr "本单据 {5} 记账时间点 {3} {4} 发料仓 {2} 物料 {1} 库存不足 {0}。" -#: erpnext/stock/stock_ledger.py:2304 erpnext/stock/stock_ledger.py:2349 +#: erpnext/stock/stock_ledger.py:2293 erpnext/stock/stock_ledger.py:2338 msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction." msgstr "需在{2}的{3}{4}准备{1}的{0}单位以完成本交易" -#: erpnext/stock/stock_ledger.py:1692 +#: erpnext/stock/stock_ledger.py:1681 msgid "{0} units of {1} needed in {2} to complete this transaction." msgstr "为完成此交易,在{2}中的物料{1}数量还缺{0}。" @@ -62702,7 +62738,7 @@ msgstr "为完成此交易,在{2}中的物料{1}数量还缺{0}。" msgid "{0} until {1}" msgstr "{0}至{1}" -#: erpnext/stock/utils.py:402 +#: erpnext/stock/utils.py:401 msgid "{0} valid serial nos for Item {1}" msgstr "物料{1}有{0}个有效序列号" @@ -62710,7 +62746,7 @@ msgstr "物料{1}有{0}个有效序列号" msgid "{0} variants created." msgstr "新建了{0}个多规格物料。" -#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266 +#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:267 msgid "{0} view is currently unsupported in Custom Financial Report." msgstr "" @@ -62744,7 +62780,7 @@ msgstr "{0} {1} 已创建" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:628 #: erpnext/accounts/doctype/payment_entry/payment_entry.py:681 -#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2425 +#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2423 msgid "{0} {1} does not exist" msgstr "{0} {1}不存在" @@ -62778,12 +62814,21 @@ msgstr "银行交易中重复分配了{0}{1}" msgid "{0} {1} is already linked to Common Code {2}." msgstr "{0}{1}已关联至通用代码{2}" +#: erpnext/accounts/doctype/party_link/party_link.py:53 +#: erpnext/accounts/doctype/party_link/party_link.py:63 +msgid "{0} {1} is already linked with another {2}" +msgstr "" + +#: erpnext/accounts/doctype/party_link/party_link.py:40 +msgid "{0} {1} is already linked with {2} {3}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" msgstr "待付款源单据 {0} {1} 科目 {2} 与当前收付款凭证科目 {3} 不一致" #: erpnext/controllers/selling_controller.py:509 -#: erpnext/controllers/subcontracting_controller.py:1152 +#: erpnext/controllers/subcontracting_controller.py:1156 msgid "{0} {1} is cancelled or closed" msgstr "{0} {1}被取消或关闭" @@ -62815,6 +62860,10 @@ msgstr "{0} {1}已完全开票" msgid "{0} {1} is not active" msgstr "{0} {1} 未生效" +#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 +msgid "{0} {1} is not affecting bank account {2}" +msgstr "" + #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" msgstr "{0} {1}与{2} {3}无关" @@ -62920,27 +62969,23 @@ msgstr "将按发票总额的{0}%作为折扣发放" msgid "{0}'s {1} cannot be after {2}'s Expected End Date." msgstr "{0}的{1}不得晚于{2}的预计结束日期" -#: erpnext/manufacturing/doctype/job_card/job_card.py:1420 -msgid "{0}, complete the operation {1} before the operation {2}." -msgstr "{0},在工序 {2} 前请先完成工序 {1}" - #: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:61 msgid "{0}, {1} or {2} are the only allowed options." msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:536 msgid "{0}: Child table (auto-deleted with parent)" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:531 msgid "{0}: Not found" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:527 msgid "{0}: Protected DocType" msgstr "" -#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530 +#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:541 msgid "{0}: Virtual DocType (no database table)" msgstr "" @@ -62956,7 +63001,7 @@ msgstr "" msgid "{0}: {1} is a group account." msgstr "{0}:{1}为组科目。" -#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977 +#: erpnext/accounts/doctype/payment_entry/payment_entry.js:986 msgid "{0}: {1} must be less than {2}" msgstr "{0}:{1}必须小于{2}" @@ -62968,7 +63013,7 @@ msgstr "已为{item_code}创建{count}项资产" msgid "{doctype} {name} is cancelled or closed." msgstr "{doctype}{name}已取消或关闭" -#: erpnext/controllers/stock_controller.py:668 +#: erpnext/controllers/stock_controller.py:666 msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})" msgstr "{item_name}的样本量({sample_size})不得超过验收数量({accepted_quantity})" @@ -62980,32 +63025,7 @@ msgstr "{ref_doctype} {ref_name}的状态为{status}." msgid "{}" msgstr "{}" -#: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 -msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}" -msgstr "无法取消{},因已兑换获得的积分。请先取消{}编号{}" - -#: erpnext/controllers/buying_controller.py:289 -msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "{}已提交关联资产。需先取消资产才能创建采购退货" - #: banking/src/components/features/ActionLog/ActionLogDialogBody.tsx:236 msgid "{} invoices" msgstr "{} 发票" -#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 -msgid "{} is a child company." -msgstr "{}是子公司" - -#: erpnext/accounts/doctype/party_link/party_link.py:53 -#: erpnext/accounts/doctype/party_link/party_link.py:63 -msgid "{} {} is already linked with another {}" -msgstr "{} {} 已经关联了其它 {}" - -#: erpnext/accounts/doctype/party_link/party_link.py:40 -msgid "{} {} is already linked with {} {}" -msgstr "{} {} 已经关联了 {} {}" - -#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 -msgid "{} {} is not affecting bank account {}" -msgstr "{} {}未影响银行账户{}" - From 6115af720be58ae113b903a6b10ae9cbb7a6e205 Mon Sep 17 00:00:00 2001 From: Sowmiya P K Date: Mon, 29 Jun 2026 10:41:42 +0530 Subject: [PATCH 072/161] fix: adjust outstanding amount calculation in purchase and sales registers --- .../purchase_register/purchase_register.py | 21 +++++++++++-- .../test_purchase_register.py | 31 ++++++++++++++++++- .../report/sales_register/sales_register.py | 19 ++++++++++-- .../sales_register/test_sales_register.py | 25 ++++++++++++++- 4 files changed, 90 insertions(+), 6 deletions(-) diff --git a/erpnext/accounts/report/purchase_register/purchase_register.py b/erpnext/accounts/report/purchase_register/purchase_register.py index 717546b0f93..be3bbdbb437 100644 --- a/erpnext/accounts/report/purchase_register/purchase_register.py +++ b/erpnext/accounts/report/purchase_register/purchase_register.py @@ -4,6 +4,7 @@ import frappe from frappe import _, msgprint +from frappe.model.meta import get_field_precision from frappe.query_builder import Case from frappe.query_builder.custom import ConstantColumn from frappe.query_builder.functions import Sum @@ -127,17 +128,32 @@ def _execute(filters=None, additional_table_columns=None): row.update({frappe.scrub(tax_acc): tax_amount}) # total tax, grand total, rounded total & outstanding amount + + outstanding_precision = ( + get_field_precision( + frappe.get_meta("Purchase Invoice").get_field("outstanding_amount"), + currency=company_currency, + ) + or 2 + ) row.update( { "total_tax": total_tax, "grand_total": inv.base_grand_total, "rounded_total": inv.base_rounded_total, - "outstanding_amount": inv.outstanding_amount, } ) if inv.doctype == "Purchase Invoice": - row.update({"debit": inv.base_grand_total, "credit": 0.0}) + row.update( + { + "debit": inv.base_grand_total, + "credit": 0.0, + "outstanding_amount": flt( + (inv.outstanding_amount * (inv.conversion_rate or 1)), outstanding_precision + ), + } + ) else: row.update({"debit": 0.0, "credit": inv.base_grand_total}) data.append(row) @@ -410,6 +426,7 @@ def get_invoices(filters, additional_query_columns): pi.base_rounded_total, pi.outstanding_amount, pi.mode_of_payment, + pi.conversion_rate, ) .where(pi.docstatus == 1) ) diff --git a/erpnext/accounts/report/purchase_register/test_purchase_register.py b/erpnext/accounts/report/purchase_register/test_purchase_register.py index f72035496a7..0784dfb5589 100644 --- a/erpnext/accounts/report/purchase_register/test_purchase_register.py +++ b/erpnext/accounts/report/purchase_register/test_purchase_register.py @@ -2,7 +2,7 @@ # MIT License. See license.txt import frappe -from frappe.utils import add_months, today +from frappe.utils import add_months, flt, today from erpnext.accounts.report.purchase_register.purchase_register import execute from erpnext.stock.doctype.purchase_receipt.test_purchase_receipt import make_purchase_receipt @@ -90,6 +90,35 @@ class TestPurchaseRegister(ERPNextTestSuite): self.assertEqual(first_row.total_tax, 100) self.assertEqual(first_row.grand_total, 1100) + def test_purchase_currency_conversion(self): + usd_creditors = frappe.get_doc( + { + "doctype": "Account", + "account_name": "USD Creditors", + "parent_account": "Accounts Payable - _TC", + "company": "_Test Company", + "account_type": "Payable", + "root_type": "Liability", + "report_type": "Balance Sheet", + "account_currency": "USD", + } + ).insert() + foreign_invoice = make_purchase_invoice() + foreign_invoice.db_set("currency", "USD") + foreign_invoice.db_set("conversion_rate", 80) + foreign_invoice.db_set("credit_to", usd_creditors.name) + foreign_invoice.db_set("outstanding_amount", 100.236) + local_invoice = make_purchase_invoice() + local_invoice.db_set("currency", "INR") + local_invoice.db_set("conversion_rate", 1) + local_invoice.db_set("outstanding_amount", 200.456) + columns, data, *_ = execute(frappe._dict({"company": foreign_invoice.company})) + outstanding_precision = 2 + + data_by_name = {x.get("voucher_no"): x.get("outstanding_amount") for x in data} + self.assertEqual(data_by_name.get(foreign_invoice.name), flt((100.236 * 80), outstanding_precision)) + self.assertEqual(data_by_name.get(local_invoice.name), flt(200.456, outstanding_precision)) + def test_purchase_register_ledger_view(self): filters = frappe._dict( company="_Test Company 6", diff --git a/erpnext/accounts/report/sales_register/sales_register.py b/erpnext/accounts/report/sales_register/sales_register.py index f76bbc6c6ef..80195ff884b 100644 --- a/erpnext/accounts/report/sales_register/sales_register.py +++ b/erpnext/accounts/report/sales_register/sales_register.py @@ -141,17 +141,31 @@ def _execute(filters, additional_table_columns=None): # total tax, grand total, outstanding amount & rounded total + outstanding_precision = ( + get_field_precision( + frappe.get_meta("Sales Invoice").get_field("outstanding_amount"), + currency=company_currency, + ) + or 2 + ) row.update( { "tax_total": total_tax, "grand_total": inv.base_grand_total, "rounded_total": inv.base_rounded_total, - "outstanding_amount": inv.outstanding_amount, } ) if inv.doctype == "Sales Invoice": - row.update({"debit": inv.base_grand_total, "credit": 0.0}) + row.update( + { + "debit": inv.base_grand_total, + "credit": 0.0, + "outstanding_amount": flt( + (inv.outstanding_amount * (inv.conversion_rate or 1)), outstanding_precision + ), + } + ) else: row.update({"debit": 0.0, "credit": inv.base_grand_total}) data.append(row) @@ -448,6 +462,7 @@ def get_invoices(filters, additional_query_columns): si.is_internal_customer, si.represents_company, si.company, + si.conversion_rate, ) .where(si.docstatus == 1) ) diff --git a/erpnext/accounts/report/sales_register/test_sales_register.py b/erpnext/accounts/report/sales_register/test_sales_register.py index f3ed2641633..cf38bc521f7 100644 --- a/erpnext/accounts/report/sales_register/test_sales_register.py +++ b/erpnext/accounts/report/sales_register/test_sales_register.py @@ -1,9 +1,10 @@ import frappe -from frappe.utils import getdate, today +from frappe.utils import add_days, flt, getdate, today from erpnext.accounts.doctype.sales_invoice.test_sales_invoice import create_sales_invoice from erpnext.accounts.report.sales_register.sales_register import execute from erpnext.accounts.test.accounts_mixin import AccountsTestMixin +from erpnext.selling.doctype.customer.test_customer import make_customer from erpnext.selling.doctype.sales_order.test_sales_order import make_sales_order from erpnext.tests.utils import ERPNextTestSuite @@ -249,3 +250,25 @@ class TestItemWiseSalesRegister(ERPNextTestSuite, AccountsTestMixin): } result_output = {k: v for k, v in filtered_output[0].items() if k in expected_result} self.assertDictEqual(result_output, expected_result) + + def test_outstanding_currency_conversion(self): + foreign_invoice = create_sales_invoice( + customer="_Test Customer", + posting_date=add_days(today(), -1), + qty=1, + rate=100, + ) + foreign_invoice.db_set("currency", "USD") + foreign_invoice.db_set("conversion_rate", 80) + foreign_invoice.db_set("outstanding_amount", 100.236) + make_customer("_Test Customer2") + local_invoice = create_sales_invoice( + customer="_Test Customer2", currency="INR", conversion_rate=1, qty=1, rate=200 + ) + local_invoice.db_set("outstanding_amount", 200.456) + columns, data, *_ = execute(frappe._dict({"company": foreign_invoice.company})) + outstanding_precision = 2 + + data_by_name = {x.get("voucher_no"): x.get("outstanding_amount") for x in data} + self.assertEqual(data_by_name.get(foreign_invoice.name), flt((100.236 * 80), outstanding_precision)) + self.assertEqual(data_by_name.get(local_invoice.name), flt(200.456, outstanding_precision)) From 5523c15ab8bfc54d92832f93b191fd69680297a9 Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Mon, 29 Jun 2026 14:17:13 +0530 Subject: [PATCH 073/161] fix: for purchases do voucher based reposting (#56601) --- .../stock_and_account_value_comparison.py | 44 +++++++++++++- ...test_stock_and_account_value_comparison.py | 57 +++++++++++++++++++ 2 files changed, 100 insertions(+), 1 deletion(-) create mode 100644 erpnext/stock/report/stock_and_account_value_comparison/test_stock_and_account_value_comparison.py diff --git a/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py b/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py index 48ca58cd334..e295c0cb659 100644 --- a/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py +++ b/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py @@ -185,7 +185,13 @@ def create_reposting_entries(rows: str | list, company: str): entries = [] item_wh = frappe._dict() - vouchers = [row.get("voucher_no") for row in rows] + vouchers = [ + row.get("voucher_no") + for row in rows + if row.get("voucher_type") not in ["Purchase Receipt", "Purchase Invoice"] + ] + repost_based_on_transaction(rows, company, entries) + sles = get_stock_ledgers(vouchers) for sle in sles: key = (sle.item_code, sle.warehouse) @@ -218,3 +224,39 @@ def create_reposting_entries(rows: str | list, company: str): if entries: entries = ", ".join(entries) frappe.msgprint(_("Reposting entries created: {0}").format(entries)) + + +def repost_based_on_transaction(rows, company=None, entries=None): + if entries is None: + entries = [] + + duplicate_vouchers = set() + for row in rows: + if ( + row.get("voucher_type") == "Purchase Invoice" + and frappe.get_cached_value("Purchase Invoice", row.get("voucher_no"), "update_stock") == 0 + ): + continue + + if row.get("voucher_type") in ["Purchase Receipt", "Purchase Invoice"]: + voucher_key = (row.get("voucher_type"), row.get("voucher_no")) + if voucher_key in duplicate_vouchers: + continue + + duplicate_vouchers.add(voucher_key) + doc = frappe.get_doc( + { + "doctype": "Repost Item Valuation", + "based_on": "Transaction", + "status": "Queued", + "voucher_type": row.get("voucher_type"), + "voucher_no": row.get("voucher_no"), + "posting_date": row.get("posting_date"), + "posting_time": row.get("posting_time"), + "company": company, + "allow_nagative_stock": 1, + "recalculate_valuation_rate": 1, + } + ).submit() + + entries.append(get_link_to_form("Repost Item Valuation", doc.name)) diff --git a/erpnext/stock/report/stock_and_account_value_comparison/test_stock_and_account_value_comparison.py b/erpnext/stock/report/stock_and_account_value_comparison/test_stock_and_account_value_comparison.py new file mode 100644 index 00000000000..0795bc6ad79 --- /dev/null +++ b/erpnext/stock/report/stock_and_account_value_comparison/test_stock_and_account_value_comparison.py @@ -0,0 +1,57 @@ +# Copyright (c) 2026, Frappe Technologies Pvt. Ltd. and contributors +# For license information, please see license.txt + +import frappe +from frappe.utils import today + +from erpnext.stock.doctype.item.test_item import make_item +from erpnext.stock.doctype.purchase_receipt.test_purchase_receipt import make_purchase_receipt +from erpnext.stock.report.stock_and_account_value_comparison.stock_and_account_value_comparison import ( + create_reposting_entries, + execute, +) +from erpnext.tests.utils import ERPNextTestSuite + +PI_COMPANY = "_Test Company with perpetual inventory" +PI_STORES = "Stores - TCP1" + + +class TestStockAndAccountValueComparison(ERPNextTestSuite): + def test_purchase_voucher_reposted_transaction_based(self): + # A Purchase Receipt whose GL entries are missing must surface in the report and, when reposted + # from it, be reposted Transaction-based (so its own GL is regenerated) rather than the slower + # Item-and-Warehouse based reposting. + item = make_item(properties={"is_stock_item": 1, "valuation_method": "FIFO"}).name + + pr = make_purchase_receipt(item_code=item, company=PI_COMPANY, warehouse=PI_STORES, qty=5, rate=100) + + # Simulate the out-of-sync state: stock ledger exists but the accounting ledger does not. + frappe.db.delete("GL Entry", {"voucher_type": "Purchase Receipt", "voucher_no": pr.name}) + + # The receipt now shows up in the comparison report (stock value 500 vs account value 0). + filters = frappe._dict(company=PI_COMPANY, as_on_date=today()) + _columns, data = execute(filters) + + row = next((d for d in data if d.get("voucher_no") == pr.name), None) + self.assertIsNotNone(row, "Out-of-sync Purchase Receipt should appear in the report") + self.assertEqual(row.get("voucher_type"), "Purchase Receipt") + + # Repost from the report. + create_reposting_entries([row], PI_COMPANY) + + # A Transaction-based Repost Item Valuation must have been created for this voucher... + transaction_rivs = frappe.get_all( + "Repost Item Valuation", + filters={"voucher_no": pr.name, "voucher_type": "Purchase Receipt"}, + fields=["name", "based_on"], + ) + + self.assertTrue(transaction_rivs, "Expected a Repost Item Valuation for the Purchase Receipt") + self.assertTrue(all(riv.based_on == "Transaction" for riv in transaction_rivs)) + + # ...and no Item-and-Warehouse based reposting should have been created for this item. + item_wh_rivs = frappe.get_all( + "Repost Item Valuation", + filters={"based_on": "Item and Warehouse", "item_code": item}, + ) + self.assertFalse(item_wh_rivs, "Purchase vouchers must not be reposted Item-and-Warehouse based") From 747374e767a1b790d1cd2d83cab8ae3bdb3580ae Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 29 Jun 2026 14:26:46 +0530 Subject: [PATCH 074/161] fix: Use correct doctype name for PCV perm-check (#56606) closes https://github.com/frappe/erpnext/issues/56593 --- .../process_period_closing_voucher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.py b/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.py index 17e63c68b41..264b3dffd5e 100644 --- a/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.py +++ b/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.py @@ -92,7 +92,7 @@ class ProcessPeriodClosingVoucher(Document): @frappe.whitelist() def start_pcv_processing(docname: str): if frappe.db.get_value("Process Period Closing Voucher", docname, "status") in ["Queued", "Running"]: - frappe.has_permission("Process Payment Reconciliation", "write", doc=docname, throw=True) + frappe.has_permission("Process Period Closing Voucher", "write", doc=docname, throw=True) frappe.db.set_value("Process Period Closing Voucher", docname, "status", "Running") timeout = frappe.db.get_single_value("Accounts Settings", "pcv_job_timeout") or 3600 From 98b77f427bc523bff6c1753b35ea94b4812bfb9e Mon Sep 17 00:00:00 2001 From: Shllokkk Date: Sat, 20 Jun 2026 22:04:10 +0530 Subject: [PATCH 075/161] feat: create payment entries from accounts payable report --- erpnext/accounts/bulk_payment.py | 129 ++++++++++++++++ .../accounts_payable/accounts_payable.js | 140 ++++++++++++++++++ 2 files changed, 269 insertions(+) create mode 100644 erpnext/accounts/bulk_payment.py diff --git a/erpnext/accounts/bulk_payment.py b/erpnext/accounts/bulk_payment.py new file mode 100644 index 00000000000..3a49c36f05e --- /dev/null +++ b/erpnext/accounts/bulk_payment.py @@ -0,0 +1,129 @@ +import frappe +from frappe import _ +from frappe.utils import flt + +from erpnext.accounts.doctype.payment_entry.payment_entry import ( + get_outstanding_reference_documents, + get_payment_entry, +) +from erpnext.utilities.bulk_transaction import transaction_processing + + +@frappe.whitelist(methods=["POST"]) +def create_payment_entries( + grouped_invoices: str | list | None = None, + ungrouped_invoices: str | list | None = None, +): + """Create draft Payment Entries from AP report invoice selection.""" + frappe.has_permission("Payment Entry", "create", throw=True) + + grouped_invoices = [d for d in frappe.parse_json(grouped_invoices or "[]") if d.get("voucher_no")] + ungrouped_invoices = [d for d in frappe.parse_json(ungrouped_invoices or "[]") if d.get("voucher_no")] + + if not grouped_invoices and not ungrouped_invoices: + frappe.throw(_("No Purchase Invoices selected")) + + if ungrouped_invoices: + data = [{"name": d["voucher_no"]} for d in ungrouped_invoices] + transaction_processing(data, "Purchase Invoice", "Payment Entry") + + if grouped_invoices: + groups = {} + for d in grouped_invoices: + key = (d["supplier"], d["party_account"]) + groups.setdefault( + key, {"supplier": d["supplier"], "party_account": d["party_account"], "vouchers": []} + )["vouchers"].append(d["voucher_no"]) + + frappe.msgprint( + _("Started a background job to create {0} Grouped Payment Entries").format(len(groups)) + ) + frappe.enqueue( + make_grouped_payment_entries, + queue="long", + timeout=1500, + groups=list(groups.values()), + ) + + +def make_grouped_payment_entries(groups): + created, failed = 0, 0 + + for group in groups: + supplier = group["supplier"] + try: + frappe.db.savepoint("bulk_pe") + pe = _build_grouped_payment_entry(supplier, group["party_account"], group["vouchers"]) + if not pe: + frappe.db.rollback(save_point="bulk_pe") + failed += 1 + frappe.log_error( + title=_("Bulk Payment Entry skipped for {0}").format(supplier), + message=_( + "No outstanding invoices found for the selected vouchers in account {0}" + ).format(group["party_account"]), + ) + continue + + pe.flags.ignore_validate = True + pe.set_title_field() + pe.insert(ignore_mandatory=True) + created += 1 + except Exception: + frappe.db.rollback(save_point="bulk_pe") + failed += 1 + frappe.log_error(title=_("Bulk Payment Entry creation failed for {0}").format(supplier)) + + message = _("Created {0} draft Grouped Payment Entries").format(created) + + if failed: + message += " — " + _("{0} skipped (see Error Log)").format(failed) + + frappe.publish_realtime( + "msgprint", + {"message": message, "title": _("Bulk Payment Entries"), "indicator": "green"}, + user=frappe.session.user, + after_commit=True, + ) + + +def _build_grouped_payment_entry(supplier, party_account, names): + pe = get_payment_entry("Purchase Invoice", names[0]) + pe.set("references", []) + + refs = get_outstanding_reference_documents( + { + "party_type": "Supplier", + "party": supplier, + "party_account": party_account, + "company": pe.company, + "vouchers": [frappe._dict(voucher_type="Purchase Invoice", voucher_no=n) for n in names], + } + ) + + for r in refs: + if r.voucher_type != "Purchase Invoice": + continue + pe.append( + "references", + { + "reference_doctype": r.voucher_type, + "reference_name": r.voucher_no, + "bill_no": r.get("bill_no"), + "due_date": r.get("due_date"), + "payment_term": r.get("payment_term"), + "total_amount": r.invoice_amount, + "outstanding_amount": r.outstanding_amount, + "allocated_amount": r.outstanding_amount, + "exchange_rate": r.get("exchange_rate") or 1, + }, + ) + + if not pe.references: + return None + + # received_amount is in paid_to account currency; convert to paid_from account currency for paid_amount + pe.received_amount = sum(r.allocated_amount for r in pe.references) + pe.paid_amount = flt(pe.received_amount * pe.target_exchange_rate, pe.precision("paid_amount")) + pe.set_amounts() + return pe diff --git a/erpnext/accounts/report/accounts_payable/accounts_payable.js b/erpnext/accounts/report/accounts_payable/accounts_payable.js index 7016ad371a3..2fa6ceeb08c 100644 --- a/erpnext/accounts/report/accounts_payable/accounts_payable.js +++ b/erpnext/accounts/report/accounts_payable/accounts_payable.js @@ -173,6 +173,10 @@ frappe.query_reports["Accounts Payable"] = { return value; }, + get_datatable_options(options) { + return Object.assign(options, { checkboxColumn: true }); + }, + onload: function (report) { report.page.add_inner_button(__("Accounts Payable Summary"), function () { var filters = report.get_values(); @@ -182,9 +186,145 @@ frappe.query_reports["Accounts Payable"] = { if (frappe.boot.sysdefaults.default_ageing_range) { report.set_filter_value("range", frappe.boot.sysdefaults.default_ageing_range); } + + if (frappe.model.can_create("Payment Entry")) { + report.page.add_inner_button( + __("Create Payment Entries"), + function () { + erpnext.accounts.create_payment_entries_from_payable_report(report); + }, + __("Actions") + ); + } }, }; +frappe.provide("erpnext.accounts"); +erpnext.accounts.create_payment_entries_from_payable_report = function (report) { + const datatable = report.datatable; + if (!datatable) return; + + const rows = datatable.rowmanager + .getCheckedRows() + .map((i) => datatable.datamanager.data[i]) + .filter((r) => r && r.voucher_type === "Purchase Invoice" && r.voucher_no); + + if (!rows.length) { + frappe.msgprint(__("Select one or more Purchase Invoice rows")); + return; + } + + // build per-(supplier, party_account) summary to match backend grouping key + const supplierMap = {}; + for (const r of rows) { + const key = `${r.party}||${r.party_account}`; + if (!supplierMap[key]) { + supplierMap[key] = { + supplier: r.party, + party_account: r.party_account, + count: 0, + outstanding: 0, + }; + } + supplierMap[key].count += 1; + supplierMap[key].outstanding += r.outstanding || 0; + } + + const overviewFields = [ + { + fieldtype: "Data", + fieldname: "supplier", + label: __("Supplier"), + read_only: 1, + in_list_view: 1, + width: 150, + }, + { + fieldtype: "Data", + fieldname: "party_account", + label: __("Payable Account"), + read_only: 1, + in_list_view: 1, + width: 130, + }, + { + fieldtype: "Int", + fieldname: "invoices", + label: __("Invoices"), + read_only: 1, + in_list_view: 1, + width: 70, + }, + { + fieldtype: "Float", + fieldname: "payable_amount", + label: __("Payable Amount"), + read_only: 1, + in_list_view: 1, + }, + ]; + + const dialog = new frappe.ui.Dialog({ + title: __("Create Payment Entries"), + fields: [ + { + fieldname: "supplier_overview", + fieldtype: "Table", + label: __("Supplier Overview"), + cannot_add_rows: true, + cannot_delete_rows: true, + fields: overviewFields, + data: Object.values(supplierMap).map((d) => ({ + supplier: d.supplier, + party_account: d.party_account, + invoices: d.count, + payable_amount: d.outstanding, + })), + }, + ], + primary_action_label: __("Create"), + secondary_action_label: __("Cancel"), + secondary_action() { + dialog.hide(); + report.datatable.rowmanager.checkAll(false); + }, + primary_action() { + dialog.hide(); + + const groupedKeys = new Set( + Object.values(supplierMap) + .filter((d) => d.count > 1) + .map((d) => `${d.supplier}||${d.party_account}`) + ); + + const grouped_invoices = []; + const ungrouped_invoices = []; + for (const r of rows) { + const payload = { + voucher_no: r.voucher_no, + supplier: r.party, + party_account: r.party_account, + }; + (groupedKeys.has(`${r.party}||${r.party_account}`) + ? grouped_invoices + : ungrouped_invoices + ).push(payload); + } + + const clearSelection = () => report.datatable.rowmanager.checkAll(false); + + frappe + .call({ + method: "erpnext.accounts.bulk_payment.create_payment_entries", + args: { grouped_invoices, ungrouped_invoices }, + }) + .then(clearSelection) + .catch(clearSelection); + }, + }); + dialog.show(); +}; + erpnext.utils.add_dimensions("Accounts Payable", 10); function get_party_type_options() { From 56a7ee63466f5077c7e377bcd9cbb21547c5e730 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 15:06:14 +0530 Subject: [PATCH 076/161] fix: delete Lead-linked Addresses on transaction deletion The lead/address cleanup pre-escaped each address name before passing the list into a query-builder .isin() filter, which escapes again. The double-escaping produced `name IN ('''Addr''')`, matching nothing, so Lead-linked Addresses were never deleted on either MariaDB or Postgres. Pass the raw list straight into .isin() so the builder escapes once. --- .../transaction_deletion_record/transaction_deletion_record.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py b/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py index 82694f2f9de..82ef3bb766b 100644 --- a/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py +++ b/erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py @@ -702,8 +702,6 @@ class TransactionDeletionRecord(Document): "Dynamic Link", filters={"link_name": ("in", leads)}, pluck="parent" ) if addresses: - addresses = ["%s" % frappe.db.escape(addr) for addr in addresses] - address = qb.DocType("Address") dl1 = qb.DocType("Dynamic Link") dl2 = qb.DocType("Dynamic Link") From 63ea907881b7dfbe7f36dc3da8bf2055061ccb20 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 16:29:43 +0530 Subject: [PATCH 077/161] fix(accounts): break exchange-rate revaluation GLE ties deterministically calculate_exchange_rate_using_last_gle ordered the latest-GLE lookups by posting_date DESC only. With multiple GL Entries on the latest posting_date the picked row was undefined, so MariaDB and Postgres could choose different vouchers and return a different last_exchange_rate (and revaluation gain/loss). Add gl.name DESC as a tiebreaker so both engines pick the same row; MariaDB row count unchanged. --- .../exchange_rate_revaluation/exchange_rate_revaluation.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py index 4213d478ce1..0ed30eaee52 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py +++ b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py @@ -601,6 +601,7 @@ def calculate_exchange_rate_using_last_gle(company, account, party_type, party): .select(gl.voucher_type, gl.voucher_no) .where(Criterion.all(conditions)) .orderby(gl.posting_date, order=Order.desc) + .orderby(gl.name, order=Order.desc) .limit(1) .run()[0] ) @@ -615,6 +616,7 @@ def calculate_exchange_rate_using_last_gle(company, account, party_type, party): (gl.voucher_type == voucher_type) & (gl.voucher_no == voucher_no) & (gl.account == account) ) .orderby(gl.posting_date, order=Order.desc) + .orderby(gl.name, order=Order.desc) .limit(1) .run()[0][0] ) From 93c186fea797b65e36cf0da116b3ce2289cb9179 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 16:29:44 +0530 Subject: [PATCH 078/161] fix(assets): break latest asset-movement ties deterministically get_latest_location_and_custodian ordered by transaction_date DESC only; equal-dated movements left the current location/custodian engine-dependent. Add asm.name DESC tiebreaker so both engines pick the same movement. --- erpnext/assets/doctype/asset_movement/asset_movement.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/assets/doctype/asset_movement/asset_movement.py b/erpnext/assets/doctype/asset_movement/asset_movement.py index 674be5c65b3..74ac5e55ee3 100644 --- a/erpnext/assets/doctype/asset_movement/asset_movement.py +++ b/erpnext/assets/doctype/asset_movement/asset_movement.py @@ -139,6 +139,7 @@ class AssetMovement(Document): .select(asm_item.target_location, asm_item.to_employee) .where((asm_item.asset == asset) & (asm.company == self.company) & (asm.docstatus == 1)) .orderby(asm.transaction_date, order=frappe.qb.desc) + .orderby(asm.name, order=frappe.qb.desc) .limit(1) .run() ) From e52b9825e398fddef74037bd5ac7c14114aa3836 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 16:29:45 +0530 Subject: [PATCH 079/161] fix(accounts): break last-purchase-rate ties deterministically in Gross Profit get_last_purchase_rate ordered by posting_date DESC only; same-date Purchase Invoices yielded an undefined last_purchase_rate that diverged between MariaDB and Postgres. Add purchase_invoice.name DESC tiebreaker. --- erpnext/accounts/report/gross_profit/gross_profit.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/erpnext/accounts/report/gross_profit/gross_profit.py b/erpnext/accounts/report/gross_profit/gross_profit.py index 8785144a8da..61968d603ad 100644 --- a/erpnext/accounts/report/gross_profit/gross_profit.py +++ b/erpnext/accounts/report/gross_profit/gross_profit.py @@ -895,7 +895,11 @@ class GrossProfitGenerator: if row.cost_center: query = query.where(purchase_invoice_item.cost_center == row.cost_center) - query = query.orderby(purchase_invoice.posting_date, order=frappe.qb.desc).limit(1) + query = ( + query.orderby(purchase_invoice.posting_date, order=frappe.qb.desc) + .orderby(purchase_invoice.name, order=frappe.qb.desc) + .limit(1) + ) last_purchase_rate = query.run() return flt(last_purchase_rate[0][0]) if last_purchase_rate else 0 From 70142d147e29943d5e655a049acc1d4a0c6ca8d3 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 16:29:46 +0530 Subject: [PATCH 080/161] fix(selling): break last-sales-amount ties deterministically in Inactive Customers get_last_sales_amt ordered by the sales date DESC only; same-date documents made the reported Last Order Amount engine-dependent. Add name DESC tiebreaker. --- erpnext/selling/report/inactive_customers/inactive_customers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/selling/report/inactive_customers/inactive_customers.py b/erpnext/selling/report/inactive_customers/inactive_customers.py index 2dedb346601..1710566b92a 100644 --- a/erpnext/selling/report/inactive_customers/inactive_customers.py +++ b/erpnext/selling/report/inactive_customers/inactive_customers.py @@ -86,6 +86,7 @@ def get_last_sales_amt(customer, doctype): .select(sales_doctype.base_net_total) .where((sales_doctype.customer == customer) & (sales_doctype.docstatus == 1)) .orderby(date_col, order=frappe.qb.desc) + .orderby(sales_doctype.name, order=frappe.qb.desc) .limit(1) ).run() From 6f97c7199c4f65e5e2fda31d99905077f2d2a2bc Mon Sep 17 00:00:00 2001 From: Jatin3128 <140256508+Jatin3128@users.noreply.github.com> Date: Mon, 29 Jun 2026 17:22:20 +0530 Subject: [PATCH 081/161] fix: carry item-level project to Purchase Receipt GL entries (#56568) Purchase Receipt stock and asset GL lines used the item row's cost center but always fell back to the document-level project, unlike Purchase Invoice which uses the item-level project. add_gl_entry accepted a project argument but never wrote it to the GL dict, so the inward, Stock Received But Not Billed, landed cost, divisional loss, sub-contracting and exchange rate lines dropped the row's project. Write project into the GL dict and pass project=item.project on the entries that were missing it, so project behaves like cost center and matches Purchase Invoice. Ticket: 72523 --- erpnext/accounts/services/base_gl_composer.py | 3 +++ .../stock/doctype/purchase_receipt/services/gl_composer.py | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/erpnext/accounts/services/base_gl_composer.py b/erpnext/accounts/services/base_gl_composer.py index 270658aca13..8e4279e7e13 100644 --- a/erpnext/accounts/services/base_gl_composer.py +++ b/erpnext/accounts/services/base_gl_composer.py @@ -150,6 +150,9 @@ def add_gl_entry( "remarks": remarks, } + if project: + gl_entry["project"] = project + if voucher_detail_no: gl_entry["voucher_detail_no"] = voucher_detail_no diff --git a/erpnext/stock/doctype/purchase_receipt/services/gl_composer.py b/erpnext/stock/doctype/purchase_receipt/services/gl_composer.py index 7cd7e3d2622..9d68546445a 100644 --- a/erpnext/stock/doctype/purchase_receipt/services/gl_composer.py +++ b/erpnext/stock/doctype/purchase_receipt/services/gl_composer.py @@ -67,6 +67,7 @@ class PurchaseReceiptGLComposer(BaseStockGLComposer): remarks=remarks, against_account=stock_asset_rbnb, account_currency=account_currency, + project=item.project, item=item, ) @@ -118,6 +119,7 @@ class PurchaseReceiptGLComposer(BaseStockGLComposer): against_account=stock_asset_account_name, debit_in_account_currency=-1 * flt(outgoing_amount, item.precision("base_net_amount")), account_currency=account_currency, + project=item.project, item=item, ) @@ -141,6 +143,7 @@ class PurchaseReceiptGLComposer(BaseStockGLComposer): against_account=doc.supplier, debit_in_account_currency=-1 * discrepancy_caused_by_exchange_rate_difference, account_currency=account_currency, + project=item.project, item=item, ) @@ -154,6 +157,7 @@ class PurchaseReceiptGLComposer(BaseStockGLComposer): against_account=doc.supplier, debit_in_account_currency=-1 * discrepancy_caused_by_exchange_rate_difference, account_currency=account_currency, + project=item.project, item=item, ) @@ -214,6 +218,7 @@ class PurchaseReceiptGLComposer(BaseStockGLComposer): remarks=remarks, against_account=stock_asset_account_name, account_currency=supplier_warehouse_account_currency, + project=item.project, item=item, ) From b6165844ed1314fbe40370fd3a2ae8cf9ab74986 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 20:39:23 +0530 Subject: [PATCH 082/161] fix(buying): savepoint Subcontracting Order submit in make_subcontracting_order (Postgres) target_doc.submit() is wrapped in except Exception whose handler calls add_comment (a Comment insert). On Postgres a failed submit poisons the transaction so the add_comment insert raises InFailedSqlTransaction; MariaDB logs the comment. Savepoint + rollback before add_comment. No-op on MariaDB. --- erpnext/buying/doctype/purchase_order/mapper.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/buying/doctype/purchase_order/mapper.py b/erpnext/buying/doctype/purchase_order/mapper.py index 468ab3e2e5d..1aa3d2c6eac 100644 --- a/erpnext/buying/doctype/purchase_order/mapper.py +++ b/erpnext/buying/doctype/purchase_order/mapper.py @@ -232,9 +232,11 @@ def make_subcontracting_order( target_doc.save() if submit and frappe.has_permission(target_doc.doctype, "submit", target_doc): + frappe.db.savepoint("submit_subcontracting_order") try: target_doc.submit() except Exception as e: + frappe.db.rollback(save_point="submit_subcontracting_order") target_doc.add_comment("Comment", _("Submit Action Failed") + "

                    " + str(e)) if notify: From 864fe50b243fefbc5e023b017119d136957e44d2 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 20:39:23 +0530 Subject: [PATCH 083/161] fix(subcontracting): savepoint Purchase Receipt submit in make_purchase_receipt (Postgres) Same submit()/add_comment-in-except shape as the PO->SCO mapper: on Postgres a failed submit aborts the transaction so the follow-on Comment insert raises InFailedSqlTransaction; MariaDB continues. Savepoint + rollback before add_comment. No-op on MariaDB. --- erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py b/erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py index 4927d6723c0..bf5fbd5775a 100644 --- a/erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py +++ b/erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py @@ -125,9 +125,11 @@ def make_purchase_receipt( target_doc.save() if submit and frappe.has_permission(target_doc.doctype, "submit", target_doc): + frappe.db.savepoint("submit_subcontracting_receipt") try: target_doc.submit() except Exception as e: + frappe.db.rollback(save_point="submit_subcontracting_receipt") target_doc.add_comment("Comment", _("Submit Action Failed") + "

                    " + str(e)) if notify: From 2b966b69cef99c5c0ecafc1f796ba967f50dbc66 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 20:39:24 +0530 Subject: [PATCH 084/161] fix(stock): savepoint per-voucher accounting repost submit (Postgres) make_reposting_for_accounting_ledgers submits a new Repost Item Valuation per voucher in a loop under except Exception. On Postgres a failed submit aborts the transaction so the next iteration's DB work dies with InFailedSqlTransaction; MariaDB continues. Savepoint per iteration, roll back on failure. No-op on MariaDB. --- .../doctype/repost_item_valuation/repost_item_valuation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py index 4be57de747a..b9bb3d931da 100644 --- a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py +++ b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py @@ -779,6 +779,7 @@ def make_reposting_for_accounting_ledgers(transactions, company, repost_doc): if reposting_map.get((voucher_type, voucher_no)): continue + frappe.db.savepoint("repost_accounting_ledger") try: new_repost_doc = frappe.new_doc("Repost Item Valuation") new_repost_doc.company = company @@ -789,7 +790,7 @@ def make_reposting_for_accounting_ledgers(transactions, company, repost_doc): new_repost_doc.flags.ignore_permissions = True new_repost_doc.submit() except Exception: - pass + frappe.db.rollback(save_point="repost_accounting_ledger") def get_existing_reposting_only_gl_entries(reposting_reference): From 0978d0304fbf4e0f54012d34594c608924ab574c Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 20:39:25 +0530 Subject: [PATCH 085/161] test(manufacturing): savepoint duplicate Routing insert in create_routing (Postgres) create_routing inserts a Routing and, on DuplicateEntryError, re-fetches and updates. On Postgres the failed insert aborts the transaction so the get_doc/save in the except raises InFailedSqlTransaction; MariaDB recovers. Savepoint + rollback before the fallback path. --- erpnext/manufacturing/doctype/routing/test_routing.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/manufacturing/doctype/routing/test_routing.py b/erpnext/manufacturing/doctype/routing/test_routing.py index 4575c1d1d57..1cec3b657b4 100644 --- a/erpnext/manufacturing/doctype/routing/test_routing.py +++ b/erpnext/manufacturing/doctype/routing/test_routing.py @@ -102,9 +102,11 @@ def create_routing(**args): doc.update(args) if not args.do_not_save: + frappe.db.savepoint("create_routing") try: doc.insert() except frappe.DuplicateEntryError: + frappe.db.rollback(save_point="create_routing") doc = frappe.get_doc("Routing", args.routing_name) doc.delete_key("operations") for operation in args.operations: From 6e955bdf3f988e800812b73a1f13252f8d601e2f Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 21:28:08 +0530 Subject: [PATCH 086/161] ci(patch): download v14 baseline from GitHub release instead of frappe.io The Patch Test job intermittently failed on the "Download erpnext v14 backup" step with HTTP 403 Forbidden: frappe.io sits behind Cloudflare, and wget's default User-Agent gets flagged by bot protection on cache misses. This caused random failures across PRs that only a re-run would clear. Pull the fixed baseline from the v14-baseline GitHub release using the built-in token instead. Release assets are served from GitHub's CDN and authenticated from the runner, so no rate-limit roulette. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/patch.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/patch.yml b/.github/workflows/patch.yml index 40fc667e3d9..24c767023a8 100644 --- a/.github/workflows/patch.yml +++ b/.github/workflows/patch.yml @@ -66,7 +66,7 @@ jobs: run: echo "127.0.0.1 test_site" | sudo tee -a /etc/hosts # The v14 baseline backup is a fixed published file — cache it instead of re-downloading - # ~100MB from frappe.io every run. + # it from the GitHub release every run. - name: Cache erpnext v14 backup id: cache-v14 uses: actions/cache@v4 @@ -76,7 +76,9 @@ jobs: - name: Download erpnext v14 backup if: steps.cache-v14.outputs.cache-hit != 'true' - run: wget -O ~/erpnext-v14.sql.gz https://frappe.io/files/erpnext-v14.sql.gz + run: gh release download v14-baseline -R frappe/erpnext -p erpnext-v14.sql.gz -O ~/erpnext-v14.sql.gz + env: + GH_TOKEN: ${{ github.token }} - name: Cache pip uses: actions/cache@v4 From b93a3bca16838d1fd9ae28d5008b7749f1b83736 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 21:29:22 +0530 Subject: [PATCH 087/161] ci(postgres): fail setup if pg_ctl stop fails before baking the datadir MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "Stop DB and stage datadir" step swallowed a failed `pg_ctl -m fast -w stop` with `|| true`, then moved and tarred the PGDATA regardless. A stop that times out or errors would bake a still-running, crash-inconsistent cluster into the artifact every test shard consumes — and with full_page_writes off, crash recovery can't repair torn pages. Drop the `|| true` so a failed stop fails the job, mirroring the MariaDB sister's "don't bake a dirty datadir" guard. Also drop the redundant `ALTER SYSTEM SET fsync/synchronous_commit/ full_page_writes = off` block from install.sh. Its comment claimed the postgres workflow "runs a service-container DB and never calls start-db.sh", but it does call start-db.sh, which already applies those flags via `-o` on every postgres start (setup job and each shard). The block was a no-op and its justification was factually wrong. Co-Authored-By: Claude Opus 4.8 --- .github/helper/install.sh | 12 ++++-------- .github/workflows/server-tests-postgres.yml | 6 +++++- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/helper/install.sh b/.github/helper/install.sh index 34e777506c9..27928ee8bbc 100644 --- a/.github/helper/install.sh +++ b/.github/helper/install.sh @@ -297,14 +297,10 @@ if [ "$DB" == "postgres" ];then echo "travis" | psql -h 127.0.0.1 -p 5432 -c "CREATE DATABASE test_frappe" -U postgres; echo "travis" | psql -h 127.0.0.1 -p 5432 -c "CREATE USER test_frappe WITH PASSWORD 'test_frappe'" -U postgres; - # Disposable CI DB: durability off for speed (postgres fsyncs every commit by default, which - # dominates a commit-heavy suite). All reloadable, no restart. The postgres workflow runs a - # service-container DB and never calls start-db.sh, so the flags must be applied here. - echo "travis" | psql -h 127.0.0.1 -p 5432 -U postgres \ - -c "ALTER SYSTEM SET synchronous_commit = 'off'" \ - -c "ALTER SYSTEM SET fsync = 'off'" \ - -c "ALTER SYSTEM SET full_page_writes = 'off'" \ - -c "SELECT pg_reload_conf()"; + # Durability-off for speed (no fsync/synchronous_commit/full_page_writes) is applied by + # start-db.sh's postgres `-o` flags on every start — setup job AND each test shard — so it is + # NOT repeated here. The postgres workflow runs in-runner via start-db.sh, not a service + # container. fi cd ~/frappe-bench || exit diff --git a/.github/workflows/server-tests-postgres.yml b/.github/workflows/server-tests-postgres.yml index 8cd50f235f0..98141162d09 100644 --- a/.github/workflows/server-tests-postgres.yml +++ b/.github/workflows/server-tests-postgres.yml @@ -108,7 +108,11 @@ jobs: - name: Stop DB and stage datadir run: | PG_BIN=$(ls -d /usr/lib/postgresql/*/bin | sort -V | tail -1) - "$PG_BIN/pg_ctl" -D /home/runner/pgdata -m fast -w stop || true + # Clean shutdown so the baked datadir is consistent. Do NOT swallow a failed stop with + # `|| true`: moving and tarring a still-running cluster ships a torn datadir the shards + # cannot crash-recover (full_page_writes is off). Fail the job instead — mirrors the + # MariaDB sister's "don't bake a dirty datadir" guard. + "$PG_BIN/pg_ctl" -D /home/runner/pgdata -m fast -w stop mv /home/runner/pgdata /home/runner/frappe-bench/pgdata - name: Package bench for test shards From f645e513382a5934878f033ecef9ed3bc27fde27 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 21:33:42 +0530 Subject: [PATCH 088/161] ci(patch): fetch v14 baseline from public release URL without a token MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Greptile flagged that `gh release download` with `github.token` could be rejected for fork pull requests (token scoped to the fork, asset in frappe/erpnext). The release is public and published, so the asset is downloadable anonymously from objects.githubusercontent.com — drop the token and curl the public URL directly. Removes the cross-repo token dependency and keeps fork PRs working. Cloudflare is still bypassed since GitHub serves the asset, not frappe.io. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/patch.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/patch.yml b/.github/workflows/patch.yml index 24c767023a8..83c2d7ff925 100644 --- a/.github/workflows/patch.yml +++ b/.github/workflows/patch.yml @@ -76,9 +76,10 @@ jobs: - name: Download erpnext v14 backup if: steps.cache-v14.outputs.cache-hit != 'true' - run: gh release download v14-baseline -R frappe/erpnext -p erpnext-v14.sql.gz -O ~/erpnext-v14.sql.gz - env: - GH_TOKEN: ${{ github.token }} + run: | + curl -fSL --retry 5 --retry-all-errors --retry-delay 5 \ + -o ~/erpnext-v14.sql.gz \ + https://github.com/frappe/erpnext/releases/download/v14-baseline/erpnext-v14.sql.gz - name: Cache pip uses: actions/cache@v4 From 65539d44b8d6f6f0b0308e89c697a2b70ae62a6e Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 21:33:15 +0530 Subject: [PATCH 089/161] fix(regional): survive a failed invoice during Import Supplier Invoice on Postgres create_purchase_invoice caught its own failure and then ran frappe.db.set_value + log_error in the SAME transaction. On Postgres a failed insert/save aborts the whole transaction, so the error-marking died with InFailedSqlTransaction and the failure cascaded through prepare_data_for_import's per-file loop, killing the entire import; MariaDB recovers per-statement and continues. Let create_purchase_invoice raise, and wrap each call in prepare_data_for_import in frappe.db.savepoint + rollback(save_point=...). On failure the savepoint rollback un-poisons the transaction, the error is logged, and the per-file status is set to Error and committed (self.db_set(commit=True), matching the existing process_file_data status commit) so an interrupted import durably reflects Error instead of staying at the already-committed Processing File Data; the loop then continues to the next file. The savepoint is taken after create_supplier/create_address so those are preserved exactly as before. Behaviour change (MariaDB): a failed invoice's partially-created draft Purchase Invoice is now rolled back on BOTH engines instead of being left as an orphan draft on MariaDB. Deliberate and more correct - a failed import should not leave a partial invoice; release-note worthy. --- .../import_supplier_invoice.py | 96 ++++++++++--------- 1 file changed, 51 insertions(+), 45 deletions(-) diff --git a/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py b/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py index b9748750b54..dbcaa2ef2a7 100644 --- a/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py +++ b/erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py @@ -95,20 +95,31 @@ class ImportSupplierInvoice(Document): supplier_name = create_supplier(self.supplier_group, supp_dict) create_address(supplier_name, supp_dict) - pi_name = create_purchase_invoice(supplier_name, file_name, invoices_args, self.name) - self.file_count += 1 - if pi_name: - self.purchase_invoices_count += 1 - file_doc = frappe.new_doc("File") - file_doc.file_name = file_name - file_doc.attached_to_doctype = "Purchase Invoice" - file_doc.attached_to_name = pi_name - file_doc.content = encoded_content - file_doc.decode = False - file_doc.is_private = False - file_doc.insert(ignore_permissions=True) + frappe.db.savepoint("import_invoice") + try: + pi_name = create_purchase_invoice(supplier_name, file_name, invoices_args, self.name) + except Exception: + frappe.db.rollback(save_point="import_invoice") + frappe.log_error( + "Unable to create Purchase Invoice", + reference_doctype=self.doctype, + reference_name=self.name, + ) + self.db_set("status", "Error", commit=True) + continue + + self.purchase_invoices_count += 1 + + file_doc = frappe.new_doc("File") + file_doc.file_name = file_name + file_doc.attached_to_doctype = "Purchase Invoice" + file_doc.attached_to_name = pi_name + file_doc.content = encoded_content + file_doc.decode = False + file_doc.is_private = False + file_doc.insert(ignore_permissions=True) def prepare_items_for_invoice(self, file_content, invoices_args): qty = 1 @@ -374,41 +385,36 @@ def create_purchase_invoice(supplier_name, file_name, args, name): } ) - try: - pi.set_missing_values() - pi.insert(ignore_mandatory=True) + pi.set_missing_values() + pi.insert(ignore_mandatory=True) - # if discount exists in file, apply any discount on grand total - if args.total_discount > 0: - pi.apply_discount_on = "Grand Total" - pi.discount_amount = args.total_discount - pi.save() - # adjust payment amount to match with grand total calculated - calc_total = 0 - adj = 0 - for term in args.terms: - calc_total += flt(term["payment_amount"]) - if flt(calc_total - flt(pi.grand_total)) != 0: - adj = calc_total - flt(pi.grand_total) - pi.payment_schedule = [] - for term in args.terms: - pi.append( - "payment_schedule", - { - "mode_of_payment_code": term["mode_of_payment_code"], - "bank_account_iban": term["bank_account_iban"], - "due_date": term["due_date"], - "payment_amount": flt(term["payment_amount"]) - adj, - }, - ) - adj = 0 - pi.imported_grand_total = calc_total + # if discount exists in file, apply any discount on grand total + if args.total_discount > 0: + pi.apply_discount_on = "Grand Total" + pi.discount_amount = args.total_discount pi.save() - return pi.name - except Exception: - frappe.db.set_value("Import Supplier Invoice", name, "status", "Error") - pi.log_error("Unable to create Puchase Invoice") - return None + # adjust payment amount to match with grand total calculated + calc_total = 0 + adj = 0 + for term in args.terms: + calc_total += flt(term["payment_amount"]) + if flt(calc_total - flt(pi.grand_total)) != 0: + adj = calc_total - flt(pi.grand_total) + pi.payment_schedule = [] + for term in args.terms: + pi.append( + "payment_schedule", + { + "mode_of_payment_code": term["mode_of_payment_code"], + "bank_account_iban": term["bank_account_iban"], + "due_date": term["due_date"], + "payment_amount": flt(term["payment_amount"]) - adj, + }, + ) + adj = 0 + pi.imported_grand_total = calc_total + pi.save() + return pi.name def get_country(code): From 8c03029f2847b11846b6bb40f4b5c254e35e77a1 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:25:19 +0530 Subject: [PATCH 090/161] fix(controllers): guard return-rate division against a zero stock qty (Postgres) get_rate_for_return builds Abs(stock_value_difference / actual_qty) for Sales/Delivery returns and passes it to get_value with no actual_qty filter. A matched Stock Ledger Entry with actual_qty=0 (a zero-qty repost / serial-batch row) makes Postgres raise 'division by zero' while MariaDB returns NULL. Wrap the divisor in NullIf(actual_qty, 0) so both engines return NULL. MariaDB output unchanged. Sibling of the already-fixed /actual_qty sites in stock_ledger.py and incorrect_serial_no_valuation.py. --- erpnext/controllers/sales_and_purchase_return.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/controllers/sales_and_purchase_return.py b/erpnext/controllers/sales_and_purchase_return.py index db1227e29b2..9cdc0a07cd5 100644 --- a/erpnext/controllers/sales_and_purchase_return.py +++ b/erpnext/controllers/sales_and_purchase_return.py @@ -7,7 +7,7 @@ import frappe from frappe import _, bold from frappe.model.meta import get_field_precision from frappe.query_builder import DocType -from frappe.query_builder.functions import Abs, Sum +from frappe.query_builder.functions import Abs, NullIf, Sum from frappe.utils import cint, flt, format_datetime, get_datetime import erpnext @@ -766,7 +766,7 @@ def get_rate_for_return( select_field = "incoming_rate" else: StockLedgerEntry = frappe.qb.DocType("Stock Ledger Entry") - select_field = Abs(StockLedgerEntry.stock_value_difference / StockLedgerEntry.actual_qty) + select_field = Abs(StockLedgerEntry.stock_value_difference / NullIf(StockLedgerEntry.actual_qty, 0)) item_details = frappe.get_cached_value("Item", item_code, ["has_batch_no", "has_expiry_date"], as_dict=1) set_zero_rate_for_expired_batch = frappe.db.get_single_value( From 91dae917690c721bedcae7ba7b7631e29bd23de7 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:25:39 +0530 Subject: [PATCH 091/161] fix(setup): deterministic tiebreaker in get_exchange_rate Currency Exchange lookup (Postgres) get_exchange_rate orders Currency Exchange by 'date desc' LIMIT 1 with no unique tiebreaker. Currency Exchange autoname {date}-{from}-{to}-{purpose} allows multiple same-date rows (different purpose) for one currency pair; on the no-purpose-filter path all match, so MariaDB and Postgres can return a different exchange_rate for the same inputs. Add 'name desc' so both engines pick the same row. MariaDB row count unchanged. --- erpnext/setup/utils.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/erpnext/setup/utils.py b/erpnext/setup/utils.py index 2fbddcec948..3e0decd8f16 100644 --- a/erpnext/setup/utils.py +++ b/erpnext/setup/utils.py @@ -95,7 +95,11 @@ def get_exchange_rate( # cksgb 19/09/2016: get last entry in Currency Exchange with from_currency and to_currency. entries = frappe.get_all( - "Currency Exchange", fields=["exchange_rate"], filters=filters, order_by="date desc", limit=1 + "Currency Exchange", + fields=["exchange_rate"], + filters=filters, + order_by="date desc, name desc", + limit=1, ) if entries: return flt(entries[0].exchange_rate) From d7a81affc22c35738ea79f019dea34d696892c1f Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:37:59 +0530 Subject: [PATCH 092/161] fix(stock): savepoint repost loop in Stock and Account Value Comparison (Postgres) The item/warehouse loop submits a Repost Item Valuation; a DuplicateEntryError poisons the Postgres transaction, so the next iteration's .submit() raises InFailedSqlTransaction. MariaDB continues. Savepoint per iteration + rollback(save_point=) on the caught duplicate (mirrors repost_item_valuation:782). No-op on MariaDB. --- .../stock_and_account_value_comparison.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py b/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py index e295c0cb659..28308609f2f 100644 --- a/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py +++ b/erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py @@ -202,6 +202,7 @@ def create_reposting_entries(rows: str | list, company: str): for key, sle in item_wh.items(): item_code, warehouse = key + frappe.db.savepoint("repost_value_comparison") try: doc = frappe.get_doc( { @@ -219,7 +220,7 @@ def create_reposting_entries(rows: str | list, company: str): entries.append(get_link_to_form("Repost Item Valuation", doc.name)) except frappe.DuplicateEntryError: - pass + frappe.db.rollback(save_point="repost_value_comparison") if entries: entries = ", ".join(entries) From 1dde2b5f1e0e6b4d2a4303c601d8f686367cafb8 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:38:00 +0530 Subject: [PATCH 093/161] fix(stock): savepoint repost loop in Stock Ledger Invariant Check (Postgres) Same shape: the rows loop submits a Repost Item Valuation; a caught DuplicateEntryError poisons the Postgres txn so the next iteration's submit raises InFailedSqlTransaction. Savepoint + rollback(save_point=) before continue. No-op on MariaDB. --- .../stock_ledger_invariant_check.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py b/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py index edfcde2de2c..137feb5a34c 100644 --- a/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py +++ b/erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py @@ -304,6 +304,7 @@ def create_reposting_entries(rows: str | list, item_code: str | None = None, war for row in rows: row = frappe._dict(row) + frappe.db.savepoint("repost_invariant_check") try: doc = frappe.get_doc( { @@ -320,6 +321,7 @@ def create_reposting_entries(rows: str | list, item_code: str | None = None, war entries.append(get_link_to_form("Repost Item Valuation", doc.name)) except frappe.DuplicateEntryError: + frappe.db.rollback(save_point="repost_invariant_check") continue if entries: From 4a572311bc836f835b8ec52fa5046abe3cd7d149 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:38:01 +0530 Subject: [PATCH 094/161] fix(buying): insert default Supplier Scorecard records with ignore_if_duplicate (Postgres) make_default_records inserted Scorecard Variable/Standing rows in a loop and swallowed DuplicateEntryError (frappe.NameError). On Postgres the failed insert poisons the txn so the next iteration's insert raises InFailedSqlTransaction. insert(ignore_if_duplicate=True) emits ON CONFLICT DO NOTHING, never poisoning the txn. No-op on MariaDB. --- .../supplier_scorecard/supplier_scorecard.py | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py b/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py index 7a1db02082e..8c835a29912 100644 --- a/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py +++ b/erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py @@ -405,16 +405,10 @@ def get_default_scorecard_standing(): def make_default_records(): install_variable_docs = get_default_scorecard_variables() for d in install_variable_docs: - try: - d["doctype"] = "Supplier Scorecard Variable" - frappe.get_doc(d).insert() - except frappe.NameError: - pass + d["doctype"] = "Supplier Scorecard Variable" + frappe.get_doc(d).insert(ignore_if_duplicate=True) install_standing_docs = get_default_scorecard_standing() for d in install_standing_docs: - try: - d["doctype"] = "Supplier Scorecard Standing" - frappe.get_doc(d).insert() - except frappe.NameError: - pass + d["doctype"] = "Supplier Scorecard Standing" + frappe.get_doc(d).insert(ignore_if_duplicate=True) From c97eac34bfac1ecf4a6dcb9c33069645d7b29d09 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:38:02 +0530 Subject: [PATCH 095/161] fix(accounts): savepoint per-row bank entry in Bank Transaction upload (Postgres) create_bank_entries loops rows inserting+submitting a Bank Transaction; on failure the except calls bank_transaction.log_error (INSERT) with no rollback, raising InFailedSqlTransaction on Postgres, and the next row runs in the poisoned txn. Savepoint per row + rollback(save_point=) before log_error. No-op on MariaDB. --- .../doctype/bank_transaction/bank_transaction_upload.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py b/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py index c2bac737a78..d38d9df6ca0 100644 --- a/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py +++ b/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py @@ -47,6 +47,7 @@ def create_bank_entries(columns: str, data: str | list, bank_account: str): for key, value in header_map.items(): fields.update({key: d[int(value) - 1]}) + frappe.db.savepoint("bank_entry") try: bank_transaction = frappe.get_doc({"doctype": "Bank Transaction"}) bank_transaction.update(fields) @@ -56,6 +57,7 @@ def create_bank_entries(columns: str, data: str | list, bank_account: str): bank_transaction.submit() success += 1 except Exception: + frappe.db.rollback(save_point="bank_entry") bank_transaction.log_error("Bank entry creation failed") errors += 1 From 298df4d3aa7255bfb900f7ce60d2a794fbf071b0 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:38:02 +0530 Subject: [PATCH 096/161] fix(stock): savepoint per-company Material Request creation in reorder (Postgres) create_material_request loops companies inserting+submitting a Material Request; the except calls mr.log_error (INSERT) with no rollback, raising InFailedSqlTransaction on Postgres in the scheduled reorder job, and the next company runs in the poisoned txn. Savepoint per iteration + rollback(save_point=) before log_error. No-op on MariaDB. --- erpnext/stock/reorder_item.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/stock/reorder_item.py b/erpnext/stock/reorder_item.py index 5c668fa8a8d..8955c7f46e6 100644 --- a/erpnext/stock/reorder_item.py +++ b/erpnext/stock/reorder_item.py @@ -216,6 +216,7 @@ def create_material_request(material_requests): company_wise_mr = frappe._dict({}) for request_type in material_requests: for company in material_requests[request_type]: + frappe.db.savepoint("reorder_mr") try: items = material_requests[request_type][company] if not items: @@ -287,6 +288,7 @@ def create_material_request(material_requests): company_wise_mr.setdefault(company, []).append(mr) except Exception as exception: + frappe.db.rollback(save_point="reorder_mr") exceptions_list.append(exception) mr.log_error("Unable to create material request") From 09a3eb8509179e97761bc48a1a66520b41b9bba0 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:42:47 +0530 Subject: [PATCH 097/161] fix(integrations): savepoint the Plaid bank-account update branch + rollback add_institution (Postgres) add_bank_accounts hardened only the INSERT branch with savepoint('plaid_bank_account'); the parallel else/UPDATE branch ran log_error+throw after a failed existing_account.save() with no rollback -> InFailedSqlTransaction on Postgres (masking the friendly throw). Mirror the insert branch with savepoint('plaid_update_account')+rollback. Also add_institution's except log_error after a failed bank.insert() now rolls back first. No-op on MariaDB. --- .../doctype/plaid_settings/plaid_settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py index a4113dfcab4..25d5a861a4b 100644 --- a/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py +++ b/erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py @@ -69,6 +69,7 @@ def add_institution(token: str, response: str | dict): ) bank.insert() except Exception: + frappe.db.rollback() frappe.log_error("Plaid Link Error") else: bank = frappe.get_doc("Bank", response["institution"]["name"]) @@ -154,6 +155,7 @@ def add_bank_accounts(response: str | dict, bank: str | dict, company: str): ) else: + frappe.db.savepoint("plaid_update_account") try: existing_account = frappe.get_doc("Bank Account", existing_bank_account) existing_account.update( @@ -169,6 +171,7 @@ def add_bank_accounts(response: str | dict, bank: str | dict, company: str): existing_account.save() result.append(existing_bank_account) except Exception: + frappe.db.rollback(save_point="plaid_update_account") frappe.log_error("Plaid Link Error") frappe.throw( _("There was an error updating Bank Account {0} while linking with Plaid.").format( From 01811ccf8527ee2c632a72fe20f9f55c3c98aef3 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:42:48 +0530 Subject: [PATCH 098/161] fix(telephony): rollback before logging in call_log link_existing_conversations (Postgres) The hook saves Call Logs in a loop; on failure the except calls frappe.log_error (INSERT) with no rollback, raising InFailedSqlTransaction on Postgres (it runs on every Contact create/update). Full frappe.db.rollback() before log_error. No-op on MariaDB. --- erpnext/telephony/doctype/call_log/call_log.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/telephony/doctype/call_log/call_log.py b/erpnext/telephony/doctype/call_log/call_log.py index 9c00e5aeb6d..2a6660c101f 100644 --- a/erpnext/telephony/doctype/call_log/call_log.py +++ b/erpnext/telephony/doctype/call_log/call_log.py @@ -196,6 +196,7 @@ def link_existing_conversations(doc, state): if not frappe.in_test: frappe.db.commit() except Exception: + frappe.db.rollback() frappe.log_error(title=_("Error during caller information update")) From 8c0b4a99cf80f84ab727c8763402eab7566a6774 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:42:48 +0530 Subject: [PATCH 099/161] fix(setup): rollback before logging in install_country_fixtures (Postgres) Regional fixture setup writes docs; on failure the except calls frappe.log_error before frappe.throw with no rollback -> InFailedSqlTransaction on Postgres. Full rollback before log_error. No-op on MariaDB. --- erpnext/setup/doctype/company/company.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/setup/doctype/company/company.py b/erpnext/setup/doctype/company/company.py index 59064847173..5bd0ee104f0 100644 --- a/erpnext/setup/doctype/company/company.py +++ b/erpnext/setup/doctype/company/company.py @@ -856,6 +856,7 @@ def install_country_fixtures(company, country): except ImportError: pass except Exception: + frappe.db.rollback() frappe.log_error("Unable to set country fixtures") frappe.throw( _("Failed to setup defaults for country {0}. Please contact support.").format( From 44458b0ba5d345794560e7aad4594afcb93e00f1 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:42:49 +0530 Subject: [PATCH 100/161] fix(setup): rollback before logging in update_regional_tax_settings (Postgres) Regional tax-template setup writes docs; on failure the except calls frappe.log_error with no rollback -> InFailedSqlTransaction on Postgres. Full rollback before log_error. No-op on MariaDB. --- erpnext/setup/setup_wizard/operations/taxes_setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/setup/setup_wizard/operations/taxes_setup.py b/erpnext/setup/setup_wizard/operations/taxes_setup.py index 5de54ddf53f..2e5e2c0c092 100644 --- a/erpnext/setup/setup_wizard/operations/taxes_setup.py +++ b/erpnext/setup/setup_wizard/operations/taxes_setup.py @@ -127,6 +127,7 @@ def update_regional_tax_settings(country, company): pass except Exception: # Log error and ignore if failed to setup regional tax settings + frappe.db.rollback() frappe.log_error("Unable to setup regional tax settings") From 790560ebf8caf4ffab4e94afa8a3426083f9a10a Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:45:19 +0530 Subject: [PATCH 101/161] fix(stock): rollback before marking Stock Closing Entry failed (Postgres) prepare_closing_stock_balance (background job) saves Stock Closing Balance rows + db_set status; on failure the except runs db_set('Failed')+log_error with no rollback, raising InFailedSqlTransaction on Postgres so the doc is never marked Failed and the job dies. Full frappe.db.rollback() before the handler's db_set. No-op on MariaDB. --- erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py b/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py index 106983efc9d..00a3b0204c4 100644 --- a/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py +++ b/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py @@ -152,6 +152,7 @@ def prepare_closing_stock_balance(name): doc.create_stock_closing_balance_entries() doc.db_set("status", "Completed") except Exception: + frappe.db.rollback() doc.db_set("status", "Failed") doc.log_error(title="Stock Closing Entry Failed") From c643fe5274ffe6c529b241a662431b7365e50628 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:45:20 +0530 Subject: [PATCH 102/161] fix(manufacturing): rollback before marking BOM Creator failed (Postgres) create_production_plan_bom (background job) save+submits BOMs in a loop; on failure the except runs self.db_set(status=Failed, error_log) with no rollback, raising InFailedSqlTransaction on Postgres so status is never set. Full frappe.db.rollback() at the top of the except. No-op on MariaDB. --- erpnext/manufacturing/doctype/bom_creator/bom_creator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/manufacturing/doctype/bom_creator/bom_creator.py b/erpnext/manufacturing/doctype/bom_creator/bom_creator.py index 531fe9826f9..84f10f1c1ee 100644 --- a/erpnext/manufacturing/doctype/bom_creator/bom_creator.py +++ b/erpnext/manufacturing/doctype/bom_creator/bom_creator.py @@ -313,6 +313,7 @@ class BOMCreator(Document): frappe.msgprint(_("BOMs created successfully")) except Exception: + frappe.db.rollback() traceback = frappe.get_traceback(with_context=True) self.db_set( { From 5110e7f0fd2c966bb4f00c65ab8ee0585052ecd9 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:45:21 +0530 Subject: [PATCH 103/161] fix(accounts): rollback before log_error in deferred-accounting in_test branch (Postgres) book_deferred_entries' make_gl_entries failure path: the else branch already rolls back before log_error, but the frappe.in_test branch ran doc.log_error then re-raised with no rollback -> on Postgres log_error hits InFailedSqlTransaction and masks the original error. Rollback before log_error in the in_test branch too. No-op on MariaDB. --- erpnext/accounts/deferred_revenue.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/accounts/deferred_revenue.py b/erpnext/accounts/deferred_revenue.py index 83ab5badb50..ab4ee51eb6f 100644 --- a/erpnext/accounts/deferred_revenue.py +++ b/erpnext/accounts/deferred_revenue.py @@ -582,6 +582,7 @@ def make_gl_entries( frappe.db.commit() except Exception as e: if frappe.in_test: + frappe.db.rollback() doc.log_error(f"Error while processing deferred accounting for Invoice {doc.name}") raise e else: From 6b0f3cd24301280ac031c6a7b54f2cf71d20d5e0 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:45:22 +0530 Subject: [PATCH 104/161] fix(crm): rollback before logging in Frappe CRM webhook handlers (Postgres) create_prospect/create_address/create_customer insert docs and on failure call frappe.log_error with no rollback; on Postgres (untrusted external CRM webhook input) a failed insert poisons the txn so log_error raises InFailedSqlTransaction. Full frappe.db.rollback() before each log_error. No-op on MariaDB. --- erpnext/crm/frappe_crm_api.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/erpnext/crm/frappe_crm_api.py b/erpnext/crm/frappe_crm_api.py index 0230dda7925..9b1b77755a8 100644 --- a/erpnext/crm/frappe_crm_api.py +++ b/erpnext/crm/frappe_crm_api.py @@ -26,6 +26,7 @@ def create_prospect_against_crm_deal(): prospect.insert() prospect_name = prospect.name except Exception: + frappe.db.rollback() frappe.log_error( frappe.get_traceback(), f"Error while creating prospect against CRM Deal: {frappe.form_dict.get('crm_deal_id')}", @@ -97,6 +98,7 @@ def create_address(doctype, docname, address): address.save(ignore_permissions=True) return address.name except Exception: + frappe.db.rollback() frappe.log_error(frappe.get_traceback(), f"Error while creating address for {docname}") @@ -157,6 +159,7 @@ def create_customer(customer_data: dict | None = None): create_address("Customer", customer_name, customer_data.get("address")) return customer_name except Exception: + frappe.db.rollback() frappe.log_error(frappe.get_traceback(), "Error while creating customer against Frappe CRM Deal") pass From f3785f10a283890c10c4bc76fe201ed5a98fa99a Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:48:25 +0530 Subject: [PATCH 105/161] fix(accounts): savepoint per-row merge in Ledger Merge (Postgres) start_merge merges accounts in a loop; on failure it only rolled back when not in_test, so in tests a failed merge_account left the Postgres txn poisoned and the except log_error + the finally db_set(status) raised InFailedSqlTransaction. Wrap each row in savepoint('ledger_merge_row') and rollback to it unconditionally before log_error - this recovers the txn in both paths without the full rollback discarding the rest of the test transaction. Production still commits per successful merge, so the per-iteration savepoint rollback is equivalent to the prior full rollback. No-op on MariaDB. --- erpnext/accounts/doctype/ledger_merge/ledger_merge.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/accounts/doctype/ledger_merge/ledger_merge.py b/erpnext/accounts/doctype/ledger_merge/ledger_merge.py index a219e21526d..cd574eafaa3 100644 --- a/erpnext/accounts/doctype/ledger_merge/ledger_merge.py +++ b/erpnext/accounts/doctype/ledger_merge/ledger_merge.py @@ -65,6 +65,7 @@ def start_merge(docname): total = len(ledger_merge.merge_accounts) for row in ledger_merge.merge_accounts: if not row.merged: + frappe.db.savepoint("ledger_merge_row") try: merge_account( row.account, @@ -79,8 +80,7 @@ def start_merge(docname): {"ledger_merge": ledger_merge.name, "current": successful_merges, "total": total}, ) except Exception: - if not frappe.in_test: - frappe.db.rollback() + frappe.db.rollback(save_point="ledger_merge_row") ledger_merge.log_error("Ledger merge failed") finally: if successful_merges == total: From 944eeb5921ff8477c5d7656b75b26513cf2c311f Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:48:26 +0530 Subject: [PATCH 106/161] fix(accounts): savepoint subscription-status update loop in Payment Entry (Postgres) trigger_invoice_update_for_subscriptions loops invoices calling refresh_subscription_status (db_set/save); on failure the except calls frappe.log_error with no rollback, raising InFailedSqlTransaction on Postgres, and the next invoice runs in the poisoned txn. Savepoint per iteration + rollback(save_point=) before log_error. No-op on MariaDB. --- erpnext/accounts/doctype/payment_entry/payment_entry.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.py b/erpnext/accounts/doctype/payment_entry/payment_entry.py index 3b6cb7920b9..b4005436ec0 100644 --- a/erpnext/accounts/doctype/payment_entry/payment_entry.py +++ b/erpnext/accounts/doctype/payment_entry/payment_entry.py @@ -514,10 +514,12 @@ class PaymentEntry(AccountsController): invoice_names.add((ref.reference_doctype, ref.reference_name)) for doctype, name in invoice_names: + frappe.db.savepoint("subscription_update") try: doc = frappe.get_doc(doctype, name) doc.refresh_subscription_status() except Exception: + frappe.db.rollback(save_point="subscription_update") frappe.log_error(_("Failed to update subscription status for {0} {1}").format(doctype, name)) def set_missing_values(self): From 4feb9f9910da45d0110172829400611e951e24fe Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:48:27 +0530 Subject: [PATCH 107/161] fix(assets): savepoint per-entry depreciation posting (Postgres) make_depreciation_entry posts a Journal Entry per schedule row in a loop; the except only stored the error, so the next row's je.save()/submit() ran on the Postgres-poisoned txn (InFailedSqlTransaction). Savepoint per iteration + rollback(save_point=) before storing the error; the final raise of the collected error is unchanged. No-op on MariaDB. --- erpnext/assets/doctype/asset/depreciation.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/assets/doctype/asset/depreciation.py b/erpnext/assets/doctype/asset/depreciation.py index 762ed796056..a954d1c9981 100644 --- a/erpnext/assets/doctype/asset/depreciation.py +++ b/erpnext/assets/doctype/asset/depreciation.py @@ -187,6 +187,7 @@ def make_depreciation_entry( for d in depr_schedule_doc.get("depreciation_schedule")[ (sch_start_idx or 0) : (sch_end_idx or len(depr_schedule_doc.get("depreciation_schedule"))) ]: + frappe.db.savepoint("depr_entry") try: _make_journal_entry_for_depreciation( depr_schedule_doc, @@ -202,6 +203,7 @@ def make_depreciation_entry( accounting_dimensions, ) except Exception as e: + frappe.db.rollback(save_point="depr_entry") depr_posting_error = e asset.reload() From f41e8208d850de7f98ca5928c774b409ce3294fb Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Mon, 29 Jun 2026 22:48:28 +0530 Subject: [PATCH 108/161] fix(crm): savepoint Email Campaign send loop (Postgres) send_mail (called per campaign schedule in a loop) inserts a Communication via make(); on failure the except calls frappe.log_error with no rollback, raising InFailedSqlTransaction on Postgres and poisoning subsequent sends. Savepoint before make() + rollback(save_point=) before log_error. No-op on MariaDB. --- erpnext/crm/doctype/email_campaign/email_campaign.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/crm/doctype/email_campaign/email_campaign.py b/erpnext/crm/doctype/email_campaign/email_campaign.py index 4454ede5310..bf0379b8e32 100644 --- a/erpnext/crm/doctype/email_campaign/email_campaign.py +++ b/erpnext/crm/doctype/email_campaign/email_campaign.py @@ -174,6 +174,7 @@ def send_mail(entry, email_campaign): subject = frappe.render_template(email_template.get("subject"), context) content = frappe.render_template(email_template.response_, context) + frappe.db.savepoint("email_campaign_send") try: comm = make( doctype="Email Campaign", @@ -197,6 +198,7 @@ def send_mail(entry, email_campaign): queue_separately=True, ) except Exception: + frappe.db.rollback(save_point="email_campaign_send") frappe.log_error(title="Email Campaign Failed.") return comm From 5c17c7d28503f4bb2c13492b8ded513494e5b77b Mon Sep 17 00:00:00 2001 From: MochaMind Date: Tue, 30 Jun 2026 02:50:06 +0530 Subject: [PATCH 109/161] fix: sync translations from crowdin (#56633) * fix: Persian translations * fix: Swedish translations --- erpnext/locale/fa.po | 6 +- erpnext/locale/sv.po | 553 ++++++++++++++++++++++--------------------- 2 files changed, 281 insertions(+), 278 deletions(-) diff --git a/erpnext/locale/fa.po b/erpnext/locale/fa.po index 49933991d17..f8f26879689 100644 --- a/erpnext/locale/fa.po +++ b/erpnext/locale/fa.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-28 10:20+0000\n" -"PO-Revision-Date: 2026-06-28 20:02\n" +"PO-Revision-Date: 2026-06-29 20:08\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -8580,7 +8580,7 @@ msgstr "مسدود کردن فاکتور" #. 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json msgid "Block Supplier" -msgstr "بلاک کردن تامین کننده" +msgstr "مسدود کردن تامین کننده" #. Description of the 'Is Frozen' (Check) field in DocType 'Customer' #: erpnext/selling/doctype/customer/customer.json @@ -48647,7 +48647,7 @@ msgstr "انتخاب آدرس اعزام " #: erpnext/manufacturing/doctype/job_card/job_card.js:705 msgid "Select Employees" -msgstr "کارکنان را انتخاب کنید" +msgstr "انتخاب کارکنان" #: erpnext/buying/doctype/purchase_order/purchase_order.js:174 #: erpnext/selling/doctype/sales_order/sales_order.js:862 diff --git a/erpnext/locale/sv.po b/erpnext/locale/sv.po index f870d7ad9ca..13dd28de655 100644 --- a/erpnext/locale/sv.po +++ b/erpnext/locale/sv.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: hello@frappe.io\n" "POT-Creation-Date: 2026-06-28 10:20+0000\n" -"PO-Revision-Date: 2026-06-28 20:03\n" +"PO-Revision-Date: 2026-06-29 20:08\n" "Last-Translator: hello@frappe.io\n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -269,7 +269,7 @@ msgstr "\"Tillåt flera Försäljning Order mot Kund Inköp Order\"" #: erpnext/controllers/trends.py:62 msgid "'Based On' and 'Group By' can not be the same" -msgstr "" +msgstr "\"Baserad På\" och \"Gruppera Efter\" kan inte vara samma" #: erpnext/selling/report/inactive_customers/inactive_customers.py:23 msgid "'Days Since Last Order' must be greater than or equal to zero" @@ -295,15 +295,15 @@ msgstr "'Från Datum' måste vara efter 'Till Datum'" #: erpnext/stock/doctype/item/item.py:466 msgid "'Has Serial No' cannot be 'Yes' for non-stock item" -msgstr "" +msgstr "'Har Serie Nummer' kan inte vara 'Ja' för ej Lager Artikel" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145 msgid "'Inspection Required before Delivery' is disabled for the item {0}, no need to create the QI" -msgstr "" +msgstr "\"Kontroll erfordras före Leverans\" är inaktiverad för artikel {0}, inget behov av att skapa Kvalitet Kontroll" #: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136 msgid "'Inspection Required before Purchase' is disabled for the item {0}, no need to create the QI" -msgstr "" +msgstr "\"Kontroll erfordras före Inköp\" är inaktiverad för artikel {0}, inget behov av att skapa Kvalitet Kontroll" #: erpnext/stock/report/stock_ledger/stock_ledger.py:684 #: erpnext/stock/report/stock_ledger/stock_ledger.py:725 @@ -323,7 +323,7 @@ msgstr "\"Till Förpackning Nummer.\" får inte vara lägre än \"Från Förpack #: erpnext/controllers/sales_and_purchase_return.py:80 msgid "'Update Stock' cannot be checked because items are not delivered via {0}" -msgstr "" +msgstr "\"Uppdatera Lager\" kan inte väljas eftersom artiklar inte är levererade via {0}" #: erpnext/accounts/doctype/sales_invoice/services/fixed_assets.py:46 msgid "'Update Stock' cannot be checked for fixed asset sale" @@ -827,7 +827,7 @@ msgstr "

                    Kan inte överfakturera för följande Artiklar:

                    " #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:159 msgid "

                    Following {0}s do not belong to Company {1}:

                    " -msgstr "" +msgstr "

                    Följande {0} tillhör inte Bolag {1}:

                    " #. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation' #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json @@ -1049,7 +1049,7 @@ msgstr "A - C" #: erpnext/selling/doctype/customer/customer.py:358 msgid "A Customer Group exists with the same name. Please change the Customer name or rename the Customer Group" -msgstr "" +msgstr "Kund Grupp finns redan med samma namn. Ändra Kund Namn eller ändra namn på Kund Grupp" #: erpnext/manufacturing/doctype/workstation/workstation.js:73 msgid "A Holiday List can be added to exclude counting these days for the Workstation." @@ -1061,7 +1061,7 @@ msgstr "Potentiell Kund kräver antingen person namn eller bolag namn" #: erpnext/stock/doctype/packing_slip/packing_slip.py:83 msgid "A Packing Slip can only be created for a Draft Delivery Note." -msgstr "" +msgstr "Packsedel kan endast skapas för utkast till Försäljning Följesedel." #: erpnext/accounts/services/gl_validator.py:123 msgid "A Period Closing Voucher is already submitted and an Opening Entry can no longer be created. {0} to learn more." @@ -1319,7 +1319,7 @@ msgstr "Åtkomst Nyckel erfordras för Tjänsteleverantör: {0}" #: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:423 msgid "Access to Request for Quotation from the portal is disabled. To allow access, enable it in Portal Settings." -msgstr "" +msgstr "Åtkomst till Inköp Offert från Portal är inaktiverad. För att tillåta åtkomst, aktivera i Portal Inställningar." #. Description of the 'Common Code' (Data) field in DocType 'UOM' #: erpnext/setup/doctype/uom/uom.json @@ -2069,7 +2069,7 @@ msgstr "Bokföring Period" #: erpnext/accounts/doctype/accounting_period/accounting_period.py:49 msgid "Accounting Period cannot be created for a future date. End Date {0} is after today." -msgstr "" +msgstr "Bokföring Period kan inte skapas för framtida datum. Slutdatum {0} är efter idag." #: erpnext/accounts/doctype/accounting_period/accounting_period.py:77 msgid "Accounting Period overlaps with {0}" @@ -2928,7 +2928,7 @@ msgstr "Lade till Leverantör Roll till Användare {0}." #: erpnext/controllers/website_list_for_contact.py:311 msgid "Added {1} role to user {0}." -msgstr "" +msgstr "Lade till {1} roll till användare {0}." #: erpnext/crm/doctype/lead/lead.js:81 msgid "Adding Lead to Prospect..." @@ -3190,7 +3190,7 @@ msgstr "Extra Överförd Kvantitet" #: erpnext/manufacturing/doctype/work_order/work_order.py:591 msgid "Additional Transferred Qty {0} cannot be greater than {1}. To fix this, increase the percentage value of the field 'Transfer Extra Raw Materials to WIP' in Manufacturing Settings." -msgstr "" +msgstr "Extra Överförd Kvantitet {0} kan inte vara högre än {1}. För att åtgärda detta, öka procentuellt värde under \"Överför Extra Råmaterial till Pågående Arbete Lager\" i Produktion Inställningar." #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:630 msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction" @@ -3786,7 +3786,7 @@ msgstr "Algoritm" #: erpnext/buying/doctype/supplier/supplier.json #: erpnext/selling/doctype/customer/customer.json msgid "Alias" -msgstr "" +msgstr "Alias" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165 #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185 @@ -3996,7 +3996,7 @@ msgstr "Alla Kommentar och E-post meddelande kommer att kopieras från ett dokum #: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:204 msgid "All the items have already been returned." -msgstr "" +msgstr "Alla artiklar är redan återlämnade." #: erpnext/manufacturing/doctype/work_order/work_order.js:1272 msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table." @@ -4004,7 +4004,7 @@ msgstr "Alla nödvändiga artiklar (råmaterial) kommer att hämtas från styckl #: erpnext/stock/doctype/delivery_note/mapper.py:82 msgid "All these items have already been invoiced/returned" -msgstr "" +msgstr "Alla Artiklar är redan Fakturerade / Återlämnade" #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100 #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101 @@ -4151,7 +4151,7 @@ msgstr "Tillåt Alternativ Artikel" #: erpnext/stock/doctype/item_alternative/item_alternative.py:68 msgid "Allow Alternative Item must be checked on Item {0}" -msgstr "" +msgstr "Tillåt Alternativ Artikel måste vara vald för Artikel {0}" #. Label of the material_consumption (Check) field in DocType 'Manufacturing #. Settings' @@ -4490,13 +4490,13 @@ msgstr "Tillåt att denna artikel används i försäljning transaktioner." #. DocType 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Allow to edit stock UOM qty for Purchase documents" -msgstr "Tillåt att redigera Lager Enhet kvantitet för Inköp Dokument" +msgstr "Tillåt redigering av Lager Enhet kvantitet för Inköp" #. Label of the allow_to_edit_stock_uom_qty_for_sales (Check) field in DocType #. 'Stock Settings' #: erpnext/stock/doctype/stock_settings/stock_settings.json msgid "Allow to edit stock UOM qty for Sales documents" -msgstr "Tillåt att redigera Lager Enhet kvantitet för Försäljning Dokument" +msgstr "Tillåt redigering av Lager Enhet kvantitet för Försäljning" #. Label of the allow_to_edit_stock_uom_qty_for_stock_entry (Check) field in #. DocType 'Stock Settings' @@ -4543,7 +4543,7 @@ msgstr "Tillåtet att skapa Transaktioner med" #. Settings' #: erpnext/crm/doctype/crm_settings/crm_settings.json msgid "Allowed Users" -msgstr "" +msgstr "Tillåtna Användare" #: erpnext/accounts/doctype/party_link/party_link.py:27 msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only." @@ -5466,7 +5466,7 @@ msgstr "Tid Bokning med" #: erpnext/www/book_appointment/index.js:237 msgid "Appointment created successfully" -msgstr "" +msgstr "Tid Bokning Skapad" #: erpnext/crm/doctype/appointment/appointment.py:101 msgid "Appointment was created. But no lead was found. Please check the email to confirm" @@ -5512,11 +5512,11 @@ msgstr "Är du säker på att du vill ta bort alla demodata?" #: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:51 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:100 msgid "Are you sure you want to create Reposting Entries?" -msgstr "" +msgstr "Är du säker på att du vill skapa Ombokning Poster?" #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:66 msgid "Are you sure you want to create a Reposting Entry?" -msgstr "" +msgstr "Är du säker på att du vill skapa Ombokning Post?" #: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480 msgid "Are you sure you want to delete this Item?" @@ -5610,7 +5610,7 @@ msgstr "Eftersom det finns tillräckligt med Råmaterial erfordras inte Material #: erpnext/stock/doctype/stock_settings/stock_settings.py:250 msgid "As there is reserved stock, you cannot disable {0}." -msgstr "" +msgstr "Eftersom det finns reserverat lager, kan du inte inaktivera {0}." #: erpnext/stock/doctype/stock_settings/stock_settings.py:224 #: erpnext/stock/doctype/stock_settings/stock_settings.py:236 @@ -6201,7 +6201,7 @@ msgstr "Tilldela till Namn" #: erpnext/buying/doctype/purchase_order/purchase_order.js:593 #: erpnext/public/js/controllers/buying.js:555 msgid "Assigning {0} to {1} (row {2})" -msgstr "" +msgstr "Tilldelar {0} till {1} (rad {2})" #. Label of the filters_section (Section Break) field in DocType 'Service Level #. Agreement' @@ -6227,7 +6227,7 @@ msgstr "På Rad {0}: I Serie och Parti Paket {1} måste dokument status vara 1 o #: erpnext/accounts/services/internal_transfer.py:98 msgid "At Row {0}: The field {1} is mandatory for internal transfer" -msgstr "" +msgstr "På rad {0}: Fält {1} erfordras för intern överföring" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85 msgid "At least one account with exchange gain or loss is required" @@ -6260,7 +6260,7 @@ msgstr "Minst en av Försäljning eller Inköp måste väljas" #: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226 msgid "At least one raw material for Finished Good Item {0} should be customer provided." -msgstr "" +msgstr "Minst ett råmaterial för Färdig Artikel {0} ska tillhandahållas av kund." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:60 msgid "At least one raw material item must be present in the stock entry for the type {0}" @@ -6300,7 +6300,7 @@ msgstr "Rad {0}: Serie Nummer erfordras för Artikel {1}" #: erpnext/stock/services/serial_batch_bundle_service.py:498 msgid "At row {0}: Serial and Batch Bundle {1} has already been created. Please remove the values from the serial no or batch no fields." -msgstr "" +msgstr "På rad {0}: Serie och Parti Nummer Paket {1} har redan skapats. Ta bort värdena från för serie eller parti nummer fält." #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123 msgid "At row {0}: set Parent Row No for item {1}" @@ -6937,7 +6937,7 @@ msgstr "Stycklista 1" #: erpnext/manufacturing/doctype/bom/mapper.py:82 msgid "BOM 1 {0} and BOM 2 {1} should not be the same" -msgstr "" +msgstr "Stycklista 1 {0} och Stycklista 2 {1} ska inte vara lika" #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38 msgid "BOM 2" @@ -7195,7 +7195,7 @@ msgstr "Stycklista Rekursion: {1} kan inte vara överordnad eller underordnad ti #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81 msgid "BOM update is queued and may take a few minutes. Check {0} for progress." -msgstr "" +msgstr "Stycklista uppdatering är i kö och kan ta några minuter. Kontrollera {0} för framsteg." #: erpnext/manufacturing/doctype/bom/bom.py:1404 msgid "BOM {0} does not belong to Item {1}" @@ -7358,7 +7358,7 @@ msgstr "Balans Rapport Översikt" #: erpnext/accounts/report/balance_sheet/balance_sheet.py:284 msgid "Balance Sheet requires {0} to be synced to DuckDB" -msgstr "" +msgstr "Balans Rapport erfordrar att {0} synkroniseras med DuckDB" #: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13 msgid "Balance Stock Qty" @@ -7521,7 +7521,7 @@ msgstr "Bank Konto Typ" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:443 msgid "Bank Account {0} in Bank Transaction {1} is not matching with Bank Account {2}" -msgstr "" +msgstr "Bank Konto {0} i Bank Transaktion {1} stämmer inte med Bank Konto {2}" #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15 #: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20 @@ -8103,7 +8103,7 @@ msgstr "Parti Nummer erfordras" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3495 msgid "Batch No {0} does not exist" -msgstr "" +msgstr "Parti Nummer {0} finns inte" #: erpnext/stock/utils.py:625 msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead." @@ -8115,7 +8115,7 @@ msgstr "Parti nr {0} finns inte i {1} {2}, därför kan du inte returnera det mo #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:658 msgid "Batch No {0} of Item {1} has negative stock of quantity {2} in the warehouse {3}" -msgstr "" +msgstr "Parti Nummer {0} för Artikel {1} har negativt lager kvantitet på {2} på lager {3}" #. Label of the batch_no (Int) field in DocType 'BOM Update Batch' #: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json @@ -8184,7 +8184,7 @@ msgstr "Parti och Serie Nummer" #: erpnext/manufacturing/doctype/work_order/work_order.py:742 msgid "Batch not created for item {0} since it does not have a batch series." -msgstr "" +msgstr "Parti är inte skapad för Artikel {0} eftersom den inte har Parti Nummer." #. Description of the 'Automatically Create New Batch' (Check) field in DocType #. 'Item' @@ -8772,7 +8772,7 @@ msgstr "Bokförd Fast Tillgång" #: erpnext/accounts/services/gl_validator.py:143 msgid "Books have been closed until the period ending on {0}" -msgstr "" +msgstr "Bokföring är stängd fram till den period som slutar {0}" #. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory #. Dimension' @@ -9000,7 +9000,7 @@ msgstr "Budget kan inte tilldelas mot Grupp Konto {0}" #: erpnext/accounts/doctype/budget/budget.py:165 msgid "Budget cannot be assigned against {0}, as its Root Type is not of Income or Expense" -msgstr "" +msgstr "Budget kan inte tilldelas {0}, eftersom dess konto klass inte är av typ Intäkt eller Kostnad" #: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9 msgid "Budgets" @@ -9354,7 +9354,7 @@ msgstr "Beräknad Rabatt Avvikelse" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:95 msgid "Calculating arrival times" -msgstr "" +msgstr "Beräknar ankomst tider" #. Label of the section_break_11 (Section Break) field in DocType 'Supplier #. Scorecard Period' @@ -9572,7 +9572,7 @@ msgstr "Kan inte ändra värdering sätt, eftersom det finns transaktioner mot v #: erpnext/stock/doctype/stock_settings/stock_settings.py:191 msgid "Can't change the valuation method, as there are transactions against some items which do not have their own valuation method" -msgstr "" +msgstr "Kan inte ändra värdering sätt, eftersom det finns transaktioner mot vissa artiklar som inte har egen värdering sätt" #: erpnext/support/doctype/warranty_claim/warranty_claim.py:79 msgid "Cancel Material Visit {0} before cancelling this Warranty Claim" @@ -9651,7 +9651,7 @@ msgstr "Kan inte vara Fast Tillgång artikel när Lager Register är skapad." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92 #: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219 msgid "Cannot calculate arrival time as the driver address is missing." -msgstr "" +msgstr "Kan inte beräkna ankomst tid eftersom förare adress saknas." #: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117 msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}." @@ -9663,7 +9663,7 @@ msgstr "Kan inte annullera Kassa Stängning Post" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140 msgid "Cannot cancel Stock Reservation Entry {0}, as it has been used in the work order {1}. Please cancel the work order first or unreserve the stock" -msgstr "" +msgstr "Kan inte annullera Lager Reservation Post {0}, eftersom den har använts i arbetsorder {1}. Annullera arbetsorder först eller annullera reservation" #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275 msgid "Cannot cancel as processing of cancelled documents is pending." @@ -9715,7 +9715,7 @@ msgstr "Kan inte ändra Bolag Standard Valuta, eftersom det redan finns transakt #: erpnext/projects/doctype/task/task.py:146 msgid "Cannot complete task {0} as its dependent task {1} is not completed / cancelled." -msgstr "" +msgstr "Kan inte slutföra uppgift {0} eftersom dess beroende uppgift {1} inte är klar / annullerad." #: erpnext/accounts/doctype/cost_center/cost_center.py:61 msgid "Cannot convert Cost Center to ledger as it has child nodes" @@ -9752,7 +9752,7 @@ msgstr "Kan inte skapa bokföring poster mot inaktiverade konto: {0}" #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:146 msgid "Cannot create more Subcontracting Orders against the Purchase Order {0}." -msgstr "" +msgstr "Kan inte skapa fler Underleverantör Ordrar mot Inköp Order {0}." #: erpnext/controllers/sales_and_purchase_return.py:444 msgid "Cannot create return for consolidated invoice {0}." @@ -9831,7 +9831,7 @@ msgstr "Kan inte hämta valda rader för godkänd Betalning Begäran" #: erpnext/public/js/utils/barcode_scanner.js:62 msgid "Cannot find Item or Warehouse with this Barcode" -msgstr "Kan inte hitta Artikel eller Lager med denna Streckkod / QRkod" +msgstr "Kan inte hitta Artikel eller Lager med denna Streckkod" #: erpnext/public/js/utils/barcode_scanner.js:63 msgid "Cannot find Item with this Barcode" @@ -9847,7 +9847,7 @@ msgstr "Det går inte att slå samman {0} '{1}' till '{2}' eftersom båda har be #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125 msgid "Cannot optimize route as the driver address is missing." -msgstr "" +msgstr "Kan inte optimera rutt eftersom förar adress saknas." #: erpnext/manufacturing/doctype/work_order/services/status.py:41 msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}" @@ -9877,7 +9877,7 @@ msgstr "Kan inte hänvisa till rad nummer högre än eller lika med aktuell rad #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:626 msgid "Cannot reserve more than Allowed Qty {0} {1} for Item {2} against {3} {4}.

                    The Allowed Qty is calculated as follows:
                    • Actual Qty [Available Qty at Warehouse] = {5}
                    • Reserved Stock [Ignore current SRE] = {6}
                    • Available Qty To Reserve [Actual Qty - Reserved Stock] = {7}
                    • Voucher Qty [Voucher Item Qty] = {8}
                    • Delivered Qty [Qty delivered against the Voucher Item] = {9}
                    • Total Reserved Qty [Qty reserved against the Voucher Item] = {10}
                    • Allowed Qty [Minimum of (Available Qty To Reserve, (Voucher Qty - Delivered Qty - Total Reserved Qty))] = {11}
                    " -msgstr "" +msgstr "Kan inte reservera mer än Tillåten Kvantitet {0} {1} för Artikel {2} mot {3} {4}.

                    Tillåten Kvantitet beräknas enligt följande:
                    • Faktisk Kvantitet [Tillgänglig Kvantitet på Lager] = {5}
                    • Reserverad Lager [Ignorera Aktuell SRE] = {6}
                    • Tillgänglig Kvantitet att Reservera [Faktisk Kvantitet - Reserverat Lager] = {7}
                    • Verifikat Kvantitet [Verifikat Artikel Kvantitet] = {8}
                    • Levererad Kvantitet [Levererad Kvantitet mot Verifikat Artikel] = {9}
                    • Totalt Reserverad Kvantitet [Kvantitet Reserverat mot Verifikat Artikel] = {10}
                    • Tillåten Kvantitet [Minsta (Tillgänglig Kvantitet att Reservera, (Verifikat Kvantitet - Levererad Kvantitet - Total Reserverad Kvantitet))] = {11}
                    " #: erpnext/accounts/doctype/bank/bank.js:63 msgid "Cannot retrieve link token for update. Check Error Log for more information" @@ -9902,7 +9902,7 @@ msgstr "Kan inte välja avgifts typ som \"På föregående Rad Belopp\" eller \" #: erpnext/stock/doctype/item_alternative/item_alternative.py:36 msgid "Cannot set alternative item for the item {0}" -msgstr "" +msgstr "Kan inte ange alternativ artikel för artikel {0}" #: erpnext/selling/doctype/quotation/quotation.py:293 msgid "Cannot set as Lost as Sales Order is made." @@ -10332,7 +10332,7 @@ msgstr "Ange datum för nästa synkronisering" #: erpnext/selling/doctype/customer/customer.py:161 msgid "Changed customer name to '{0}' as '{1}' already exists." -msgstr "" +msgstr "Ändrade kund namn till '{0}' eftersom '{1}' redan finns." #: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:160 msgid "Changes in {0}" @@ -10622,7 +10622,7 @@ msgstr "Underordnad tabell är inte tillåten" #: erpnext/projects/doctype/task/task.py:319 msgid "Child Task exists for this Task. You cannot delete this Task." -msgstr "" +msgstr "Underordnad uppgift finns för denna uppgift. Du kan inte ta bort denna uppgift." #: erpnext/stock/doctype/warehouse/warehouse_tree.js:21 msgid "Child nodes can be only created under 'Group' type nodes" @@ -11802,11 +11802,11 @@ msgstr "Fältnamn för bolag länk som används för filtrering (valfritt - läm #: erpnext/setup/doctype/company/company.js:239 msgid "Company name does not match" -msgstr "" +msgstr "Bolag namn stämmer inte överens" #: erpnext/assets/doctype/asset/asset.py:330 msgid "Company of asset {0} and purchase document {1} does not match." -msgstr "" +msgstr "Bolag Tillgång {0} och Inköp Dokument {1} stämmer inte." #: erpnext/setup/doctype/employee/employee.py:164 msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled" @@ -11846,11 +11846,11 @@ msgstr "Bolag {0} finns inte" #: erpnext/setup/setup_wizard/operations/taxes_setup.py:14 msgid "Company {0} does not exist yet. Taxes setup aborted." -msgstr "" +msgstr "Bolag {0} finns inte ännu. Moms inställningar avbröts." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:579 msgid "Company {0} does not match with POS Profile Company {1}" -msgstr "" +msgstr "Bolag {0} stämmer inte med Kassa Profil Bolag {1}" #: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105 msgid "Company {0} is added more than once" @@ -12326,7 +12326,7 @@ msgstr "Förbrukad Kvantitet" #: erpnext/manufacturing/doctype/work_order/services/reservation.py:186 msgid "Consumed Qty {0} cannot be greater than Reserved Qty {1} for item {2}" -msgstr "" +msgstr "Förbrukad Kvantitet {0} kan inte vara högre än Reserverad Kvantitet {1} för artikel {2}" #. Label of the consumed_quantity (Data) field in DocType 'Asset Repair #. Consumed Item' @@ -13059,11 +13059,11 @@ msgstr "Resultat Enhet {0} kan inte användas för tilldelning eftersom det anv #: erpnext/assets/doctype/asset/asset.py:358 msgid "Cost Center {0} does not belong to Company {1}" -msgstr "" +msgstr "Resultat Enhet {0} tillhör inte {1}" #: erpnext/assets/doctype/asset/asset.py:365 msgid "Cost Center {0} is a group cost center and group cost centers cannot be used in transactions" -msgstr "" +msgstr "Resultat Enhet {0} är grupp resultat enhet och grupp resultat enhet kan inte användas i transaktioner" #: erpnext/accounts/report/financial_statements.py:685 msgid "Cost Center: {0} does not exist" @@ -13188,7 +13188,7 @@ msgstr "Kostnadsberäkning och Fakturering" #: erpnext/projects/doctype/project/project.js:140 msgid "Costing and Billing fields have been updated" -msgstr "" +msgstr "Kostnad och Fakturering fält är uppdaterade" #: erpnext/setup/demo.py:78 msgid "Could Not Delete Demo Data" @@ -13217,7 +13217,7 @@ msgstr "Kunde inte hitta lämplig skift som stämmer med skillnaden: {0}" #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46 #: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50 msgid "Could not find path for {0}" -msgstr "" +msgstr "Kunde inte hitta sökväg för {0}" #: banking/src/components/features/BankStatementImporter/PDF/PDFTableEditor.tsx:101 msgid "Could not re-extract the table." @@ -14342,7 +14342,7 @@ msgstr "Aktuell Stycklista" #: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80 msgid "Current BOM and New BOM cannot be the same" -msgstr "" +msgstr "Aktuell Stycklista och Ny Stycklista kan inte vara samma" #. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate #. Revaluation Account' @@ -17066,11 +17066,11 @@ msgstr "Differens Konto i Artikel Inställningar" #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:155 msgid "Difference Account must be an Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry" -msgstr "" +msgstr "Differens konto måste vara Tillgång/Skuld (Tillfällig Öppning) konto typ, eftersom denna Lager Post är Öppning Post" #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985 msgid "Difference Account must be an Asset/Liability type account, since this Stock Reconciliation is an Opening Entry" -msgstr "" +msgstr "Differens Konto måste vara Tillgång / Skuld konto typ, eftersom denna Inventering är Öppning Post" #. Label of the difference_amount (Currency) field in DocType 'Payment #. Reconciliation Allocation' @@ -17316,7 +17316,7 @@ msgstr "Inaktiverade artiklar kan inte väljas i någon transaktion." #: erpnext/accounts/services/internal_transfer.py:120 msgid "Disabled pricing rules since this {0} is an internal transfer" -msgstr "" +msgstr "Inaktiverade Prissättning Regler eftersom detta {0} är intern överföring" #. Description of the 'Disabled' (Check) field in DocType 'Supplier' #: erpnext/buying/doctype/supplier/supplier.json @@ -17325,7 +17325,7 @@ msgstr "Leverantörer med inaktiverad status visas inte vid valet i nya transakt #: erpnext/accounts/services/internal_transfer.py:136 msgid "Disabled tax included prices since this {0} is an internal transfer" -msgstr "" +msgstr "Inaktiverade Priser Inklusive Moms eftersom detta {0} är intern överföring" #: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:82 msgid "Disabled template must not be default template" @@ -17576,7 +17576,7 @@ msgstr "Rabatt måste vara lägre än 100%" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:3090 msgid "Discount of {0} applied as per Payment Term" -msgstr "" +msgstr "Rabatt {0} tillämpad enligt Betalning Villkor" #. Label of the section_break_18 (Section Break) field in DocType 'Pricing #. Rule' @@ -17941,7 +17941,7 @@ msgstr "Vill du godkänna lagerpost?" #: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50 #: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22 msgid "DocType can be one of {0}" -msgstr "" +msgstr "DocType kan vara en av {0}" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182 #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:458 @@ -18666,7 +18666,7 @@ msgstr "E-post verifiering misslyckades." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20 msgid "Emails queued" -msgstr "" +msgstr "E-post i Kö" #. Label of the emergency_contact_details (Section Break) field in DocType #. 'Employee' @@ -18945,7 +18945,7 @@ msgstr "Aktivera Europeisk Åtkomst" #. 'CRM Settings' #: erpnext/crm/doctype/crm_settings/crm_settings.json msgid "Enable Frappe CRM Data Synchronization" -msgstr "" +msgstr "Aktivera Säljstöd Data Synkronisering" #. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts #. Settings' @@ -19404,7 +19404,7 @@ msgstr "Ange {0} belopp." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:170 msgid "Enter {0} name." -msgstr "" +msgstr "Ange {0} namn." #: erpnext/setup/setup_wizard/data/industry_type.txt:22 msgid "Entertainment & Leisure" @@ -19503,7 +19503,7 @@ msgstr "Fel uppstod vid ombokning av artikel värdering" #: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175 msgid "Error: This asset already has {0} depreciation periods booked. The `depreciation start` date must be at least {1} periods after the `available for use` date. Please correct the dates accordingly." -msgstr "" +msgstr "Fel: Denna tillgång har redan {0} avskrivningsperioder bokade. Avskrivning start datum måste vara minst {1} perioder efter datum för \"tillgänglig för användning\". Korrigera datumen därefter." #: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:93 msgid "Error: {0}" @@ -19511,7 +19511,7 @@ msgstr "Fel: {0}" #: erpnext/accounts/doctype/payment_entry/payment_entry.js:980 msgid "Error: {0} is a mandatory field" -msgstr "" +msgstr "Fel: {0} är erfordrad fält" #. Label of the errors_notification_section (Section Break) field in DocType #. 'Stock Reposting Settings' @@ -20203,7 +20203,7 @@ msgstr "Misslyckade Poster" #: erpnext/utilities/doctype/video_settings/video_settings.py:35 msgid "Failed to authenticate the API key. Please check the error logs." -msgstr "" +msgstr "Misslyckades med att autentisera API nyckel. Kontrollera fellogg." #: erpnext/setup/setup_wizard/setup_wizard.py:37 #: erpnext/setup/setup_wizard/setup_wizard.py:38 @@ -21182,11 +21182,11 @@ msgstr "För Arbetsorder" #: erpnext/controllers/status_updater.py:292 msgid "For an item {0}, quantity must be a negative number" -msgstr "" +msgstr "För Artikel {0} kvantitet måste vara negativt tal" #: erpnext/controllers/status_updater.py:289 msgid "For an item {0}, quantity must be a positive number" -msgstr "" +msgstr "För Artikel {0} kvantitet måste vara positivt tal" #. Description of the 'Income Account' (Link) field in DocType 'Dunning' #: erpnext/accounts/doctype/dunning/dunning.json @@ -21220,11 +21220,11 @@ msgstr "För Enskild Leverantör" #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:379 msgid "For item {0}, only {1} assets have been created or linked to {2}. Please create or link {3} more assets with the respective document." -msgstr "" +msgstr "För artikel {0}, endast {1} tillgångar har skapats eller länkats till {2}. Skapa eller länka {3} fler tillgångar med respektive dokument." #: erpnext/controllers/status_updater.py:302 msgid "For item {0}, rate must be a positive number. To allow negative rates, enable {1} in {2}" -msgstr "" +msgstr "För Artikel {0} pris måste vara positiv tal. Att tillåta negativa priser, aktivera {1} i {2}" #. Description of the 'Do not fetch incoming rate from Serial No' (Check) field #. in DocType 'Stock Reposting Settings' @@ -21238,7 +21238,7 @@ msgstr "För åtgärd {0} på rad {1}, lägg till råmaterial eller ange Styckli #: erpnext/manufacturing/doctype/work_order/mapper.py:379 msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity ({2})" -msgstr "" +msgstr "För åtgärd {0}: Kvantitet ({1}) kan inte vara högre än pågående kvantitet ({2})" #: erpnext/projects/doctype/project/project.js:208 msgid "For project - {0}, update your status" @@ -21284,7 +21284,7 @@ msgstr "För kundernas bekvämlighet kan dessa koder användas i utskriftsformat #: erpnext/stock/serial_batch_bundle.py:1234 msgid "For the item {0}, the Available qty {1} is less than the Required Qty {2} in the warehouse {3}. Please add sufficient qty in the warehouse." -msgstr "" +msgstr "För artikel {0} är Tillgänglig Kvantitet {1} är lägre än Begärd Kvantitet {2} på lager {3}. Lägg till tillräcklig kvantitet på lager." #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:893 msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}." @@ -21387,11 +21387,11 @@ msgstr "Säljstöd" #. Name of a DocType #: erpnext/crm/doctype/frappe_crm_allowed_user/frappe_crm_allowed_user.json msgid "Frappe CRM Allowed User" -msgstr "" +msgstr "Säljstöd Tillåten Användare" #: erpnext/crm/frappe_crm_api.py:168 msgid "Frappe CRM data synchronization is not enabled on ERPNext. Contact System Manager of ERPNext." -msgstr "" +msgstr "Säljstöd data synkronisering är inte aktiverad i Affärssystem. Kontakta Systemansvarig." #: erpnext/setup/install.py:232 msgid "Frappe School" @@ -22063,7 +22063,7 @@ msgstr "Bokföring Register kommentar längd" #: erpnext/accounts/report/general_ledger/general_ledger.py:829 msgid "General Ledger requires {0} to be synced to DuckDB" -msgstr "" +msgstr "Bokföring Register erfordrar att {0} synkroniseras med DuckDB" #. Label of the gs (Section Break) field in DocType 'Item Group' #: erpnext/setup/doctype/item_group/item_group.json @@ -24104,7 +24104,7 @@ msgstr "Importera Fakturor" #. Import' #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json msgid "Import MT940 Format" -msgstr "" +msgstr "Importera MT940 Format" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144 msgid "Import Successful" @@ -25501,7 +25501,7 @@ msgstr "Ogiltig Lager" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:460 msgid "Invalid amount in accounting entries of {0} {1} for Account {2}: {3}" -msgstr "" +msgstr "Ogiltigt belopp i bokföring poster för {0} {1} för Konto {2}: {3}" #: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312 msgid "Invalid condition expression" @@ -27852,7 +27852,7 @@ msgstr "Artikel {0} kan inte skapas order för mer än {1} mot Ramavtal Order {2 #: erpnext/stock/services/internal_transfer.py:104 msgid "Item {0} cannot be received in more than {1} qty against the {2} {3}" -msgstr "" +msgstr "Artikel {0} kan inte tas emot i högre kvantitet än {1} mot {2} {3}" #: erpnext/assets/doctype/asset/asset.py:343 #: erpnext/stock/doctype/item/item.py:693 @@ -27898,7 +27898,7 @@ msgstr "Artikel {0} ignorerad eftersom det inte är Lager Artikel" #: erpnext/stock/get_item_details.py:359 msgid "Item {0} is a template, please select one of its variants" -msgstr "" +msgstr "Artikel {0} är mall. Välj en av dess varianter" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614 msgid "Item {0} is already reserved/delivered against Sales Order {1}." @@ -28016,7 +28016,7 @@ msgstr "Artikel: {0} finns inte i system" #: erpnext/manufacturing/doctype/bom/bom.py:970 msgid "Item: {0} with Stock UOM: {1} cannot have fractional process loss qty as UOM {2} is a whole number." -msgstr "" +msgstr "Artikel: {0} med Lager Enhet: {1} kan inte ha bråkdel av process förlust kvantitet eftersom enhet {2} är heltal." #. Label of a Card Break in the Buying Workspace #. Label of a Workspace Sidebar Item @@ -28223,7 +28223,7 @@ msgstr "Jobbkort {0} klar" #: erpnext/manufacturing/doctype/job_card/job_card.py:1416 msgid "Job Card {0}: As per the sequence of the operations in the work order {1}, complete the operation {2} before the operation {3}." -msgstr "" +msgstr "Jobbkort {0}: Enligt ordning för åtgärder i arbetsorder {1}, slutför åtgärd {2} före åtgärd {3}." #. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation' #: erpnext/manufacturing/doctype/workstation/workstation.json @@ -28298,11 +28298,11 @@ msgstr "Jobbkort {0} skapad" #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106 msgid "Job paused" -msgstr "" +msgstr "Jobb Pausad" #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64 msgid "Job started" -msgstr "" +msgstr "Jobb Startad" #: erpnext/utilities/bulk_transaction.py:72 msgid "Job: {0} has been triggered for processing failed transactions" @@ -28651,7 +28651,7 @@ msgstr "Förra Bokföring År" #: erpnext/accounts/doctype/account/account.py:673 msgid "Last GL Entry update was done {0}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying." -msgstr "" +msgstr "Senaste uppdatering av Bokföring Register post gjordes {0}. Denna åtgärd är inte tillåten medan system aktivt används. Vänta 5 minuter innan du försöker igen." #. Label of the last_integration_date (Date) field in DocType 'Bank Account' #: erpnext/accounts/doctype/bank_account/bank_account.json @@ -29169,7 +29169,7 @@ msgstr "Länkning med Kund Misslyckades. Var god försök igen." #: erpnext/selling/doctype/customer/customer.js:282 msgid "Linking to Supplier failed. Please try again." -msgstr "" +msgstr "Länkning med Leverantör Misslyckades. Var god försök igen." #: erpnext/accounts/report/financial_ratios/financial_ratios.js:55 #: erpnext/accounts/report/financial_ratios/financial_ratios.py:152 @@ -30737,7 +30737,7 @@ msgstr "Material mottagen mot {0} {1}" #: erpnext/manufacturing/doctype/job_card/job_card.py:189 #: erpnext/manufacturing/doctype/job_card/job_card.py:903 msgid "Materials need to be transferred to the work in progress warehouse for the job card {0}" -msgstr "" +msgstr "Material måste överföras till Pågående Arbete Lager för Jobbkort {0}" #. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule' #. Label of the max_amount (Currency) field in DocType 'Promotional Scheme @@ -31624,7 +31624,7 @@ msgstr "Flera Konto (Journal Mall)" #: erpnext/selling/doctype/customer/customer.py:443 msgid "Multiple Loyalty Programs found for Customer {0}. Please select manually." -msgstr "" +msgstr "Flera Lojalitet Program hittades för Kund {0}. Välj manuellt." #: erpnext/accounts/doctype/sales_invoice/services/pos.py:253 msgid "Multiple POS Opening Entry" @@ -31632,7 +31632,7 @@ msgstr "Flera Kassa Öppning Poster" #: erpnext/accounts/doctype/pricing_rule/utils.py:345 msgid "Multiple Price Rules exist with same criteria, please resolve conflict by assigning priority. Price Rules: {0}" -msgstr "" +msgstr "Flera Pris Regler finns med samma villkor, lös konflikter genom att tilldela prioritet. Pris Regler: {0}" #. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty #. Program' @@ -32295,7 +32295,7 @@ msgstr "Ny Arbetsplats" #: erpnext/selling/doctype/customer/customer.py:408 msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be at least {0}" -msgstr "" +msgstr "Ny Kredit Gräns är lägre än aktuell utestående belopp för kund. Kredit Gräns måste vara minst {0}" #. Description of the 'Bill Even If Previous Invoice Unpaid' (Check) field in #. DocType 'Subscription' @@ -32305,7 +32305,7 @@ msgstr "Nya fakturor skapas enligt schema även om aktuella fakturor är obetald #: erpnext/support/doctype/issue/issue.js:126 msgid "New issue created: {0}" -msgstr "" +msgstr "Ny ärende skapad: {0}" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261 msgid "New release date should be in the future" @@ -32389,7 +32389,7 @@ msgstr "Inga Kunder hittades med valda alternativ." #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146 msgid "No Delivery Note selected for Customer {0}" -msgstr "" +msgstr "Ingen Försäljning Följesedel vald för Kund {0}" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:767 msgid "No DocTypes in To Delete list. Please generate or import the list before submitting." @@ -32554,7 +32554,7 @@ msgstr "Inga kontakter med e-post hittades." #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164 msgid "No customers found with selected options." -msgstr "" +msgstr "Inga kunder hittades med valda alternativ." #: erpnext/selling/page/sales_funnel/sales_funnel.js:137 msgid "No data for this period" @@ -32775,7 +32775,7 @@ msgstr "Ingen post hittad" #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22 #: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39 msgid "No records for these settings." -msgstr "" +msgstr "Inga poster för dessa inställningar." #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:773 msgid "No records found in Allocation table" @@ -33274,7 +33274,7 @@ msgstr "Numeriska Värden" #: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88 msgid "Numero has not been set in the XML file" -msgstr "" +msgstr "Nummer är inte angiven i XML fil" #. Option for the 'Blood Group' (Select) field in DocType 'Employee' #: erpnext/setup/doctype/employee/employee.json @@ -33450,11 +33450,11 @@ msgstr "Om vald, kommer faktura spärras tills angiven datum" #: erpnext/manufacturing/doctype/work_order/work_order.js:763 msgid "Once the Work Order is Closed, it cannot be resumed." -msgstr "" +msgstr "När arbetsordern är stängd kan den inte återupptas." #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39 msgid "One customer can be part of only a single Loyalty Program." -msgstr "" +msgstr "En kund kan endast vara del av ett enda Lojalitet Program." #. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward #. Order' @@ -34051,7 +34051,7 @@ msgstr "Åtgärd {0} tillhör inte Arbetsorder {1}" #: erpnext/manufacturing/doctype/workstation/workstation.py:453 msgid "Operation {0} is longer than any available working hours in workstation {1}, break down the operation into multiple operations" -msgstr "" +msgstr "Åtgärd {0} är längre än alla tillgängliga arbetstider för arbetsplats {1}, dela upp åtgärd i flera åtgärder" #. Label of the operations (Table) field in DocType 'BOM' #. Label of the operations_section_section (Section Break) field in DocType @@ -34238,7 +34238,7 @@ msgstr "Optimera Sökväg" #: erpnext/stock/doctype/delivery_trip/delivery_trip.js:128 msgid "Optimizing route" -msgstr "" +msgstr "Optimerar rutt" #: erpnext/manufacturing/doctype/work_order/work_order.js:1029 msgid "Optional. Select a specific manufacture entry to reverse." @@ -34699,7 +34699,7 @@ msgstr "Över Avdrag" #: erpnext/accounts/services/billing_validation.py:56 msgid "Overbilling of {0} ignored because you have {1} role." -msgstr "" +msgstr "Överfakturering av {0} ignoreras eftersom du har {1} roll." #: erpnext/controllers/status_updater.py:519 msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role." @@ -34821,7 +34821,7 @@ msgstr "Period Stängning Verifikat" #. Label of the pcv_job_timeout (Int) field in DocType 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "PCV Job Timeout (seconds)" -msgstr "" +msgstr "Period Stängning Verifikat Jobb Tidsgräns (sekunder)" #: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35 msgid "PCV Paused" @@ -34969,7 +34969,7 @@ msgstr "Kassa Faktura är inte godkänd" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130 msgid "POS Invoice isn't created by user {0}" -msgstr "" +msgstr "Kassa Faktura skapades inte av {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:208 msgid "POS Invoice should have the field {0} checked." @@ -35093,7 +35093,7 @@ msgstr "Kassa Profil Användare" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189 msgid "POS Profile doesn't match {0}" -msgstr "" +msgstr "Kassa Profil stämmer inte med {0}" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:210 msgid "POS Profile is mandatory to mark this invoice as POS Transaction." @@ -35105,19 +35105,19 @@ msgstr "Kassa Profil {0} kan inte inaktiveras eftersom det finns pågående Kass #: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:62 msgid "POS Profile {0} contains Mode of Payment {1}. Please remove them to disable this mode." -msgstr "" +msgstr "Kassa Profil {0} innehåller Betalning Sätt {1}. Ta dem bort för att inaktivera detta sätt." #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58 msgid "POS Profile {0} does not belong to company {1}" -msgstr "" +msgstr "Kassa Profil {0} tillhör inte {1}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47 msgid "POS Profile {0} does not exist." -msgstr "" +msgstr "Kassa Profil {0} finns inte." #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54 msgid "POS Profile {0} is disabled." -msgstr "" +msgstr "Kassa Profil {0} är inaktiverad." #. Name of a report #: erpnext/accounts/report/pos_register/pos_register.json @@ -36065,7 +36065,7 @@ msgstr "Parti erfodrdras" #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69 msgid "Party is required to create a payment entry." -msgstr "" +msgstr "Parti erfordras för att skapa kontering post." #: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66 msgid "Party type is required to create a payment entry." @@ -36772,7 +36772,7 @@ msgstr "Betalning Typ" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:624 msgid "Payment Type must be one of Receive, Pay, or Internal Transfer" -msgstr "" +msgstr "Betalning Typ måste vara av typ: Inbetalning, Utbetalning eller Intern Överföring" #. Label of the payment_url (Data) field in DocType 'Payment Request' #: erpnext/accounts/doctype/payment_request/payment_request.json @@ -37729,7 +37729,7 @@ msgstr "Lägg till konto för Bank Post regel." #: erpnext/public/js/utils/serial_no_batch_selector.js:663 msgid "Please add at least one Serial No / Batch No" -msgstr "" +msgstr "Lägg till minst en Serie / Parti Nummer" #: erpnext/stock/doctype/item/item.js:914 msgid "Please add at least one row in Item Defaults with a Company before setting opening stock." @@ -37737,7 +37737,7 @@ msgstr "Lägg till minst en rad i Artikel Inställningar med Bolag innan öppnin #: erpnext/crm/doctype/crm_settings/crm_settings.py:51 msgid "Please add at least one user on Allowed Users to allow Data Synchronization from Frappe CRM site." -msgstr "" +msgstr "Lägg till minst en användare under Tillåtna Användare för att tillåta datasynkronisering från Säljstöd." #: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84 msgid "Please add the Bank Account column" @@ -37829,7 +37829,7 @@ msgstr "Konfigurera konton för Bank Post regel." #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:345 msgid "Please contact any of the following users for this transaction." -msgstr "" +msgstr "Kontakta någon av följande användare för denna transaktion." #: erpnext/selling/doctype/customer/customer.py:534 msgid "Please contact any of the following users to extend the credit limits for {0}: {1}" @@ -37901,7 +37901,7 @@ msgstr "Aktivera {0} i {1}." #: erpnext/controllers/selling_controller.py:872 msgid "Please enable {0} in {1} to allow same item in multiple rows" -msgstr "" +msgstr "Aktivera {0} i {1} för att tillåta samma artikel i flera rader" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:378 msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account." @@ -37913,11 +37913,11 @@ msgstr "Kontrollera att {0} konto {1} är Skuld Konto. Ändra Konto Typ till Sku #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:758 msgid "Please ensure {0} account is a Balance Sheet account." -msgstr "" +msgstr "Se till att {0} konto är Balans Rapport Konto." #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:768 msgid "Please ensure {0} account {1} is a Receivable account." -msgstr "" +msgstr "Se till att {0} konto {1} är Fordring Konto." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:140 msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}" @@ -38124,7 +38124,7 @@ msgstr "Vänligen generera Ta Bort lista innan godkännade" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67 msgid "Please import accounts against parent company or enable {0} in company master." -msgstr "" +msgstr "Importera konto mot moderbolag eller aktivera {0} i bolag inställningar." #: erpnext/setup/doctype/employee/employee.py:291 msgid "Please make sure the employees above report to another Active employee." @@ -38222,7 +38222,7 @@ msgstr "Välj Bolag" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139 #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76 msgid "Please select Company and Posting Date to get entries" -msgstr "" +msgstr "Välj Bolag och Registrering Datum för att hämta poster" #: erpnext/accounts/doctype/journal_entry/journal_entry.js:435 #: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28 @@ -38255,7 +38255,7 @@ msgstr "Välj Artikel Kod" #: erpnext/selling/doctype/sales_order/sales_order.js:1756 msgid "Please select Items from the Table" -msgstr "" +msgstr "Välj artiklar från Tabell" #: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55 msgid "Please select Maintenance Status as Completed or remove Completion Date" @@ -38404,7 +38404,7 @@ msgstr "Välj rad att skapa Ombokning Post" #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146 msgid "Please select a supplier" -msgstr "" +msgstr "Välj Leverantör" #: erpnext/accounts/report/purchase_register/purchase_register.py:37 msgid "Please select a supplier for fetching payments." @@ -38416,7 +38416,7 @@ msgstr "Välj giltig Inköp Order som är konfigurerad för Underleverantör." #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200 msgid "Please select a valid document type." -msgstr "" +msgstr "Välj giltig dokument typ." #: erpnext/selling/doctype/quotation/quotation.js:245 msgid "Please select a value for {0} quotation_to {1}" @@ -38436,7 +38436,7 @@ msgstr "Välj minst ett filter: Artikel Kod, Parti eller Serie Nummer." #: erpnext/selling/doctype/sales_order/sales_order.js:1368 msgid "Please select at least one item to continue" -msgstr "" +msgstr "Välj minst en artikel för att fortsätta" #: erpnext/buying/doctype/purchase_order/services/drop_ship.py:17 msgid "Please select at least one item to update delivered quantity." @@ -38444,7 +38444,7 @@ msgstr "Välj minst en artikel för att uppdatera levererad kvantitet." #: erpnext/manufacturing/doctype/work_order/work_order.js:392 msgid "Please select at least one operation to create Job Card" -msgstr "" +msgstr "Välj minst en åtgärd för att skapa Jobbkort" #: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33 msgid "Please select at least one row to fix" @@ -38510,7 +38510,7 @@ msgstr "Välj Bolag" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65 msgid "Please select the Multiple Tier Program type for more than one collection rule." -msgstr "" +msgstr "Välj Fler Nivå Program typ för mer än en inlösning regel." #: erpnext/stock/doctype/item/item.js:433 msgid "Please select the Warehouse first" @@ -38572,7 +38572,7 @@ msgstr "Ange Konto i Lager {0} eller Standard Lager Konto i Bolag {1}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333 msgid "Please set Accounting Dimension {0} in {1}" -msgstr "" +msgstr "Ange Bokföring Dimension {0} i {1}" #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23 #: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34 @@ -38614,7 +38614,7 @@ msgstr "Ange Fast Tillgång Konto för Tillgång Kategori {0}" #: erpnext/accounts/doctype/purchase_invoice/services/expense_account.py:151 msgid "Please set Fixed Asset Account in {0} against {1}." -msgstr "" +msgstr "Ange Fast Tillgång Konto i {0} mot {1}." #: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:296 msgid "Please set Parent Row No for item {0}" @@ -38651,7 +38651,7 @@ msgstr "Ange Bolag" #: erpnext/assets/doctype/asset/asset.py:374 msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {0}" -msgstr "" +msgstr "Ange Resultat Enhet för Tillgång eller ange Resultat Enhet för Tillgång Avskrivningar för {0}" #: erpnext/stock/doctype/item/item.py:339 #: erpnext/stock/doctype/item/item.py:1623 @@ -38705,11 +38705,11 @@ msgstr "Ange Standard Kassa eller Bank Konto i Betalning Sätt {0}" #: erpnext/accounts/doctype/pos_profile/pos_profile.py:207 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:367 msgid "Please set default Cash or Bank account in Mode of Payments {0}" -msgstr "" +msgstr "Ange Standard Kassa eller Bank Konto i Betalning Sätt {0}" #: erpnext/accounts/utils.py:2568 msgid "Please set default Exchange Gain/Loss Account in Company {0}" -msgstr "" +msgstr "Ange Standard Valutaväxling Resultat Konto för {0}" #: erpnext/assets/doctype/asset_repair/services/gl_composer.py:92 msgid "Please set default Expense Account in Company {0}" @@ -38848,11 +38848,11 @@ msgstr "Ange från/till intervall" #: erpnext/public/js/controllers/transaction.js:2634 msgid "Please specify {0}. It is needed to fetch Item Details." -msgstr "" +msgstr "Ange {0}. Behövs för att hämta Artikel Detaljer." #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:142 msgid "Please submit Purchase Order {0} before proceeding." -msgstr "" +msgstr "Godkänn Inköp Order {0} innan du fortsätter." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:276 msgid "Please try again in an hour." @@ -39086,7 +39086,7 @@ msgstr "Registrering Datum" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:263 #: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:146 msgid "Posting Date cannot be a future date" -msgstr "" +msgstr "Registrering Datum kan inte vara framtida datum" #. Label of the exchange_gain_loss_posting_date (Select) field in DocType #. 'Accounts Settings' @@ -39289,7 +39289,7 @@ msgstr "Förbetalda Kostnader" #: erpnext/accounts/report/general_ledger/general_ledger.py:682 msgid "Presentation Currency cannot be {0}, when {1} is enabled." -msgstr "" +msgstr "Presentation Valuta kan inte vara {0}, när {1} är aktiverad." #: erpnext/setup/setup_wizard/data/designation.txt:24 msgid "President" @@ -39963,7 +39963,7 @@ msgstr "Prioriteringar" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61 msgid "Priority cannot be less than 1." -msgstr "" +msgstr "Prioritet kan inte vara lägre än 1." #: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764 msgid "Priority has been changed to {0}." @@ -40529,7 +40529,7 @@ msgstr "Resultat Rapport" #: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:215 msgid "Profit and Loss Statement requires {0} to be synced to DuckDB" -msgstr "" +msgstr "Resultat Rapport erfordrar att {0} synkroniseras med DuckDB" #. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting #. Statements' @@ -41288,7 +41288,7 @@ msgstr "Inköp Order Erfodras" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:466 msgid "Purchase Order Required for item {0}" -msgstr "" +msgstr "Inköp Order Erfordras för Artikel {0}" #. Name of a report #. Label of a chart in the Buying Workspace @@ -41348,7 +41348,7 @@ msgstr "Inköp Ordrar att Ta Emot" #: erpnext/controllers/accounts_controller.py:1236 msgid "Purchase Orders {0} are unlinked" -msgstr "" +msgstr "Inköp Ordrar {0} är avlänkade" #: erpnext/stock/report/item_prices/item_prices.py:59 msgid "Purchase Price List" @@ -41438,7 +41438,7 @@ msgstr "Inköp Följesedel Erfodras" #: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488 msgid "Purchase Receipt Required for item {0}" -msgstr "" +msgstr "Inköp Följesedel Erfordras för artikel {0}" #. Label of a Link in the Buying Workspace #. Name of a report @@ -41458,7 +41458,7 @@ msgstr "Inköp Följesedel Statistik " #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356 msgid "Purchase Receipt does not have any Item for which Retain Sample is enabled." -msgstr "" +msgstr "Inköp Följesedel innehåller inga artiklar för vilka \"Behåll Prov\" är aktiverad." #: erpnext/subcontracting/doctype/subcontracting_receipt/mapper.py:135 msgid "Purchase Receipt {0} created." @@ -42489,7 +42489,7 @@ msgstr "Kvantitet att Skanna" #: erpnext/stock/doctype/stock_entry/stock_entry.py:910 msgid "Quantity {0} should not be greater than allowed quantity {1}" -msgstr "" +msgstr "Kvantitet {0} ska inte vara högre än tillåten kvantitet {1}" #. Name of a UOM #: erpnext/setup/setup_wizard/data/uom_data.json @@ -42941,7 +42941,7 @@ msgstr "Moms Sats" #: erpnext/accounts/services/child_item_update.py:515 msgid "Rate of '{0}' items cannot be changed" -msgstr "" +msgstr "Priser för '{0}' artiklar kan inte ändras" #. Label of the rate_of_depreciation (Percent) field in DocType 'Asset #. Depreciation Schedule' @@ -43680,7 +43680,7 @@ msgstr "Registrera överföring mellan två bank konto" #: erpnext/stock/doctype/item_alternative/item_alternative.py:84 msgid "Record already exists for the item {0}" -msgstr "" +msgstr "Post finns redan för artikel {0}" #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:513 #: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:519 @@ -44105,7 +44105,7 @@ msgstr "Avvisad Lager" #: erpnext/public/js/utils/serial_no_batch_selector.js:671 msgid "Rejected Warehouse and Accepted Warehouse cannot be the same." -msgstr "" +msgstr "Avvisad Lager och Accepterad Lager kan inte vara samma." #: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23 #: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14 @@ -44534,11 +44534,11 @@ msgstr "Ombokning av Data Fil" #: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:47 #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:96 msgid "Reposting Entries will change the value of accounts Stock In Hand, and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." -msgstr "" +msgstr "Ombokning Poster ändrar värde av Lager och Lager Kostnader i Prov Saldo rapport och ändrar även saldo värde i Lager Saldo rapport." #: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:62 msgid "Reposting Entry will change the value of accounts Stock In Hand and Stock Expenses in the Trial Balance report and will also change the Balance Value in the Stock Balance report." -msgstr "" +msgstr "Ombokning Post ändrar värde av Lager och Lager Kostnader i Prov Saldo rapport och ändrar även saldo värde i Lager Saldo rapport." #. Label of the reposting_info_section (Section Break) field in DocType 'Repost #. Item Valuation' @@ -44925,7 +44925,7 @@ msgstr "Reserv Lager" #: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:178 msgid "Reserve Warehouse must be different from Supplier Warehouse for Supplied Item {0}." -msgstr "" +msgstr "Reserv Lager måste vara annat än Leverantör Lager för Levererad Artikel {0}." #: erpnext/manufacturing/doctype/production_plan/production_plan.js:287 msgid "Reserve for Raw Materials" @@ -45528,7 +45528,7 @@ msgstr "Retur" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:359 msgid "Revaluation Journal: {0}" -msgstr "" +msgstr "Omvärdering Journal: {0}" #: erpnext/accounts/report/accounts_payable/accounts_payable.js:151 #: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113 @@ -45734,7 +45734,7 @@ msgstr "Roll Godkänd att Åsidosätta Stopp Åtgärd" #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Role to Notify on Depreciation Failure" -msgstr "Roll att meddela vid avskrivning fel" +msgstr "Roll att avisera vid Avskrivning Fel" #. Label of the role_allowed_for_frozen_entries (Link) field in DocType #. 'Company' @@ -46044,7 +46044,7 @@ msgstr "Rad # {0}: Parti Nummer {1} är redan vald." #: erpnext/controllers/subcontracting_inward_controller.py:443 msgid "Row #{0}: Batch No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)." -msgstr "" +msgstr "Rad #{0}: Parti Nummer {1} finns inte i länkad Intern Underleverantör Order. Välj giltiga Parti Nummer." #: erpnext/accounts/doctype/payment_entry/payment_entry.py:880 msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}" @@ -46136,7 +46136,7 @@ msgstr "Rad # {0}: Kumulativ tröskel får inte vara lägre än Enskild Transakt #: erpnext/assets/doctype/asset_category/asset_category.py:66 msgid "Row #{0}: Currency of {1} - {2} does not match company currency." -msgstr "" +msgstr "Rad #{0}: Valuta för {1} - {2} stämmer inte med bolag valuta." #: erpnext/controllers/subcontracting_inward_controller.py:91 msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times." @@ -46190,7 +46190,7 @@ msgstr "Rad # {0}: Duplikat Post i Referenser {1} {2}" #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113 msgid "Row #{0}: Either Party ID or Party Name is required" -msgstr "" +msgstr "Rad #{0}: Antingen Parti ID eller Parti Namn erfordras" #: erpnext/selling/doctype/sales_order/sales_order.py:270 msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date" @@ -46206,7 +46206,7 @@ msgstr "Rad #{0}: Kostnad konto {1} är inte giltigt för inköp faktura {2}. En #: erpnext/assets/doctype/asset/asset.py:421 msgid "Row #{0}: Finance Book should not be empty since you're using multiple." -msgstr "" +msgstr "Rad #{0}: Bokslut Register ska inte vara tom eftersom du använder flera." #: erpnext/selling/doctype/sales_order/services/subcontracting.py:40 msgid "Row #{0}: Finished Good Item Qty can not be zero" @@ -46214,7 +46214,7 @@ msgstr "Rad # {0}: Färdig Artikel Kvantitet kan inte vara noll" #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:39 msgid "Row #{0}: Finished Good Item Qty cannot be zero" -msgstr "" +msgstr "Rad #{0}: Färdig Artikel Kvantitet kan inte vara noll" #: erpnext/buying/doctype/purchase_order/services/subcontracting.py:21 #: erpnext/selling/doctype/sales_order/services/subcontracting.py:20 @@ -46265,7 +46265,7 @@ msgstr "Rad #{0}: Fält Från Tid och Till Tid erfordras" #: erpnext/stock/doctype/pick_list/pick_list.py:650 msgid "Row #{0}: Item Code is Mandatory" -msgstr "" +msgstr "Rad #{0}: Artikel Kod Erfordras" #: erpnext/public/js/utils/barcode_scanner.js:427 msgid "Row #{0}: Item added" @@ -46322,15 +46322,15 @@ msgstr "Rad #{0}: Artikel {1} är inte del av ursprunglig artikel post och kan i #: erpnext/controllers/subcontracting_inward_controller.py:80 msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted, add another row instead." -msgstr "" +msgstr "Rad #{0}: Artikel {1} stämmer inte. Ändring av Artikel Kod är inte tillåten, lägg till annan rad istället." #: erpnext/controllers/subcontracting_inward_controller.py:129 msgid "Row #{0}: Item {1} mismatch. Changing the item code is not permitted." -msgstr "" +msgstr "Rad #{0}: Artikel {1} stämmer inte. Ändring av Artikel Kod är inte tillåten." #: erpnext/stock/doctype/stock_entry/services/subcontracting.py:94 msgid "Row #{0}: Item {1} not found in 'Raw Materials Supplied' table in {2} {3}" -msgstr "" +msgstr "Rad #{0}: Artikel {1} hittades inte i \"Råmaterial Levererad\" tabell i {2} {3}" #: erpnext/stock/doctype/stock_entry/services/disassemble.py:115 msgid "Row #{0}: Item {1} quantity ({2} in stock UOM) does not match the quantity derived from the source ({3}). Do not change the UOM, conversion factor or quantity of disassembly rows." @@ -46371,19 +46371,19 @@ msgstr "Rad #{0}: Överförbrukning av Kund Försedd Artikel {1} mot Arbetsorder #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92 msgid "Row #{0}: POS Invoice {1} has been {2}" -msgstr "" +msgstr "Rad #{0}: Kassa Faktura {1} har blivit {2}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73 msgid "Row #{0}: POS Invoice {1} is not against customer {2}" -msgstr "" +msgstr "Rad #{0}: Kassa Faktura {1} är inte mot kund {2}" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88 msgid "Row #{0}: POS Invoice {1} is not submitted yet" -msgstr "" +msgstr "Rad #{0}: Kassa Faktura {1} är inte godkänd ännu" #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123 msgid "Row #{0}: Party ID is required" -msgstr "" +msgstr "Rad #{0}: Parti ID erfordras" #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:80 msgid "Row #{0}: Please select Item Code in Assembly Items" @@ -46391,11 +46391,11 @@ msgstr "Rad # {0}: Välj Artikel Kod för Montering Artiklar" #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340 msgid "Row #{0}: Please select a valid Quality Inspection with Item Code {1}." -msgstr "" +msgstr "Rad #{0}: Välj giltig Kvalitet Kontroll med Artikel Nummer {1}." #: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:333 msgid "Row #{0}: Please select a valid Quality Inspection with Reference Type {1} and Reference Name {2}." -msgstr "" +msgstr "Rad #{0}: Välj giltig Kvalitet Kontroll med Referens Typ {1} och Referens Namn {2}." #: erpnext/manufacturing/doctype/production_plan/services/sub_assembly.py:82 msgid "Row #{0}: Please select the BOM No in Assembly Items" @@ -46419,7 +46419,7 @@ msgstr "Rad # {0}: Uppdatera konto för uppskjutna intäkter/kostnader i artikel #: erpnext/assets/doctype/asset/asset.py:413 msgid "Row #{0}: Please use a different Finance Book." -msgstr "" +msgstr "Rad #{0}: Använd annan Bokslut Register." #: erpnext/manufacturing/doctype/bom/bom.py:378 #, python-format @@ -46441,7 +46441,7 @@ msgstr "Rad # {0}: Kvantitet måste vara psitivt tal" #: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429 msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Item {2} against Batch {3} in Warehouse {4}." -msgstr "" +msgstr "Rad #{0}: Kvantitet ska vara lägre än eller lika med Tillgänglig Kvantitet att Reservera (Faktisk Kvantitet - Reserverad Kvantitet) {1} för artikel {2} mot Parti {3} i Lager {4}." #: erpnext/stock/services/quality_inspection_service.py:77 msgid "Row #{0}: Quality Inspection is required for Item {1}" @@ -46518,7 +46518,10 @@ msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n" "\t\t\t\t\tSelling {3} should be at least {4}.

                    Alternatively,\n" "\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n" "\t\t\t\t\tthis validation." -msgstr "" +msgstr "Rad #{0}: Försäljning pris för artikel {1} är lägre än {2}.\n" +"\t\t\t\t\tFörsäljning {3} ska vara minst {4}.

                    Alternativt,\n" +"\t\t\t\t\tinaktivera '{5}' i {6} för att ignorera\n" +"\t\t\t\t\tdenna validering." #: erpnext/manufacturing/doctype/work_order/work_order.py:348 msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}." @@ -46526,7 +46529,7 @@ msgstr "Rad #{0}: Sekvens ID måste vara {1} eller {2} för Åtgärd {3}." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:528 msgid "Row #{0}: Serial No {1} cannot be returned since it was not transacted in original invoice {2}" -msgstr "" +msgstr "Rad #{0}: Serie Nummer {1} kan inte återlämnas eftersom den inte ingick i ursprung faktura {2}" #: erpnext/stock/services/serial_batch_bundle_service.py:123 msgid "Row #{0}: Serial No {1} does not belong to Batch {2}" @@ -46643,11 +46646,11 @@ msgstr "Rad # {0}: Parti {1} har förfallit." #: erpnext/stock/doctype/stock_entry/stock_entry.py:408 msgid "Row #{0}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference." -msgstr "" +msgstr "Rad #{0}: Jobbkort artikel referens för saknas. Skapa lager transaktionen från jobbkort. Om du har lagt till raden manuellt kommer du inte att kunna lägga till artikel referens för jobbkort." #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103 msgid "Row #{0}: The original Invoice {1} of return invoice {2} is not consolidated." -msgstr "" +msgstr "Rad #{0}: Ursprunglig Faktura {1} för Retur Faktura {2} är inte konsoliderad." #: erpnext/stock/doctype/item/item.py:599 msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}" @@ -46655,7 +46658,7 @@ msgstr "Rad # {0}: Lager {1} är inte underordnad till grupp lager {2}" #: erpnext/manufacturing/doctype/workstation/workstation.py:190 msgid "Row #{0}: Timings conflict with row {1}" -msgstr "" +msgstr "Rad #{0}: Tidpunkter kolliderar med rad {1}" #: erpnext/assets/doctype/asset/asset.py:656 msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations" @@ -46679,7 +46682,7 @@ msgstr "Rad #{0}: Arbetsorder finns för hel eller delvis kvantitet av artikel { #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:500 msgid "Row #{0}: You cannot add positive quantities in a return invoice. Please remove item {1} to complete the return." -msgstr "" +msgstr "Rad #{0}: Du kan inte lägga till mer kvantiteter i retur faktura. Ta bort artikel {1} för att slutföra retur." #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:110 msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries." @@ -46691,7 +46694,7 @@ msgstr "Rad # {0}: Du måste välja Tillgång för Artikel {1}." #: erpnext/stock/doctype/pick_list/pick_list.py:235 msgid "Row #{0}: item {1} has been picked already." -msgstr "" +msgstr "Rad #{0}: artikel {1} är redan plockad." #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142 #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207 @@ -46700,7 +46703,7 @@ msgstr "Rad #{0}: {1}" #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:142 msgid "Row #{0}: {1} account is not of type {2}" -msgstr "" +msgstr "Rad #{0}: {1} konto är inte av typ {2}" #: erpnext/public/js/controllers/buying.js:261 msgid "Row #{0}: {1} can not be negative for item {2}" @@ -46720,11 +46723,11 @@ msgstr "Rad # {0}: {1} av {2} ska vara {3}. Uppdatera {1} eller välj ett annat #: erpnext/stock/doctype/item/item.py:1511 msgid "Row #{0}: {1} {2} does not belong to Company {3}. Please select valid {4}." -msgstr "" +msgstr "Rad #{0}: {1} {2} tillhör inte {3}. Välj giltigt {4}." #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126 msgid "Row #{0}: {1} {2} does not exist." -msgstr "" +msgstr "Rad #{0}: {1} {2} finns inte." #: erpnext/accounts/services/child_item_update.py:251 msgid "Row #{0}:Quantity for Item {1} cannot be zero." @@ -46901,7 +46904,7 @@ msgstr "Rad # {0}: Från Tid och till Tid erfordras." #: erpnext/manufacturing/doctype/job_card/job_card.py:355 msgid "Row {0}: From Time and To Time of {1} are overlapping with {2}" -msgstr "" +msgstr "Rad {0}: Från Tid och Till Tid för {1} överlappar med {2}" #: erpnext/projects/doctype/timesheet/timesheet.py:225 msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}" @@ -46925,7 +46928,7 @@ msgstr "Rad # {0}: Ogiltig Referens {1}" #: erpnext/controllers/taxes_and_totals.py:134 msgid "Row {0}: Item Tax template for {1} updated as per validity and rate applied" -msgstr "" +msgstr "Rad {0}: Artikel Moms Mall för {1} är uppdaterad enligt giltighetstid och tillämpad moms sats" #: erpnext/controllers/selling_controller.py:659 msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer" @@ -46989,7 +46992,7 @@ msgstr "Rad # {0}: Välj Stycklista för Artikel {1}." #: erpnext/controllers/subcontracting_controller.py:214 msgid "Row {0}: Please select a valid BOM for Item {1}." -msgstr "" +msgstr "Rad {0}: Välj giltig Stycklista för Artikel {1}." #: erpnext/controllers/subcontracting_controller.py:208 msgid "Row {0}: Please select an active BOM for Item {1}." @@ -47061,7 +47064,7 @@ msgstr "Rad {0}: Hela kostnad belopp för konto {1} i {2} är redan tilldelad." #: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103 msgid "Row {0}: The item {1}, quantity must be a positive number" -msgstr "" +msgstr "Rad {0}: Artikel {1}, kvantitet måste vara positivt tal" #: erpnext/accounts/services/taxes.py:269 msgid "Row {0}: The {3} Account {1} does not belong to the company {2}" @@ -47122,7 +47125,7 @@ msgstr "Rad {0}: {1} {2} är länkad till {3}. Välj ett dokument som tillhör { #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132 msgid "Row {0}: {1} {2} must be submitted" -msgstr "" +msgstr "Rad {0}: {1} {2} måste godkännas" #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:111 msgid "Row {0}: {2} Item {1} does not exist in {2} {3}" @@ -47168,7 +47171,7 @@ msgstr "Rader: {0} har \"Betalning Post\" som referens typ. Detta ska inte anges #: erpnext/controllers/accounts_controller.py:276 msgid "Rows: {0} in {1} section are invalid. Reference Name should point to a valid Payment Entry or Journal Entry." -msgstr "" +msgstr "Rader: {0} i sektion {1} är ogiltiga. Referens Namn ska peka på giltig Betalning Post eller Journal Post." #. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail' #: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json @@ -47596,7 +47599,7 @@ msgstr "Försäljning Faktura är inte godkänd" #: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195 msgid "Sales Invoice isn't created by user {0}" -msgstr "" +msgstr "Försäljning Faktura skapas inte av {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:472 msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead." @@ -48337,7 +48340,7 @@ msgstr "Skanna Serie Nummer" #: erpnext/public/js/utils/barcode_scanner.js:200 msgid "Scan barcode for item {0}" -msgstr "Skanna Streckkod för artikel {0}" +msgstr "Skanna streckkod för artikel {0}" #: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:111 msgid "Scan mode enabled, existing quantity will not be fetched." @@ -49062,7 +49065,7 @@ msgstr "Vald dokument måste ha godkänd status" #: erpnext/assets/doctype/asset/asset.py:1195 msgid "Selected {0} does not contain the Item Code {1}" -msgstr "" +msgstr "Vald {0} innehåller inte artikel kod {1}" #. Option for the 'Pickup Type' (Select) field in DocType 'Shipment' #: erpnext/stock/doctype/shipment/shipment.json @@ -49400,7 +49403,7 @@ msgstr "Serienummer Redan Tilldelad" #: erpnext/assets/doctype/asset_repair/asset_repair.py:296 msgid "Serial No Bundle is mandatory for Item {0}" -msgstr "" +msgstr "Serie Nummer Paket erfordras för Artikel {0}" #: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33 msgid "Serial No Count" @@ -49465,7 +49468,7 @@ msgstr "Serie Nummer & Parti" #: erpnext/stock/doctype/stock_settings/stock_settings.js:93 msgid "Serial No and Batch Selector cannot be used when Use Serial / Batch Fields is enabled." -msgstr "" +msgstr "Serie Nummer och Parti Väljare kan inte användas när Använd Serie / Parti Fält är aktiverad." #. Name of a report #. Label of a Link in the Stock Workspace @@ -49508,7 +49511,7 @@ msgstr "Serie Nummer {0} finns inte" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378 msgid "Serial No {0} is already Delivered. You cannot use it again in Manufacture / Repack entry." -msgstr "" +msgstr "Serienummer {0} är redan levererad. Du kan inte använda det igen i Produktion / Ompaketering." #: erpnext/public/js/utils/barcode_scanner.js:435 msgid "Serial No {0} is already added" @@ -49524,11 +49527,11 @@ msgstr "Serienummer {0} finns inte i {1} {2}, därför kan du inte returnera det #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:343 msgid "Serial No {0} is under maintenance contract until {1}" -msgstr "" +msgstr "Serie Nummer {0} är under Service Avtal till {1}" #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:336 msgid "Serial No {0} is under warranty until {1}" -msgstr "" +msgstr "Serie Nummer {0} är under garanti till {1}" #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:322 msgid "Serial No {0} not found" @@ -49664,7 +49667,7 @@ msgstr "Serie och Parti Paket {0} är godkänd och deras poster kan inte ändras #: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:298 msgid "Serial and Batch Bundle {0} should have voucher type as 'Maintenance Schedule'" -msgstr "" +msgstr "Serie och Parti Paket {0} ska ha verifikation typ 'Underhåll Schema'" #. Label of the section_break_45 (Section Break) field in DocType #. 'Subcontracting Receipt Item' @@ -51143,7 +51146,7 @@ msgstr "Vissa erfordrade bolagsuppgifter saknas. Du har inte behörighet att upp #: erpnext/www/book_appointment/index.js:248 msgid "Something went wrong, please try again" -msgstr "" +msgstr "Något gick fel, försök igen" #: erpnext/accounts/doctype/pricing_rule/utils.py:754 msgid "Sorry, this coupon code is no longer valid" @@ -51394,7 +51397,7 @@ msgstr "Dela upp provision mellan flera säljare." #: erpnext/buying/doctype/purchase_order/purchase_order.js:600 #: erpnext/public/js/controllers/buying.js:558 msgid "Splitting {0} units of {1}" -msgstr "" +msgstr "Delar {0} enheter av {1}" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:2195 msgid "Splitting {0} {1} into {2} rows as per Payment Terms" @@ -51516,15 +51519,15 @@ msgstr "Ställning Namn" #: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:73 msgid "Standing scores must be continuous and cover 0 to 100 without gaps or overlaps" -msgstr "" +msgstr "Aktuell Ställning måste vara kontinuerlig och täcka från 0 till 100 utan luckor eller överlappningar" #: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:76 msgid "Standing scores must cover the full range from 0 to 100" -msgstr "" +msgstr "Aktuell Ställning måste täcka hela intervall från 0 till 100" #: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:68 msgid "Standing {0} must have a minimum grade lower than its maximum grade" -msgstr "" +msgstr "Ställning {0} måste ha ett lägsta värde som är lägre än dess högsta värde" #: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54 msgid "Start / Resume" @@ -51532,7 +51535,7 @@ msgstr "Starta / Återuppta" #: erpnext/accounts/doctype/accounting_period/accounting_period.py:45 msgid "Start Date cannot be after End Date" -msgstr "" +msgstr "Startdatum får inte vara efter Sslutdatum" #: erpnext/crm/doctype/email_campaign/email_campaign.py:40 msgid "Start Date cannot be before the current date" @@ -51598,7 +51601,7 @@ msgstr "Startade bakgrundsjobb för att skapa {1} {0}. {2}" #: erpnext/public/js/bulk_transaction_processing.js:29 msgid "Starting a background job to create {0} {1}" -msgstr "" +msgstr "Startar bakgrundsjobb för att skapa {0} {1}" #. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print #. Template' @@ -51809,7 +51812,7 @@ msgstr "Lager Stängning Post {0} finns redan för vald datumintervall" #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100 msgid "Stock Closing Entry {0} has been queued for processing, the system will take some time to complete it." -msgstr "" +msgstr "Lagerstängning Post {0} är i kö för bearbetning, och kommer att ta lite tid att slutföra." #: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9 msgid "Stock Closing Log" @@ -51892,11 +51895,11 @@ msgstr "Lager Post Typ" #: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:65 msgid "Stock Entry Type {0} cannot be set as standard" -msgstr "" +msgstr "Lager Post Typ {0} kan inte anges som standard" #: erpnext/stock/doctype/pick_list/mapper.py:289 msgid "Stock Entry has already been created against this Pick List" -msgstr "" +msgstr "Lager Post är redan skapad mot denna Plocklista" #: erpnext/stock/doctype/batch/batch.js:138 msgid "Stock Entry {0} created" @@ -51904,7 +51907,7 @@ msgstr "Lager Post {0} skapades" #: erpnext/manufacturing/doctype/job_card/job_card.py:1639 msgid "Stock Entry {0} has been created" -msgstr "" +msgstr "Lager Post {0} skapad" #: erpnext/accounts/doctype/journal_entry/journal_entry.py:997 msgid "Stock Entry {0} is not submitted" @@ -52517,7 +52520,7 @@ msgstr "Lager ej tillgängligt för Artikel {0} i Lager {1}." #: erpnext/selling/page/point_of_sale/pos_controller.js:826 msgid "Stock quantity is not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}." -msgstr "" +msgstr "Lager Kvantitet räcker inte för Artikel Kod: {0} under lager {1}. Tillgänglig kvantitet {2} {3}." #: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255 msgid "Stock transactions before {0} are frozen" @@ -53987,7 +53990,7 @@ msgstr "Tillgång {0} tillhör inte bolag {1}" #: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:189 msgid "Target Asset {0} needs to be a composite asset" -msgstr "" +msgstr "Tillgång {0} måste vara sammansatt tillgång" #. Name of a DocType #: erpnext/setup/doctype/target_detail/target_detail.json @@ -55097,7 +55100,7 @@ msgstr "Text som visas i Bokslut Rapport (t.ex. \"Totala Intäkter\", \"Likvida #: erpnext/stock/doctype/packing_slip/packing_slip.py:89 msgid "The 'From Package No.' field must not be empty or have a value less than 1." -msgstr "" +msgstr "Fält 'Från Paket Nummer' får inte vara tomt eller ha värde lägre än 1." #. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool' #: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json @@ -55106,7 +55109,7 @@ msgstr "Stycklista före" #: erpnext/controllers/subcontracting_controller.py:1056 msgid "The Batch No {0} has not been supplied against the {1} {2}" -msgstr "" +msgstr "Parti Nummer {0} har inte levererats mot {1} {2}" #: erpnext/stock/serial_batch_bundle.py:1557 msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry." @@ -55114,7 +55117,7 @@ msgstr "Parti {0} har negativ parti kvantitet {1}. För att åtgärda detta, gå #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1590 msgid "The Batch {0} of item {1} has negative stock in the warehouse {2}{3}. Please add a stock quantity of {4} to proceed with this entry. If it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in the batch {0} or in the Stock Settings to proceed. However, enabling this setting may lead to negative stock in the system. So please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate." -msgstr "" +msgstr "Parti {0} av artikel {1} har negativt lager på lager {2}{3}. Lägg till lager kvantitet {4} för att gå vidare med denna post. Om det inte är möjligt att skapa justering post, aktivera \"Tillåt Negativt Lager för Parti\" för Parti {0} eller i Lager Inställningar för att fortsätta. Vid aktivering av denna inställning kan det dock leda till negativt lager i system. Se till att lager nivåer justeras så snart som möjligt för att bibehålla korrekt Värdering Pris." #: erpnext/crm/doctype/email_campaign/email_campaign.py:71 msgid "The Campaign '{0}' already exists for the {1} '{2}'" @@ -55142,7 +55145,7 @@ msgstr "Bokföring Register Poster kommer att annulleras i bakgrunden, det kan t #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1156 msgid "The Item {0} does not have Serial No or Batch No" -msgstr "" +msgstr "Artikeln {0} har varken Serie eller Parti Nummer" #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179 msgid "The Loyalty Program isn't valid for the selected company" @@ -55162,11 +55165,11 @@ msgstr "Plocklista med Lager Reservation kan inte uppdateras. Om ändringar beh #: erpnext/stock/doctype/stock_entry/services/manufacturing.py:127 msgid "The Process Loss Qty has been reset as per the Job Card's Process Loss Qty" -msgstr "" +msgstr "Process Förlust Kvantitet är återställd enligt Jobbkort Process Förlust Kvantitet" #: erpnext/stock/doctype/stock_entry/stock_entry.py:1375 msgid "The Process Loss Qty has been reset as per the job card's Process Loss Qty" -msgstr "" +msgstr "Process Förlust Kvantitet är återställd enligt Jobbkort Process Förlust Kvantitet" #: erpnext/setup/doctype/sales_person/sales_person.py:102 msgid "The Sales Person is linked with {0}" @@ -55182,7 +55185,7 @@ msgstr "Serienummer {0} är reserverad för {1} {2} och får inte användas för #: erpnext/controllers/subcontracting_controller.py:1071 msgid "The Serial Nos {0} have not been supplied against the {1} {2}" -msgstr "" +msgstr "Serie Nummer {0} har inte levererats mot {1} {2}" #: erpnext/stock/doctype/stock_entry/stock_entry.py:950 msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}" @@ -55238,7 +55241,7 @@ msgstr "Färdig kvantitet {0} för åtgärd {1} kan inte vara högre än färdig #: erpnext/accounts/doctype/dunning/dunning.py:87 msgid "The currency of invoice {0} ({1}) is different from the currency of this dunning ({2})." -msgstr "" +msgstr "Faktura valuta {0} ({1}) skiljer sig från valutan för denna påminnelse ({2})." #: erpnext/selling/page/point_of_sale/pos_controller.js:200 msgid "The current POS opening entry is outdated. Please close it and create a new one." @@ -55291,7 +55294,7 @@ msgstr "Fält {0} i rad {1} är inte angiven" #: erpnext/stock/stock_ledger.py:369 msgid "The field {0} is required for reposting" -msgstr "" +msgstr "Fält {0} erfordras för ombokning" #: erpnext/accounts/doctype/share_transfer/share_transfer.py:188 msgid "The fields From Shareholder and To Shareholder cannot be blank" @@ -55316,7 +55319,7 @@ msgstr "Folio nummer stämmer inte" #: erpnext/stock/doctype/putaway_rule/putaway_rule.py:306 msgid "The following Items, having Putaway Rules, could not be accommodated:" -msgstr "" +msgstr "Följande Artiklar, med Lägg Undan Regler, kunde inte tillgodoses:" #: erpnext/assets/doctype/asset_repair/asset_repair.py:137 msgid "The following Purchase Invoices are not submitted:" @@ -55344,7 +55347,7 @@ msgstr "Följande Personal rapporterar för närvarande fortfarande till {0}:" #: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185 msgid "The following invalid Pricing Rules are deleted:{0}" -msgstr "" +msgstr "Följande ogiltiga prissättningsregler tas bort:{0}" #: erpnext/accounts/doctype/payment_request/payment_request.py:782 msgid "The following payment schedule(s) already exist:\n" @@ -55393,7 +55396,7 @@ msgstr "Artiklar {items} är inte angivna som {type_of} artiklar. Du kan aktiver #: erpnext/manufacturing/doctype/workstation/workstation.py:595 msgid "The job card {0} is in {1} state and you cannot complete it." -msgstr "" +msgstr "Jobbkort {0} är i {1} tillstånd och du kan inte slutföra det." #: erpnext/manufacturing/doctype/workstation/workstation.py:589 msgid "The job card {0} is in {1} state and you cannot start it again." @@ -55431,11 +55434,11 @@ msgstr "Öppning Saldo kanske inte stämmer med bankutdrag. Vill du stämma av d #: erpnext/manufacturing/doctype/operation/operation.py:43 msgid "The operation {0} cannot be added multiple times" -msgstr "" +msgstr "Åtgärd {0} kan inte läggas till flera gånger" #: erpnext/manufacturing/doctype/operation/operation.py:48 msgid "The operation {0} cannot be its own sub-operation" -msgstr "" +msgstr "Åtgärd {0} kan inte vara egen underåtgärd" #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107 msgid "The original invoice should be consolidated before or along with the return invoice." @@ -55485,7 +55488,7 @@ msgstr "Procentandel man får överföra mer mot order kvantitet. Till exempel, #: erpnext/stock/doctype/item_price/item_price.py:71 msgid "The price list {0} does not exist or is disabled" -msgstr "" +msgstr "Prislist {0} finns inte eller är inaktiverad" #. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item' #: erpnext/stock/doctype/item/item.json @@ -55514,7 +55517,7 @@ msgstr "Valda Stycklistor är inte för samma Artikel" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:544 msgid "The selected change account {0} does not belong to Company {1}." -msgstr "" +msgstr "Vald Kassa Växel Konto {0} tillhör inte {1}." #: erpnext/stock/doctype/batch/batch.py:157 msgid "The selected item cannot have Batch" @@ -55531,7 +55534,7 @@ msgstr "Säljare och Köpare kan inte vara samma" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186 #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198 msgid "The serial and batch bundle {0} is not linked to {1} {2}" -msgstr "" +msgstr "Serie och Parti Paket {0} är inte länkad till {1} {2}" #: erpnext/stock/doctype/batch/batch.py:386 msgid "The serial no {0} does not belong to item {1}" @@ -55585,7 +55588,7 @@ msgstr "Uppgift är i kö som ett bakgrund jobb. Om det finns några problem med #: erpnext/stock/doctype/material_request/material_request.py:352 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than allowed requested quantity {2} for Item {3}" -msgstr "" +msgstr "Totalt Utfärdad / Överföring Kvantitet {0} i Material Begäran {1} kan inte vara högre än tillåten begärd kvantitet {2} för artikel {3}" #: erpnext/stock/doctype/material_request/material_request.py:359 msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}" @@ -55665,7 +55668,7 @@ msgstr "{0} {1} stämmer inte med {0} {2} på {3} {4}" #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1730 msgid "The {0} {1} is in submitted state, please cancel it first" -msgstr "" +msgstr "{0} {1} är i godkänd tillstånd, vänligen annullera det först" #: erpnext/manufacturing/doctype/job_card/job_card.py:1075 msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}." @@ -55706,7 +55709,7 @@ msgstr "Det finns inga poster i system där klarering datum är före bokföring #: erpnext/stock/report/item_variant_details/item_variant_details.py:25 msgid "There are no item variants for the selected item" -msgstr "" +msgstr "Det finns inga artikel varianter för vald artikel" #: erpnext/www/book_appointment/index.js:95 msgid "There are no slots available on this date" @@ -55754,7 +55757,7 @@ msgstr "Det finns en ej avstämd transaktion före {0}." #: erpnext/stock/doctype/stock_entry/stock_entry.py:887 msgid "There must be at least 1 Finished Good in this Stock Entry" -msgstr "" +msgstr "Det måste finnas minst en färdig artikel i denna Lager Post" #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:152 msgid "There was an error creating Bank Account while linking with Plaid." @@ -55766,7 +55769,7 @@ msgstr "Det uppstod fel med synkronisering av transaktioner." #: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:174 msgid "There was an error updating Bank Account {0} while linking with Plaid." -msgstr "" +msgstr "Det uppstod fel vid uppdatering av Bank Konto {0} vid länkning med Plaid." #: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81 msgid "There was an error while importing the bank statement." @@ -55822,7 +55825,7 @@ msgstr "Denna Betalning Post är avstämd mot {0}. Om du annullerar avstämning #: erpnext/selling/doctype/product_bundle/product_bundle.py:121 msgid "This Product Bundle is linked with {0}. You will have to cancel these documents in order to delete this Product Bundle" -msgstr "" +msgstr "Artikel Paket är länkad med {0}. Du måste annullera dessa dokument för att kunna ta bort detta Artikel Paket" #: erpnext/buying/doctype/purchase_order/mapper.py:251 msgid "This Purchase Order has been fully subcontracted." @@ -56163,7 +56166,7 @@ msgstr "Detta kommer att begränsa användar åtkomst till annan Personal Regist #: erpnext/controllers/selling_controller.py:901 msgid "This {0} will be treated as material transfer." -msgstr "" +msgstr "Denna {0} kommer att behandlas som material överföring." #. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax #. Withholding Entry' @@ -56295,7 +56298,7 @@ msgstr "Tidslinje" #. 'Accounts Settings' #: erpnext/accounts/doctype/accounts_settings/accounts_settings.json msgid "Timeout (in seconds) for each background job enqueued by Process Period Closing Voucher" -msgstr "" +msgstr "Tidsgräns (i sekunder) för varje bakgrundsjobb som placerats i kö av Behandla Period Stängning Verifikat" #: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36 #: erpnext/public/js/projects/timer.js:5 @@ -56584,7 +56587,7 @@ msgstr "Till Tid" #: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108 msgid "To Time cannot be before From Time" -msgstr "" +msgstr "Till Tid kan inte vara före Från Tid" #. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner' #: erpnext/setup/doctype/sales_partner/sales_partner.json @@ -56640,7 +56643,7 @@ msgstr "Levereras till Kund" #: erpnext/accounts/doctype/sales_invoice/services/pos.py:276 msgid "To cancel a {0} you need to cancel the POS Closing Entry {1}." -msgstr "" +msgstr "För att annullera {0} måste Kassa Stängning Post {1} annulleras." #: erpnext/accounts/doctype/sales_invoice/services/pos.py:290 msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {0}." @@ -56652,7 +56655,7 @@ msgstr "Att skapa Betalning Begäran erfordras referens dokument" #: erpnext/assets/doctype/asset_category/asset_category.py:120 msgid "To enable Capital Work in Progress Accounting, you must select Capital Work in Progress Account in accounts table" -msgstr "" +msgstr "För att aktivera Bokföring av Kapital Arbete Pågår måste du välja Kapital Arbete Pågår Konto i Bokföring Inställningar" #: erpnext/manufacturing/doctype/production_plan/production_plan.js:734 msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked." @@ -56831,19 +56834,19 @@ msgstr "Totalt Förskott" #: erpnext/public/js/utils.js:250 msgid "Total Advance Paid" -msgstr "" +msgstr "Total Förskott Betald" #: erpnext/public/js/utils.js:195 msgid "Total Advance Paid: {0}" -msgstr "" +msgstr "Totalt Förskott Betald: {0}" #: erpnext/public/js/utils.js:252 msgid "Total Advance Received" -msgstr "" +msgstr "Totalt Förskott Mottaget" #: erpnext/public/js/utils.js:198 msgid "Total Advance Received: {0}" -msgstr "" +msgstr "Totalt Förskott Mottaget: {0}" #. Label of the total_allocated_amount (Currency) field in DocType 'Payment #. Entry' @@ -57502,7 +57505,7 @@ msgstr "Totalt Tid i Minuter" #: erpnext/public/js/utils.js:253 msgid "Total Unpaid" -msgstr "" +msgstr "Totalt Obetald" #: erpnext/public/js/utils.js:200 msgid "Total Unpaid: {0}" @@ -57602,7 +57605,7 @@ msgstr "Totalt timmar: {0}" #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:574 #: erpnext/accounts/doctype/sales_invoice/services/pos.py:190 msgid "Total payments amount can't be greater than {0}" -msgstr "" +msgstr "Totalt betalning belopp kan inte vara högre än {0}" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66 msgid "Total percentage against cost centers should be 100" @@ -57621,7 +57624,7 @@ msgstr "Totalt {0} ({1})" #: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:248 msgid "Total {0} for all items is zero, maybe you should change 'Distribute Charges Based On'" -msgstr "" +msgstr "Totalt {0} för alla artiklar är noll, kanske du borde ändra 'Fördela Kostnader Baserat På'" #: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32 msgid "Total(Amt)" @@ -58162,7 +58165,7 @@ msgstr "Prov Saldo för Parti" #: erpnext/accounts/report/trial_balance/trial_balance.py:595 msgid "Trial Balance requires {0} to be synced to DuckDB" -msgstr "" +msgstr "Prov Saldo erfordrar att {0} synkroniseras med DuckDB" #. Label of the trial_period_end (Date) field in DocType 'Subscription' #: erpnext/accounts/doctype/subscription/subscription.json @@ -59406,7 +59409,7 @@ msgstr "Användare har inte tillämpat regel på faktura {0}" #: erpnext/crm/frappe_crm_api.py:175 msgid "User not allowed to synchronize data from Frappe CRM on ERPNext. Contact System Manager of ERPNext." -msgstr "" +msgstr "Användare har inte behörighet att synkronisera data från Säljstöd. Kontakta Systemansvarig." #: erpnext/setup/doctype/employee/employee.py:298 msgid "User {0} does not exist" @@ -59422,7 +59425,7 @@ msgstr "Användare {0} är redan tilldelad Personal {1}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62 msgid "User {0} is disabled. Please select valid user/cashier" -msgstr "" +msgstr "Användare {0} är inaktiverad. Välj giltig Användare / Kassör" #: erpnext/setup/doctype/employee/employee.py:365 msgid "User {0}: Removed Employee Self Service role as there is no mapped employee." @@ -59770,7 +59773,7 @@ msgstr "Värdering typ avgifter kan inte väljas som Inklusiva" #: erpnext/public/js/controllers/accounts.js:228 msgid "Valuation type charges cannot be marked as Inclusive" -msgstr "" +msgstr "Värdering typ avgifter kan inte väljas som Inkluderande" #: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58 msgid "Value (G - D)" @@ -61336,11 +61339,11 @@ msgstr "Arbetsorder Översikt Rapport" #: erpnext/stock/doctype/material_request/material_request.py:579 msgid "Work Order cannot be created for the following reason:
                    {0}" -msgstr "" +msgstr "Arbetsorder kan inte skapas av följande anledning:
                    {0}" #: erpnext/manufacturing/doctype/work_order/work_order.py:857 msgid "Work Order cannot be raised against an Item Template" -msgstr "" +msgstr "Arbetsorder kan inte skapas mot artikel mall" #: erpnext/manufacturing/doctype/work_order/work_order.py:1123 #: erpnext/manufacturing/doctype/work_order/work_order.py:1170 @@ -61693,7 +61696,7 @@ msgstr "Du importerar data för Kod Lista:" #: erpnext/accounts/services/child_item_update.py:232 msgid "You are not allowed to update as per the conditions set in {0} Workflow." -msgstr "" +msgstr "Du har inte behörighet att uppdatera enligt villkor som anges i {0} arbetsflöde." #: erpnext/accounts/services/gl_validator.py:114 msgid "You are not authorized to add or update entries before {0}" @@ -61713,7 +61716,7 @@ msgstr "Du väljer mer än vad som krävs för artikel {0}. Kontrollera om det f #: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111 msgid "You can add the original invoice {0} manually to proceed." -msgstr "" +msgstr "Du kan lägga till original faktura {0} manuellt för att fortsätta." #: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743 msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)." @@ -61725,7 +61728,7 @@ msgstr "Du kan också kopiera och klistra in den här länken i din webbläsare" #: erpnext/assets/doctype/asset_category/asset_category.py:124 msgid "You can also set default CWIP account in Company {0}" -msgstr "" +msgstr "Du kan också ange standard Kapital Arbete Pågår konto i {0}" #: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:761 msgid "You can change the parent account to a Balance Sheet account or select a different account." @@ -61754,7 +61757,7 @@ msgstr "Du kan bara välja ett betalning sätt som standard" #: erpnext/selling/page/point_of_sale/pos_payment.js:595 msgid "You can redeem up to {0}." -msgstr "" +msgstr "Du kan lösa in upp till {0}." #: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193 msgid "You can reset the clearing dates of these entries here." @@ -61786,11 +61789,11 @@ msgstr "Du kan inte skapa {0} inom stängd bokföring period {1}" #: erpnext/accounts/services/gl_validator.py:64 msgid "You cannot create or cancel any accounting entries within the closed Accounting Period {0}" -msgstr "" +msgstr "Du kan inte skapa eller annullera några bokföring poster inom avslutad Bokföring Period {0}" #: erpnext/accounts/services/gl_validator.py:145 msgid "You cannot create/amend any accounting entries until this date." -msgstr "" +msgstr "Du kan inte skapa eller ändra några bokföring poster före detta datum." #: erpnext/accounts/doctype/journal_entry/journal_entry.py:675 msgid "You cannot credit and debit same account at the same time" @@ -61802,7 +61805,7 @@ msgstr "Kan inte ta bort Projekt Typ 'Extern'" #: erpnext/setup/doctype/department/department.js:19 msgid "You cannot edit the root node." -msgstr "" +msgstr "Kan inte redigera överordnad nod." #: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:198 msgid "You cannot enable both the settings '{0}' and '{1}'." @@ -61810,15 +61813,15 @@ msgstr "Du kan inte aktivera både \"{0}\" och \"{1}\" inställningar." #: erpnext/manufacturing/doctype/job_card/job_card.py:1441 msgid "You cannot make any changes to Job Card since Work Order is closed." -msgstr "" +msgstr "Du kan inte göra några ändringar i Jobbkort eftersom Arbetsorder är stängd." #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167 msgid "You cannot outward the following {0} as they are either Delivered, Inactive or located in a different warehouse." -msgstr "" +msgstr "Du kan inte skicka ut följande {0} eftersom de antingen är Levererade, Inaktiva eller finns i ett annat lager." #: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229 msgid "You cannot process the serial number {0} as it has already been used in the SABB {1}. {2} If you want to inward the same serial number multiple times, then enable 'Allow existing Serial No to be Manufactured/Received again' in the {3}" -msgstr "" +msgstr "Du kan inte behandla serienummer {0} eftersom det redan har använts i Serie och Parti Paket {1}. {2} För att skapa intern serienummer flera gånger aktivera \"Tillåt att befintligt Serienummer Produceras/Tas Emot igen\" i {3}" #: erpnext/selling/page/point_of_sale/pos_payment.js:625 msgid "You cannot redeem more than {0}." @@ -61826,7 +61829,7 @@ msgstr "Du kan inte lösa in mer än {0}." #: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:212 msgid "You cannot repost item valuation before {0}" -msgstr "" +msgstr "Du kan inte boka om artikel värdering före {0}" #: erpnext/accounts/doctype/subscription/subscription.py:832 msgid "You cannot restart a Subscription that is not cancelled." @@ -61834,7 +61837,7 @@ msgstr "Du kan inte starta om prenumeration som inte är annullerad." #: erpnext/selling/page/point_of_sale/pos_payment.js:281 msgid "You cannot submit an empty order." -msgstr "" +msgstr "Du kan inte godkänna tom order." #: erpnext/selling/page/point_of_sale/pos_payment.js:280 msgid "You cannot submit the order without payment." @@ -61850,7 +61853,7 @@ msgstr "Du kan inte {0} detta dokument eftersom en annan Period Stängning Post #: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:165 msgid "You do not have enough permission to access {0}: {1}" -msgstr "" +msgstr "Du har inte tillräcklig behörighet att komma åt {0}: {1}" #: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:82 msgid "You do not have permission to import and submit bank transactions" @@ -61863,7 +61866,7 @@ msgstr "Du har inte behörighet att importera bank transaktioner" #: erpnext/accounts/services/child_item_update.py:210 msgid "You do not have permissions to {0} items in a {1}." -msgstr "" +msgstr "Du har inte behörighet att {0} artiklar i {1}." #: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187 msgid "You don't have enough Loyalty Points to redeem" @@ -61891,7 +61894,7 @@ msgstr "Du har inte behörighet att uppdatera detta dokument. Kontakta Systemans #: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:310 msgid "You had {0} errors while creating opening invoices. Check {1} for more details" -msgstr "" +msgstr "Du hade {0} fel när du skapade öppning fakturor. Kontrollera {1} för mer information" #: erpnext/public/js/utils.js:1055 msgid "You have already selected items from {0} {1}" @@ -61911,7 +61914,7 @@ msgstr "Du har aktiverat {0} och {1} i {2}. Detta kan leda till att priser från #: erpnext/stock/doctype/shipment/shipment.js:442 msgid "You have entered a duplicate Delivery Note on row {0}. Please rectify and try again." -msgstr "" +msgstr "Du har angett dubblett av Försäljning Följesedel på rad {0}. Rätta till detta och försök igen." #: banking/src/components/features/BankReconciliation/BankPicker.tsx:64 msgid "You have not added any bank accounts to your company." @@ -61935,7 +61938,7 @@ msgstr "Välj Kund före Artikel." #: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:282 msgid "You need to cancel POS Closing Entry {0} to be able to cancel this document." -msgstr "" +msgstr "Annullera Kassa Stängning Post {0} för att annullera detta dokument." #: erpnext/accounts/services/taxes.py:277 msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account." @@ -61991,7 +61994,7 @@ msgstr "Noll Saldo" #: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:353 msgid "Zero Balance Journal: {0}" -msgstr "" +msgstr "Noll Saldo Journal: {0}" #: erpnext/regional/report/uae_vat_201/uae_vat_201.py:78 msgid "Zero Rated" @@ -62115,7 +62118,7 @@ msgstr "Fält Namn " #: erpnext/setup/doctype/item_group/item_group.py:49 msgid "for tax category {0}" -msgstr "" +msgstr "för moms kategori {0}" #. Option for the 'Service Provider' (Select) field in DocType 'Currency #. Exchange Settings' @@ -62474,7 +62477,7 @@ msgstr "{0} kan inte vara negativ" #: erpnext/accounts/doctype/sales_invoice/services/loyalty.py:77 msgid "{0} cannot be cancelled since the Loyalty Points earned has been redeemed. First cancel the {1} No {2}" -msgstr "" +msgstr "{0} kan inte annulleras eftersom intjänade Lojalitet Poäng har lösts in. Först annullera {1} Nummer {2}" #: erpnext/accounts/doctype/pos_settings/pos_settings.py:53 msgid "{0} cannot be changed with opened Opening Entries." @@ -62482,7 +62485,7 @@ msgstr "{0} kan inte ändras med öppna Öppning Poster." #: erpnext/public/js/utils/sales_common.js:336 msgid "{0} cannot be greater than 100" -msgstr "" +msgstr "{0} kan inte vara högre än 100" #: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136 msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}" @@ -62551,7 +62554,7 @@ msgstr "{0} är godkänd" #: erpnext/controllers/buying_controller.py:289 msgid "{0} has submitted assets linked to it. You need to cancel the assets to create purchase return." -msgstr "" +msgstr "{0} har godkänt länkade tillgångar. Du måste annullera tillgångar för att skapa Inköp Retur." #: erpnext/projects/doctype/project/project_dashboard.html:15 msgid "{0} hours" @@ -62563,7 +62566,7 @@ msgstr "{0} på rad {1}" #: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66 msgid "{0} is a child company." -msgstr "" +msgstr "{0} är ett dotterbolag." #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:465 msgid "{0} is a child table and will be deleted automatically with its parent" @@ -62646,7 +62649,7 @@ msgstr "{0} är inte aktiverad i {1}" #: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:649 msgid "{0} is not running. Cannot trigger events for this document" -msgstr "" +msgstr "{0} körs inte. Det går inte att utlösa händelser för detta dokument" #: erpnext/stock/doctype/material_request/material_request.py:478 msgid "{0} is not the default supplier for any items." @@ -62654,7 +62657,7 @@ msgstr "{0} är inte Standard Leverantör för någon av Artiklar." #: erpnext/accounts/doctype/payment_entry/payment_entry.py:2686 msgid "{0} is on hold until {1}" -msgstr "" +msgstr "{0} är i vänteläge tills {1}" #: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68 msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry." @@ -62829,11 +62832,11 @@ msgstr "{0} {1} är redan länkad till Gemensam kod {2}." #: erpnext/accounts/doctype/party_link/party_link.py:53 #: erpnext/accounts/doctype/party_link/party_link.py:63 msgid "{0} {1} is already linked with another {2}" -msgstr "" +msgstr "{0} {1} är redan länkad med annan {2}" #: erpnext/accounts/doctype/party_link/party_link.py:40 msgid "{0} {1} is already linked with {2} {3}" -msgstr "" +msgstr "{0} {1} är redan länkad med {2} {3}" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:711 msgid "{0} {1} is associated with {2}, but Party Account is {3}" @@ -62874,7 +62877,7 @@ msgstr "{0} {1} är inte aktiv" #: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:452 msgid "{0} {1} is not affecting bank account {2}" -msgstr "" +msgstr "{0} {1} påverkar inte bank konto {2}" #: erpnext/accounts/doctype/payment_entry/payment_entry.py:688 msgid "{0} {1} is not associated with {2} {3}" From a3c5ef6aa3119c83293e262f9d38ad57d3787cb9 Mon Sep 17 00:00:00 2001 From: pandiyan Date: Mon, 29 Jun 2026 20:22:31 +0530 Subject: [PATCH 110/161] fix: set mr status to received when per_received is 100 even if per_ordered < 100 --- erpnext/controllers/status_updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/controllers/status_updater.py b/erpnext/controllers/status_updater.py index fddd06e0a7f..9e46598768f 100644 --- a/erpnext/controllers/status_updater.py +++ b/erpnext/controllers/status_updater.py @@ -144,7 +144,7 @@ status_map = { ], [ "Partially Ordered", - "eval:self.status != 'Stopped' and self.per_ordered < 100 and self.per_ordered > 0 and self.docstatus == 1 and self.material_request_type not in ['Material Transfer', 'Customer Provided']", + "eval:self.status != 'Stopped' and self.per_ordered < 100 and self.per_ordered > 0 and self.per_received < 100 and self.docstatus == 1 and self.material_request_type not in ['Material Transfer', 'Customer Provided']", ], ], "POS Opening Entry": [ From b0331f13f1efda7a6b2d8c62ee14947d55bb2447 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Tue, 30 Jun 2026 12:17:36 +0530 Subject: [PATCH 111/161] fix(accounts): log bank-entry failure without the rolled-back doc (review) The savepoint rollback erases the just-inserted Bank Transaction row, so bank_transaction.log_error() created an Error Log pointing at a row that no longer exists. Use frappe.log_error(title=...) with no doc reference. --- .../doctype/bank_transaction/bank_transaction_upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py b/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py index d38d9df6ca0..2f88410fc26 100644 --- a/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py +++ b/erpnext/accounts/doctype/bank_transaction/bank_transaction_upload.py @@ -58,7 +58,7 @@ def create_bank_entries(columns: str, data: str | list, bank_account: str): success += 1 except Exception: frappe.db.rollback(save_point="bank_entry") - bank_transaction.log_error("Bank entry creation failed") + frappe.log_error(title="Bank entry creation failed") errors += 1 return {"success": success, "errors": errors} From 16a6a4913eeaad4378fda4a4a8465bf5dd03e002 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Tue, 30 Jun 2026 12:17:37 +0530 Subject: [PATCH 112/161] fix(stock): log Material Request failure without the rolled-back doc (review) After rollback(save_point=reorder_mr) discards the just-inserted Material Request, mr.log_error() left a dangling Error Log reference. Use frappe.log_error(title=...). --- erpnext/stock/reorder_item.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/stock/reorder_item.py b/erpnext/stock/reorder_item.py index 8955c7f46e6..dc6168f52ac 100644 --- a/erpnext/stock/reorder_item.py +++ b/erpnext/stock/reorder_item.py @@ -290,7 +290,7 @@ def create_material_request(material_requests): except Exception as exception: frappe.db.rollback(save_point="reorder_mr") exceptions_list.append(exception) - mr.log_error("Unable to create material request") + frappe.log_error(title="Unable to create material request") if company_wise_mr: if getattr(frappe.local, "reorder_email_notify", None) is None: From bd57e43446c624c4bf6644e3de16ccb2ab8f9e6a Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Tue, 30 Jun 2026 12:17:38 +0530 Subject: [PATCH 113/161] fix(setup): scope regional-tax-settings rollback to a savepoint (review) from_detailed_data inserts tax templates/accounts before update_regional_tax_settings in the same transaction; a full frappe.db.rollback() on regional-setup failure discarded those templates while the wizard continued. Take a savepoint before the regional call and roll back only to it. --- erpnext/setup/setup_wizard/operations/taxes_setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/setup/setup_wizard/operations/taxes_setup.py b/erpnext/setup/setup_wizard/operations/taxes_setup.py index 2e5e2c0c092..d3b7e2a03fd 100644 --- a/erpnext/setup/setup_wizard/operations/taxes_setup.py +++ b/erpnext/setup/setup_wizard/operations/taxes_setup.py @@ -120,6 +120,7 @@ def from_detailed_data(company_name, data): def update_regional_tax_settings(country, company): path = frappe.get_app_path("erpnext", "regional", frappe.scrub(country)) if os.path.exists(path.encode("utf-8")): + frappe.db.savepoint("regional_tax_settings") try: module_name = f"erpnext.regional.{frappe.scrub(country)}.setup.update_regional_tax_settings" frappe.get_attr(module_name)(country, company) @@ -127,7 +128,7 @@ def update_regional_tax_settings(country, company): pass except Exception: # Log error and ignore if failed to setup regional tax settings - frappe.db.rollback() + frappe.db.rollback(save_point="regional_tax_settings") frappe.log_error("Unable to setup regional tax settings") From a36065931d13db59b5210876fff91e6826c32480 Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Tue, 30 Jun 2026 12:17:39 +0530 Subject: [PATCH 114/161] fix(telephony): scope link_existing_conversations rollback to a savepoint (review) link_existing_conversations is the Contact after_insert hook; a full frappe.db.rollback() on a failed call_log.save() would discard the triggering Contact insert itself (and, in test mode, the whole unit of work). Savepoint the hook's DB work and roll back only to it. --- erpnext/telephony/doctype/call_log/call_log.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/telephony/doctype/call_log/call_log.py b/erpnext/telephony/doctype/call_log/call_log.py index 2a6660c101f..c932eb515db 100644 --- a/erpnext/telephony/doctype/call_log/call_log.py +++ b/erpnext/telephony/doctype/call_log/call_log.py @@ -163,6 +163,7 @@ def link_existing_conversations(doc, state): return if doc.doctype != "Contact": return + frappe.db.savepoint("link_call_logs") try: numbers = [d.phone for d in doc.phone_nos] @@ -196,7 +197,7 @@ def link_existing_conversations(doc, state): if not frappe.in_test: frappe.db.commit() except Exception: - frappe.db.rollback() + frappe.db.rollback(save_point="link_call_logs") frappe.log_error(title=_("Error during caller information update")) From 1202e79a167cde177edb3bf057b9580b01187998 Mon Sep 17 00:00:00 2001 From: Sudharsanan11 Date: Thu, 25 Jun 2026 15:09:03 +0530 Subject: [PATCH 115/161] fix(stock): fix tests --- erpnext/public/js/controllers/transaction.js | 50 +++++++++++-------- .../quality_inspection/quality_inspection.py | 34 ++++++------- .../stock/doctype/stock_entry/stock_entry.js | 13 ++--- .../doctype/stock_entry/test_stock_entry.py | 37 +++++++------- .../stock_entry_detail.json | 3 +- .../services/quality_inspection_service.py | 28 +++++++---- 6 files changed, 88 insertions(+), 77 deletions(-) diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js index d9b62bee8e8..86784d28748 100644 --- a/erpnext/public/js/controllers/transaction.js +++ b/erpnext/public/js/controllers/transaction.js @@ -1,6 +1,22 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // License: GNU General Public License v3. See license.txt +erpnext.stock = erpnext.stock || {}; +erpnext.stock.qi_incoming_purposes = [ + "Material Receipt", + "Repack", + "Receive from Customer", + "Subcontracting Return", +]; +erpnext.stock.is_incoming_qi_purpose = (purpose) => + purpose === "Manufacture" || erpnext.stock.qi_incoming_purposes.includes(purpose); +erpnext.stock.row_requires_quality_inspection = (purpose, row) => { + if (row.secondary_item_type || row.is_legacy_scrap_item) return false; + if (purpose === "Manufacture") return !!row.is_finished_item; + if (erpnext.stock.qi_incoming_purposes.includes(purpose)) return !!row.t_warehouse; + return !!row.s_warehouse && row.s_warehouse !== row.t_warehouse; +}; + erpnext.TransactionController = class TransactionController extends erpnext.taxes_and_totals { setup() { super.setup(); @@ -404,13 +420,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe ); } - const incoming_doctypes = ["Purchase Receipt", "Purchase Invoice", "Subcontracting Receipt"]; - const incoming_purposes = ["Manufacture", "Material Receipt", "Repack"]; - const inspection_type = - incoming_doctypes.includes(this.frm.doc.doctype) || - (this.frm.doc.doctype === "Stock Entry" && incoming_purposes.includes(this.frm.doc.purpose)) - ? "Incoming" - : "Outgoing"; + const inspection_type = this.quality_inspection_type(); let quality_inspection_field = this.frm.get_docfield("items", "quality_inspection"); quality_inspection_field.get_route_options_for_new_doc = function (row) { @@ -2966,13 +2976,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe ]; const me = this; - const incoming_doctypes = ["Purchase Receipt", "Purchase Invoice", "Subcontracting Receipt"]; - const incoming_purposes = ["Manufacture", "Material Receipt", "Repack"]; - const inspection_type = - incoming_doctypes.includes(this.frm.doc.doctype) || - (this.frm.doc.doctype === "Stock Entry" && incoming_purposes.includes(this.frm.doc.purpose)) - ? "Incoming" - : "Outgoing"; + const inspection_type = this.quality_inspection_type(); const dialog = new frappe.ui.Dialog({ title: __("Select Items for Quality Inspection"), size: "extra-large", @@ -3064,6 +3068,15 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe }); } + quality_inspection_type() { + const incoming_doctypes = ["Purchase Receipt", "Purchase Invoice", "Subcontracting Receipt"]; + const is_incoming = + incoming_doctypes.includes(this.frm.doc.doctype) || + (this.frm.doc.doctype === "Stock Entry" && + erpnext.stock.is_incoming_qi_purpose(this.frm.doc.purpose)); + return is_incoming ? "Incoming" : "Outgoing"; + } + has_inspection_required(item) { if (item.quality_inspection) { return false; @@ -3071,14 +3084,7 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe if (this.frm.doc.doctype !== "Stock Entry") { return true; } - const purpose = this.frm.doc.purpose; - if (purpose === "Manufacture") { - return !!item.is_finished_item; - } - if (["Material Receipt", "Repack"].includes(purpose)) { - return !!item.t_warehouse; - } - return !!item.s_warehouse && item.s_warehouse !== item.t_warehouse; + return erpnext.stock.row_requires_quality_inspection(this.frm.doc.purpose, item); } get_method_for_payment() { diff --git a/erpnext/stock/doctype/quality_inspection/quality_inspection.py b/erpnext/stock/doctype/quality_inspection/quality_inspection.py index d51d384b1c2..d0978da0f7e 100644 --- a/erpnext/stock/doctype/quality_inspection/quality_inspection.py +++ b/erpnext/stock/doctype/quality_inspection/quality_inspection.py @@ -13,6 +13,7 @@ from frappe.utils import cint, flt, get_link_to_form, get_number_format_info from erpnext.stock.doctype.quality_inspection_template.quality_inspection_template import ( get_template_details, ) +from erpnext.stock.services.quality_inspection_service import QI_INCOMING_PURPOSES class QualityInspection(Document): @@ -387,23 +388,22 @@ def item_query(doctype: Any, txt: str | None, searchfield: Any, start: int, page ] if reference_doctype == "Stock Entry": - if filters.get("inspection_type") == "Incoming": - purpose = frappe.db.get_value("Stock Entry", filters.get("reference_name"), "purpose") - if purpose == "Manufacture": - my_filters.extend( - [ - "and", - ["items.is_finished_item", "=", 1], - ] - ) - else: - my_filters.extend( - [ - "and", - ["items.t_warehouse", "is", "set"], - ] - ) - elif filters.get("inspection_type") == "Outgoing": + purpose = frappe.get_cached_value("Stock Entry", filters.get("reference_name"), "purpose") + if purpose == "Manufacture": + my_filters.extend( + [ + "and", + ["items.is_finished_item", "=", 1], + ] + ) + elif purpose in QI_INCOMING_PURPOSES: + my_filters.extend( + [ + "and", + ["items.t_warehouse", "is", "set"], + ] + ) + else: my_filters.extend( [ "and", diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js index 19025148116..fed14074419 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.js +++ b/erpnext/stock/doctype/stock_entry/stock_entry.js @@ -199,16 +199,9 @@ frappe.ui.form.on("Stock Entry", { }, setup_quality_inspection: function (frm) { - const incoming_purposes = ["Manufacture", "Material Receipt", "Repack"]; - - // Show the Quality Inspection field only on rows that require inspection. frm.get_docfield("items", "quality_inspection").depends_on = (row) => frm.doc.inspection_required && - (frm.doc.purpose === "Manufacture" - ? row.is_finished_item - : incoming_purposes.includes(frm.doc.purpose) - ? row.t_warehouse - : row.s_warehouse && row.s_warehouse !== row.t_warehouse); + erpnext.stock.row_requires_quality_inspection(frm.doc.purpose, row); if (!frm.doc.inspection_required) { return; @@ -230,7 +223,9 @@ frappe.ui.form.on("Stock Entry", { quality_inspection_field.get_route_options_for_new_doc = function (row) { if (frm.is_new()) return {}; return { - inspection_type: incoming_purposes.includes(frm.doc.purpose) ? "Incoming" : "Outgoing", + inspection_type: erpnext.stock.is_incoming_qi_purpose(frm.doc.purpose) + ? "Incoming" + : "Outgoing", reference_type: frm.doc.doctype, reference_name: frm.doc.name, child_row_reference: row.doc.name, diff --git a/erpnext/stock/doctype/stock_entry/test_stock_entry.py b/erpnext/stock/doctype/stock_entry/test_stock_entry.py index 5dcad431d21..aa04c7552f3 100644 --- a/erpnext/stock/doctype/stock_entry/test_stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/test_stock_entry.py @@ -1183,16 +1183,21 @@ class TestStockEntry(ERPNextTestSuite): # stock the source warehouse for transfer / issue purposes make_stock_entry(item_code=item_code, target=s_wh, qty=100, basic_rate=100) - # purpose -> warehouses for the moved row; inward (with target) requires QI + # purpose -> warehouses for the moved row and the direction QI is required on: + # Material Receipt inspects the inward row, Transfer/Issue inspect the outgoing row. purposes = { - "Material Receipt": {"to_warehouse": t_wh}, - "Material Transfer": {"from_warehouse": s_wh, "to_warehouse": t_wh}, - "Material Issue": {"from_warehouse": s_wh}, + "Material Receipt": {"warehouses": {"to_warehouse": t_wh}, "inspection_type": "Incoming"}, + "Material Transfer": { + "warehouses": {"from_warehouse": s_wh, "to_warehouse": t_wh}, + "inspection_type": "Outgoing", + }, + "Material Issue": {"warehouses": {"from_warehouse": s_wh}, "inspection_type": "Outgoing"}, } - for purpose, warehouses in purposes.items(): + for purpose, config in purposes.items(): with self.subTest(purpose=purpose): - needs_qi = "to_warehouse" in warehouses + warehouses = config["warehouses"] + inspection_type = config["inspection_type"] se = make_stock_entry( item_code=item_code, @@ -1208,13 +1213,7 @@ class TestStockEntry(ERPNextTestSuite): allowed = check_item_quality_inspection("Stock Entry", 0, se.as_dict().get("items")) self.assertTrue(any(row.get("item_code") == item_code for row in allowed)) - if not needs_qi: - # outward-only entry: QI is not enforced - se.submit() - self.assertEqual(se.docstatus, 1) - continue - - # inward entry without QI must block submission + # entry without QI must block submission self.assertRaises(QualityInspectionRequiredError, se.submit) # a rejected QI must also block submission @@ -1231,13 +1230,13 @@ class TestStockEntry(ERPNextTestSuite): reference_type="Stock Entry", reference_name=se_rej.name, item_code=item_code, - inspection_type="Incoming", + inspection_type=inspection_type, status="Rejected", ) se_rej.reload() self.assertRaises(QualityInspectionRejectedError, se_rej.submit) - # a submitted, accepted QI links itself to the inward row; submission then succeeds + # a submitted, accepted QI links itself to the inspected row; submission then succeeds se_ok = make_stock_entry( item_code=item_code, qty=5, @@ -1251,7 +1250,7 @@ class TestStockEntry(ERPNextTestSuite): reference_type="Stock Entry", reference_name=se_ok.name, item_code=item_code, - inspection_type="Incoming", + inspection_type=inspection_type, status="Accepted", ) se_ok.reload() @@ -1434,15 +1433,15 @@ class TestStockEntry(ERPNextTestSuite): row.s_warehouse = source_warehouse mfg.submit() - # disassemble with inspection required -> the component rows need a QI + # disassemble with inspection required -> the consumed (outgoing) rows need a QI dis = frappe.get_doc(make_wo_stock_entry(wo.name, "Disassemble", 1)) dis.inspection_required = 1 dis.insert() self.assertRaises(QualityInspectionRequiredError, dis.submit) - # a rejected QI on any disassembled component row must also block submission + # a rejected QI on any consumed (outgoing) row must also block submission qis = [] - for item_code in {row.item_code for row in dis.items if row.t_warehouse}: + for item_code in {row.item_code for row in dis.items if row.s_warehouse}: qis.append( create_quality_inspection( reference_type="Stock Entry", diff --git a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json index 71adb7ed566..ea9d3b75b51 100644 --- a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json +++ b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json @@ -324,6 +324,7 @@ "options": "Batch" }, { + "depends_on": "eval:parent.inspection_required", "fieldname": "quality_inspection", "fieldtype": "Link", "label": "Quality Inspection", @@ -678,7 +679,7 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2026-06-25 11:39:55.152526", + "modified": "2026-06-30 12:18:34.132425", "modified_by": "Administrator", "module": "Stock", "name": "Stock Entry Detail", diff --git a/erpnext/stock/services/quality_inspection_service.py b/erpnext/stock/services/quality_inspection_service.py index e524eda4e2c..ed5fb2cf68f 100644 --- a/erpnext/stock/services/quality_inspection_service.py +++ b/erpnext/stock/services/quality_inspection_service.py @@ -26,6 +26,24 @@ INSPECTION_FIELDNAME_MAP = { "Delivery Note": "inspection_required_before_delivery", } +QI_INCOMING_PURPOSES = ( + "Material Receipt", + "Repack", + "Receive from Customer", + "Subcontracting Return", +) + + +def stock_entry_row_requires_inspection(purpose, row): + """Check if this Stock Entry row need a Quality Inspection.""" + if row.get("secondary_item_type") or row.get("is_legacy_scrap_item"): + return False + if purpose == "Manufacture": + return bool(row.is_finished_item) + if purpose in QI_INCOMING_PURPOSES: + return bool(row.t_warehouse) + return bool(row.s_warehouse and row.s_warehouse != row.t_warehouse) + class QualityInspectionService: def __init__(self, doc) -> None: @@ -50,15 +68,7 @@ class QualityInspectionService: ): qi_required = True elif self.doc.doctype == "Stock Entry": - if self.doc.purpose == "Manufacture": - # only the finished good needs inspection - if row.is_finished_item: - qi_required = True - elif self.doc.purpose in ["Material Receipt", "Repack"]: - if row.t_warehouse: - qi_required = True - elif row.s_warehouse and row.s_warehouse != row.t_warehouse: - qi_required = True + qi_required = stock_entry_row_requires_inspection(self.doc.purpose, row) if row.get("secondary_item_type") or row.get("is_legacy_scrap_item"): continue From 460bb9e5d0563444f49f143b720bae8034d60ebd Mon Sep 17 00:00:00 2001 From: Mihir Kandoi Date: Tue, 30 Jun 2026 13:01:32 +0530 Subject: [PATCH 116/161] fix(crm): scope create_address rollback to a savepoint (review) create_address is a helper called by create_prospect/create_customer AFTER they insert the Prospect/Customer. Its full frappe.db.rollback() on an address-save failure rolled back the caller's just-inserted parent doc, then swallowed the exception, so the caller returned a Prospect/Customer name that no longer existed. Scope the rollback to savepoint('crm_create_address') so only the address work is undone; the parent doc survives and the failed address is just logged. --- erpnext/crm/frappe_crm_api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/crm/frappe_crm_api.py b/erpnext/crm/frappe_crm_api.py index 9b1b77755a8..a13109181a1 100644 --- a/erpnext/crm/frappe_crm_api.py +++ b/erpnext/crm/frappe_crm_api.py @@ -71,6 +71,7 @@ def create_address(doctype, docname, address): if not address: return address = frappe.parse_json(address) + frappe.db.savepoint("crm_create_address") try: _address = frappe.db.exists("Address", address.get("name")) if not _address: @@ -98,7 +99,7 @@ def create_address(doctype, docname, address): address.save(ignore_permissions=True) return address.name except Exception: - frappe.db.rollback() + frappe.db.rollback(save_point="crm_create_address") frappe.log_error(frappe.get_traceback(), f"Error while creating address for {docname}") From 710d0667fa9fb76fb3c83d54c70c986aaabfcc62 Mon Sep 17 00:00:00 2001 From: Sudharsanan11 Date: Thu, 25 Jun 2026 13:21:29 +0530 Subject: [PATCH 117/161] test(selling): add test to validate the per billed after credit note submission --- .../delivery_note/test_delivery_note.py | 86 +++++++++++++++++++ 1 file changed, 86 insertions(+) diff --git a/erpnext/stock/doctype/delivery_note/test_delivery_note.py b/erpnext/stock/doctype/delivery_note/test_delivery_note.py index 0d30a693edb..971a2555b2c 100644 --- a/erpnext/stock/doctype/delivery_note/test_delivery_note.py +++ b/erpnext/stock/doctype/delivery_note/test_delivery_note.py @@ -2640,6 +2640,92 @@ class TestDeliveryNote(ERPNextTestSuite): self.assertEqual(dn.per_returned, 100) self.assertEqual(returned.status, "Return") + def _assert_credit_note_from_return_dn_resets_per_billed(self, so, dn): + """Given a fully billed Sales Order and a submitted Delivery Note that delivers it, + a credit note made from the return of that Delivery Note must reset per_billed to 0 + while leaving the delivery quantities exactly as the return already set them.""" + from erpnext.stock.doctype.delivery_note.mapper import make_sales_return + + so.load_from_db() + self.assertEqual(so.per_delivered, 100) + self.assertEqual(so.per_billed, 100) + + return_dn = make_sales_return(dn.name) + return_dn.insert() + return_dn.submit() + + # the return reverses the delivery quantities + so.load_from_db() + self.assertEqual(so.per_delivered, 0) + self.assertEqual(so.items[0].delivered_qty, 0) + + credit_note = make_sales_invoice(return_dn.name) + self.assertTrue(credit_note.is_return) + self.assertTrue(credit_note.update_billed_amount_in_sales_order) + # A Delivery Note-linked invoice can't update stock (validate_delivery_note), so the + # credit note only rolls back billing and never re-reverses the delivery quantities. + self.assertFalse(credit_note.update_stock) + credit_note.insert() + credit_note.submit() + + # per_billed is reset, and the delivery state stays exactly as the return left it + so.load_from_db() + self.assertEqual(so.per_billed, 0) + self.assertEqual(so.per_delivered, 0) + self.assertEqual(so.items[0].delivered_qty, 0) + self.assertEqual(so.items[0].returned_qty, 0) + + # Cancelling the credit note should restore the billed amount on the Sales Order. + credit_note.cancel() + so.load_from_db() + self.assertEqual(so.per_billed, 100) + + def test_sales_order_per_billed_after_credit_note_from_return_dn(self): + # Reported flow: SO -> SI (from SO) -> DN (from SI) -> return DN -> credit note. + # The DN carries si_detail in this path. + from erpnext.accounts.doctype.sales_invoice.mapper import make_delivery_note + from erpnext.selling.doctype.sales_order.mapper import make_sales_invoice as make_si_from_so + + make_stock_entry(item_code="_Test Item", target="_Test Warehouse - _TC", qty=10, basic_rate=100) + + so = make_sales_order(qty=2) + + si = make_si_from_so(so.name) + si.insert() + si.submit() + + dn = make_delivery_note(si.name) + dn.insert() + dn.submit() + + self._assert_credit_note_from_return_dn_resets_per_billed(so, dn) + + def test_sales_order_per_billed_after_credit_note_from_so_derived_dn(self): + # SO billed and delivered separately (SO -> SI, SO -> DN), then return DN -> credit note. + # SO per_billed rolls back via the status_updater in update_prevdoc_status. + from erpnext.selling.doctype.sales_order.mapper import ( + make_delivery_note as make_dn_from_so, + ) + from erpnext.selling.doctype.sales_order.mapper import ( + make_sales_invoice as make_si_from_so, + ) + + make_stock_entry(item_code="_Test Item", target="_Test Warehouse - _TC", qty=10, basic_rate=100) + + so = make_sales_order(qty=2) + + si = make_si_from_so(so.name) + si.insert() + si.submit() + + dn = make_dn_from_so(so.name) + dn.insert() + dn.submit() + + self.assertIsNone(dn.items[0].si_detail) + + self._assert_credit_note_from_return_dn_resets_per_billed(so, dn) + def test_packed_item_serial_no_status(self): from erpnext.selling.doctype.product_bundle.test_product_bundle import make_product_bundle from erpnext.stock.doctype.item.test_item import make_item From 6184c057dbb4547f6cbb30f08a16a811fe811b0c Mon Sep 17 00:00:00 2001 From: Sudharsanan Ashok <135326972+Sudharsanan11@users.noreply.github.com> Date: Tue, 30 Jun 2026 14:28:04 +0530 Subject: [PATCH 118/161] fix(stock): value batch/serial return from ledger when original receipt has no bundle (#56631) * fix(stock): value batch/serial return from ledger when original receipt has no bundle * test(stock): add test to validate the valuation of serial/batch for return when original receipt has no bundle --- .../serial_and_batch_bundle.py | 52 +++++++++++- .../test_serial_and_batch_bundle.py | 85 +++++++++++++++++++ 2 files changed, 136 insertions(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py b/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py index 98337e97cd6..747b43ca53f 100644 --- a/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py +++ b/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py @@ -525,10 +525,12 @@ class SerialandBatchBundle(Document): ] # Added to handle rejected warehouse case + return_warehouse = None if self.voucher_type in ["Purchase Receipt", "Purchase Invoice"]: warehouses = get_warehouses_for_return(self.voucher_type, return_against_voucher_detail_no) if self.warehouse in warehouses: - filters.append(["Serial and Batch Entry", "warehouse", "=", self.warehouse]) + return_warehouse = self.warehouse + filters.append(["Serial and Batch Entry", "warehouse", "=", return_warehouse]) bundle_data = frappe.get_all( "Serial and Batch Bundle", @@ -541,6 +543,11 @@ class SerialandBatchBundle(Document): order_by="`tabSerial and Batch Bundle`.`creation`, `tabSerial and Batch Entry`.`idx`", ) + if not bundle_data: + bundle_data = self.get_legacy_valuation_rate_for_return_entry( + return_against, return_against_voucher_detail_no, return_warehouse + ) + if not bundle_data: return {} @@ -552,6 +559,49 @@ class SerialandBatchBundle(Document): return valuation_details + def get_legacy_valuation_rate_for_return_entry( + self, return_against, return_against_voucher_detail_no, return_warehouse=None + ): + """Return the original line's incoming rate per serial no / batch from the SLE, for legacy receipts with no bundle.""" + from erpnext.stock.doctype.serial_no.serial_no import get_serial_nos + + if not (self.has_serial_no or self.has_batch_no): + return [] + + sle = frappe.qb.DocType("Stock Ledger Entry") + query = ( + frappe.qb.from_(sle) + .select(sle.serial_no, sle.batch_no, sle.incoming_rate) + .where( + (sle.voucher_no == return_against) + & (sle.voucher_detail_no == return_against_voucher_detail_no) + & (sle.item_code == self.item_code) + & (sle.is_cancelled == 0) + & (sle.serial_and_batch_bundle.isnull()) + ) + ) + + if return_warehouse: + query = query.where(sle.warehouse == return_warehouse) + + data = [] + for d in query.run(as_dict=True): + if d.serial_no: + for serial_no in get_serial_nos(d.serial_no): + data.append( + frappe._dict( + {"serial_no": serial_no, "batch_no": d.batch_no, "incoming_rate": d.incoming_rate} + ) + ) + elif d.batch_no: + data.append( + frappe._dict( + {"serial_no": None, "batch_no": d.batch_no, "incoming_rate": d.incoming_rate} + ) + ) + + return data + def calculate_total_qty(self, save=True): self.total_qty = 0.0 for d in self.entries: diff --git a/erpnext/stock/doctype/serial_and_batch_bundle/test_serial_and_batch_bundle.py b/erpnext/stock/doctype/serial_and_batch_bundle/test_serial_and_batch_bundle.py index 95857f8ab52..88a3c3bc0dd 100644 --- a/erpnext/stock/doctype/serial_and_batch_bundle/test_serial_and_batch_bundle.py +++ b/erpnext/stock/doctype/serial_and_batch_bundle/test_serial_and_batch_bundle.py @@ -1339,6 +1339,91 @@ class TestSerialandBatchBundle(ERPNextTestSuite): result = get_picked_batches(frappe._dict()) self.assertIsInstance(result, dict) + def _assert_legacy_return_valuation(self, item_code, props, batch_no=None): + """Return against a legacy serial/batch receipt (no Serial and Batch Bundle) must value outgoing stock from the original ledger rate.""" + from erpnext.controllers.sales_and_purchase_return import make_return_doc + from erpnext.stock.doctype.purchase_receipt.test_purchase_receipt import make_purchase_receipt + + make_item(item_code, props) + if batch_no and not frappe.db.exists("Batch", batch_no): + frappe.get_doc({"doctype": "Batch", "batch_id": batch_no, "item": item_code}).insert() + + pr = make_purchase_receipt( + item_code=item_code, qty=10, rate=100, batch_no=batch_no, use_serial_batch_fields=True + ) + + # Simulate a receipt migrated from an older version: serial nos / batch tracked via the + # deprecated fields on the Stock Ledger Entry, with no Serial and Batch Bundle. + serial_nos = [] + for row in pr.items: + if row.serial_and_batch_bundle: + serial_nos = frappe.get_all( + "Serial and Batch Entry", + filters={"parent": row.serial_and_batch_bundle}, + pluck="serial_no", + ) + frappe.db.delete("Serial and Batch Bundle", {"name": row.serial_and_batch_bundle}) + frappe.db.set_value("Purchase Receipt Item", row.name, "serial_and_batch_bundle", None) + + serial_nos = [sn for sn in serial_nos if sn] + legacy = {"serial_and_batch_bundle": None} + if batch_no: + legacy["batch_no"] = batch_no + if serial_nos: + legacy["serial_no"] = "\n".join(serial_nos) + for sle in frappe.get_all("Stock Ledger Entry", filters={"voucher_no": pr.name}, pluck="name"): + frappe.db.set_value("Stock Ledger Entry", sle, legacy) + + rt = make_return_doc("Purchase Receipt", pr.name) + rt.items[0].qty = -4 + rt.items[0].received_qty = -4 + rt.items[0].use_serial_batch_fields = 1 + if batch_no: + rt.items[0].batch_no = batch_no + if serial_nos: + rt.items[0].serial_no = "\n".join(serial_nos[:4]) + rt.submit() + + difference_in_stock_value = frappe.db.get_value( + "Stock Ledger Entry", + {"voucher_no": rt.name, "is_cancelled": 0, "voucher_type": "Purchase Receipt"}, + "stock_value_difference", + ) + # 4 units returned at the original ledger rate of 100 -> -400 (must not be zero) + self.assertEqual(flt(difference_in_stock_value, 2), -400.0) + + def test_return_valuation_for_legacy_batch_without_bundle(self): + self._assert_legacy_return_valuation( + "Test Legacy Batch Return Valuation", + { + "has_batch_no": 1, + "create_new_batch": 1, + "batch_number_series": "LBRV-.#####", + "is_stock_item": 1, + }, + batch_no="LBRV-BATCH-0001", + ) + + def test_return_valuation_for_legacy_serial_without_bundle(self): + self._assert_legacy_return_valuation( + "Test Legacy Serial Return Valuation", + {"has_serial_no": 1, "serial_no_series": "LSRV-.#####", "is_stock_item": 1}, + ) + + def test_return_valuation_for_legacy_serial_and_batch_without_bundle(self): + self._assert_legacy_return_valuation( + "Test Legacy Serial Batch Return Valuation", + { + "has_serial_no": 1, + "serial_no_series": "LSBRV-.#####", + "has_batch_no": 1, + "create_new_batch": 1, + "batch_number_series": "LSBRVB-.#####", + "is_stock_item": 1, + }, + batch_no="LSBRV-BATCH-0001", + ) + def get_batch_from_bundle(bundle): from erpnext.stock.serial_batch_bundle import get_batch_nos From 8447f551e7b0ee9f611cf42533e33141105b0af2 Mon Sep 17 00:00:00 2001 From: Nikhil Kothari Date: Tue, 30 Jun 2026 14:51:42 +0530 Subject: [PATCH 119/161] fix(banking): use custom renderer for translated strings and parser for rules (#56643) fix(banking): use custom renderer for translated strings and parser for formula evaluation --- banking/package.json | 1 + .../BankClearanceSummary.tsx | 12 ++--- .../BankEntryModalContent.tsx | 32 ++----------- .../BankReconciliationStatement.tsx | 12 ++--- .../BankTransactionList.tsx | 12 ++--- .../IncorrectlyClearedEntries.tsx | 18 +++---- .../BankReconciliation/Rules/RuleForm.tsx | 4 +- banking/src/lib/amountFormula.ts | 26 ++++++++++ banking/yarn.lock | 5 ++ .../bank_transaction_rule.py | 47 +++++++++++++++++++ .../test_bank_transaction_rule.py | 42 +++++++++++++++++ 11 files changed, 154 insertions(+), 57 deletions(-) create mode 100644 banking/src/lib/amountFormula.ts diff --git a/banking/package.json b/banking/package.json index b46a7c4ff98..915a31b8c21 100644 --- a/banking/package.json +++ b/banking/package.json @@ -43,6 +43,7 @@ "react-router-dom": "^7.15.0", "rehype-raw": "^7.0.0", "remark-gfm": "^4.0.1", + "safe-expr-eval": "^1.0.4", "sonner": "^2.0.7", "tailwind-merge": "^3.5.0", "tailwindcss": "^4.3.0", diff --git a/banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx b/banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx index dd248d31092..c26b9e9fb22 100644 --- a/banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx +++ b/banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx @@ -2,7 +2,6 @@ import { useAtomValue } from "jotai" import { MissingFiltersBanner } from "./MissingFiltersBanner" import { bankRecDateAtom, SelectedBank, selectedBankAccountAtom } from "./bankRecAtoms" import { useCurrentCompany } from "@/hooks/useCurrentCompany" -import { Paragraph } from "@/components/ui/typography" import type { ColumnDef } from "@tanstack/react-table" import { useCallback, useMemo, useState } from "react" import { useFrappeGetCall, useFrappePostCall, useSWRConfig } from "frappe-react-sdk" @@ -26,6 +25,7 @@ import { Form } from "@/components/ui/form" import { useForm } from "react-hook-form" import { DateField } from "@/components/ui/form-elements" import { Empty, EmptyMedia, EmptyHeader, EmptyTitle, EmptyDescription } from "@/components/ui/empty" +import MarkdownRenderer from "@/components/ui/markdown" const BankClearanceSummary = () => { const bankAccount = useAtomValue(selectedBankAccountAtom) @@ -203,14 +203,14 @@ const BankClearanceSummaryView = () => { [accountCurrency, bankAccount, companyID, mutate, onCopy], ) + const content = _("Below is a list of all accounting entries posted against the bank account {0} between {1} and {2}.", [`${bankAccount?.account}`, `${formattedFromDate}`, `${formattedToDate}`]) + return
                    - - ${bankAccount?.account}`, `${formattedFromDate}`, `${formattedToDate}`]) - }} /> - + + +
                    {error && } diff --git a/banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx b/banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx index 17ef3314a1f..4e5ddb425e2 100644 --- a/banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx +++ b/banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx @@ -18,6 +18,7 @@ import { useMultiFileUploadProgress } from "@/hooks/useMultiFileUploadProgress" import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table" import { Checkbox } from "@/components/ui/checkbox" import { ArrowDownRight, ArrowUpRight, Plus, Trash2 } from "lucide-react" +import { evaluateAmountFormula } from "@/lib/amountFormula" import { flt, formatCurrency } from "@/lib/numbers" import { cn } from "@/lib/utils" import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip" @@ -215,38 +216,13 @@ const BankEntryForm = ({ selectedTransaction }: { selectedTransaction: Unreconci }) } else { - /** - * The debit and credit amounts can also be expressions - like "transaction_amount * 0.5" - * So we need to compute the value of the expression - * We can use the eval function to do this. But we need to expose certain variables to the expression. - * One of them is transaction_amount which is the unallocated amount of the selected transaction - * @param expression - The expression to compute - * @returns The computed value - */ - const computeExpression = (expression: string) => { - - const script = ` - const transaction_amount = ${selectedTransaction.unallocated_amount ?? 0} - ${expression}; - ` - - let value = 0; - - try { - value = window.eval(script); - } catch (error: unknown) { - console.error(error); - value = 0; - } - - return value; - } + const transactionAmount = selectedTransaction.unallocated_amount ?? 0 if (!acc?.debit && !acc?.credit) { hasTotallyEmptyRowEarlier = true; } - const computedDebit = acc?.debit ? flt(computeExpression(acc.debit), 2) : 0 - const computedCredit = acc?.credit ? flt(computeExpression(acc.credit), 2) : 0 + const computedDebit = acc?.debit ? flt(evaluateAmountFormula(acc.debit, transactionAmount), 2) : 0 + const computedCredit = acc?.credit ? flt(evaluateAmountFormula(acc.credit, transactionAmount), 2) : 0 totalDebits = flt(totalDebits + computedDebit, 2) totalCredits = flt(totalCredits + computedCredit, 2) diff --git a/banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx b/banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx index 7b505efadc3..0815bc8a65e 100644 --- a/banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx +++ b/banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx @@ -2,7 +2,6 @@ import { useAtomValue } from "jotai" import { MissingFiltersBanner } from "./MissingFiltersBanner" import { bankRecDateAtom, selectedBankAccountAtom } from "./bankRecAtoms" import { useCurrentCompany } from "@/hooks/useCurrentCompany" -import { Paragraph } from "@/components/ui/typography" import { useCallback, useMemo } from "react" import type { ColumnDef } from "@tanstack/react-table" import { useFrappeGetCall } from "frappe-react-sdk" @@ -19,6 +18,7 @@ import _ from "@/lib/translate" import { toast } from "sonner" import { useCopyToClipboard } from "usehooks-ts" import { Empty, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from "@/components/ui/empty" +import MarkdownRenderer from "@/components/ui/markdown" const BankReconciliationStatement = () => { const bankAccount = useAtomValue(selectedBankAccountAtom) @@ -189,14 +189,14 @@ const BankReconciliationStatementView = () => { return data.message.result.filter((row: BankClearanceSummaryEntry) => Boolean(row.payment_entry)) }, [data]) + const content = _("Below is a list of all entries posted against the bank account {0} which have not been cleared till {1}.", [`${bankAccount?.account}`, `${formatDate(dates.toDate)}`]) + return
                    - - ${bankAccount?.account}`, `${formatDate(dates.toDate)}`]) - }} /> - + + +
                    {error && } diff --git a/banking/src/components/features/BankReconciliation/BankTransactionList.tsx b/banking/src/components/features/BankReconciliation/BankTransactionList.tsx index 17f231a0833..1513e567a4b 100644 --- a/banking/src/components/features/BankReconciliation/BankTransactionList.tsx +++ b/banking/src/components/features/BankReconciliation/BankTransactionList.tsx @@ -1,7 +1,6 @@ import { useAtomValue, useSetAtom } from "jotai" import { MissingFiltersBanner } from "./MissingFiltersBanner" import { bankRecDateAtom, bankRecUnreconcileModalAtom, selectedBankAccountAtom } from "./bankRecAtoms" -import { Paragraph } from "@/components/ui/typography" import { formatDate } from "@/lib/date" import { ListView, type ListViewColumnMeta } from "@/components/ui/list-view" import { formatCurrency, getCurrencyFormatInfo } from "@/lib/numbers" @@ -23,6 +22,7 @@ import { useCallback, useMemo, useState } from "react" import { Link } from "react-router" import { Empty, EmptyTitle, EmptyHeader, EmptyMedia, EmptyDescription, EmptyContent } from "@/components/ui/empty" import { InputGroup, InputGroupAddon } from "@/components/ui/input-group" +import MarkdownRenderer from "@/components/ui/markdown" const BankTransactions = () => { const selectedBank = useAtomValue(selectedBankAccountAtom) @@ -243,14 +243,14 @@ const BankTransactionListView = () => { }, [data, search, amountFilter, typeFilter, status]) + const content = _("Below is a list of all bank transactions imported in the system for the bank account {0} between {1} and {2}.", [`${bankAccount?.account_name}`, `${formattedFromDate}`, `${formattedToDate}`]) + return
                    - - ${bankAccount?.account_name}`, `${formattedFromDate}`, `${formattedToDate}`]) - }} /> - + + +